summaryrefslogtreecommitdiffstats
path: root/src/bin/keactrl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:15:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:15:43 +0000
commitf5f56e1a1c4d9e9496fcb9d81131066a964ccd23 (patch)
tree49e44c6f87febed37efb953ab5485aa49f6481a7 /src/bin/keactrl
parentInitial commit. (diff)
downloadisc-kea-upstream.tar.xz
isc-kea-upstream.zip
Adding upstream version 2.4.1.upstream/2.4.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/bin/keactrl')
-rw-r--r--src/bin/keactrl/Makefile.am74
-rw-r--r--src/bin/keactrl/Makefile.in867
-rw-r--r--src/bin/keactrl/kea-ctrl-agent.conf.pre105
-rw-r--r--src/bin/keactrl/kea-dhcp-ddns.conf.pre76
-rw-r--r--src/bin/keactrl/kea-dhcp4.conf.pre468
-rw-r--r--src/bin/keactrl/kea-dhcp6.conf.pre427
-rw-r--r--src/bin/keactrl/kea-netconf.conf.pre101
-rw-r--r--src/bin/keactrl/keactrl.conf.in46
-rw-r--r--src/bin/keactrl/keactrl.in599
-rw-r--r--src/bin/keactrl/tests/Makefile.am19
-rw-r--r--src/bin/keactrl/tests/Makefile.in865
-rw-r--r--src/bin/keactrl/tests/keactrl_tests.sh.in1568
12 files changed, 5215 insertions, 0 deletions
diff --git a/src/bin/keactrl/Makefile.am b/src/bin/keactrl/Makefile.am
new file mode 100644
index 0000000..296445e
--- /dev/null
+++ b/src/bin/keactrl/Makefile.am
@@ -0,0 +1,74 @@
+SUBDIRS = . tests
+
+# Install keactrl in sbin and the keactrl.conf required by the keactrl
+# in etc. keactrl will look for its configuration file in the etc folder.
+sbin_SCRIPTS = keactrl
+KEA_CONFIGFILES = kea-dhcp4.conf
+KEA_CONFIGFILES += kea-dhcp6.conf
+KEA_CONFIGFILES += kea-dhcp-ddns.conf
+KEA_CONFIGFILES += kea-ctrl-agent.conf
+
+if HAVE_NETCONF
+KEA_CONFIGFILES += kea-netconf.conf
+endif
+
+CONFIGFILES = keactrl.conf $(KEA_CONFIGFILES)
+
+DISTCLEANFILES = keactrl keactrl.conf
+CLEANFILES = $(KEA_CONFIGFILES)
+EXTRA_DIST = keactrl.in
+EXTRA_DIST += keactrl.conf.in
+EXTRA_DIST += kea-dhcp4.conf.pre
+EXTRA_DIST += kea-dhcp6.conf.pre
+EXTRA_DIST += kea-dhcp-ddns.conf.pre
+EXTRA_DIST += kea-ctrl-agent.conf.pre
+EXTRA_DIST += kea-netconf.conf.pre
+
+# *.conf files are not really sources used for building other targets, but we need
+# these files to be generated before make install is called.
+BUILT_SOURCES = $(KEA_CONFIGFILES)
+
+
+kea-dhcp4.conf: kea-dhcp4.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-dhcp4.conf.pre $@
+
+kea-dhcp6.conf: kea-dhcp6.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-dhcp6.conf.pre $@
+
+kea-dhcp-ddns.conf: kea-dhcp-ddns.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-dhcp-ddns.conf.pre $@
+
+kea-ctrl-agent.conf: kea-ctrl-agent.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-ctrl-agent.conf.pre $@
+
+kea-netconf.conf: kea-netconf.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-netconf.conf.pre $@
+
+if INSTALL_CONFIGURATIONS
+
+# Since Kea 1.3.0 release we have 4 different Kea configuration files
+# instead of one, i.e. kea-dhcp4.conf, kea-dhcp6.conf, kea-dhcp-ddns.conf
+# and kea-ctrl-agent.conf. To facilitate the use of these new files
+# the keactrl.conf has been updated in Kea 1.3.0 release. Therefore,
+# we install new version of thea keactrl.conf file unconditionally.
+# To preserve any user modifications to the old version of the file,
+# this old file is backed up as keactrl.conf.bak.
+install-data-local:
+ $(mkinstalldirs) $(DESTDIR)/@sysconfdir@/@PACKAGE@
+ for f in $(CONFIGFILES) ; do \
+ if test -f $(DESTDIR)$(sysconfdir)/@PACKAGE@/$$f && \
+ test $$f = "keactrl.conf"; then \
+ mv $(DESTDIR)$(sysconfdir)/@PACKAGE@/$$f \
+ $(DESTDIR)$(sysconfdir)/@PACKAGE@/$$f.bak; \
+ fi; \
+ if test ! -f $(DESTDIR)$(sysconfdir)/@PACKAGE@/$$f; then \
+ ${INSTALL_DATA} $$f $(DESTDIR)$(sysconfdir)/@PACKAGE@/; \
+ fi; \
+ done
+
+endif
diff --git a/src/bin/keactrl/Makefile.in b/src/bin/keactrl/Makefile.in
new file mode 100644
index 0000000..33a46cd
--- /dev/null
+++ b/src/bin/keactrl/Makefile.in
@@ -0,0 +1,867 @@
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+VPATH = @srcdir@
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
+ case $$MAKEFLAGS in \
+ *\\[\ \ ]*) \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
+pkgdatadir = $(datadir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkglibexecdir = $(libexecdir)/@PACKAGE@
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+@HAVE_NETCONF_TRUE@am__append_1 = kea-netconf.conf
+subdir = src/bin/keactrl
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/m4macros/ax_boost_for_kea.m4 \
+ $(top_srcdir)/m4macros/ax_cpp11.m4 \
+ $(top_srcdir)/m4macros/ax_cpp20.m4 \
+ $(top_srcdir)/m4macros/ax_crypto.m4 \
+ $(top_srcdir)/m4macros/ax_find_library.m4 \
+ $(top_srcdir)/m4macros/ax_gssapi.m4 \
+ $(top_srcdir)/m4macros/ax_gtest.m4 \
+ $(top_srcdir)/m4macros/ax_isc_rpath.m4 \
+ $(top_srcdir)/m4macros/ax_netconf.m4 \
+ $(top_srcdir)/m4macros/libtool.m4 \
+ $(top_srcdir)/m4macros/ltoptions.m4 \
+ $(top_srcdir)/m4macros/ltsugar.m4 \
+ $(top_srcdir)/m4macros/ltversion.m4 \
+ $(top_srcdir)/m4macros/lt~obsolete.m4 \
+ $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
+mkinstalldirs = $(install_sh) -d
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES = keactrl keactrl.conf
+CONFIG_CLEAN_VPATH_FILES =
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+ *) f=$$p;; \
+ esac;
+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
+am__install_max = 40
+am__nobase_strip_setup = \
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
+am__nobase_strip = \
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
+am__nobase_list = $(am__nobase_strip_setup); \
+ for p in $$list; do echo "$$p $$p"; done | \
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
+ if (++n[$$2] == $(am__install_max)) \
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
+ END { for (dir in files) print dir, files[dir] }'
+am__base_list = \
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+am__uninstall_files_from_dir = { \
+ test -z "$$files" \
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
+ $(am__cd) "$$dir" && rm -f $$files; }; \
+ }
+am__installdirs = "$(DESTDIR)$(sbindir)"
+SCRIPTS = $(sbin_SCRIPTS)
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
+SOURCES =
+DIST_SOURCES =
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
+ ctags-recursive dvi-recursive html-recursive info-recursive \
+ install-data-recursive install-dvi-recursive \
+ install-exec-recursive install-html-recursive \
+ install-info-recursive install-pdf-recursive \
+ install-ps-recursive install-recursive installcheck-recursive \
+ installdirs-recursive pdf-recursive ps-recursive \
+ tags-recursive uninstall-recursive
+am__can_run_installinfo = \
+ case $$AM_UPDATE_INFO_DIR in \
+ n|no|NO) false;; \
+ *) (install-info --version) >/dev/null 2>&1;; \
+ esac
+RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
+ distclean-recursive maintainer-clean-recursive
+am__recursive_targets = \
+ $(RECURSIVE_TARGETS) \
+ $(RECURSIVE_CLEAN_TARGETS) \
+ $(am__extra_recursive_targets)
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
+ distdir distdir-am
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
+ETAGS = etags
+CTAGS = ctags
+DIST_SUBDIRS = $(SUBDIRS)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/keactrl.conf.in \
+ $(srcdir)/keactrl.in
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+am__relativize = \
+ dir0=`pwd`; \
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
+ sed_rest='s,^[^/]*/*,,'; \
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
+ sed_butlast='s,/*[^/]*$$,,'; \
+ while test -n "$$dir1"; do \
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
+ if test "$$first" != "."; then \
+ if test "$$first" = ".."; then \
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
+ else \
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
+ if test "$$first2" = "$$first"; then \
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
+ else \
+ dir2="../$$dir2"; \
+ fi; \
+ dir0="$$dir0"/"$$first"; \
+ fi; \
+ fi; \
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
+ done; \
+ reldir="$$dir2"
+ACLOCAL = @ACLOCAL@
+AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+AR = @AR@
+ASCIIDOC = @ASCIIDOC@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+BOOST_INCLUDES = @BOOST_INCLUDES@
+BOOST_LIBS = @BOOST_LIBS@
+BOTAN_TOOL = @BOTAN_TOOL@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CONTRIB_DIR = @CONTRIB_DIR@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CRYPTO_CFLAGS = @CRYPTO_CFLAGS@
+CRYPTO_INCLUDES = @CRYPTO_INCLUDES@
+CRYPTO_LDFLAGS = @CRYPTO_LDFLAGS@
+CRYPTO_LIBS = @CRYPTO_LIBS@
+CRYPTO_PACKAGE = @CRYPTO_PACKAGE@
+CRYPTO_RPATH = @CRYPTO_RPATH@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+DISTCHECK_BOOST_CONFIGURE_FLAG = @DISTCHECK_BOOST_CONFIGURE_FLAG@
+DISTCHECK_CONTRIB_CONFIGURE_FLAG = @DISTCHECK_CONTRIB_CONFIGURE_FLAG@
+DISTCHECK_CRYPTO_CONFIGURE_FLAG = @DISTCHECK_CRYPTO_CONFIGURE_FLAG@
+DISTCHECK_GSSAPI_CONFIGURE_FLAG = @DISTCHECK_GSSAPI_CONFIGURE_FLAG@
+DISTCHECK_GTEST_CONFIGURE_FLAG = @DISTCHECK_GTEST_CONFIGURE_FLAG@
+DISTCHECK_KEA_SHELL_CONFIGURE_FLAG = @DISTCHECK_KEA_SHELL_CONFIGURE_FLAG@
+DISTCHECK_LIBYANGCPP_CONFIGURE_FLAG = @DISTCHECK_LIBYANGCPP_CONFIGURE_FLAG@
+DISTCHECK_LIBYANG_CONFIGURE_FLAG = @DISTCHECK_LIBYANG_CONFIGURE_FLAG@
+DISTCHECK_LOG4CPLUS_CONFIGURE_FLAG = @DISTCHECK_LOG4CPLUS_CONFIGURE_FLAG@
+DISTCHECK_MYSQL_CONFIGURE_FLAG = @DISTCHECK_MYSQL_CONFIGURE_FLAG@
+DISTCHECK_PERFDHCP_CONFIGURE_FLAG = @DISTCHECK_PERFDHCP_CONFIGURE_FLAG@
+DISTCHECK_PGSQL_CONFIGURE_FLAG = @DISTCHECK_PGSQL_CONFIGURE_FLAG@
+DISTCHECK_PREMIUM_CONFIGURE_FLAG = @DISTCHECK_PREMIUM_CONFIGURE_FLAG@
+DISTCHECK_SYSREPOCPP_CONFIGURE_FLAG = @DISTCHECK_SYSREPOCPP_CONFIGURE_FLAG@
+DISTCHECK_SYSREPO_CONFIGURE_FLAG = @DISTCHECK_SYSREPO_CONFIGURE_FLAG@
+DLLTOOL = @DLLTOOL@
+DSYMUTIL = @DSYMUTIL@
+DUMPBIN = @DUMPBIN@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+FGREP = @FGREP@
+GENHTML = @GENHTML@
+GREP = @GREP@
+GSSAPI_CFLAGS = @GSSAPI_CFLAGS@
+GSSAPI_LIBS = @GSSAPI_LIBS@
+GTEST_CONFIG = @GTEST_CONFIG@
+GTEST_INCLUDES = @GTEST_INCLUDES@
+GTEST_LDADD = @GTEST_LDADD@
+GTEST_LDFLAGS = @GTEST_LDFLAGS@
+GTEST_SOURCE = @GTEST_SOURCE@
+HAVE_NETCONF = @HAVE_NETCONF@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+KEA_CXXFLAGS = @KEA_CXXFLAGS@
+KEA_SRCID = @KEA_SRCID@
+KRB5_CONFIG = @KRB5_CONFIG@
+LCOV = @LCOV@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LEX = @LEX@
+LEXLIB = @LEXLIB@
+LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LIBYANGCPP_CPPFLAGS = @LIBYANGCPP_CPPFLAGS@
+LIBYANGCPP_INCLUDEDIR = @LIBYANGCPP_INCLUDEDIR@
+LIBYANGCPP_LIBS = @LIBYANGCPP_LIBS@
+LIBYANGCPP_PREFIX = @LIBYANGCPP_PREFIX@
+LIBYANGCPP_VERSION = @LIBYANGCPP_VERSION@
+LIBYANG_CPPFLAGS = @LIBYANG_CPPFLAGS@
+LIBYANG_INCLUDEDIR = @LIBYANG_INCLUDEDIR@
+LIBYANG_LIBS = @LIBYANG_LIBS@
+LIBYANG_PREFIX = @LIBYANG_PREFIX@
+LIBYANG_VERSION = @LIBYANG_VERSION@
+LIPO = @LIPO@
+LN_S = @LN_S@
+LOG4CPLUS_INCLUDES = @LOG4CPLUS_INCLUDES@
+LOG4CPLUS_LIBS = @LOG4CPLUS_LIBS@
+LTLIBOBJS = @LTLIBOBJS@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
+MAKEINFO = @MAKEINFO@
+MANIFEST_TOOL = @MANIFEST_TOOL@
+MKDIR_P = @MKDIR_P@
+MYSQL_CPPFLAGS = @MYSQL_CPPFLAGS@
+MYSQL_LIBS = @MYSQL_LIBS@
+NM = @NM@
+NMEDIT = @NMEDIT@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+OTOOL = @OTOOL@
+OTOOL64 = @OTOOL64@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PACKAGE_VERSION_TYPE = @PACKAGE_VERSION_TYPE@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+PDFLATEX = @PDFLATEX@
+PERL = @PERL@
+PGSQL_CPPFLAGS = @PGSQL_CPPFLAGS@
+PGSQL_LIBS = @PGSQL_LIBS@
+PKGPYTHONDIR = @PKGPYTHONDIR@
+PKG_CONFIG = @PKG_CONFIG@
+PLANTUML = @PLANTUML@
+PREMIUM_DIR = @PREMIUM_DIR@
+PYTHON = @PYTHON@
+PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
+PYTHON_PLATFORM = @PYTHON_PLATFORM@
+PYTHON_PREFIX = @PYTHON_PREFIX@
+PYTHON_VERSION = @PYTHON_VERSION@
+RANLIB = @RANLIB@
+SED = @SED@
+SEP = @SEP@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+SPHINXBUILD = @SPHINXBUILD@
+SRPD_PLUGINS_PATH = @SRPD_PLUGINS_PATH@
+SR_PLUGINS_PATH = @SR_PLUGINS_PATH@
+SR_REPO_PATH = @SR_REPO_PATH@
+STRIP = @STRIP@
+SYSREPOCPP_CPPFLAGS = @SYSREPOCPP_CPPFLAGS@
+SYSREPOCPP_INCLUDEDIR = @SYSREPOCPP_INCLUDEDIR@
+SYSREPOCPP_LIBS = @SYSREPOCPP_LIBS@
+SYSREPOCPP_PREFIX = @SYSREPOCPP_PREFIX@
+SYSREPOCPP_VERSION = @SYSREPOCPP_VERSION@
+SYSREPO_CPPFLAGS = @SYSREPO_CPPFLAGS@
+SYSREPO_INCLUDEDIR = @SYSREPO_INCLUDEDIR@
+SYSREPO_LIBS = @SYSREPO_LIBS@
+SYSREPO_PREFIX = @SYSREPO_PREFIX@
+SYSREPO_VERSION = @SYSREPO_VERSION@
+USE_LCOV = @USE_LCOV@
+VALGRIND = @VALGRIND@
+VERSION = @VERSION@
+WARNING_GCC_44_STRICT_ALIASING_CFLAG = @WARNING_GCC_44_STRICT_ALIASING_CFLAG@
+YACC = @YACC@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir = @abs_top_srcdir@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+builddir = @builddir@
+datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
+exec_prefix = @exec_prefix@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+pkgpyexecdir = @pkgpyexecdir@
+pkgpythondir = @pkgpythondir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+pyexecdir = @pyexecdir@
+pythondir = @pythondir@
+runstatedir = @runstatedir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+srcdir = @srcdir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+top_build_prefix = @top_build_prefix@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+SUBDIRS = . tests
+
+# Install keactrl in sbin and the keactrl.conf required by the keactrl
+# in etc. keactrl will look for its configuration file in the etc folder.
+sbin_SCRIPTS = keactrl
+KEA_CONFIGFILES = kea-dhcp4.conf kea-dhcp6.conf kea-dhcp-ddns.conf \
+ kea-ctrl-agent.conf $(am__append_1)
+CONFIGFILES = keactrl.conf $(KEA_CONFIGFILES)
+DISTCLEANFILES = keactrl keactrl.conf
+CLEANFILES = $(KEA_CONFIGFILES)
+EXTRA_DIST = keactrl.in keactrl.conf.in kea-dhcp4.conf.pre \
+ kea-dhcp6.conf.pre kea-dhcp-ddns.conf.pre \
+ kea-ctrl-agent.conf.pre kea-netconf.conf.pre
+
+# *.conf files are not really sources used for building other targets, but we need
+# these files to be generated before make install is called.
+BUILT_SOURCES = $(KEA_CONFIGFILES)
+all: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) all-recursive
+
+.SUFFIXES:
+$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
+ @for dep in $?; do \
+ case '$(am__configure_deps)' in \
+ *$$dep*) \
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
+ && { if test -f $@; then exit 0; else break; fi; }; \
+ exit 1;; \
+ esac; \
+ done; \
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/bin/keactrl/Makefile'; \
+ $(am__cd) $(top_srcdir) && \
+ $(AUTOMAKE) --foreign src/bin/keactrl/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ @case '$?' in \
+ *config.status*) \
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+ *) \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
+ esac;
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure: $(am__configure_deps)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4): $(am__aclocal_m4_deps)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(am__aclocal_m4_deps):
+keactrl: $(top_builddir)/config.status $(srcdir)/keactrl.in
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+keactrl.conf: $(top_builddir)/config.status $(srcdir)/keactrl.conf.in
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+install-sbinSCRIPTS: $(sbin_SCRIPTS)
+ @$(NORMAL_INSTALL)
+ @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \
+ if test -n "$$list"; then \
+ echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \
+ $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \
+ fi; \
+ for p in $$list; do \
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
+ done | \
+ sed -e 'p;s,.*/,,;n' \
+ -e 'h;s|.*|.|' \
+ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
+ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
+ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
+ if ($$2 == $$4) { files[d] = files[d] " " $$1; \
+ if (++n[d] == $(am__install_max)) { \
+ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
+ else { print "f", d "/" $$4, $$1 } } \
+ END { for (d in files) print "f", d, files[d] }' | \
+ while read type dir files; do \
+ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
+ test -z "$$files" || { \
+ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
+ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
+ } \
+ ; done
+
+uninstall-sbinSCRIPTS:
+ @$(NORMAL_UNINSTALL)
+ @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \
+ files=`for p in $$list; do echo "$$p"; done | \
+ sed -e 's,.*/,,;$(transform)'`; \
+ dir='$(DESTDIR)$(sbindir)'; $(am__uninstall_files_from_dir)
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+# This directory's subdirectories are mostly independent; you can cd
+# into them and run 'make' without going through this Makefile.
+# To change the values of 'make' variables: instead of editing Makefiles,
+# (1) if the variable is set in 'config.status', edit 'config.status'
+# (which will cause the Makefiles to be regenerated when you run 'make');
+# (2) otherwise, pass the desired values on the 'make' command line.
+$(am__recursive_targets):
+ @fail=; \
+ if $(am__make_keepgoing); then \
+ failcom='fail=yes'; \
+ else \
+ failcom='exit 1'; \
+ fi; \
+ dot_seen=no; \
+ target=`echo $@ | sed s/-recursive//`; \
+ case "$@" in \
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+ *) list='$(SUBDIRS)' ;; \
+ esac; \
+ for subdir in $$list; do \
+ echo "Making $$target in $$subdir"; \
+ if test "$$subdir" = "."; then \
+ dot_seen=yes; \
+ local_target="$$target-am"; \
+ else \
+ local_target="$$target"; \
+ fi; \
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ || eval $$failcom; \
+ done; \
+ if test "$$dot_seen" = "no"; then \
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
+ fi; test -z "$$fail"
+
+ID: $(am__tagged_files)
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
+tags: tags-recursive
+TAGS: tags
+
+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ set x; \
+ here=`pwd`; \
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
+ include_option=--etags-include; \
+ empty_fix=.; \
+ else \
+ include_option=--include; \
+ empty_fix=; \
+ fi; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ test ! -f $$subdir/TAGS || \
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
+ fi; \
+ done; \
+ $(am__define_uniq_tagged_files); \
+ shift; \
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ test -n "$$unique" || unique=$$empty_fix; \
+ if test $$# -gt 0; then \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ "$$@" $$unique; \
+ else \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$unique; \
+ fi; \
+ fi
+ctags: ctags-recursive
+
+CTAGS: ctags
+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ $(am__define_uniq_tagged_files); \
+ test -z "$(CTAGS_ARGS)$$unique" \
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+ $$unique
+
+GTAGS:
+ here=`$(am__cd) $(top_builddir) && pwd` \
+ && $(am__cd) $(top_srcdir) \
+ && gtags -i $(GTAGS_ARGS) "$$here"
+cscopelist: cscopelist-recursive
+
+cscopelist-am: $(am__tagged_files)
+ list='$(am__tagged_files)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
+
+distclean-tags:
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+ list='$(DISTFILES)'; \
+ dist_files=`for file in $$list; do echo $$file; done | \
+ sed -e "s|^$$srcdirstrip/||;t" \
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
+ case $$dist_files in \
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
+ sort -u` ;; \
+ esac; \
+ for file in $$dist_files; do \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ if test -d $$d/$$file; then \
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test -d "$(distdir)/$$file"; then \
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ fi; \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ fi; \
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ else \
+ test -f "$(distdir)/$$file" \
+ || cp -p $$d/$$file "$(distdir)/$$file" \
+ || exit 1; \
+ fi; \
+ done
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ $(am__make_dryrun) \
+ || test -d "$(distdir)/$$subdir" \
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
+ || exit 1; \
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
+ $(am__relativize); \
+ new_distdir=$$reldir; \
+ dir1=$$subdir; dir2="$(top_distdir)"; \
+ $(am__relativize); \
+ new_top_distdir=$$reldir; \
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
+ ($(am__cd) $$subdir && \
+ $(MAKE) $(AM_MAKEFLAGS) \
+ top_distdir="$$new_top_distdir" \
+ distdir="$$new_distdir" \
+ am__remove_distdir=: \
+ am__skip_length_check=: \
+ am__skip_mode_fix=: \
+ distdir) \
+ || exit 1; \
+ fi; \
+ done
+check-am: all-am
+check: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) check-recursive
+all-am: Makefile $(SCRIPTS)
+installdirs: installdirs-recursive
+installdirs-am:
+ for dir in "$(DESTDIR)$(sbindir)"; do \
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
+ done
+install: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) install-recursive
+install-exec: install-exec-recursive
+install-data: install-data-recursive
+uninstall: uninstall-recursive
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-recursive
+install-strip:
+ if test -z '$(STRIP)'; then \
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+ install; \
+ else \
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
+ fi
+mostlyclean-generic:
+
+clean-generic:
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+ -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
+@INSTALL_CONFIGURATIONS_FALSE@install-data-local:
+clean: clean-recursive
+
+clean-am: clean-generic clean-libtool mostlyclean-am
+
+distclean: distclean-recursive
+ -rm -f Makefile
+distclean-am: clean-am distclean-generic distclean-tags
+
+dvi: dvi-recursive
+
+dvi-am:
+
+html: html-recursive
+
+html-am:
+
+info: info-recursive
+
+info-am:
+
+install-data-am: install-data-local
+
+install-dvi: install-dvi-recursive
+
+install-dvi-am:
+
+install-exec-am: install-sbinSCRIPTS
+
+install-html: install-html-recursive
+
+install-html-am:
+
+install-info: install-info-recursive
+
+install-info-am:
+
+install-man:
+
+install-pdf: install-pdf-recursive
+
+install-pdf-am:
+
+install-ps: install-ps-recursive
+
+install-ps-am:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-recursive
+ -rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-recursive
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
+
+pdf: pdf-recursive
+
+pdf-am:
+
+ps: ps-recursive
+
+ps-am:
+
+uninstall-am: uninstall-sbinSCRIPTS
+
+.MAKE: $(am__recursive_targets) all check install install-am \
+ install-strip
+
+.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
+ check-am clean clean-generic clean-libtool cscopelist-am ctags \
+ ctags-am distclean distclean-generic distclean-libtool \
+ distclean-tags distdir dvi dvi-am html html-am info info-am \
+ install install-am install-data install-data-am \
+ install-data-local install-dvi install-dvi-am install-exec \
+ install-exec-am install-html install-html-am install-info \
+ install-info-am install-man install-pdf install-pdf-am \
+ install-ps install-ps-am install-sbinSCRIPTS install-strip \
+ installcheck installcheck-am installdirs installdirs-am \
+ maintainer-clean maintainer-clean-generic mostlyclean \
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ tags tags-am uninstall uninstall-am uninstall-sbinSCRIPTS
+
+.PRECIOUS: Makefile
+
+
+kea-dhcp4.conf: kea-dhcp4.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-dhcp4.conf.pre $@
+
+kea-dhcp6.conf: kea-dhcp6.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-dhcp6.conf.pre $@
+
+kea-dhcp-ddns.conf: kea-dhcp-ddns.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-dhcp-ddns.conf.pre $@
+
+kea-ctrl-agent.conf: kea-ctrl-agent.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-ctrl-agent.conf.pre $@
+
+kea-netconf.conf: kea-netconf.conf.pre
+ $(top_builddir)/tools/path_replacer.sh \
+ $(top_srcdir)/src/bin/keactrl/kea-netconf.conf.pre $@
+
+# Since Kea 1.3.0 release we have 4 different Kea configuration files
+# instead of one, i.e. kea-dhcp4.conf, kea-dhcp6.conf, kea-dhcp-ddns.conf
+# and kea-ctrl-agent.conf. To facilitate the use of these new files
+# the keactrl.conf has been updated in Kea 1.3.0 release. Therefore,
+# we install new version of thea keactrl.conf file unconditionally.
+# To preserve any user modifications to the old version of the file,
+# this old file is backed up as keactrl.conf.bak.
+@INSTALL_CONFIGURATIONS_TRUE@install-data-local:
+@INSTALL_CONFIGURATIONS_TRUE@ $(mkinstalldirs) $(DESTDIR)/@sysconfdir@/@PACKAGE@
+@INSTALL_CONFIGURATIONS_TRUE@ for f in $(CONFIGFILES) ; do \
+@INSTALL_CONFIGURATIONS_TRUE@ if test -f $(DESTDIR)$(sysconfdir)/@PACKAGE@/$$f && \
+@INSTALL_CONFIGURATIONS_TRUE@ test $$f = "keactrl.conf"; then \
+@INSTALL_CONFIGURATIONS_TRUE@ mv $(DESTDIR)$(sysconfdir)/@PACKAGE@/$$f \
+@INSTALL_CONFIGURATIONS_TRUE@ $(DESTDIR)$(sysconfdir)/@PACKAGE@/$$f.bak; \
+@INSTALL_CONFIGURATIONS_TRUE@ fi; \
+@INSTALL_CONFIGURATIONS_TRUE@ if test ! -f $(DESTDIR)$(sysconfdir)/@PACKAGE@/$$f; then \
+@INSTALL_CONFIGURATIONS_TRUE@ ${INSTALL_DATA} $$f $(DESTDIR)$(sysconfdir)/@PACKAGE@/; \
+@INSTALL_CONFIGURATIONS_TRUE@ fi; \
+@INSTALL_CONFIGURATIONS_TRUE@ done
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/src/bin/keactrl/kea-ctrl-agent.conf.pre b/src/bin/keactrl/kea-ctrl-agent.conf.pre
new file mode 100644
index 0000000..e6ae8b8
--- /dev/null
+++ b/src/bin/keactrl/kea-ctrl-agent.conf.pre
@@ -0,0 +1,105 @@
+// This is a basic configuration for the Kea Control Agent.
+//
+// This is just a very basic configuration. Kea comes with large suite (over 30)
+// of configuration examples and extensive Kea User's Guide. Please refer to
+// those materials to get better understanding of what this software is able to
+// do. Comments in this configuration file sometimes refer to sections for more
+// details. These are section numbers in Kea User's Guide. The version matching
+// your software should come with your Kea package, but it is also available
+// in ISC's Knowledgebase (https://kea.readthedocs.io; the direct link for
+// the stable version is https://kea.readthedocs.io/).
+//
+// This configuration file contains only Control Agent's configuration.
+// If configurations for other Kea services are also included in this file they
+// are ignored by the Control Agent.
+{
+
+// This is a basic configuration for the Kea Control Agent.
+// RESTful interface to be available at http://127.0.0.1:8000/
+"Control-agent": {
+ "http-host": "127.0.0.1",
+ // If enabling HA and multi-threading, the 8000 port is used by the HA
+ // hook library http listener. When using HA hook library with
+ // multi-threading to function, make sure the port used by dedicated
+ // listener is different (e.g. 8001) than the one used by CA. Note
+ // the commands should still be sent via CA. The dedicated listener
+ // is specifically for HA updates only.
+ "http-port": 8000,
+
+ // Specify location of the files to which the Control Agent
+ // should connect to forward commands to the DHCPv4, DHCPv6
+ // and D2 servers via unix domain sockets.
+ "control-sockets": {
+ "dhcp4": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea4-ctrl-socket"
+ },
+ "dhcp6": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea6-ctrl-socket"
+ },
+ "d2": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea-ddns-ctrl-socket"
+ }
+ },
+
+ // Specify hooks libraries that are attached to the Control Agent.
+ // Such hooks libraries should support 'control_command_receive'
+ // hook point. This is currently commented out because it has to
+ // point to the existing hooks library. Otherwise the Control
+ // Agent will fail to start.
+ "hooks-libraries": [
+// {
+// "library": "@libdir@/kea/hooks/control-agent-commands.so",
+// "parameters": {
+// "param1": "foo"
+// }
+// }
+ ],
+
+// Logging configuration starts here. Kea uses different loggers to log various
+// activities. For details (e.g. names of loggers), see Chapter 18.
+ "loggers": [
+ {
+ // This specifies the logging for Control Agent daemon.
+ "name": "kea-ctrl-agent",
+ "output_options": [
+ {
+ // Specifies the output file. There are several special values
+ // supported:
+ // - stdout (prints on standard output)
+ // - stderr (prints on standard error)
+ // - syslog (logs to syslog)
+ // - syslog:name (logs to syslog using specified name)
+ // Any other value is considered a name of the file
+ "output": "@localstatedir@/log/kea-ctrl-agent.log"
+
+ // Shorter log pattern suitable for use with systemd,
+ // avoids redundant information
+ // "pattern": "%-5p %m\n"
+
+ // This governs whether the log output is flushed to disk after
+ // every write.
+ // "flush": false,
+
+ // This specifies the maximum size of the file before it is
+ // rotated.
+ // "maxsize": 1048576,
+
+ // This specifies the maximum number of rotated files to keep.
+ // "maxver": 8
+ }
+ ],
+ // This specifies the severity of log messages to keep. Supported values
+ // are: FATAL, ERROR, WARN, INFO, DEBUG
+ "severity": "INFO",
+
+ // If DEBUG level is specified, this value is used. 0 is least verbose,
+ // 99 is most verbose. Be cautious, Kea can generate lots and lots
+ // of logs if told to do so.
+ "debuglevel": 0
+ }
+ ]
+}
+}
diff --git a/src/bin/keactrl/kea-dhcp-ddns.conf.pre b/src/bin/keactrl/kea-dhcp-ddns.conf.pre
new file mode 100644
index 0000000..07c2042
--- /dev/null
+++ b/src/bin/keactrl/kea-dhcp-ddns.conf.pre
@@ -0,0 +1,76 @@
+// This is a basic configuration for the Kea DHCP DDNS daemon.
+//
+// This is just a very basic configuration. Kea comes with large suite (over 30)
+// of configuration examples and extensive Kea User's Guide. Please refer to
+// those materials to get better understanding of what this software is able to
+// do. Comments in this configuration file sometimes refer to sections for more
+// details. These are section numbers in Kea User's Guide. The version matching
+// your software should come with your Kea package, but it is also available
+// in ISC's Knowledgebase (https://kea.readthedocs.io; the direct link for
+// the stable version is https://kea.readthedocs.io/).
+//
+// This configuration file contains only DHCP DDNS daemon's configuration.
+// If configurations for other Kea services are also included in this file they
+// are ignored by the DHCP DDNS daemon.
+{
+
+// DHCP DDNS configuration starts here. This is a very simple configuration
+// that simply starts the DDNS daemon, but will not do anything useful.
+// See Section 11 for examples and details description.
+"DhcpDdns":
+{
+ "ip-address": "127.0.0.1",
+ "port": 53001,
+ "control-socket": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea-ddns-ctrl-socket"
+ },
+ "tsig-keys": [],
+ "forward-ddns" : {},
+ "reverse-ddns" : {},
+
+// Logging configuration starts here. Kea uses different loggers to log various
+// activities. For details (e.g. names of loggers), see Chapter 18.
+ "loggers": [
+ {
+ // This specifies the logging for D2 (DHCP-DDNS) daemon.
+ "name": "kea-dhcp-ddns",
+ "output_options": [
+ {
+ // Specifies the output file. There are several special values
+ // supported:
+ // - stdout (prints on standard output)
+ // - stderr (prints on standard error)
+ // - syslog (logs to syslog)
+ // - syslog:name (logs to syslog using specified name)
+ // Any other value is considered a name of the file
+ "output": "@localstatedir@/log/kea-ddns.log"
+
+ // Shorter log pattern suitable for use with systemd,
+ // avoids redundant information
+ // "pattern": "%-5p %m\n"
+
+ // This governs whether the log output is flushed to disk after
+ // every write.
+ // "flush": false,
+
+ // This specifies the maximum size of the file before it is
+ // rotated.
+ // "maxsize": 1048576,
+
+ // This specifies the maximum number of rotated files to keep.
+ // "maxver": 8
+ }
+ ],
+ // This specifies the severity of log messages to keep. Supported values
+ // are: FATAL, ERROR, WARN, INFO, DEBUG
+ "severity": "INFO",
+
+ // If DEBUG level is specified, this value is used. 0 is least verbose,
+ // 99 is most verbose. Be cautious, Kea can generate lots and lots
+ // of logs if told to do so.
+ "debuglevel": 0
+ }
+ ]
+}
+}
diff --git a/src/bin/keactrl/kea-dhcp4.conf.pre b/src/bin/keactrl/kea-dhcp4.conf.pre
new file mode 100644
index 0000000..6edb8a1
--- /dev/null
+++ b/src/bin/keactrl/kea-dhcp4.conf.pre
@@ -0,0 +1,468 @@
+// This is a basic configuration for the Kea DHCPv4 server. Subnet declarations
+// are mostly commented out and no interfaces are listed. Therefore, the servers
+// will not listen or respond to any queries.
+// The basic configuration must be extended to specify interfaces on which
+// the servers should listen. There are a number of example options defined.
+// These probably don't make any sense in your network. Make sure you at least
+// update the following, before running this example in your network:
+// - change the network interface names
+// - change the subnets to match your actual network
+// - change the option values to match your network
+//
+// This is just a very basic configuration. Kea comes with large suite (over 30)
+// of configuration examples and extensive Kea User's Guide. Please refer to
+// those materials to get better understanding of what this software is able to
+// do. Comments in this configuration file sometimes refer to sections for more
+// details. These are section numbers in Kea User's Guide. The version matching
+// your software should come with your Kea package, but it is also available
+// in ISC's Knowledgebase (https://kea.readthedocs.io; the direct link for
+// the stable version is https://kea.readthedocs.io/).
+//
+// This configuration file contains only DHCPv4 server's configuration.
+// If configurations for other Kea services are also included in this file they
+// are ignored by the DHCPv4 server.
+{
+
+// DHCPv4 configuration starts here. This section will be read by DHCPv4 server
+// and will be ignored by other components.
+"Dhcp4": {
+ // Add names of your network interfaces to listen on.
+ "interfaces-config": {
+ // See section 8.2.4 for more details. You probably want to add just
+ // interface name (e.g. "eth0" or specific IPv4 address on that
+ // interface name (e.g. "eth0/192.0.2.1").
+ "interfaces": [ ]
+
+ // Kea DHCPv4 server by default listens using raw sockets. This ensures
+ // all packets, including those sent by directly connected clients
+ // that don't have IPv4 address yet, are received. However, if your
+ // traffic is always relayed, it is often better to use regular
+ // UDP sockets. If you want to do that, uncomment this line:
+ // "dhcp-socket-type": "udp"
+ },
+
+ // Kea supports control channel, which is a way to receive management
+ // commands while the server is running. This is a Unix domain socket that
+ // receives commands formatted in JSON, e.g. config-set (which sets new
+ // configuration), config-reload (which tells Kea to reload its
+ // configuration from file), statistic-get (to retrieve statistics) and many
+ // more. For detailed description, see Sections 8.8, 16 and 15.
+ "control-socket": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea4-ctrl-socket"
+ },
+
+ // Use Memfile lease database backend to store leases in a CSV file.
+ // Depending on how Kea was compiled, it may also support SQL databases
+ // (MySQL and/or PostgreSQL). Those database backends require more
+ // parameters, like name, host and possibly user and password.
+ // There are dedicated examples for each backend. See Section 7.2.2 "Lease
+ // Storage" for details.
+ "lease-database": {
+ // Memfile is the simplest and easiest backend to use. It's an in-memory
+ // C++ database that stores its state in CSV file.
+ "type": "memfile",
+ "lfc-interval": 3600
+ },
+
+ // Kea allows storing host reservations in a database. If your network is
+ // small or you have few reservations, it's probably easier to keep them
+ // in the configuration file. If your network is large, it's usually better
+ // to use database for it. To enable it, uncomment the following:
+ // "hosts-database": {
+ // "type": "mysql",
+ // "name": "kea",
+ // "user": "kea",
+ // "password": "kea",
+ // "host": "localhost",
+ // "port": 3306
+ // },
+ // See Section 7.2.3 "Hosts storage" for details.
+
+ // Setup reclamation of the expired leases and leases affinity.
+ // Expired leases will be reclaimed every 10 seconds. Every 25
+ // seconds reclaimed leases, which have expired more than 3600
+ // seconds ago, will be removed. The limits for leases reclamation
+ // are 100 leases or 250 ms for a single cycle. A warning message
+ // will be logged if there are still expired leases in the
+ // database after 5 consecutive reclamation cycles.
+ // If both "flush-reclaimed-timer-wait-time" and "hold-reclaimed-time" are
+ // not 0, when the client sends a release message the lease is expired
+ // instead of being deleted from the lease storage.
+ "expired-leases-processing": {
+ "reclaim-timer-wait-time": 10,
+ "flush-reclaimed-timer-wait-time": 25,
+ "hold-reclaimed-time": 3600,
+ "max-reclaim-leases": 100,
+ "max-reclaim-time": 250,
+ "unwarned-reclaim-cycles": 5
+ },
+
+ // Global timers specified here apply to all subnets, unless there are
+ // subnet specific values defined in particular subnets.
+ "renew-timer": 900,
+ "rebind-timer": 1800,
+ "valid-lifetime": 3600,
+
+ // Many additional parameters can be specified here:
+ // - option definitions (if you want to define vendor options, your own
+ // custom options or perhaps handle standard options
+ // that Kea does not support out of the box yet)
+ // - client classes
+ // - hooks
+ // - ddns information (how the DHCPv4 component can reach a DDNS daemon)
+ //
+ // Some of them have examples below, but there are other parameters.
+ // Consult Kea User's Guide to find out about them.
+
+ // These are global options. They are going to be sent when a client
+ // requests them, unless overwritten with values in more specific scopes.
+ // The scope hierarchy is:
+ // - global (most generic, can be overwritten by class, subnet or host)
+ // - class (can be overwritten by subnet or host)
+ // - subnet (can be overwritten by host)
+ // - host (most specific, overwrites any other scopes)
+ //
+ // Not all of those options make sense. Please configure only those that
+ // are actually useful in your network.
+ //
+ // For a complete list of options currently supported by Kea, see
+ // Section 7.2.8 "Standard DHCPv4 Options". Kea also supports
+ // vendor options (see Section 7.2.10) and allows users to define their
+ // own custom options (see Section 7.2.9).
+ "option-data": [
+ // When specifying options, you typically need to specify
+ // one of (name or code) and data. The full option specification
+ // covers name, code, space, csv-format and data.
+ // space defaults to "dhcp4" which is usually correct, unless you
+ // use encapsulate options. csv-format defaults to "true", so
+ // this is also correct, unless you want to specify the whole
+ // option value as long hex string. For example, to specify
+ // domain-name-servers you could do this:
+ // {
+ // "name": "domain-name-servers",
+ // "code": 6,
+ // "csv-format": "true",
+ // "space": "dhcp4",
+ // "data": "192.0.2.1, 192.0.2.2"
+ // }
+ // but it's a lot of writing, so it's easier to do this instead:
+ {
+ "name": "domain-name-servers",
+ "data": "192.0.2.1, 192.0.2.2"
+ },
+
+ // Typically people prefer to refer to options by their names, so they
+ // don't need to remember the code names. However, some people like
+ // to use numerical values. For example, option "domain-name" uses
+ // option code 15, so you can reference to it either by
+ // "name": "domain-name" or "code": 15.
+ {
+ "code": 15,
+ "data": "example.org"
+ },
+
+ // Domain search is also a popular option. It tells the client to
+ // attempt to resolve names within those specified domains. For
+ // example, name "foo" would be attempted to be resolved as
+ // foo.mydomain.example.com and if it fails, then as foo.example.com
+ {
+ "name": "domain-search",
+ "data": "mydomain.example.com, example.com"
+ },
+
+ // String options that have a comma in their values need to have
+ // it escaped (i.e. each comma is preceded by two backslashes).
+ // That's because commas are reserved for separating fields in
+ // compound options. At the same time, we need to be conformant
+ // with JSON spec, that does not allow "\,". Therefore the
+ // slightly uncommon double backslashes notation is needed.
+
+ // Legal JSON escapes are \ followed by "\/bfnrt character
+ // or \u followed by 4 hexadecimal numbers (currently Kea
+ // supports only \u0000 to \u00ff code points).
+ // CSV processing translates '\\' into '\' and '\,' into ','
+ // only so for instance '\x' is translated into '\x'. But
+ // as it works on a JSON string value each of these '\'
+ // characters must be doubled on JSON input.
+ {
+ "name": "boot-file-name",
+ "data": "EST5EDT4\\,M3.2.0/02:00\\,M11.1.0/02:00"
+ },
+
+ // Options that take integer values can either be specified in
+ // dec or hex format. Hex format could be either plain (e.g. abcd)
+ // or prefixed with 0x (e.g. 0xabcd).
+ {
+ "name": "default-ip-ttl",
+ "data": "0xf0"
+ }
+
+ // Note that Kea provides some of the options on its own. In particular,
+ // it sends IP Address lease type (code 51, based on valid-lifetime
+ // parameter, Subnet mask (code 1, based on subnet definition), Renewal
+ // time (code 58, based on renew-timer parameter), Rebind time (code 59,
+ // based on rebind-timer parameter).
+ ],
+
+ // Other global parameters that can be defined here are option definitions
+ // (this is useful if you want to use vendor options, your own custom
+ // options or perhaps handle options that Kea does not handle out of the box
+ // yet).
+
+ // You can also define classes. If classes are defined, incoming packets
+ // may be assigned to specific classes. A client class can represent any
+ // group of devices that share some common characteristic, e.g. Windows
+ // devices, iphones, broken printers that require special options, etc.
+ // Based on the class information, you can then allow or reject clients
+ // to use certain subnets, add special options for them or change values
+ // of some fixed fields.
+ "client-classes": [
+ {
+ // This specifies a name of this class. It's useful if you need to
+ // reference this class.
+ "name": "voip",
+
+ // This is a test. It is an expression that is being evaluated on
+ // each incoming packet. It is supposed to evaluate to either
+ // true or false. If it's true, the packet is added to specified
+ // class. See Section 12 for a list of available expressions. There
+ // are several dozens. Section 8.2.14 for more details for DHCPv4
+ // classification and Section 9.2.19 for DHCPv6.
+ "test": "substring(option[60].hex,0,6) == 'Aastra'",
+
+ // If a client belongs to this class, you can define extra behavior.
+ // For example, certain fields in DHCPv4 packet will be set to
+ // certain values.
+ "next-server": "192.0.2.254",
+ "server-hostname": "hal9000",
+ "boot-file-name": "/dev/null"
+
+ // You can also define option values here if you want devices from
+ // this class to receive special options.
+ }
+ ],
+
+ // Another thing possible here are hooks. Kea supports a powerful mechanism
+ // that allows loading external libraries that can extract information and
+ // even influence how the server processes packets. Those libraries include
+ // additional forensic logging capabilities, ability to reserve hosts in
+ // more flexible ways, and even add extra commands. For a list of available
+ // hook libraries, see https://gitlab.isc.org/isc-projects/kea/wikis/Hooks-available.
+ // "hooks-libraries": [
+ // {
+ // // Forensic Logging library generates forensic type of audit trail
+ // // of all devices serviced by Kea, including their identifiers
+ // // (like MAC address), their location in the network, times
+ // // when they were active etc.
+ // "library": "@libdir@/kea/hooks/libdhcp_legal_log.so",
+ // "parameters": {
+ // "path": "/var/lib/kea",
+ // "base-name": "kea-forensic4"
+ // }
+ // },
+ // {
+ // // Flexible identifier (flex-id). Kea software provides a way to
+ // // handle host reservations that include addresses, prefixes,
+ // // options, client classes and other features. The reservation can
+ // // be based on hardware address, DUID, circuit-id or client-id in
+ // // DHCPv4 and using hardware address or DUID in DHCPv6. However,
+ // // there are sometimes scenario where the reservation is more
+ // // complex, e.g. uses other options that mentioned above, uses part
+ // // of specific options or perhaps even a combination of several
+ // // options and fields to uniquely identify a client. Those scenarios
+ // // are addressed by the Flexible Identifiers hook application.
+ // "library": "@libdir@/kea/hooks/libdhcp_flex_id.so",
+ // "parameters": {
+ // "identifier-expression": "relay4[2].hex"
+ // }
+ // }
+ // ],
+
+ // Below an example of a simple IPv4 subnet declaration. Uncomment to enable
+ // it. This is a list, denoted with [ ], of structures, each denoted with
+ // { }. Each structure describes a single subnet and may have several
+ // parameters. One of those parameters is "pools" that is also a list of
+ // structures.
+ "subnet4": [
+ {
+ // This defines the whole subnet. Kea will use this information to
+ // determine where the clients are connected. This is the whole
+ // subnet in your network.
+
+ // Subnet identifier should be unique for each subnet.
+ "id": 1,
+
+ // This is mandatory parameter for each subnet.
+ "subnet": "192.0.2.0/24",
+
+ // Pools define the actual part of your subnet that is governed
+ // by Kea. Technically this is optional parameter, but it's
+ // almost always needed for DHCP to do its job. If you omit it,
+ // clients won't be able to get addresses, unless there are
+ // host reservations defined for them.
+ "pools": [ { "pool": "192.0.2.1 - 192.0.2.200" } ],
+
+ // These are options that are subnet specific. In most cases,
+ // you need to define at least routers option, as without this
+ // option your clients will not be able to reach their default
+ // gateway and will not have Internet connectivity.
+ "option-data": [
+ {
+ // For each IPv4 subnet you most likely need to specify at
+ // least one router.
+ "name": "routers",
+ "data": "192.0.2.1"
+ }
+ ],
+
+ // Kea offers host reservations mechanism. Kea supports reservations
+ // by several different types of identifiers: hw-address
+ // (hardware/MAC address of the client), duid (DUID inserted by the
+ // client), client-id (client identifier inserted by the client) and
+ // circuit-id (circuit identifier inserted by the relay agent).
+ //
+ // Kea also support flexible identifier (flex-id), which lets you
+ // specify an expression that is evaluated for each incoming packet.
+ // Resulting value is then used for as an identifier.
+ //
+ // Note that reservations are subnet-specific in Kea. This is
+ // different than ISC DHCP. Keep that in mind when migrating
+ // your configurations.
+ "reservations": [
+
+ // This is a reservation for a specific hardware/MAC address.
+ // It's a rather simple reservation: just an address and nothing
+ // else.
+ {
+ "hw-address": "1a:1b:1c:1d:1e:1f",
+ "ip-address": "192.0.2.201"
+ },
+
+ // This is a reservation for a specific client-id. It also shows
+ // the this client will get a reserved hostname. A hostname can
+ // be defined for any identifier type, not just client-id.
+ {
+ "client-id": "01:11:22:33:44:55:66",
+ "ip-address": "192.0.2.202",
+ "hostname": "special-snowflake"
+ },
+
+ // The third reservation is based on DUID. This reservation defines
+ // a special option values for this particular client. If the
+ // domain-name-servers option would have been defined on a global,
+ // subnet or class level, the host specific values take preference.
+ {
+ "duid": "01:02:03:04:05",
+ "ip-address": "192.0.2.203",
+ "option-data": [ {
+ "name": "domain-name-servers",
+ "data": "10.1.1.202, 10.1.1.203"
+ } ]
+ },
+
+ // The fourth reservation is based on circuit-id. This is an option
+ // inserted by the relay agent that forwards the packet from client
+ // to the server. In this example the host is also assigned vendor
+ // specific options.
+ //
+ // When using reservations, it is useful to configure
+ // reservations-global, reservations-in-subnet,
+ // reservations-out-of-pool (subnet specific parameters)
+ // and host-reservation-identifiers (global parameter).
+ {
+ "client-id": "01:12:23:34:45:56:67",
+ "ip-address": "192.0.2.204",
+ "option-data": [
+ {
+ "name": "vivso-suboptions",
+ "data": "4491"
+ },
+ {
+ "name": "tftp-servers",
+ "space": "vendor-4491",
+ "data": "10.1.1.202, 10.1.1.203"
+ }
+ ]
+ },
+ // This reservation is for a client that needs specific DHCPv4
+ // fields to be set. Three supported fields are next-server,
+ // server-hostname and boot-file-name
+ {
+ "client-id": "01:0a:0b:0c:0d:0e:0f",
+ "ip-address": "192.0.2.205",
+ "next-server": "192.0.2.1",
+ "server-hostname": "hal9000",
+ "boot-file-name": "/dev/null"
+ },
+ // This reservation is using flexible identifier. Instead of
+ // relying on specific field, sysadmin can define an expression
+ // similar to what is used for client classification,
+ // e.g. substring(relay[0].option[17],0,6). Then, based on the
+ // value of that expression for incoming packet, the reservation
+ // is matched. Expression can be specified either as hex or
+ // plain text using single quotes.
+ //
+ // Note: flexible identifier requires flex_id hook library to be
+ // loaded to work.
+ {
+ "flex-id": "'s0mEVaLue'",
+ "ip-address": "192.0.2.206"
+ }
+ // You can add more reservations here.
+ ]
+ // You can add more subnets there.
+ }
+ ],
+
+ // There are many, many more parameters that DHCPv4 server is able to use.
+ // They were not added here to not overwhelm people with too much
+ // information at once.
+
+ // Logging configuration starts here. Kea uses different loggers to log various
+ // activities. For details (e.g. names of loggers), see Chapter 18.
+ "loggers": [
+ {
+ // This section affects kea-dhcp4, which is the base logger for DHCPv4
+ // component. It tells DHCPv4 server to write all log messages (on
+ // severity INFO or more) to a file.
+ "name": "kea-dhcp4",
+ "output_options": [
+ {
+ // Specifies the output file. There are several special values
+ // supported:
+ // - stdout (prints on standard output)
+ // - stderr (prints on standard error)
+ // - syslog (logs to syslog)
+ // - syslog:name (logs to syslog using specified name)
+ // Any other value is considered a name of the file
+ "output": "@localstatedir@/log/kea-dhcp4.log"
+
+ // Shorter log pattern suitable for use with systemd,
+ // avoids redundant information
+ // "pattern": "%-5p %m\n",
+
+ // This governs whether the log output is flushed to disk after
+ // every write.
+ // "flush": false,
+
+ // This specifies the maximum size of the file before it is
+ // rotated.
+ // "maxsize": 1048576,
+
+ // This specifies the maximum number of rotated files to keep.
+ // "maxver": 8
+ }
+ ],
+ // This specifies the severity of log messages to keep. Supported values
+ // are: FATAL, ERROR, WARN, INFO, DEBUG
+ "severity": "INFO",
+
+ // If DEBUG level is specified, this value is used. 0 is least verbose,
+ // 99 is most verbose. Be cautious, Kea can generate lots and lots
+ // of logs if told to do so.
+ "debuglevel": 0
+ }
+ ]
+}
+}
diff --git a/src/bin/keactrl/kea-dhcp6.conf.pre b/src/bin/keactrl/kea-dhcp6.conf.pre
new file mode 100644
index 0000000..b167e1f
--- /dev/null
+++ b/src/bin/keactrl/kea-dhcp6.conf.pre
@@ -0,0 +1,427 @@
+// This is a basic configuration for the Kea DHCPv6 server. Subnet declarations
+// are mostly commented out and no interfaces are listed. Therefore, the servers
+// will not listen or respond to any queries.
+// The basic configuration must be extended to specify interfaces on which
+// the servers should listen. There are a number of example options defined.
+// These probably don't make any sense in your network. Make sure you at least
+// update the following, before running this example in your network:
+// - change the network interface names
+// - change the subnets to match your actual network
+// - change the option values to match your network
+//
+// This is just a very basic configuration. Kea comes with large suite (over 30)
+// of configuration examples and extensive Kea User's Guide. Please refer to
+// those materials to get better understanding of what this software is able to
+// do. Comments in this configuration file sometimes refer to sections for more
+// details. These are section numbers in Kea User's Guide. The version matching
+// your software should come with your Kea package, but it is also available
+// in ISC's Knowledgebase (https://kea.readthedocs.io; the direct link for
+// the stable version is https://kea.readthedocs.io/).
+//
+// This configuration file contains only DHCPv6 server's configuration.
+// If configurations for other Kea services are also included in this file they
+// are ignored by the DHCPv6 server.
+{
+
+// DHCPv6 configuration starts here. This section will be read by DHCPv6 server
+// and will be ignored by other components.
+"Dhcp6": {
+ // Add names of your network interfaces to listen on.
+ "interfaces-config": {
+ // You typically want to put specific interface names here, e.g. eth0
+ // but you can also specify unicast addresses (e.g. eth0/2001:db8::1) if
+ // you want your server to handle unicast traffic in addition to
+ // multicast. (DHCPv6 is a multicast based protocol).
+ "interfaces": [ ]
+ },
+
+ // Kea supports control channel, which is a way to receive management commands
+ // while the server is running. This is a Unix domain socket that receives
+ // commands formatted in JSON, e.g. config-set (which sets new configuration),
+ // config-reload (which tells Kea to reload its configuration from file),
+ // statistic-get (to retrieve statistics) and many more. For detailed
+ // description, see Sections 9.12, 16 and 15.
+ "control-socket": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea6-ctrl-socket"
+ },
+
+ // Use Memfile lease database backend to store leases in a CSV file.
+ // Depending on how Kea was compiled, it may also support SQL databases
+ // (MySQL and/or PostgreSQL). Those database backends require more
+ // parameters, like name, host and possibly user and password.
+ // There are dedicated examples for each backend. See Section 8.2.2 "Lease
+ // Storage" for details.
+ "lease-database": {
+ // Memfile is the simplest and easiest backend to use. It's an in-memory
+ // C++ database that stores its state in CSV file.
+ "type": "memfile",
+ "lfc-interval": 3600
+ },
+
+ // Kea allows storing host reservations in a database. If your network is
+ // small or you have few reservations, it's probably easier to keep them
+ // in the configuration file. If your network is large, it's usually better
+ // to use database for it. To enable it, uncomment the following:
+ // "hosts-database": {
+ // "type": "mysql",
+ // "name": "kea",
+ // "user": "kea",
+ // "password": "kea",
+ // "host": "localhost",
+ // "port": 3306
+ // },
+ // See Section 8.2.3 "Hosts storage" for details.
+
+ // Setup reclamation of the expired leases and leases affinity.
+ // Expired leases will be reclaimed every 10 seconds. Every 25
+ // seconds reclaimed leases, which have expired more than 3600
+ // seconds ago, will be removed. The limits for leases reclamation
+ // are 100 leases or 250 ms for a single cycle. A warning message
+ // will be logged if there are still expired leases in the
+ // database after 5 consecutive reclamation cycles.
+ // If both "flush-reclaimed-timer-wait-time" and "hold-reclaimed-time" are
+ // not 0, when the client sends a release message the lease is expired
+ // instead of being deleted from the lease storage.
+ "expired-leases-processing": {
+ "reclaim-timer-wait-time": 10,
+ "flush-reclaimed-timer-wait-time": 25,
+ "hold-reclaimed-time": 3600,
+ "max-reclaim-leases": 100,
+ "max-reclaim-time": 250,
+ "unwarned-reclaim-cycles": 5
+ },
+
+ // These parameters govern global timers. Addresses will be assigned with
+ // preferred and valid lifetimes being 3000 and 4000, respectively. Client
+ // is told to start renewing after 1000 seconds. If the server does not
+ // respond after 2000 seconds since the lease was granted, a client is
+ // supposed to start REBIND procedure (emergency renewal that allows
+ // switching to a different server).
+ "renew-timer": 1000,
+ "rebind-timer": 2000,
+ "preferred-lifetime": 3000,
+ "valid-lifetime": 4000,
+
+ // These are global options. They are going to be sent when a client requests
+ // them, unless overwritten with values in more specific scopes. The scope
+ // hierarchy is:
+ // - global
+ // - subnet
+ // - class
+ // - host
+ //
+ // Not all of those options make sense. Please configure only those that
+ // are actually useful in your network.
+ //
+ // For a complete list of options currently supported by Kea, see
+ // Section 8.2.9 "Standard DHCPv6 Options". Kea also supports
+ // vendor options (see Section 7.2.10) and allows users to define their
+ // own custom options (see Section 7.2.9).
+ "option-data": [
+ // When specifying options, you typically need to specify
+ // one of (name or code) and data. The full option specification
+ // covers name, code, space, csv-format and data.
+ // space defaults to "dhcp6" which is usually correct, unless you
+ // use encapsulate options. csv-format defaults to "true", so
+ // this is also correct, unless you want to specify the whole
+ // option value as long hex string. For example, to specify
+ // domain-name-servers you could do this:
+ // {
+ // "name": "dns-servers",
+ // "code": 23,
+ // "csv-format": "true",
+ // "space": "dhcp6",
+ // "data": "2001:db8:2::45, 2001:db8:2::100"
+ // }
+ // but it's a lot of writing, so it's easier to do this instead:
+ {
+ "name": "dns-servers",
+ "data": "2001:db8:2::45, 2001:db8:2::100"
+ },
+
+ // Typically people prefer to refer to options by their names, so they
+ // don't need to remember the code names. However, some people like
+ // to use numerical values. For example, DHCPv6 can optionally use
+ // server unicast communication, if extra option is present. Option
+ // "unicast" uses option code 12, so you can reference to it either
+ // by "name": "unicast" or "code": 12. If you enable this option,
+ // you really should also tell the server to listen on that address
+ // (see interfaces-config/interfaces list above).
+ {
+ "code": 12,
+ "data": "2001:db8::1"
+ },
+
+ // String options that have a comma in their values need to have
+ // it escaped (i.e. each comma is preceded by two backslashes).
+ // That's because commas are reserved for separating fields in
+ // compound options. At the same time, we need to be conformant
+ // with JSON spec, that does not allow "\,". Therefore the
+ // slightly uncommon double backslashes notation is needed.
+
+ // Legal JSON escapes are \ followed by "\/bfnrt character
+ // or \u followed by 4 hexadecimal numbers (currently Kea
+ // supports only \u0000 to \u00ff code points).
+ // CSV processing translates '\\' into '\' and '\,' into ','
+ // only so for instance '\x' is translated into '\x'. But
+ // as it works on a JSON string value each of these '\'
+ // characters must be doubled on JSON input.
+ {
+ "name": "new-posix-timezone",
+ "data": "EST5EDT4\\,M3.2.0/02:00\\,M11.1.0/02:00"
+ },
+
+ // Options that take integer values can either be specified in
+ // dec or hex format. Hex format could be either plain (e.g. abcd)
+ // or prefixed with 0x (e.g. 0xabcd).
+ {
+ "name": "preference",
+ "data": "0xf0"
+ },
+
+ // A few options are encoded in (length, string) tuples
+ // which can be defined using only strings as the CSV
+ // processing computes lengths.
+ {
+ "name": "bootfile-param",
+ "data": "root=/dev/sda2, quiet, splash"
+ }
+ ],
+
+ // Another thing possible here are hooks. Kea supports a powerful mechanism
+ // that allows loading external libraries that can extract information and
+ // even influence how the server processes packets. Those libraries include
+ // additional forensic logging capabilities, ability to reserve hosts in
+ // more flexible ways, and even add extra commands. For a list of available
+ // hook libraries, see https://gitlab.isc.org/isc-projects/kea/wikis/Hooks-available.
+ // "hooks-libraries": [
+ // {
+ // // Forensic Logging library generates forensic type of audit trail
+ // // of all devices serviced by Kea, including their identifiers
+ // // (like MAC address), their location in the network, times
+ // // when they were active etc.
+ // "library": "@libdir@/kea/hooks/libdhcp_legal_log.so",
+ // "parameters": {
+ // "path": "/var/lib/kea",
+ // "base-name": "kea-forensic6"
+ // }
+ // },
+ // {
+ // // Flexible identifier (flex-id). Kea software provides a way to
+ // // handle host reservations that include addresses, prefixes,
+ // // options, client classes and other features. The reservation can
+ // // be based on hardware address, DUID, circuit-id or client-id in
+ // // DHCPv4 and using hardware address or DUID in DHCPv6. However,
+ // // there are sometimes scenario where the reservation is more
+ // // complex, e.g. uses other options that mentioned above, uses part
+ // // of specific options or perhaps even a combination of several
+ // // options and fields to uniquely identify a client. Those scenarios
+ // // are addressed by the Flexible Identifiers hook application.
+ // "library": "@libdir@/kea/hooks/libdhcp_flex_id.so",
+ // "parameters": {
+ // "identifier-expression": "relay6[0].option[37].hex"
+ // }
+ // }
+ // ],
+
+ // Below an example of a simple IPv6 subnet declaration. Uncomment to enable
+ // it. This is a list, denoted with [ ], of structures, each denoted with
+ // { }. Each structure describes a single subnet and may have several
+ // parameters. One of those parameters is "pools" that is also a list of
+ // structures.
+ "subnet6": [
+ {
+ // This defines the whole subnet. Kea will use this information to
+ // determine where the clients are connected. This is the whole
+ // subnet in your network.
+
+ // Subnet identifier should be unique for each subnet.
+ "id": 1,
+
+ // This is mandatory parameter for each subnet.
+ "subnet": "2001:db8:1::/64",
+
+ // Pools define the actual part of your subnet that is governed
+ // by Kea. Technically this is optional parameter, but it's
+ // almost always needed for DHCP to do its job. If you omit it,
+ // clients won't be able to get addresses, unless there are
+ // host reservations defined for them.
+ "pools": [ { "pool": "2001:db8:1::/80" } ],
+
+ // Kea supports prefix delegation (PD). This mechanism delegates
+ // whole prefixes, instead of single addresses. You need to specify
+ // a prefix and then size of the delegated prefixes that it will
+ // be split into. This example below tells Kea to use
+ // 2001:db8:1::/56 prefix as pool and split it into /64 prefixes.
+ // This will give you 256 (2^(64-56)) prefixes.
+ "pd-pools": [
+ {
+ "prefix": "2001:db8:8::",
+ "prefix-len": 56,
+ "delegated-len": 64
+
+ // Kea also supports excluded prefixes. This advanced option
+ // is explained in Section 9.2.9. Please make sure your
+ // excluded prefix matches the pool it is defined in.
+ // "excluded-prefix": "2001:db8:8:0:80::",
+ // "excluded-prefix-len": 72
+ }
+ ],
+ "option-data": [
+ // You can specify additional options here that are subnet
+ // specific. Also, you can override global options here.
+ {
+ "name": "dns-servers",
+ "data": "2001:db8:2::dead:beef, 2001:db8:2::cafe:babe"
+ }
+ ],
+
+ // Host reservations can be defined for each subnet.
+ //
+ // Note that reservations are subnet-specific in Kea. This is
+ // different than ISC DHCP. Keep that in mind when migrating
+ // your configurations.
+ "reservations": [
+ // This is a simple host reservation. The host with DUID matching
+ // the specified value will get an address of 2001:db8:1::100.
+ {
+ "duid": "01:02:03:04:05:0A:0B:0C:0D:0E",
+ "ip-addresses": [ "2001:db8:1::100" ]
+ },
+
+ // This is similar to the previous one, but this time the
+ // reservation is done based on hardware/MAC address. The server
+ // will do its best to extract the hardware/MAC address from
+ // received packets (see 'mac-sources' directive for
+ // details). This particular reservation also specifies two
+ // extra options to be available for this client. If there are
+ // options with the same code specified in a global, subnet or
+ // class scope, the values defined at host level take
+ // precedence.
+ {
+ "hw-address": "00:01:02:03:04:05",
+ "ip-addresses": [ "2001:db8:1::101" ],
+ "option-data": [
+ {
+ "name": "dns-servers",
+ "data": "3000:1::234"
+ },
+ {
+ "name": "nis-servers",
+ "data": "3000:1::234"
+ }],
+
+ // This client will be automatically added to certain
+ // classes.
+ "client-classes": [ "special_snowflake", "office" ]
+ },
+
+ // This is a bit more advanced reservation. The client with the
+ // specified DUID will get a reserved address, a reserved prefix
+ // and a hostname. This reservation is for an address that it
+ // not within the dynamic pool. Finally, this reservation
+ // features vendor specific options for CableLabs, which happen
+ // to use enterprise-id 4491. Those particular values will be
+ // returned only to the client that has a DUID matching this
+ // reservation.
+ {
+ "duid": "01:02:03:04:05:06:07:08:09:0A",
+ "ip-addresses": [ "2001:db8:1:0:cafe::1" ],
+ "prefixes": [ "2001:db8:2:abcd::/64" ],
+ "hostname": "foo.example.com",
+ "option-data": [
+ {
+ "name": "vendor-opts",
+ "data": "4491"
+ },
+ {
+ "name": "tftp-servers",
+ "space": "vendor-4491",
+ "data": "3000:1::234"
+ }
+ ]
+ },
+
+ // This reservation is using flexible identifier. Instead of
+ // relying on specific field, sysadmin can define an expression
+ // similar to what is used for client classification,
+ // e.g. substring(relay[0].option[17],0,6). Then, based on the
+ // value of that expression for incoming packet, the reservation
+ // is matched. Expression can be specified either as hex or
+ // plain text using single quotes.
+
+ // Note: flexible identifier requires flex_id hook library to be
+ // loaded to work.
+ {
+ "flex-id": "'somevalue'",
+ "ip-addresses": [ "2001:db8:1:0:cafe::2" ]
+ }
+ ]
+ }
+ // More subnets can be defined here.
+ // {
+ // "subnet": "2001:db8:2::/64",
+ // "pools": [ { "pool": "2001:db8:2::/80" } ]
+ // },
+ // {
+ // "subnet": "2001:db8:3::/64",
+ // "pools": [ { "pool": "2001:db8:3::/80" } ]
+ // },
+ // {
+ // "subnet": "2001:db8:4::/64",
+ // "pools": [ { "pool": "2001:db8:4::/80" } ]
+ // }
+ ],
+
+ // Client-classes can be defined here. See "client-classes" in Dhcp4 for
+ // an example.
+
+ // DDNS information (how the DHCPv6 component can reach a DDNS daemon)
+
+ // Logging configuration starts here. Kea uses different loggers to log various
+ // activities. For details (e.g. names of loggers), see Chapter 18.
+ "loggers": [
+ {
+ // This specifies the logging for kea-dhcp6 logger, i.e. all logs
+ // generated by Kea DHCPv6 server.
+ "name": "kea-dhcp6",
+ "output_options": [
+ {
+ // Specifies the output file. There are several special values
+ // supported:
+ // - stdout (prints on standard output)
+ // - stderr (prints on standard error)
+ // - syslog (logs to syslog)
+ // - syslog:name (logs to syslog using specified name)
+ // Any other value is considered a name of the file
+ "output": "@localstatedir@/log/kea-dhcp6.log"
+
+ // Shorter log pattern suitable for use with systemd,
+ // avoids redundant information
+ // "pattern": "%-5p %m\n",
+
+ // This governs whether the log output is flushed to disk after
+ // every write.
+ // "flush": false,
+
+ // This specifies the maximum size of the file before it is
+ // rotated.
+ // "maxsize": 1048576,
+
+ // This specifies the maximum number of rotated files to keep.
+ // "maxver": 8
+ }
+ ],
+ // This specifies the severity of log messages to keep. Supported values
+ // are: FATAL, ERROR, WARN, INFO, DEBUG
+ "severity": "INFO",
+
+ // If DEBUG level is specified, this value is used. 0 is least verbose,
+ // 99 is most verbose. Be cautious, Kea can generate lots and lots
+ // of logs if told to do so.
+ "debuglevel": 0
+ }
+ ]
+}
+}
diff --git a/src/bin/keactrl/kea-netconf.conf.pre b/src/bin/keactrl/kea-netconf.conf.pre
new file mode 100644
index 0000000..37d15b1
--- /dev/null
+++ b/src/bin/keactrl/kea-netconf.conf.pre
@@ -0,0 +1,101 @@
+// This is a basic configuration for the Kea Netconf agent.
+//
+// This is just a very basic configuration. Kea comes with large suite (over 30)
+// of configuration examples and extensive Kea User's Guide. Please refer to
+// those materials to get better understanding of what this software is able to
+// do. Comments in this configuration file sometimes refer to sections for more
+// details. These are section numbers in Kea User's Guide. The version matching
+// your software should come with your Kea package, but it is also available
+// in ISC's Knowledgebase
+// (https://kea.readthedocs.io;
+// the direct link for the stable version is
+// https://kea.readthedocs.io/).
+//
+// This configuration file contains only Netconf's configuration.
+// If configurations for other Kea services are also included in this file they
+// are ignored by the Netconf agent.
+{
+
+// This is a basic configuration for the Kea Netconf.
+"Netconf": {
+ "boot-update": true,
+ "subscribe-changes": true,
+ "validate-changes": true,
+
+ // Specify services the Netconf agent manages including files
+ // should connect to forward commands to the DHCPv4 and DHCPv6
+ // server via unix domain socket.
+ "managed-servers":
+ {
+ "dhcp4": {
+ "control-socket": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea4-ctrl-socket"
+ }
+ },
+ "dhcp6": {
+ "control-socket": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea6-ctrl-socket"
+ }
+ }
+ },
+
+ // Specify hooks libraries that are attached to the Netconf agent.
+ // Note currently there is no defined hook points to attach to.
+ // This is currently commented out because it has to point to the
+ // existing hooks library or the Netconf agent will fail to start.
+// "hooks-libraries": [
+// {
+// "library": "@libdir@/kea/hooks/netconf-commands.so",
+// "parameters": {
+// "param1": "foo"
+// }
+// }
+// ]
+
+// Logging configuration starts here. Kea uses different loggers to log various
+// activities. For details (e.g. names of loggers), see Chapter 18.
+ "loggers": [
+ {
+ // This specifies the logging for Netconf daemon.
+ "name": "kea-netconf",
+ "output_options": [
+ {
+ // Specifies the output file. There are several special values
+ // supported:
+ // - stdout (prints on standard output)
+ // - stderr (prints on standard error)
+ // - syslog (logs to syslog)
+ // - syslog:name (logs to syslog using specified name)
+ // Any other value is considered a name of a time
+ "output": "@localstatedir@/log/kea-netconf.log"
+
+ // Shorter log pattern suitable for use with systemd,
+ // avoids redundant information
+ // "pattern": "%-5p %m\n"
+
+ // This governs whether the log output is flushed to disk after
+ // every write.
+ // "flush": false,
+
+ // This specifies the maximum size of the file before it is
+ // rotated.
+ // "maxsize": 1048576,
+
+ // This specifies the maximum number of rotated files to keep.
+ // "maxver": 8
+ }
+ ],
+ // This specifies the severity of log messages to keep. Supported values
+ // are: FATAL, ERROR, WARN, INFO, DEBUG
+ "severity": "INFO",
+
+ // If DEBUG level is specified, this value is used. 0 is least verbose,
+ // 99 is most verbose. Be cautious, Kea can generate lots and lots
+ // of logs if told to do so.
+ "debuglevel": 0
+ }
+ ]
+}
+}
diff --git a/src/bin/keactrl/keactrl.conf.in b/src/bin/keactrl/keactrl.conf.in
new file mode 100644
index 0000000..792e671
--- /dev/null
+++ b/src/bin/keactrl/keactrl.conf.in
@@ -0,0 +1,46 @@
+#!/bin/sh
+
+# This is a configuration file for keactrl script which controls
+# the startup, shutdown, reconfiguration and gathering the status
+# of the Kea's processes.
+
+# Note that control agent must be launched after servers and netconf last.
+
+# shellcheck disable=SC2034
+# SC2034: ... appears unused. Verify use (or export if used externally).
+
+# prefix holds the location where the Kea is installed.
+prefix="@prefix@"
+
+# Location of Kea configuration files.
+kea_dhcp4_config_file="@sysconfdir@/@PACKAGE@/kea-dhcp4.conf"
+kea_dhcp6_config_file="@sysconfdir@/@PACKAGE@/kea-dhcp6.conf"
+kea_dhcp_ddns_config_file="@sysconfdir@/@PACKAGE@/kea-dhcp-ddns.conf"
+kea_ctrl_agent_config_file="@sysconfdir@/@PACKAGE@/kea-ctrl-agent.conf"
+kea_netconf_config_file="@sysconfdir@/@PACKAGE@/kea-netconf.conf"
+
+# Location of Kea binaries.
+exec_prefix="@exec_prefix@"
+dhcp4_srv="@sbindir@/kea-dhcp4"
+dhcp6_srv="@sbindir@/kea-dhcp6"
+dhcp_ddns_srv="@sbindir@/kea-dhcp-ddns"
+ctrl_agent_srv="@sbindir@/kea-ctrl-agent"
+netconf_srv="@sbindir@/kea-netconf"
+
+# Start DHCPv4 server?
+dhcp4=yes
+
+# Start DHCPv6 server?
+dhcp6=yes
+
+# Start DHCP DDNS server?
+dhcp_ddns=no
+
+# Start Control Agent?
+ctrl_agent=yes
+
+# Start Netconf?
+netconf=no
+
+# Be verbose?
+kea_verbose=no
diff --git a/src/bin/keactrl/keactrl.in b/src/bin/keactrl/keactrl.in
new file mode 100644
index 0000000..450e997
--- /dev/null
+++ b/src/bin/keactrl/keactrl.in
@@ -0,0 +1,599 @@
+#!/bin/sh
+
+# Copyright (C) 2014-2022 Internet Systems Consortium, Inc. ("ISC")
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# This is keactrl script responsible for starting up Kea processes.
+# This script is used to run Kea from installation directory,
+# as well as for running tests.
+
+# shellcheck disable=SC2034
+# SC2034: ... appears unused. Verify use (or export if used externally).
+
+# shellcheck disable=SC2039
+# SC2039: In POSIX sh, 'local' is undefined.
+
+# shellcheck disable=SC2154
+# SC2154: ... is referenced but not assigned.
+# Reason: some variables are taken from keactrl.conf
+
+# Exit with error if commands exit with non-zero and if undefined variables are
+# used.
+set -eu
+
+VERSION="@PACKAGE_VERSION@"
+
+# Set the have_netconf flag to know if netconf is available.
+if test '@HAVE_NETCONF@' = 'yes'; then
+ have_netconf=true
+else
+ have_netconf=false
+fi
+
+### Logging functions ###
+
+# Logs message at the error level.
+log_error() {
+ printf "ERROR/keactrl: %s\n" "${1}"
+}
+
+# Logs message at the warning level.
+log_warning() {
+ printf "WARNING/keactrl: %s\n" "${1}"
+}
+
+# Logs message at the info level.
+log_info() {
+ printf "INFO/keactrl: %s\n" "${1}"
+}
+
+### Convenience functions ###
+
+# Checks if the value is in the list. An example usage of this function
+# is to determine whether the keactrl command belongs to the list of
+# supported commands.
+is_in_list() {
+ local member="${1-}" # Value to be checked
+ local list="${2-}" # Comma separated list of items
+ _inlist=0 # Return value: 0 if not in list, 1 otherwise.
+ if [ -z "${member}" ]; then
+ log_error "missing ${member}"
+ fi
+ # Iterate over all items on the list and compare with the member.
+ # If they match, return, otherwise log error and exit.
+ for item in ${list}
+ do
+ if [ "${item}" = "${member}" ]; then
+ _inlist=1
+ return
+ fi
+ done
+}
+
+# Prints keactrl usage.
+usage() {
+ printf "usage is %s command [-c keactrl-config-file] [-s server[,server,..]]\n" \
+ "$(basename -- "${0}")"
+ printf "commands: start stop reload status version\n"
+}
+
+### Functions managing Kea processes ###
+# Constructs a server's PID file based on its binary name, the config file,
+# and the --localstatedir and returns the contents as $_pid. If the file
+# does not exist, the value of $_pid is 0. If the file exists but cannot
+# be read the function exists with a error message. Note the PID file name
+# is always returned in $_pid_file.
+
+# There are some variables set in /etc/kea/keactrl.conf that's included here.
+# Since we run shellcheck against keactrl.in rather than an installed file,
+# we get false warnings about the variable being referenced but not assigned.
+get_pid_from_file() {
+ local proc_name="${1}" # Process name.
+
+ local kea_config_file=
+ case ${proc_name} in
+ kea-dhcp4)
+ kea_config_file=${kea_dhcp4_config_file}
+ ;;
+ kea-dhcp6)
+ kea_config_file=${kea_dhcp6_config_file}
+ ;;
+ kea-dhcp-ddns)
+ kea_config_file=${kea_dhcp_ddns_config_file}
+ ;;
+ kea-ctrl-agent)
+ kea_config_file=${kea_ctrl_agent_config_file}
+ ;;
+ kea-netconf)
+ kea_config_file=${kea_netconf_config_file}
+ ;;
+ esac
+
+ # Extract the name portion (from last slash to last dot) of the config file name
+ # File name and extension are documented in src/lib/util/filename.h
+ local conf_name
+ conf_name=$(basename -- "${kea_config_file}" | rev | cut -f2- -d'.' | rev)
+
+ # Default the directory to --localstatedir / run
+ local pid_file_dir
+ pid_file_dir="@runstatedir@/@PACKAGE@"
+
+ # Use directory override if set (primarily for testing only)
+ if test -n "${KEA_PIDFILE_DIR+x}"; then
+ pid_file_dir=${KEA_PIDFILE_DIR}
+ fi
+
+ # construct the PID file name
+ _pid_file="${pid_file_dir}/${conf_name}.${proc_name}.pid"
+
+ # Grab the PID if the file exists
+ _pid=$(cat "${_pid_file}" 2> /dev/null || true)
+ if test -z "${_pid}"; then
+ # No file, means no pid
+ _pid=0;
+ fi
+}
+
+
+# Checks if the specified process is running by reading its
+# PID file and checking the PID it contains. If the file does
+# not exist, the process is assumed to not be running.
+check_running() {
+ local proc_name="${1}" # Process name.
+ # Initially mark the process as not running.
+ _running=0
+
+ # Get the PID from the PID file (if it exists)
+ get_pid_from_file "${proc_name}"
+ if [ ${_pid} -gt 0 ]; then
+ # Use ps to check if PID is alive
+ if ps -p ${_pid} 1>/dev/null; then
+ # No error, so PID IS ALIVE
+ _running=1
+ fi
+ fi
+}
+
+# Sends a signal to a process based on its PID file
+send_signal() {
+ local sig="${1}" # Signal number
+ local proc_name="${2}" # Process name.
+
+ get_pid_from_file "${proc_name}"
+ if [ "${_pid}" -eq 0 ]; then
+ log_info "Skip sending signal ${sig} to process ${proc_name}: \
+process is not running"
+ else
+ if ! kill "-${sig}" "${_pid}"; then
+ log_error "Failed to send signal ${sig} to process ${proc_name}, PID {$_pid}."
+ fi
+ fi
+}
+
+# Start the Kea process. Do not start the process if there is an instance
+# already running.
+start_server() {
+ binary_path=${1} # Full path to the binary.
+ # Extract the name of the binary from the path.
+ local binary_name
+ binary_name=$(basename -- "${binary_path}")
+ # Use the binary name to check if the process is already running.
+ check_running "${binary_name}"
+ # If process is running, don't start another one. Just log a message.
+ if [ "${_running}" -ne 0 ]; then
+ log_info "${binary_name} appears to be running, see: \
+PID ${_pid}, PID file: ${_pid_file}."
+ else
+ log_info "Starting ${*}"
+ # Start the process.
+ "${@}" &
+ fi
+}
+
+# Instruct Kea process to shutdown by sending it signal 15
+stop_server() {
+ binary_path=${1} # Full path to the binary.
+ local sig=15
+ # Extract the name of the binary from the path.
+ local binary_name
+ binary_name=$(basename -- "${binary_path}")
+
+ # Use the binary name to check if the process is already running.
+ check_running "${binary_name}"
+ # If process isn't running, don't start another one. Just log a message.
+ if [ "${_running}" -eq 0 ]; then
+ log_info "${binary_name} isn't running."
+ else
+ log_info "Stopping ${binary_name}..."
+ if ! kill "-${sig}" "${_pid}"; then
+ log_error "Stop failed, could not send signal ${sig} \
+to process ${proc_name}, PID ${_pid}."
+ fi
+ fi
+}
+
+# Instruct Kea process to reload config by sending it signal 1
+reload_server() {
+ binary_path=${1} # Full path to the binary.
+ local sig=1
+ # Extract the name of the binary from the path.
+ local binary_name
+ binary_name=$(basename -- "${binary_path}")
+
+ # Use the binary name to check if the process is already running.
+ check_running "${binary_name}"
+ # If process isn't running, don't start another one. Just log a message.
+ if [ "${_running}" -eq 0 ]; then
+ log_info "${binary_name} isn't running."
+ else
+ log_info "Reloading ${binary_name}..."
+ if ! kill "-${sig}" "${_pid}"; then
+ log_error "Reload failed, could not send signal ${sig} \
+to process ${proc_name}, PID ${_pid}."
+ fi
+ fi
+}
+
+# Print Kea daemon version
+print_version() {
+ name=${1}
+ binary_path=${2}
+
+ if [ -e "${binary_path}" ]; then
+ if ! ver=$(${binary_path} -v); then
+ log_error "Error checking version of binary file: ${binary_path}"
+ fi
+ else
+ # No file, means no pid
+ ver="unknown, ${binary_path} missing";
+ fi
+
+ echo "${name}: ${ver}"
+}
+
+### Functions testing the existence of the Kea config file
+
+# Check if the Kea configuration file location has been specified in the
+# keactrl configuration file. If not, it is a warning or a fatal error.
+check_kea_conf() {
+ local conf_file="${1-}" # Kea config file name.
+ if [ -z "${conf_file}" ]; then
+ log_error "Configuration file for Kea not specified."
+ exit 1
+ elif [ ! -f "${conf_file}" ]; then
+ log_error "Configuration file for Kea does not exist: ${conf_file}."
+ exit 1
+ fi
+}
+
+# Run the specified command if the server has been enabled.
+# In order for the command to run, the following conditions have to be met:
+# - server must be on the list of servers (e.g. specified from command line)
+# or servers must contain all
+# - if check_file_cfg is non zero, the server must be enabled in the
+# configuration file, so the variable named after server name should exist
+# and be set to yes, e.g. ${dhcp4} should be equal to yes if server name
+# is dhcp4
+run_conditional() {
+ local server="${1}" # Server name: dhcp4, dhcp6, dhcp_ddns, ctrl_agent, netconf
+ local commands="${2}" # Commands to execute
+ local check_file_cfg="${3}" # Check if server enabled in the configuration file
+ local is_all=0 # is all servers or a specific one
+
+ # If keyword "all" is not on the list of servers we will have to check
+ # if our specific server is on the list. If, not return.
+ is_in_list "all" "${servers}"
+ if [ "${_inlist}" -eq 0 ]; then
+ is_in_list "${server}" "${servers}"
+ if [ "${_inlist}" -eq 0 ]; then
+ return
+ fi
+ else
+ is_all=1
+ fi
+ # Return for for netconf when not available.
+ if [ "${server}" = "netconf" ]; then
+ if ! ${have_netconf}; then
+ return
+ fi
+ # reload is not supported for netconf.
+ if [ "${command}" = "reload" ]; then
+ if [ "${is_all}" -eq 1 ]; then
+ return
+ fi
+ log_warning "netconf does not support reload"
+ return
+ fi
+ fi
+
+ # Get the configuration value of the keactrl which indicates whether
+ # the server should be enabled or not. Variables that hold these values
+ # are: ${dhcp4}, ${dhcp6}, ${dhcp_ddns}.
+ local file_config
+ file_config=$( eval printf "%s" "\${$server}" )
+ # Run the commands if we ignore the configuration setting or if the
+ # setting is "yes".
+ if [ "${check_file_cfg}" -eq 0 ] || [ "${file_config}" = "yes" ]; then
+ ${commands}
+ fi
+}
+
+### Script starts here ###
+
+# Configure logger to log messages into the file.
+# Do not set destination if the KEA_LOGGER_DESTINATION is set,
+# because a unit test could have set this to some other location.
+# Note that when the configuration is applied this location may be
+# altered and only the handful of initial messages will be logged
+# to the default file.
+if [ -z "${KEA_LOGGER_DESTINATION+x}" ]; then
+ prefix="@prefix@"
+ export KEA_LOGGER_DESTINATION="@localstatedir@/log/kea.log"
+fi
+
+command=${1-}
+if [ -z "${command}" ]; then
+ log_error "missing command"
+ usage
+ exit 1
+fi
+
+# Check if this is a simple question about version.
+if test "${command}" = "-v" || test "${command}" = "--version" ; then
+ echo "${VERSION}"
+ exit 0
+fi
+
+is_in_list "${command}" "start stop reload status version"
+if [ "${_inlist}" -eq 0 ]; then
+ log_error "invalid command: ${command}"
+ exit 1
+fi
+
+# Get the location of the keactrl configuration file.
+prefix="@prefix@"
+localstatedir="@localstatedir@"
+keactrl_conf="@sysconfdir@/@PACKAGE@/keactrl.conf"
+
+servers="all"
+
+shift
+while test ${#} -gt 0
+do
+ option=${1}
+ case ${option} in
+ # Override keactrl configuration file.
+ -c|--ctrl-config)
+ shift
+ keactrl_conf=${1-}
+ if [ -z "${keactrl_conf}" ]; then
+ log_error "keactrl-config-file not specified"
+ usage
+ exit 1
+ fi
+ ;;
+ # Get the specific servers for which the command will be
+ # executed.
+ -s|--server)
+ shift
+ servers=$(printf '%s' "${1-}" | tr ',' '\n')
+ if [ -z "${servers}" ]; then
+ log_error "servers not specified"
+ usage
+ exit 1
+ fi
+ # Validate that the specified server names are correct.
+ for s in ${servers}
+ do
+ server_list="all dhcp4 dhcp6 dhcp_ddns ctrl_agent"
+ if ${have_netconf}; then
+ server_list="${server_list} netconf"
+ fi
+ is_in_list "${s}" "${server_list}"
+ if [ "${_inlist}" -eq 0 ]; then
+ log_error "invalid server name: ${s}"
+ exit 1
+ fi
+ done
+ ;;
+ *)
+ log_error "invalid option: ${option}"
+ usage
+ exit 1
+ esac
+ shift
+done
+
+# Check if the file exists. If it doesn't, it is a fatal error.
+if [ ! -f "${keactrl_conf}" ]; then
+ log_error "keactrl configuration file doesn't exist in ${keactrl_conf}."
+ exit 1
+fi
+
+# Include the configuration file.
+# Shellcheck complaints about not being to follow the source. Let's ingore it.
+# shellcheck disable=SC1090
+. "${keactrl_conf}"
+
+# Get location of the DHCPv4 server binary.
+if [ -z "${dhcp4_srv+x}" ]; then
+ log_error "dhcp4_srv parameter not specified"
+ exit 1
+fi
+
+# Get location of the DHCPv6 server binary.
+if [ -z "${dhcp6_srv+x}" ]; then
+ log_error "dhcp6_srv parameter not specified"
+ exit 1
+fi
+
+# Get location of the DHCP DDNS server binary.
+if [ -z "${dhcp_ddns+x}" ]; then
+ log_error "dhcp_ddns parameter not specified"
+ exit 1
+fi
+
+# Get location of the Control Agent binary.
+if [ -z "${ctrl_agent_srv+x}" ]; then
+ log_error "ctrl_agent_srv parameter not specified"
+ exit 1
+fi
+
+# Get location of the Netconf binary.
+if ${have_netconf}; then
+ if [ -z "${netconf_srv+x}" ]; then
+ log_error "netconf_srv parameter not specified"
+ exit 1
+ fi
+fi
+
+# dhcp4 and dhcp6 (=yes) indicate if we should start DHCPv4 and DHCPv6 server
+# respectively. The same is true for ddns, ctrl-agent and netconf.
+dhcp4=$( printf "%s" "${dhcp4}" | tr '[:upper:]' '[:lower:]' )
+dhcp6=$( printf "%s" "${dhcp6}" | tr '[:upper:]' '[:lower:]' )
+dhcp_ddns=$( printf "%s" "${dhcp_ddns}" | tr '[:upper:]' '[:lower:]' )
+ctrl_agent=$( printf "%s" "${ctrl_agent}" | tr '[:upper:]' '[:lower:]' )
+if ${have_netconf}; then
+ netconf=$( printf "%s" "${netconf}" | tr '[:upper:]' '[:lower:]' )
+fi
+
+case ${command} in
+ # Start the servers.
+ start)
+ args=""
+ # kea_verbose is set in keactrl.conf that shellcheck is unable to load.
+ if [ "${kea_verbose}" = "yes" ]; then
+ args="-d"
+ fi
+
+ # Run servers if they are on the list of servers from the command line
+ # and if they are enabled in the keactrl configuration file.
+ # The variables (dhcp4_srv, dhcp6_serv, dhcp_ddns_srv etc) are set in the
+ # keactrl.conf file that shellcheck is unable to read.
+ run_conditional "dhcp4" "start_server ${dhcp4_srv} -c ${kea_dhcp4_config_file} ${args}" 1
+ run_conditional "dhcp6" "start_server ${dhcp6_srv} -c ${kea_dhcp6_config_file} ${args}" 1
+ run_conditional "dhcp_ddns" "start_server ${dhcp_ddns_srv} -c ${kea_dhcp_ddns_config_file} \
+${args}" 1
+ run_conditional "ctrl_agent" "start_server ${ctrl_agent_srv} -c ${kea_ctrl_agent_config_file} \
+${args}" 1
+ if ${have_netconf}; then
+ run_conditional "netconf" "start_server ${netconf_srv} -c ${kea_netconf_config_file} \
+${args}" 1
+ fi
+
+ exit 0 ;;
+
+ # Stop running servers.
+ stop)
+ # Stop all servers or servers specified from the command line.
+ run_conditional "dhcp4" "stop_server ${dhcp4_srv}" 0
+ run_conditional "dhcp6" "stop_server ${dhcp6_srv}" 0
+ run_conditional "dhcp_ddns" "stop_server ${dhcp_ddns_srv}" 0
+ run_conditional "ctrl_agent" "stop_server ${ctrl_agent_srv}" 0
+ if ${have_netconf}; then
+ run_conditional "netconf" "stop_server ${netconf_srv}" 0
+ fi
+
+ exit 0 ;;
+
+ # Reconfigure the servers.
+ reload)
+ # Reconfigure all servers or servers specified from the command line.
+ run_conditional "dhcp4" "reload_server ${dhcp4_srv}" 0
+ run_conditional "dhcp6" "reload_server ${dhcp6_srv}" 0
+ run_conditional "dhcp_ddns" "reload_server ${dhcp_ddns_srv}" 0
+ run_conditional "ctrl_agent" "reload_server ${ctrl_agent_srv}" 0
+ if ${have_netconf}; then
+ run_conditional "netconf" "reload_server ${netconf_srv}" 0
+ fi
+
+ exit 0 ;;
+
+ status)
+ if [ -t 1 ]; then
+ inactive="\033[91minactive\033[0m"
+ active="\033[92mactive\033[0m"
+ else
+ inactive="inactive"
+ active="active"
+ fi
+
+ kea4_status=$inactive
+ # This case of nested double quotes looks confusing, but it is actually
+ # correct. For details, see this fine explanation:
+ # https://unix.stackexchange.com/questions/443989/whats-the-right-way-to-quote-command-arg
+ check_running "$(basename -- "${dhcp4_srv}")"
+ if [ "${_running}" -eq 1 ]; then
+ kea4_status=$active
+ fi
+ printf "DHCPv4 server: %b\n" "${kea4_status}"
+
+ kea6_status=$inactive
+ check_running "$(basename -- "${dhcp6_srv}")"
+ if [ "${_running}" -eq 1 ]; then
+ kea6_status=$active
+ fi
+ printf "DHCPv6 server: %b\n" "${kea6_status}"
+
+ d2_status=$inactive
+ check_running "$(basename -- "${dhcp_ddns_srv}")"
+ if [ "${_running}" -eq 1 ]; then
+ d2_status=$active
+ fi
+ printf "DHCP DDNS: %b\n" "${d2_status}"
+
+ agent_status=$inactive
+ check_running "$(basename -- "${ctrl_agent_srv}")"
+ if [ "${_running}" -eq 1 ]; then
+ agent_status=$active
+ fi
+ printf "Control Agent: %b\n" "${agent_status}"
+
+ if ${have_netconf}; then
+ netconf_status=$inactive
+ check_running "$(basename -- "${netconf_srv}")"
+ if [ "${_running}" -eq 1 ]; then
+ netconf_status=$active
+ fi
+ printf "Netconf agent: %b\n" "${netconf_status}"
+ fi
+
+ printf "Kea DHCPv4 configuration file: %s\n" "${kea_dhcp4_config_file}"
+ printf "Kea DHCPv6 configuration file: %s\n" "${kea_dhcp6_config_file}"
+ printf "Kea DHCP DDNS configuration file: %s\n" "${kea_dhcp_ddns_config_file}"
+ printf "Kea Control Agent configuration file: %s\n" "${kea_ctrl_agent_config_file}"
+ if ${have_netconf}; then
+ printf "Kea Netconf configuration file: %s\n" "${kea_netconf_config_file}"
+ fi
+ printf "keactrl configuration file: %s\n" "${keactrl_conf}"
+
+ check_kea_conf "${kea_dhcp4_config_file}"
+ check_kea_conf "${kea_dhcp6_config_file}"
+ check_kea_conf "${kea_dhcp_ddns_config_file}"
+ check_kea_conf "${kea_ctrl_agent_config_file}"
+ if ${have_netconf}; then
+ check_kea_conf "${kea_netconf_config_file}"
+ fi
+
+ exit 0 ;;
+
+ version)
+ echo "keactrl: ${VERSION}"
+ run_conditional "dhcp4" "print_version kea-dhcp4 ${dhcp4_srv}" 0
+ run_conditional "dhcp6" "print_version kea-dhcp6 ${dhcp6_srv}" 0
+ run_conditional "dhcp_ddns" "print_version kea-dhcp-ddns ${dhcp_ddns_srv}" 0
+ run_conditional "ctrl_agent" "print_version kea-ctrl-agent ${ctrl_agent_srv}" 0
+ if ${have_netconf}; then
+ run_conditional "netconf" "print_version kea-netconf ${netconf_srv}" 0
+ fi
+
+ exit 0 ;;
+
+ # No other commands are supported.
+ *)
+ log_error "Invalid command: ${command}."
+ exit 1 ;;
+esac
diff --git a/src/bin/keactrl/tests/Makefile.am b/src/bin/keactrl/tests/Makefile.am
new file mode 100644
index 0000000..e2b6d94
--- /dev/null
+++ b/src/bin/keactrl/tests/Makefile.am
@@ -0,0 +1,19 @@
+SUBDIRS = .
+
+# Shell tests
+SHTESTS = keactrl_tests.sh
+
+# As with every file generated by ./configure, clean them up when running
+# "make distclean", but not on "make clean".
+DISTCLEANFILES = $(SHTESTS)
+
+if HAVE_GTEST
+
+# Run shell tests on "make check".
+check_SCRIPTS = $(SHTESTS)
+TESTS = $(SHTESTS)
+
+endif
+
+# Don't install shell tests.
+noinst_SCRIPTS = $(SHTESTS)
diff --git a/src/bin/keactrl/tests/Makefile.in b/src/bin/keactrl/tests/Makefile.in
new file mode 100644
index 0000000..84b8710
--- /dev/null
+++ b/src/bin/keactrl/tests/Makefile.in
@@ -0,0 +1,865 @@
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+VPATH = @srcdir@
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
+ case $$MAKEFLAGS in \
+ *\\[\ \ ]*) \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
+pkgdatadir = $(datadir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkglibexecdir = $(libexecdir)/@PACKAGE@
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+subdir = src/bin/keactrl/tests
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/m4macros/ax_boost_for_kea.m4 \
+ $(top_srcdir)/m4macros/ax_cpp11.m4 \
+ $(top_srcdir)/m4macros/ax_cpp20.m4 \
+ $(top_srcdir)/m4macros/ax_crypto.m4 \
+ $(top_srcdir)/m4macros/ax_find_library.m4 \
+ $(top_srcdir)/m4macros/ax_gssapi.m4 \
+ $(top_srcdir)/m4macros/ax_gtest.m4 \
+ $(top_srcdir)/m4macros/ax_isc_rpath.m4 \
+ $(top_srcdir)/m4macros/ax_netconf.m4 \
+ $(top_srcdir)/m4macros/libtool.m4 \
+ $(top_srcdir)/m4macros/ltoptions.m4 \
+ $(top_srcdir)/m4macros/ltsugar.m4 \
+ $(top_srcdir)/m4macros/ltversion.m4 \
+ $(top_srcdir)/m4macros/lt~obsolete.m4 \
+ $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
+mkinstalldirs = $(install_sh) -d
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES = keactrl_tests.sh
+CONFIG_CLEAN_VPATH_FILES =
+SCRIPTS = $(noinst_SCRIPTS)
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
+SOURCES =
+DIST_SOURCES =
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
+ ctags-recursive dvi-recursive html-recursive info-recursive \
+ install-data-recursive install-dvi-recursive \
+ install-exec-recursive install-html-recursive \
+ install-info-recursive install-pdf-recursive \
+ install-ps-recursive install-recursive installcheck-recursive \
+ installdirs-recursive pdf-recursive ps-recursive \
+ tags-recursive uninstall-recursive
+am__can_run_installinfo = \
+ case $$AM_UPDATE_INFO_DIR in \
+ n|no|NO) false;; \
+ *) (install-info --version) >/dev/null 2>&1;; \
+ esac
+RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
+ distclean-recursive maintainer-clean-recursive
+am__recursive_targets = \
+ $(RECURSIVE_TARGETS) \
+ $(RECURSIVE_CLEAN_TARGETS) \
+ $(am__extra_recursive_targets)
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
+ distdir distdir-am
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
+ETAGS = etags
+CTAGS = ctags
+am__tty_colors_dummy = \
+ mgn= red= grn= lgn= blu= brg= std=; \
+ am__color_tests=no
+am__tty_colors = { \
+ $(am__tty_colors_dummy); \
+ if test "X$(AM_COLOR_TESTS)" = Xno; then \
+ am__color_tests=no; \
+ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
+ am__color_tests=yes; \
+ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
+ am__color_tests=yes; \
+ fi; \
+ if test $$am__color_tests = yes; then \
+ red=''; \
+ grn=''; \
+ lgn=''; \
+ blu=''; \
+ mgn=''; \
+ brg=''; \
+ std=''; \
+ fi; \
+}
+DIST_SUBDIRS = $(SUBDIRS)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/keactrl_tests.sh.in
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+am__relativize = \
+ dir0=`pwd`; \
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
+ sed_rest='s,^[^/]*/*,,'; \
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
+ sed_butlast='s,/*[^/]*$$,,'; \
+ while test -n "$$dir1"; do \
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
+ if test "$$first" != "."; then \
+ if test "$$first" = ".."; then \
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
+ else \
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
+ if test "$$first2" = "$$first"; then \
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
+ else \
+ dir2="../$$dir2"; \
+ fi; \
+ dir0="$$dir0"/"$$first"; \
+ fi; \
+ fi; \
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
+ done; \
+ reldir="$$dir2"
+ACLOCAL = @ACLOCAL@
+AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+AR = @AR@
+ASCIIDOC = @ASCIIDOC@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+BOOST_INCLUDES = @BOOST_INCLUDES@
+BOOST_LIBS = @BOOST_LIBS@
+BOTAN_TOOL = @BOTAN_TOOL@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CONTRIB_DIR = @CONTRIB_DIR@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CRYPTO_CFLAGS = @CRYPTO_CFLAGS@
+CRYPTO_INCLUDES = @CRYPTO_INCLUDES@
+CRYPTO_LDFLAGS = @CRYPTO_LDFLAGS@
+CRYPTO_LIBS = @CRYPTO_LIBS@
+CRYPTO_PACKAGE = @CRYPTO_PACKAGE@
+CRYPTO_RPATH = @CRYPTO_RPATH@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+DISTCHECK_BOOST_CONFIGURE_FLAG = @DISTCHECK_BOOST_CONFIGURE_FLAG@
+DISTCHECK_CONTRIB_CONFIGURE_FLAG = @DISTCHECK_CONTRIB_CONFIGURE_FLAG@
+DISTCHECK_CRYPTO_CONFIGURE_FLAG = @DISTCHECK_CRYPTO_CONFIGURE_FLAG@
+DISTCHECK_GSSAPI_CONFIGURE_FLAG = @DISTCHECK_GSSAPI_CONFIGURE_FLAG@
+DISTCHECK_GTEST_CONFIGURE_FLAG = @DISTCHECK_GTEST_CONFIGURE_FLAG@
+DISTCHECK_KEA_SHELL_CONFIGURE_FLAG = @DISTCHECK_KEA_SHELL_CONFIGURE_FLAG@
+DISTCHECK_LIBYANGCPP_CONFIGURE_FLAG = @DISTCHECK_LIBYANGCPP_CONFIGURE_FLAG@
+DISTCHECK_LIBYANG_CONFIGURE_FLAG = @DISTCHECK_LIBYANG_CONFIGURE_FLAG@
+DISTCHECK_LOG4CPLUS_CONFIGURE_FLAG = @DISTCHECK_LOG4CPLUS_CONFIGURE_FLAG@
+DISTCHECK_MYSQL_CONFIGURE_FLAG = @DISTCHECK_MYSQL_CONFIGURE_FLAG@
+DISTCHECK_PERFDHCP_CONFIGURE_FLAG = @DISTCHECK_PERFDHCP_CONFIGURE_FLAG@
+DISTCHECK_PGSQL_CONFIGURE_FLAG = @DISTCHECK_PGSQL_CONFIGURE_FLAG@
+DISTCHECK_PREMIUM_CONFIGURE_FLAG = @DISTCHECK_PREMIUM_CONFIGURE_FLAG@
+DISTCHECK_SYSREPOCPP_CONFIGURE_FLAG = @DISTCHECK_SYSREPOCPP_CONFIGURE_FLAG@
+DISTCHECK_SYSREPO_CONFIGURE_FLAG = @DISTCHECK_SYSREPO_CONFIGURE_FLAG@
+DLLTOOL = @DLLTOOL@
+DSYMUTIL = @DSYMUTIL@
+DUMPBIN = @DUMPBIN@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+FGREP = @FGREP@
+GENHTML = @GENHTML@
+GREP = @GREP@
+GSSAPI_CFLAGS = @GSSAPI_CFLAGS@
+GSSAPI_LIBS = @GSSAPI_LIBS@
+GTEST_CONFIG = @GTEST_CONFIG@
+GTEST_INCLUDES = @GTEST_INCLUDES@
+GTEST_LDADD = @GTEST_LDADD@
+GTEST_LDFLAGS = @GTEST_LDFLAGS@
+GTEST_SOURCE = @GTEST_SOURCE@
+HAVE_NETCONF = @HAVE_NETCONF@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+KEA_CXXFLAGS = @KEA_CXXFLAGS@
+KEA_SRCID = @KEA_SRCID@
+KRB5_CONFIG = @KRB5_CONFIG@
+LCOV = @LCOV@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LEX = @LEX@
+LEXLIB = @LEXLIB@
+LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LIBYANGCPP_CPPFLAGS = @LIBYANGCPP_CPPFLAGS@
+LIBYANGCPP_INCLUDEDIR = @LIBYANGCPP_INCLUDEDIR@
+LIBYANGCPP_LIBS = @LIBYANGCPP_LIBS@
+LIBYANGCPP_PREFIX = @LIBYANGCPP_PREFIX@
+LIBYANGCPP_VERSION = @LIBYANGCPP_VERSION@
+LIBYANG_CPPFLAGS = @LIBYANG_CPPFLAGS@
+LIBYANG_INCLUDEDIR = @LIBYANG_INCLUDEDIR@
+LIBYANG_LIBS = @LIBYANG_LIBS@
+LIBYANG_PREFIX = @LIBYANG_PREFIX@
+LIBYANG_VERSION = @LIBYANG_VERSION@
+LIPO = @LIPO@
+LN_S = @LN_S@
+LOG4CPLUS_INCLUDES = @LOG4CPLUS_INCLUDES@
+LOG4CPLUS_LIBS = @LOG4CPLUS_LIBS@
+LTLIBOBJS = @LTLIBOBJS@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
+MAKEINFO = @MAKEINFO@
+MANIFEST_TOOL = @MANIFEST_TOOL@
+MKDIR_P = @MKDIR_P@
+MYSQL_CPPFLAGS = @MYSQL_CPPFLAGS@
+MYSQL_LIBS = @MYSQL_LIBS@
+NM = @NM@
+NMEDIT = @NMEDIT@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+OTOOL = @OTOOL@
+OTOOL64 = @OTOOL64@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PACKAGE_VERSION_TYPE = @PACKAGE_VERSION_TYPE@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+PDFLATEX = @PDFLATEX@
+PERL = @PERL@
+PGSQL_CPPFLAGS = @PGSQL_CPPFLAGS@
+PGSQL_LIBS = @PGSQL_LIBS@
+PKGPYTHONDIR = @PKGPYTHONDIR@
+PKG_CONFIG = @PKG_CONFIG@
+PLANTUML = @PLANTUML@
+PREMIUM_DIR = @PREMIUM_DIR@
+PYTHON = @PYTHON@
+PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
+PYTHON_PLATFORM = @PYTHON_PLATFORM@
+PYTHON_PREFIX = @PYTHON_PREFIX@
+PYTHON_VERSION = @PYTHON_VERSION@
+RANLIB = @RANLIB@
+SED = @SED@
+SEP = @SEP@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+SPHINXBUILD = @SPHINXBUILD@
+SRPD_PLUGINS_PATH = @SRPD_PLUGINS_PATH@
+SR_PLUGINS_PATH = @SR_PLUGINS_PATH@
+SR_REPO_PATH = @SR_REPO_PATH@
+STRIP = @STRIP@
+SYSREPOCPP_CPPFLAGS = @SYSREPOCPP_CPPFLAGS@
+SYSREPOCPP_INCLUDEDIR = @SYSREPOCPP_INCLUDEDIR@
+SYSREPOCPP_LIBS = @SYSREPOCPP_LIBS@
+SYSREPOCPP_PREFIX = @SYSREPOCPP_PREFIX@
+SYSREPOCPP_VERSION = @SYSREPOCPP_VERSION@
+SYSREPO_CPPFLAGS = @SYSREPO_CPPFLAGS@
+SYSREPO_INCLUDEDIR = @SYSREPO_INCLUDEDIR@
+SYSREPO_LIBS = @SYSREPO_LIBS@
+SYSREPO_PREFIX = @SYSREPO_PREFIX@
+SYSREPO_VERSION = @SYSREPO_VERSION@
+USE_LCOV = @USE_LCOV@
+VALGRIND = @VALGRIND@
+VERSION = @VERSION@
+WARNING_GCC_44_STRICT_ALIASING_CFLAG = @WARNING_GCC_44_STRICT_ALIASING_CFLAG@
+YACC = @YACC@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir = @abs_top_srcdir@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+builddir = @builddir@
+datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
+exec_prefix = @exec_prefix@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+pkgpyexecdir = @pkgpyexecdir@
+pkgpythondir = @pkgpythondir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+pyexecdir = @pyexecdir@
+pythondir = @pythondir@
+runstatedir = @runstatedir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+srcdir = @srcdir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+top_build_prefix = @top_build_prefix@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+SUBDIRS = .
+
+# Shell tests
+SHTESTS = keactrl_tests.sh
+
+# As with every file generated by ./configure, clean them up when running
+# "make distclean", but not on "make clean".
+DISTCLEANFILES = $(SHTESTS)
+
+# Run shell tests on "make check".
+@HAVE_GTEST_TRUE@check_SCRIPTS = $(SHTESTS)
+@HAVE_GTEST_TRUE@TESTS = $(SHTESTS)
+
+# Don't install shell tests.
+noinst_SCRIPTS = $(SHTESTS)
+all: all-recursive
+
+.SUFFIXES:
+$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
+ @for dep in $?; do \
+ case '$(am__configure_deps)' in \
+ *$$dep*) \
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
+ && { if test -f $@; then exit 0; else break; fi; }; \
+ exit 1;; \
+ esac; \
+ done; \
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/bin/keactrl/tests/Makefile'; \
+ $(am__cd) $(top_srcdir) && \
+ $(AUTOMAKE) --foreign src/bin/keactrl/tests/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ @case '$?' in \
+ *config.status*) \
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+ *) \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
+ esac;
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure: $(am__configure_deps)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4): $(am__aclocal_m4_deps)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(am__aclocal_m4_deps):
+keactrl_tests.sh: $(top_builddir)/config.status $(srcdir)/keactrl_tests.sh.in
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+# This directory's subdirectories are mostly independent; you can cd
+# into them and run 'make' without going through this Makefile.
+# To change the values of 'make' variables: instead of editing Makefiles,
+# (1) if the variable is set in 'config.status', edit 'config.status'
+# (which will cause the Makefiles to be regenerated when you run 'make');
+# (2) otherwise, pass the desired values on the 'make' command line.
+$(am__recursive_targets):
+ @fail=; \
+ if $(am__make_keepgoing); then \
+ failcom='fail=yes'; \
+ else \
+ failcom='exit 1'; \
+ fi; \
+ dot_seen=no; \
+ target=`echo $@ | sed s/-recursive//`; \
+ case "$@" in \
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+ *) list='$(SUBDIRS)' ;; \
+ esac; \
+ for subdir in $$list; do \
+ echo "Making $$target in $$subdir"; \
+ if test "$$subdir" = "."; then \
+ dot_seen=yes; \
+ local_target="$$target-am"; \
+ else \
+ local_target="$$target"; \
+ fi; \
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ || eval $$failcom; \
+ done; \
+ if test "$$dot_seen" = "no"; then \
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
+ fi; test -z "$$fail"
+
+ID: $(am__tagged_files)
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
+tags: tags-recursive
+TAGS: tags
+
+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ set x; \
+ here=`pwd`; \
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
+ include_option=--etags-include; \
+ empty_fix=.; \
+ else \
+ include_option=--include; \
+ empty_fix=; \
+ fi; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ test ! -f $$subdir/TAGS || \
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
+ fi; \
+ done; \
+ $(am__define_uniq_tagged_files); \
+ shift; \
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ test -n "$$unique" || unique=$$empty_fix; \
+ if test $$# -gt 0; then \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ "$$@" $$unique; \
+ else \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$unique; \
+ fi; \
+ fi
+ctags: ctags-recursive
+
+CTAGS: ctags
+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ $(am__define_uniq_tagged_files); \
+ test -z "$(CTAGS_ARGS)$$unique" \
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+ $$unique
+
+GTAGS:
+ here=`$(am__cd) $(top_builddir) && pwd` \
+ && $(am__cd) $(top_srcdir) \
+ && gtags -i $(GTAGS_ARGS) "$$here"
+cscopelist: cscopelist-recursive
+
+cscopelist-am: $(am__tagged_files)
+ list='$(am__tagged_files)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
+
+distclean-tags:
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+
+check-TESTS: $(TESTS)
+ @failed=0; all=0; xfail=0; xpass=0; skip=0; \
+ srcdir=$(srcdir); export srcdir; \
+ list=' $(TESTS) '; \
+ $(am__tty_colors); \
+ if test -n "$$list"; then \
+ for tst in $$list; do \
+ if test -f ./$$tst; then dir=./; \
+ elif test -f $$tst; then dir=; \
+ else dir="$(srcdir)/"; fi; \
+ if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then \
+ all=`expr $$all + 1`; \
+ case " $(XFAIL_TESTS) " in \
+ *[\ \ ]$$tst[\ \ ]*) \
+ xpass=`expr $$xpass + 1`; \
+ failed=`expr $$failed + 1`; \
+ col=$$red; res=XPASS; \
+ ;; \
+ *) \
+ col=$$grn; res=PASS; \
+ ;; \
+ esac; \
+ elif test $$? -ne 77; then \
+ all=`expr $$all + 1`; \
+ case " $(XFAIL_TESTS) " in \
+ *[\ \ ]$$tst[\ \ ]*) \
+ xfail=`expr $$xfail + 1`; \
+ col=$$lgn; res=XFAIL; \
+ ;; \
+ *) \
+ failed=`expr $$failed + 1`; \
+ col=$$red; res=FAIL; \
+ ;; \
+ esac; \
+ else \
+ skip=`expr $$skip + 1`; \
+ col=$$blu; res=SKIP; \
+ fi; \
+ echo "$${col}$$res$${std}: $$tst"; \
+ done; \
+ if test "$$all" -eq 1; then \
+ tests="test"; \
+ All=""; \
+ else \
+ tests="tests"; \
+ All="All "; \
+ fi; \
+ if test "$$failed" -eq 0; then \
+ if test "$$xfail" -eq 0; then \
+ banner="$$All$$all $$tests passed"; \
+ else \
+ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
+ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
+ fi; \
+ else \
+ if test "$$xpass" -eq 0; then \
+ banner="$$failed of $$all $$tests failed"; \
+ else \
+ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
+ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
+ fi; \
+ fi; \
+ dashes="$$banner"; \
+ skipped=""; \
+ if test "$$skip" -ne 0; then \
+ if test "$$skip" -eq 1; then \
+ skipped="($$skip test was not run)"; \
+ else \
+ skipped="($$skip tests were not run)"; \
+ fi; \
+ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
+ dashes="$$skipped"; \
+ fi; \
+ report=""; \
+ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
+ report="Please report to $(PACKAGE_BUGREPORT)"; \
+ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
+ dashes="$$report"; \
+ fi; \
+ dashes=`echo "$$dashes" | sed s/./=/g`; \
+ if test "$$failed" -eq 0; then \
+ col="$$grn"; \
+ else \
+ col="$$red"; \
+ fi; \
+ echo "$${col}$$dashes$${std}"; \
+ echo "$${col}$$banner$${std}"; \
+ test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
+ test -z "$$report" || echo "$${col}$$report$${std}"; \
+ echo "$${col}$$dashes$${std}"; \
+ test "$$failed" -eq 0; \
+ else :; fi
+
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+ list='$(DISTFILES)'; \
+ dist_files=`for file in $$list; do echo $$file; done | \
+ sed -e "s|^$$srcdirstrip/||;t" \
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
+ case $$dist_files in \
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
+ sort -u` ;; \
+ esac; \
+ for file in $$dist_files; do \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ if test -d $$d/$$file; then \
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test -d "$(distdir)/$$file"; then \
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ fi; \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ fi; \
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ else \
+ test -f "$(distdir)/$$file" \
+ || cp -p $$d/$$file "$(distdir)/$$file" \
+ || exit 1; \
+ fi; \
+ done
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ $(am__make_dryrun) \
+ || test -d "$(distdir)/$$subdir" \
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
+ || exit 1; \
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
+ $(am__relativize); \
+ new_distdir=$$reldir; \
+ dir1=$$subdir; dir2="$(top_distdir)"; \
+ $(am__relativize); \
+ new_top_distdir=$$reldir; \
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
+ ($(am__cd) $$subdir && \
+ $(MAKE) $(AM_MAKEFLAGS) \
+ top_distdir="$$new_top_distdir" \
+ distdir="$$new_distdir" \
+ am__remove_distdir=: \
+ am__skip_length_check=: \
+ am__skip_mode_fix=: \
+ distdir) \
+ || exit 1; \
+ fi; \
+ done
+check-am: all-am
+ $(MAKE) $(AM_MAKEFLAGS) $(check_SCRIPTS)
+ $(MAKE) $(AM_MAKEFLAGS) check-TESTS
+check: check-recursive
+all-am: Makefile $(SCRIPTS)
+installdirs: installdirs-recursive
+installdirs-am:
+install: install-recursive
+install-exec: install-exec-recursive
+install-data: install-data-recursive
+uninstall: uninstall-recursive
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-recursive
+install-strip:
+ if test -z '$(STRIP)'; then \
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+ install; \
+ else \
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
+ fi
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+clean: clean-recursive
+
+clean-am: clean-generic clean-libtool mostlyclean-am
+
+distclean: distclean-recursive
+ -rm -f Makefile
+distclean-am: clean-am distclean-generic distclean-tags
+
+dvi: dvi-recursive
+
+dvi-am:
+
+html: html-recursive
+
+html-am:
+
+info: info-recursive
+
+info-am:
+
+install-data-am:
+
+install-dvi: install-dvi-recursive
+
+install-dvi-am:
+
+install-exec-am:
+
+install-html: install-html-recursive
+
+install-html-am:
+
+install-info: install-info-recursive
+
+install-info-am:
+
+install-man:
+
+install-pdf: install-pdf-recursive
+
+install-pdf-am:
+
+install-ps: install-ps-recursive
+
+install-ps-am:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-recursive
+ -rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-recursive
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
+
+pdf: pdf-recursive
+
+pdf-am:
+
+ps: ps-recursive
+
+ps-am:
+
+uninstall-am:
+
+.MAKE: $(am__recursive_targets) check-am install-am install-strip
+
+.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
+ check-TESTS check-am clean clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-generic \
+ distclean-libtool distclean-tags distdir dvi dvi-am html \
+ html-am info info-am install install-am install-data \
+ install-data-am install-dvi install-dvi-am install-exec \
+ install-exec-am install-html install-html-am install-info \
+ install-info-am install-man install-pdf install-pdf-am \
+ install-ps install-ps-am install-strip installcheck \
+ installcheck-am installdirs installdirs-am maintainer-clean \
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
+ uninstall-am
+
+.PRECIOUS: Makefile
+
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/src/bin/keactrl/tests/keactrl_tests.sh.in b/src/bin/keactrl/tests/keactrl_tests.sh.in
new file mode 100644
index 0000000..b4b49cb
--- /dev/null
+++ b/src/bin/keactrl/tests/keactrl_tests.sh.in
@@ -0,0 +1,1568 @@
+#!/bin/sh
+
+# Copyright (C) 2014-2022 Internet Systems Consortium, Inc. ("ISC")
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# shellcheck disable=SC1091
+# SC1091: Not following: ... was not specified as input (see shellcheck -x).
+
+# Exit with error if commands exit with non-zero and if undefined variables are
+# used.
+set -eu
+
+# Disclaimer: `${keactrl} start` commands use `set +e` / `set -e` instead of
+# run_command because
+# run_command launches a subshell which inherently waits
+# for the background processes started in `${keactrl} start` which don't end
+# until explicitly stopped. So the test would freeze if
+# run_command would be used.
+
+# Include common test library.
+. "@abs_top_builddir@/src/lib/testutils/dhcp_test_lib.sh"
+
+# Set location of the keactrl.
+keactrl="@abs_top_builddir@/src/bin/keactrl/keactrl"
+
+# Set the have_netconf flag to know if netconf is available.
+if test '@HAVE_NETCONF@' = 'yes'; then
+ have_netconf=true
+else
+ have_netconf=false
+fi
+
+# Configuration file names need to have two '.' to check proper extension detection.
+# This is why the names contain '.conf' followed by the extension which is '.json'
+# Names for DHCPv4
+DHCP4_CFG_FILE_NAME="dhcp4_test_config.conf"
+DHCP4_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${DHCP4_CFG_FILE_NAME}.json"
+# Names for DHCPv6
+DHCP6_CFG_FILE_NAME="dhcp6_test_config.conf"
+DHCP6_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${DHCP6_CFG_FILE_NAME}.json"
+# Names for D2
+D2_CFG_FILE_NAME="d2_test_config.conf"
+D2_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${D2_CFG_FILE_NAME}.json"
+# Names for CA
+CA_CFG_FILE_NAME="ca_test_config.conf"
+CA_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${CA_CFG_FILE_NAME}.json"
+# Names for Netconf
+NC_CFG_FILE_NAME="nc_test_config.conf"
+NC_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${NC_CFG_FILE_NAME}.json"
+# Configuration files for all daemons.
+CFG_FILES="kea_dhcp4_config_file=${DHCP4_CFG_FILE}\n\
+kea_dhcp6_config_file=${DHCP6_CFG_FILE}\n\
+kea_dhcp_ddns_config_file=${D2_CFG_FILE}\n\
+kea_ctrl_agent_config_file=${CA_CFG_FILE}\n\
+kea_netconf_config_file=${NC_CFG_FILE}"
+KEACTRL_BUILD_DIR="@abs_top_builddir@"
+# A name of the keactrl config file
+KEACTRL_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/keactrl_test.conf"
+# Path to the Kea log file.
+LOG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/test.log"
+# Binaries' names
+wildcard_name="kea-"
+kea4_name="${wildcard_name}dhcp4"
+kea6_name="${wildcard_name}dhcp6"
+d2_name="${wildcard_name}dhcp-ddns"
+agent_name="${wildcard_name}ctrl-agent"
+netconf_name="${wildcard_name}netconf"
+
+# DHCPv4 configuration
+dhcp4_config="{
+ \"Dhcp4\":
+ {
+ \"interfaces-config\": {
+ \"interfaces\": [ ]
+ },
+ \"valid-lifetime\": 4000,
+ \"renew-timer\": 1000,
+ \"rebind-timer\": 2000,
+ \"lease-database\":
+ {
+ \"type\": \"memfile\",
+ \"persist\": false
+ },
+ \"subnet4\": [
+ {
+ \"subnet\": \"10.0.0.0/24\",
+ \"pools\": [ { \"pool\": \"10.0.0.10-10.0.0.100\" } ]
+ } ],
+ \"loggers\": [
+ {
+ \"name\": \"kea-dhcp4\",
+ \"output_options\": [
+ {
+ \"output\": \"$LOG_FILE\"
+ }
+ ],
+ \"severity\": \"INFO\"
+ }
+ ]
+ }
+}"
+
+# DHCPv6 configuration
+dhcp6_config="{
+ \"Dhcp6\":
+ {
+ \"interfaces-config\": {
+ \"interfaces\": [ ]
+ },
+ \"server-id\": {
+ \"type\": \"LLT\",
+ \"persist\": false
+ },
+ \"preferred-lifetime\": 3000,
+ \"valid-lifetime\": 4000,
+ \"renew-timer\": 1000,
+ \"rebind-timer\": 2000,
+ \"lease-database\":
+ {
+ \"type\": \"memfile\",
+ \"persist\": false
+ },
+ \"subnet6\": [
+ {
+ \"subnet\": \"2001:db8:1::/64\",
+ \"pools\": [ { \"pool\": \"2001:db8:1::10-2001:db8:1::100\" } ]
+ } ],
+ \"loggers\": [
+ {
+ \"name\": \"kea-dhcp6\",
+ \"output_options\": [
+ {
+ \"output\": \"$LOG_FILE\"
+ }
+ ],
+ \"severity\": \"INFO\"
+ }
+ ]
+ }
+}"
+
+# DHCP-DDNS configuration
+dhcp_ddns_config="{
+ \"DhcpDdns\":
+ {
+ \"ip-address\": \"127.0.0.1\",
+ \"port\": 53001,
+ \"tsig-keys\": [],
+ \"forward-ddns\" : {},
+ \"reverse-ddns\" : {},
+ \"loggers\": [
+ {
+ \"name\": \"kea-dhcp-ddns\",
+ \"output_options\": [
+ {
+ \"output\": \"$LOG_FILE\"
+ }
+ ],
+ \"severity\": \"INFO\"
+ }
+ ]
+ }
+}"
+
+# Control-agent configuration
+control_agent_config="{
+ \"Control-agent\": {
+ \"http-host\": \"127.0.0.1\",
+ \"http-port\": 18080,
+ \"loggers\": [
+ {
+ \"name\": \"kea-ctrl-agent\",
+ \"output_options\": [
+ {
+ \"output\": \"$LOG_FILE\"
+ }
+ ],
+ \"severity\": \"INFO\"
+ }
+ ]
+ }
+}"
+
+# Netconf configuration
+netconf_config="{
+ \"Netconf\": {
+ \"loggers\": [
+ {
+ \"name\": \"kea-netconf\",
+ \"output_options\": [
+ {
+ \"output\": \"$LOG_FILE\"
+ }
+ ],
+ \"severity\": \"INFO\"
+ }
+ ]
+ }
+}"
+
+# Fixed part of the keactrl configuration file.
+keactrl_fixed_config="dhcp4_srv=${KEACTRL_BUILD_DIR}/src/bin/dhcp4/kea-dhcp4\n\
+dhcp6_srv=${KEACTRL_BUILD_DIR}/src/bin/dhcp6/kea-dhcp6\n\
+dhcp_ddns_srv=${KEACTRL_BUILD_DIR}/src/bin/d2/kea-dhcp-ddns\n\
+ctrl_agent_srv=${KEACTRL_BUILD_DIR}/src/bin/agent/kea-ctrl-agent\n\
+netconf_srv=${KEACTRL_BUILD_DIR}/src/bin/netconf/kea-netconf\n"
+
+# This test checks that DHCPv4, DHCPv6, D2, CA and Netconf server can
+# be started and shut down.
+start_all_servers_no_verbose_test() {
+ # Create configuration file for keactrl. This configuration enables
+ # DHCPv4, DHCPv6, D2, CA and netconf.
+ keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
+dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
+kea_verbose=no\n${keactrl_fixed_config}"
+
+ test_start "keactrl.start_all_servers_no_verbose_test"
+
+ # Create configuration file for Kea and for keactrl.
+ create_dhcp4_config "${dhcp4_config}"
+ create_dhcp6_config "${dhcp6_config}"
+ create_d2_config "${dhcp_ddns_config}"
+ create_ca_config "${control_agent_config}"
+ create_nc_config "${netconf_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # Set logging to a file.
+ set_logger
+
+ # Start servers using keactrl script.
+ printf 'Starting Kea: %s start -c %s -s all\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ # Append the -s option to specify all servers. This is not necessary
+ # because all should be a default but let's see if it is accepted
+ # by the command line parser.
+ set +e
+ "${keactrl}" start -c ${KEACTRL_CFG_FILE} -s all
+ assert_eq 0 "${?}" "Expected keactrl to return %d, returned value was %d"
+ set -e
+
+ # Wait up to 20s for the DHCPv6 server to configure.
+ wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 20s for the DHCPv4 server to configure.
+ wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait for D2, CA and Netconf to configure.
+ if ${have_netconf}; then
+ expected=3
+ else
+ expected=2
+ fi
+ wait_for_message 20 "DCTL_CONFIG_COMPLETE" ${expected}
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for CPL daemons to start. \
+Expected wait_for_message return %d, returned %d."
+
+ wait_for_message 20 "DHCP_DDNS_STARTED" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ wait_for_message 20 "CTRL_AGENT_HTTP_SERVICE_STARTED" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${agent_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ if ${have_netconf}; then
+ wait_for_message 20 "NETCONF_STARTED" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for${netconf_name} to start. \
+Expected wait_for_message return %d, returned %d."
+ fi
+
+ # Make sure that debug messages are logged for neither
+ # server (non-verbose mode).
+ get_log_messages "DHCP6_START_INFO"
+ assert_eq 0 "${_GET_LOG_MESSAGES}" \
+ "Expected get_log_messages return %d, returned %d."
+
+ get_log_messages "DHCP4_START_INFO"
+ assert_eq 0 "${_GET_LOG_MESSAGES}" \
+ "Expected get_log_messages return %d, returned %d."
+
+ get_log_messages "DCTL_STANDALONE"
+ assert_eq 0 "${_GET_LOG_MESSAGES}" \
+ "Expected get_log_messages return %d, returned %d."
+
+ # Server may shut down immediately after configuration has completed.
+ # Give it some time to shutdown.
+ sleep 3
+
+ # Make sure that all servers are running.
+ get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea4_name} process running, found %d processes running"
+
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Use keactrl stop to shutdown the servers.
+ printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ set +e
+ "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${?}" "Expected keactrl to return %d, returned value was %d."
+ set -e
+
+ # Wait up to 10s for the DHCPv6 server to stop.
+ wait_for_message 10 "DHCP6_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 10s for the DHCPv4 server to stop.
+ wait_for_message 10 "DHCP4_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 10s for the D2, CA and Netconf to stop.
+ if ${have_netconf}; then
+ expected=3
+ else
+ expected=2
+ fi
+ wait_for_message 10 "DCTL_SHUTDOWN" ${expected}
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that all servers are down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${wildcard_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ test_finish 0
+}
+
+# This test checks that both DHCPv4 and DHCPv6 server can be started in
+# a verbose mode.
+start_all_servers_verbose_test() {
+ # Create configuration file for keactrl. This configuration enables
+ # all servers.
+ keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
+dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
+kea_verbose=yes\n${keactrl_fixed_config}"
+
+ test_start "keactrl.start_all_servers_verbose_test"
+
+ # Create configuration file for Kea and for keactrl.
+ create_dhcp4_config "${dhcp4_config}"
+ create_dhcp6_config "${dhcp6_config}"
+ create_d2_config "${dhcp_ddns_config}"
+ create_ca_config "${control_agent_config}"
+ create_nc_config "${netconf_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # Set logging to a file.
+ set_logger
+
+ # Start servers using keactrl script.
+ printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ set +e
+ "${keactrl}" start -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
+ set -e
+
+ # Wait up to 20s for the DHCPv6 server to configure.
+ wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 20s for the DHCPv4 server to configure.
+ wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ wait_for_message 20 "DCTL_CONFIG_COMPLETE" 2
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for CPL daemons to start. \
+Expected wait_for_message return %d, returned %d."
+
+ wait_for_message 20 "DHCP_DDNS_STARTED" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ wait_for_message 20 "CTRL_AGENT_HTTP_SERVICE_STARTED" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${agent_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ if ${have_netconf}; then
+ wait_for_message 20 "NETCONF_STARTED" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for${netconf_name} to start. \
+Expected wait_for_message return %d, returned %d."
+ fi
+
+ # Check if the debug messages are present, which should only be
+ # the case if the verbose mode is on.
+ get_log_messages "DHCP6_START_INFO" 1
+ assert_eq 1 "${_GET_LOG_MESSAGES}" \
+ "Expected get_log_messages for DHCP6_START_INFO return %d, returned %d."
+
+ get_log_messages "DHCP4_START_INFO" 1
+ assert_eq 1 "${_GET_LOG_MESSAGES}" \
+ "Expected get_log_messages for DHCP4_START_INFO return %d, returned %d."
+
+ if ${have_netconf}; then
+ expected=3
+ else
+ expected=2
+ fi
+ get_log_messages "DCTL_STANDALONE" ${expected}
+ assert_eq "${expected}" "${_GET_LOG_MESSAGES}" \
+ "Expected get_log_messages for DCT_STANDALONE return %d, returned %d."
+
+ # Server may shut down immediately after configuration has completed.
+ # Give it some time to shutdown.
+ sleep 3
+
+ # Make sure that all servers are running.
+ get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea4_name} process running, found %d processes running"
+
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Use keactrl stop to shutdown the servers.
+ printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the DHCPv6 server to stop.
+ wait_for_message 10 "DHCP6_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 10s for the DHCPv4 server to stop.
+ wait_for_message 10 "DHCP4_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 10s for the D2, CA and Netconf to stop.
+ if ${have_netconf}; then
+ expected=3
+ else
+ expected=2
+ fi
+ wait_for_message 10 "DCTL_SHUTDOWN" ${expected}
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} and ${agent_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that all servers are down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${wildcard_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ test_finish 0
+}
+
+# Test that a simple "keactrl status" works.
+keactrl_status_test() {
+ # Create the configuration files.
+ create_dhcp4_config "${dhcp4_config}"
+ create_dhcp6_config "${dhcp6_config}"
+ create_d2_config "${dhcp_ddns_config}"
+ create_ca_config "${control_agent_config}"
+ create_nc_config "${netconf_config}"
+ create_keactrl_config "${CFG_FILES}
+${keactrl_fixed_config}
+ctrl_agent=no
+dhcp_ddns=no
+dhcp4=yes
+dhcp6=yes
+netconf=no
+kea_verbose=no
+"
+
+ run_command \
+ "${keactrl}" status -c "${KEACTRL_CFG_FILE}"
+ assert_eq 0 "${EXIT_CODE}"
+ assert_str_eq \
+'DHCPv4 server: inactive
+DHCPv6 server: inactive
+DHCP DDNS: inactive
+Control Agent: inactive' \
+ "$(printf '%s\n' "${OUTPUT}" | head -n 4)"
+
+ if "${have_netconf}"; then
+ assert_str_eq 'Netconf agent: inactive' \
+ "$(printf '%s\n' "${OUTPUT}" | head -n 5 | tail -n 1)"
+ fi
+}
+
+# Test that a simple "keactrl status" without a configuration file works in two
+# cases: KEA_PIDFILE_DIR set and not set.
+keactrl_status_tests() {
+ # Run first without any relevant entries in the configuration file.
+ test_start 'keactrl.status_test.empty_config'
+ create_keactrl_config 'hello=world'
+ run_command \
+ "${keactrl}" status -c "${KEACTRL_CFG_FILE}"
+ assert_eq 1 "${EXIT_CODE}"
+ test_finish ${?}
+
+ # Run without KEA_PIDFILE_DIR.
+ if test -n "${KEA_PIDFILE_DIR+x}"; then
+ save_kea_pidfile_dir="${KEA_PIDFILE_DIR}"
+ unset KEA_PIDFILE_DIR
+ fi
+ assert_str_eq '' "${KEA_PIDFILE_DIR-}"
+
+ test_start 'keactrl.status_test'
+ keactrl_status_test
+ test_finish ${?}
+
+ # Restore KEA_PIDFILE_DIR which should have been set from dhcp_test_lib.sh.
+ if test -n "${save_kea_pidfile_dir+x}"; then
+ export KEA_PIDFILE_DIR="${save_kea_pidfile_dir}"
+ fi
+ assert_str_neq '' "${KEA_PIDFILE_DIR-}"
+
+ # Restore KEA_PIDFILE_DIR.
+ test_start 'keactrl.status_test.KEA_PIDFILE_DIR'
+ keactrl_status_test
+ test_finish ${?}
+}
+
+# This test checks that only DHCPv4 server can be started and that other
+# servers are not started.
+start_v4_server_test() {
+ # Create configuration file for keactrl. This configuration enables
+ # DHCPv4 server but disables other servers.
+ keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=no\n\
+dhcp_ddns=no\nctrl_agent=no\nnetconf=no\n\
+kea_verbose=no\n${keactrl_fixed_config}"
+
+ test_start "keactrl.start_v4_server_test"
+
+ # Create configuration file for Kea and for keactrl.
+ create_dhcp4_config "${dhcp4_config}"
+ create_dhcp6_config "${dhcp6_config}"
+ create_d2_config "${dhcp_ddns_config}"
+ create_ca_config "${control_agent_config}"
+ create_nc_config "${netconf_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # Set logging to a file.
+ set_logger
+
+ # Start DHCPv4 server using keactrl script.
+ printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ set +e
+ "${keactrl}" start -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return 0, returned value was ${EXIT_CODE}"
+ set -e
+
+ # Wait up to 20s for the DHCPv4 server to configure.
+ wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Server may shut down immediately after configuration has completed.
+ # Give it some time to shutdown.
+ sleep 3
+
+ # Make sure that DHCPv4 server is running.
+ get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea4_name} process running, found %d processes running"
+
+ # Make sure that DHCPv6 server is not running.
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ # Make sure that D2 server is not running.
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ # Make sure that CA is not running.
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ # Make sure that Netconf agent is not running.
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Make sure that the status command returns appropriate status.
+ printf "Getting status of Kea modules: %s\n" "${keactrl} status \
+-c ${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" status -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned %d"
+ assert_string_contains "DHCPv4 server: active" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ assert_string_contains "DHCPv6 server: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ assert_string_contains "DHCP DDNS: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ assert_string_contains "Control Agent: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ if ${have_netconf}; then
+ assert_string_contains "Netconf agent: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ fi
+
+ # Use keactrl stop to shutdown the servers.
+ printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the DHCPv4 server to stop.
+ wait_for_message 10 "DHCP4_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that all servers are down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${wildcard_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ test_finish 0
+}
+
+# This test checks that only DHCPv6 server can be started and that other
+# servers are not started.
+start_v6_server_test() {
+ # Create configuration file for keactrl. This configuration enables
+ # DHCPv6 server but disables other servers..
+ keactrl_config="${CFG_FILES}\ndhcp4=no\ndhcp6=yes\n\
+dhcp_ddns=no\nctrl_agent=no\nnetconf=no\n\
+kea_verbose=no\n${keactrl_fixed_config}"
+
+ test_start "keactrl.start_v6_server_test"
+
+ # Create configuration file for Kea and for keactrl.
+ create_dhcp4_config "${dhcp4_config}"
+ create_dhcp6_config "${dhcp6_config}"
+ create_d2_config "${dhcp_ddns_config}"
+ create_ca_config "${control_agent_config}"
+ create_nc_config "${netconf_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # Set logging to a file.
+ set_logger
+
+ # Start DHCPv6 server using keactrl script.
+ printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ set +e
+ "${keactrl}" start -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
+ set -e
+
+ # Wait up to 20s for the DHCPv6 server to configure.
+ wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Server may shut down immediately after configuration has completed.
+ # Give it some time to shutdown.
+ sleep 3
+
+ # Make sure that DHCPv6 server is running.
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ # Make sure that DHCPv4 server is not running.
+ get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea4_name} process running, found %d processes running"
+
+ # Make sure that D2 server is not running.
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ # Make sure that CA is not running.
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ # Make sure that Netconf agent is not running.
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Make sure that the status command returns appropriate status.
+ printf "Getting status of Kea modules: %s\n" "${keactrl} status -c ${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" status -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned %d"
+ assert_string_contains "DHCPv4 server: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ assert_string_contains "DHCPv6 server: active" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ assert_string_contains "DHCP DDNS: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ assert_string_contains "Control Agent: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ if ${have_netconf}; then
+ assert_string_contains "Netconf agent: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ fi
+
+ # Use keactrl stop to shutdown the servers.
+ printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the DHCPv6 server to stop.
+ wait_for_message 10 "DHCP6_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that all servers are down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${wildcard_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ test_finish 0
+}
+
+# This test checks that the DHCPv4 server can be started first, and then the
+# other servers can be started while DHCPv4 server is already running.
+# Also check that both servers can be reconfigured.
+late_start_v4_server_test() {
+ # Create configuration file for keactrl. This configuration enables
+ # DHCPv6 server but disables other servers.
+ keactrl_config="${CFG_FILES}\ndhcp4=no\ndhcp6=yes\n\
+dhcp_ddns=no\nctrl_agent=no\nnetconf=no\n\
+kea_verbose=no\n${keactrl_fixed_config}"
+
+ test_start "keactrl.late_start_v4_server_test"
+
+ # Create configuration file for Kea and for keactrl.
+ create_dhcp4_config "${dhcp4_config}"
+ create_dhcp6_config "${dhcp6_config}"
+ create_d2_config "${dhcp_ddns_config}"
+ create_ca_config "${control_agent_config}"
+ create_nc_config "${netconf_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # Set logging to a file.
+ set_logger
+
+ # Start DHCPv6 server using keactrl script.
+ printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ set +e
+ "${keactrl}" start -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return 0, returned value was ${EXIT_CODE}"
+ set -e
+
+ # Wait up to 20s for the DHCPv6 server to configure.
+ wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Server may shut down immediately after configuration has completed.
+ # Give it some time to shutdown.
+ sleep 3
+
+ # Make sure that DHCPv6 server is running.
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ # Make sure that DHCPv4 server is not running.
+ get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea4_name} process running, found %d processes running"
+
+ # Make sure that D2 server is not running.
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ # Make sure that CA is not running.
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ # Make sure that Netconf agent is not running.
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Trigger reconfiguration, make sure that the DHCPv6 server reconfigured.
+ printf 'Reconfiguring the DHCPv6 server: %s reload -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" reload -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
+
+ # There should be two completed reconfigurations so far.
+ wait_for_message 10 "DHCP6_CONFIG_COMPLETE" 2
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea6_name} to reconfigure. \
+Expected wait_for_message to return %d, returned %d."
+
+ # Update keactrl config to enable other servers.
+ keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
+dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
+kea_verbose=yes\n${keactrl_fixed_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # Start other servers using keactrl script.
+ printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ set +e
+ "${keactrl}" start -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
+ set -e
+
+ # Wait up to 20s for the DHCPv4 server to configure.
+ wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 20s for the D2, CA and Netconf to configure.
+ if ${have_netconf}; then
+ expected=3
+ else
+ expected=2
+ fi
+ wait_for_message 20 "DCTL_CONFIG_COMPLETE" ${expected}
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that DHCPv6 server is running.
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ # Make sure that DHCPv4 server is running.
+ get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea4_name} process running, found %d processes running"
+
+ # Make sure that D2 server is running.
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ # Make sure that CA is running.
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ # Make sure that Netconf agent is running.
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Trigger reconfiguration, make sure that servers are reconfigured.
+ printf "Reconfiguring all servers: %s reload -c %s\n" \
+ "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" reload -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
+
+ # There should be three completed configurations of DHCPv6 server.
+ wait_for_message 10 "DHCP6_CONFIG_COMPLETE" 3
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea6_name} to reconfigure. \
+Expected wait_for_message to return %d, returned %d."
+
+ # There should be two completed configurations of DHCPv4 server.
+ wait_for_message 10 "DHCP4_CONFIG_COMPLETE" 2
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea4_name} to reconfigure. \
+Expected wait_for_message to return %d, returned %d."
+
+ # There should be two completed configurations of D2 and two
+ # configurations of CA.
+ wait_for_message 10 "DCTL_CONFIG_COMPLETE" 4
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${d2_name} or ${agent_name} \
+to reconfigure. Expected wait_for_message to return %d, returned %d."
+
+ # Use keactrl stop to shutdown the servers.
+ printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the DHCPv6 server to stop.
+ wait_for_message 10 "DHCP6_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 10s for the DHCPv4 server to stop.
+ wait_for_message 10 "DHCP4_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 10s for the D2, CA and Netconf to stop.
+ if ${have_netconf}; then
+ expected=3
+ else
+ expected=2
+ fi
+ wait_for_message 10 "DCTL_SHUTDOWN" ${expected}
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} and ${agent_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that all servers are down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${wildcard_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ test_finish 0
+}
+
+# This test checks that the DHCPv4 server can be started first, and then the
+# other servers can be started while DHCPv4 server is already running.
+# Also check that both servers can be reconfigured.
+late_start_v6_server_test() {
+ # Create configuration file for keactrl. This configuration enables
+ # DHCPv4 server but disables DHCPv6 server.
+ keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=no\n\
+dhcp_ddns=no\nctrl_agent=no\nnetconf=no\n\
+kea_verbose=yes\n${keactrl_fixed_config}"
+
+ test_start "keactrl.late_start_v6_server_test"
+
+ # Create configuration file for Kea and for keactrl.
+ create_dhcp4_config "${dhcp4_config}"
+ create_dhcp6_config "${dhcp6_config}"
+ create_d2_config "${dhcp_ddns_config}"
+ create_ca_config "${control_agent_config}"
+ create_nc_config "${netconf_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # Set logging to a file.
+ set_logger
+
+ # Start DHCPv4 server using keactrl script.
+ printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ set +e
+ "${keactrl}" start -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return 0, returned value was ${EXIT_CODE}"
+ set -e
+
+ # Wait up to 20s for the DHCPv4 server to configure.
+ wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Server may shut down immediately after configuration has completed.
+ # Give it some time to shutdown.
+ sleep 3
+
+ # Make sure that DHCPv4 server is running.
+ get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea4_name} process running, found %d processes running"
+
+ # Make sure that DHCPv6 server is not running.
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ # Make sure that D2 server is not running.
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ # Make sure that CA is not running.
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ # Make sure that Netconf agent is not running.
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 0 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Trigger reconfiguration, make sure that the DHCPv4 server is reconfigured.
+ printf 'Reconfiguring the DHCPv4 server: %s reload -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" reload -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
+
+ # There should be two completed reconfigurations so far.
+ wait_for_message 10 "DHCP4_CONFIG_COMPLETE" 2
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea4_name} to reconfigure. \
+Expected wait_for_message to return %d, returned %d."
+
+ # Update keactrl config to enable other servers.
+ keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
+dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
+kea_verbose=no\n${keactrl_fixed_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # Start other servers using keactrl script.
+ printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ set +e
+ "${keactrl}" start -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return 0, returned value was ${EXIT_CODE}"
+ set -e
+
+ # Wait up to 20s for the DHCPv6 server to configure.
+ wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 20s for the D2, CA and Netconf to configure.
+ if ${have_netconf}; then
+ expected=3
+ else
+ expected=2
+ fi
+ wait_for_message 20 "DCTL_CONFIG_COMPLETE" ${expected}
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+
+ # Make sure that DHCPv6 server is running.
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ # Make sure that DHCPv4 server is running.
+ get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea4_name} process running, found %d processes running"
+
+ # Make sure that D2 server is running.
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ # Make sure that CA is running.
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ # Make sure that Netconf agent is running.
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Trigger reconfiguration, make sure that servers are reconfigured.
+ printf 'Reconfiguring DHCPv6 and DHCPv4 servers: %s reload -c %s\n' \
+ "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" reload -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
+
+ # There should be three completed configurations of DHCPv4 server.
+ wait_for_message 10 "DHCP4_CONFIG_COMPLETE" 3
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea4_name} to reconfigure. \
+Expected wait_for_message to return %d, returned %d."
+
+ # There should be two completed configurations of DHCPv6 server.
+ wait_for_message 10 "DHCP6_CONFIG_COMPLETE" 2
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea6_name} to reconfigure. \
+Expected wait_for_message to return %d, returned %d."
+
+ # There should be two completed configurations of D2 and two
+ # configurations of CA.
+ wait_for_message 10 "DCTL_CONFIG_COMPLETE" 4
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${d2_name} to reconfigure. \
+Expected wait_for_message to return %d, returned %d."
+
+ # Use keactrl stop to shutdown the servers.
+ printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the DHCPv6 server to stop.
+ wait_for_message 10 "DHCP6_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 10s for the DHCPv4 server to stop.
+ wait_for_message 10 "DHCP4_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 10s for the D2, CA and Netconf to stop.
+ wait_for_message 10 "DCTL_SHUTDOWN" 2
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that all servers are down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${wildcard_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ test_finish 0
+}
+
+# This test checks that the servers can be shutdown selectively.
+stop_selected_server_test() {
+ # Create configuration file for keactrl. This configuration enables
+ # all servers.
+ keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
+dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
+kea_verbose=no\n${keactrl_fixed_config}"
+
+ test_start "keactrl.stop_selected_server_test"
+
+ # Create configuration file for Kea and for keactrl.
+ create_dhcp4_config "${dhcp4_config}"
+ create_dhcp6_config "${dhcp6_config}"
+ create_d2_config "${dhcp_ddns_config}"
+ create_ca_config "${control_agent_config}"
+ create_nc_config "${netconf_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # Set logging to a file.
+ set_logger
+
+ # Start servers using keactrl script.
+ printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ set +e
+ "${keactrl}" start -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
+ set -e
+
+ # Wait up to 20s for the DHCPv6 server to configure.
+ wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 20s for the DHCPv4 server to configure.
+ wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Wait up to 20s for the D2, CA and Netconf to configure.
+ if ${have_netconf}; then
+ expected=3
+ else
+ expected=2
+ fi
+ wait_for_message 20 "DCTL_CONFIG_COMPLETE" ${expected}
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} to start. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that debug messages are not logged (non-verbose mode).
+ get_log_messages "DHCP6_START_INFO"
+ assert_eq 0 "${_GET_LOG_MESSAGES}" \
+ "Expected get_log_messages return %d, returned %d."
+
+ get_log_messages "DHCP4_START_INFO"
+ assert_eq 0 "${_GET_LOG_MESSAGES}" \
+ "Expected get_log_messages return %d, returned %d."
+
+ get_log_messages "DCTL_STANDALONE"
+ assert_eq 0 "${_GET_LOG_MESSAGES}" \
+ "Expected get_log_messages return %d, returned %d."
+
+ # Server may shut down immediately after configuration has completed.
+ # Give it some time to shutdown.
+ sleep 3
+
+ # Make sure that all servers are running.
+ get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea4_name} process running, found %d processes running"
+
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Use keactrl stop to shutdown DHCPv4 server.
+ printf "Stopping DHCPv4 server: %s stop -s dhcp4 -c %s\n" "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -s dhcp4 -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the DHCPv4 server to stop.
+ wait_for_message 10 "DHCP4_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea4_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that the DHCPv4 server is down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${kea4_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ # Make sure DHCPv6 server is still running
+ get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${kea6_name} process running, found %d processes running"
+
+ # Make sure D2 server is still running
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ # Make sure CA is still running
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ # Make sure Netconf agent is still running
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Use keactrl stop to shutdown DHCPv6 server.
+ printf 'Stopping DHCPv6 server: %s stop -s dhcp6 -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -s dhcp6 -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the DHCPv6 server to stop.
+ wait_for_message 10 "DHCP6_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${kea6_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that the DHCPv6 server is down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${kea6_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ # Make sure D2 server is still running
+ get_pid ${d2_name} ${D2_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${d2_name} process running, found %d processes running"
+
+ # Make sure CA is still running
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ # Use keactrl stop to shutdown D2 server.
+ printf 'Stopping DHCP DDNS server: %s stop -s dhcp_ddns -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -s dhcp_ddns -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the D2 server to stop.
+ wait_for_message 10 "DCTL_SHUTDOWN" 1
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${d2_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that the D2 server is down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${d2_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ # Make sure CA is still running
+ get_pid ${agent_name} ${CA_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${agent_name} process running, found %d processes running"
+
+ # Make sure Netconf agent is still running
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Use keactrl stop to shutdown CA.
+ printf 'Stopping Control Agent: %s stop -s ctrl_agent -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -s ctrl_agent -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the CA to stop.
+ wait_for_message 10 "DCTL_SHUTDOWN" 2
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${agent_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that the CA is down.
+ if ${have_netconf}; then
+ expected=6
+ else
+ expected=5
+ fi
+ wait_for_server_down ${expected} ${agent_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+
+ # Make sure Netconf agent is still running
+ if ${have_netconf}; then
+ get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
+ assert_eq 1 "${_GET_PIDS_NUM}" \
+ "Expected %d ${netconf_name} process running, found %d processes running"
+ fi
+
+ # Use keactrl stop to shutdown Netconf agent.
+ if ${have_netconf}; then
+ printf 'Stopping Netconf agent: %s stop -s netconf -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
+ run_command \
+ "${keactrl}" stop -s netconf -c ${KEACTRL_CFG_FILE}
+ assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."
+
+ # Wait up to 10s for the Netconf agent to stop.
+ wait_for_message 10 "DCTL_SHUTDOWN" 2
+ assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
+ "Timeout waiting for ${netconf_name} to shutdown. \
+Expected wait_for_message return %d, returned %d."
+
+ # Make sure that the Netconf agent is down.
+ wait_for_server_down 6 ${netconf_name}
+ assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
+ "Expected wait_for_server_down return %d, returned %d"
+ fi
+
+ test_finish 0
+}
+
+# This test checks that the "status" command doesn't check the presence of the
+# config file.
+status_no_config_test() {
+ test_start "keactrl.status_no_config_test"
+
+ # Make sure that all config files are removed.
+ cleanup
+
+ # Create keactrl configuration file.
+ create_keactrl_config "${keactrl_config}"
+
+ # Make sure that the "status" command doesn't check the presence of
+ # the config file.
+ printf "Getting status without a Kea config file\n"
+
+ run_command \
+ "${keactrl}" status -c ${KEACTRL_CFG_FILE}
+ assert_eq 1 "${EXIT_CODE}" "Expected keactrl to return %d, returned %d"
+ assert_string_contains "DHCPv4 server: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ assert_string_contains "DHCPv6 server: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ assert_string_contains "DHCP DDNS: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ assert_string_contains "Control Agent: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ if ${have_netconf}; then
+ assert_string_contains "Netconf agent: inactive" "${OUTPUT}" \
+ "Expected keactrl status command return %s"
+ fi
+ assert_string_contains "Configuration file for Kea does not exist" \
+ "${OUTPUT}" "Expected keactrl status command return %s"
+
+ test_finish 0
+}
+
+# This test uses version command, which reports version of the keactrl
+# tool itself, but also all the daemons.
+version_command_test() {
+ test_start "keactrl.version-command"
+
+ # Create configuration file for keactrl.
+ # Note that += is NOT in POSIX shell so PLEASE do NOT use it.
+ keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\ndhcp_ddns=yes\n"
+ keactrl_config="${keactrl_config}ctrl_agent=yes\nnetconf=yes\n"
+ keactrl_config="${keactrl_config}kea_verbose=no\n${keactrl_fixed_config}"
+ create_keactrl_config "${keactrl_config}"
+
+ # This is what we expect to get. We need to run it through printf
+ # to convert \n to actual LF (0xa) or whatever the EOL is used on your
+ # system.
+ exp="keactrl: @PACKAGE_VERSION@\n"
+ exp="${exp}kea-dhcp4: @PACKAGE_VERSION@\n"
+ exp="${exp}kea-dhcp6: @PACKAGE_VERSION@\n"
+ exp="${exp}kea-dhcp-ddns: @PACKAGE_VERSION@\n"
+ exp="${exp}kea-ctrl-agent: @PACKAGE_VERSION@"
+ if ${have_netconf}; then
+ exp="${exp}\nkea-netconf: @PACKAGE_VERSION@"
+ fi
+ # The %b parameter tells printf to interpret backslashes.
+ EXPECTED_RESP=$(printf "%b" "$exp")
+
+ # Let's use short version:
+ run_command \
+ "${keactrl}" version -c ${KEACTRL_CFG_FILE}
+
+ assert_str_eq "${EXPECTED_RESP}" "${OUTPUT}" \
+ "Expected keactrl version to report %s, but it reported %s"
+
+ test_finish 0
+}
+
+keactrl_error_reporting_tests() {
+ test_start 'keactrl_error_reporting_test'
+ run_command \
+ "${keactrl}"
+ assert_eq 1 "${EXIT_CODE}"
+ assert_str_eq 'ERROR/keactrl: missing command' "$(printf '%s\n' "${OUTPUT}" | head -n 1)"
+ test_finish ${?}
+
+ test_start 'keactrl_error_reporting_test.start.c'
+ run_command \
+ "${keactrl}" start -c
+ assert_eq 1 "${EXIT_CODE}"
+ assert_str_eq 'ERROR/keactrl: keactrl-config-file not specified' "$(printf '%s\n' "${OUTPUT}" | head -n 1)"
+ test_finish ${?}
+
+ test_start 'keactrl_error_reporting_test.start.s'
+ run_command \
+ "${keactrl}" start -s
+ assert_eq 1 "${EXIT_CODE}"
+ assert_str_eq 'ERROR/keactrl: servers not specified' "$(printf '%s\n' "${OUTPUT}" | head -n 1)"
+ test_finish ${?}
+}
+
+
+# shellcheck disable=SC2034
+# SC2034: ... appears unused. Verify use (or export if used externally).
+# reason: bin and bin_path are used in version_test
+{
+bin=$(basename "${keactrl}")
+bin_path=$(dirname "${keactrl}")
+version_test 'keactrl.version' 'long_version_too_please'
+}
+
+keactrl_status_tests
+version_command_test
+start_all_servers_no_verbose_test
+start_all_servers_verbose_test
+start_v4_server_test
+start_v6_server_test
+late_start_v4_server_test
+late_start_v6_server_test
+stop_selected_server_test
+status_no_config_test
+keactrl_error_reporting_tests