]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
"check-names primary" and "check-names secondary" were ignored
authorEvan Hunt <each@isc.org>
Wed, 17 Jun 2020 00:48:42 +0000 (17:48 -0700)
committerOndřej Surý <ondrej@isc.org>
Mon, 22 Jun 2020 10:32:32 +0000 (12:32 +0200)
these keywords were added to the parser as synonyms for "master"
and "slave" but were never hooked in to the configuration of named,
so they were ignored. this has been fixed and the option is now
checked for correctness.

bin/named/zoneconf.c
bin/tests/system/checkconf/bad-checknames-primary-dup-2.conf [new file with mode: 0644]
bin/tests/system/checkconf/bad-checknames-primary-dup.conf [new file with mode: 0644]
bin/tests/system/checkconf/bad-checknames-secondary-dup.conf [new file with mode: 0644]
bin/tests/system/checkconf/good.conf
bin/tests/system/checknames/ns4/named.conf.in
bin/tests/system/checknames/tests.sh
doc/arm/reference.rst
lib/bind9/check.c

index f151c45845cb30273468f502353163c91f6046bc..778114000f47a4a69721b818a00ca9e762568fe6 100644 (file)
@@ -751,22 +751,27 @@ strtoargv(isc_mem_t *mctx, char *s, unsigned int *argcp, char ***argvp) {
 static void
 checknames(dns_zonetype_t ztype, const cfg_obj_t **maps,
           const cfg_obj_t **objp) {
-       const char *zone = NULL;
        isc_result_t result;
 
        switch (ztype) {
        case dns_zone_slave:
        case dns_zone_mirror:
-               zone = "slave";
+               result = named_checknames_get(maps, "secondary", objp);
+               if (result != ISC_R_SUCCESS) {
+                       result = named_checknames_get(maps, "slave", objp);
+               }
                break;
        case dns_zone_master:
-               zone = "master";
+               result = named_checknames_get(maps, "primary", objp);
+               if (result != ISC_R_SUCCESS) {
+                       result = named_checknames_get(maps, "master", objp);
+               }
                break;
        default:
                INSIST(0);
                ISC_UNREACHABLE();
        }
-       result = named_checknames_get(maps, zone, objp);
+
        INSIST(result == ISC_R_SUCCESS && objp != NULL && *objp != NULL);
 }
 
diff --git a/bin/tests/system/checkconf/bad-checknames-primary-dup-2.conf b/bin/tests/system/checkconf/bad-checknames-primary-dup-2.conf
new file mode 100644 (file)
index 0000000..5ac12cc
--- /dev/null
@@ -0,0 +1,15 @@
+/*
+ * Copyright (C) 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/.
+ *
+ * See the COPYRIGHT file distributed with this work for additional
+ * information regarding copyright ownership.
+ */
+
+options {
+       check-names primary warn;
+       check-names primary fail;
+};
diff --git a/bin/tests/system/checkconf/bad-checknames-primary-dup.conf b/bin/tests/system/checkconf/bad-checknames-primary-dup.conf
new file mode 100644 (file)
index 0000000..b0934fa
--- /dev/null
@@ -0,0 +1,15 @@
+/*
+ * Copyright (C) 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/.
+ *
+ * See the COPYRIGHT file distributed with this work for additional
+ * information regarding copyright ownership.
+ */
+
+options {
+       check-names master warn;
+       check-names primary fail;
+};
diff --git a/bin/tests/system/checkconf/bad-checknames-secondary-dup.conf b/bin/tests/system/checkconf/bad-checknames-secondary-dup.conf
new file mode 100644 (file)
index 0000000..f60a84d
--- /dev/null
@@ -0,0 +1,15 @@
+/*
+ * Copyright (C) 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/.
+ *
+ * See the COPYRIGHT file distributed with this work for additional
+ * information regarding copyright ownership.
+ */
+
+options {
+       check-names slave ignore;
+       check-names secondary warn;
+};
index 2faeadbebcc56af89959054b1aba50eedd4baf7e..69168df84d4992fc506ed32e7bc9d8aa06e712c8 100644 (file)
@@ -72,6 +72,8 @@ options {
        recursive-clients 3000;
        serial-query-rate 100;
        server-id none;
+       check-names primary warn;
+       check-names secondary ignore;
        max-cache-size 20000000000000;
        nta-lifetime 604800;
        nta-recheck 604800;
index d4065cafab6ebd95ea97e267c3fadbdfd1137de8..8ae4a8ecca19dd4ac68ac7bcf4ef73a2cf45f1f2 100644 (file)
@@ -19,7 +19,7 @@ options {
        listen-on-v6 { none; };
        recursion yes;
        dnssec-validation yes;
-       check-names master ignore;
+       check-names primary ignore;
        notify yes;
 };
 
index 39c91ddebff868aa78c879300410f2b29cae3035..70558b1ddd1103f48f50a3feb76590446e5d8b56 100644 (file)
@@ -126,7 +126,7 @@ if [ $ret != 0 ]; then echo_i "failed"; fi
 status=`expr $status + $ret`
 n=`expr $n + 1`
 
-echo_i "check that updates to 'check-names master ignore;' succeed and are not logged ($n)"
+echo_i "check that updates to 'check-names primary ignore;' succeed and are not logged ($n)"
 ret=0
 not=1
 $NSUPDATE -d <<END > nsupdate.out.test$n 2>&1 || ret=1
index d778d6d1d72b183a44cbfcd9c7d30f36695d91c2..19d70dee8350675f7cf029c57a6fcd93e1d7ea42 100644 (file)
@@ -2041,7 +2041,7 @@ Boolean Options
    This option is used to restrict the character set and syntax of
    certain domain names in master files and/or DNS responses received
    from the network. The default varies according to usage area. For
-   ``master`` zones the default is ``fail``. For ``slave`` zones the
+   ``primary`` zones the default is ``fail``. For ``secondary`` zones the
    default is ``warn``. For answers received from the network
    (``response``), the default is ``ignore``.
 
index fab4239f44711de07626f33f94bf0a6d3dd02516..5ae2128499618379580dea191887ce53c785f50a 100644 (file)
@@ -1586,6 +1586,81 @@ check_options(const cfg_obj_t *options, isc_log_t *logctx, isc_mem_t *mctx,
                }
        }
 
+       obj = NULL;
+       (void)cfg_map_get(options, "check-names", &obj);
+       if (obj != NULL && !cfg_obj_islist(obj)) {
+               obj = NULL;
+       }
+       if (obj != NULL) {
+               enum { MAS = 1, PRI = 2, SLA = 4, SEC = 8 } values = 0;
+               for (const cfg_listelt_t *el = cfg_list_first(obj); el != NULL;
+                    el = cfg_list_next(el))
+               {
+                       const cfg_obj_t *tuple = cfg_listelt_value(el);
+                       const cfg_obj_t *type = cfg_tuple_get(tuple, "type");
+                       const char *keyword = cfg_obj_asstring(type);
+                       if (strcasecmp(keyword, "primary") == 0) {
+                               if ((values & PRI) == PRI) {
+                                       cfg_obj_log(obj, logctx, ISC_LOG_ERROR,
+                                                   "'check-names primary' "
+                                                   "duplicated");
+                                       if (result == ISC_R_SUCCESS) {
+                                               result = ISC_R_FAILURE;
+                                       }
+                               }
+                               values |= PRI;
+                       } else if (strcasecmp(keyword, "master") == 0) {
+                               if ((values & MAS) == MAS) {
+                                       cfg_obj_log(obj, logctx, ISC_LOG_ERROR,
+                                                   "'check-names master' "
+                                                   "duplicated");
+                                       if (result == ISC_R_SUCCESS) {
+                                               result = ISC_R_FAILURE;
+                                       }
+                               }
+                               values |= MAS;
+                       } else if (strcasecmp(keyword, "secondary") == 0) {
+                               if ((values & SEC) == SEC) {
+                                       cfg_obj_log(obj, logctx, ISC_LOG_ERROR,
+                                                   "'check-names secondary' "
+                                                   "duplicated");
+                                       if (result == ISC_R_SUCCESS) {
+                                               result = ISC_R_FAILURE;
+                                       }
+                               }
+                               values |= SEC;
+                       } else if (strcasecmp(keyword, "slave") == 0) {
+                               if ((values & SLA) == SLA) {
+                                       cfg_obj_log(obj, logctx, ISC_LOG_ERROR,
+                                                   "'check-names slave' "
+                                                   "duplicated");
+                                       if (result == ISC_R_SUCCESS) {
+                                               result = ISC_R_FAILURE;
+                                       }
+                               }
+                               values |= SLA;
+                       }
+               }
+
+               if ((values & (PRI | MAS)) == (PRI | MAS)) {
+                       cfg_obj_log(obj, logctx, ISC_LOG_ERROR,
+                                   "'check-names' cannot take both "
+                                   "'primary' and 'master'");
+                       if (result == ISC_R_SUCCESS) {
+                               result = ISC_R_FAILURE;
+                       }
+               }
+
+               if ((values & (SEC | SLA)) == (SEC | SLA)) {
+                       cfg_obj_log(obj, logctx, ISC_LOG_ERROR,
+                                   "'check-names' cannot take both "
+                                   "'secondary' and 'slave'");
+                       if (result == ISC_R_SUCCESS) {
+                               result = ISC_R_FAILURE;
+                       }
+               }
+       }
+
        return (result);
 }