]> git.proxmox.com Git - mirror_frr.git/blob - babeld/babeld.c
Merge pull request #6711 from GalaxyGorilla/bfd_isis_profiles
[mirror_frr.git] / babeld / babeld.c
1 /*
2 Copyright 2011 by Matthieu Boutier and Juliusz Chroboczek
3
4 Permission is hereby granted, free of charge, to any person obtaining a copy
5 of this software and associated documentation files (the "Software"), to deal
6 in the Software without restriction, including without limitation the rights
7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 copies of the Software, and to permit persons to whom the Software is
9 furnished to do so, subject to the following conditions:
10
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
13
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 THE SOFTWARE.
21 */
22
23 #include <zebra.h>
24 #include "command.h"
25 #include "prefix.h"
26 #include "memory.h"
27 #include "table.h"
28 #include "distribute.h"
29 #include "prefix.h"
30 #include "filter.h"
31 #include "plist.h"
32 #include "lib_errors.h"
33 #include "network.h"
34
35 #include "babel_main.h"
36 #include "babeld.h"
37 #include "util.h"
38 #include "net.h"
39 #include "kernel.h"
40 #include "babel_interface.h"
41 #include "neighbour.h"
42 #include "route.h"
43 #include "message.h"
44 #include "resend.h"
45 #include "babel_filter.h"
46 #include "babel_zebra.h"
47 #include "babel_errors.h"
48
49 DEFINE_MGROUP(BABELD, "babeld")
50 DEFINE_MTYPE_STATIC(BABELD, BABEL, "Babel Structure")
51
52 static int babel_init_routing_process(struct thread *thread);
53 static void babel_get_myid(void);
54 static void babel_initial_noise(void);
55 static int babel_read_protocol (struct thread *thread);
56 static int babel_main_loop(struct thread *thread);
57 static void babel_set_timer(struct timeval *timeout);
58 static void babel_fill_with_next_timeout(struct timeval *tv);
59 static void
60 babel_distribute_update (struct distribute_ctx *ctx, struct distribute *dist);
61
62 /* Informations relative to the babel running daemon. */
63 static struct babel *babel_routing_process = NULL;
64 static unsigned char *receive_buffer = NULL;
65 static int receive_buffer_size = 0;
66
67 /* timeouts */
68 struct timeval check_neighbours_timeout;
69 static time_t expiry_time;
70 static time_t source_expiry_time;
71
72 /* Babel node structure. */
73 static int babel_config_write (struct vty *vty);
74 static struct cmd_node cmd_babel_node =
75 {
76 .name = "babel",
77 .node = BABEL_NODE,
78 .parent_node = CONFIG_NODE,
79 .prompt = "%s(config-router)# ",
80 .config_write = babel_config_write,
81 };
82
83 /* print current babel configuration on vty */
84 static int
85 babel_config_write (struct vty *vty)
86 {
87 int lines = 0;
88 int afi;
89 int i;
90
91 /* list enabled debug modes */
92 lines += debug_babel_config_write (vty);
93
94 if (!babel_routing_process)
95 return lines;
96 vty_out (vty, "router babel\n");
97 if (diversity_kind != DIVERSITY_NONE)
98 {
99 vty_out (vty, " babel diversity\n");
100 lines++;
101 }
102 if (diversity_factor != BABEL_DEFAULT_DIVERSITY_FACTOR)
103 {
104 vty_out (vty, " babel diversity-factor %d\n",diversity_factor);
105 lines++;
106 }
107 if (resend_delay != BABEL_DEFAULT_RESEND_DELAY)
108 {
109 vty_out (vty, " babel resend-delay %u\n", resend_delay);
110 lines++;
111 }
112 if (smoothing_half_life != BABEL_DEFAULT_SMOOTHING_HALF_LIFE)
113 {
114 vty_out (vty, " babel smoothing-half-life %u\n",
115 smoothing_half_life);
116 lines++;
117 }
118 /* list enabled interfaces */
119 lines = 1 + babel_enable_if_config_write (vty);
120 /* list redistributed protocols */
121 for (afi = AFI_IP; afi <= AFI_IP6; afi++) {
122 for (i = 0; i < ZEBRA_ROUTE_MAX; i++) {
123 if (i != zclient->redist_default &&
124 vrf_bitmap_check (zclient->redist[afi][i], VRF_DEFAULT)) {
125 vty_out (vty, " redistribute %s %s\n",
126 (afi == AFI_IP) ? "ipv4" : "ipv6",
127 zebra_route_string(i));
128 lines++;
129 }
130 }
131 }
132
133 lines += config_write_distribute (vty, babel_routing_process->distribute_ctx);
134
135 return lines;
136 }
137
138
139 static int
140 babel_create_routing_process (void)
141 {
142 assert (babel_routing_process == NULL);
143
144 /* Allocaste Babel instance. */
145 babel_routing_process = XCALLOC(MTYPE_BABEL, sizeof(struct babel));
146
147 /* Initialize timeouts */
148 gettime(&babel_now);
149 expiry_time = babel_now.tv_sec + roughly(30);
150 source_expiry_time = babel_now.tv_sec + roughly(300);
151
152 /* Make socket for Babel protocol. */
153 protocol_socket = babel_socket(protocol_port);
154 if (protocol_socket < 0) {
155 flog_err_sys(EC_LIB_SOCKET, "Couldn't create link local socket: %s",
156 safe_strerror(errno));
157 goto fail;
158 }
159
160 /* Threads. */
161 thread_add_read(master, &babel_read_protocol, NULL, protocol_socket, &babel_routing_process->t_read);
162 /* wait a little: zebra will announce interfaces, addresses, routes... */
163 thread_add_timer_msec(master, babel_init_routing_process, NULL, 200L, &babel_routing_process->t_update);
164
165 /* Distribute list install. */
166 babel_routing_process->distribute_ctx = distribute_list_ctx_create (vrf_lookup_by_id(VRF_DEFAULT));
167 distribute_list_add_hook (babel_routing_process->distribute_ctx, babel_distribute_update);
168 distribute_list_delete_hook (babel_routing_process->distribute_ctx, babel_distribute_update);
169 return 0;
170 fail:
171 XFREE(MTYPE_BABEL, babel_routing_process);
172 return -1;
173 }
174
175 /* thread reading entries form others babel daemons */
176 static int
177 babel_read_protocol (struct thread *thread)
178 {
179 int rc;
180 struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT);
181 struct interface *ifp = NULL;
182 struct sockaddr_in6 sin6;
183
184 assert(babel_routing_process != NULL);
185 assert(protocol_socket >= 0);
186
187 rc = babel_recv(protocol_socket,
188 receive_buffer, receive_buffer_size,
189 (struct sockaddr*)&sin6, sizeof(sin6));
190 if(rc < 0) {
191 if(errno != EAGAIN && errno != EINTR) {
192 flog_err_sys(EC_LIB_SOCKET, "recv: %s", safe_strerror(errno));
193 }
194 } else {
195 FOR_ALL_INTERFACES(vrf, ifp) {
196 if(!if_up(ifp))
197 continue;
198 if(ifp->ifindex == (ifindex_t)sin6.sin6_scope_id) {
199 parse_packet((unsigned char*)&sin6.sin6_addr, ifp,
200 receive_buffer, rc);
201 break;
202 }
203 }
204 }
205
206 /* re-add thread */
207 thread_add_read(master, &babel_read_protocol, NULL, protocol_socket, &babel_routing_process->t_read);
208 return 0;
209 }
210
211 /* Zebra will give some information, especially about interfaces. This function
212 must be call with a litte timeout wich may give zebra the time to do his job,
213 making these inits have sense. */
214 static int
215 babel_init_routing_process(struct thread *thread)
216 {
217 myseqno = (frr_weak_random() & 0xFFFF);
218 babel_get_myid();
219 babel_load_state_file();
220 debugf(BABEL_DEBUG_COMMON, "My ID is : %s.", format_eui64(myid));
221 babel_initial_noise();
222 babel_main_loop(thread);/* this function self-add to the t_update thread */
223 return 0;
224 }
225
226 /* fill "myid" with an unique id (only if myid != {0}). */
227 static void
228 babel_get_myid(void)
229 {
230 struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT);
231 struct interface *ifp = NULL;
232 int rc;
233 int i;
234
235 /* if we already have an id (from state file), we return. */
236 if (memcmp(myid, zeroes, 8) != 0) {
237 return;
238 }
239
240 FOR_ALL_INTERFACES(vrf, ifp) {
241 /* ifp->ifindex is not necessarily valid at this point */
242 int ifindex = if_nametoindex(ifp->name);
243 if(ifindex > 0) {
244 unsigned char eui[8];
245 rc = if_eui64(ifindex, eui);
246 if(rc < 0)
247 continue;
248 memcpy(myid, eui, 8);
249 return;
250 }
251 }
252
253 /* We failed to get a global EUI64 from the interfaces we were given.
254 Let's try to find an interface with a MAC address. */
255 for(i = 1; i < 256; i++) {
256 char buf[IF_NAMESIZE], *ifname;
257 unsigned char eui[8];
258 ifname = if_indextoname(i, buf);
259 if(ifname == NULL)
260 continue;
261 rc = if_eui64(i, eui);
262 if(rc < 0)
263 continue;
264 memcpy(myid, eui, 8);
265 return;
266 }
267
268 flog_err(EC_BABEL_CONFIG,
269 "Warning: couldn't find router id -- using random value.");
270
271 rc = read_random_bytes(myid, 8);
272 if(rc < 0) {
273 flog_err(EC_BABEL_CONFIG, "read(random): %s (cannot assign an ID)",
274 safe_strerror(errno));
275 exit(1);
276 }
277 /* Clear group and global bits */
278 myid[0] &= ~3;
279 }
280
281 /* Make some noise so that others notice us, and send retractions in
282 case we were restarted recently */
283 static void
284 babel_initial_noise(void)
285 {
286 struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT);
287 struct interface *ifp = NULL;
288
289 FOR_ALL_INTERFACES(vrf, ifp) {
290 if(!if_up(ifp))
291 continue;
292 /* Apply jitter before we send the first message. */
293 usleep(roughly(10000));
294 gettime(&babel_now);
295 send_hello(ifp);
296 send_wildcard_retraction(ifp);
297 }
298
299 FOR_ALL_INTERFACES(vrf, ifp) {
300 if(!if_up(ifp))
301 continue;
302 usleep(roughly(10000));
303 gettime(&babel_now);
304 send_hello(ifp);
305 send_wildcard_retraction(ifp);
306 send_self_update(ifp);
307 send_request(ifp, NULL, 0);
308 flushupdates(ifp);
309 flushbuf(ifp);
310 }
311 }
312
313 /* Delete all the added babel routes, make babeld only speak to zebra. */
314 static void
315 babel_clean_routing_process(void)
316 {
317 flush_all_routes();
318 babel_interface_close_all();
319
320 /* cancel threads */
321 if (babel_routing_process->t_read != NULL) {
322 thread_cancel(babel_routing_process->t_read);
323 }
324 if (babel_routing_process->t_update != NULL) {
325 thread_cancel(babel_routing_process->t_update);
326 }
327
328 distribute_list_delete(&babel_routing_process->distribute_ctx);
329 XFREE(MTYPE_BABEL, babel_routing_process);
330 }
331
332 /* Function used with timeout. */
333 static int
334 babel_main_loop(struct thread *thread)
335 {
336 struct timeval tv;
337 struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT);
338 struct interface *ifp = NULL;
339
340 while(1) {
341 gettime(&babel_now);
342
343 /* timeouts --------------------------------------------------------- */
344 /* get the next timeout */
345 babel_fill_with_next_timeout(&tv);
346 /* if there is no timeout, we must wait. */
347 if(timeval_compare(&tv, &babel_now) > 0) {
348 timeval_minus(&tv, &tv, &babel_now);
349 debugf(BABEL_DEBUG_TIMEOUT, "babel main loop : timeout: %lld msecs",
350 (long long)tv.tv_sec * 1000 + tv.tv_usec / 1000);
351 /* it happens often to have less than 1 ms, it's bad. */
352 timeval_add_msec(&tv, &tv, 300);
353 babel_set_timer(&tv);
354 return 0;
355 }
356
357 gettime(&babel_now);
358
359 /* update database -------------------------------------------------- */
360 if(timeval_compare(&check_neighbours_timeout, &babel_now) < 0) {
361 int msecs;
362 msecs = check_neighbours();
363 /* Multiply by 3/2 to allow neighbours to expire. */
364 msecs = MAX(3 * msecs / 2, 10);
365 schedule_neighbours_check(msecs, 1);
366 }
367
368 if(babel_now.tv_sec >= expiry_time) {
369 expire_routes();
370 expire_resend();
371 expiry_time = babel_now.tv_sec + roughly(30);
372 }
373
374 if(babel_now.tv_sec >= source_expiry_time) {
375 expire_sources();
376 source_expiry_time = babel_now.tv_sec + roughly(300);
377 }
378
379 FOR_ALL_INTERFACES(vrf, ifp) {
380 babel_interface_nfo *babel_ifp = NULL;
381 if(!if_up(ifp))
382 continue;
383 babel_ifp = babel_get_if_nfo(ifp);
384 if(timeval_compare(&babel_now, &babel_ifp->hello_timeout) >= 0)
385 send_hello(ifp);
386 if(timeval_compare(&babel_now, &babel_ifp->update_timeout) >= 0)
387 send_update(ifp, 0, NULL, 0);
388 if(timeval_compare(&babel_now,
389 &babel_ifp->update_flush_timeout) >= 0)
390 flushupdates(ifp);
391 }
392
393 if(resend_time.tv_sec != 0) {
394 if(timeval_compare(&babel_now, &resend_time) >= 0)
395 do_resend();
396 }
397
398 if(unicast_flush_timeout.tv_sec != 0) {
399 if(timeval_compare(&babel_now, &unicast_flush_timeout) >= 0)
400 flush_unicast(1);
401 }
402
403 FOR_ALL_INTERFACES(vrf, ifp) {
404 babel_interface_nfo *babel_ifp = NULL;
405 if(!if_up(ifp))
406 continue;
407 babel_ifp = babel_get_if_nfo(ifp);
408 if(babel_ifp->flush_timeout.tv_sec != 0) {
409 if(timeval_compare(&babel_now, &babel_ifp->flush_timeout) >= 0)
410 flushbuf(ifp);
411 }
412 }
413 }
414
415 assert(0); /* this line should never be reach */
416 return 0;
417 }
418
419 static void
420 printIfMin(struct timeval *tv, int cmd, const char *tag, const char *ifname)
421 {
422 static struct timeval curr_tv;
423 static char buffer[200];
424 static const char *curr_tag = NULL;
425
426 switch (cmd) {
427 case 0: /* reset timeval */
428 curr_tv = *tv;
429 if(ifname != NULL) {
430 snprintf(buffer, 200L, "interface: %s; %s", ifname, tag);
431 curr_tag = buffer;
432 } else {
433 curr_tag = tag;
434 }
435 break;
436 case 1: /* take the min */
437 if (tv->tv_sec == 0 && tv->tv_usec == 0) { /* if (tv == ∞) */
438 break;
439 }
440 if (tv->tv_sec < curr_tv.tv_sec ||(tv->tv_sec == curr_tv.tv_sec &&
441 tv->tv_usec < curr_tv.tv_usec)) {
442 curr_tv = *tv;
443 if(ifname != NULL) {
444 snprintf(buffer, 200L, "interface: %s; %s", ifname, tag);
445 curr_tag = buffer;
446 } else {
447 curr_tag = tag;
448 }
449 }
450 break;
451 case 2: /* print message */
452 debugf(BABEL_DEBUG_TIMEOUT, "next timeout due to: %s", curr_tag);
453 break;
454 default:
455 break;
456 }
457 }
458
459 static void
460 babel_fill_with_next_timeout(struct timeval *tv)
461 {
462 #if (defined NO_DEBUG)
463 #define printIfMin(a,b,c,d)
464 #else
465 #define printIfMin(a,b,c,d) \
466 if (UNLIKELY(debug & BABEL_DEBUG_TIMEOUT)) {printIfMin(a,b,c,d);}
467
468 struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT);
469 struct interface *ifp = NULL;
470
471 *tv = check_neighbours_timeout;
472 printIfMin(tv, 0, "check_neighbours_timeout", NULL);
473 timeval_min_sec(tv, expiry_time);
474 printIfMin(tv, 1, "expiry_time", NULL);
475 timeval_min_sec(tv, source_expiry_time);
476 printIfMin(tv, 1, "source_expiry_time", NULL);
477 timeval_min(tv, &resend_time);
478 printIfMin(tv, 1, "resend_time", NULL);
479 FOR_ALL_INTERFACES(vrf, ifp) {
480 babel_interface_nfo *babel_ifp = NULL;
481 if(!if_up(ifp))
482 continue;
483 babel_ifp = babel_get_if_nfo(ifp);
484 timeval_min(tv, &babel_ifp->flush_timeout);
485 printIfMin(tv, 1, "flush_timeout", ifp->name);
486 timeval_min(tv, &babel_ifp->hello_timeout);
487 printIfMin(tv, 1, "hello_timeout", ifp->name);
488 timeval_min(tv, &babel_ifp->update_timeout);
489 printIfMin(tv, 1, "update_timeout", ifp->name);
490 timeval_min(tv, &babel_ifp->update_flush_timeout);
491 printIfMin(tv, 1, "update_flush_timeout",ifp->name);
492 }
493 timeval_min(tv, &unicast_flush_timeout);
494 printIfMin(tv, 1, "unicast_flush_timeout", NULL);
495 printIfMin(tv, 2, NULL, NULL);
496 #undef printIfMin
497 #endif
498 }
499
500 /* set the t_update thread of the babel routing process to be launch in
501 'timeout' (approximate at the milisecond) */
502 static void
503 babel_set_timer(struct timeval *timeout)
504 {
505 long msecs = timeout->tv_sec * 1000 + timeout->tv_usec / 1000;
506 if (babel_routing_process->t_update != NULL) {
507 thread_cancel(babel_routing_process->t_update);
508 }
509 thread_add_timer_msec(master, babel_main_loop, NULL, msecs, &babel_routing_process->t_update);
510 }
511
512 void
513 schedule_neighbours_check(int msecs, int override)
514 {
515 struct timeval timeout;
516
517 timeval_add_msec(&timeout, &babel_now, msecs);
518 if(override)
519 check_neighbours_timeout = timeout;
520 else
521 timeval_min(&check_neighbours_timeout, &timeout);
522 }
523
524 int
525 resize_receive_buffer(int size)
526 {
527 if(size <= receive_buffer_size)
528 return 0;
529
530 if(receive_buffer == NULL) {
531 receive_buffer = malloc(size);
532 if(receive_buffer == NULL) {
533 flog_err(EC_BABEL_MEMORY, "malloc(receive_buffer): %s",
534 safe_strerror(errno));
535 return -1;
536 }
537 receive_buffer_size = size;
538 } else {
539 unsigned char *new;
540 new = realloc(receive_buffer, size);
541 if(new == NULL) {
542 flog_err(EC_BABEL_MEMORY, "realloc(receive_buffer): %s",
543 safe_strerror(errno));
544 return -1;
545 }
546 receive_buffer = new;
547 receive_buffer_size = size;
548 }
549 return 1;
550 }
551
552 static void
553 babel_distribute_update (struct distribute_ctx *ctx, struct distribute *dist)
554 {
555 struct interface *ifp;
556 babel_interface_nfo *babel_ifp;
557 int type;
558 int family;
559
560 if (! dist->ifname)
561 return;
562
563 ifp = if_lookup_by_name (dist->ifname, VRF_DEFAULT);
564 if (ifp == NULL)
565 return;
566
567 babel_ifp = babel_get_if_nfo(ifp);
568
569 for (type = 0; type < DISTRIBUTE_MAX; type++) {
570 family = type == DISTRIBUTE_V4_IN || type == DISTRIBUTE_V4_OUT ?
571 AFI_IP : AFI_IP6;
572 if (dist->list[type])
573 babel_ifp->list[type] = access_list_lookup (family,
574 dist->list[type]);
575 else
576 babel_ifp->list[type] = NULL;
577 if (dist->prefix[type])
578 babel_ifp->prefix[type] = prefix_list_lookup (family,
579 dist->prefix[type]);
580 else
581 babel_ifp->prefix[type] = NULL;
582 }
583 }
584
585 static void
586 babel_distribute_update_interface (struct interface *ifp)
587 {
588 struct distribute *dist = NULL;
589
590 if (babel_routing_process)
591 dist = distribute_lookup(babel_routing_process->distribute_ctx, ifp->name);
592 if (dist)
593 babel_distribute_update (babel_routing_process->distribute_ctx, dist);
594 }
595
596 /* Update all interface's distribute list. */
597 static void
598 babel_distribute_update_all (struct prefix_list *notused)
599 {
600 struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT);
601 struct interface *ifp;
602
603 FOR_ALL_INTERFACES (vrf, ifp)
604 babel_distribute_update_interface (ifp);
605 }
606
607 static void
608 babel_distribute_update_all_wrapper (struct access_list *notused)
609 {
610 babel_distribute_update_all(NULL);
611 }
612
613
614 /* [Command] */
615 DEFUN_NOSH (router_babel,
616 router_babel_cmd,
617 "router babel",
618 "Enable a routing process\n"
619 "Make Babel instance command\n")
620 {
621 int ret;
622
623 vty->node = BABEL_NODE;
624
625 if (!babel_routing_process) {
626 ret = babel_create_routing_process ();
627
628 /* Notice to user we couldn't create Babel. */
629 if (ret < 0) {
630 zlog_warn ("can't create Babel");
631 return CMD_WARNING;
632 }
633 }
634
635 return CMD_SUCCESS;
636 }
637
638 /* [Command] */
639 DEFUN (no_router_babel,
640 no_router_babel_cmd,
641 "no router babel",
642 NO_STR
643 "Disable a routing process\n"
644 "Remove Babel instance command\n")
645 {
646 if(babel_routing_process)
647 babel_clean_routing_process();
648 return CMD_SUCCESS;
649 }
650
651 /* [Babel Command] */
652 DEFUN (babel_diversity,
653 babel_diversity_cmd,
654 "babel diversity",
655 "Babel commands\n"
656 "Enable diversity-aware routing.\n")
657 {
658 diversity_kind = DIVERSITY_CHANNEL;
659 return CMD_SUCCESS;
660 }
661
662 /* [Babel Command] */
663 DEFUN (no_babel_diversity,
664 no_babel_diversity_cmd,
665 "no babel diversity",
666 NO_STR
667 "Babel commands\n"
668 "Disable diversity-aware routing.\n")
669 {
670 diversity_kind = DIVERSITY_NONE;
671 return CMD_SUCCESS;
672 }
673
674 /* [Babel Command] */
675 DEFUN (babel_diversity_factor,
676 babel_diversity_factor_cmd,
677 "babel diversity-factor (1-256)",
678 "Babel commands\n"
679 "Set the diversity factor.\n"
680 "Factor in units of 1/256.\n")
681 {
682 int factor;
683
684 factor = strtoul(argv[2]->arg, NULL, 10);
685
686 diversity_factor = factor;
687 return CMD_SUCCESS;
688 }
689
690 /* [Babel Command] */
691 DEFUN (babel_set_resend_delay,
692 babel_set_resend_delay_cmd,
693 "babel resend-delay (20-655340)",
694 "Babel commands\n"
695 "Time before resending a message\n"
696 "Milliseconds\n")
697 {
698 int interval;
699
700 interval = strtoul(argv[2]->arg, NULL, 10);
701
702 resend_delay = interval;
703 return CMD_SUCCESS;
704 }
705
706 /* [Babel Command] */
707 DEFUN (babel_set_smoothing_half_life,
708 babel_set_smoothing_half_life_cmd,
709 "babel smoothing-half-life (0-65534)",
710 "Babel commands\n"
711 "Smoothing half-life\n"
712 "Seconds (0 to disable)\n")
713 {
714 int seconds;
715
716 seconds = strtoul(argv[2]->arg, NULL, 10);
717
718 change_smoothing_half_life(seconds);
719 return CMD_SUCCESS;
720 }
721
722 void
723 babeld_quagga_init(void)
724 {
725
726 install_node(&cmd_babel_node);
727
728 install_element(CONFIG_NODE, &router_babel_cmd);
729 install_element(CONFIG_NODE, &no_router_babel_cmd);
730
731 install_default(BABEL_NODE);
732 install_element(BABEL_NODE, &babel_diversity_cmd);
733 install_element(BABEL_NODE, &no_babel_diversity_cmd);
734 install_element(BABEL_NODE, &babel_diversity_factor_cmd);
735 install_element(BABEL_NODE, &babel_set_resend_delay_cmd);
736 install_element(BABEL_NODE, &babel_set_smoothing_half_life_cmd);
737
738 babel_if_init();
739
740 /* Access list install. */
741 access_list_init ();
742 access_list_add_hook (babel_distribute_update_all_wrapper);
743 access_list_delete_hook (babel_distribute_update_all_wrapper);
744
745 /* Prefix list initialize.*/
746 prefix_list_init ();
747 prefix_list_add_hook (babel_distribute_update_all);
748 prefix_list_delete_hook (babel_distribute_update_all);
749
750 /* Distribute list install. */
751 distribute_list_init(BABEL_NODE);
752 }
753
754 /* Stubs to adapt Babel's filtering calls to Quagga's infrastructure. */
755
756 int
757 input_filter(const unsigned char *id,
758 const unsigned char *prefix, unsigned short plen,
759 const unsigned char *neigh, unsigned int ifindex)
760 {
761 return babel_filter(0, prefix, plen, ifindex);
762 }
763
764 int
765 output_filter(const unsigned char *id, const unsigned char *prefix,
766 unsigned short plen, unsigned int ifindex)
767 {
768 return babel_filter(1, prefix, plen, ifindex);
769 }
770
771 /* There's no redistribute filter in Quagga -- the zebra daemon does its
772 own filtering. */
773 int
774 redistribute_filter(const unsigned char *prefix, unsigned short plen,
775 unsigned int ifindex, int proto)
776 {
777 return 0;
778 }
779
780 struct babel *babel_lookup(void)
781 {
782 return babel_routing_process;
783 }