4 * Copyright (c) 2013, 2016 Renato Westphal <renato@openbsd.org>
5 * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
6 * Copyright (c) 2004, 2008 Esben Norby <norby@openbsd.org>
7 * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
9 * Permission to use, copy, modify, and distribute this software for any
10 * purpose with or without fee is hereby granted, provided that the above
11 * copyright notice and this permission notice appear in all copies.
13 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
14 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
15 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
16 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
19 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
30 #include "ldp_debug.h"
32 #include <lib/version.h>
45 #include "lib_errors.h"
47 static void ldpd_shutdown(void);
48 static pid_t
start_child(enum ldpd_process
, char *, int, int);
49 static int main_dispatch_ldpe(struct thread
*);
50 static int main_dispatch_lde(struct thread
*);
51 static int main_imsg_send_ipc_sockets(struct imsgbuf
*,
53 static void main_imsg_send_net_sockets(int);
54 static void main_imsg_send_net_socket(int, enum socket_type
);
55 static int main_imsg_send_config(struct ldpd_conf
*);
56 static void ldp_config_normalize(struct ldpd_conf
*);
57 static void ldp_config_reset(struct ldpd_conf
*);
58 static void ldp_config_reset_main(struct ldpd_conf
*);
59 static void ldp_config_reset_af(struct ldpd_conf
*, int);
60 static void ldp_config_reset_l2vpns(struct ldpd_conf
*);
61 static void merge_global(struct ldpd_conf
*, struct ldpd_conf
*);
62 static void merge_af(int, struct ldpd_af_conf
*,
63 struct ldpd_af_conf
*);
64 static void merge_ifaces(struct ldpd_conf
*, struct ldpd_conf
*);
65 static void merge_iface_af(struct iface_af
*, struct iface_af
*);
66 static void merge_tnbrs(struct ldpd_conf
*, struct ldpd_conf
*);
67 static void merge_nbrps(struct ldpd_conf
*, struct ldpd_conf
*);
68 static void merge_l2vpns(struct ldpd_conf
*, struct ldpd_conf
*);
69 static void merge_l2vpn(struct ldpd_conf
*, struct l2vpn
*,
72 DEFINE_QOBJ_TYPE(iface
)
73 DEFINE_QOBJ_TYPE(tnbr
)
74 DEFINE_QOBJ_TYPE(nbr_params
)
75 DEFINE_QOBJ_TYPE(l2vpn_if
)
76 DEFINE_QOBJ_TYPE(l2vpn_pw
)
77 DEFINE_QOBJ_TYPE(l2vpn
)
78 DEFINE_QOBJ_TYPE(ldpd_conf
)
80 struct ldpd_global global
;
81 struct ldpd_init init
;
82 struct ldpd_conf
*ldpd_conf
, *vty_conf
;
84 static struct imsgev
*iev_ldpe
, *iev_ldpe_sync
;
85 static struct imsgev
*iev_lde
, *iev_lde_sync
;
86 static pid_t ldpe_pid
;
89 #define LDP_DEFAULT_CONFIG "ldpd.conf"
90 #define LDP_VTY_PORT 2612
92 /* Master of threads. */
93 struct thread_master
*master
;
95 static struct frr_daemon_info ldpd_di
;
98 static zebra_capabilities_t _caps_p
[] =
104 struct zebra_privs_t ldpd_privs
=
106 #if defined(FRR_USER) && defined(FRR_GROUP)
110 #if defined(VTY_GROUP)
111 .vty_group
= VTY_GROUP
,
114 .cap_num_p
= array_size(_caps_p
),
118 /* CTL Socket path */
119 char ctl_sock_path
[MAXPATHLEN
];
122 #define OPTION_CTLSOCK 1001
123 static struct option longopts
[] =
125 { "ctl_socket", required_argument
, NULL
, OPTION_CTLSOCK
},
126 { "instance", required_argument
, NULL
, 'n'},
130 /* SIGHUP handler. */
134 log_info("SIGHUP received");
137 * Do a full configuration reload. In other words, reset vty_conf
138 * and build a new configuartion from scratch.
140 ldp_config_reset(vty_conf
);
141 vty_read_config(NULL
, ldpd_di
.config_file
, config_default
);
142 ldp_config_apply(NULL
, vty_conf
);
145 /* SIGINT / SIGTERM handler. */
149 log_info("SIGINT received");
153 /* SIGUSR1 handler. */
160 static struct quagga_signal_t ldp_signals
[] =
180 static const struct frr_yang_module_info
*ldpd_yang_modules
[] = {
183 FRR_DAEMON_INFO(ldpd
, LDP
,
184 .vty_port
= LDP_VTY_PORT
,
186 .proghelp
= "Implementation of the LDP protocol.",
188 .signals
= ldp_signals
,
189 .n_signals
= array_size(ldp_signals
),
191 .privs
= &ldpd_privs
,
193 .yang_modules
= ldpd_yang_modules
,
194 .n_yang_modules
= array_size(ldpd_yang_modules
),
197 static int ldp_config_fork_apply(struct thread
*t
)
200 * So the frr_config_fork() function schedules
201 * the read of the vty config( if there is a
202 * non-integrated config ) to be after the
203 * end of startup and we are starting the
204 * main process loop. We need to schedule
205 * the application of this if necessary
206 * after the read in of the config.
208 ldp_config_apply(NULL
, vty_conf
);
214 main(int argc
, char *argv
[])
217 int lflag
= 0, eflag
= 0;
218 int pipe_parent2ldpe
[2], pipe_parent2ldpe_sync
[2];
219 int pipe_parent2lde
[2], pipe_parent2lde_sync
[2];
221 struct thread
*thread
= NULL
;
222 bool ctl_sock_used
= false;
224 snprintf(ctl_sock_path
, sizeof(ctl_sock_path
), LDPD_SOCKET
,
227 ldpd_process
= PROC_MAIN
;
228 log_procname
= log_procnames
[ldpd_process
];
230 saved_argv0
= argv
[0];
231 if (saved_argv0
== NULL
)
232 saved_argv0
= (char *)"ldpd";
234 frr_preinit(&ldpd_di
, argc
, argv
);
235 frr_opt_add("LEn:", longopts
,
236 " --ctl_socket Override ctl socket path\n"
237 " -n, --instance Instance id\n");
242 opt
= frr_getopt(argc
, argv
, NULL
);
251 ctl_sock_used
= true;
252 ctl_sock_name
= strrchr(LDPD_SOCKET
, '/');
258 * LDPD_SOCKET configured as relative path
259 * during config? Should really never happen for
262 ctl_sock_name
= (char *)LDPD_SOCKET
;
263 strlcpy(ctl_sock_path
, optarg
, sizeof(ctl_sock_path
));
264 strlcat(ctl_sock_path
, "/", sizeof(ctl_sock_path
));
265 strlcat(ctl_sock_path
, ctl_sock_name
,
266 sizeof(ctl_sock_path
));
269 init
.instance
= atoi(optarg
);
270 if (init
.instance
< 1)
285 if (ldpd_di
.pathspace
&& !ctl_sock_used
)
286 snprintf(ctl_sock_path
, sizeof(ctl_sock_path
), LDPD_SOCKET
,
287 "/", ldpd_di
.pathspace
);
289 strlcpy(init
.user
, ldpd_privs
.user
, sizeof(init
.user
));
290 strlcpy(init
.group
, ldpd_privs
.group
, sizeof(init
.group
));
291 strlcpy(init
.ctl_sock_path
, ctl_sock_path
, sizeof(init
.ctl_sock_path
));
292 strlcpy(init
.zclient_serv_path
, frr_zclientpath
,
293 sizeof(init
.zclient_serv_path
));
296 if (argc
> 0 || (lflag
&& eflag
))
299 /* check for root privileges */
300 if (geteuid() != 0) {
302 perror(ldpd_di
.progname
);
307 openzlog(ldpd_di
.progname
, "LDP", 0,
308 LOG_CONS
| LOG_NDELAY
| LOG_PID
, LOG_DAEMON
);
314 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, pipe_parent2ldpe
) == -1)
316 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
,
317 pipe_parent2ldpe_sync
) == -1)
319 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, pipe_parent2lde
) == -1)
321 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
,
322 pipe_parent2lde_sync
) == -1)
324 sock_set_nonblock(pipe_parent2ldpe
[0]);
325 sock_set_cloexec(pipe_parent2ldpe
[0]);
326 sock_set_nonblock(pipe_parent2ldpe
[1]);
327 sock_set_cloexec(pipe_parent2ldpe
[1]);
328 sock_set_nonblock(pipe_parent2ldpe_sync
[0]);
329 sock_set_cloexec(pipe_parent2ldpe_sync
[0]);
330 sock_set_cloexec(pipe_parent2ldpe_sync
[1]);
331 sock_set_nonblock(pipe_parent2lde
[0]);
332 sock_set_cloexec(pipe_parent2lde
[0]);
333 sock_set_nonblock(pipe_parent2lde
[1]);
334 sock_set_cloexec(pipe_parent2lde
[1]);
335 sock_set_nonblock(pipe_parent2lde_sync
[0]);
336 sock_set_cloexec(pipe_parent2lde_sync
[0]);
337 sock_set_cloexec(pipe_parent2lde_sync
[1]);
340 lde_pid
= start_child(PROC_LDE_ENGINE
, saved_argv0
,
341 pipe_parent2lde
[1], pipe_parent2lde_sync
[1]);
342 ldpe_pid
= start_child(PROC_LDP_ENGINE
, saved_argv0
,
343 pipe_parent2ldpe
[1], pipe_parent2ldpe_sync
[1]);
347 vrf_init(NULL
, NULL
, NULL
, NULL
, NULL
);
350 ldp_zebra_init(master
);
353 * Create base configuration with sane defaults. All configuration
354 * requests (e.g. CLI) act on vty_conf and then call ldp_config_apply()
355 * to merge the changes into ldpd_conf, which contains the actual
356 * running configuration.
358 ldpd_conf
= config_new_empty();
359 vty_conf
= config_new_empty();
360 QOBJ_REG(vty_conf
, ldpd_conf
);
362 /* read configuration file and daemonize */
365 /* apply configuration */
366 thread_add_event(master
, ldp_config_fork_apply
, NULL
, 0, &thread
);
368 /* setup pipes to children */
369 if ((iev_ldpe
= calloc(1, sizeof(struct imsgev
))) == NULL
||
370 (iev_ldpe_sync
= calloc(1, sizeof(struct imsgev
))) == NULL
||
371 (iev_lde
= calloc(1, sizeof(struct imsgev
))) == NULL
||
372 (iev_lde_sync
= calloc(1, sizeof(struct imsgev
))) == NULL
)
374 imsg_init(&iev_ldpe
->ibuf
, pipe_parent2ldpe
[0]);
375 iev_ldpe
->handler_read
= main_dispatch_ldpe
;
376 iev_ldpe
->ev_read
= NULL
;
377 thread_add_read(master
, iev_ldpe
->handler_read
, iev_ldpe
, iev_ldpe
->ibuf
.fd
,
379 iev_ldpe
->handler_write
= ldp_write_handler
;
381 imsg_init(&iev_ldpe_sync
->ibuf
, pipe_parent2ldpe_sync
[0]);
382 iev_ldpe_sync
->handler_read
= main_dispatch_ldpe
;
383 iev_ldpe_sync
->ev_read
= NULL
;
384 thread_add_read(master
, iev_ldpe_sync
->handler_read
, iev_ldpe_sync
, iev_ldpe_sync
->ibuf
.fd
,
385 &iev_ldpe_sync
->ev_read
);
386 iev_ldpe_sync
->handler_write
= ldp_write_handler
;
388 imsg_init(&iev_lde
->ibuf
, pipe_parent2lde
[0]);
389 iev_lde
->handler_read
= main_dispatch_lde
;
390 iev_lde
->ev_read
= NULL
;
391 thread_add_read(master
, iev_lde
->handler_read
, iev_lde
, iev_lde
->ibuf
.fd
,
393 iev_lde
->handler_write
= ldp_write_handler
;
395 imsg_init(&iev_lde_sync
->ibuf
, pipe_parent2lde_sync
[0]);
396 iev_lde_sync
->handler_read
= main_dispatch_lde
;
397 iev_lde_sync
->ev_read
= NULL
;
398 thread_add_read(master
, iev_lde_sync
->handler_read
, iev_lde_sync
, iev_lde_sync
->ibuf
.fd
,
399 &iev_lde_sync
->ev_read
);
400 iev_lde_sync
->handler_write
= ldp_write_handler
;
402 if (main_imsg_send_ipc_sockets(&iev_ldpe
->ibuf
, &iev_lde
->ibuf
))
403 fatal("could not establish imsg links");
404 main_imsg_compose_both(IMSG_DEBUG_UPDATE
, &ldp_debug
,
406 main_imsg_compose_both(IMSG_INIT
, &init
, sizeof(init
));
407 main_imsg_send_config(ldpd_conf
);
409 if (ldpd_conf
->ipv4
.flags
& F_LDPD_AF_ENABLED
)
410 main_imsg_send_net_sockets(AF_INET
);
411 if (ldpd_conf
->ipv6
.flags
& F_LDPD_AF_ENABLED
)
412 main_imsg_send_net_sockets(AF_INET6
);
429 msgbuf_clear(&iev_ldpe
->ibuf
.w
);
430 close(iev_ldpe
->ibuf
.fd
);
431 msgbuf_clear(&iev_lde
->ibuf
.w
);
432 close(iev_lde
->ibuf
.fd
);
434 config_clear(ldpd_conf
);
436 ldp_config_reset(vty_conf
);
437 QOBJ_UNREG(vty_conf
);
440 log_debug("waiting for children to terminate");
443 /* Wait for child process. */
446 /* We got interrupted, try again. */
449 /* No more processes were found. */
453 /* Unhandled errno condition. */
458 /* We found something, lets announce it. */
459 if (WIFSIGNALED(status
))
460 log_warnx("%s terminated; signal %d",
461 (pid
== lde_pid
? "label decision engine"
465 /* Repeat until there are no more child processes. */
471 log_info("terminating");
482 start_child(enum ldpd_process p
, char *argv0
, int fd_async
, int fd_sync
)
485 int argc
= 0, nullfd
;
488 switch (pid
= fork()) {
490 fatal("cannot fork");
499 nullfd
= open("/dev/null", O_RDONLY
| O_NOCTTY
);
501 flog_err_sys(EC_LIB_SYSTEM_CALL
,
502 "%s: failed to open /dev/null: %s", __func__
,
503 safe_strerror(errno
));
511 if (dup2(fd_async
, LDPD_FD_ASYNC
) == -1)
512 fatal("cannot setup imsg async fd");
513 if (dup2(fd_sync
, LDPD_FD_SYNC
) == -1)
514 fatal("cannot setup imsg sync fd");
516 argv
[argc
++] = argv0
;
519 fatalx("Can not start main process");
520 case PROC_LDE_ENGINE
:
521 argv
[argc
++] = (char *)"-L";
523 case PROC_LDP_ENGINE
:
524 argv
[argc
++] = (char *)"-E";
536 main_dispatch_ldpe(struct thread
*thread
)
538 struct imsgev
*iev
= THREAD_ARG(thread
);
539 struct imsgbuf
*ibuf
= &iev
->ibuf
;
547 if ((n
= imsg_read(ibuf
)) == -1 && errno
!= EAGAIN
)
548 fatal("imsg_read error");
549 if (n
== 0) /* connection closed */
553 if ((n
= imsg_get(ibuf
, &imsg
)) == -1)
559 switch (imsg
.hdr
.type
) {
561 logit(imsg
.hdr
.pid
, "%s", (const char *)imsg
.data
);
563 case IMSG_REQUEST_SOCKETS
:
565 main_imsg_send_net_sockets(af
);
568 if (imsg
.hdr
.len
!= IMSG_HEADER_SIZE
+
569 sizeof(struct acl_check
))
570 fatalx("IMSG_ACL_CHECK imsg with wrong len");
571 ldp_acl_reply(iev
, (struct acl_check
*)imsg
.data
);
574 log_debug("%s: error handling imsg %d", __func__
,
583 /* this pipe is dead, so remove the event handlers and exit */
584 THREAD_READ_OFF(iev
->ev_read
);
585 THREAD_WRITE_OFF(iev
->ev_write
);
590 kill(lde_pid
, SIGTERM
);
598 main_dispatch_lde(struct thread
*thread
)
600 struct imsgev
*iev
= THREAD_ARG(thread
);
601 struct imsgbuf
*ibuf
= &iev
->ibuf
;
608 if ((n
= imsg_read(ibuf
)) == -1 && errno
!= EAGAIN
)
609 fatal("imsg_read error");
610 if (n
== 0) /* connection closed */
614 if ((n
= imsg_get(ibuf
, &imsg
)) == -1)
620 switch (imsg
.hdr
.type
) {
622 logit(imsg
.hdr
.pid
, "%s", (const char *)imsg
.data
);
624 case IMSG_KLABEL_CHANGE
:
625 if (imsg
.hdr
.len
- IMSG_HEADER_SIZE
!=
626 sizeof(struct kroute
))
627 fatalx("invalid size of IMSG_KLABEL_CHANGE");
628 if (kr_change(imsg
.data
))
629 log_warnx("%s: error changing route", __func__
);
631 case IMSG_KLABEL_DELETE
:
632 if (imsg
.hdr
.len
- IMSG_HEADER_SIZE
!=
633 sizeof(struct kroute
))
634 fatalx("invalid size of IMSG_KLABEL_DELETE");
635 if (kr_delete(imsg
.data
))
636 log_warnx("%s: error deleting route", __func__
);
639 case IMSG_KPW_DELETE
:
642 if (imsg
.hdr
.len
- IMSG_HEADER_SIZE
!=
643 sizeof(struct zapi_pw
))
644 fatalx("invalid size of IMSG_KPWLABEL_CHANGE");
646 switch (imsg
.hdr
.type
) {
648 if (kmpw_add(imsg
.data
))
649 log_warnx("%s: error adding "
650 "pseudowire", __func__
);
652 case IMSG_KPW_DELETE
:
653 if (kmpw_del(imsg
.data
))
654 log_warnx("%s: error deleting "
655 "pseudowire", __func__
);
658 if (kmpw_set(imsg
.data
))
659 log_warnx("%s: error setting "
660 "pseudowire", __func__
);
663 if (kmpw_unset(imsg
.data
))
664 log_warnx("%s: error unsetting "
665 "pseudowire", __func__
);
670 if (imsg
.hdr
.len
!= IMSG_HEADER_SIZE
+
671 sizeof(struct acl_check
))
672 fatalx("IMSG_ACL_CHECK imsg with wrong len");
673 ldp_acl_reply(iev
, (struct acl_check
*)imsg
.data
);
676 log_debug("%s: error handling imsg %d", __func__
,
685 /* this pipe is dead, so remove the event handlers and exit */
686 THREAD_READ_OFF(iev
->ev_read
);
687 THREAD_WRITE_OFF(iev
->ev_write
);
692 kill(ldpe_pid
, SIGTERM
);
700 ldp_write_handler(struct thread
*thread
)
702 struct imsgev
*iev
= THREAD_ARG(thread
);
703 struct imsgbuf
*ibuf
= &iev
->ibuf
;
706 iev
->ev_write
= NULL
;
708 if ((n
= msgbuf_write(&ibuf
->w
)) == -1 && errno
!= EAGAIN
)
709 fatal("msgbuf_write");
711 /* this pipe is dead, so remove the event handlers */
712 THREAD_READ_OFF(iev
->ev_read
);
713 THREAD_WRITE_OFF(iev
->ev_write
);
723 main_imsg_compose_ldpe(int type
, pid_t pid
, void *data
, uint16_t datalen
)
725 if (iev_ldpe
== NULL
)
727 imsg_compose_event(iev_ldpe
, type
, 0, pid
, -1, data
, datalen
);
731 main_imsg_compose_lde(int type
, pid_t pid
, void *data
, uint16_t datalen
)
733 imsg_compose_event(iev_lde
, type
, 0, pid
, -1, data
, datalen
);
737 main_imsg_compose_both(enum imsg_type type
, void *buf
, uint16_t len
)
739 if (iev_ldpe
== NULL
|| iev_lde
== NULL
)
741 if (imsg_compose_event(iev_ldpe
, type
, 0, 0, -1, buf
, len
) == -1)
743 if (imsg_compose_event(iev_lde
, type
, 0, 0, -1, buf
, len
) == -1)
749 imsg_event_add(struct imsgev
*iev
)
751 if (iev
->handler_read
)
752 thread_add_read(master
, iev
->handler_read
, iev
, iev
->ibuf
.fd
,
755 if (iev
->handler_write
&& iev
->ibuf
.w
.queued
)
756 thread_add_write(master
, iev
->handler_write
, iev
,
757 iev
->ibuf
.fd
, &iev
->ev_write
);
761 imsg_compose_event(struct imsgev
*iev
, uint16_t type
, uint32_t peerid
,
762 pid_t pid
, int fd
, void *data
, uint16_t datalen
)
766 if ((ret
= imsg_compose(&iev
->ibuf
, type
, peerid
,
767 pid
, fd
, data
, datalen
)) != -1)
773 evbuf_enqueue(struct evbuf
*eb
, struct ibuf
*buf
)
775 ibuf_close(&eb
->wbuf
, buf
);
780 evbuf_event_add(struct evbuf
*eb
)
783 thread_add_write(master
, eb
->handler
, eb
->arg
, eb
->wbuf
.fd
,
788 evbuf_init(struct evbuf
*eb
, int fd
, int (*handler
)(struct thread
*),
791 msgbuf_init(&eb
->wbuf
);
793 eb
->handler
= handler
;
798 evbuf_clear(struct evbuf
*eb
)
800 THREAD_WRITE_OFF(eb
->ev
);
801 msgbuf_clear(&eb
->wbuf
);
806 main_imsg_send_ipc_sockets(struct imsgbuf
*ldpe_buf
, struct imsgbuf
*lde_buf
)
808 int pipe_ldpe2lde
[2];
810 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, pipe_ldpe2lde
) == -1)
812 sock_set_nonblock(pipe_ldpe2lde
[0]);
813 sock_set_nonblock(pipe_ldpe2lde
[1]);
815 if (imsg_compose(ldpe_buf
, IMSG_SOCKET_IPC
, 0, 0, pipe_ldpe2lde
[0],
818 if (imsg_compose(lde_buf
, IMSG_SOCKET_IPC
, 0, 0, pipe_ldpe2lde
[1],
826 main_imsg_send_net_sockets(int af
)
828 if (!ldp_addrisset(af
, &(ldp_af_conf_get(ldpd_conf
, af
))->trans_addr
))
831 main_imsg_send_net_socket(af
, LDP_SOCKET_DISC
);
832 main_imsg_send_net_socket(af
, LDP_SOCKET_EDISC
);
833 main_imsg_send_net_socket(af
, LDP_SOCKET_SESSION
);
834 imsg_compose_event(iev_ldpe
, IMSG_SETUP_SOCKETS
, af
, 0, -1, NULL
, 0);
838 main_imsg_send_net_socket(int af
, enum socket_type type
)
842 fd
= ldp_create_socket(af
, type
);
844 log_warnx("%s: failed to create %s socket for address-family "
845 "%s", __func__
, socket_name(type
), af_name(af
));
849 imsg_compose_event(iev_ldpe
, IMSG_SOCKET_NET
, af
, 0, fd
, &type
,
854 ldp_acl_request(struct imsgev
*iev
, char *acl_name
, int af
,
855 union ldpd_addr
*addr
, uint8_t prefixlen
)
859 struct acl_check acl_check
;
861 if (acl_name
[0] == '\0')
862 return FILTER_PERMIT
;
865 strlcpy(acl_check
.acl
, acl_name
, sizeof(acl_check
.acl
));
867 acl_check
.addr
= *addr
;
868 acl_check
.prefixlen
= prefixlen
;
870 /* send (blocking) */
871 imsg_compose_event(iev
, IMSG_ACL_CHECK
, 0, 0, -1, &acl_check
,
873 imsg_flush(&iev
->ibuf
);
875 /* receive (blocking) and parse result */
876 if ((n
= imsg_read(&iev
->ibuf
)) == -1)
877 fatal("imsg_read error");
878 if ((n
= imsg_get(&iev
->ibuf
, &imsg
)) == -1)
880 if (imsg
.hdr
.type
!= IMSG_ACL_CHECK
||
881 imsg
.hdr
.len
!= IMSG_HEADER_SIZE
+ sizeof(int))
882 fatalx("ldp_acl_request: invalid response");
884 return (*((int *)imsg
.data
));
888 ldp_acl_reply(struct imsgev
*iev
, struct acl_check
*acl_check
)
890 struct access_list
*alist
;
891 struct prefix prefix
;
894 alist
= access_list_lookup(family2afi(acl_check
->af
), acl_check
->acl
);
896 result
= FILTER_DENY
;
898 prefix
.family
= acl_check
->af
;
899 switch (prefix
.family
) {
901 prefix
.u
.prefix4
= acl_check
->addr
.v4
;
904 prefix
.u
.prefix6
= acl_check
->addr
.v6
;
907 fatalx("ldp_acl_reply: unknown af");
909 prefix
.prefixlen
= acl_check
->prefixlen
;
910 result
= access_list_apply(alist
, &prefix
);
913 imsg_compose_event(iev
, IMSG_ACL_CHECK
, 0, 0, -1, &result
,
917 struct ldpd_af_conf
*
918 ldp_af_conf_get(struct ldpd_conf
*xconf
, int af
)
922 return (&xconf
->ipv4
);
924 return (&xconf
->ipv6
);
926 fatalx("ldp_af_conf_get: unknown af");
930 struct ldpd_af_global
*
931 ldp_af_global_get(struct ldpd_global
*xglobal
, int af
)
935 return (&xglobal
->ipv4
);
937 return (&xglobal
->ipv6
);
939 fatalx("ldp_af_global_get: unknown af");
944 ldp_is_dual_stack(struct ldpd_conf
*xconf
)
946 return ((xconf
->ipv4
.flags
& F_LDPD_AF_ENABLED
) &&
947 (xconf
->ipv6
.flags
& F_LDPD_AF_ENABLED
));
951 ldp_rtr_id_get(struct ldpd_conf
*xconf
)
953 if (xconf
->rtr_id
.s_addr
!= INADDR_ANY
)
954 return (xconf
->rtr_id
.s_addr
);
956 return (global
.rtr_id
.s_addr
);
960 main_imsg_send_config(struct ldpd_conf
*xconf
)
964 struct nbr_params
*nbrp
;
966 struct l2vpn_if
*lif
;
969 if (main_imsg_compose_both(IMSG_RECONF_CONF
, xconf
,
970 sizeof(*xconf
)) == -1)
973 RB_FOREACH(iface
, iface_head
, &xconf
->iface_tree
) {
974 if (main_imsg_compose_both(IMSG_RECONF_IFACE
, iface
,
975 sizeof(*iface
)) == -1)
979 RB_FOREACH(tnbr
, tnbr_head
, &xconf
->tnbr_tree
) {
980 if (main_imsg_compose_both(IMSG_RECONF_TNBR
, tnbr
,
981 sizeof(*tnbr
)) == -1)
985 RB_FOREACH(nbrp
, nbrp_head
, &xconf
->nbrp_tree
) {
986 if (main_imsg_compose_both(IMSG_RECONF_NBRP
, nbrp
,
987 sizeof(*nbrp
)) == -1)
991 RB_FOREACH(l2vpn
, l2vpn_head
, &xconf
->l2vpn_tree
) {
992 if (main_imsg_compose_both(IMSG_RECONF_L2VPN
, l2vpn
,
993 sizeof(*l2vpn
)) == -1)
996 RB_FOREACH(lif
, l2vpn_if_head
, &l2vpn
->if_tree
) {
997 if (main_imsg_compose_both(IMSG_RECONF_L2VPN_IF
, lif
,
1001 RB_FOREACH(pw
, l2vpn_pw_head
, &l2vpn
->pw_tree
) {
1002 if (main_imsg_compose_both(IMSG_RECONF_L2VPN_PW
, pw
,
1006 RB_FOREACH(pw
, l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
) {
1007 if (main_imsg_compose_both(IMSG_RECONF_L2VPN_IPW
, pw
,
1013 if (main_imsg_compose_both(IMSG_RECONF_END
, NULL
, 0) == -1)
1020 ldp_config_apply(struct vty
*vty
, struct ldpd_conf
*xconf
)
1023 * When reading from a configuration file (startup and sighup), we
1024 * call merge_config() only once after the whole config has been read.
1025 * This is the optimal and least disruptive way to update the running
1028 if (vty
&& vty
->type
== VTY_FILE
)
1031 ldp_config_normalize(xconf
);
1033 if (main_imsg_send_config(xconf
) == -1)
1036 merge_config(ldpd_conf
, xconf
);
1042 ldp_config_normalize(struct ldpd_conf
*xconf
)
1044 struct iface
*iface
, *itmp
;
1045 struct nbr_params
*nbrp
, *ntmp
;
1046 struct l2vpn
*l2vpn
;
1047 struct l2vpn_pw
*pw
, *ptmp
;
1049 if (!(xconf
->flags
& F_LDPD_ENABLED
))
1050 ldp_config_reset_main(xconf
);
1052 if (!(xconf
->ipv4
.flags
& F_LDPD_AF_ENABLED
))
1053 ldp_config_reset_af(xconf
, AF_INET
);
1054 if (!(xconf
->ipv6
.flags
& F_LDPD_AF_ENABLED
))
1055 ldp_config_reset_af(xconf
, AF_INET6
);
1057 RB_FOREACH_SAFE(iface
, iface_head
, &xconf
->iface_tree
, itmp
) {
1058 if (iface
->ipv4
.enabled
|| iface
->ipv6
.enabled
)
1062 RB_REMOVE(iface_head
, &vty_conf
->iface_tree
, iface
);
1066 RB_FOREACH_SAFE(nbrp
, nbrp_head
, &xconf
->nbrp_tree
, ntmp
) {
1067 if (nbrp
->flags
& (F_NBRP_KEEPALIVE
|F_NBRP_GTSM
))
1069 if (nbrp
->auth
.method
!= AUTH_NONE
)
1073 RB_REMOVE(nbrp_head
, &vty_conf
->nbrp_tree
, nbrp
);
1078 RB_FOREACH(l2vpn
, l2vpn_head
, &xconf
->l2vpn_tree
) {
1079 RB_FOREACH_SAFE(pw
, l2vpn_pw_head
, &l2vpn
->pw_tree
, ptmp
) {
1080 if (!(pw
->flags
& F_PW_STATIC_NBR_ADDR
)) {
1082 pw
->addr
.v4
= pw
->lsr_id
;
1085 if (pw
->lsr_id
.s_addr
!= INADDR_ANY
&& pw
->pwid
!= 0)
1087 RB_REMOVE(l2vpn_pw_head
, &l2vpn
->pw_tree
, pw
);
1088 RB_INSERT(l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
, pw
);
1090 RB_FOREACH_SAFE(pw
, l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
,
1092 if (!(pw
->flags
& F_PW_STATIC_NBR_ADDR
)) {
1094 pw
->addr
.v4
= pw
->lsr_id
;
1097 if (pw
->lsr_id
.s_addr
== INADDR_ANY
|| pw
->pwid
== 0)
1099 RB_REMOVE(l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
, pw
);
1100 RB_INSERT(l2vpn_pw_head
, &l2vpn
->pw_tree
, pw
);
1106 ldp_config_reset(struct ldpd_conf
*conf
)
1108 ldp_config_reset_main(conf
);
1109 ldp_config_reset_l2vpns(conf
);
1113 ldp_config_reset_main(struct ldpd_conf
*conf
)
1115 struct iface
*iface
;
1116 struct nbr_params
*nbrp
;
1118 while (!RB_EMPTY(iface_head
, &conf
->iface_tree
)) {
1119 iface
= RB_ROOT(iface_head
, &conf
->iface_tree
);
1122 RB_REMOVE(iface_head
, &conf
->iface_tree
, iface
);
1126 while (!RB_EMPTY(nbrp_head
, &conf
->nbrp_tree
)) {
1127 nbrp
= RB_ROOT(nbrp_head
, &conf
->nbrp_tree
);
1130 RB_REMOVE(nbrp_head
, &conf
->nbrp_tree
, nbrp
);
1134 conf
->rtr_id
.s_addr
= INADDR_ANY
;
1135 ldp_config_reset_af(conf
, AF_INET
);
1136 ldp_config_reset_af(conf
, AF_INET6
);
1137 conf
->lhello_holdtime
= LINK_DFLT_HOLDTIME
;
1138 conf
->lhello_interval
= DEFAULT_HELLO_INTERVAL
;
1139 conf
->thello_holdtime
= TARGETED_DFLT_HOLDTIME
;
1140 conf
->thello_interval
= DEFAULT_HELLO_INTERVAL
;
1141 conf
->trans_pref
= DUAL_STACK_LDPOV6
;
1146 ldp_config_reset_af(struct ldpd_conf
*conf
, int af
)
1148 struct ldpd_af_conf
*af_conf
;
1149 struct iface
*iface
;
1150 struct iface_af
*ia
;
1151 struct tnbr
*tnbr
, *ttmp
;
1153 RB_FOREACH(iface
, iface_head
, &conf
->iface_tree
) {
1154 ia
= iface_af_get(iface
, af
);
1158 RB_FOREACH_SAFE(tnbr
, tnbr_head
, &conf
->tnbr_tree
, ttmp
) {
1163 RB_REMOVE(tnbr_head
, &conf
->tnbr_tree
, tnbr
);
1167 af_conf
= ldp_af_conf_get(conf
, af
);
1168 af_conf
->keepalive
= 180;
1169 af_conf
->lhello_holdtime
= 0;
1170 af_conf
->lhello_interval
= 0;
1171 af_conf
->thello_holdtime
= 0;
1172 af_conf
->thello_interval
= 0;
1173 memset(&af_conf
->trans_addr
, 0, sizeof(af_conf
->trans_addr
));
1178 ldp_config_reset_l2vpns(struct ldpd_conf
*conf
)
1180 struct l2vpn
*l2vpn
;
1181 struct l2vpn_if
*lif
;
1182 struct l2vpn_pw
*pw
;
1184 while (!RB_EMPTY(l2vpn_head
, &conf
->l2vpn_tree
)) {
1185 l2vpn
= RB_ROOT(l2vpn_head
, &conf
->l2vpn_tree
);
1186 while (!RB_EMPTY(l2vpn_if_head
, &l2vpn
->if_tree
)) {
1187 lif
= RB_ROOT(l2vpn_if_head
, &l2vpn
->if_tree
);
1190 RB_REMOVE(l2vpn_if_head
, &l2vpn
->if_tree
, lif
);
1193 while (!RB_EMPTY(l2vpn_pw_head
, &l2vpn
->pw_tree
)) {
1194 pw
= RB_ROOT(l2vpn_pw_head
, &l2vpn
->pw_tree
);
1197 RB_REMOVE(l2vpn_pw_head
, &l2vpn
->pw_tree
, pw
);
1200 while (!RB_EMPTY(l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
)) {
1201 pw
= RB_ROOT(l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
);
1204 RB_REMOVE(l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
, pw
);
1208 RB_REMOVE(l2vpn_head
, &conf
->l2vpn_tree
, l2vpn
);
1214 ldp_clear_config(struct ldpd_conf
*xconf
)
1216 struct iface
*iface
;
1218 struct nbr_params
*nbrp
;
1219 struct l2vpn
*l2vpn
;
1221 while (!RB_EMPTY(iface_head
, &xconf
->iface_tree
)) {
1222 iface
= RB_ROOT(iface_head
, &xconf
->iface_tree
);
1224 RB_REMOVE(iface_head
, &xconf
->iface_tree
, iface
);
1227 while (!RB_EMPTY(tnbr_head
, &xconf
->tnbr_tree
)) {
1228 tnbr
= RB_ROOT(tnbr_head
, &xconf
->tnbr_tree
);
1230 RB_REMOVE(tnbr_head
, &xconf
->tnbr_tree
, tnbr
);
1233 while (!RB_EMPTY(nbrp_head
, &xconf
->nbrp_tree
)) {
1234 nbrp
= RB_ROOT(nbrp_head
, &xconf
->nbrp_tree
);
1236 RB_REMOVE(nbrp_head
, &xconf
->nbrp_tree
, nbrp
);
1239 while (!RB_EMPTY(l2vpn_head
, &xconf
->l2vpn_tree
)) {
1240 l2vpn
= RB_ROOT(l2vpn_head
, &xconf
->l2vpn_tree
);
1242 RB_REMOVE(l2vpn_head
, &xconf
->l2vpn_tree
, l2vpn
);
1249 #define COPY(a, b) do { \
1250 a = malloc(sizeof(*a)); \
1257 merge_config(struct ldpd_conf
*conf
, struct ldpd_conf
*xconf
)
1259 merge_global(conf
, xconf
);
1260 merge_af(AF_INET
, &conf
->ipv4
, &xconf
->ipv4
);
1261 merge_af(AF_INET6
, &conf
->ipv6
, &xconf
->ipv6
);
1262 merge_ifaces(conf
, xconf
);
1263 merge_tnbrs(conf
, xconf
);
1264 merge_nbrps(conf
, xconf
);
1265 merge_l2vpns(conf
, xconf
);
1269 merge_global(struct ldpd_conf
*conf
, struct ldpd_conf
*xconf
)
1271 /* change of router-id requires resetting all neighborships */
1272 if (conf
->rtr_id
.s_addr
!= xconf
->rtr_id
.s_addr
) {
1273 if (ldpd_process
== PROC_LDP_ENGINE
) {
1274 ldpe_reset_nbrs(AF_UNSPEC
);
1275 if (conf
->rtr_id
.s_addr
== INADDR_ANY
||
1276 xconf
->rtr_id
.s_addr
== INADDR_ANY
) {
1277 if_update_all(AF_UNSPEC
);
1278 tnbr_update_all(AF_UNSPEC
);
1281 conf
->rtr_id
= xconf
->rtr_id
;
1284 conf
->lhello_holdtime
= xconf
->lhello_holdtime
;
1285 conf
->lhello_interval
= xconf
->lhello_interval
;
1286 conf
->thello_holdtime
= xconf
->thello_holdtime
;
1287 conf
->thello_interval
= xconf
->thello_interval
;
1289 if (conf
->trans_pref
!= xconf
->trans_pref
) {
1290 if (ldpd_process
== PROC_LDP_ENGINE
)
1291 ldpe_reset_ds_nbrs();
1292 conf
->trans_pref
= xconf
->trans_pref
;
1295 if ((conf
->flags
& F_LDPD_DS_CISCO_INTEROP
) !=
1296 (xconf
->flags
& F_LDPD_DS_CISCO_INTEROP
)) {
1297 if (ldpd_process
== PROC_LDP_ENGINE
)
1298 ldpe_reset_ds_nbrs();
1301 conf
->flags
= xconf
->flags
;
1305 merge_af(int af
, struct ldpd_af_conf
*af_conf
, struct ldpd_af_conf
*xa
)
1307 int stop_init_backoff
= 0;
1308 int remove_dynamic_tnbrs
= 0;
1309 int change_egress_label
= 0;
1310 int reset_nbrs_ipv4
= 0;
1312 int update_sockets
= 0;
1315 if (af_conf
->keepalive
!= xa
->keepalive
) {
1316 af_conf
->keepalive
= xa
->keepalive
;
1317 stop_init_backoff
= 1;
1319 af_conf
->lhello_holdtime
= xa
->lhello_holdtime
;
1320 af_conf
->lhello_interval
= xa
->lhello_interval
;
1321 af_conf
->thello_holdtime
= xa
->thello_holdtime
;
1322 af_conf
->thello_interval
= xa
->thello_interval
;
1325 if ((af_conf
->flags
& F_LDPD_AF_THELLO_ACCEPT
) &&
1326 !(xa
->flags
& F_LDPD_AF_THELLO_ACCEPT
))
1327 remove_dynamic_tnbrs
= 1;
1328 if ((af_conf
->flags
& F_LDPD_AF_NO_GTSM
) !=
1329 (xa
->flags
& F_LDPD_AF_NO_GTSM
)) {
1331 /* need to set/unset IPV6_MINHOPCOUNT */
1334 /* for LDPv4 just resetting the neighbors is enough */
1335 reset_nbrs_ipv4
= 1;
1337 if ((af_conf
->flags
& F_LDPD_AF_EXPNULL
) !=
1338 (xa
->flags
& F_LDPD_AF_EXPNULL
))
1339 change_egress_label
= 1;
1340 af_conf
->flags
= xa
->flags
;
1342 /* update the transport address */
1343 if (ldp_addrcmp(af
, &af_conf
->trans_addr
, &xa
->trans_addr
)) {
1344 af_conf
->trans_addr
= xa
->trans_addr
;
1349 if (strcmp(af_conf
->acl_label_advertise_to
,
1350 xa
->acl_label_advertise_to
) ||
1351 strcmp(af_conf
->acl_label_advertise_for
,
1352 xa
->acl_label_advertise_for
) ||
1353 strcmp(af_conf
->acl_label_accept_from
,
1354 xa
->acl_label_accept_from
) ||
1355 strcmp(af_conf
->acl_label_accept_for
,
1356 xa
->acl_label_accept_for
))
1358 if (strcmp(af_conf
->acl_thello_accept_from
, xa
->acl_thello_accept_from
))
1359 remove_dynamic_tnbrs
= 1;
1360 if (strcmp(af_conf
->acl_label_expnull_for
, xa
->acl_label_expnull_for
))
1361 change_egress_label
= 1;
1362 strlcpy(af_conf
->acl_thello_accept_from
, xa
->acl_thello_accept_from
,
1363 sizeof(af_conf
->acl_thello_accept_from
));
1364 strlcpy(af_conf
->acl_label_allocate_for
, xa
->acl_label_allocate_for
,
1365 sizeof(af_conf
->acl_label_allocate_for
));
1366 strlcpy(af_conf
->acl_label_advertise_to
, xa
->acl_label_advertise_to
,
1367 sizeof(af_conf
->acl_label_advertise_to
));
1368 strlcpy(af_conf
->acl_label_advertise_for
, xa
->acl_label_advertise_for
,
1369 sizeof(af_conf
->acl_label_advertise_for
));
1370 strlcpy(af_conf
->acl_label_accept_from
, xa
->acl_label_accept_from
,
1371 sizeof(af_conf
->acl_label_accept_from
));
1372 strlcpy(af_conf
->acl_label_accept_for
, xa
->acl_label_accept_for
,
1373 sizeof(af_conf
->acl_label_accept_for
));
1374 strlcpy(af_conf
->acl_label_expnull_for
, xa
->acl_label_expnull_for
,
1375 sizeof(af_conf
->acl_label_expnull_for
));
1377 /* apply the new configuration */
1378 switch (ldpd_process
) {
1379 case PROC_LDE_ENGINE
:
1380 if (change_egress_label
)
1381 lde_change_egress_label(af
);
1383 case PROC_LDP_ENGINE
:
1384 if (stop_init_backoff
)
1385 ldpe_stop_init_backoff(af
);
1386 if (remove_dynamic_tnbrs
)
1387 ldpe_remove_dynamic_tnbrs(af
);
1389 ldpe_reset_nbrs(AF_UNSPEC
);
1390 else if (reset_nbrs_ipv4
)
1391 ldpe_reset_nbrs(AF_INET
);
1394 if (update_sockets
&& iev_ldpe
)
1395 imsg_compose_event(iev_ldpe
, IMSG_CLOSE_SOCKETS
, af
,
1402 merge_ifaces(struct ldpd_conf
*conf
, struct ldpd_conf
*xconf
)
1404 struct iface
*iface
, *itmp
, *xi
;
1406 RB_FOREACH_SAFE(iface
, iface_head
, &conf
->iface_tree
, itmp
) {
1407 /* find deleted interfaces */
1408 if ((xi
= if_lookup_name(xconf
, iface
->name
)) == NULL
) {
1409 switch (ldpd_process
) {
1410 case PROC_LDP_ENGINE
:
1411 ldpe_if_exit(iface
);
1413 case PROC_LDE_ENGINE
:
1417 RB_REMOVE(iface_head
, &conf
->iface_tree
, iface
);
1421 RB_FOREACH_SAFE(xi
, iface_head
, &xconf
->iface_tree
, itmp
) {
1422 /* find new interfaces */
1423 if ((iface
= if_lookup_name(conf
, xi
->name
)) == NULL
) {
1425 RB_INSERT(iface_head
, &conf
->iface_tree
, iface
);
1427 switch (ldpd_process
) {
1428 case PROC_LDP_ENGINE
:
1429 ldpe_if_init(iface
);
1431 case PROC_LDE_ENGINE
:
1434 /* resend addresses to activate new interfaces */
1435 kif_redistribute(iface
->name
);
1441 /* update existing interfaces */
1442 merge_iface_af(&iface
->ipv4
, &xi
->ipv4
);
1443 merge_iface_af(&iface
->ipv6
, &xi
->ipv6
);
1448 merge_iface_af(struct iface_af
*ia
, struct iface_af
*xi
)
1450 if (ia
->enabled
!= xi
->enabled
) {
1451 ia
->enabled
= xi
->enabled
;
1452 if (ldpd_process
== PROC_LDP_ENGINE
)
1453 ldp_if_update(ia
->iface
, ia
->af
);
1455 ia
->hello_holdtime
= xi
->hello_holdtime
;
1456 ia
->hello_interval
= xi
->hello_interval
;
1460 merge_tnbrs(struct ldpd_conf
*conf
, struct ldpd_conf
*xconf
)
1462 struct tnbr
*tnbr
, *ttmp
, *xt
;
1464 RB_FOREACH_SAFE(tnbr
, tnbr_head
, &conf
->tnbr_tree
, ttmp
) {
1465 if (!(tnbr
->flags
& F_TNBR_CONFIGURED
))
1468 /* find deleted tnbrs */
1469 if ((xt
= tnbr_find(xconf
, tnbr
->af
, &tnbr
->addr
)) == NULL
) {
1470 switch (ldpd_process
) {
1471 case PROC_LDP_ENGINE
:
1472 tnbr
->flags
&= ~F_TNBR_CONFIGURED
;
1473 tnbr_check(conf
, tnbr
);
1475 case PROC_LDE_ENGINE
:
1477 RB_REMOVE(tnbr_head
, &conf
->tnbr_tree
, tnbr
);
1483 RB_FOREACH_SAFE(xt
, tnbr_head
, &xconf
->tnbr_tree
, ttmp
) {
1484 /* find new tnbrs */
1485 if ((tnbr
= tnbr_find(conf
, xt
->af
, &xt
->addr
)) == NULL
) {
1487 RB_INSERT(tnbr_head
, &conf
->tnbr_tree
, tnbr
);
1489 switch (ldpd_process
) {
1490 case PROC_LDP_ENGINE
:
1493 case PROC_LDE_ENGINE
:
1500 /* update existing tnbrs */
1501 if (!(tnbr
->flags
& F_TNBR_CONFIGURED
))
1502 tnbr
->flags
|= F_TNBR_CONFIGURED
;
1507 merge_nbrps(struct ldpd_conf
*conf
, struct ldpd_conf
*xconf
)
1509 struct nbr_params
*nbrp
, *ntmp
, *xn
;
1513 RB_FOREACH_SAFE(nbrp
, nbrp_head
, &conf
->nbrp_tree
, ntmp
) {
1514 /* find deleted nbrps */
1515 if ((xn
= nbr_params_find(xconf
, nbrp
->lsr_id
)) == NULL
) {
1516 switch (ldpd_process
) {
1517 case PROC_LDP_ENGINE
:
1518 nbr
= nbr_find_ldpid(nbrp
->lsr_id
.s_addr
);
1520 session_shutdown(nbr
, S_SHUTDOWN
, 0, 0);
1525 (ldp_af_global_get(&global
,
1526 nbr
->af
))->ldp_session_socket
,
1527 nbr
->af
, &nbr
->raddr
, NULL
);
1529 nbr
->auth
.method
= AUTH_NONE
;
1530 if (nbr_session_active_role(nbr
))
1531 nbr_establish_connection(nbr
);
1534 case PROC_LDE_ENGINE
:
1538 RB_REMOVE(nbrp_head
, &conf
->nbrp_tree
, nbrp
);
1542 RB_FOREACH_SAFE(xn
, nbrp_head
, &xconf
->nbrp_tree
, ntmp
) {
1543 /* find new nbrps */
1544 if ((nbrp
= nbr_params_find(conf
, xn
->lsr_id
)) == NULL
) {
1546 RB_INSERT(nbrp_head
, &conf
->nbrp_tree
, nbrp
);
1548 switch (ldpd_process
) {
1549 case PROC_LDP_ENGINE
:
1550 nbr
= nbr_find_ldpid(nbrp
->lsr_id
.s_addr
);
1552 session_shutdown(nbr
, S_SHUTDOWN
, 0, 0);
1553 nbr
->auth
.method
= nbrp
->auth
.method
;
1555 if (pfkey_establish(nbr
, nbrp
) == -1)
1556 fatalx("pfkey setup failed");
1559 (ldp_af_global_get(&global
,
1560 nbr
->af
))->ldp_session_socket
,
1561 nbr
->af
, &nbr
->raddr
,
1564 if (nbr_session_active_role(nbr
))
1565 nbr_establish_connection(nbr
);
1568 case PROC_LDE_ENGINE
:
1575 /* update existing nbrps */
1576 if (nbrp
->flags
!= xn
->flags
||
1577 nbrp
->keepalive
!= xn
->keepalive
||
1578 nbrp
->gtsm_enabled
!= xn
->gtsm_enabled
||
1579 nbrp
->gtsm_hops
!= xn
->gtsm_hops
||
1580 nbrp
->auth
.method
!= xn
->auth
.method
||
1581 strcmp(nbrp
->auth
.md5key
, xn
->auth
.md5key
) != 0)
1586 nbrp
->keepalive
= xn
->keepalive
;
1587 nbrp
->gtsm_enabled
= xn
->gtsm_enabled
;
1588 nbrp
->gtsm_hops
= xn
->gtsm_hops
;
1589 nbrp
->auth
.method
= xn
->auth
.method
;
1590 strlcpy(nbrp
->auth
.md5key
, xn
->auth
.md5key
,
1591 sizeof(nbrp
->auth
.md5key
));
1592 nbrp
->auth
.md5key_len
= xn
->auth
.md5key_len
;
1593 nbrp
->flags
= xn
->flags
;
1595 if (ldpd_process
== PROC_LDP_ENGINE
) {
1596 nbr
= nbr_find_ldpid(nbrp
->lsr_id
.s_addr
);
1597 if (nbr
&& nbrp_changed
) {
1598 session_shutdown(nbr
, S_SHUTDOWN
, 0, 0);
1601 nbr
->auth
.method
= nbrp
->auth
.method
;
1602 if (pfkey_establish(nbr
, nbrp
) == -1)
1603 fatalx("pfkey setup failed");
1605 nbr
->auth
.method
= nbrp
->auth
.method
;
1606 sock_set_md5sig((ldp_af_global_get(&global
,
1607 nbr
->af
))->ldp_session_socket
, nbr
->af
,
1608 &nbr
->raddr
, nbrp
->auth
.md5key
);
1610 if (nbr_session_active_role(nbr
))
1611 nbr_establish_connection(nbr
);
1618 merge_l2vpns(struct ldpd_conf
*conf
, struct ldpd_conf
*xconf
)
1620 struct l2vpn
*l2vpn
, *ltmp
, *xl
;
1622 RB_FOREACH_SAFE(l2vpn
, l2vpn_head
, &conf
->l2vpn_tree
, ltmp
) {
1623 /* find deleted l2vpns */
1624 if ((xl
= l2vpn_find(xconf
, l2vpn
->name
)) == NULL
) {
1625 switch (ldpd_process
) {
1626 case PROC_LDE_ENGINE
:
1629 case PROC_LDP_ENGINE
:
1630 ldpe_l2vpn_exit(l2vpn
);
1635 RB_REMOVE(l2vpn_head
, &conf
->l2vpn_tree
, l2vpn
);
1639 RB_FOREACH_SAFE(xl
, l2vpn_head
, &xconf
->l2vpn_tree
, ltmp
) {
1640 /* find new l2vpns */
1641 if ((l2vpn
= l2vpn_find(conf
, xl
->name
)) == NULL
) {
1643 RB_INSERT(l2vpn_head
, &conf
->l2vpn_tree
, l2vpn
);
1644 RB_INIT(l2vpn_if_head
, &l2vpn
->if_tree
);
1645 RB_INIT(l2vpn_pw_head
, &l2vpn
->pw_tree
);
1646 RB_INIT(l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
);
1648 switch (ldpd_process
) {
1649 case PROC_LDE_ENGINE
:
1652 case PROC_LDP_ENGINE
:
1653 ldpe_l2vpn_init(l2vpn
);
1660 /* update existing l2vpns */
1661 merge_l2vpn(conf
, l2vpn
, xl
);
1666 merge_l2vpn(struct ldpd_conf
*xconf
, struct l2vpn
*l2vpn
, struct l2vpn
*xl
)
1668 struct l2vpn_if
*lif
, *ftmp
, *xf
;
1669 struct l2vpn_pw
*pw
, *ptmp
, *xp
;
1671 int reset_nbr
, reinstall_pwfec
, reinstall_tnbr
;
1672 int previous_pw_type
, previous_mtu
;
1674 previous_pw_type
= l2vpn
->pw_type
;
1675 previous_mtu
= l2vpn
->mtu
;
1677 /* merge intefaces */
1678 RB_FOREACH_SAFE(lif
, l2vpn_if_head
, &l2vpn
->if_tree
, ftmp
) {
1679 /* find deleted interfaces */
1680 if ((xf
= l2vpn_if_find(xl
, lif
->ifname
)) == NULL
) {
1681 RB_REMOVE(l2vpn_if_head
, &l2vpn
->if_tree
, lif
);
1685 RB_FOREACH_SAFE(xf
, l2vpn_if_head
, &xl
->if_tree
, ftmp
) {
1686 /* find new interfaces */
1687 if ((lif
= l2vpn_if_find(l2vpn
, xf
->ifname
)) == NULL
) {
1689 RB_INSERT(l2vpn_if_head
, &l2vpn
->if_tree
, lif
);
1692 switch (ldpd_process
) {
1693 case PROC_LDP_ENGINE
:
1694 case PROC_LDE_ENGINE
:
1697 kif_redistribute(lif
->ifname
);
1703 /* merge active pseudowires */
1704 RB_FOREACH_SAFE(pw
, l2vpn_pw_head
, &l2vpn
->pw_tree
, ptmp
) {
1705 /* find deleted active pseudowires */
1706 if ((xp
= l2vpn_pw_find_active(xl
, pw
->ifname
)) == NULL
) {
1707 switch (ldpd_process
) {
1708 case PROC_LDE_ENGINE
:
1711 case PROC_LDP_ENGINE
:
1712 ldpe_l2vpn_pw_exit(pw
);
1718 RB_REMOVE(l2vpn_pw_head
, &l2vpn
->pw_tree
, pw
);
1722 RB_FOREACH_SAFE(xp
, l2vpn_pw_head
, &xl
->pw_tree
, ptmp
) {
1723 /* find new active pseudowires */
1724 if ((pw
= l2vpn_pw_find_active(l2vpn
, xp
->ifname
)) == NULL
) {
1726 RB_INSERT(l2vpn_pw_head
, &l2vpn
->pw_tree
, pw
);
1729 switch (ldpd_process
) {
1730 case PROC_LDE_ENGINE
:
1733 case PROC_LDP_ENGINE
:
1734 ldpe_l2vpn_pw_init(pw
);
1737 kif_redistribute(pw
->ifname
);
1743 /* update existing active pseudowire */
1744 if (pw
->af
!= xp
->af
||
1745 ldp_addrcmp(pw
->af
, &pw
->addr
, &xp
->addr
))
1750 /* changes that require a session restart */
1751 if ((pw
->flags
& (F_PW_STATUSTLV_CONF
|F_PW_CWORD_CONF
)) !=
1752 (xp
->flags
& (F_PW_STATUSTLV_CONF
|F_PW_CWORD_CONF
)))
1757 if (l2vpn
->pw_type
!= xl
->pw_type
|| l2vpn
->mtu
!= xl
->mtu
||
1758 pw
->pwid
!= xp
->pwid
|| reinstall_tnbr
|| reset_nbr
||
1759 pw
->lsr_id
.s_addr
!= xp
->lsr_id
.s_addr
)
1760 reinstall_pwfec
= 1;
1762 reinstall_pwfec
= 0;
1764 if (ldpd_process
== PROC_LDP_ENGINE
) {
1766 ldpe_l2vpn_pw_exit(pw
);
1768 nbr
= nbr_find_ldpid(pw
->lsr_id
.s_addr
);
1769 if (nbr
&& nbr
->state
== NBR_STA_OPER
)
1770 session_shutdown(nbr
, S_SHUTDOWN
, 0, 0);
1773 if (ldpd_process
== PROC_LDE_ENGINE
&& reinstall_pwfec
)
1775 pw
->lsr_id
= xp
->lsr_id
;
1777 pw
->addr
= xp
->addr
;
1778 pw
->pwid
= xp
->pwid
;
1779 strlcpy(pw
->ifname
, xp
->ifname
, sizeof(pw
->ifname
));
1780 pw
->ifindex
= xp
->ifindex
;
1781 if (xp
->flags
& F_PW_CWORD_CONF
)
1782 pw
->flags
|= F_PW_CWORD_CONF
;
1784 pw
->flags
&= ~F_PW_CWORD_CONF
;
1785 if (xp
->flags
& F_PW_STATUSTLV_CONF
)
1786 pw
->flags
|= F_PW_STATUSTLV_CONF
;
1788 pw
->flags
&= ~F_PW_STATUSTLV_CONF
;
1789 if (xp
->flags
& F_PW_STATIC_NBR_ADDR
)
1790 pw
->flags
|= F_PW_STATIC_NBR_ADDR
;
1792 pw
->flags
&= ~F_PW_STATIC_NBR_ADDR
;
1793 if (ldpd_process
== PROC_LDP_ENGINE
&& reinstall_tnbr
)
1794 ldpe_l2vpn_pw_init(pw
);
1795 if (ldpd_process
== PROC_LDE_ENGINE
&& reinstall_pwfec
) {
1796 l2vpn
->pw_type
= xl
->pw_type
;
1797 l2vpn
->mtu
= xl
->mtu
;
1799 l2vpn
->pw_type
= previous_pw_type
;
1800 l2vpn
->mtu
= previous_mtu
;
1804 /* merge inactive pseudowires */
1805 RB_FOREACH_SAFE(pw
, l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
, ptmp
) {
1806 /* find deleted inactive pseudowires */
1807 if ((xp
= l2vpn_pw_find_inactive(xl
, pw
->ifname
)) == NULL
) {
1808 RB_REMOVE(l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
, pw
);
1812 RB_FOREACH_SAFE(xp
, l2vpn_pw_head
, &xl
->pw_inactive_tree
, ptmp
) {
1813 /* find new inactive pseudowires */
1814 if ((pw
= l2vpn_pw_find_inactive(l2vpn
, xp
->ifname
)) == NULL
) {
1816 RB_INSERT(l2vpn_pw_head
, &l2vpn
->pw_inactive_tree
, pw
);
1819 switch (ldpd_process
) {
1820 case PROC_LDE_ENGINE
:
1821 case PROC_LDP_ENGINE
:
1824 kif_redistribute(pw
->ifname
);
1830 /* update existing inactive pseudowire */
1831 pw
->lsr_id
.s_addr
= xp
->lsr_id
.s_addr
;
1833 pw
->addr
= xp
->addr
;
1834 pw
->pwid
= xp
->pwid
;
1835 strlcpy(pw
->ifname
, xp
->ifname
, sizeof(pw
->ifname
));
1836 pw
->ifindex
= xp
->ifindex
;
1837 pw
->flags
= xp
->flags
;
1840 l2vpn
->pw_type
= xl
->pw_type
;
1841 l2vpn
->mtu
= xl
->mtu
;
1842 strlcpy(l2vpn
->br_ifname
, xl
->br_ifname
, sizeof(l2vpn
->br_ifname
));
1843 l2vpn
->br_ifindex
= xl
->br_ifindex
;
1847 config_new_empty(void)
1849 struct ldpd_conf
*xconf
;
1851 xconf
= calloc(1, sizeof(*xconf
));
1855 RB_INIT(iface_head
, &xconf
->iface_tree
);
1856 RB_INIT(tnbr_head
, &xconf
->tnbr_tree
);
1857 RB_INIT(nbrp_head
, &xconf
->nbrp_tree
);
1858 RB_INIT(l2vpn_head
, &xconf
->l2vpn_tree
);
1860 /* set default values */
1861 ldp_config_reset(xconf
);
1867 config_clear(struct ldpd_conf
*conf
)
1869 struct ldpd_conf
*xconf
;
1872 * Merge current config with an empty config, this will deactivate
1873 * and deallocate all the interfaces, pseudowires and so on. Before
1874 * merging, copy the router-id and other variables to avoid some
1875 * unnecessary operations, like trying to reset the neighborships.
1877 xconf
= config_new_empty();
1878 xconf
->ipv4
= conf
->ipv4
;
1879 xconf
->ipv6
= conf
->ipv6
;
1880 xconf
->rtr_id
= conf
->rtr_id
;
1881 xconf
->trans_pref
= conf
->trans_pref
;
1882 xconf
->flags
= conf
->flags
;
1883 merge_config(conf
, xconf
);