]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_apiserver.c
Merge pull request #2823 from opensourcerouting/snap-staticd
[mirror_frr.git] / ospfd / ospf_apiserver.c
1 /*
2 * Server side of OSPF API.
3 * Copyright (C) 2001, 2002 Ralph Keller
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any 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 along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #include <zebra.h>
23
24 #ifdef SUPPORT_OSPF_API
25
26 #include "linklist.h"
27 #include "prefix.h"
28 #include "if.h"
29 #include "table.h"
30 #include "memory.h"
31 #include "command.h"
32 #include "vty.h"
33 #include "stream.h"
34 #include "log.h"
35 #include "thread.h"
36 #include "hash.h"
37 #include "sockunion.h" /* for inet_aton() */
38 #include "buffer.h"
39
40 #include <sys/types.h>
41
42 #include "ospfd/ospfd.h" /* for "struct thread_master" */
43 #include "ospfd/ospf_interface.h"
44 #include "ospfd/ospf_ism.h"
45 #include "ospfd/ospf_asbr.h"
46 #include "ospfd/ospf_lsa.h"
47 #include "ospfd/ospf_lsdb.h"
48 #include "ospfd/ospf_neighbor.h"
49 #include "ospfd/ospf_nsm.h"
50 #include "ospfd/ospf_flood.h"
51 #include "ospfd/ospf_packet.h"
52 #include "ospfd/ospf_spf.h"
53 #include "ospfd/ospf_dump.h"
54 #include "ospfd/ospf_route.h"
55 #include "ospfd/ospf_ase.h"
56 #include "ospfd/ospf_zebra.h"
57
58 #include "ospfd/ospf_api.h"
59 #include "ospfd/ospf_apiserver.h"
60
61 /* This is an implementation of an API to the OSPF daemon that allows
62 * external applications to access the OSPF daemon through socket
63 * connections. The application can use this API to inject its own
64 * opaque LSAs and flood them to other OSPF daemons. Other OSPF
65 * daemons then receive these LSAs and inform applications through the
66 * API by sending a corresponding message. The application can also
67 * register to receive all LSA types (in addition to opaque types) and
68 * use this information to reconstruct the OSPF's LSDB. The OSPF
69 * daemon supports multiple applications concurrently. */
70
71 /* List of all active connections. */
72 struct list *apiserver_list;
73
74 /* -----------------------------------------------------------
75 * Functions to lookup interfaces
76 * -----------------------------------------------------------
77 */
78
79 struct ospf_interface *ospf_apiserver_if_lookup_by_addr(struct in_addr address)
80 {
81 struct listnode *node, *nnode;
82 struct ospf_interface *oi;
83 struct ospf *ospf = NULL;
84
85 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
86 if (!ospf)
87 return NULL;
88
89 for (ALL_LIST_ELEMENTS(ospf->oiflist, node, nnode, oi))
90 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
91 if (IPV4_ADDR_SAME(&address, &oi->address->u.prefix4))
92 return oi;
93
94 return NULL;
95 }
96
97 struct ospf_interface *ospf_apiserver_if_lookup_by_ifp(struct interface *ifp)
98 {
99 struct listnode *node, *nnode;
100 struct ospf_interface *oi;
101 struct ospf *ospf = NULL;
102
103 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
104 if (!ospf)
105 return NULL;
106
107 for (ALL_LIST_ELEMENTS(ospf->oiflist, node, nnode, oi))
108 if (oi->ifp == ifp)
109 return oi;
110
111 return NULL;
112 }
113
114 /* -----------------------------------------------------------
115 * Initialization
116 * -----------------------------------------------------------
117 */
118
119 unsigned short ospf_apiserver_getport(void)
120 {
121 struct servent *sp = getservbyname("ospfapi", "tcp");
122
123 return sp ? ntohs(sp->s_port) : OSPF_API_SYNC_PORT;
124 }
125
126 /* Initialize OSPF API module. Invoked from ospf_opaque_init() */
127 int ospf_apiserver_init(void)
128 {
129 int fd;
130 int rc = -1;
131
132 /* Create new socket for synchronous messages. */
133 fd = ospf_apiserver_serv_sock_family(ospf_apiserver_getport(), AF_INET);
134
135 if (fd < 0)
136 goto out;
137
138 /* Schedule new thread that handles accepted connections. */
139 ospf_apiserver_event(OSPF_APISERVER_ACCEPT, fd, NULL);
140
141 /* Initialize list that keeps track of all connections. */
142 apiserver_list = list_new();
143
144 /* Register opaque-independent call back functions. These functions
145 are invoked on ISM, NSM changes and LSA update and LSA deletes */
146 rc = ospf_register_opaque_functab(
147 0 /* all LSAs */, 0 /* all opaque types */,
148 ospf_apiserver_new_if, ospf_apiserver_del_if,
149 ospf_apiserver_ism_change, ospf_apiserver_nsm_change, NULL,
150 NULL, NULL, NULL, /* ospf_apiserver_show_info */
151 NULL, /* originator_func */
152 NULL, /* ospf_apiserver_lsa_refresher */
153 ospf_apiserver_lsa_update, ospf_apiserver_lsa_delete);
154 if (rc != 0) {
155 zlog_warn(
156 "ospf_apiserver_init: Failed to register opaque type [0/0]");
157 }
158
159 rc = 0;
160
161 out:
162 return rc;
163 }
164
165 /* Terminate OSPF API module. */
166 void ospf_apiserver_term(void)
167 {
168 struct ospf_apiserver *apiserv;
169
170 /* Unregister wildcard [0/0] type */
171 ospf_delete_opaque_functab(0 /* all LSAs */, 0 /* all opaque types */);
172
173 /*
174 * Free all client instances. ospf_apiserver_free removes the node
175 * from the list, so we examine the head of the list anew each time.
176 */
177 while (apiserver_list
178 && (apiserv = listgetdata(listhead(apiserver_list))) != NULL)
179 ospf_apiserver_free(apiserv);
180
181 /* Free client list itself */
182 if (apiserver_list)
183 list_delete_and_null(&apiserver_list);
184
185 /* Free wildcard list */
186 /* XXX */
187 }
188
189 static struct ospf_apiserver *lookup_apiserver(uint8_t lsa_type,
190 uint8_t opaque_type)
191 {
192 struct listnode *n1, *n2;
193 struct registered_opaque_type *r;
194 struct ospf_apiserver *apiserv, *found = NULL;
195
196 /* XXX: this approaches O(n**2) */
197 for (ALL_LIST_ELEMENTS_RO(apiserver_list, n1, apiserv)) {
198 for (ALL_LIST_ELEMENTS_RO(apiserv->opaque_types, n2, r))
199 if (r->lsa_type == lsa_type
200 && r->opaque_type == opaque_type) {
201 found = apiserv;
202 goto out;
203 }
204 }
205 out:
206 return found;
207 }
208
209 static struct ospf_apiserver *lookup_apiserver_by_lsa(struct ospf_lsa *lsa)
210 {
211 struct lsa_header *lsah = lsa->data;
212 struct ospf_apiserver *found = NULL;
213
214 if (IS_OPAQUE_LSA(lsah->type)) {
215 found = lookup_apiserver(
216 lsah->type, GET_OPAQUE_TYPE(ntohl(lsah->id.s_addr)));
217 }
218 return found;
219 }
220
221 /* -----------------------------------------------------------
222 * Followings are functions to manage client connections.
223 * -----------------------------------------------------------
224 */
225 static int ospf_apiserver_new_lsa_hook(struct ospf_lsa *lsa)
226 {
227 if (IS_DEBUG_OSPF_EVENT)
228 zlog_debug("API: Put LSA(%p)[%s] into reserve, total=%ld",
229 (void *)lsa, dump_lsa_key(lsa), lsa->lsdb->total);
230 return 0;
231 }
232
233 static int ospf_apiserver_del_lsa_hook(struct ospf_lsa *lsa)
234 {
235 if (IS_DEBUG_OSPF_EVENT)
236 zlog_debug("API: Get LSA(%p)[%s] from reserve, total=%ld",
237 (void *)lsa, dump_lsa_key(lsa), lsa->lsdb->total);
238 return 0;
239 }
240
241 /* Allocate new connection structure. */
242 struct ospf_apiserver *ospf_apiserver_new(int fd_sync, int fd_async)
243 {
244 struct ospf_apiserver *new =
245 XMALLOC(MTYPE_OSPF_APISERVER, sizeof(struct ospf_apiserver));
246
247 new->filter = XMALLOC(MTYPE_OSPF_APISERVER_MSGFILTER,
248 sizeof(struct lsa_filter_type));
249
250 new->fd_sync = fd_sync;
251 new->fd_async = fd_async;
252
253 /* list of registered opaque types that application uses */
254 new->opaque_types = list_new();
255
256 /* Initialize temporary strage for LSA instances to be refreshed. */
257 memset(&new->reserve, 0, sizeof(struct ospf_lsdb));
258 ospf_lsdb_init(&new->reserve);
259
260 new->reserve.new_lsa_hook = ospf_apiserver_new_lsa_hook; /* debug */
261 new->reserve.del_lsa_hook = ospf_apiserver_del_lsa_hook; /* debug */
262
263 new->out_sync_fifo = msg_fifo_new();
264 new->out_async_fifo = msg_fifo_new();
265 new->t_sync_read = NULL;
266 #ifdef USE_ASYNC_READ
267 new->t_async_read = NULL;
268 #endif /* USE_ASYNC_READ */
269 new->t_sync_write = NULL;
270 new->t_async_write = NULL;
271
272 new->filter->typemask = 0; /* filter all LSAs */
273 new->filter->origin = ANY_ORIGIN;
274 new->filter->num_areas = 0;
275
276 return new;
277 }
278
279 void ospf_apiserver_event(enum event event, int fd,
280 struct ospf_apiserver *apiserv)
281 {
282 switch (event) {
283 case OSPF_APISERVER_ACCEPT:
284 (void)thread_add_read(master, ospf_apiserver_accept, apiserv,
285 fd, NULL);
286 break;
287 case OSPF_APISERVER_SYNC_READ:
288 apiserv->t_sync_read = NULL;
289 thread_add_read(master, ospf_apiserver_read, apiserv, fd,
290 &apiserv->t_sync_read);
291 break;
292 #ifdef USE_ASYNC_READ
293 case OSPF_APISERVER_ASYNC_READ:
294 apiserv->t_async_read = NULL;
295 thread_add_read(master, ospf_apiserver_read, apiserv, fd,
296 &apiserv->t_async_read);
297 break;
298 #endif /* USE_ASYNC_READ */
299 case OSPF_APISERVER_SYNC_WRITE:
300 thread_add_write(master, ospf_apiserver_sync_write, apiserv, fd,
301 &apiserv->t_sync_write);
302 break;
303 case OSPF_APISERVER_ASYNC_WRITE:
304 thread_add_write(master, ospf_apiserver_async_write, apiserv,
305 fd, &apiserv->t_async_write);
306 break;
307 }
308 }
309
310 /* Free instance. First unregister all opaque types used by
311 application, flush opaque LSAs injected by application
312 from network and close connection. */
313 void ospf_apiserver_free(struct ospf_apiserver *apiserv)
314 {
315 struct listnode *node;
316
317 /* Cancel read and write threads. */
318 if (apiserv->t_sync_read) {
319 thread_cancel(apiserv->t_sync_read);
320 }
321 #ifdef USE_ASYNC_READ
322 if (apiserv->t_async_read) {
323 thread_cancel(apiserv->t_async_read);
324 }
325 #endif /* USE_ASYNC_READ */
326 if (apiserv->t_sync_write) {
327 thread_cancel(apiserv->t_sync_write);
328 }
329
330 if (apiserv->t_async_write) {
331 thread_cancel(apiserv->t_async_write);
332 }
333
334 /* Unregister all opaque types that application registered
335 and flush opaque LSAs if still in LSDB. */
336
337 while ((node = listhead(apiserv->opaque_types)) != NULL) {
338 struct registered_opaque_type *regtype = listgetdata(node);
339
340 ospf_apiserver_unregister_opaque_type(
341 apiserv, regtype->lsa_type, regtype->opaque_type);
342 }
343
344 /* Close connections to OSPFd. */
345 if (apiserv->fd_sync > 0) {
346 close(apiserv->fd_sync);
347 }
348
349 if (apiserv->fd_async > 0) {
350 close(apiserv->fd_async);
351 }
352
353 /* Free fifos */
354 msg_fifo_free(apiserv->out_sync_fifo);
355 msg_fifo_free(apiserv->out_async_fifo);
356
357 /* Clear temporary strage for LSA instances to be refreshed. */
358 ospf_lsdb_delete_all(&apiserv->reserve);
359 ospf_lsdb_cleanup(&apiserv->reserve);
360
361 /* Remove from the list of active clients. */
362 listnode_delete(apiserver_list, apiserv);
363
364 if (IS_DEBUG_OSPF_EVENT)
365 zlog_debug("API: Delete apiserv(%p), total#(%d)",
366 (void *)apiserv, apiserver_list->count);
367
368 /* And free instance. */
369 XFREE(MTYPE_OSPF_APISERVER, apiserv);
370 }
371
372 int ospf_apiserver_read(struct thread *thread)
373 {
374 struct ospf_apiserver *apiserv;
375 struct msg *msg;
376 int fd;
377 int rc = -1;
378 enum event event;
379
380 apiserv = THREAD_ARG(thread);
381 fd = THREAD_FD(thread);
382
383 if (fd == apiserv->fd_sync) {
384 event = OSPF_APISERVER_SYNC_READ;
385 apiserv->t_sync_read = NULL;
386
387 if (IS_DEBUG_OSPF_EVENT)
388 zlog_debug("API: ospf_apiserver_read: Peer: %s/%u",
389 inet_ntoa(apiserv->peer_sync.sin_addr),
390 ntohs(apiserv->peer_sync.sin_port));
391 }
392 #ifdef USE_ASYNC_READ
393 else if (fd == apiserv->fd_async) {
394 event = OSPF_APISERVER_ASYNC_READ;
395 apiserv->t_async_read = NULL;
396
397 if (IS_DEBUG_OSPF_EVENT)
398 zlog_debug("API: ospf_apiserver_read: Peer: %s/%u",
399 inet_ntoa(apiserv->peer_async.sin_addr),
400 ntohs(apiserv->peer_async.sin_port));
401 }
402 #endif /* USE_ASYNC_READ */
403 else {
404 zlog_warn("ospf_apiserver_read: Unknown fd(%d)", fd);
405 ospf_apiserver_free(apiserv);
406 goto out;
407 }
408
409 /* Read message from fd. */
410 msg = msg_read(fd);
411 if (msg == NULL) {
412 zlog_warn(
413 "ospf_apiserver_read: read failed on fd=%d, closing connection",
414 fd);
415
416 /* Perform cleanup. */
417 ospf_apiserver_free(apiserv);
418 goto out;
419 }
420
421 if (IS_DEBUG_OSPF_EVENT)
422 msg_print(msg);
423
424 /* Dispatch to corresponding message handler. */
425 rc = ospf_apiserver_handle_msg(apiserv, msg);
426
427 /* Prepare for next message, add read thread. */
428 ospf_apiserver_event(event, fd, apiserv);
429
430 msg_free(msg);
431
432 out:
433 return rc;
434 }
435
436 int ospf_apiserver_sync_write(struct thread *thread)
437 {
438 struct ospf_apiserver *apiserv;
439 struct msg *msg;
440 int fd;
441 int rc = -1;
442
443 apiserv = THREAD_ARG(thread);
444 assert(apiserv);
445 fd = THREAD_FD(thread);
446
447 apiserv->t_sync_write = NULL;
448
449 /* Sanity check */
450 if (fd != apiserv->fd_sync) {
451 zlog_warn("ospf_apiserver_sync_write: Unknown fd=%d", fd);
452 goto out;
453 }
454
455 if (IS_DEBUG_OSPF_EVENT)
456 zlog_debug("API: ospf_apiserver_sync_write: Peer: %s/%u",
457 inet_ntoa(apiserv->peer_sync.sin_addr),
458 ntohs(apiserv->peer_sync.sin_port));
459
460 /* Check whether there is really a message in the fifo. */
461 msg = msg_fifo_pop(apiserv->out_sync_fifo);
462 if (!msg) {
463 zlog_warn(
464 "API: ospf_apiserver_sync_write: No message in Sync-FIFO?");
465 return 0;
466 }
467
468 if (IS_DEBUG_OSPF_EVENT)
469 msg_print(msg);
470
471 rc = msg_write(fd, msg);
472
473 /* Once a message is dequeued, it should be freed anyway. */
474 msg_free(msg);
475
476 if (rc < 0) {
477 zlog_warn("ospf_apiserver_sync_write: write failed on fd=%d",
478 fd);
479 goto out;
480 }
481
482
483 /* If more messages are in sync message fifo, schedule write thread. */
484 if (msg_fifo_head(apiserv->out_sync_fifo)) {
485 ospf_apiserver_event(OSPF_APISERVER_SYNC_WRITE,
486 apiserv->fd_sync, apiserv);
487 }
488
489 out:
490
491 if (rc < 0) {
492 /* Perform cleanup and disconnect with peer */
493 ospf_apiserver_free(apiserv);
494 }
495
496 return rc;
497 }
498
499
500 int ospf_apiserver_async_write(struct thread *thread)
501 {
502 struct ospf_apiserver *apiserv;
503 struct msg *msg;
504 int fd;
505 int rc = -1;
506
507 apiserv = THREAD_ARG(thread);
508 assert(apiserv);
509 fd = THREAD_FD(thread);
510
511 apiserv->t_async_write = NULL;
512
513 /* Sanity check */
514 if (fd != apiserv->fd_async) {
515 zlog_warn("ospf_apiserver_async_write: Unknown fd=%d", fd);
516 goto out;
517 }
518
519 if (IS_DEBUG_OSPF_EVENT)
520 zlog_debug("API: ospf_apiserver_async_write: Peer: %s/%u",
521 inet_ntoa(apiserv->peer_async.sin_addr),
522 ntohs(apiserv->peer_async.sin_port));
523
524 /* Check whether there is really a message in the fifo. */
525 msg = msg_fifo_pop(apiserv->out_async_fifo);
526 if (!msg) {
527 zlog_warn(
528 "API: ospf_apiserver_async_write: No message in Async-FIFO?");
529 return 0;
530 }
531
532 if (IS_DEBUG_OSPF_EVENT)
533 msg_print(msg);
534
535 rc = msg_write(fd, msg);
536
537 /* Once a message is dequeued, it should be freed anyway. */
538 msg_free(msg);
539
540 if (rc < 0) {
541 zlog_warn("ospf_apiserver_async_write: write failed on fd=%d",
542 fd);
543 goto out;
544 }
545
546
547 /* If more messages are in async message fifo, schedule write thread. */
548 if (msg_fifo_head(apiserv->out_async_fifo)) {
549 ospf_apiserver_event(OSPF_APISERVER_ASYNC_WRITE,
550 apiserv->fd_async, apiserv);
551 }
552
553 out:
554
555 if (rc < 0) {
556 /* Perform cleanup and disconnect with peer */
557 ospf_apiserver_free(apiserv);
558 }
559
560 return rc;
561 }
562
563
564 int ospf_apiserver_serv_sock_family(unsigned short port, int family)
565 {
566 union sockunion su;
567 int accept_sock;
568 int rc;
569
570 memset(&su, 0, sizeof(union sockunion));
571 su.sa.sa_family = family;
572
573 /* Make new socket */
574 accept_sock = sockunion_stream_socket(&su);
575 if (accept_sock < 0)
576 return accept_sock;
577
578 /* This is a server, so reuse address and port */
579 sockopt_reuseaddr(accept_sock);
580 sockopt_reuseport(accept_sock);
581
582 /* Bind socket to address and given port. */
583 rc = sockunion_bind(accept_sock, &su, port, NULL);
584 if (rc < 0) {
585 close(accept_sock); /* Close socket */
586 return rc;
587 }
588
589 /* Listen socket under queue length 3. */
590 rc = listen(accept_sock, 3);
591 if (rc < 0) {
592 zlog_warn("ospf_apiserver_serv_sock_family: listen: %s",
593 safe_strerror(errno));
594 close(accept_sock); /* Close socket */
595 return rc;
596 }
597 return accept_sock;
598 }
599
600
601 /* Accept connection request from external applications. For each
602 accepted connection allocate own connection instance. */
603 int ospf_apiserver_accept(struct thread *thread)
604 {
605 int accept_sock;
606 int new_sync_sock;
607 int new_async_sock;
608 union sockunion su;
609 struct ospf_apiserver *apiserv;
610 struct sockaddr_in peer_async;
611 struct sockaddr_in peer_sync;
612 unsigned int peerlen;
613 int ret;
614
615 /* THREAD_ARG (thread) is NULL */
616 accept_sock = THREAD_FD(thread);
617
618 /* Keep hearing on socket for further connections. */
619 ospf_apiserver_event(OSPF_APISERVER_ACCEPT, accept_sock, NULL);
620
621 memset(&su, 0, sizeof(union sockunion));
622 /* Accept connection for synchronous messages */
623 new_sync_sock = sockunion_accept(accept_sock, &su);
624 if (new_sync_sock < 0) {
625 zlog_warn("ospf_apiserver_accept: accept: %s",
626 safe_strerror(errno));
627 return -1;
628 }
629
630 /* Get port address and port number of peer to make reverse connection.
631 The reverse channel uses the port number of the peer port+1. */
632
633 memset(&peer_sync, 0, sizeof(struct sockaddr_in));
634 peerlen = sizeof(struct sockaddr_in);
635
636 ret = getpeername(new_sync_sock, (struct sockaddr *)&peer_sync,
637 &peerlen);
638 if (ret < 0) {
639 zlog_warn("ospf_apiserver_accept: getpeername: %s",
640 safe_strerror(errno));
641 close(new_sync_sock);
642 return -1;
643 }
644
645 if (IS_DEBUG_OSPF_EVENT)
646 zlog_debug("API: ospf_apiserver_accept: New peer: %s/%u",
647 inet_ntoa(peer_sync.sin_addr),
648 ntohs(peer_sync.sin_port));
649
650 /* Create new socket for asynchronous messages. */
651 peer_async = peer_sync;
652 peer_async.sin_port = htons(ntohs(peer_sync.sin_port) + 1);
653
654 /* Check if remote port number to make reverse connection is valid one.
655 */
656 if (ntohs(peer_async.sin_port) == ospf_apiserver_getport()) {
657 zlog_warn(
658 "API: ospf_apiserver_accept: Peer(%s/%u): Invalid async port number?",
659 inet_ntoa(peer_async.sin_addr),
660 ntohs(peer_async.sin_port));
661 close(new_sync_sock);
662 return -1;
663 }
664
665 new_async_sock = socket(AF_INET, SOCK_STREAM, 0);
666 if (new_async_sock < 0) {
667 zlog_warn("ospf_apiserver_accept: socket: %s",
668 safe_strerror(errno));
669 close(new_sync_sock);
670 return -1;
671 }
672
673 ret = connect(new_async_sock, (struct sockaddr *)&peer_async,
674 sizeof(struct sockaddr_in));
675
676 if (ret < 0) {
677 zlog_warn("ospf_apiserver_accept: connect: %s",
678 safe_strerror(errno));
679 close(new_sync_sock);
680 close(new_async_sock);
681 return -1;
682 }
683
684 #ifdef USE_ASYNC_READ
685 #else /* USE_ASYNC_READ */
686 /* Make the asynchronous channel write-only. */
687 ret = shutdown(new_async_sock, SHUT_RD);
688 if (ret < 0) {
689 zlog_warn("ospf_apiserver_accept: shutdown: %s",
690 safe_strerror(errno));
691 close(new_sync_sock);
692 close(new_async_sock);
693 return -1;
694 }
695 #endif /* USE_ASYNC_READ */
696
697 /* Allocate new server-side connection structure */
698 apiserv = ospf_apiserver_new(new_sync_sock, new_async_sock);
699
700 /* Add to active connection list */
701 listnode_add(apiserver_list, apiserv);
702 apiserv->peer_sync = peer_sync;
703 apiserv->peer_async = peer_async;
704
705 /* And add read threads for new connection */
706 ospf_apiserver_event(OSPF_APISERVER_SYNC_READ, new_sync_sock, apiserv);
707 #ifdef USE_ASYNC_READ
708 ospf_apiserver_event(OSPF_APISERVER_ASYNC_READ, new_async_sock,
709 apiserv);
710 #endif /* USE_ASYNC_READ */
711
712 if (IS_DEBUG_OSPF_EVENT)
713 zlog_debug("API: New apiserv(%p), total#(%d)", (void *)apiserv,
714 apiserver_list->count);
715
716 return 0;
717 }
718
719
720 /* -----------------------------------------------------------
721 * Send reply with return code to client application
722 * -----------------------------------------------------------
723 */
724
725 static int ospf_apiserver_send_msg(struct ospf_apiserver *apiserv,
726 struct msg *msg)
727 {
728 struct msg_fifo *fifo;
729 struct msg *msg2;
730 enum event event;
731 int fd;
732
733 switch (msg->hdr.msgtype) {
734 case MSG_REPLY:
735 fifo = apiserv->out_sync_fifo;
736 fd = apiserv->fd_sync;
737 event = OSPF_APISERVER_SYNC_WRITE;
738 break;
739 case MSG_READY_NOTIFY:
740 case MSG_LSA_UPDATE_NOTIFY:
741 case MSG_LSA_DELETE_NOTIFY:
742 case MSG_NEW_IF:
743 case MSG_DEL_IF:
744 case MSG_ISM_CHANGE:
745 case MSG_NSM_CHANGE:
746 fifo = apiserv->out_async_fifo;
747 fd = apiserv->fd_async;
748 event = OSPF_APISERVER_ASYNC_WRITE;
749 break;
750 default:
751 zlog_warn("ospf_apiserver_send_msg: Unknown message type %d",
752 msg->hdr.msgtype);
753 return -1;
754 }
755
756 /* Make a copy of the message and put in the fifo. Once the fifo
757 gets drained by the write thread, the message will be freed. */
758 /* NB: Given "msg" is untouched in this function. */
759 msg2 = msg_dup(msg);
760
761 /* Enqueue message into corresponding fifo queue */
762 msg_fifo_push(fifo, msg2);
763
764 /* Schedule write thread */
765 ospf_apiserver_event(event, fd, apiserv);
766 return 0;
767 }
768
769 int ospf_apiserver_send_reply(struct ospf_apiserver *apiserv, uint32_t seqnr,
770 uint8_t rc)
771 {
772 struct msg *msg = new_msg_reply(seqnr, rc);
773 int ret;
774
775 if (!msg) {
776 zlog_warn("ospf_apiserver_send_reply: msg_new failed");
777 #ifdef NOTYET
778 /* Cannot allocate new message. What should we do? */
779 ospf_apiserver_free(apiserv);
780 #endif
781 return -1;
782 }
783
784 ret = ospf_apiserver_send_msg(apiserv, msg);
785 msg_free(msg);
786 return ret;
787 }
788
789
790 /* -----------------------------------------------------------
791 * Generic message dispatching handler function
792 * -----------------------------------------------------------
793 */
794
795 int ospf_apiserver_handle_msg(struct ospf_apiserver *apiserv, struct msg *msg)
796 {
797 int rc;
798
799 /* Call corresponding message handler function. */
800 switch (msg->hdr.msgtype) {
801 case MSG_REGISTER_OPAQUETYPE:
802 rc = ospf_apiserver_handle_register_opaque_type(apiserv, msg);
803 break;
804 case MSG_UNREGISTER_OPAQUETYPE:
805 rc = ospf_apiserver_handle_unregister_opaque_type(apiserv, msg);
806 break;
807 case MSG_REGISTER_EVENT:
808 rc = ospf_apiserver_handle_register_event(apiserv, msg);
809 break;
810 case MSG_SYNC_LSDB:
811 rc = ospf_apiserver_handle_sync_lsdb(apiserv, msg);
812 break;
813 case MSG_ORIGINATE_REQUEST:
814 rc = ospf_apiserver_handle_originate_request(apiserv, msg);
815 break;
816 case MSG_DELETE_REQUEST:
817 rc = ospf_apiserver_handle_delete_request(apiserv, msg);
818 break;
819 default:
820 zlog_warn("ospf_apiserver_handle_msg: Unknown message type: %d",
821 msg->hdr.msgtype);
822 rc = -1;
823 }
824 return rc;
825 }
826
827
828 /* -----------------------------------------------------------
829 * Following are functions for opaque type registration
830 * -----------------------------------------------------------
831 */
832
833 int ospf_apiserver_register_opaque_type(struct ospf_apiserver *apiserv,
834 uint8_t lsa_type, uint8_t opaque_type)
835 {
836 struct registered_opaque_type *regtype;
837 int (*originator_func)(void *arg);
838 int rc;
839
840 switch (lsa_type) {
841 case OSPF_OPAQUE_LINK_LSA:
842 originator_func = ospf_apiserver_lsa9_originator;
843 break;
844 case OSPF_OPAQUE_AREA_LSA:
845 originator_func = ospf_apiserver_lsa10_originator;
846 break;
847 case OSPF_OPAQUE_AS_LSA:
848 originator_func = ospf_apiserver_lsa11_originator;
849 break;
850 default:
851 zlog_warn("ospf_apiserver_register_opaque_type: lsa_type(%d)",
852 lsa_type);
853 return OSPF_API_ILLEGALLSATYPE;
854 }
855
856
857 /* Register opaque function table */
858 /* NB: Duplicated registration will be detected inside the function. */
859 rc = ospf_register_opaque_functab(
860 lsa_type, opaque_type, NULL, /* ospf_apiserver_new_if */
861 NULL, /* ospf_apiserver_del_if */
862 NULL, /* ospf_apiserver_ism_change */
863 NULL, /* ospf_apiserver_nsm_change */
864 NULL, NULL, NULL, ospf_apiserver_show_info, originator_func,
865 ospf_apiserver_lsa_refresher,
866 NULL, /* ospf_apiserver_lsa_update */
867 NULL /* ospf_apiserver_lsa_delete */);
868
869 if (rc != 0) {
870 zlog_warn("Failed to register opaque type [%d/%d]", lsa_type,
871 opaque_type);
872 return OSPF_API_OPAQUETYPEINUSE;
873 }
874
875 /* Remember the opaque type that application registers so when
876 connection shuts down, we can flush all LSAs of this opaque
877 type. */
878
879 regtype = XCALLOC(MTYPE_OSPF_APISERVER,
880 sizeof(struct registered_opaque_type));
881 regtype->lsa_type = lsa_type;
882 regtype->opaque_type = opaque_type;
883
884 /* Add to list of registered opaque types */
885 listnode_add(apiserv->opaque_types, regtype);
886
887 if (IS_DEBUG_OSPF_EVENT)
888 zlog_debug(
889 "API: Add LSA-type(%d)/Opaque-type(%d) into"
890 " apiserv(%p), total#(%d)",
891 lsa_type, opaque_type, (void *)apiserv,
892 listcount(apiserv->opaque_types));
893
894 return 0;
895 }
896
897 int ospf_apiserver_unregister_opaque_type(struct ospf_apiserver *apiserv,
898 uint8_t lsa_type, uint8_t opaque_type)
899 {
900 struct listnode *node, *nnode;
901 struct registered_opaque_type *regtype;
902
903 for (ALL_LIST_ELEMENTS(apiserv->opaque_types, node, nnode, regtype)) {
904 /* Check if we really registered this opaque type */
905 if (regtype->lsa_type == lsa_type
906 && regtype->opaque_type == opaque_type) {
907
908 /* Yes, we registered this opaque type. Flush
909 all existing opaque LSAs of this type */
910
911 ospf_apiserver_flush_opaque_lsa(apiserv, lsa_type,
912 opaque_type);
913 ospf_delete_opaque_functab(lsa_type, opaque_type);
914
915 /* Remove from list of registered opaque types */
916 listnode_delete(apiserv->opaque_types, regtype);
917
918 if (IS_DEBUG_OSPF_EVENT)
919 zlog_debug(
920 "API: Del LSA-type(%d)/Opaque-type(%d)"
921 " from apiserv(%p), total#(%d)",
922 lsa_type, opaque_type, (void *)apiserv,
923 listcount(apiserv->opaque_types));
924
925 return 0;
926 }
927 }
928
929 /* Opaque type is not registered */
930 zlog_warn("Failed to unregister opaque type [%d/%d]", lsa_type,
931 opaque_type);
932 return OSPF_API_OPAQUETYPENOTREGISTERED;
933 }
934
935
936 static int apiserver_is_opaque_type_registered(struct ospf_apiserver *apiserv,
937 uint8_t lsa_type,
938 uint8_t opaque_type)
939 {
940 struct listnode *node, *nnode;
941 struct registered_opaque_type *regtype;
942
943 /* XXX: how many types are there? if few, why not just a bitmap? */
944 for (ALL_LIST_ELEMENTS(apiserv->opaque_types, node, nnode, regtype)) {
945 /* Check if we really registered this opaque type */
946 if (regtype->lsa_type == lsa_type
947 && regtype->opaque_type == opaque_type) {
948 /* Yes registered */
949 return 1;
950 }
951 }
952 /* Not registered */
953 return 0;
954 }
955
956 int ospf_apiserver_handle_register_opaque_type(struct ospf_apiserver *apiserv,
957 struct msg *msg)
958 {
959 struct msg_register_opaque_type *rmsg;
960 uint8_t lsa_type;
961 uint8_t opaque_type;
962 int rc = 0;
963
964 /* Extract parameters from register opaque type message */
965 rmsg = (struct msg_register_opaque_type *)STREAM_DATA(msg->s);
966
967 lsa_type = rmsg->lsatype;
968 opaque_type = rmsg->opaquetype;
969
970 rc = ospf_apiserver_register_opaque_type(apiserv, lsa_type,
971 opaque_type);
972
973 /* Send a reply back to client including return code */
974 rc = ospf_apiserver_send_reply(apiserv, ntohl(msg->hdr.msgseq), rc);
975 if (rc < 0)
976 goto out;
977
978 /* Now inform application about opaque types that are ready */
979 switch (lsa_type) {
980 case OSPF_OPAQUE_LINK_LSA:
981 ospf_apiserver_notify_ready_type9(apiserv);
982 break;
983 case OSPF_OPAQUE_AREA_LSA:
984 ospf_apiserver_notify_ready_type10(apiserv);
985 break;
986 case OSPF_OPAQUE_AS_LSA:
987 ospf_apiserver_notify_ready_type11(apiserv);
988 break;
989 }
990 out:
991 return rc;
992 }
993
994
995 /* Notify specific client about all opaque types 9 that are ready. */
996 void ospf_apiserver_notify_ready_type9(struct ospf_apiserver *apiserv)
997 {
998 struct listnode *node, *nnode;
999 struct listnode *node2, *nnode2;
1000 struct ospf *ospf;
1001 struct ospf_interface *oi;
1002 struct registered_opaque_type *r;
1003
1004 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1005
1006 for (ALL_LIST_ELEMENTS(ospf->oiflist, node, nnode, oi)) {
1007 /* Check if this interface is indeed ready for type 9 */
1008 if (!ospf_apiserver_is_ready_type9(oi))
1009 continue;
1010
1011 /* Check for registered opaque type 9 types */
1012 /* XXX: loop-de-loop - optimise me */
1013 for (ALL_LIST_ELEMENTS(apiserv->opaque_types, node2, nnode2,
1014 r)) {
1015 struct msg *msg;
1016
1017 if (r->lsa_type == OSPF_OPAQUE_LINK_LSA) {
1018
1019 /* Yes, this opaque type is ready */
1020 msg = new_msg_ready_notify(
1021 0, OSPF_OPAQUE_LINK_LSA, r->opaque_type,
1022 oi->address->u.prefix4);
1023 if (!msg) {
1024 zlog_warn(
1025 "apiserver_notify_ready_type9: msg_new failed");
1026 #ifdef NOTYET
1027 /* Cannot allocate new message. What
1028 * should we do? */
1029 ospf_apiserver_free(apiserv);
1030 #endif
1031 goto out;
1032 }
1033 ospf_apiserver_send_msg(apiserv, msg);
1034 msg_free(msg);
1035 }
1036 }
1037 }
1038
1039 out:
1040 return;
1041 }
1042
1043
1044 /* Notify specific client about all opaque types 10 that are ready. */
1045 void ospf_apiserver_notify_ready_type10(struct ospf_apiserver *apiserv)
1046 {
1047 struct listnode *node, *nnode;
1048 struct listnode *node2, *nnode2;
1049 struct ospf *ospf;
1050 struct ospf_area *area;
1051
1052 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1053
1054 for (ALL_LIST_ELEMENTS(ospf->areas, node, nnode, area)) {
1055 struct registered_opaque_type *r;
1056
1057 if (!ospf_apiserver_is_ready_type10(area)) {
1058 continue;
1059 }
1060
1061 /* Check for registered opaque type 10 types */
1062 /* XXX: loop in loop - optimise me */
1063 for (ALL_LIST_ELEMENTS(apiserv->opaque_types, node2, nnode2,
1064 r)) {
1065 struct msg *msg;
1066
1067 if (r->lsa_type == OSPF_OPAQUE_AREA_LSA) {
1068 /* Yes, this opaque type is ready */
1069 msg = new_msg_ready_notify(
1070 0, OSPF_OPAQUE_AREA_LSA, r->opaque_type,
1071 area->area_id);
1072 if (!msg) {
1073 zlog_warn(
1074 "apiserver_notify_ready_type10: msg_new failed");
1075 #ifdef NOTYET
1076 /* Cannot allocate new message. What
1077 * should we do? */
1078 ospf_apiserver_free(apiserv);
1079 #endif
1080 goto out;
1081 }
1082 ospf_apiserver_send_msg(apiserv, msg);
1083 msg_free(msg);
1084 }
1085 }
1086 }
1087
1088 out:
1089 return;
1090 }
1091
1092 /* Notify specific client about all opaque types 11 that are ready */
1093 void ospf_apiserver_notify_ready_type11(struct ospf_apiserver *apiserv)
1094 {
1095 struct listnode *node, *nnode;
1096 struct ospf *ospf;
1097 struct registered_opaque_type *r;
1098
1099 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1100
1101 /* Can type 11 be originated? */
1102 if (!ospf_apiserver_is_ready_type11(ospf))
1103 goto out;
1104
1105 /* Check for registered opaque type 11 types */
1106 for (ALL_LIST_ELEMENTS(apiserv->opaque_types, node, nnode, r)) {
1107 struct msg *msg;
1108 struct in_addr noarea_id = {.s_addr = 0L};
1109
1110 if (r->lsa_type == OSPF_OPAQUE_AS_LSA) {
1111 /* Yes, this opaque type is ready */
1112 msg = new_msg_ready_notify(0, OSPF_OPAQUE_AS_LSA,
1113 r->opaque_type, noarea_id);
1114
1115 if (!msg) {
1116 zlog_warn(
1117 "apiserver_notify_ready_type11: msg_new failed");
1118 #ifdef NOTYET
1119 /* Cannot allocate new message. What should we
1120 * do? */
1121 ospf_apiserver_free(apiserv);
1122 #endif
1123 goto out;
1124 }
1125 ospf_apiserver_send_msg(apiserv, msg);
1126 msg_free(msg);
1127 }
1128 }
1129
1130 out:
1131 return;
1132 }
1133
1134 int ospf_apiserver_handle_unregister_opaque_type(struct ospf_apiserver *apiserv,
1135 struct msg *msg)
1136 {
1137 struct msg_unregister_opaque_type *umsg;
1138 uint8_t ltype;
1139 uint8_t otype;
1140 int rc = 0;
1141
1142 /* Extract parameters from unregister opaque type message */
1143 umsg = (struct msg_unregister_opaque_type *)STREAM_DATA(msg->s);
1144
1145 ltype = umsg->lsatype;
1146 otype = umsg->opaquetype;
1147
1148 rc = ospf_apiserver_unregister_opaque_type(apiserv, ltype, otype);
1149
1150 /* Send a reply back to client including return code */
1151 rc = ospf_apiserver_send_reply(apiserv, ntohl(msg->hdr.msgseq), rc);
1152
1153 return rc;
1154 }
1155
1156
1157 /* -----------------------------------------------------------
1158 * Following are functions for event (filter) registration.
1159 * -----------------------------------------------------------
1160 */
1161 int ospf_apiserver_handle_register_event(struct ospf_apiserver *apiserv,
1162 struct msg *msg)
1163 {
1164 struct msg_register_event *rmsg;
1165 int rc;
1166 uint32_t seqnum;
1167
1168 rmsg = (struct msg_register_event *)STREAM_DATA(msg->s);
1169
1170 /* Get request sequence number */
1171 seqnum = msg_get_seq(msg);
1172
1173 /* Free existing filter in apiserv. */
1174 XFREE(MTYPE_OSPF_APISERVER_MSGFILTER, apiserv->filter);
1175 /* Alloc new space for filter. */
1176
1177 apiserv->filter =
1178 XMALLOC(MTYPE_OSPF_APISERVER_MSGFILTER, ntohs(msg->hdr.msglen));
1179
1180 /* copy it over. */
1181 memcpy(apiserv->filter, &rmsg->filter, ntohs(msg->hdr.msglen));
1182 rc = OSPF_API_OK;
1183
1184 /* Send a reply back to client with return code */
1185 rc = ospf_apiserver_send_reply(apiserv, seqnum, rc);
1186 return rc;
1187 }
1188
1189
1190 /* -----------------------------------------------------------
1191 * Followings are functions for LSDB synchronization.
1192 * -----------------------------------------------------------
1193 */
1194
1195 static int apiserver_sync_callback(struct ospf_lsa *lsa, void *p_arg,
1196 int int_arg)
1197 {
1198 struct ospf_apiserver *apiserv;
1199 int seqnum;
1200 struct msg *msg;
1201 struct param_t {
1202 struct ospf_apiserver *apiserv;
1203 struct lsa_filter_type *filter;
1204 } * param;
1205 int rc = -1;
1206
1207 /* Sanity check */
1208 assert(lsa->data);
1209 assert(p_arg);
1210
1211 param = (struct param_t *)p_arg;
1212 apiserv = param->apiserv;
1213 seqnum = (uint32_t)int_arg;
1214
1215 /* Check origin in filter. */
1216 if ((param->filter->origin == ANY_ORIGIN)
1217 || (param->filter->origin == (lsa->flags & OSPF_LSA_SELF))) {
1218
1219 /* Default area for AS-External and Opaque11 LSAs */
1220 struct in_addr area_id = {.s_addr = 0L};
1221
1222 /* Default interface for non Opaque9 LSAs */
1223 struct in_addr ifaddr = {.s_addr = 0L};
1224
1225 if (lsa->area) {
1226 area_id = lsa->area->area_id;
1227 }
1228 if (lsa->data->type == OSPF_OPAQUE_LINK_LSA) {
1229 ifaddr = lsa->oi->address->u.prefix4;
1230 }
1231
1232 msg = new_msg_lsa_change_notify(
1233 MSG_LSA_UPDATE_NOTIFY, seqnum, ifaddr, area_id,
1234 lsa->flags & OSPF_LSA_SELF, lsa->data);
1235 if (!msg) {
1236 zlog_warn(
1237 "apiserver_sync_callback: new_msg_update failed");
1238 #ifdef NOTYET
1239 /* Cannot allocate new message. What should we do? */
1240 /* ospf_apiserver_free (apiserv);*/ /* Do nothing
1241 here XXX
1242 */
1243 #endif
1244 goto out;
1245 }
1246
1247 /* Send LSA */
1248 ospf_apiserver_send_msg(apiserv, msg);
1249 msg_free(msg);
1250 }
1251 rc = 0;
1252
1253 out:
1254 return rc;
1255 }
1256
1257 int ospf_apiserver_handle_sync_lsdb(struct ospf_apiserver *apiserv,
1258 struct msg *msg)
1259 {
1260 struct listnode *node, *nnode;
1261 uint32_t seqnum;
1262 int rc = 0;
1263 struct msg_sync_lsdb *smsg;
1264 struct ospf_apiserver_param_t {
1265 struct ospf_apiserver *apiserv;
1266 struct lsa_filter_type *filter;
1267 } param;
1268 uint16_t mask;
1269 struct route_node *rn;
1270 struct ospf_lsa *lsa;
1271 struct ospf *ospf;
1272 struct ospf_area *area;
1273
1274 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1275
1276 /* Get request sequence number */
1277 seqnum = msg_get_seq(msg);
1278 /* Set sync msg. */
1279 smsg = (struct msg_sync_lsdb *)STREAM_DATA(msg->s);
1280
1281 /* Set parameter struct. */
1282 param.apiserv = apiserv;
1283 param.filter = &smsg->filter;
1284
1285 /* Remember mask. */
1286 mask = ntohs(smsg->filter.typemask);
1287
1288 /* Iterate over all areas. */
1289 for (ALL_LIST_ELEMENTS(ospf->areas, node, nnode, area)) {
1290 int i;
1291 uint32_t *area_id = NULL;
1292
1293 /* Compare area_id with area_ids in sync request. */
1294 if ((i = smsg->filter.num_areas) > 0) {
1295 /* Let area_id point to the list of area IDs,
1296 * which is at the end of smsg->filter. */
1297 area_id = (uint32_t *)(&smsg->filter + 1);
1298 while (i) {
1299 if (*area_id == area->area_id.s_addr) {
1300 break;
1301 }
1302 i--;
1303 area_id++;
1304 }
1305 } else {
1306 i = 1;
1307 }
1308
1309 /* If area was found, then i>0 here. */
1310 if (i) {
1311 /* Check msg type. */
1312 if (mask & Power2[OSPF_ROUTER_LSA])
1313 LSDB_LOOP (ROUTER_LSDB(area), rn, lsa)
1314 apiserver_sync_callback(
1315 lsa, (void *)&param, seqnum);
1316 if (mask & Power2[OSPF_NETWORK_LSA])
1317 LSDB_LOOP (NETWORK_LSDB(area), rn, lsa)
1318 apiserver_sync_callback(
1319 lsa, (void *)&param, seqnum);
1320 if (mask & Power2[OSPF_SUMMARY_LSA])
1321 LSDB_LOOP (SUMMARY_LSDB(area), rn, lsa)
1322 apiserver_sync_callback(
1323 lsa, (void *)&param, seqnum);
1324 if (mask & Power2[OSPF_ASBR_SUMMARY_LSA])
1325 LSDB_LOOP (ASBR_SUMMARY_LSDB(area), rn, lsa)
1326 apiserver_sync_callback(
1327 lsa, (void *)&param, seqnum);
1328 if (mask & Power2[OSPF_OPAQUE_LINK_LSA])
1329 LSDB_LOOP (OPAQUE_LINK_LSDB(area), rn, lsa)
1330 apiserver_sync_callback(
1331 lsa, (void *)&param, seqnum);
1332 if (mask & Power2[OSPF_OPAQUE_AREA_LSA])
1333 LSDB_LOOP (OPAQUE_AREA_LSDB(area), rn, lsa)
1334 apiserver_sync_callback(
1335 lsa, (void *)&param, seqnum);
1336 }
1337 }
1338
1339 /* For AS-external LSAs */
1340 if (ospf->lsdb) {
1341 if (mask & Power2[OSPF_AS_EXTERNAL_LSA])
1342 LSDB_LOOP (EXTERNAL_LSDB(ospf), rn, lsa)
1343 apiserver_sync_callback(lsa, (void *)&param,
1344 seqnum);
1345 }
1346
1347 /* For AS-external opaque LSAs */
1348 if (ospf->lsdb) {
1349 if (mask & Power2[OSPF_OPAQUE_AS_LSA])
1350 LSDB_LOOP (OPAQUE_AS_LSDB(ospf), rn, lsa)
1351 apiserver_sync_callback(lsa, (void *)&param,
1352 seqnum);
1353 }
1354
1355 /* Send a reply back to client with return code */
1356 rc = ospf_apiserver_send_reply(apiserv, seqnum, rc);
1357 return rc;
1358 }
1359
1360
1361 /* -----------------------------------------------------------
1362 * Followings are functions to originate or update LSA
1363 * from an application.
1364 * -----------------------------------------------------------
1365 */
1366
1367 /* Create a new internal opaque LSA by taking prototype and filling in
1368 missing fields such as age, sequence number, advertising router,
1369 checksum and so on. The interface parameter is used for type 9
1370 LSAs, area parameter for type 10. Type 11 LSAs do neither need area
1371 nor interface. */
1372
1373 struct ospf_lsa *ospf_apiserver_opaque_lsa_new(struct ospf_area *area,
1374 struct ospf_interface *oi,
1375 struct lsa_header *protolsa)
1376 {
1377 struct stream *s;
1378 struct lsa_header *newlsa;
1379 struct ospf_lsa *new = NULL;
1380 uint8_t options = 0x0;
1381 uint16_t length;
1382
1383 struct ospf *ospf;
1384
1385 if (oi && oi->ospf)
1386 ospf = oi->ospf;
1387 else
1388 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1389
1390 assert(ospf);
1391
1392 /* Create a stream for internal opaque LSA */
1393 if ((s = stream_new(OSPF_MAX_LSA_SIZE)) == NULL) {
1394 zlog_warn("ospf_apiserver_opaque_lsa_new: stream_new failed");
1395 return NULL;
1396 }
1397
1398 newlsa = (struct lsa_header *)STREAM_DATA(s);
1399
1400 /* XXX If this is a link-local LSA or an AS-external LSA, how do we
1401 have to set options? */
1402
1403 if (area) {
1404 options = LSA_OPTIONS_GET(area);
1405 options |= LSA_OPTIONS_NSSA_GET(area);
1406 }
1407
1408 options |= OSPF_OPTION_O; /* Don't forget to set option bit */
1409
1410 if (IS_DEBUG_OSPF(lsa, LSA_GENERATE)) {
1411 zlog_debug("LSA[Type%d:%s]: Creating an Opaque-LSA instance",
1412 protolsa->type, inet_ntoa(protolsa->id));
1413 }
1414
1415 /* Set opaque-LSA header fields. */
1416 lsa_header_set(s, options, protolsa->type, protolsa->id,
1417 ospf->router_id);
1418
1419 /* Set opaque-LSA body fields. */
1420 stream_put(s, ((uint8_t *)protolsa) + sizeof(struct lsa_header),
1421 ntohs(protolsa->length) - sizeof(struct lsa_header));
1422
1423 /* Determine length of LSA. */
1424 length = stream_get_endp(s);
1425 newlsa->length = htons(length);
1426
1427 /* Create OSPF LSA. */
1428 if ((new = ospf_lsa_new()) == NULL) {
1429 zlog_warn("ospf_apiserver_opaque_lsa_new: ospf_lsa_new() ?");
1430 stream_free(s);
1431 return NULL;
1432 }
1433
1434 if ((new->data = ospf_lsa_data_new(length)) == NULL) {
1435 zlog_warn(
1436 "ospf_apiserver_opaque_lsa_new: ospf_lsa_data_new() ?");
1437 ospf_lsa_unlock(&new);
1438 stream_free(s);
1439 return NULL;
1440 }
1441
1442 new->area = area;
1443 new->oi = oi;
1444 new->vrf_id = ospf->vrf_id;
1445
1446 SET_FLAG(new->flags, OSPF_LSA_SELF);
1447 memcpy(new->data, newlsa, length);
1448 stream_free(s);
1449
1450 return new;
1451 }
1452
1453
1454 int ospf_apiserver_is_ready_type9(struct ospf_interface *oi)
1455 {
1456 /* Type 9 opaque LSA can be originated if there is at least one
1457 active opaque-capable neighbor attached to the outgoing
1458 interface. */
1459
1460 return (ospf_nbr_count_opaque_capable(oi) > 0);
1461 }
1462
1463 int ospf_apiserver_is_ready_type10(struct ospf_area *area)
1464 {
1465 /* Type 10 opaque LSA can be originated if there is at least one
1466 interface belonging to the area that has an active opaque-capable
1467 neighbor. */
1468 struct listnode *node, *nnode;
1469 struct ospf_interface *oi;
1470
1471 for (ALL_LIST_ELEMENTS(area->oiflist, node, nnode, oi))
1472 /* Is there an active neighbor attached to this interface? */
1473 if (ospf_apiserver_is_ready_type9(oi))
1474 return 1;
1475
1476 /* No active neighbor in area */
1477 return 0;
1478 }
1479
1480 int ospf_apiserver_is_ready_type11(struct ospf *ospf)
1481 {
1482 /* Type 11 opaque LSA can be originated if there is at least one
1483 interface
1484 that has an active opaque-capable neighbor. */
1485 struct listnode *node, *nnode;
1486 struct ospf_interface *oi;
1487
1488 for (ALL_LIST_ELEMENTS(ospf->oiflist, node, nnode, oi))
1489 /* Is there an active neighbor attached to this interface? */
1490 if (ospf_apiserver_is_ready_type9(oi))
1491 return 1;
1492
1493 /* No active neighbor at all */
1494 return 0;
1495 }
1496
1497
1498 int ospf_apiserver_handle_originate_request(struct ospf_apiserver *apiserv,
1499 struct msg *msg)
1500 {
1501 struct msg_originate_request *omsg;
1502 struct lsa_header *data;
1503 struct ospf_lsa *new;
1504 struct ospf_lsa *old;
1505 struct ospf_area *area = NULL;
1506 struct ospf_interface *oi = NULL;
1507 struct ospf_lsdb *lsdb = NULL;
1508 struct ospf *ospf;
1509 int lsa_type, opaque_type;
1510 int ready = 0;
1511 int rc = 0;
1512
1513 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1514
1515 /* Extract opaque LSA data from message */
1516 omsg = (struct msg_originate_request *)STREAM_DATA(msg->s);
1517 data = &omsg->data;
1518
1519 /* Determine interface for type9 or area for type10 LSAs. */
1520 switch (data->type) {
1521 case OSPF_OPAQUE_LINK_LSA:
1522 oi = ospf_apiserver_if_lookup_by_addr(omsg->ifaddr);
1523 if (!oi) {
1524 zlog_warn("apiserver_originate: unknown interface %s",
1525 inet_ntoa(omsg->ifaddr));
1526 rc = OSPF_API_NOSUCHINTERFACE;
1527 goto out;
1528 }
1529 area = oi->area;
1530 lsdb = area->lsdb;
1531 break;
1532 case OSPF_OPAQUE_AREA_LSA:
1533 area = ospf_area_lookup_by_area_id(ospf, omsg->area_id);
1534 if (!area) {
1535 zlog_warn("apiserver_originate: unknown area %s",
1536 inet_ntoa(omsg->area_id));
1537 rc = OSPF_API_NOSUCHAREA;
1538 goto out;
1539 }
1540 lsdb = area->lsdb;
1541 break;
1542 case OSPF_OPAQUE_AS_LSA:
1543 lsdb = ospf->lsdb;
1544 break;
1545 default:
1546 /* We can only handle opaque types here */
1547 zlog_warn(
1548 "apiserver_originate: Cannot originate non-opaque LSA type %d",
1549 data->type);
1550 rc = OSPF_API_ILLEGALLSATYPE;
1551 goto out;
1552 }
1553
1554 /* Check if we registered this opaque type */
1555 lsa_type = data->type;
1556 opaque_type = GET_OPAQUE_TYPE(ntohl(data->id.s_addr));
1557
1558 if (!apiserver_is_opaque_type_registered(apiserv, lsa_type,
1559 opaque_type)) {
1560 zlog_warn(
1561 "apiserver_originate: LSA-type(%d)/Opaque-type(%d): Not registered",
1562 lsa_type, opaque_type);
1563 rc = OSPF_API_OPAQUETYPENOTREGISTERED;
1564 goto out;
1565 }
1566
1567 /* Make sure that the neighbors are ready before we can originate */
1568 switch (data->type) {
1569 case OSPF_OPAQUE_LINK_LSA:
1570 ready = ospf_apiserver_is_ready_type9(oi);
1571 break;
1572 case OSPF_OPAQUE_AREA_LSA:
1573 ready = ospf_apiserver_is_ready_type10(area);
1574 break;
1575 case OSPF_OPAQUE_AS_LSA:
1576 ready = ospf_apiserver_is_ready_type11(ospf);
1577 break;
1578 default:
1579 break;
1580 }
1581
1582 if (!ready) {
1583 zlog_warn("Neighbors not ready to originate type %d",
1584 data->type);
1585 rc = OSPF_API_NOTREADY;
1586 goto out;
1587 }
1588
1589 /* Create OSPF's internal opaque LSA representation */
1590 new = ospf_apiserver_opaque_lsa_new(area, oi, data);
1591 if (!new) {
1592 rc = OSPF_API_NOMEMORY; /* XXX */
1593 goto out;
1594 }
1595
1596 /* Determine if LSA is new or an update for an existing one. */
1597 old = ospf_lsdb_lookup(lsdb, new);
1598
1599 if (!old) {
1600 /* New LSA install in LSDB. */
1601 rc = ospf_apiserver_originate1(new);
1602 } else {
1603 /*
1604 * Keep the new LSA instance in the "waiting place" until the
1605 * next
1606 * refresh timing. If several LSA update requests for the same
1607 * LSID
1608 * have issued by peer, the last one takes effect.
1609 */
1610 new->lsdb = &apiserv->reserve;
1611 ospf_lsdb_add(&apiserv->reserve, new);
1612
1613 /* Kick the scheduler function. */
1614 ospf_opaque_lsa_refresh_schedule(old);
1615 }
1616
1617 out:
1618
1619 /* Send a reply back to client with return code */
1620 rc = ospf_apiserver_send_reply(apiserv, ntohl(msg->hdr.msgseq), rc);
1621 return rc;
1622 }
1623
1624
1625 /* -----------------------------------------------------------
1626 * Flood an LSA within its flooding scope.
1627 * -----------------------------------------------------------
1628 */
1629
1630 /* XXX We can probably use ospf_flood_through instead of this function
1631 but then we need the neighbor parameter. If we set nbr to
1632 NULL then ospf_flood_through crashes due to dereferencing NULL. */
1633
1634 void ospf_apiserver_flood_opaque_lsa(struct ospf_lsa *lsa)
1635 {
1636 assert(lsa);
1637
1638 switch (lsa->data->type) {
1639 case OSPF_OPAQUE_LINK_LSA:
1640 /* Increment counters? XXX */
1641
1642 /* Flood LSA through local network. */
1643 ospf_flood_through_area(lsa->area, NULL /*nbr */, lsa);
1644 break;
1645 case OSPF_OPAQUE_AREA_LSA:
1646 /* Update LSA origination count. */
1647 assert(lsa->area);
1648 lsa->area->ospf->lsa_originate_count++;
1649
1650 /* Flood LSA through area. */
1651 ospf_flood_through_area(lsa->area, NULL /*nbr */, lsa);
1652 break;
1653 case OSPF_OPAQUE_AS_LSA: {
1654 struct ospf *ospf;
1655
1656 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1657 assert(ospf);
1658
1659 /* Increment counters? XXX */
1660
1661 /* Flood LSA through AS. */
1662 ospf_flood_through_as(ospf, NULL /*nbr */, lsa);
1663 break;
1664 }
1665 }
1666 }
1667
1668 int ospf_apiserver_originate1(struct ospf_lsa *lsa)
1669 {
1670 struct ospf *ospf;
1671
1672 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1673 assert(ospf);
1674
1675 /* Install this LSA into LSDB. */
1676 if (ospf_lsa_install(ospf, lsa->oi, lsa) == NULL) {
1677 zlog_warn("ospf_apiserver_originate1: ospf_lsa_install failed");
1678 return -1;
1679 }
1680
1681 /* Flood LSA within scope */
1682
1683 #ifdef NOTYET
1684 /*
1685 * NB: Modified version of "ospf_flood_though ()" accepts NULL "inbr"
1686 * parameter, and thus it does not cause SIGSEGV error.
1687 */
1688 ospf_flood_through(NULL /*nbr */, lsa);
1689 #else /* NOTYET */
1690
1691 ospf_apiserver_flood_opaque_lsa(lsa);
1692 #endif /* NOTYET */
1693
1694 return 0;
1695 }
1696
1697
1698 /* Opaque LSAs of type 9 on a specific interface can now be
1699 originated. Tell clients that registered type 9. */
1700 int ospf_apiserver_lsa9_originator(void *arg)
1701 {
1702 struct ospf_interface *oi;
1703
1704 oi = (struct ospf_interface *)arg;
1705 if (listcount(apiserver_list) > 0) {
1706 ospf_apiserver_clients_notify_ready_type9(oi);
1707 }
1708 return 0;
1709 }
1710
1711 int ospf_apiserver_lsa10_originator(void *arg)
1712 {
1713 struct ospf_area *area;
1714
1715 area = (struct ospf_area *)arg;
1716 if (listcount(apiserver_list) > 0) {
1717 ospf_apiserver_clients_notify_ready_type10(area);
1718 }
1719 return 0;
1720 }
1721
1722 int ospf_apiserver_lsa11_originator(void *arg)
1723 {
1724 struct ospf *ospf;
1725
1726 ospf = (struct ospf *)arg;
1727 if (listcount(apiserver_list) > 0) {
1728 ospf_apiserver_clients_notify_ready_type11(ospf);
1729 }
1730 return 0;
1731 }
1732
1733
1734 /* Periodically refresh opaque LSAs so that they do not expire in
1735 other routers. */
1736 struct ospf_lsa *ospf_apiserver_lsa_refresher(struct ospf_lsa *lsa)
1737 {
1738 struct ospf_apiserver *apiserv;
1739 struct ospf_lsa *new = NULL;
1740 struct ospf *ospf;
1741
1742 assert(lsa);
1743
1744 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1745 assert(ospf);
1746
1747 apiserv = lookup_apiserver_by_lsa(lsa);
1748 if (!apiserv) {
1749 zlog_warn(
1750 "ospf_apiserver_lsa_refresher: LSA[%s]: No apiserver?",
1751 dump_lsa_key(lsa));
1752 lsa->data->ls_age =
1753 htons(OSPF_LSA_MAXAGE); /* Flush it anyway. */
1754 goto out;
1755 }
1756
1757 if (IS_LSA_MAXAGE(lsa)) {
1758 ospf_opaque_lsa_flush_schedule(lsa);
1759 goto out;
1760 }
1761
1762 /* Check if updated version of LSA instance has already prepared. */
1763 new = ospf_lsdb_lookup(&apiserv->reserve, lsa);
1764 if (!new) {
1765 /* This is a periodic refresh, driven by core OSPF mechanism. */
1766 new = ospf_apiserver_opaque_lsa_new(lsa->area, lsa->oi,
1767 lsa->data);
1768 if (!new) {
1769 zlog_warn(
1770 "ospf_apiserver_lsa_refresher: Cannot create a new LSA?");
1771 goto out;
1772 }
1773 } else {
1774 /* This is a forcible refresh, requested by OSPF-API client. */
1775 ospf_lsdb_delete(&apiserv->reserve, new);
1776 new->lsdb = NULL;
1777 }
1778
1779 /* Increment sequence number */
1780 new->data->ls_seqnum = lsa_seqnum_increment(lsa);
1781
1782 /* New LSA is in same area. */
1783 new->area = lsa->area;
1784 SET_FLAG(new->flags, OSPF_LSA_SELF);
1785
1786 /* Install LSA into LSDB. */
1787 if (ospf_lsa_install(ospf, new->oi, new) == NULL) {
1788 zlog_warn(
1789 "ospf_apiserver_lsa_refresher: ospf_lsa_install failed");
1790 ospf_lsa_unlock(&new);
1791 goto out;
1792 }
1793
1794 /* Flood updated LSA through interface, area or AS */
1795
1796 #ifdef NOTYET
1797 ospf_flood_through(NULL /*nbr */, new);
1798 #endif /* NOTYET */
1799 ospf_apiserver_flood_opaque_lsa(new);
1800
1801 /* Debug logging. */
1802 if (IS_DEBUG_OSPF(lsa, LSA_GENERATE)) {
1803 zlog_debug("LSA[Type%d:%s]: Refresh Opaque LSA",
1804 new->data->type, inet_ntoa(new->data->id));
1805 ospf_lsa_header_dump(new->data);
1806 }
1807
1808 out:
1809 return new;
1810 }
1811
1812
1813 /* -----------------------------------------------------------
1814 * Followings are functions to delete LSAs
1815 * -----------------------------------------------------------
1816 */
1817
1818 int ospf_apiserver_handle_delete_request(struct ospf_apiserver *apiserv,
1819 struct msg *msg)
1820 {
1821 struct msg_delete_request *dmsg;
1822 struct ospf_lsa *old;
1823 struct ospf_area *area = NULL;
1824 struct in_addr id;
1825 int lsa_type, opaque_type;
1826 int rc = 0;
1827 struct ospf *ospf;
1828
1829 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1830 assert(ospf);
1831
1832 /* Extract opaque LSA from message */
1833 dmsg = (struct msg_delete_request *)STREAM_DATA(msg->s);
1834
1835 /* Lookup area for link-local and area-local opaque LSAs */
1836 switch (dmsg->lsa_type) {
1837 case OSPF_OPAQUE_LINK_LSA:
1838 case OSPF_OPAQUE_AREA_LSA:
1839 area = ospf_area_lookup_by_area_id(ospf, dmsg->area_id);
1840 if (!area) {
1841 zlog_warn("ospf_apiserver_lsa_delete: unknown area %s",
1842 inet_ntoa(dmsg->area_id));
1843 rc = OSPF_API_NOSUCHAREA;
1844 goto out;
1845 }
1846 break;
1847 case OSPF_OPAQUE_AS_LSA:
1848 /* AS-external opaque LSAs have no designated area */
1849 area = NULL;
1850 break;
1851 default:
1852 zlog_warn(
1853 "ospf_apiserver_lsa_delete: Cannot delete non-opaque LSA type %d",
1854 dmsg->lsa_type);
1855 rc = OSPF_API_ILLEGALLSATYPE;
1856 goto out;
1857 }
1858
1859 /* Check if we registered this opaque type */
1860 lsa_type = dmsg->lsa_type;
1861 opaque_type = dmsg->opaque_type;
1862
1863 if (!apiserver_is_opaque_type_registered(apiserv, lsa_type,
1864 opaque_type)) {
1865 zlog_warn(
1866 "ospf_apiserver_lsa_delete: LSA-type(%d)/Opaque-type(%d): Not registered",
1867 lsa_type, opaque_type);
1868 rc = OSPF_API_OPAQUETYPENOTREGISTERED;
1869 goto out;
1870 }
1871
1872 /* opaque_id is in network byte order */
1873 id.s_addr = htonl(
1874 SET_OPAQUE_LSID(dmsg->opaque_type, ntohl(dmsg->opaque_id)));
1875
1876 /*
1877 * Even if the target LSA has once scheduled to flush, it remains in
1878 * the LSDB until it is finally handled by the maxage remover thread.
1879 * Therefore, the lookup function below may return non-NULL result.
1880 */
1881 old = ospf_lsa_lookup(ospf, area, dmsg->lsa_type, id, ospf->router_id);
1882 if (!old) {
1883 zlog_warn(
1884 "ospf_apiserver_lsa_delete: LSA[Type%d:%s] not in LSDB",
1885 dmsg->lsa_type, inet_ntoa(id));
1886 rc = OSPF_API_NOSUCHLSA;
1887 goto out;
1888 }
1889
1890 /* Schedule flushing of LSA from LSDB */
1891 /* NB: Multiple scheduling will produce a warning message, but harmless.
1892 */
1893 ospf_opaque_lsa_flush_schedule(old);
1894
1895 out:
1896
1897 /* Send reply back to client including return code */
1898 rc = ospf_apiserver_send_reply(apiserv, ntohl(msg->hdr.msgseq), rc);
1899 return rc;
1900 }
1901
1902 /* Flush self-originated opaque LSA */
1903 static int apiserver_flush_opaque_type_callback(struct ospf_lsa *lsa,
1904 void *p_arg, int int_arg)
1905 {
1906 struct param_t {
1907 struct ospf_apiserver *apiserv;
1908 uint8_t lsa_type;
1909 uint8_t opaque_type;
1910 } * param;
1911
1912 /* Sanity check */
1913 assert(lsa->data);
1914 assert(p_arg);
1915 param = (struct param_t *)p_arg;
1916
1917 /* If LSA matches type and opaque type then delete it */
1918 if (IS_LSA_SELF(lsa) && lsa->data->type == param->lsa_type
1919 && GET_OPAQUE_TYPE(ntohl(lsa->data->id.s_addr))
1920 == param->opaque_type) {
1921 ospf_opaque_lsa_flush_schedule(lsa);
1922 }
1923 return 0;
1924 }
1925
1926 /* Delete self-originated opaque LSAs of a given opaque type. This
1927 function is called when an application unregisters a given opaque
1928 type or a connection to an application closes and all those opaque
1929 LSAs need to be flushed the LSDB. */
1930 void ospf_apiserver_flush_opaque_lsa(struct ospf_apiserver *apiserv,
1931 uint8_t lsa_type, uint8_t opaque_type)
1932 {
1933 struct param_t {
1934 struct ospf_apiserver *apiserv;
1935 uint8_t lsa_type;
1936 uint8_t opaque_type;
1937 } param;
1938 struct listnode *node, *nnode;
1939 struct ospf *ospf;
1940 struct ospf_area *area;
1941
1942 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1943 assert(ospf);
1944
1945 /* Set parameter struct. */
1946 param.apiserv = apiserv;
1947 param.lsa_type = lsa_type;
1948 param.opaque_type = opaque_type;
1949
1950 switch (lsa_type) {
1951 struct route_node *rn;
1952 struct ospf_lsa *lsa;
1953
1954 case OSPF_OPAQUE_LINK_LSA:
1955 for (ALL_LIST_ELEMENTS(ospf->areas, node, nnode, area))
1956 LSDB_LOOP (OPAQUE_LINK_LSDB(area), rn, lsa)
1957 apiserver_flush_opaque_type_callback(
1958 lsa, (void *)&param, 0);
1959 break;
1960 case OSPF_OPAQUE_AREA_LSA:
1961 for (ALL_LIST_ELEMENTS(ospf->areas, node, nnode, area))
1962 LSDB_LOOP (OPAQUE_AREA_LSDB(area), rn, lsa)
1963 apiserver_flush_opaque_type_callback(
1964 lsa, (void *)&param, 0);
1965 break;
1966 case OSPF_OPAQUE_AS_LSA:
1967 LSDB_LOOP (OPAQUE_LINK_LSDB(ospf), rn, lsa)
1968 apiserver_flush_opaque_type_callback(lsa,
1969 (void *)&param, 0);
1970 break;
1971 default:
1972 break;
1973 }
1974 return;
1975 }
1976
1977
1978 /* -----------------------------------------------------------
1979 * Followings are callback functions to handle opaque types
1980 * -----------------------------------------------------------
1981 */
1982
1983 int ospf_apiserver_new_if(struct interface *ifp)
1984 {
1985 struct ospf_interface *oi;
1986
1987 /* For some strange reason it seems possible that we are invoked
1988 with an interface that has no name. This seems to happen during
1989 initialization. Return if this happens */
1990
1991 if (ifp->name[0] == '\0') {
1992 /* interface has empty name */
1993 zlog_warn("ospf_apiserver_new_if: interface has no name?");
1994 return 0;
1995 }
1996
1997 /* zlog_warn for debugging */
1998 zlog_warn("ospf_apiserver_new_if");
1999 zlog_warn("ifp name=%s status=%d index=%d", ifp->name, ifp->status,
2000 ifp->ifindex);
2001
2002 if (ifp->name[0] == '\0') {
2003 /* interface has empty name */
2004 zlog_warn("ospf_apiserver_new_if: interface has no name?");
2005 return 0;
2006 }
2007
2008 oi = ospf_apiserver_if_lookup_by_ifp(ifp);
2009
2010 if (!oi) {
2011 /* This interface is known to Zebra but not to OSPF daemon yet.
2012 */
2013 zlog_warn(
2014 "ospf_apiserver_new_if: interface %s not known to OSPFd?",
2015 ifp->name);
2016 return 0;
2017 }
2018
2019 assert(oi);
2020
2021 /* New interface added to OSPF, tell clients about it */
2022 if (listcount(apiserver_list) > 0) {
2023 ospf_apiserver_clients_notify_new_if(oi);
2024 }
2025 return 0;
2026 }
2027
2028 int ospf_apiserver_del_if(struct interface *ifp)
2029 {
2030 struct ospf_interface *oi;
2031
2032 /* zlog_warn for debugging */
2033 zlog_warn("ospf_apiserver_del_if");
2034 zlog_warn("ifp name=%s status=%d index=%d\n", ifp->name, ifp->status,
2035 ifp->ifindex);
2036
2037 oi = ospf_apiserver_if_lookup_by_ifp(ifp);
2038
2039 if (!oi) {
2040 /* This interface is known to Zebra but not to OSPF daemon
2041 anymore. No need to tell clients about it */
2042 return 0;
2043 }
2044
2045 /* Interface deleted, tell clients about it */
2046 if (listcount(apiserver_list) > 0) {
2047 ospf_apiserver_clients_notify_del_if(oi);
2048 }
2049 return 0;
2050 }
2051
2052 void ospf_apiserver_ism_change(struct ospf_interface *oi, int old_state)
2053 {
2054 /* Tell clients about interface change */
2055
2056 /* zlog_warn for debugging */
2057 zlog_warn("ospf_apiserver_ism_change");
2058 if (listcount(apiserver_list) > 0) {
2059 ospf_apiserver_clients_notify_ism_change(oi);
2060 }
2061
2062 zlog_warn("oi->ifp->name=%s", oi->ifp->name);
2063 zlog_warn("old_state=%d", old_state);
2064 zlog_warn("oi->state=%d", oi->state);
2065 }
2066
2067 void ospf_apiserver_nsm_change(struct ospf_neighbor *nbr, int old_status)
2068 {
2069 /* Neighbor status changed, tell clients about it */
2070 zlog_warn("ospf_apiserver_nsm_change");
2071 if (listcount(apiserver_list) > 0) {
2072 ospf_apiserver_clients_notify_nsm_change(nbr);
2073 }
2074 }
2075
2076 void ospf_apiserver_show_info(struct vty *vty, struct ospf_lsa *lsa)
2077 {
2078 struct opaque_lsa {
2079 struct lsa_header header;
2080 uint8_t data[1]; /* opaque data have variable length. This is
2081 start
2082 address */
2083 };
2084 struct opaque_lsa *olsa;
2085 int opaquelen;
2086
2087 olsa = (struct opaque_lsa *)lsa->data;
2088
2089 if (VALID_OPAQUE_INFO_LEN(lsa->data))
2090 opaquelen = ntohs(lsa->data->length) - OSPF_LSA_HEADER_SIZE;
2091 else
2092 opaquelen = 0;
2093
2094 /* Output information about opaque LSAs */
2095 if (vty != NULL) {
2096 int i;
2097 vty_out(vty,
2098 " Added using OSPF API: %u octets of opaque data %s\n",
2099 opaquelen,
2100 VALID_OPAQUE_INFO_LEN(lsa->data) ? ""
2101 : "(Invalid length?)");
2102 vty_out(vty, " Opaque data: ");
2103
2104 for (i = 0; i < opaquelen; i++) {
2105 vty_out(vty, "0x%x ", olsa->data[i]);
2106 }
2107 vty_out(vty, "\n");
2108 } else {
2109 int i;
2110 zlog_debug(
2111 " Added using OSPF API: %u octets of opaque data %s",
2112 opaquelen,
2113 VALID_OPAQUE_INFO_LEN(lsa->data) ? ""
2114 : "(Invalid length?)");
2115 zlog_debug(" Opaque data: ");
2116
2117 for (i = 0; i < opaquelen; i++) {
2118 zlog_debug("0x%x ", olsa->data[i]);
2119 }
2120 zlog_debug("\n");
2121 }
2122 return;
2123 }
2124
2125 /* -----------------------------------------------------------
2126 * Followings are functions to notify clients about events
2127 * -----------------------------------------------------------
2128 */
2129
2130 /* Send a message to all clients. This is useful for messages
2131 that need to be notified to all clients (such as interface
2132 changes) */
2133
2134 void ospf_apiserver_clients_notify_all(struct msg *msg)
2135 {
2136 struct listnode *node, *nnode;
2137 struct ospf_apiserver *apiserv;
2138
2139 /* Send message to all clients */
2140 for (ALL_LIST_ELEMENTS(apiserver_list, node, nnode, apiserv))
2141 ospf_apiserver_send_msg(apiserv, msg);
2142 }
2143
2144 /* An interface is now ready to accept opaque LSAs. Notify all
2145 clients that registered to use this opaque type */
2146 void ospf_apiserver_clients_notify_ready_type9(struct ospf_interface *oi)
2147 {
2148 struct listnode *node, *nnode;
2149 struct msg *msg;
2150 struct ospf_apiserver *apiserv;
2151
2152 assert(oi);
2153 if (!oi->address) {
2154 zlog_warn("Interface has no address?");
2155 return;
2156 }
2157
2158 if (!ospf_apiserver_is_ready_type9(oi)) {
2159 zlog_warn("Interface not ready for type 9?");
2160 return;
2161 }
2162
2163 for (ALL_LIST_ELEMENTS(apiserver_list, node, nnode, apiserv)) {
2164 struct listnode *node2, *nnode2;
2165 struct registered_opaque_type *r;
2166
2167 for (ALL_LIST_ELEMENTS(apiserv->opaque_types, node2, nnode2,
2168 r)) {
2169 if (r->lsa_type == OSPF_OPAQUE_LINK_LSA) {
2170 msg = new_msg_ready_notify(
2171 0, OSPF_OPAQUE_LINK_LSA, r->opaque_type,
2172 oi->address->u.prefix4);
2173 if (!msg) {
2174 zlog_warn(
2175 "ospf_apiserver_clients_notify_ready_type9: new_msg_ready_notify failed");
2176 #ifdef NOTYET
2177 /* Cannot allocate new message. What
2178 * should we do? */
2179 ospf_apiserver_free(apiserv);
2180 #endif
2181 goto out;
2182 }
2183
2184 ospf_apiserver_send_msg(apiserv, msg);
2185 msg_free(msg);
2186 }
2187 }
2188 }
2189
2190 out:
2191 return;
2192 }
2193
2194 void ospf_apiserver_clients_notify_ready_type10(struct ospf_area *area)
2195 {
2196 struct listnode *node, *nnode;
2197 struct msg *msg;
2198 struct ospf_apiserver *apiserv;
2199
2200 assert(area);
2201
2202 if (!ospf_apiserver_is_ready_type10(area)) {
2203 zlog_warn("Area not ready for type 10?");
2204 return;
2205 }
2206
2207 for (ALL_LIST_ELEMENTS(apiserver_list, node, nnode, apiserv)) {
2208 struct listnode *node2, *nnode2;
2209 struct registered_opaque_type *r;
2210
2211 for (ALL_LIST_ELEMENTS(apiserv->opaque_types, node2, nnode2,
2212 r)) {
2213 if (r->lsa_type == OSPF_OPAQUE_AREA_LSA) {
2214 msg = new_msg_ready_notify(
2215 0, OSPF_OPAQUE_AREA_LSA, r->opaque_type,
2216 area->area_id);
2217 if (!msg) {
2218 zlog_warn(
2219 "ospf_apiserver_clients_notify_ready_type10: new_msg_ready_nofity failed");
2220 #ifdef NOTYET
2221 /* Cannot allocate new message. What
2222 * should we do? */
2223 ospf_apiserver_free(apiserv);
2224 #endif
2225 goto out;
2226 }
2227
2228 ospf_apiserver_send_msg(apiserv, msg);
2229 msg_free(msg);
2230 }
2231 }
2232 }
2233
2234 out:
2235 return;
2236 }
2237
2238
2239 void ospf_apiserver_clients_notify_ready_type11(struct ospf *top)
2240 {
2241 struct listnode *node, *nnode;
2242 struct msg *msg;
2243 struct in_addr id_null = {.s_addr = 0L};
2244 struct ospf_apiserver *apiserv;
2245
2246 assert(top);
2247
2248 if (!ospf_apiserver_is_ready_type11(top)) {
2249 zlog_warn("AS not ready for type 11?");
2250 return;
2251 }
2252
2253 for (ALL_LIST_ELEMENTS(apiserver_list, node, nnode, apiserv)) {
2254 struct listnode *node2, *nnode2;
2255 struct registered_opaque_type *r;
2256
2257 for (ALL_LIST_ELEMENTS(apiserv->opaque_types, node2, nnode2,
2258 r)) {
2259 if (r->lsa_type == OSPF_OPAQUE_AS_LSA) {
2260 msg = new_msg_ready_notify(
2261 0, OSPF_OPAQUE_AS_LSA, r->opaque_type,
2262 id_null);
2263 if (!msg) {
2264 zlog_warn(
2265 "ospf_apiserver_clients_notify_ready_type11: new_msg_ready_notify failed");
2266 #ifdef NOTYET
2267 /* Cannot allocate new message. What
2268 * should we do? */
2269 ospf_apiserver_free(apiserv);
2270 #endif
2271 goto out;
2272 }
2273
2274 ospf_apiserver_send_msg(apiserv, msg);
2275 msg_free(msg);
2276 }
2277 }
2278 }
2279
2280 out:
2281 return;
2282 }
2283
2284 void ospf_apiserver_clients_notify_new_if(struct ospf_interface *oi)
2285 {
2286 struct msg *msg;
2287
2288 msg = new_msg_new_if(0, oi->address->u.prefix4, oi->area->area_id);
2289 if (msg != NULL) {
2290 ospf_apiserver_clients_notify_all(msg);
2291 msg_free(msg);
2292 }
2293 }
2294
2295 void ospf_apiserver_clients_notify_del_if(struct ospf_interface *oi)
2296 {
2297 struct msg *msg;
2298
2299 msg = new_msg_del_if(0, oi->address->u.prefix4);
2300 if (msg != NULL) {
2301 ospf_apiserver_clients_notify_all(msg);
2302 msg_free(msg);
2303 }
2304 }
2305
2306 void ospf_apiserver_clients_notify_ism_change(struct ospf_interface *oi)
2307 {
2308 struct msg *msg;
2309 struct in_addr ifaddr = {.s_addr = 0L};
2310 struct in_addr area_id = {.s_addr = 0L};
2311
2312 assert(oi);
2313 assert(oi->ifp);
2314
2315 if (oi->address) {
2316 ifaddr = oi->address->u.prefix4;
2317 }
2318 if (oi->area) {
2319 area_id = oi->area->area_id;
2320 }
2321
2322 msg = new_msg_ism_change(0, ifaddr, area_id, oi->state);
2323 if (!msg) {
2324 zlog_warn(
2325 "apiserver_clients_notify_ism_change: msg_new failed");
2326 return;
2327 }
2328
2329 ospf_apiserver_clients_notify_all(msg);
2330 msg_free(msg);
2331 }
2332
2333 void ospf_apiserver_clients_notify_nsm_change(struct ospf_neighbor *nbr)
2334 {
2335 struct msg *msg;
2336 struct in_addr ifaddr = {.s_addr = 0L};
2337 struct in_addr nbraddr;
2338
2339 assert(nbr);
2340
2341 if (nbr->oi) {
2342 ifaddr = nbr->oi->address->u.prefix4;
2343 }
2344
2345 nbraddr = nbr->address.u.prefix4;
2346
2347 msg = new_msg_nsm_change(0, ifaddr, nbraddr, nbr->router_id,
2348 nbr->state);
2349 if (!msg) {
2350 zlog_warn(
2351 "apiserver_clients_notify_nsm_change: msg_new failed");
2352 return;
2353 }
2354
2355 ospf_apiserver_clients_notify_all(msg);
2356 msg_free(msg);
2357 }
2358
2359 static void apiserver_clients_lsa_change_notify(uint8_t msgtype,
2360 struct ospf_lsa *lsa)
2361 {
2362 struct msg *msg;
2363 struct listnode *node, *nnode;
2364 struct ospf_apiserver *apiserv;
2365
2366 /* Default area for AS-External and Opaque11 LSAs */
2367 struct in_addr area_id = {.s_addr = 0L};
2368
2369 /* Default interface for non Opaque9 LSAs */
2370 struct in_addr ifaddr = {.s_addr = 0L};
2371
2372 if (lsa->area) {
2373 area_id = lsa->area->area_id;
2374 }
2375 if (lsa->data->type == OSPF_OPAQUE_LINK_LSA) {
2376 assert(lsa->oi);
2377 ifaddr = lsa->oi->address->u.prefix4;
2378 }
2379
2380 /* Prepare message that can be sent to clients that have a matching
2381 filter */
2382 msg = new_msg_lsa_change_notify(msgtype, 0L, /* no sequence number */
2383 ifaddr, area_id,
2384 lsa->flags & OSPF_LSA_SELF, lsa->data);
2385 if (!msg) {
2386 zlog_warn(
2387 "apiserver_clients_lsa_change_notify: msg_new failed");
2388 return;
2389 }
2390
2391 /* Now send message to all clients with a matching filter */
2392 for (ALL_LIST_ELEMENTS(apiserver_list, node, nnode, apiserv)) {
2393 struct lsa_filter_type *filter;
2394 uint16_t mask;
2395 uint32_t *area;
2396 int i;
2397
2398 /* Check filter for this client. */
2399 filter = apiserv->filter;
2400
2401 /* Check area IDs in case of non AS-E LSAs.
2402 * If filter has areas (num_areas > 0),
2403 * then one of the areas must match the area ID of this LSA. */
2404
2405 i = filter->num_areas;
2406 if ((lsa->data->type == OSPF_AS_EXTERNAL_LSA)
2407 || (lsa->data->type == OSPF_OPAQUE_AS_LSA)) {
2408 i = 0;
2409 }
2410
2411 if (i > 0) {
2412 area = (uint32_t *)(filter + 1);
2413 while (i) {
2414 if (*area == area_id.s_addr) {
2415 break;
2416 }
2417 i--;
2418 area++;
2419 }
2420 } else {
2421 i = 1;
2422 }
2423
2424 if (i > 0) {
2425 /* Area match. Check LSA type. */
2426 mask = ntohs(filter->typemask);
2427
2428 if (mask & Power2[lsa->data->type]) {
2429 /* Type also matches. Check origin. */
2430 if ((filter->origin == ANY_ORIGIN)
2431 || (filter->origin == IS_LSA_SELF(lsa))) {
2432 ospf_apiserver_send_msg(apiserv, msg);
2433 }
2434 }
2435 }
2436 }
2437 /* Free message since it is not used anymore */
2438 msg_free(msg);
2439 }
2440
2441
2442 /* -------------------------------------------------------------
2443 * Followings are hooks invoked when LSAs are updated or deleted
2444 * -------------------------------------------------------------
2445 */
2446
2447
2448 static int apiserver_notify_clients_lsa(uint8_t msgtype, struct ospf_lsa *lsa)
2449 {
2450 struct msg *msg;
2451 /* default area for AS-External and Opaque11 LSAs */
2452 struct in_addr area_id = {.s_addr = 0L};
2453
2454 /* default interface for non Opaque9 LSAs */
2455 struct in_addr ifaddr = {.s_addr = 0L};
2456
2457 /* Only notify this update if the LSA's age is smaller than
2458 MAXAGE. Otherwise clients would see LSA updates with max age just
2459 before they are deleted from the LSDB. LSA delete messages have
2460 MAXAGE too but should not be filtered. */
2461 if (IS_LSA_MAXAGE(lsa) && (msgtype == MSG_LSA_UPDATE_NOTIFY)) {
2462 return 0;
2463 }
2464
2465 if (lsa->area) {
2466 area_id = lsa->area->area_id;
2467 }
2468 if (lsa->data->type == OSPF_OPAQUE_LINK_LSA) {
2469 ifaddr = lsa->oi->address->u.prefix4;
2470 }
2471 msg = new_msg_lsa_change_notify(msgtype, 0L, /* no sequence number */
2472 ifaddr, area_id,
2473 lsa->flags & OSPF_LSA_SELF, lsa->data);
2474 if (!msg) {
2475 zlog_warn("notify_clients_lsa: msg_new failed");
2476 return -1;
2477 }
2478 /* Notify all clients that new LSA is added/updated */
2479 apiserver_clients_lsa_change_notify(msgtype, lsa);
2480
2481 /* Clients made their own copies of msg so we can free msg here */
2482 msg_free(msg);
2483
2484 return 0;
2485 }
2486
2487 int ospf_apiserver_lsa_update(struct ospf_lsa *lsa)
2488 {
2489 return apiserver_notify_clients_lsa(MSG_LSA_UPDATE_NOTIFY, lsa);
2490 }
2491
2492 int ospf_apiserver_lsa_delete(struct ospf_lsa *lsa)
2493 {
2494 return apiserver_notify_clients_lsa(MSG_LSA_DELETE_NOTIFY, lsa);
2495 }
2496
2497 #endif /* SUPPORT_OSPF_API */