- 09 Apr, 2020 6 commits
-
-
Michał Kępień authored
-
Tinderbox User authored
-
Michal Nowak authored
Issue #1695. Work by Michał Kępień.
-
Tinderbox User authored
-
Tinderbox User authored
-
Michał Kępień authored
[v9_11] Miscellaneous documentation fixes See merge request !3349
-
- 08 Apr, 2020 12 commits
-
-
Michał Kępień authored
-
Michał Kępień authored
-
Ondřej Surý authored
Add missing CHANGES notes from v9_11 branch See merge request !3354
-
Ondřej Surý authored
(cherry picked from commit 434929b5)
-
Ondřej Surý authored
Add CHANGES note for !3295 See merge request !3350
-
Ondřej Surý authored
-
Ondřej Surý authored
Merge branch '1574-confidential-issue-rebinding-protection-fail-in-forwarding-mode-v9_11' into 'v9_11' Resolve "DNS rebinding protection is ineffective when BIND is configured as a forwarding DNS server" See merge request !3345
-
Ondřej Surý authored
-
Ondřej Surý authored
-
Diego dos Santos Fronza authored
This test asserts that option "deny-answer-aliases" works correctly when forwarding requests. As a matter of example, the behavior expected for a forwarder BIND instance, having an option such as deny-answer-aliases { "domain"; } is that when forwarding a request for *.anything-but-domain, it is expected that it will return SERVFAIL if any answer received has a CNAME for "*.domain".
-
Diego dos Santos Fronza authored
BIND wasn't honoring option "deny-answer-aliases" when configured to forward queries. Before the fix it was possible for nameservers listed in "forwarders" option to return CNAME answers pointing to unrelated domains of the original query, which could be used as a vector for rebinding attacks. The fix ensures that BIND apply filters even if configured as a forwarder instance.
-
Michał Kępień authored
Fix a grammar mistake in entry 5357 See merge request !3339
-
- 07 Apr, 2020 1 commit
-
-
Michal Nowak authored
-
- 31 Mar, 2020 2 commits
-
-
Mark Andrews authored
add empty release notes for 9.11.18 See merge request !3315
-
Mark Andrews authored
(cherry picked from commit 503e2dff)
-
- 26 Mar, 2020 15 commits
-
-
Mark Andrews authored
Merge branch '1678-bind-fails-to-build-with-mysql-support-against-mysql8-mysql-connector-8-v9_11' into 'v9_11' Resolve "BIND fails to build with MYSQL support against mysql8/mysql-connector-8" See merge request !3306
-
Mark Andrews authored
ORACLE MySQL 8.0 has dropped the my_bool type, so we need to reinstate it back when compiling with that version or higher. MariaDB is still keeping the my_bool type. The numbering between the two (MariaDB 5.x jumped to MariaDB 10.x) doesn't make the life of the developer easy. (cherry picked from commit c6d5d5c8)
-
Mark Andrews authored
(cherry picked from commit 7af9883b)
-
Ondřej Surý authored
Fix 'Dead nested assignment' from scan-build-10 See merge request !3296
-
Ondřej Surý authored
-
Ondřej Surý authored
This is the warning: In file included from print_test.c:47: ./../print.c:203:9: warning: Although the value stored to 'neg' is used in the enclosing expression, the value is never actually read from 'neg' dot = neg = space = plus = left = zero = alt = h = l = q = z = 0; ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated.
-
Michał Kępień authored
[v9_11] Miscellaneous .gitlab-ci.yml cleanups See merge request !3302
-
Michał Kępień authored
Some YAML anchors defined in .gitlab-ci.yml are not subsequently used. Remove them to prevent confusion. (cherry picked from commit 3d121ede)
-
Michał Kępień authored
compiledb is already included in the Docker image used by the cppcheck job. Do not attempt installing it again. (cherry picked from commit 3d264dbe)
-
Michał Kępień authored
Most build/test job names already contain a "clang", "gcc", or "msvc" prefix which indicates the compiler used for a given job. Apply that naming convention to all build/test job names. (cherry picked from commit 0c898084)
-
Michał Kępień authored
Multiple YAML keys have identical values for both TSAN unit test job definitions. Extract these common keys to a YAML anchor and use it in TSAN unit test job definitions to reduce code duplication. (cherry picked from commit 84463f33)
-
Michał Kępień authored
Definitions of jobs running unit tests under TSAN contain an "after_script" YAML key. Since the "unit_test_job" anchor is included in those job definitions before "after_script" is defined, the job-specific value of that key overrides the one defined in the included anchor. This prevents "kyua report-html" from being run for TSAN unit test jobs. Moving the invocation of "kyua report-html" to the "script" key in the "unit_test_job" anchor is not acceptable as it would cause the exit code of that command to determine the result of all unit test jobs and we need that to be the exit code of "make unit". Instead, add "kyua report-html" invocations to the "after_script" key of TSAN unit test job definitions to address the problem without affecting other job definitions. (cherry picked from commit 6ebce942)
-
Michał Kępień authored
Multiple YAML keys have identical values for both TSAN system test job definitions. Extract these common keys to a YAML anchor and use it in TSAN system test job definitions to reduce code duplication. (cherry picked from commit a9aa295f)
-
Michał Kępień authored
Both "system_test_job" and "unit_test_job" YAML anchors contain a "before_script" key. TSAN job definitions first specify their own value of the "before_script" key and then include the aforementioned YAML anchors, which results in the value of the "before_script" key being overridden with the value specified by the included anchor. Given this, remove "before_script" definitions specific to TSAN jobs as they serve no practical purpose. (cherry picked from commit 8ef01c7b)
-
Michał Kępień authored
All assignments for the TSAN_OPTIONS variable are identical across the entire .gitlab-ci.yml file. Define a global TSAN_OPTIONS_COMMON variable and use it in job definitions to reduce code duplication. (cherry picked from commit 6325c099)
-
- 25 Mar, 2020 4 commits
-
-
Ondřej Surý authored
Detect atomic operations support on ppc64le (v9.11) See merge request !3295
-
Petr Menšík authored
Current configure detects only stdatomic operations. Fix it to detect also ISC atomics with assembly.
-
Ondřej Surý authored
Rewrite .gitlab-ci.yml to have 'base_image' and other GitLab CI improvements (v9.11) See merge request !3289
-
Ondřej Surý authored
-