/*
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
 *
 * SPDX-License-Identifier: MPL-2.0
 *
 * 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 https://mozilla.org/MPL/2.0/.
 *
 * See the COPYRIGHT file distributed with this work for additional
 * information regarding copyright ownership.
 */

{% include "_common/controls.conf.j2" %}

tls local {
	key-file "../CA/certs/srv02.crt01.example.com.key";
	cert-file "../CA/certs/srv02.crt01.example.com.pem";
	dhparam-file "../dhparam3072.pem";
};

http local {
	endpoints { "/dns-query"; };
};

options {
	{% include_indented "_common/options.conf.j2" %}
	tls-port @TLSPORT@;
	https-port @HTTPSPORT@;
	http-port @HTTPPORT@;
	listen-on tls local { @ns.ip@; };             // DoT
	listen-on-v6 tls local { @ns.ip6@; };
	listen-on tls local http local { @ns.ip@; };  // DoH
	listen-on-v6 tls local http local { @ns.ip6@; };
	listen-on tls none http local { @ns.ip@; };   // unencrypted DoH
	listen-on-v6 tls none http local { @ns.ip6@; };
	allow-recursion { any; };
	allow-query-cache { any; };
	allow-recursion-on { @ns.ip@; }; # allow-query-cache-on inherits;
	notify no;
	ixfr-from-differences yes;
	check-integrity no;
	dnssec-validation no;
	max-records-per-type 0;
	transfers-in 100;
	transfers-out 100;
};

{% include "_common/root.hint.conf" %}

tls tls-example-primary-wrong-ca {
	remote-hostname "srv01.crt01.example.com"; // enable Strict TLS
	ca-file "not-a-file.pem";
};

zone "test.example.com" {
	type forward;
	forward only;
	forwarders port @TLSPORT@ { @ns.ip@ tls tls-example-primary-wrong-ca; };
};

tls tls-example-primary {
	remote-hostname "srv01.crt01.example.com"; // enable Strict TLS
	ca-file "../CA/CA.pem";
};

zone "example" {
	type secondary;
	primaries { 10.53.0.1 tls tls-example-primary; };
	file "example.db";
	allow-transfer { any; };
};

# the server's certificate does not contain SubjectAltName, which is required for DoT
tls tls-example-primary-no-san {
	remote-hostname "srv01.crt02-no-san.example.com"; // enable Strict TLS
	ca-file "../CA/CA.pem";
};

zone "example3" {
	type secondary;
	primaries { 10.53.0.1 port @EXTRAPORT2@ tls tls-example-primary-no-san; };
	file "example3.db";
	allow-transfer { any; };
};

# Trying a XoT transfer of a non-existing zone on an HTTPS port. The error should
# be handled gracefully when the expected ALPN "dot" is not present, see GL#5957.
tls tls-opportunistic { };
zone "example-non-existing" {
	type secondary;
	primaries { 10.53.0.1 port @EXTRAPORT3@ tls tls-opportunistic; };
	file "example-non-existing.db";
};

# As you can see, the "remote-hostname" is missing, but "ca-file" is
# specified. As the result, the primaries server certificate will be
# verified using the IP address instead of hostname. That is fine,
# because the server certificate is issued with IP address in the
# SubjectAltName section.
tls tls-example-primary-strict-tls-no-hostname {
	ca-file "../CA/CA.pem"; // enable Strict TLS
};

zone "example4" {
	type secondary;
	primaries { 10.53.0.1 tls tls-example-primary-strict-tls-no-hostname; };
	file "example4.db";
	allow-transfer { any; };
};

tls tls-example-primary-strict-tls-ipv4 {
	remote-hostname "10.53.0.1"; # the IP is in the server's cert SAN
	ca-file "../CA/CA.pem"; # enable Strict TLS
};

zone "example5" {
	type secondary;
	primaries { 10.53.0.1 tls tls-example-primary-strict-tls-ipv4; };
	file "example5.db";
	allow-transfer { any; };
};

tls tls-example-primary-strict-tls-ipv6 {
	remote-hostname "fd92:7065:b8e:ffff::1"; # the IP is in the server's cert SAN
	ca-file "../CA/CA.pem"; # enable Strict TLS
};

zone "example6" {
	type secondary;
	primaries { 10.53.0.1 tls tls-example-primary-strict-tls-ipv6; };
	file "example6.db";
	allow-transfer { any; };
};

tls tls-example-primary-strict-tls-wrong-host {
	remote-hostname "not-present.example.com"; # this is not present in the server's cert SAN
	ca-file "../CA/CA.pem"; # enable Strict TLS
};

zone "example7" {
	type secondary;
	primaries { 10.53.0.1 tls tls-example-primary-strict-tls-wrong-host; };
	file "example7.db";
	allow-transfer { any; };
};

tls tls-example-primary-strict-tls-expired {
	remote-hostname "srv01.crt03-expired.example.com";
	ca-file "../CA/CA.pem";
};

zone "example8" {
	type secondary;
	primaries { 10.53.0.1 port @EXTRAPORT4@ tls tls-example-primary-strict-tls-expired; };
	file "example8.db";
	allow-transfer { any; };
};

tls tls-example-primary-mutual-tls {
	remote-hostname "srv01.crt01.example.com";
	ca-file "../CA/CA.pem";
	cert-file "../CA/certs/srv01.client02-ns2.example.com.pem";
	key-file "../CA/certs/srv01.client02-ns2.example.com.key";
};

zone "example9" {
	type secondary;
	primaries { 10.53.0.1 port @EXTRAPORT5@ tls tls-example-primary-mutual-tls; };
	file "example9.db";
	allow-transfer { any; };
};

zone "example10" {
	type secondary;
	primaries { 10.53.0.1 port @EXTRAPORT5@ tls tls-example-primary; };
	file "example10.db";
	allow-transfer { any; };
};

tls tls-example-primary-mutual-tls-expired {
	remote-hostname "srv01.crt01.example.com";
	ca-file "../CA/CA.pem";
	cert-file "../CA/certs/srv01.client03-ns2-expired.example.com.pem";
	key-file "../CA/certs/srv01.client03-ns2-expired.example.com.key";
};

zone "example11" {
	type secondary;
	primaries { 10.53.0.1 port @EXTRAPORT5@ tls tls-example-primary-mutual-tls-expired; };
	file "example11.db";
	allow-transfer { any; };
};
