2 * Copyright 2004-2021 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright (c) 2004, EdelKey Project. All Rights Reserved.
5 * Licensed under the Apache License 2.0 (the "License"). You may not use
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
10 * Originally written by Christophe Renou and Peter Sylvester,
11 * for the EdelKey project.
14 /* SRP is deprecated, so we're going to have to use some deprecated APIs */
15 #define OPENSSL_SUPPRESS_DEPRECATED
17 #include <openssl/opensslconf.h>
22 #include <openssl/conf.h>
23 #include <openssl/bio.h>
24 #include <openssl/err.h>
25 #include <openssl/txt_db.h>
26 #include <openssl/buffer.h>
27 #include <openssl/srp.h>
31 #define BASE_SECTION "srp"
32 #define CONFIG_FILE "openssl.cnf"
35 #define ENV_DATABASE "srpvfile"
36 #define ENV_DEFAULT_SRP "default_srp"
38 static int get_index(CA_DB
*db
, char *id
, char type
)
44 if (type
== DB_SRP_INDEX
) {
45 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
46 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
47 if (pp
[DB_srptype
][0] == DB_SRP_INDEX
48 && strcmp(id
, pp
[DB_srpid
]) == 0)
52 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
53 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
55 if (pp
[DB_srptype
][0] != DB_SRP_INDEX
56 && strcmp(id
, pp
[DB_srpid
]) == 0)
64 static void print_entry(CA_DB
*db
, int indx
, int verbose
, char *s
)
66 if (indx
>= 0 && verbose
) {
68 char **pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, indx
);
69 BIO_printf(bio_err
, "%s \"%s\"\n", s
, pp
[DB_srpid
]);
70 for (j
= 0; j
< DB_NUMBER
; j
++) {
71 BIO_printf(bio_err
, " %d = \"%s\"\n", j
, pp
[j
]);
76 static void print_index(CA_DB
*db
, int indexindex
, int verbose
)
78 print_entry(db
, indexindex
, verbose
, "g N entry");
81 static void print_user(CA_DB
*db
, int userindex
, int verbose
)
84 char **pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, userindex
);
86 if (pp
[DB_srptype
][0] != 'I') {
87 print_entry(db
, userindex
, verbose
, "User entry");
88 print_entry(db
, get_index(db
, pp
[DB_srpgN
], 'I'), verbose
,
95 static int update_index(CA_DB
*db
, char **row
)
100 irow
= app_malloc(sizeof(*irow
) * (DB_NUMBER
+ 1), "row pointers");
101 for (i
= 0; i
< DB_NUMBER
; i
++)
103 irow
[DB_NUMBER
] = NULL
;
105 if (!TXT_DB_insert(db
->db
, irow
)) {
106 BIO_printf(bio_err
, "failed to update srpvfile\n");
107 BIO_printf(bio_err
, "TXT_DB error number %ld\n", db
->db
->error
);
114 static char *lookup_conf(const CONF
*conf
, const char *section
, const char *tag
)
116 char *entry
= NCONF_get_string(conf
, section
, tag
);
118 BIO_printf(bio_err
, "variable lookup failed for %s::%s\n", section
, tag
);
122 static char *srp_verify_user(const char *user
, const char *srp_verifier
,
123 char *srp_usersalt
, const char *g
, const char *N
,
124 const char *passin
, int verbose
)
128 char *verifier
= NULL
;
132 cb_tmp
.prompt_info
= user
;
133 cb_tmp
.password
= passin
;
135 len
= password_callback(password
, sizeof(password
)-1, 0, &cb_tmp
);
140 "Validating\n user=\"%s\"\n srp_verifier=\"%s\"\n srp_usersalt=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
141 user
, srp_verifier
, srp_usersalt
, g
, N
);
143 BIO_printf(bio_err
, "Pass %s\n", password
);
145 OPENSSL_assert(srp_usersalt
!= NULL
);
146 if ((gNid
= SRP_create_verifier(user
, password
, &srp_usersalt
,
147 &verifier
, N
, g
)) == NULL
) {
148 BIO_printf(bio_err
, "Internal error validating SRP verifier\n");
150 if (strcmp(verifier
, srp_verifier
))
152 OPENSSL_free(verifier
);
154 OPENSSL_cleanse(password
, len
);
159 static char *srp_create_user(char *user
, char **srp_verifier
,
160 char **srp_usersalt
, char *g
, char *N
,
161 char *passout
, int verbose
)
168 cb_tmp
.prompt_info
= user
;
169 cb_tmp
.password
= passout
;
171 len
= password_callback(password
, sizeof(password
)-1, 1, &cb_tmp
);
175 BIO_printf(bio_err
, "Creating\n user=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
177 if ((gNid
= SRP_create_verifier(user
, password
, &salt
,
178 srp_verifier
, N
, g
)) == NULL
) {
179 BIO_printf(bio_err
, "Internal error creating SRP verifier\n");
181 *srp_usersalt
= salt
;
183 OPENSSL_cleanse(password
, len
);
185 BIO_printf(bio_err
, "gNid=%s salt =\"%s\"\n verifier =\"%s\"\n",
186 gNid
, salt
, *srp_verifier
);
192 typedef enum OPTION_choice
{
194 OPT_VERBOSE
, OPT_CONFIG
, OPT_NAME
, OPT_SRPVFILE
, OPT_ADD
,
195 OPT_DELETE
, OPT_MODIFY
, OPT_LIST
, OPT_GN
, OPT_USERINFO
,
196 OPT_PASSIN
, OPT_PASSOUT
, OPT_ENGINE
, OPT_R_ENUM
, OPT_PROV_ENUM
199 const OPTIONS srp_options
[] = {
200 {OPT_HELP_STR
, 1, '-', "Usage: %s [options] [user...]\n"},
202 OPT_SECTION("General"),
203 {"help", OPT_HELP
, '-', "Display this summary"},
204 {"verbose", OPT_VERBOSE
, '-', "Talk a lot while doing things"},
205 {"config", OPT_CONFIG
, '<', "A config file"},
206 {"name", OPT_NAME
, 's', "The particular srp definition to use"},
207 #ifndef OPENSSL_NO_ENGINE
208 {"engine", OPT_ENGINE
, 's', "Use engine, possibly a hardware device"},
211 OPT_SECTION("Action"),
212 {"add", OPT_ADD
, '-', "Add a user and SRP verifier"},
213 {"modify", OPT_MODIFY
, '-', "Modify the SRP verifier of an existing user"},
214 {"delete", OPT_DELETE
, '-', "Delete user from verifier file"},
215 {"list", OPT_LIST
, '-', "List users"},
217 OPT_SECTION("Configuration"),
218 {"srpvfile", OPT_SRPVFILE
, '<', "The srp verifier file name"},
219 {"gn", OPT_GN
, 's', "Set g and N values to be used for new verifier"},
220 {"userinfo", OPT_USERINFO
, 's', "Additional info to be set for user"},
221 {"passin", OPT_PASSIN
, 's', "Input file pass phrase source"},
222 {"passout", OPT_PASSOUT
, 's', "Output file pass phrase source"},
228 {"user", 0, 0, "Username(s) to process (optional)"},
232 int srp_main(int argc
, char **argv
)
237 int gNindex
= -1, maxgN
= -1, ret
= 1, errors
= 0, verbose
= 0, i
;
238 int doupdatedb
= 0, mode
= OPT_ERR
;
239 char *user
= NULL
, *passinarg
= NULL
, *passoutarg
= NULL
;
240 char *passin
= NULL
, *passout
= NULL
, *gN
= NULL
, *userinfo
= NULL
;
241 char *section
= NULL
;
242 char **gNrow
= NULL
, *configfile
= NULL
;
243 char *srpvfile
= NULL
, **pp
, *prog
;
246 prog
= opt_init(argc
, argv
, srp_options
);
247 while ((o
= opt_next()) != OPT_EOF
) {
252 BIO_printf(bio_err
, "%s: Use -help for summary.\n", prog
);
255 opt_help(srp_options
);
262 configfile
= opt_arg();
268 srpvfile
= opt_arg();
274 if (mode
!= OPT_ERR
) {
276 "%s: Only one of -add/-delete/-modify/-list\n",
286 userinfo
= opt_arg();
289 passinarg
= opt_arg();
292 passoutarg
= opt_arg();
295 e
= setup_engine(opt_arg(), 0);
302 if (!opt_provider(o
))
308 /* Optional parameters are usernames. */
309 argc
= opt_num_rest();
312 if (!app_RAND_load())
315 if (srpvfile
!= NULL
&& configfile
!= NULL
) {
317 "-srpvfile and -configfile cannot be specified together.\n");
320 if (mode
== OPT_ERR
) {
322 "Exactly one of the options -add, -delete, -modify -list must be specified.\n");
325 if (mode
== OPT_DELETE
|| mode
== OPT_MODIFY
|| mode
== OPT_ADD
) {
327 BIO_printf(bio_err
, "Need at least one user.\n");
332 if ((passinarg
!= NULL
|| passoutarg
!= NULL
) && argc
!= 1) {
334 "-passin, -passout arguments only valid with one user.\n");
338 if (!app_passwd(passinarg
, passoutarg
, &passin
, &passout
)) {
339 BIO_printf(bio_err
, "Error getting passwords\n");
343 if (srpvfile
== NULL
) {
344 if (configfile
== NULL
)
345 configfile
= default_config_file
;
347 conf
= app_load_config_verbose(configfile
, verbose
);
350 if (configfile
!= default_config_file
&& !app_load_modules(conf
))
353 /* Lets get the config section we are using */
354 if (section
== NULL
) {
357 "trying to read " ENV_DEFAULT_SRP
358 " in " BASE_SECTION
"\n");
360 section
= lookup_conf(conf
, BASE_SECTION
, ENV_DEFAULT_SRP
);
365 app_RAND_load_conf(conf
, BASE_SECTION
);
369 "trying to read " ENV_DATABASE
" in section \"%s\"\n",
372 srpvfile
= lookup_conf(conf
, section
, ENV_DATABASE
);
373 if (srpvfile
== NULL
)
378 BIO_printf(bio_err
, "Trying to read SRP verifier file \"%s\"\n",
381 db
= load_index(srpvfile
, NULL
);
383 BIO_printf(bio_err
, "Problem with index file: %s (could not load/parse file)\n", srpvfile
);
387 /* Lets check some fields */
388 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
389 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
391 if (pp
[DB_srptype
][0] == DB_SRP_INDEX
) {
393 if ((gNindex
< 0) && (gN
!= NULL
) && strcmp(gN
, pp
[DB_srpid
]) == 0)
396 print_index(db
, i
, verbose
> 1);
401 BIO_printf(bio_err
, "Database initialised\n");
404 gNrow
= sk_OPENSSL_PSTRING_value(db
->db
->data
, gNindex
);
405 print_entry(db
, gNindex
, verbose
> 1, "Default g and N");
406 } else if (maxgN
> 0 && !SRP_get_default_gN(gN
)) {
407 BIO_printf(bio_err
, "No g and N value for index \"%s\"\n", gN
);
411 BIO_printf(bio_err
, "Database has no g N information.\n");
416 BIO_printf(bio_err
, "Starting user processing\n");
418 while (mode
== OPT_LIST
|| user
!= NULL
) {
421 if (user
!= NULL
&& verbose
> 1)
422 BIO_printf(bio_err
, "Processing user \"%s\"\n", user
);
423 if ((userindex
= get_index(db
, user
, 'U')) >= 0)
424 print_user(db
, userindex
, (verbose
> 0) || mode
== OPT_LIST
);
426 if (mode
== OPT_LIST
) {
428 BIO_printf(bio_err
, "List all users\n");
430 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++)
431 print_user(db
, i
, 1);
432 } else if (userindex
< 0) {
434 "user \"%s\" does not exist, ignored. t\n", user
);
437 } else if (mode
== OPT_ADD
) {
438 if (userindex
>= 0) {
439 /* reactivation of a new user */
441 sk_OPENSSL_PSTRING_value(db
->db
->data
, userindex
);
442 BIO_printf(bio_err
, "user \"%s\" reactivated.\n", user
);
443 row
[DB_srptype
][0] = 'V';
447 char *row
[DB_NUMBER
];
449 row
[DB_srpverifier
] = NULL
;
450 row
[DB_srpsalt
] = NULL
;
451 row
[DB_srpinfo
] = NULL
;
454 srp_create_user(user
, &(row
[DB_srpverifier
]),
456 gNrow
? gNrow
[DB_srpsalt
] : gN
,
457 gNrow
? gNrow
[DB_srpverifier
] : NULL
,
458 passout
, verbose
))) {
460 "Cannot create srp verifier for user \"%s\", operation abandoned .\n",
465 row
[DB_srpid
] = OPENSSL_strdup(user
);
466 row
[DB_srptype
] = OPENSSL_strdup("v");
467 row
[DB_srpgN
] = OPENSSL_strdup(gNid
);
469 if ((row
[DB_srpid
] == NULL
)
470 || (row
[DB_srpgN
] == NULL
)
471 || (row
[DB_srptype
] == NULL
)
472 || (row
[DB_srpverifier
] == NULL
)
473 || (row
[DB_srpsalt
] == NULL
)
475 && ((row
[DB_srpinfo
] = OPENSSL_strdup(userinfo
)) == NULL
))
476 || !update_index(db
, row
)) {
477 OPENSSL_free(row
[DB_srpid
]);
478 OPENSSL_free(row
[DB_srpgN
]);
479 OPENSSL_free(row
[DB_srpinfo
]);
480 OPENSSL_free(row
[DB_srptype
]);
481 OPENSSL_free(row
[DB_srpverifier
]);
482 OPENSSL_free(row
[DB_srpsalt
]);
487 } else if (mode
== OPT_MODIFY
) {
490 "user \"%s\" does not exist, operation ignored.\n",
496 sk_OPENSSL_PSTRING_value(db
->db
->data
, userindex
);
497 char type
= row
[DB_srptype
][0];
500 "user \"%s\" already updated, operation ignored.\n",
506 if (row
[DB_srptype
][0] == 'V') {
511 "Verifying password for user \"%s\"\n",
514 get_index(db
, row
[DB_srpgN
], DB_SRP_INDEX
)) >= 0)
516 sk_OPENSSL_PSTRING_value(db
->db
->data
,
520 (user
, row
[DB_srpverifier
], row
[DB_srpsalt
],
521 irow
? irow
[DB_srpsalt
] : row
[DB_srpgN
],
522 irow
? irow
[DB_srpverifier
] : NULL
, passin
,
525 "Invalid password for user \"%s\", operation abandoned.\n",
532 BIO_printf(bio_err
, "Password for user \"%s\" ok.\n",
537 srp_create_user(user
, &(row
[DB_srpverifier
]),
539 gNrow
? gNrow
[DB_srpsalt
] : NULL
,
540 gNrow
? gNrow
[DB_srpverifier
] : NULL
,
541 passout
, verbose
))) {
543 "Cannot create srp verifier for user \"%s\", operation abandoned.\n",
549 row
[DB_srptype
][0] = 'v';
550 row
[DB_srpgN
] = OPENSSL_strdup(gNid
);
552 if (row
[DB_srpid
] == NULL
553 || row
[DB_srpgN
] == NULL
554 || row
[DB_srptype
] == NULL
555 || row
[DB_srpverifier
] == NULL
556 || row
[DB_srpsalt
] == NULL
558 && ((row
[DB_srpinfo
] = OPENSSL_strdup(userinfo
))
565 } else if (mode
== OPT_DELETE
) {
568 "user \"%s\" does not exist, operation ignored. t\n",
572 char **xpp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, userindex
);
574 BIO_printf(bio_err
, "user \"%s\" revoked. t\n", user
);
575 xpp
[DB_srptype
][0] = 'R';
581 /* no more processing in any mode if no users left */
587 BIO_printf(bio_err
, "User procession done.\n");
590 /* Lets check some fields */
591 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
592 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
594 if (pp
[DB_srptype
][0] == 'v') {
595 pp
[DB_srptype
][0] = 'V';
596 print_user(db
, i
, verbose
);
601 BIO_printf(bio_err
, "Trying to update srpvfile.\n");
602 if (!save_index(srpvfile
, "new", db
))
606 BIO_printf(bio_err
, "Temporary srpvfile created.\n");
607 if (!rotate_index(srpvfile
, "new", "old"))
611 BIO_printf(bio_err
, "srpvfile updated.\n");
618 BIO_printf(bio_err
, "User errors %d.\n", errors
);
621 BIO_printf(bio_err
, "SRP terminating with code %d.\n", ret
);
623 OPENSSL_free(passin
);
624 OPENSSL_free(passout
);
626 ERR_print_errors(bio_err
);