summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_service_dns_forwarding.py
blob: 9a3f4933ed29bb6f0c14a44395a19fd39cc39203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
#!/usr/bin/env python3
#
# Copyright (C) 2019-2024 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import re
import unittest

from base_vyostest_shim import VyOSUnitTestSHIM

from vyos.configsession import ConfigSessionError
from vyos.template import bracketize_ipv6
from vyos.utils.file import read_file
from vyos.utils.process import process_named_running

PDNS_REC_RUN_DIR = '/run/pdns-recursor'
CONFIG_FILE = f'{PDNS_REC_RUN_DIR}/recursor.conf'
PDNS_REC_LUA_CONF_FILE = f'{PDNS_REC_RUN_DIR}/recursor.conf.lua'
FORWARD_FILE = f'{PDNS_REC_RUN_DIR}/recursor.forward-zones.conf'
HOSTSD_FILE = f'{PDNS_REC_RUN_DIR}/recursor.vyos-hostsd.conf.lua'
PROCESS_NAME= 'pdns_recursor'

base_path = ['service', 'dns', 'forwarding']

allow_from = ['192.0.2.0/24', '2001:db8::/32']
listen_adress = ['127.0.0.1', '::1']

def get_config_value(key, file=CONFIG_FILE):
    tmp = read_file(file)
    tmp = re.findall(r'\n{}=+(.*)'.format(key), tmp)
    return tmp[0]

class TestServicePowerDNS(VyOSUnitTestSHIM.TestCase):
    @classmethod
    def setUpClass(cls):
        super(TestServicePowerDNS, cls).setUpClass()
        # ensure we can also run this test on a live system - so lets clean
        # out the current configuration :)
        cls.cli_delete(cls, base_path)

    def tearDown(self):
        # Check for running process
        self.assertTrue(process_named_running(PROCESS_NAME))

        # Delete DNS forwarding configuration
        self.cli_delete(base_path)
        self.cli_commit()

        # Check for running process
        self.assertFalse(process_named_running(PROCESS_NAME))

    def setUp(self):
        # forward to base class
        super().setUp()
        for network in allow_from:
            self.cli_set(base_path + ['allow-from', network])
        for address in listen_adress:
            self.cli_set(base_path + ['listen-address', address])

    def test_basic_forwarding(self):
        # Check basic DNS forwarding settings
        cache_size = '20'
        negative_ttl = '120'

        # remove code from setUp() as in this test-case we validate the proper
        # handling of assertions when specific CLI nodes are missing
        self.cli_delete(base_path)

        self.cli_set(base_path + ['cache-size', cache_size])
        self.cli_set(base_path + ['negative-ttl', negative_ttl])

        # check validate() - allow from must be defined
        with self.assertRaises(ConfigSessionError):
            self.cli_commit()
        for network in allow_from:
            self.cli_set(base_path + ['allow-from', network])

        # check validate() - listen-address must be defined
        with self.assertRaises(ConfigSessionError):
            self.cli_commit()
        for address in listen_adress:
            self.cli_set(base_path + ['listen-address', address])

        # configure DNSSEC
        self.cli_set(base_path + ['dnssec', 'validate'])

        # Do not use local /etc/hosts file in name resolution
        self.cli_set(base_path + ['ignore-hosts-file'])

        # commit changes
        self.cli_commit()

        # Check configured cache-size
        tmp = get_config_value('max-cache-entries')
        self.assertEqual(tmp, cache_size)

        # Networks allowed to query this server
        tmp = get_config_value('allow-from')
        self.assertEqual(tmp, ','.join(allow_from))

        # Addresses to listen for DNS queries
        tmp = get_config_value('local-address')
        self.assertEqual(tmp, ','.join(listen_adress))

        # Maximum amount of time negative entries are cached
        tmp = get_config_value('max-negative-ttl')
        self.assertEqual(tmp, negative_ttl)

        # Do not use local /etc/hosts file in name resolution
        tmp = get_config_value('export-etc-hosts')
        self.assertEqual(tmp, 'no')

        # RFC1918 addresses are looked up by default
        tmp = get_config_value('serve-rfc1918')
        self.assertEqual(tmp, 'yes')

        # verify default port configuration
        tmp = get_config_value('local-port')
        self.assertEqual(tmp, '53')

    def test_dnssec(self):
        # DNSSEC option testing
        options = ['off', 'process-no-validate', 'process', 'log-fail', 'validate']
        for option in options:
            self.cli_set(base_path + ['dnssec', option])

            # commit changes
            self.cli_commit()

            tmp = get_config_value('dnssec')
            self.assertEqual(tmp, option)

    def test_external_nameserver(self):
        # Externe Domain Name Servers (DNS) addresses
        nameservers = {'192.0.2.1': {}, '192.0.2.2': {'port': '53'}, '2001:db8::1': {'port': '853'}}
        for h,p in nameservers.items():
            if 'port' in p:
                self.cli_set(base_path + ['name-server', h, 'port', p['port']])
            else:
                self.cli_set(base_path + ['name-server', h])

        # commit changes
        self.cli_commit()

        tmp = get_config_value(r'\+.', file=FORWARD_FILE)
        canonical_entries = [(lambda h, p: f"{bracketize_ipv6(h)}:{p['port'] if 'port' in p else 53}")(h, p)
                             for (h, p) in nameservers.items()]
        self.assertEqual(tmp, ', '.join(canonical_entries))

        # Do not use local /etc/hosts file in name resolution
        # default: yes
        tmp = get_config_value('export-etc-hosts')
        self.assertEqual(tmp, 'yes')

    def test_domain_forwarding(self):
        domains = ['vyos.io', 'vyos.net', 'vyos.com']
        nameservers = {'192.0.2.1': {}, '192.0.2.2': {'port': '53'}, '2001:db8::1': {'port': '853'}}
        for domain in domains:
            for h,p in nameservers.items():
                if 'port' in p:
                    self.cli_set(base_path + ['domain', domain, 'name-server', h, 'port', p['port']])
                else:
                    self.cli_set(base_path + ['domain', domain, 'name-server', h])

            # Test 'recursion-desired' flag for only one domain
            if domain == domains[0]:
                self.cli_set(base_path + ['domain', domain, 'recursion-desired'])

            # Test 'negative trust anchor' flag for the second domain only
            if domain == domains[1]:
                self.cli_set(base_path + ['domain', domain, 'addnta'])

        # commit changes
        self.cli_commit()

        # Test configured name-servers
        hosts_conf = read_file(HOSTSD_FILE)
        for domain in domains:
            # Test 'recursion-desired' flag for the first domain only
            if domain == domains[0]: key =f'\+{domain}'
            else: key =f'{domain}'
            tmp = get_config_value(key, file=FORWARD_FILE)
            canonical_entries = [(lambda h, p: f"{bracketize_ipv6(h)}:{p['port'] if 'port' in p else 53}")(h, p)
                        for (h, p) in nameservers.items()]
            self.assertEqual(tmp, ', '.join(canonical_entries))

            # Test 'negative trust anchor' flag for the second domain only
            if domain == domains[1]:
                self.assertIn(f'addNTA("{domain}", "static")', hosts_conf)

    def test_no_rfc1918_forwarding(self):
        self.cli_set(base_path + ['no-serve-rfc1918'])

        # commit changes
        self.cli_commit()

        # verify configuration
        tmp = get_config_value('serve-rfc1918')
        self.assertEqual(tmp, 'no')

    def test_dns64(self):
        dns_prefix = '64:ff9b::/96'
        # Check dns64-prefix - must be prefix /96
        self.cli_set(base_path + ['dns64-prefix', '2001:db8:aabb::/64'])
        with self.assertRaises(ConfigSessionError):
            self.cli_commit()
        self.cli_set(base_path + ['dns64-prefix', dns_prefix])

        # commit changes
        self.cli_commit()

        # verify dns64-prefix configuration
        tmp = get_config_value('dns64-prefix')
        self.assertEqual(tmp, dns_prefix)

    def test_exclude_throttle_adress(self):
        exclude_throttle_adress_examples = [
            '192.168.128.255',
            '10.0.0.0/25',
            '2001:db8:85a3:8d3:1319:8a2e:370:7348',
            '64:ff9b::/96'
        ]
        for exclude_throttle_adress in exclude_throttle_adress_examples:
            self.cli_set(base_path + ['exclude-throttle-address', exclude_throttle_adress])

        # commit changes
        self.cli_commit()

        # verify dont-throttle-netmasks configuration
        tmp = get_config_value('dont-throttle-netmasks')
        self.assertEqual(tmp, ','.join(exclude_throttle_adress_examples))

    def test_serve_stale_extension(self):
        server_stale = '20'
        self.cli_set(base_path + ['serve-stale-extension', server_stale])
        # commit changes
        self.cli_commit()
        # verify configuration
        tmp = get_config_value('serve-stale-extensions')
        self.assertEqual(tmp, server_stale)

    def test_listening_port(self):
        # We can listen on a different port compared to '53' but only one at a time
        for port in ['10053', '10054']:
            self.cli_set(base_path + ['port', port])
            # commit changes
            self.cli_commit()
            # verify local-port configuration
            tmp = get_config_value('local-port')
            self.assertEqual(tmp, port)

    def test_ecs_add_for(self):
        options = ['0.0.0.0/0', '!10.0.0.0/8', 'fc00::/7', '!fe80::/10']
        for param in options:
            self.cli_set(base_path + ['options', 'ecs-add-for', param])

        # commit changes
        self.cli_commit()
        # verify ecs_add_for configuration
        tmp = get_config_value('ecs-add-for')
        self.assertEqual(tmp, ','.join(options))

    def test_ecs_ipv4_bits(self):
        option_value = '24'
        self.cli_set(base_path + ['options', 'ecs-ipv4-bits', option_value])
        # commit changes
        self.cli_commit()
        # verify ecs_ipv4_bits configuration
        tmp = get_config_value('ecs-ipv4-bits')
        self.assertEqual(tmp, option_value)

    def test_edns_subnet_allow_list(self):
        options = ['192.0.2.1/32', 'example.com', 'fe80::/10']
        for param in options:
            self.cli_set(base_path + ['options', 'edns-subnet-allow-list', param])

        # commit changes
        self.cli_commit()

        # verify edns_subnet_allow_list configuration
        tmp = get_config_value('edns-subnet-allow-list')
        self.assertEqual(tmp, ','.join(options))

    def test_multiple_ns_records(self):
        test_zone = 'example.com'
        self.cli_set(base_path + ['authoritative-domain', test_zone, 'records', 'ns', 'test', 'target', f'ns1.{test_zone}'])
        self.cli_set(base_path + ['authoritative-domain', test_zone, 'records', 'ns', 'test', 'target', f'ns2.{test_zone}'])
        self.cli_commit()
        zone_config = read_file(f'{PDNS_REC_RUN_DIR}/zone.{test_zone}.conf')
        self.assertRegex(zone_config, fr'test\s+\d+\s+NS\s+ns1\.{test_zone}\.')
        self.assertRegex(zone_config, fr'test\s+\d+\s+NS\s+ns2\.{test_zone}\.')

    def test_zone_cache_url(self):
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'source', 'url', 'https://www.internic.net/domain/root.zone'])
        self.cli_commit()

        lua_config = read_file(PDNS_REC_LUA_CONF_FILE)
        self.assertIn('zoneToCache("smoketest", "url", "https://www.internic.net/domain/root.zone", { dnssec = "validate", zonemd = "validate", maxReceivedMBytes = 0, retryOnErrorPeriod = 60, refreshPeriod = 86400, timeout = 20 })', lua_config)

    def test_zone_cache_axfr(self):

        self.cli_set(base_path + ['zone-cache', 'smoketest', 'source', 'axfr', '127.0.0.1'])
        self.cli_commit()

        lua_config = read_file(PDNS_REC_LUA_CONF_FILE)
        self.assertIn('zoneToCache("smoketest", "axfr", "127.0.0.1", { dnssec = "validate", zonemd = "validate", maxReceivedMBytes = 0, retryOnErrorPeriod = 60, refreshPeriod = 86400, timeout = 20 })', lua_config)

    def test_zone_cache_options(self):
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'source', 'url', 'https://www.internic.net/domain/root.zone'])
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'options', 'dnssec', 'ignore'])
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'options', 'max-zone-size', '100'])
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'options', 'refresh', 'interval', '10'])
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'options', 'retry-interval', '90'])
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'options', 'timeout', '50'])
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'options', 'zonemd', 'require'])
        self.cli_commit()

        lua_config = read_file(PDNS_REC_LUA_CONF_FILE)
        self.assertIn('zoneToCache("smoketest", "url", "https://www.internic.net/domain/root.zone", { dnssec = "ignore", maxReceivedMBytes = 100, refreshPeriod = 10, retryOnErrorPeriod = 90, timeout = 50, zonemd = "require" })', lua_config)

    def test_zone_cache_wrong_source(self):
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'source', 'url', 'https://www.internic.net/domain/root.zone'])
        self.cli_set(base_path + ['zone-cache', 'smoketest', 'source', 'axfr', '127.0.0.1'])

        with self.assertRaises(ConfigSessionError):
            self.cli_commit()
        # correct config to correct finish the test
        self.cli_delete(base_path + ['zone-cache', 'smoketest', 'source', 'axfr'])
        self.cli_commit()


if __name__ == '__main__':
    unittest.main(verbosity=2)