summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-07-29 09:55:09 +1000
committerPauli <pauli@openssl.org>2021-08-04 08:15:14 +1000
commit92c03668c0cd77434006b613e3429888a0a8ecfe (patch)
treeef15d575c88ddc3ec5f88c7696849419012fcfe3 /test
parent6b38d7dc1bccc708279ca5091ebc28cd4bdf225d (diff)
Add config_diagnostics to our configuration files.
The change to a more configuration based approach to enable FIPS mode operation highlights a shortcoming in the default should do something approach we've taken for bad configuration files. Currently, a bad configuration file will be automatically loaded and once the badness is detected, it will silently stop processing the configuration and continue normal operations. This is good for remote servers, allowing changes to be made without bricking things. It's bad when a user thinks they've configured what they want but got something wrong and it still appears to work. Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/16171)
Diffstat (limited to 'test')
-rw-r--r--test/CAtsa.cnf3
-rw-r--r--test/ca-and-certs.cnf3
-rw-r--r--test/ct/log_list.cnf3
-rw-r--r--test/default-and-fips.cnf3
-rw-r--r--test/default-and-legacy.cnf3
-rw-r--r--test/default.cnf3
-rw-r--r--test/fips-and-base.cnf3
-rw-r--r--test/fips.cnf3
-rw-r--r--test/legacy.cnf3
-rw-r--r--test/provider_internal_test.cnf.in3
-rw-r--r--test/proxy.cnf3
-rw-r--r--test/smime-certs/ca.cnf3
-rw-r--r--test/sysdefault.cnf3
13 files changed, 39 insertions, 0 deletions
diff --git a/test/CAtsa.cnf b/test/CAtsa.cnf
index e232e7023e..50f68cbc19 100644
--- a/test/CAtsa.cnf
+++ b/test/CAtsa.cnf
@@ -3,6 +3,9 @@
# This config is used by the Time Stamp Authority tests.
#
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
# Extra OBJECT IDENTIFIER info:
oid_section = new_oids
diff --git a/test/ca-and-certs.cnf b/test/ca-and-certs.cnf
index f6663924ae..463b49954c 100644
--- a/test/ca-and-certs.cnf
+++ b/test/ca-and-certs.cnf
@@ -1,4 +1,7 @@
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
CN2 = Brother 2
####################################################################
diff --git a/test/ct/log_list.cnf b/test/ct/log_list.cnf
index 4b68e53558..b723b8c9f6 100644
--- a/test/ct/log_list.cnf
+++ b/test/ct/log_list.cnf
@@ -1,5 +1,8 @@
enabled_logs=test,pilot,aviator,rocketeer,digicert,certly,izempe,symantec,venafi
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
[test]
description = https://github.com/google/certificate-transparency/tree/99218b6445906a81f219d84e9c6d2683e13e4e58/test/testdata
key = MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEmXg8sUUzwBYaWrRb+V0IopzQ6o3UyEJ04r5ZrRXGdpYM8K+hB0pXrGRLI0eeWz+3skXrS0IO83AhA3GpRL6s6w==
diff --git a/test/default-and-fips.cnf b/test/default-and-fips.cnf
index 7a4d765591..2ca6487fd2 100644
--- a/test/default-and-fips.cnf
+++ b/test/default-and-fips.cnf
@@ -1,5 +1,8 @@
openssl_conf = openssl_init
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
.include fipsmodule.cnf
[openssl_init]
diff --git a/test/default-and-legacy.cnf b/test/default-and-legacy.cnf
index adfa225f64..4e288a45ea 100644
--- a/test/default-and-legacy.cnf
+++ b/test/default-and-legacy.cnf
@@ -1,5 +1,8 @@
openssl_conf = openssl_init
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
[openssl_init]
providers = provider_sect
diff --git a/test/default.cnf b/test/default.cnf
index 12da8cb5bd..f29d0e92ba 100644
--- a/test/default.cnf
+++ b/test/default.cnf
@@ -1,5 +1,8 @@
openssl_conf = openssl_init
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
[openssl_init]
providers = provider_sect
diff --git a/test/fips-and-base.cnf b/test/fips-and-base.cnf
index 0caf2b88a4..494e96a87e 100644
--- a/test/fips-and-base.cnf
+++ b/test/fips-and-base.cnf
@@ -1,5 +1,8 @@
openssl_conf = openssl_init
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
.include fipsmodule.cnf
[openssl_init]
diff --git a/test/fips.cnf b/test/fips.cnf
index fa131a8bf6..74349c80ae 100644
--- a/test/fips.cnf
+++ b/test/fips.cnf
@@ -1,5 +1,8 @@
openssl_conf = openssl_init
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
.include fipsmodule.cnf
[openssl_init]
diff --git a/test/legacy.cnf b/test/legacy.cnf
index 60b09a1e34..ffbcbd16ba 100644
--- a/test/legacy.cnf
+++ b/test/legacy.cnf
@@ -1,5 +1,8 @@
openssl_conf = openssl_init
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
[openssl_init]
providers = provider_sect
diff --git a/test/provider_internal_test.cnf.in b/test/provider_internal_test.cnf.in
index 12c292437e..16c555c844 100644
--- a/test/provider_internal_test.cnf.in
+++ b/test/provider_internal_test.cnf.in
@@ -1,3 +1,6 @@
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
{- use platform -}
openssl_conf = openssl_init
diff --git a/test/proxy.cnf b/test/proxy.cnf
index ceac227c04..cfb862cbda 100644
--- a/test/proxy.cnf
+++ b/test/proxy.cnf
@@ -1,6 +1,9 @@
## Config file for proxy certificate testing.
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
[ req ]
distinguished_name = req_distinguished_name_p1
encrypt_rsa_key = no
diff --git a/test/smime-certs/ca.cnf b/test/smime-certs/ca.cnf
index 00d40e7479..31bddea1fa 100644
--- a/test/smime-certs/ca.cnf
+++ b/test/smime-certs/ca.cnf
@@ -2,6 +2,9 @@
# OpenSSL example configuration file for automated certificate creation.
#
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
# This definition stops the following lines choking if HOME or CN
# is undefined.
HOME = .
diff --git a/test/sysdefault.cnf b/test/sysdefault.cnf
index 5473d837c1..0094831608 100644
--- a/test/sysdefault.cnf
+++ b/test/sysdefault.cnf
@@ -1,5 +1,8 @@
# Configuration file to test system default SSL configuration
+# Comment out the next line to ignore configuration errors
+config_diagnostics = 1
+
openssl_conf = default_conf
[ default_conf ]