]> git.ipfire.org Git - thirdparty/pdns.git/blame - tasks.py
Merge pull request #13445 from rgacogne/ddist-dolog-forward
[thirdparty/pdns.git] / tasks.py
CommitLineData
99bb3530
PD
1from invoke import task
2from invoke.exceptions import Failure, UnexpectedExit
3
7ec6fb65 4import os
99bb3530
PD
5import sys
6import time
7
7d862cb3
AR
8auth_backend_ip_addr = os.getenv('AUTH_BACKEND_IP_ADDR', '127.0.0.1')
9
10clang_version = os.getenv('CLANG_VERSION', '13')
9883d3f9 11rust_version = 'rust-1.72.0-x86_64-unknown-linux-gnu'
3e5c7a76
RG
12quiche_version = '0.18.0'
13quiche_hash = 'eb242a14c4d801a90b57b6021dd29f7a62099f3a4d7a7ba889e105f8328e6c1f'
7d862cb3 14
99bb3530 15all_build_deps = [
d3cb00f9 16 'ccache',
99bb3530
PD
17 'libboost-all-dev',
18 'libluajit-5.1-dev',
19 'libsodium-dev',
20 'libssl-dev',
21 'libsystemd-dev',
22 'libtool',
23 'make',
24 'pkg-config',
25 'python3-venv',
26 'systemd',
27]
28git_build_deps = [
29 'autoconf',
30 'automake',
31 'bison',
32 'bzip2',
33 'curl',
34 'flex',
35 'git',
36 'ragel'
37]
38auth_build_deps = [ # FIXME: perhaps we should be stealing these from the debian (Ubuntu) control file
39 'default-libmysqlclient-dev',
40 'libcdb-dev',
41 'libcurl4-openssl-dev',
42 'libgeoip-dev',
43 'libkrb5-dev',
44 'libldap2-dev',
45 'liblmdb-dev',
46 'libmaxminddb-dev',
47 'libp11-kit-dev',
48 'libpq-dev',
49 'libsqlite3-dev',
50 'libyaml-cpp-dev',
51 'libzmq3-dev',
52 'ruby-bundler',
53 'ruby-dev',
54 'sqlite3',
9f930bd7 55 'unixodbc-dev',
26cf02ca 56 'cmake',
99bb3530
PD
57]
58rec_build_deps = [
59 'libcap-dev',
60 'libfstrm-dev',
61 'libsnmp-dev',
62]
4467dd85
O
63rec_bulk_deps = [
64 'curl',
4467dd85
O
65 'libboost-all-dev',
66 'libcap2',
2b219e37
O
67 'libfstrm0',
68 'libluajit-5.1-2',
7d862cb3 69 '"libsnmp[1-9]+"',
2b219e37 70 'libsodium23',
4467dd85
O
71 'libssl1.1',
72 'libsystemd0',
2b219e37
O
73 'moreutils',
74 'pdns-tools',
869fc2b5 75 'unzip',
4467dd85 76]
99bb3530
PD
77dnsdist_build_deps = [
78 'libcap-dev',
79 'libcdb-dev',
80 'libedit-dev',
81 'libfstrm-dev',
79e3404d 82 'libgnutls28-dev',
99bb3530
PD
83 'libh2o-evloop-dev',
84 'liblmdb-dev',
ff4c1303 85 'libnghttp2-dev',
99bb3530
PD
86 'libre2-dev',
87 'libsnmp-dev',
88]
89auth_test_deps = [ # FIXME: we should be generating some of these from shlibdeps in build
90 'authbind',
91 'bc',
92 'bind9utils',
93 'curl',
94 'default-jre-headless',
95 'dnsutils',
222d17e2 96 'faketime',
99bb3530 97 'gawk',
bb4f68fd 98 'krb5-user',
99bb3530 99 'ldnsutils',
7d862cb3 100 '"libboost-serialization1.7[1-9]+"',
99bb3530
PD
101 'libcdb1',
102 'libcurl4',
103 'libgeoip1',
104 'libkrb5-3',
105 'libldap-2.4-2',
106 'liblmdb0',
107 'libluajit-5.1-2',
108 'libmaxminddb0',
109 'libnet-dns-perl',
110 'libp11-kit0',
111 'libpq5',
112 'libsodium23',
113 'libsqlite3-dev',
114 'libssl1.1',
115 'libsystemd0',
116 'libyaml-cpp0.6',
117 'libzmq3-dev',
3a52d52f 118 'lmdb-utils',
7c05901b 119 'prometheus',
0e77de07
PD
120 'ruby-bundler',
121 'ruby-dev',
99bb3530
PD
122 'socat',
123 'softhsm2',
124 'unbound-host',
125 'unixodbc',
869fc2b5 126 'wget',
99bb3530 127]
e8d83f88
FM
128doc_deps = [
129 'autoconf',
130 'automake',
131 'bison',
132 'curl',
133 'flex',
134 'g++',
135 'git',
136 'latexmk',
137 'libboost-all-dev',
138 'libedit-dev',
139 'libluajit-5.1-dev',
140 'libssl-dev',
141 'make',
142 'pkg-config',
143 'python3-venv',
144 'ragel',
145 'rsync',
146]
147doc_deps_pdf = [
148 'texlive-binaries',
149 'texlive-formats-extra',
150 'texlive-latex-extra',
151]
99bb3530
PD
152
153@task
154def apt_fresh(c):
b1fac6f4 155 c.sudo('sed -i \'s/azure\.//\' /etc/apt/sources.list')
99bb3530 156 c.sudo('apt-get update')
699d088a 157 c.sudo('apt-get -y --allow-downgrades dist-upgrade')
99bb3530
PD
158
159@task
160def install_clang(c):
161 """
7d862cb3 162 install clang and llvm
99bb3530 163 """
7d862cb3 164 c.sudo(f'apt-get -y --no-install-recommends install clang-{clang_version} llvm-{clang_version}')
99bb3530 165
fae3e64c
FM
166@task
167def install_clang_tidy_tools(c):
7d862cb3 168 c.sudo(f'apt-get -y --no-install-recommends install clang-tidy-{clang_version} clang-tools-{clang_version} bear python3-yaml')
fae3e64c 169
99bb3530
PD
170@task
171def install_clang_runtime(c):
172 # this gives us the symbolizer, for symbols in asan/ubsan traces
7d862cb3 173 c.sudo(f'apt-get -y --no-install-recommends install clang-{clang_version}')
99bb3530 174
9883d3f9
OM
175@task
176def ci_install_rust(c, repo):
177 c.sudo(f'{repo}/builder-support/helpers/install_rust.sh {rust_version}')
178
d1c1159f
FM
179def install_libdecaf(c, product):
180 c.run('git clone https://git.code.sf.net/p/ed448goldilocks/code /tmp/libdecaf')
181 with c.cd('/tmp/libdecaf'):
182 c.run('git checkout 41f349')
2ef73ca0 183 c.run(f'CC={get_c_compiler()} CXX={get_cxx_compiler()} '
9466b8e6 184 'cmake -B build '
d1c1159f
FM
185 '-DCMAKE_INSTALL_PREFIX=/usr/local '
186 '-DCMAKE_INSTALL_LIBDIR=lib '
187 '-DENABLE_STATIC=OFF '
188 '-DENABLE_TESTS=OFF '
189 '-DCMAKE_C_FLAGS="-Wno-sizeof-array-div -Wno-array-parameter" .')
190 c.run('make -C build')
191 c.run('sudo make -C build install')
192 c.sudo(f'mkdir -p /opt/{product}/libdecaf')
193 c.sudo(f'cp /usr/local/lib/libdecaf.so* /opt/{product}/libdecaf/.')
194
e8d83f88
FM
195@task
196def install_doc_deps(c):
699d088a 197 c.sudo('apt-get install -y ' + ' '.join(doc_deps))
e8d83f88
FM
198
199@task
200def install_doc_deps_pdf(c):
699d088a 201 c.sudo('apt-get install -y ' + ' '.join(doc_deps_pdf))
e8d83f88 202
99bb3530
PD
203@task
204def install_auth_build_deps(c):
699d088a 205 c.sudo('apt-get install -y --no-install-recommends ' + ' '.join(all_build_deps + git_build_deps + auth_build_deps))
825560a1
RG
206 if os.getenv('DECAF_SUPPORT', 'no') == 'yes':
207 install_libdecaf(c, 'pdns-auth')
99bb3530 208
628a1dec
RG
209def is_coverage_enabled():
210 sanitizers = os.getenv('SANITIZERS')
211 if sanitizers:
212 sanitizers = sanitizers.split('+')
213 if 'tsan' in sanitizers:
214 return False
215 return os.getenv('COVERAGE') == 'yes'
216
7146a45a
RG
217def get_coverage():
218 return '--enable-coverage=clang' if is_coverage_enabled() else ''
219
628a1dec
RG
220@task
221def install_coverage_deps(c):
222 if is_coverage_enabled():
223 c.sudo(f'apt-get install -y --no-install-recommends llvm-{clang_version}')
224
225@task
226def generate_coverage_info(c, binary, outputDir):
227 if is_coverage_enabled():
228 version = os.getenv('BUILDER_VERSION')
229 c.run(f'llvm-profdata-{clang_version} merge -sparse -o {outputDir}/temp.profdata /tmp/code-*.profraw')
230 c.run(f'llvm-cov-{clang_version} export --format=lcov --ignore-filename-regex=\'^/usr/\' -instr-profile={outputDir}/temp.profdata -object {binary} > {outputDir}/coverage.lcov')
231 c.run(f'{outputDir}/.github/scripts/normalize_paths_in_coverage.py {outputDir} {version} {outputDir}/coverage.lcov {outputDir}/normalized_coverage.lcov')
232 c.run(f'mv {outputDir}/normalized_coverage.lcov {outputDir}/coverage.lcov')
233
99bb3530
PD
234def setup_authbind(c):
235 c.sudo('touch /etc/authbind/byport/53')
236 c.sudo('chmod 755 /etc/authbind/byport/53')
237
238auth_backend_test_deps = dict(
239 gsqlite3=['sqlite3'],
240 gmysql=['default-libmysqlclient-dev'],
241 gpgsql=['libpq-dev'],
0e77de07 242 lmdb=[],
b33a88da
PD
243 remote=[],
244 bind=[],
245 geoip=[],
246 lua2=[],
222d17e2 247 tinydns=[],
8af54cc6
AR
248 authpy=[],
249 godbc_sqlite3=['libsqliteodbc'],
c4a7e1df
AR
250 godbc_mssql=['freetds-bin','tdsodbc'],
251 ldap=[],
252 geoip_mmdb=[]
99bb3530
PD
253)
254
255@task(help={'backend': 'Backend to install test deps for, e.g. gsqlite3; can be repeated'}, iterable=['backend'], optional=['backend'])
256def install_auth_test_deps(c, backend): # FIXME: rename this, we do way more than apt-get
257 extra=[]
258 for b in backend:
259 extra.extend(auth_backend_test_deps[b])
7d862cb3 260 c.sudo('DEBIAN_FRONTEND=noninteractive apt-get -y install ' + ' '.join(extra+auth_test_deps))
99bb3530
PD
261
262 c.run('chmod +x /opt/pdns-auth/bin/* /opt/pdns-auth/sbin/*')
263 # c.run('''if [ ! -e $HOME/bin/jdnssec-verifyzone ]; then
264 # wget https://github.com/dblacka/jdnssec-tools/releases/download/0.14/jdnssec-tools-0.14.tar.gz
265 # tar xfz jdnssec-tools-0.14.tar.gz -C $HOME
266 # rm jdnssec-tools-0.14.tar.gz
267 # fi
268 # echo 'export PATH=$HOME/jdnssec-tools-0.14/bin:$PATH' >> $BASH_ENV''') # FIXME: why did this fail with no error?
222d17e2
PD
269 c.run('touch regression-tests/tests/verify-dnssec-zone/allow-missing regression-tests.nobackend/rectify-axfr/allow-missing') # FIXME: can this go?
270 # FIXME we may want to start a background recursor here to make ALIAS tests more robust
99bb3530
PD
271 setup_authbind(c)
272
825560a1
RG
273 if os.getenv('DECAF_SUPPORT', 'no') == 'yes':
274 # Copy libdecaf out
275 c.sudo('mkdir -p /usr/local/lib')
276 c.sudo('cp /opt/pdns-auth/libdecaf/libdecaf.so* /usr/local/lib/.')
d1c1159f 277
4467dd85
O
278@task
279def install_rec_bulk_deps(c): # FIXME: rename this, we do way more than apt-get
699d088a 280 c.sudo('apt-get --no-install-recommends -y install ' + ' '.join(rec_bulk_deps))
4467dd85
O
281 c.run('chmod +x /opt/pdns-recursor/bin/* /opt/pdns-recursor/sbin/*')
282
99bb3530
PD
283@task
284def install_rec_test_deps(c): # FIXME: rename this, we do way more than apt-get
699d088a 285 c.sudo('apt-get --no-install-recommends install -y ' + ' '.join(rec_bulk_deps) + ' \
4467dd85
O
286 pdns-server pdns-backend-bind daemontools \
287 jq libfaketime lua-posix lua-socket bc authbind \
6b45d67b 288 python3-venv python3-dev default-libmysqlclient-dev libpq-dev \
4467dd85 289 protobuf-compiler snmpd prometheus')
99bb3530
PD
290
291 c.run('chmod +x /opt/pdns-recursor/bin/* /opt/pdns-recursor/sbin/*')
292
293 setup_authbind(c)
294
6b45d67b 295 c.run('sed "s/agentxperms 0700 0755 recursor/agentxperms 0777 0755/g" regression-tests.recursor-dnssec/snmpd.conf | sudo tee /etc/snmp/snmpd.conf')
7d862cb3 296 c.sudo('/etc/init.d/snmpd restart')
6b45d67b
O
297 time.sleep(5)
298 c.sudo('chmod 755 /var/agentx')
299
99bb3530
PD
300@task
301def install_dnsdist_test_deps(c): # FIXME: rename this, we do way more than apt-get
699d088a 302 c.sudo('apt-get install -y \
99bb3530
PD
303 libluajit-5.1-2 \
304 libboost-all-dev \
305 libcap2 \
306 libcdb1 \
307 libcurl4-openssl-dev \
308 libfstrm0 \
79e3404d 309 libgnutls30 \
99bb3530
PD
310 libh2o-evloop0.13 \
311 liblmdb0 \
ff4c1303 312 libnghttp2-14 \
7d862cb3 313 "libre2-[1-9]+" \
99bb3530
PD
314 libssl-dev \
315 libsystemd0 \
316 libsodium23 \
74a2ea87 317 lua-socket \
99bb3530
PD
318 patch \
319 protobuf-compiler \
320 python3-venv snmpd prometheus')
321 c.run('sed "s/agentxperms 0700 0755 dnsdist/agentxperms 0777 0755/g" regression-tests.dnsdist/snmpd.conf | sudo tee /etc/snmp/snmpd.conf')
7d862cb3 322 c.sudo('/etc/init.d/snmpd restart')
99bb3530
PD
323 time.sleep(5)
324 c.sudo('chmod 755 /var/agentx')
325
326@task
327def install_rec_build_deps(c):
699d088a 328 c.sudo('apt-get install -y --no-install-recommends ' + ' '.join(all_build_deps + git_build_deps + rec_build_deps))
99bb3530
PD
329
330@task
331def install_dnsdist_build_deps(c):
699d088a 332 c.sudo('apt-get install -y --no-install-recommends ' + ' '.join(all_build_deps + git_build_deps + dnsdist_build_deps))
99bb3530
PD
333
334@task
335def ci_autoconf(c):
e917c86b 336 c.run('autoreconf -vfi')
99bb3530 337
fdcc46e4
OM
338@task
339def ci_docs_rec_generate(c):
340 c.run('python3 generate.py')
341
e8d83f88
FM
342@task
343def ci_docs_build(c):
344 c.run('make -f Makefile.sphinx -C docs html')
345
346@task
347def ci_docs_build_pdf(c):
348 c.run('make -f Makefile.sphinx -C docs latexpdf')
349
350@task
e0ec64f1 351def ci_docs_upload_master(c, docs_host, pdf, username, product, directory=""):
5d9b131b
FM
352 rsync_cmd = " ".join([
353 "rsync",
354 "--checksum",
355 "--recursive",
356 "--verbose",
357 "--no-p",
358 "--chmod=g=rwX",
359 "--exclude '*~'",
360 ])
361 c.run(f"{rsync_cmd} --delete ./docs/_build/{product}-html-docs/ {username}@{docs_host}:{directory}")
362 c.run(f"{rsync_cmd} ./docs/_build/{product}-html-docs.tar.bz2 {username}@{docs_host}:{directory}/html-docs.tar.bz2")
363 c.run(f"{rsync_cmd} ./docs/_build/latex/{pdf} {username}@{docs_host}:{directory}")
e8d83f88
FM
364
365@task
366def ci_docs_add_ssh(c, ssh_key, host_key):
367 c.run('mkdir -m 700 -p ~/.ssh')
368 c.run(f'echo "{ssh_key}" > ~/.ssh/id_ed25519')
369 c.run('chmod 600 ~/.ssh/id_ed25519')
370 c.run(f'echo "{host_key}" > ~/.ssh/known_hosts')
371
8804bc1d
FM
372
373def get_sanitizers():
35859c0b 374 sanitizers = os.getenv('SANITIZERS', '')
8804bc1d
FM
375 if sanitizers != '':
376 sanitizers = sanitizers.split('+')
377 sanitizers = ['--enable-' + sanitizer for sanitizer in sanitizers]
378 sanitizers = ' '.join(sanitizers)
379 return sanitizers
380
7146a45a
RG
381def get_unit_tests(auth=False):
382 if os.getenv('UNIT_TESTS') != 'yes':
383 return ''
384 return '--enable-unit-tests --enable-backend-unit-tests' if auth else '--enable-unit-tests'
385
386def get_build_concurrency(default=8):
387 return os.getenv('CONCURRENCY', default)
388
389def get_fuzzing_targets():
390 return '--enable-fuzz-targets' if os.getenv('FUZZING_TARGETS') == 'yes' else ''
391
392def is_compiler_clang():
c6034e81 393 compiler = os.getenv('COMPILER', 'clang')
7146a45a
RG
394 return compiler == 'clang'
395
396def get_c_compiler():
397 return f'clang-{clang_version}' if is_compiler_clang() else 'gcc'
2ef73ca0
RG
398
399def get_cxx_compiler():
7146a45a 400 return f'clang++-{clang_version}' if is_compiler_clang() else 'g++'
2ef73ca0
RG
401
402def get_optimizations():
472404b9
RG
403 optimizations = os.getenv('OPTIMIZATIONS', 'yes')
404 return '-O1' if optimizations == 'yes' else '-O0'
8804bc1d
FM
405
406def get_cflags():
407 return " ".join([
2ef73ca0 408 get_optimizations(),
8804bc1d
FM
409 "-Werror=vla",
410 "-Werror=shadow",
411 "-Wformat=2",
412 "-Werror=format-security",
7146a45a 413 "-Werror=string-plus-int" if is_compiler_clang() else '',
8804bc1d
FM
414 ])
415
416
417def get_cxxflags():
418 return " ".join([
419 get_cflags(),
420 "-Wp,-D_GLIBCXX_ASSERTIONS",
421 ])
422
423
7146a45a
RG
424def get_base_configure_cmd(additional_c_flags='', additional_cxx_flags='', enable_systemd=True, enable_sodium=True):
425 cflags = " ".join([get_cflags(), additional_c_flags])
426 cxxflags = " ".join([get_cxxflags(), additional_cxx_flags])
8804bc1d 427 return " ".join([
7146a45a
RG
428 f'CFLAGS="{cflags}"',
429 f'CXXFLAGS="{cxxflags}"',
8804bc1d 430 './configure',
2ef73ca0
RG
431 f"CC='{get_c_compiler()}'",
432 f"CXX='{get_cxx_compiler()}'",
8804bc1d 433 "--enable-option-checking=fatal",
7146a45a
RG
434 "--enable-systemd" if enable_systemd else '',
435 "--with-libsodium" if enable_sodium else '',
8804bc1d
FM
436 "--enable-fortify-source=auto",
437 "--enable-auto-var-init=pattern",
7146a45a
RG
438 get_coverage(),
439 get_sanitizers()
8804bc1d
FM
440 ])
441
442
99bb3530
PD
443@task
444def ci_auth_configure(c):
7146a45a
RG
445 unittests = get_unit_tests(True)
446 fuzz_targets = get_fuzzing_targets()
8804bc1d
FM
447 modules = " ".join([
448 "bind",
449 "geoip",
450 "gmysql",
451 "godbc",
452 "gpgsql",
453 "gsqlite3",
454 "ldap",
455 "lmdb",
456 "lua2",
457 "pipe",
458 "remote",
459 "tinydns",
460 ])
461 configure_cmd = " ".join([
462 get_base_configure_cmd(),
463 "LDFLAGS='-L/usr/local/lib -Wl,-rpath,/usr/local/lib'",
464 f"--with-modules='{modules}'",
465 "--enable-tools",
2ef73ca0 466 "--enable-dns-over-tls",
8804bc1d
FM
467 "--enable-experimental-pkcs11",
468 "--enable-experimental-gss-tsig",
469 "--enable-remotebackend-zeromq",
470 "--with-lmdb=/usr",
825560a1 471 "--with-libdecaf" if os.getenv('DECAF_SUPPORT', 'no') == 'yes' else '',
8804bc1d
FM
472 "--prefix=/opt/pdns-auth",
473 "--enable-ixfrdist",
8804bc1d 474 unittests,
7146a45a 475 fuzz_targets
8804bc1d
FM
476 ])
477 res = c.run(configure_cmd, warn=True)
99bb3530
PD
478 if res.exited != 0:
479 c.run('cat config.log')
480 raise UnexpectedExit(res)
8804bc1d
FM
481
482
99bb3530
PD
483@task
484def ci_rec_configure(c):
7146a45a 485 unittests = get_unit_tests()
8804bc1d
FM
486
487 configure_cmd = " ".join([
488 get_base_configure_cmd(),
489 "--enable-nod",
490 "--prefix=/opt/pdns-recursor",
491 "--with-lua=luajit",
492 "--with-libcap",
493 "--with-net-snmp",
494 "--enable-dns-over-tls",
8804bc1d
FM
495 unittests,
496 ])
497 res = c.run(configure_cmd, warn=True)
99bb3530
PD
498 if res.exited != 0:
499 c.run('cat config.log')
500 raise UnexpectedExit(res)
501
8804bc1d 502
99bb3530 503@task
e3d6cf05
RG
504def ci_dnsdist_configure(c, features):
505 additional_flags = ''
506 if features == 'full':
507 features_set = '--enable-dnstap \
508 --enable-dnscrypt \
509 --enable-dns-over-tls \
510 --enable-dns-over-https \
3e5c7a76 511 --enable-dns-over-quic \
e3d6cf05
RG
512 --enable-systemd \
513 --prefix=/opt/dnsdist \
514 --with-gnutls \
f31d8bad 515 --with-h2o \
e3d6cf05
RG
516 --with-libsodium \
517 --with-lua=luajit \
518 --with-libcap \
d5d26f84 519 --with-net-snmp \
e3d6cf05 520 --with-nghttp2 \
7146a45a 521 --with-re2'
e3d6cf05
RG
522 else:
523 features_set = '--disable-dnstap \
524 --disable-dnscrypt \
525 --disable-ipcipher \
526 --disable-systemd \
527 --without-cdb \
528 --without-ebpf \
529 --without-gnutls \
f31d8bad 530 --without-h2o \
e3d6cf05
RG
531 --without-libedit \
532 --without-libsodium \
533 --without-lmdb \
534 --without-net-snmp \
6135a84e 535 --without-nghttp2 \
7146a45a 536 --without-re2'
e3d6cf05 537 additional_flags = '-DDISABLE_COMPLETION \
6b6f0aa6
RG
538 -DDISABLE_DELAY_PIPE \
539 -DDISABLE_DYNBLOCKS \
e3d6cf05
RG
540 -DDISABLE_PROMETHEUS \
541 -DDISABLE_PROTOBUF \
542 -DDISABLE_BUILTIN_HTML \
543 -DDISABLE_CARBON \
544 -DDISABLE_SECPOLL \
545 -DDISABLE_DEPRECATED_DYNBLOCK \
546 -DDISABLE_LUA_WEB_HANDLERS \
547 -DDISABLE_NON_FFI_DQ_BINDINGS \
548 -DDISABLE_POLICIES_BINDINGS \
549 -DDISABLE_PACKETCACHE_BINDINGS \
550 -DDISABLE_DOWNSTREAM_BINDINGS \
551 -DDISABLE_COMBO_ADDR_BINDINGS \
552 -DDISABLE_CLIENT_STATE_BINDINGS \
553 -DDISABLE_QPS_LIMITER_BINDINGS \
554 -DDISABLE_SUFFIX_MATCH_BINDINGS \
555 -DDISABLE_NETMASK_BINDINGS \
556 -DDISABLE_DNSNAME_BINDINGS \
557 -DDISABLE_DNSHEADER_BINDINGS \
558 -DDISABLE_RECVMMSG \
85241b78 559 -DDISABLE_WEB_CACHE_MANAGEMENT \
e3d6cf05
RG
560 -DDISABLE_WEB_CONFIG \
561 -DDISABLE_RULES_ALTERING_QUERIES \
562 -DDISABLE_ECS_ACTIONS \
dbefe674
RG
563 -DDISABLE_TOP_N_BINDINGS \
564 -DDISABLE_OCSP_STAPLING \
565 -DDISABLE_HASHED_CREDENTIALS \
566 -DDISABLE_FALSE_SHARING_PADDING \
567 -DDISABLE_NPN'
7146a45a
RG
568 unittests = get_unit_tests()
569 fuzztargets = get_fuzzing_targets()
570 tools = f'''AR=llvm-ar-{clang_version} RANLIB=llvm-ranlib-{clang_version}''' if is_compiler_clang() else ''
571 configure_cmd = " ".join([
572 tools,
573 get_base_configure_cmd(additional_c_flags='', additional_cxx_flags=additional_flags, enable_systemd=False, enable_sodium=False),
574 features_set,
575 unittests,
576 fuzztargets,
577 ' --enable-lto=thin',
578 '--prefix=/opt/dnsdist'
579 ])
580
581 res = c.run(configure_cmd, warn=True)
99bb3530
PD
582 if res.exited != 0:
583 c.run('cat config.log')
584 raise UnexpectedExit(res)
585
586@task
587def ci_auth_make(c):
7146a45a 588 c.run(f'make -j{get_build_concurrency()} -k V=1')
99bb3530 589
fae3e64c
FM
590@task
591def ci_auth_make_bear(c):
7146a45a 592 c.run(f'bear --append -- make -j{get_build_concurrency()} -k V=1')
fae3e64c 593
99bb3530
PD
594@task
595def ci_rec_make(c):
7146a45a 596 c.run(f'make -j{get_build_concurrency()} -k V=1')
99bb3530 597
f01e3a4a
FM
598@task
599def ci_rec_make_bear(c):
600 # Assumed to be running under ./pdns/recursordist/
7146a45a 601 c.run(f'bear --append -- make -j{get_build_concurrency()} -k V=1')
f01e3a4a 602
99bb3530
PD
603@task
604def ci_dnsdist_make(c):
7146a45a 605 c.run(f'make -j{get_build_concurrency(4)} -k V=1')
99bb3530 606
97145bb4
FM
607@task
608def ci_dnsdist_make_bear(c):
609 # Assumed to be running under ./pdns/dnsdistdist/
7146a45a 610 c.run(f'bear --append -- make -j{get_build_concurrency(4)} -k V=1')
97145bb4 611
99bb3530 612@task
e55d3a4b 613def ci_auth_install_remotebackend_test_deps(c):
99bb3530 614 with c.cd('modules/remotebackend'):
0e77de07
PD
615 # c.run('bundle config set path vendor/bundle')
616 c.run('sudo ruby -S bundle install')
699d088a 617 c.sudo('apt-get install -y socat')
99bb3530
PD
618
619@task
620def ci_auth_run_unit_tests(c):
621 res = c.run('make check', warn=True)
622 if res.exited != 0:
222d17e2
PD
623 c.run('cat pdns/test-suite.log', warn=True)
624 c.run('cat modules/remotebackend/test-suite.log', warn=True)
99bb3530
PD
625 raise UnexpectedExit(res)
626
627@task
628def ci_rec_run_unit_tests(c):
629 res = c.run('make check', warn=True)
630 if res.exited != 0:
631 c.run('cat test-suite.log')
632 raise UnexpectedExit(res)
633
634@task
635def ci_dnsdist_run_unit_tests(c):
636 res = c.run('make check', warn=True)
637 if res.exited != 0:
638 c.run('cat test-suite.log')
639 raise UnexpectedExit(res)
640
e917c86b
AR
641@task
642def ci_make_distdir(c):
643 res = c.run('make distdir')
644
99bb3530
PD
645@task
646def ci_make_install(c):
647 res = c.run('make install') # FIXME: this builds auth docs - again
648
649@task
7d862cb3 650def add_auth_repo(c, dist_name, dist_release_name, pdns_repo_version):
699d088a 651 c.sudo('apt-get install -y curl gnupg2')
7d862cb3 652 if pdns_repo_version == 'master':
99bb3530
PD
653 c.sudo('curl -s -o /etc/apt/trusted.gpg.d/pdns-repo.asc https://repo.powerdns.com/CBC8B383-pub.asc')
654 else:
655 c.sudo('curl -s -o /etc/apt/trusted.gpg.d/pdns-repo.asc https://repo.powerdns.com/FD380FBB-pub.asc')
7d862cb3 656 c.run(f"echo 'deb [arch=amd64] http://repo.powerdns.com/{dist_name} {dist_release_name}-auth-{pdns_repo_version} main' | sudo tee /etc/apt/sources.list.d/pdns.list")
99bb3530
PD
657 c.run("echo 'Package: pdns-*' | sudo tee /etc/apt/preferences.d/pdns")
658 c.run("echo 'Pin: origin repo.powerdns.com' | sudo tee -a /etc/apt/preferences.d/pdns")
659 c.run("echo 'Pin-Priority: 600' | sudo tee -a /etc/apt/preferences.d/pdns")
660 c.sudo('apt-get update')
661
662@task
663def test_api(c, product, backend=''):
664 if product == 'recursor':
665 with c.cd('regression-tests.api'):
666 c.run(f'PDNSRECURSOR=/opt/pdns-recursor/sbin/pdns_recursor ./runtests recursor {backend}')
667 elif product == 'auth':
668 with c.cd('regression-tests.api'):
7d862cb3 669 c.run(f'PDNSSERVER=/opt/pdns-auth/sbin/pdns_server PDNSUTIL=/opt/pdns-auth/bin/pdnsutil SDIG=/opt/pdns-auth/bin/sdig MYSQL_HOST={auth_backend_ip_addr} PGHOST={auth_backend_ip_addr} PGPORT=5432 ./runtests authoritative {backend}')
99bb3530
PD
670 else:
671 raise Failure('unknown product')
672
0e77de07 673backend_regress_tests = dict(
b33a88da 674 bind = [
8af54cc6
AR
675 'bind-both',
676 'bind-dnssec-both',
677 'bind-dnssec-nsec3-both',
678 'bind-dnssec-nsec3-optout-both',
679 'bind-dnssec-nsec3-narrow',
680 # FIXME 'bind-dnssec-pkcs11'
b33a88da
PD
681 ],
682 geoip = [
8af54cc6
AR
683 'geoip',
684 'geoip-nsec3-narrow'
b33a88da 685 ],
8af54cc6
AR
686 lua2 = ['lua2', 'lua2-dnssec'],
687 tinydns = ['tinydns'],
b33a88da 688 remote = [
8af54cc6
AR
689 'remotebackend-pipe',
690 'remotebackend-unix',
691 'remotebackend-http',
692 'remotebackend-zeromq',
693 'remotebackend-pipe-dnssec',
694 'remotebackend-unix-dnssec',
695 'remotebackend-http-dnssec',
696 'remotebackend-zeromq-dnssec'
b33a88da
PD
697 ],
698 lmdb = [
8af54cc6
AR
699 'lmdb-nodnssec-both',
700 'lmdb-both',
701 'lmdb-nsec3-both',
702 'lmdb-nsec3-optout-both',
703 'lmdb-nsec3-narrow'
704 ],
705 gmysql = [
706 'gmysql',
707 'gmysql-nodnssec-both',
708 'gmysql-nsec3-both',
709 'gmysql-nsec3-optout-both',
710 'gmysql-nsec3-narrow',
711 'gmysql_sp-both'
712 ],
713 gpgsql = [
714 'gpgsql',
715 'gpgsql-nodnssec-both',
716 'gpgsql-nsec3-both',
717 'gpgsql-nsec3-optout-both',
718 'gpgsql-nsec3-narrow',
719 'gpgsql_sp-both'
720 ],
721 gsqlite3 = [
722 'gsqlite3',
723 'gsqlite3-nodnssec-both',
724 'gsqlite3-nsec3-both',
725 'gsqlite3-nsec3-optout-both',
726 'gsqlite3-nsec3-narrow'
727 ],
728 godbc_sqlite3 = ['godbc_sqlite3-nodnssec'],
729 godbc_mssql = [
730 'godbc_mssql',
731 'godbc_mssql-nodnssec',
732 'godbc_mssql-nsec3',
733 'godbc_mssql-nsec3-optout',
734 'godbc_mssql-nsec3-narrow'
b33a88da 735 ],
c4a7e1df
AR
736 ldap = [
737 'ldap-tree',
738 'ldap-simple',
739 'ldap-strict'
740 ],
741 geoip_mmdb = ['geoip'],
0e77de07
PD
742)
743
8af54cc6
AR
744godbc_mssql_credentials = {"username": "sa", "password": "SAsa12%%"}
745
7d862cb3 746godbc_config = f'''
8af54cc6
AR
747[pdns-mssql-docker]
748Driver=FreeTDS
749Trace=No
7d862cb3 750Server={auth_backend_ip_addr}
8af54cc6
AR
751Port=1433
752Database=pdns
753TDS_Version=7.1
754
755[pdns-mssql-docker-nodb]
756Driver=FreeTDS
757Trace=No
7d862cb3 758Server={auth_backend_ip_addr}
8af54cc6
AR
759Port=1433
760TDS_Version=7.1
761
762[pdns-sqlite3-1]
763Driver = SQLite3
764Database = pdns.sqlite3
765
766[pdns-sqlite3-2]
767Driver = SQLite3
768Database = pdns.sqlite32
769'''
770
771def setup_godbc_mssql(c):
772 with open(os.path.expanduser("~/.odbc.ini"), "a") as f:
773 f.write(godbc_config)
774 c.sudo('sh -c \'echo "Threading=1" | cat /usr/share/tdsodbc/odbcinst.ini - | tee -a /etc/odbcinst.ini\'')
775 c.sudo('sed -i "s/libtdsodbc.so/\/usr\/lib\/x86_64-linux-gnu\/odbc\/libtdsodbc.so/g" /etc/odbcinst.ini')
776 c.run(f'echo "create database pdns" | isql -v pdns-mssql-docker-nodb {godbc_mssql_credentials["username"]} {godbc_mssql_credentials["password"]}')
777 # FIXME: Skip 8bit-txt-unescaped test
778 c.run('touch ${PWD}/regression-tests/tests/8bit-txt-unescaped/skip')
779
780def setup_godbc_sqlite3(c):
781 with open(os.path.expanduser("~/.odbc.ini"), "a") as f:
782 f.write(godbc_config)
783 c.sudo('sed -i "s/libsqlite3odbc.so/\/usr\/lib\/x86_64-linux-gnu\/odbc\/libsqlite3odbc.so/g" /etc/odbcinst.ini')
784
c4a7e1df 785def setup_ldap_client(c):
699d088a 786 c.sudo('DEBIAN_FRONTEND=noninteractive apt-get install -y ldap-utils')
7d862cb3 787 c.sudo(f'sh -c \'echo "{auth_backend_ip_addr} ldapserver" | tee -a /etc/hosts\'')
c4a7e1df 788
0e77de07
PD
789@task
790def test_auth_backend(c, backend):
7d862cb3 791 pdns_auth_env_vars = f'PDNS=/opt/pdns-auth/sbin/pdns_server PDNS2=/opt/pdns-auth/sbin/pdns_server SDIG=/opt/pdns-auth/bin/sdig NOTIFY=/opt/pdns-auth/bin/pdns_notify NSEC3DIG=/opt/pdns-auth/bin/nsec3dig SAXFR=/opt/pdns-auth/bin/saxfr ZONE2SQL=/opt/pdns-auth/bin/zone2sql ZONE2LDAP=/opt/pdns-auth/bin/zone2ldap ZONE2JSON=/opt/pdns-auth/bin/zone2json PDNSUTIL=/opt/pdns-auth/bin/pdnsutil PDNSCONTROL=/opt/pdns-auth/bin/pdns_control PDNSSERVER=/opt/pdns-auth/sbin/pdns_server SDIG=/opt/pdns-auth/bin/sdig GMYSQLHOST={auth_backend_ip_addr} GMYSQL2HOST={auth_backend_ip_addr} MYSQL_HOST={auth_backend_ip_addr} PGHOST={auth_backend_ip_addr} PGPORT=5432'
8af54cc6 792
0e77de07 793 if backend == 'remote':
e55d3a4b 794 ci_auth_install_remotebackend_test_deps(c)
0e77de07 795
222d17e2 796 if backend == 'authpy':
7d862cb3 797 c.sudo(f'sh -c \'echo "{auth_backend_ip_addr} kerberos-server" | tee -a /etc/hosts\'')
222d17e2 798 with c.cd('regression-tests.auth-py'):
8af54cc6
AR
799 c.run(f'{pdns_auth_env_vars} WITHKERBEROS=YES ./runtests')
800 return
801
802 if backend == 'godbc_sqlite3':
803 setup_godbc_sqlite3(c)
804 with c.cd('regression-tests'):
805 for variant in backend_regress_tests[backend]:
806 c.run(f'{pdns_auth_env_vars} GODBC_SQLITE3_DSN=pdns-sqlite3-1 ./start-test-stop 5300 {variant}')
807 return
808
809 if backend == 'godbc_mssql':
810 setup_godbc_mssql(c)
811 with c.cd('regression-tests'):
812 for variant in backend_regress_tests[backend]:
813 c.run(f'{pdns_auth_env_vars} GODBC_MSSQL_PASSWORD={godbc_mssql_credentials["password"]} GODBC_MSSQL_USERNAME={godbc_mssql_credentials["username"]} GODBC_MSSQL_DSN=pdns-mssql-docker GODBC_MSSQL2_PASSWORD={godbc_mssql_credentials["password"]} GODBC_MSSQL2_USERNAME={godbc_mssql_credentials["username"]} GODBC_MSSQL2_DSN=pdns-mssql-docker ./start-test-stop 5300 {variant}')
222d17e2
PD
814 return
815
c4a7e1df
AR
816 if backend == 'ldap':
817 setup_ldap_client(c)
818
819 if backend == 'geoip_mmdb':
820 with c.cd('regression-tests'):
821 for variant in backend_regress_tests[backend]:
822 c.run(f'{pdns_auth_env_vars} geoipdatabase=../modules/geoipbackend/regression-tests/GeoLiteCity.mmdb ./start-test-stop 5300 {variant}')
823 return
824
0e77de07 825 with c.cd('regression-tests'):
b33a88da
PD
826 if backend == 'lua2':
827 c.run('touch trustedkeys') # avoid silly error during cleanup
828 for variant in backend_regress_tests[backend]:
8af54cc6 829 c.run(f'{pdns_auth_env_vars} ./start-test-stop 5300 {variant}')
222d17e2
PD
830
831 if backend == 'gsqlite3':
7d862cb3
AR
832 if os.getenv('SKIP_IPV6_TESTS'):
833 pdns_auth_env_vars += ' context=noipv6'
222d17e2 834 with c.cd('regression-tests.nobackend'):
8af54cc6 835 c.run(f'{pdns_auth_env_vars} ./runtests')
222d17e2
PD
836 c.run('/opt/pdns-auth/bin/pdnsutil test-algorithms')
837 return
b33a88da
PD
838
839@task
840def test_ixfrdist(c):
841 with c.cd('regression-tests.ixfrdist'):
842 c.run('IXFRDISTBIN=/opt/pdns-auth/bin/ixfrdist ./runtests')
0e77de07 843
99bb3530
PD
844@task
845def test_dnsdist(c):
846 c.run('chmod +x /opt/dnsdist/bin/*')
847 c.run('ls -ald /var /var/agentx /var/agentx/master')
848 c.run('ls -al /var/agentx/master')
849 with c.cd('regression-tests.dnsdist'):
2ade4784 850 c.run('DNSDISTBIN=/opt/dnsdist/bin/dnsdist LD_LIBRARY_PATH=/opt/dnsdist/lib/ ./runtests')
d3cb00f9 851
6b45d67b
O
852@task
853def test_regression_recursor(c):
854 c.run('/opt/pdns-recursor/sbin/pdns_recursor --version')
7d862cb3 855 c.run('PDNSRECURSOR=/opt/pdns-recursor/sbin/pdns_recursor RECCONTROL=/opt/pdns-recursor/bin/rec_control ./build-scripts/test-recursor')
6b45d67b
O
856
857@task
375c8fd6
O
858def test_bulk_recursor(c, threads, mthreads, shards):
859 # We run an extremely small version of the bulk test, as GH does not seem to be able to handle the UDP load
6b45d67b
O
860 with c.cd('regression-tests'):
861 c.run('curl -LO http://s3-us-west-1.amazonaws.com/umbrella-static/top-1m.csv.zip')
862 c.run('unzip top-1m.csv.zip -d .')
863 c.run('chmod +x /opt/pdns-recursor/bin/* /opt/pdns-recursor/sbin/*')
30a57c3d 864 c.run(f'DNSBULKTEST=/usr/bin/dnsbulktest RECURSOR=/opt/pdns-recursor/sbin/pdns_recursor RECCONTROL=/opt/pdns-recursor/bin/rec_control THRESHOLD=95 TRACE=no ./recursor-test 5300 100 {threads} {mthreads} {shards}')
6b45d67b 865
dab788a9
PD
866@task
867def install_swagger_tools(c):
868 c.run('npm install -g api-spec-converter')
869
870@task
871def swagger_syntax_check(c):
872 c.run('api-spec-converter docs/http-api/swagger/authoritative-api-swagger.yaml -f swagger_2 -t openapi_3 -s json -c')
873
66c07369 874@task
df23d4bf
RG
875def install_coverity_tools(c, project):
876 token = os.getenv('COVERITY_TOKEN')
877 c.run(f'curl -s https://scan.coverity.com/download/linux64 --data "token={token}&project={project}" | gunzip | sudo tar xvf /dev/stdin --strip-components=1 --no-same-owner -C /usr/local', hide=True)
66c07369
RG
878
879@task
880def coverity_clang_configure(c):
7d862cb3 881 c.sudo(f'/usr/local/bin/cov-configure --template --comptype clangcc --compiler clang++-{clang_version}')
66c07369
RG
882
883@task
884def coverity_make(c):
885 c.run('/usr/local/bin/cov-build --dir cov-int make -j8 -k')
886
887@task
888def coverity_tarball(c, tarball):
889 c.run(f'tar caf {tarball} cov-int')
890
891@task
df23d4bf
RG
892def coverity_upload(c, email, project, tarball):
893 token = os.getenv('COVERITY_TOKEN')
66c07369
RG
894 c.run(f'curl --form token={token} \
895 --form email="{email}" \
896 --form file=@{tarball} \
897 --form version="$(./builder-support/gen-version)" \
898 --form description="master build" \
df23d4bf 899 https://scan.coverity.com/builds?project={project}', hide=True)
66c07369 900
3e5c7a76
RG
901@task
902def ci_build_and_install_quiche(c):
903 # we have to pass -L because GitHub will do a redirect, sadly
904 c.run(f'curl -L -o quiche-{quiche_version}.tar.gz https://github.com/cloudflare/quiche/archive/{quiche_version}.tar.gz')
905 # Line below should echo two spaces between digest and name
906 c.run(f'echo {quiche_hash}" "quiche-{quiche_version}.tar.gz | sha256sum -c -')
907 c.run(f'tar xf quiche-{quiche_version}.tar.gz')
908 with c.cd(f'quiche-{quiche_version}'):
2ade4784 909 c.run('cargo build --release --no-default-features --features ffi,boringssl-boring-crate --package quiche')
3e5c7a76
RG
910 # cannot use c.sudo() inside a cd() context, see https://github.com/pyinvoke/invoke/issues/687
911 c.run('sudo install -Dm644 quiche/include/quiche.h /usr/include')
2ade4784
RG
912 c.run('sudo install -Dm644 target/release/libquiche.so /usr/lib')
913 c.run('install -D target/release/libquiche.so /opt/dnsdist/lib/libquiche.so')
914 c.run(f"""sudo install -Dm644 /dev/stdin /usr/lib/pkgconfig/quiche.pc <<PC
3e5c7a76
RG
915# quiche
916Name: quiche
917Description: quiche library
918URL: https://github.com/cloudflare/quiche
2ade4784 919Version: {quiche_version}
3e5c7a76
RG
920Libs: -lquiche
921PC""")
922
d3cb00f9
PD
923# this is run always
924def setup():
925 if '/usr/lib/ccache' not in os.environ['PATH']:
926 os.environ['PATH']='/usr/lib/ccache:'+os.environ['PATH']
927
928setup()