summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorFlorian Mickler <florian@mickler.org>2020-01-13 01:44:24 +0100
committerTomas Mraz <tomas@openssl.org>2021-05-24 14:36:59 +0200
commitca29cc1453945fe92c86a312c0f94a8976a46856 (patch)
tree633f1fc7526fe3c75a35bc430f85de045277c2cf /apps
parent669967fdd8e2174ed2b812df8488715c82f21360 (diff)
openssl ca: make index.txt parsing error more verbose
If index.txt exists but has some problems (like for example a single \n character in it) openssl will just exit without any error message. Bug at least expirienced twice: https://superuser.com/questions/1327848/openssl-ca-fails-after-password-without-error-message Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15360)
Diffstat (limited to 'apps')
-rwxr-xr-xapps/ca.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 923ede4cde..32abc021a6 100755
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -556,8 +556,10 @@ end_of_options:
goto end;
db = load_index(dbfile, &db_attr);
- if (db == NULL)
+ if (db == NULL) {
+ BIO_printf(bio_err, "Problem with index file: %s (could not load/parse file)\n", dbfile);
goto end;
+ }
if (index_index(db) <= 0)
goto end;
@@ -684,8 +686,10 @@ end_of_options:
goto end;
db = load_index(dbfile, &db_attr);
- if (db == NULL)
+ if (db == NULL) {
+ BIO_printf(bio_err, "Problem with index file: %s (could not load/parse file)\n", dbfile);
goto end;
+ }
/* Lets check some fields */
for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {