/* $OpenBSD: ldpd.c,v 1.27 2015/12/05 13:11:48 claudio Exp $ */ /* * Copyright (c) 2005 Claudio Jeker * Copyright (c) 2004, 2008 Esben Norby * Copyright (c) 2003, 2004 Henning Brauer * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "ldpd.h" #include "ldp.h" #include "ldpe.h" #include "control.h" #include "log.h" #include "lde.h" void main_sig_handler(int, short, void *); __dead void usage(void); void ldpd_shutdown(void); int check_child(pid_t, const char *); void main_dispatch_ldpe(int, short, void *); void main_dispatch_lde(int, short, void *); int ldp_reload(void); int ldp_sendboth(enum imsg_type, void *, u_int16_t); void merge_l2vpns(struct ldpd_conf *, struct l2vpn *, struct l2vpn *); int pipe_parent2ldpe[2]; int pipe_parent2lde[2]; int pipe_ldpe2lde[2]; struct ldpd_conf *ldpd_conf = NULL; struct imsgev *iev_ldpe; struct imsgev *iev_lde; char *conffile; pid_t ldpe_pid = 0; pid_t lde_pid = 0; /* ARGSUSED */ void main_sig_handler(int sig, short event, void *arg) { /* * signal handler rules don't apply, libevent decouples for us */ int die = 0; switch (sig) { case SIGTERM: case SIGINT: die = 1; /* FALLTHROUGH */ case SIGCHLD: if (check_child(ldpe_pid, "ldp engine")) { ldpe_pid = 0; die = 1; } if (check_child(lde_pid, "label decision engine")) { lde_pid = 0; die = 1; } if (die) ldpd_shutdown(); break; case SIGHUP: if (ldp_reload() == -1) log_warnx("configuration reload failed"); else log_debug("configuration reloaded"); break; default: fatalx("unexpected signal"); /* NOTREACHED */ } } __dead void usage(void) { extern char *__progname; fprintf(stderr, "usage: %s [-dnv] [-D macro=value] [-f file]\n", __progname); exit(1); } int main(int argc, char *argv[]) { struct event ev_sigint, ev_sigterm, ev_sigchld, ev_sighup; int ch, opts = 0; int debug = 0; conffile = CONF_FILE; ldpd_process = PROC_MAIN; log_init(1); /* log to stderr until daemonized */ log_verbose(1); while ((ch = getopt(argc, argv, "dD:f:nv")) != -1) { switch (ch) { case 'd': debug = 1; break; case 'D': if (cmdline_symset(optarg) < 0) log_warnx("could not parse macro definition %s", optarg); break; case 'f': conffile = optarg; break; case 'n': opts |= LDPD_OPT_NOACTION; break; case 'v': if (opts & LDPD_OPT_VERBOSE) opts |= LDPD_OPT_VERBOSE2; opts |= LDPD_OPT_VERBOSE; break; default: usage(); /* NOTREACHED */ } } /* fetch interfaces early */ kif_init(); /* parse config file */ if ((ldpd_conf = parse_config(conffile, opts)) == NULL ) exit(1); if (ldpd_conf->opts & LDPD_OPT_NOACTION) { if (ldpd_conf->opts & LDPD_OPT_VERBOSE) print_config(ldpd_conf); else fprintf(stderr, "configuration OK\n"); exit(0); } /* check for root privileges */ if (geteuid()) errx(1, "need root privileges"); /* check for ldpd user */ if (getpwnam(LDPD_USER) == NULL) errx(1, "unknown user %s", LDPD_USER); log_init(debug); log_verbose(opts & (LDPD_OPT_VERBOSE | LDPD_OPT_VERBOSE2)); if (!debug) daemon(1, 0); log_info("startup"); if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK | SOCK_CLOEXEC, PF_UNSPEC, pipe_parent2ldpe) == -1) fatal("socketpair"); if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK | SOCK_CLOEXEC, PF_UNSPEC, pipe_parent2lde) == -1) fatal("socketpair"); if (socketpair(AF_UNIX, SOCK_STREAM |SOCK_NONBLOCK | SOCK_CLOEXEC, PF_UNSPEC, pipe_ldpe2lde) == -1) fatal("socketpair"); /* start children */ lde_pid = lde(ldpd_conf, pipe_parent2lde, pipe_ldpe2lde, pipe_parent2ldpe); ldpe_pid = ldpe(ldpd_conf, pipe_parent2ldpe, pipe_ldpe2lde, pipe_parent2lde); /* show who we are */ setproctitle("parent"); event_init(); /* setup signal handler */ signal_set(&ev_sigint, SIGINT, main_sig_handler, NULL); signal_set(&ev_sigterm, SIGTERM, main_sig_handler, NULL); signal_set(&ev_sigchld, SIGCHLD, main_sig_handler, NULL); signal_set(&ev_sighup, SIGHUP, main_sig_handler, NULL); signal_add(&ev_sigint, NULL); signal_add(&ev_sigterm, NULL); signal_add(&ev_sigchld, NULL); signal_add(&ev_sighup, NULL); signal(SIGPIPE, SIG_IGN); /* setup pipes to children */ close(pipe_parent2ldpe[1]); close(pipe_parent2lde[1]); close(pipe_ldpe2lde[0]); close(pipe_ldpe2lde[1]); if ((iev_ldpe = malloc(sizeof(struct imsgev))) == NULL || (iev_lde = malloc(sizeof(struct imsgev))) == NULL) fatal(NULL); imsg_init(&iev_ldpe->ibuf, pipe_parent2ldpe[0]); iev_ldpe->handler = main_dispatch_ldpe; imsg_init(&iev_lde->ibuf, pipe_parent2lde[0]); iev_lde->handler = main_dispatch_lde; /* setup event handler */ iev_ldpe->events = EV_READ; event_set(&iev_ldpe->ev, iev_ldpe->ibuf.fd, iev_ldpe->events, iev_ldpe->handler, iev_ldpe); event_add(&iev_ldpe->ev, NULL); iev_lde->events = EV_READ; event_set(&iev_lde->ev, iev_lde->ibuf.fd, iev_lde->events, iev_lde->handler, iev_lde); event_add(&iev_lde->ev, NULL); /* notify ldpe about existing interfaces and addresses */ kif_redistribute(); if (kr_init(!(ldpd_conf->flags & LDPD_FLAG_NO_FIB_UPDATE)) == -1) fatalx("kr_init failed"); /* remove unneded stuff from config */ /* ... */ event_dispatch(); ldpd_shutdown(); /* NOTREACHED */ return (0); } void ldpd_shutdown(void) { pid_t pid; if (ldpe_pid) kill(ldpe_pid, SIGTERM); if (lde_pid) kill(lde_pid, SIGTERM); kr_shutdown(); do { if ((pid = wait(NULL)) == -1 && errno != EINTR && errno != ECHILD) fatal("wait"); } while (pid != -1 || (pid == -1 && errno == EINTR)); config_clear(ldpd_conf); msgbuf_clear(&iev_ldpe->ibuf.w); free(iev_ldpe); msgbuf_clear(&iev_lde->ibuf.w); free(iev_lde); log_info("terminating"); exit(0); } int check_child(pid_t pid, const char *pname) { int status; if (waitpid(pid, &status, WNOHANG) > 0) { if (WIFEXITED(status)) { log_warnx("lost child: %s exited", pname); return (1); } if (WIFSIGNALED(status)) { log_warnx("lost child: %s terminated; signal %d", pname, WTERMSIG(status)); return (1); } } return (0); } /* imsg handling */ /* ARGSUSED */ void main_dispatch_ldpe(int fd, short event, void *bula) { struct imsgev *iev = bula; struct imsgbuf *ibuf = &iev->ibuf; struct imsg imsg; ssize_t n; int shut = 0, verbose; if (event & EV_READ) { if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN) fatal("imsg_read error"); if (n == 0) /* connection closed */ shut = 1; } if (event & EV_WRITE) { if ((n = msgbuf_write(&ibuf->w)) == -1 && errno != EAGAIN) fatal("msgbuf_write"); if (n == 0) shut = 1; } for (;;) { if ((n = imsg_get(ibuf, &imsg)) == -1) fatal("imsg_get"); if (n == 0) break; switch (imsg.hdr.type) { case IMSG_CTL_RELOAD: if (ldp_reload() == -1) log_warnx("configuration reload failed"); else log_debug("configuration reloaded"); break; case IMSG_CTL_FIB_COUPLE: kr_fib_couple(); break; case IMSG_CTL_FIB_DECOUPLE: kr_fib_decouple(); break; case IMSG_CTL_KROUTE: case IMSG_CTL_KROUTE_ADDR: kr_show_route(&imsg); break; case IMSG_CTL_IFINFO: if (imsg.hdr.len == IMSG_HEADER_SIZE) kr_ifinfo(NULL, imsg.hdr.pid); else if (imsg.hdr.len == IMSG_HEADER_SIZE + IFNAMSIZ) kr_ifinfo(imsg.data, imsg.hdr.pid); else log_warnx("IFINFO request with wrong len"); break; case IMSG_CTL_LOG_VERBOSE: /* already checked by ldpe */ memcpy(&verbose, imsg.data, sizeof(verbose)); log_verbose(verbose); break; default: log_debug("main_dispatch_ldpe: error handling imsg %d", imsg.hdr.type); break; } imsg_free(&imsg); } if (!shut) imsg_event_add(iev); else { /* this pipe is dead, so remove the event handler */ event_del(&iev->ev); event_loopexit(NULL); } } /* ARGSUSED */ void main_dispatch_lde(int fd, short event, void *bula) { struct imsgev *iev = bula; struct imsgbuf *ibuf = &iev->ibuf; struct imsg imsg; ssize_t n; int shut = 0; struct kpw *kpw; if (event & EV_READ) { if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN) fatal("imsg_read error"); if (n == 0) /* connection closed */ shut = 1; } if (event & EV_WRITE) { if ((n = msgbuf_write(&ibuf->w)) == -1 && errno != EAGAIN) fatal("msgbuf_write"); if (n == 0) shut = 1; } for (;;) { if ((n = imsg_get(ibuf, &imsg)) == -1) fatal("imsg_get"); if (n == 0) break; switch (imsg.hdr.type) { case IMSG_KLABEL_CHANGE: if (imsg.hdr.len - IMSG_HEADER_SIZE != sizeof(struct kroute)) fatalx("invalid size of IMSG_KLABEL_CHANGE"); if (kr_change(imsg.data)) log_warn("main_dispatch_lde: error changing " "route"); break; case IMSG_KLABEL_DELETE: if (imsg.hdr.len - IMSG_HEADER_SIZE != sizeof(struct kroute)) fatalx("invalid size of IMSG_KLABEL_DELETE"); if (kr_delete(imsg.data)) log_warn("main_dispatch_lde: error deleting " "route"); break; case IMSG_KPWLABEL_CHANGE: if (imsg.hdr.len - IMSG_HEADER_SIZE != sizeof(struct kpw)) fatalx("invalid size of IMSG_KPWLABEL_CHANGE"); kpw = imsg.data; kmpw_set(kpw); break; case IMSG_KPWLABEL_DELETE: if (imsg.hdr.len - IMSG_HEADER_SIZE != sizeof(struct kpw)) fatalx("invalid size of IMSG_KPWLABEL_DELETE"); kpw = imsg.data; kmpw_unset(kpw); break; default: log_debug("main_dispatch_lde: error handling imsg %d", imsg.hdr.type); break; } imsg_free(&imsg); } if (!shut) imsg_event_add(iev); else { /* this pipe is dead, so remove the event handler */ event_del(&iev->ev); event_loopexit(NULL); } } void main_imsg_compose_ldpe(int type, pid_t pid, void *data, u_int16_t datalen) { if (iev_ldpe == NULL) return; imsg_compose_event(iev_ldpe, type, 0, pid, -1, data, datalen); } void main_imsg_compose_lde(int type, pid_t pid, void *data, u_int16_t datalen) { imsg_compose_event(iev_lde, type, 0, pid, -1, data, datalen); } void imsg_event_add(struct imsgev *iev) { iev->events = EV_READ; if (iev->ibuf.w.queued) iev->events |= EV_WRITE; event_del(&iev->ev); event_set(&iev->ev, iev->ibuf.fd, iev->events, iev->handler, iev); event_add(&iev->ev, NULL); } int imsg_compose_event(struct imsgev *iev, u_int16_t type, u_int32_t peerid, pid_t pid, int fd, void *data, u_int16_t datalen) { int ret; if ((ret = imsg_compose(&iev->ibuf, type, peerid, pid, fd, data, datalen)) != -1) imsg_event_add(iev); return (ret); } void evbuf_enqueue(struct evbuf *eb, struct ibuf *buf) { ibuf_close(&eb->wbuf, buf); evbuf_event_add(eb); } void evbuf_event_add(struct evbuf *eb) { if (eb->wbuf.queued) event_add(&eb->ev, NULL); } void evbuf_init(struct evbuf *eb, int fd, void (*handler)(int, short, void *), void *arg) { msgbuf_init(&eb->wbuf); eb->wbuf.fd = fd; event_set(&eb->ev, eb->wbuf.fd, EV_WRITE, handler, arg); } void evbuf_clear(struct evbuf *eb) { event_del(&eb->ev); msgbuf_clear(&eb->wbuf); eb->wbuf.fd = -1; } int ldp_reload(void) { struct iface *iface; struct tnbr *tnbr; struct nbr_params *nbrp; struct l2vpn *l2vpn; struct l2vpn_if *lif; struct l2vpn_pw *pw; struct ldpd_conf *xconf; if ((xconf = parse_config(conffile, ldpd_conf->opts)) == NULL) return (-1); if (ldp_sendboth(IMSG_RECONF_CONF, xconf, sizeof(*xconf)) == -1) return (-1); LIST_FOREACH(iface, &xconf->iface_list, entry) { if (ldp_sendboth(IMSG_RECONF_IFACE, iface, sizeof(*iface)) == -1) return (-1); } LIST_FOREACH(tnbr, &xconf->tnbr_list, entry) { if (ldp_sendboth(IMSG_RECONF_TNBR, tnbr, sizeof(*tnbr)) == -1) return (-1); } LIST_FOREACH(nbrp, &xconf->nbrp_list, entry) { if (ldp_sendboth(IMSG_RECONF_NBRP, nbrp, sizeof(*nbrp)) == -1) return (-1); } LIST_FOREACH(l2vpn, &xconf->l2vpn_list, entry) { if (ldp_sendboth(IMSG_RECONF_L2VPN, l2vpn, sizeof(*l2vpn)) == -1) return (-1); LIST_FOREACH(lif, &l2vpn->if_list, entry) { if (ldp_sendboth(IMSG_RECONF_L2VPN_IF, lif, sizeof(*lif)) == -1) return (-1); } LIST_FOREACH(pw, &l2vpn->pw_list, entry) { if (ldp_sendboth(IMSG_RECONF_L2VPN_PW, pw, sizeof(*pw)) == -1) return (-1); } } if (ldp_sendboth(IMSG_RECONF_END, NULL, 0) == -1) return (-1); merge_config(ldpd_conf, xconf); return (0); } int ldp_sendboth(enum imsg_type type, void *buf, u_int16_t len) { if (imsg_compose_event(iev_ldpe, type, 0, 0, -1, buf, len) == -1) return (-1); if (imsg_compose_event(iev_lde, type, 0, 0, -1, buf, len) == -1) return (-1); return (0); } void merge_config(struct ldpd_conf *conf, struct ldpd_conf *xconf) { struct iface *iface, *itmp, *xi; struct tnbr *tnbr, *ttmp, *xt; struct nbr_params *nbrp, *ntmp, *xn; struct l2vpn *l2vpn, *ltmp, *xl; struct nbr *nbr; /* change of rtr_id needs a restart */ conf->flags = xconf->flags; conf->keepalive = xconf->keepalive; conf->thello_holdtime = xconf->thello_holdtime; conf->thello_interval = xconf->thello_interval; /* merge interfaces */ LIST_FOREACH_SAFE(iface, &conf->iface_list, entry, itmp) { /* find deleted interfaces */ if ((xi = if_lookup(xconf, iface->ifindex)) == NULL) { LIST_REMOVE(iface, entry); if (ldpd_process == PROC_LDP_ENGINE) if_del(iface); else free(iface); } } LIST_FOREACH_SAFE(xi, &xconf->iface_list, entry, itmp) { /* find new interfaces */ if ((iface = if_lookup(conf, xi->ifindex)) == NULL) { LIST_REMOVE(xi, entry); LIST_INSERT_HEAD(&conf->iface_list, xi, entry); if (ldpd_process == PROC_LDP_ENGINE) if_init(conf, xi); continue; } /* update existing interfaces */ iface->hello_holdtime = xi->hello_holdtime; iface->hello_interval = xi->hello_interval; } /* resend addresses to activate new interfaces */ if (ldpd_process == PROC_MAIN) kif_redistribute(); /* merge tnbrs */ LIST_FOREACH_SAFE(tnbr, &conf->tnbr_list, entry, ttmp) { if (!(tnbr->flags & F_TNBR_CONFIGURED)) continue; /* find deleted tnbrs */ if ((xt = tnbr_find(xconf, tnbr->addr)) == NULL) { if (ldpd_process == PROC_LDP_ENGINE) { tnbr->flags &= ~F_TNBR_CONFIGURED; tnbr_check(tnbr); } else { LIST_REMOVE(tnbr, entry); free(tnbr); } } } LIST_FOREACH_SAFE(xt, &xconf->tnbr_list, entry, ttmp) { /* find new tnbrs */ if ((tnbr = tnbr_find(conf, xt->addr)) == NULL) { LIST_REMOVE(xt, entry); LIST_INSERT_HEAD(&conf->tnbr_list, xt, entry); if (ldpd_process == PROC_LDP_ENGINE) tnbr_init(conf, xt); continue; } /* update existing tnbrs */ if (!(tnbr->flags & F_TNBR_CONFIGURED)) tnbr->flags |= F_TNBR_CONFIGURED; tnbr->hello_holdtime = xt->hello_holdtime; tnbr->hello_interval = xt->hello_interval; } /* merge neighbor parameters */ LIST_FOREACH_SAFE(nbrp, &conf->nbrp_list, entry, ntmp) { /* find deleted nbrps */ if ((xn = nbr_params_find(xconf, nbrp->addr)) == NULL) { if (ldpd_process == PROC_LDP_ENGINE) { nbr = nbr_find_ldpid(nbrp->addr.s_addr); if (nbr) { if (nbr->state == NBR_STA_OPER) session_shutdown(nbr, S_SHUTDOWN, 0, 0); pfkey_remove(nbr); } } LIST_REMOVE(nbrp, entry); free(nbrp); } } LIST_FOREACH_SAFE(xn, &xconf->nbrp_list, entry, ntmp) { /* find new nbrps */ if ((nbrp = nbr_params_find(conf, xn->addr)) == NULL) { LIST_REMOVE(xn, entry); LIST_INSERT_HEAD(&conf->nbrp_list, xn, entry); if (ldpd_process == PROC_LDP_ENGINE) { nbr = nbr_find_ldpid(xn->addr.s_addr); if (nbr) { if (nbr->state == NBR_STA_OPER) session_shutdown(nbr, S_SHUTDOWN, 0, 0); pfkey_remove(nbr); if (pfkey_establish(nbr, xn) == -1) fatalx("pfkey setup failed"); } } continue; } /* update existing nbrps */ nbrp->auth.method = xn->auth.method; strlcpy(nbrp->auth.md5key, xn->auth.md5key, sizeof(nbrp->auth.md5key)); nbrp->auth.md5key_len = xn->auth.md5key_len; if (ldpd_process == PROC_LDP_ENGINE) { nbr = nbr_find_ldpid(nbrp->addr.s_addr); if (nbr && (nbr->auth.method != nbrp->auth.method || strcmp(nbr->auth.md5key, nbrp->auth.md5key) != 0)) { if (nbr->state == NBR_STA_OPER) session_shutdown(nbr, S_SHUTDOWN, 0, 0); pfkey_remove(nbr); if (pfkey_establish(nbr, nbrp) == -1) fatalx("pfkey setup failed"); } } } /* merge l2vpns */ LIST_FOREACH_SAFE(l2vpn, &conf->l2vpn_list, entry, ltmp) { /* find deleted l2vpns */ if ((xl = l2vpn_find(xconf, l2vpn->name)) == NULL) { LIST_REMOVE(l2vpn, entry); switch (ldpd_process) { case PROC_LDE_ENGINE: l2vpn_del(l2vpn); break; case PROC_LDP_ENGINE: ldpe_l2vpn_exit(l2vpn); free(l2vpn); break; case PROC_MAIN: free(l2vpn); break; } } } LIST_FOREACH_SAFE(xl, &xconf->l2vpn_list, entry, ltmp) { /* find new l2vpns */ if ((l2vpn = l2vpn_find(conf, xl->name)) == NULL) { LIST_REMOVE(xl, entry); LIST_INSERT_HEAD(&conf->l2vpn_list, xl, entry); switch (ldpd_process) { case PROC_LDE_ENGINE: l2vpn_init(xl); break; case PROC_LDP_ENGINE: ldpe_l2vpn_init(xl); break; case PROC_MAIN: break; } continue; } /* update existing l2vpns */ merge_l2vpns(conf, l2vpn, xl); } free(xconf); } void merge_l2vpns(struct ldpd_conf *xconf, struct l2vpn *l2vpn, struct l2vpn *xl) { struct l2vpn_if *lif, *ftmp, *xf; struct l2vpn_pw *pw, *ptmp, *xp; /* merge intefaces */ LIST_FOREACH_SAFE(lif, &l2vpn->if_list, entry, ftmp) { /* find deleted interfaces */ if ((xf = l2vpn_if_find(xl, lif->ifindex)) == NULL) { LIST_REMOVE(lif, entry); free(lif); } } LIST_FOREACH_SAFE(xf, &xl->if_list, entry, ftmp) { /* find new interfaces */ if ((lif = l2vpn_if_find(l2vpn, xf->ifindex)) == NULL) { LIST_REMOVE(xf, entry); LIST_INSERT_HEAD(&l2vpn->if_list, xf, entry); lif->l2vpn = l2vpn; continue; } /* update existing interfaces */ lif->l2vpn = l2vpn; } /* merge pseudowires */ LIST_FOREACH_SAFE(pw, &l2vpn->pw_list, entry, ptmp) { /* find deleted pseudowires */ if ((xp = l2vpn_pw_find(xl, pw->ifindex)) == NULL) { LIST_REMOVE(pw, entry); switch (ldpd_process) { case PROC_LDE_ENGINE: l2vpn_pw_del(pw); break; case PROC_LDP_ENGINE: ldpe_l2vpn_pw_exit(pw); free(pw); break; case PROC_MAIN: free(pw); break; } } } LIST_FOREACH_SAFE(xp, &xl->pw_list, entry, ptmp) { /* find new pseudowires */ if ((pw = l2vpn_pw_find(l2vpn, xp->ifindex)) == NULL) { LIST_REMOVE(xp, entry); LIST_INSERT_HEAD(&l2vpn->pw_list, xp, entry); switch (ldpd_process) { case PROC_LDE_ENGINE: l2vpn_pw_init(xp); break; case PROC_LDP_ENGINE: ldpe_l2vpn_pw_init(xp); break; case PROC_MAIN: break; } continue; } /* changes that require a full reset of the pseudowire */ if (l2vpn->pw_type != xl->pw_type || l2vpn->mtu != xl->mtu || pw->addr.s_addr != xp->addr.s_addr || pw->pwid != xp->pwid || ((pw->flags & (F_PW_STATUSTLV_CONF|F_PW_CONTROLWORD_CONF)) != (xp->flags & (F_PW_STATUSTLV_CONF|F_PW_CONTROLWORD_CONF)))) { LIST_REMOVE(pw, entry); LIST_REMOVE(xp, entry); LIST_INSERT_HEAD(&l2vpn->pw_list, xp, entry); switch (ldpd_process) { case PROC_LDE_ENGINE: l2vpn_pw_del(pw); l2vpn_pw_init(xp); break; case PROC_LDP_ENGINE: if (pw->addr.s_addr != xp->addr.s_addr) { ldpe_l2vpn_pw_exit(pw); ldpe_l2vpn_pw_init(xp); } free(pw); break; case PROC_MAIN: free(pw); break; } } /* update existing pseudowires */ pw->l2vpn = xp->l2vpn; } l2vpn->mtu = xl->mtu; l2vpn->br_ifindex = xl->br_ifindex; } void config_clear(struct ldpd_conf *conf) { struct ldpd_conf *xconf; /* merge current config with an empty config */ xconf = malloc(sizeof(*xconf)); memcpy(xconf, conf, sizeof(*xconf)); LIST_INIT(&xconf->iface_list); LIST_INIT(&xconf->tnbr_list); LIST_INIT(&xconf->nbrp_list); LIST_INIT(&xconf->l2vpn_list); merge_config(conf, xconf); free(conf); }