]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/srp.c
Add a comment to explain the use of |num_recs|
[thirdparty/openssl.git] / apps / srp.c
CommitLineData
0f113f3e
MC
1/*
2 * Written by Peter Sylvester (peter.sylvester@edelweb.fr) for the EdelKey
3 * project and contributed to the OpenSSL project 2004.
edc032b5
BL
4 */
5/* ====================================================================
6 * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
0f113f3e 13 * notice, this list of conditions and the following disclaimer.
edc032b5
BL
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
effaf4de 58
edc032b5 59#include <openssl/opensslconf.h>
effaf4de
RS
60#ifdef OPENSSL_NO_SRP
61NON_EMPTY_TRANSLATION_UNIT
62#else
edc032b5 63
effaf4de
RS
64# include <stdio.h>
65# include <stdlib.h>
66# include <string.h>
67# include <openssl/conf.h>
68# include <openssl/bio.h>
69# include <openssl/err.h>
70# include <openssl/txt_db.h>
71# include <openssl/buffer.h>
72# include <openssl/srp.h>
73# include "apps.h"
6e81b270 74
6e81b270
AP
75# define BASE_SECTION "srp"
76# define CONFIG_FILE "openssl.cnf"
77
78# define ENV_RANDFILE "RANDFILE"
79
80# define ENV_DATABASE "srpvfile"
81# define ENV_DEFAULT_SRP "default_srp"
82
6e81b270
AP
83static int get_index(CA_DB *db, char *id, char type)
84{
85 char **pp;
86 int i;
87 if (id == NULL)
88 return -1;
89 if (type == DB_SRP_INDEX)
90 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
91 pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
92 if (pp[DB_srptype][0] == DB_SRP_INDEX
86885c28 93 && strcmp(id, pp[DB_srpid]) == 0)
6e81b270
AP
94 return i;
95 } else
96 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
97 pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
98
99 if (pp[DB_srptype][0] != DB_SRP_INDEX
86885c28 100 && strcmp(id, pp[DB_srpid]) == 0)
6e81b270
AP
101 return i;
102 }
103
104 return -1;
105}
edc032b5 106
ecf3a1fb 107static void print_entry(CA_DB *db, int indx, int verbose, char *s)
6e81b270
AP
108{
109 if (indx >= 0 && verbose) {
110 int j;
111 char **pp = sk_OPENSSL_PSTRING_value(db->db->data, indx);
ecf3a1fb 112 BIO_printf(bio_err, "%s \"%s\"\n", s, pp[DB_srpid]);
6e81b270
AP
113 for (j = 0; j < DB_NUMBER; j++) {
114 BIO_printf(bio_err, " %d = \"%s\"\n", j, pp[j]);
115 }
116 }
117}
edc032b5 118
ecf3a1fb 119static void print_index(CA_DB *db, int indexindex, int verbose)
6e81b270 120{
ecf3a1fb 121 print_entry(db, indexindex, verbose, "g N entry");
6e81b270 122}
edc032b5 123
ecf3a1fb 124static void print_user(CA_DB *db, int userindex, int verbose)
6e81b270
AP
125{
126 if (verbose > 0) {
127 char **pp = sk_OPENSSL_PSTRING_value(db->db->data, userindex);
edc032b5 128
6e81b270 129 if (pp[DB_srptype][0] != 'I') {
ecf3a1fb
RS
130 print_entry(db, userindex, verbose, "User entry");
131 print_entry(db, get_index(db, pp[DB_srpgN], 'I'), verbose,
6e81b270
AP
132 "g N entry");
133 }
edc032b5 134
6e81b270
AP
135 }
136}
edc032b5 137
ecf3a1fb 138static int update_index(CA_DB *db, char **row)
6e81b270
AP
139{
140 char **irow;
141 int i;
142
b4faea50 143 irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row pointers");
6e81b270
AP
144 for (i = 0; i < DB_NUMBER; i++) {
145 irow[i] = row[i];
146 row[i] = NULL;
147 }
148 irow[DB_NUMBER] = NULL;
149
150 if (!TXT_DB_insert(db->db, irow)) {
ecf3a1fb
RS
151 BIO_printf(bio_err, "failed to update srpvfile\n");
152 BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
6e81b270
AP
153 OPENSSL_free(irow);
154 return 0;
155 }
156 return 1;
157}
edc032b5
BL
158
159static void lookup_fail(const char *name, const char *tag)
6e81b270
AP
160{
161 BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
162}
edc032b5
BL
163
164static char *srp_verify_user(const char *user, const char *srp_verifier,
6e81b270 165 char *srp_usersalt, const char *g, const char *N,
ecf3a1fb 166 const char *passin, int verbose)
6e81b270
AP
167{
168 char password[1024];
169 PW_CB_DATA cb_tmp;
170 char *verifier = NULL;
171 char *gNid = NULL;
172
173 cb_tmp.prompt_info = user;
174 cb_tmp.password = passin;
175
176 if (password_callback(password, 1024, 0, &cb_tmp) > 0) {
7e1b7485 177 if (verbose)
ecf3a1fb 178 BIO_printf(bio_err,
7e1b7485
RS
179 "Validating\n user=\"%s\"\n srp_verifier=\"%s\"\n srp_usersalt=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
180 user, srp_verifier, srp_usersalt, g, N);
ecf3a1fb 181 BIO_printf(bio_err, "Pass %s\n", password);
6e81b270
AP
182
183 OPENSSL_assert(srp_usersalt != NULL);
7e1b7485
RS
184 if (!
185 (gNid =
186 SRP_create_verifier(user, password, &srp_usersalt, &verifier, N,
187 g))) {
ecf3a1fb 188 BIO_printf(bio_err, "Internal error validating SRP verifier\n");
6e81b270
AP
189 } else {
190 if (strcmp(verifier, srp_verifier))
191 gNid = NULL;
192 OPENSSL_free(verifier);
193 }
194 }
195 return gNid;
196}
edc032b5 197
71fa4513 198static char *srp_create_user(char *user, char **srp_verifier,
6e81b270 199 char **srp_usersalt, char *g, char *N,
ecf3a1fb 200 char *passout, int verbose)
6e81b270
AP
201{
202 char password[1024];
203 PW_CB_DATA cb_tmp;
204 char *gNid = NULL;
205 char *salt = NULL;
206 cb_tmp.prompt_info = user;
207 cb_tmp.password = passout;
208
209 if (password_callback(password, 1024, 1, &cb_tmp) > 0) {
7e1b7485 210 if (verbose)
ecf3a1fb 211 BIO_printf(bio_err, "Creating\n user=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
7e1b7485
RS
212 user, g, N);
213 if (!
214 (gNid =
215 SRP_create_verifier(user, password, &salt, srp_verifier, N,
216 g))) {
ecf3a1fb 217 BIO_printf(bio_err, "Internal error creating SRP verifier\n");
6e81b270
AP
218 } else
219 *srp_usersalt = salt;
7e1b7485 220 if (verbose > 1)
ecf3a1fb 221 BIO_printf(bio_err, "gNid=%s salt =\"%s\"\n verifier =\"%s\"\n", gNid,
7e1b7485 222 salt, *srp_verifier);
6e81b270
AP
223
224 }
225 return gNid;
226}
edc032b5 227
7e1b7485
RS
228typedef enum OPTION_choice {
229 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
230 OPT_VERBOSE, OPT_CONFIG, OPT_NAME, OPT_SRPVFILE, OPT_ADD,
231 OPT_DELETE, OPT_MODIFY, OPT_LIST, OPT_GN, OPT_USERINFO,
232 OPT_PASSIN, OPT_PASSOUT, OPT_ENGINE
233} OPTION_CHOICE;
234
235OPTIONS srp_options[] = {
236 {"help", OPT_HELP, '-', "Display this summary"},
237 {"verbose", OPT_VERBOSE, '-', "Talk a lot while doing things"},
238 {"config", OPT_CONFIG, '<', "A config file"},
239 {"name", OPT_NAME, 's', "The particular srp definition to use"},
240 {"srpvfile", OPT_SRPVFILE, '<', "The srp verifier file name"},
241 {"add", OPT_ADD, '-', "Add a user and srp verifier"},
242 {"modify", OPT_MODIFY, '-',
243 "Modify the srp verifier of an existing user"},
244 {"delete", OPT_DELETE, '-', "Delete user from verifier file"},
245 {"list", OPT_LIST, '-', "List users"},
246 {"gn", OPT_GN, 's', "Set g and N values to be used for new verifier"},
247 {"userinfo", OPT_USERINFO, 's', "Additional info to be set for user"},
248 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
249 {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
6e81b270 250# ifndef OPENSSL_NO_ENGINE
7e1b7485 251 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
6e81b270 252# endif
7e1b7485
RS
253 {NULL}
254};
255
256int srp_main(int argc, char **argv)
257{
258 CA_DB *db = NULL;
7e1b7485 259 CONF *conf = NULL;
cc01d217
RS
260 int gNindex = -1, maxgN = -1, ret = 1, errors = 0, verbose = 0, i;
261 int doupdatedb = 0, mode = OPT_ERR;
7e1b7485
RS
262 char *user = NULL, *passinarg = NULL, *passoutarg = NULL;
263 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL;
333b070e 264 char *randfile = NULL, *tofree = NULL, *section = NULL;
dfd6211c
MC
265 char **gNrow = NULL, *configfile = NULL;
266 char *srpvfile = NULL, **pp, *prog;
7e1b7485 267 OPTION_CHOICE o;
6e81b270 268
7e1b7485
RS
269 prog = opt_init(argc, argv, srp_options);
270 while ((o = opt_next()) != OPT_EOF) {
271 switch (o) {
272 case OPT_EOF:
273 case OPT_ERR:
274 opthelp:
275 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
276 goto end;
277 case OPT_HELP:
278 opt_help(srp_options);
279 ret = 0;
280 goto end;
281 case OPT_VERBOSE:
6e81b270 282 verbose++;
6e81b270 283 break;
7e1b7485
RS
284 case OPT_CONFIG:
285 configfile = opt_arg();
6e81b270 286 break;
7e1b7485
RS
287 case OPT_NAME:
288 section = opt_arg();
289 break;
290 case OPT_SRPVFILE:
dfd6211c 291 srpvfile = opt_arg();
7e1b7485
RS
292 break;
293 case OPT_ADD:
294 case OPT_DELETE:
295 case OPT_MODIFY:
296 case OPT_LIST:
297 if (mode != OPT_ERR) {
298 BIO_printf(bio_err,
299 "%s: Only one of -add/delete-modify/-list\n",
300 prog);
301 goto opthelp;
302 }
303 mode = o;
304 break;
305 case OPT_GN:
306 gN = opt_arg();
307 break;
308 case OPT_USERINFO:
309 userinfo = opt_arg();
310 break;
311 case OPT_PASSIN:
312 passinarg = opt_arg();
313 break;
314 case OPT_PASSOUT:
315 passoutarg = opt_arg();
316 break;
317 case OPT_ENGINE:
333b070e 318 (void)setup_engine(opt_arg(), 0);
7e1b7485
RS
319 break;
320 }
6e81b270 321 }
7e1b7485
RS
322 argc = opt_num_rest();
323 argv = opt_rest();
6e81b270 324
dfd6211c 325 if (srpvfile && configfile) {
6e81b270 326 BIO_printf(bio_err,
dfd6211c 327 "-srpvfile and -configfile cannot be specified together.\n");
7e1b7485 328 goto end;
6e81b270 329 }
7e1b7485
RS
330 if (mode == OPT_ERR) {
331 BIO_printf(bio_err,
332 "Exactly one of the options -add, -delete, -modify -list must be specified.\n");
333 goto opthelp;
6e81b270 334 }
5a80d9fb
RS
335 if ((mode == OPT_DELETE || mode == OPT_MODIFY || mode == OPT_ADD)
336 && argc < 1) {
7e1b7485
RS
337 BIO_printf(bio_err,
338 "Need at least one user for options -add, -delete, -modify. \n");
339 goto opthelp;
6e81b270
AP
340 }
341 if ((passin || passout) && argc != 1) {
342 BIO_printf(bio_err,
343 "-passin, -passout arguments only valid with one user.\n");
7e1b7485 344 goto opthelp;
6e81b270 345 }
6e81b270 346
7e1b7485 347 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
6e81b270 348 BIO_printf(bio_err, "Error getting passwords\n");
7e1b7485 349 goto end;
6e81b270
AP
350 }
351
dfd6211c
MC
352 if (!srpvfile) {
353 if (!configfile)
354 configfile = default_config_file;
355
7e1b7485 356 if (verbose)
cc01d217
RS
357 BIO_printf(bio_err, "Using configuration from %s\n",
358 configfile);
359 conf = app_load_config(configfile);
360 if (conf == NULL)
7e1b7485 361 goto end;
c821defc 362 if (configfile != default_config_file && !app_load_modules(conf))
296f54ee 363 goto end;
6e81b270 364
6e81b270
AP
365 /* Lets get the config section we are using */
366 if (section == NULL) {
7e1b7485
RS
367 if (verbose)
368 BIO_printf(bio_err,
369 "trying to read " ENV_DEFAULT_SRP
44fdf1c2 370 " in " BASE_SECTION "\n");
6e81b270
AP
371
372 section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_SRP);
373 if (section == NULL) {
374 lookup_fail(BASE_SECTION, ENV_DEFAULT_SRP);
7e1b7485 375 goto end;
6e81b270
AP
376 }
377 }
378
379 if (randfile == NULL && conf)
380 randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE");
381
7e1b7485
RS
382 if (verbose)
383 BIO_printf(bio_err,
384 "trying to read " ENV_DATABASE " in section \"%s\"\n",
385 section);
6e81b270 386
dfd6211c
MC
387 if ((srpvfile = NCONF_get_string(conf, section, ENV_DATABASE))
388 == NULL) {
6e81b270 389 lookup_fail(section, ENV_DATABASE);
7e1b7485 390 goto end;
6e81b270
AP
391 }
392
393 }
394 if (randfile == NULL)
395 ERR_clear_error();
396 else
7e1b7485 397 app_RAND_load_file(randfile, 0);
6e81b270 398
7e1b7485
RS
399 if (verbose)
400 BIO_printf(bio_err, "Trying to read SRP verifier file \"%s\"\n",
dfd6211c 401 srpvfile);
6e81b270 402
9d7ec809 403 db = load_index(srpvfile, NULL);
6e81b270 404 if (db == NULL)
7e1b7485 405 goto end;
6e81b270
AP
406
407 /* Lets check some fields */
408 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
409 pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
410
411 if (pp[DB_srptype][0] == DB_SRP_INDEX) {
412 maxgN = i;
86885c28 413 if ((gNindex < 0) && (gN != NULL) && strcmp(gN, pp[DB_srpid]) == 0)
6e81b270
AP
414 gNindex = i;
415
ecf3a1fb 416 print_index(db, i, verbose > 1);
6e81b270
AP
417 }
418 }
419
7e1b7485
RS
420 if (verbose)
421 BIO_printf(bio_err, "Database initialised\n");
6e81b270
AP
422
423 if (gNindex >= 0) {
424 gNrow = sk_OPENSSL_PSTRING_value(db->db->data, gNindex);
ecf3a1fb 425 print_entry(db, gNindex, verbose > 1, "Default g and N");
6e81b270
AP
426 } else if (maxgN > 0 && !SRP_get_default_gN(gN)) {
427 BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN);
7e1b7485 428 goto end;
6e81b270 429 } else {
7e1b7485
RS
430 if (verbose)
431 BIO_printf(bio_err, "Database has no g N information.\n");
6e81b270
AP
432 gNrow = NULL;
433 }
434
7e1b7485
RS
435 if (verbose > 1)
436 BIO_printf(bio_err, "Starting user processing\n");
6e81b270
AP
437
438 if (argc > 0)
439 user = *(argv++);
440
7e1b7485 441 while (mode == OPT_LIST || user) {
6e81b270
AP
442 int userindex = -1;
443 if (user)
7e1b7485
RS
444 if (verbose > 1)
445 BIO_printf(bio_err, "Processing user \"%s\"\n", user);
6e81b270 446 if ((userindex = get_index(db, user, 'U')) >= 0) {
ecf3a1fb 447 print_user(db, userindex, (verbose > 0)
7e1b7485 448 || mode == OPT_LIST);
6e81b270
AP
449 }
450
7e1b7485 451 if (mode == OPT_LIST) {
6e81b270
AP
452 if (user == NULL) {
453 BIO_printf(bio_err, "List all users\n");
454
455 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
ecf3a1fb 456 print_user(db, i, 1);
6e81b270 457 }
6e81b270
AP
458 } else if (userindex < 0) {
459 BIO_printf(bio_err,
460 "user \"%s\" does not exist, ignored. t\n", user);
461 errors++;
462 }
7e1b7485 463 } else if (mode == OPT_ADD) {
6e81b270
AP
464 if (userindex >= 0) {
465 /* reactivation of a new user */
466 char **row =
467 sk_OPENSSL_PSTRING_value(db->db->data, userindex);
468 BIO_printf(bio_err, "user \"%s\" reactivated.\n", user);
469 row[DB_srptype][0] = 'V';
470
471 doupdatedb = 1;
472 } else {
473 char *row[DB_NUMBER];
474 char *gNid;
475 row[DB_srpverifier] = NULL;
476 row[DB_srpsalt] = NULL;
477 row[DB_srpinfo] = NULL;
7e1b7485
RS
478 if (!
479 (gNid =
480 srp_create_user(user, &(row[DB_srpverifier]),
481 &(row[DB_srpsalt]),
482 gNrow ? gNrow[DB_srpsalt] : gN,
483 gNrow ? gNrow[DB_srpverifier] : NULL,
ecf3a1fb 484 passout, verbose))) {
6e81b270 485 BIO_printf(bio_err,
7e1b7485
RS
486 "Cannot create srp verifier for user \"%s\", operation abandoned .\n",
487 user);
6e81b270 488 errors++;
7e1b7485 489 goto end;
6e81b270 490 }
7644a9ae
RS
491 row[DB_srpid] = OPENSSL_strdup(user);
492 row[DB_srptype] = OPENSSL_strdup("v");
493 row[DB_srpgN] = OPENSSL_strdup(gNid);
6e81b270 494
75ebbd9a
RS
495 if ((row[DB_srpid] == NULL)
496 || (row[DB_srpgN] == NULL)
497 || (row[DB_srptype] == NULL)
498 || (row[DB_srpverifier] == NULL)
499 || (row[DB_srpsalt] == NULL)
500 || (userinfo
7644a9ae 501 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo)) == NULL))
ecf3a1fb 502 || !update_index(db, row)) {
b548a1f1
RS
503 OPENSSL_free(row[DB_srpid]);
504 OPENSSL_free(row[DB_srpgN]);
505 OPENSSL_free(row[DB_srpinfo]);
506 OPENSSL_free(row[DB_srptype]);
507 OPENSSL_free(row[DB_srpverifier]);
508 OPENSSL_free(row[DB_srpsalt]);
7e1b7485 509 goto end;
6e81b270
AP
510 }
511 doupdatedb = 1;
512 }
7e1b7485 513 } else if (mode == OPT_MODIFY) {
6e81b270
AP
514 if (userindex < 0) {
515 BIO_printf(bio_err,
516 "user \"%s\" does not exist, operation ignored.\n",
517 user);
518 errors++;
519 } else {
520
521 char **row =
522 sk_OPENSSL_PSTRING_value(db->db->data, userindex);
523 char type = row[DB_srptype][0];
524 if (type == 'v') {
525 BIO_printf(bio_err,
526 "user \"%s\" already updated, operation ignored.\n",
527 user);
528 errors++;
529 } else {
530 char *gNid;
531
532 if (row[DB_srptype][0] == 'V') {
533 int user_gN;
534 char **irow = NULL;
7e1b7485
RS
535 if (verbose)
536 BIO_printf(bio_err,
537 "Verifying password for user \"%s\"\n",
538 user);
6e81b270
AP
539 if ((user_gN =
540 get_index(db, row[DB_srpgN], DB_SRP_INDEX)) >= 0)
541 irow =
542 sk_OPENSSL_PSTRING_value(db->db->data,
543 userindex);
544
545 if (!srp_verify_user
546 (user, row[DB_srpverifier], row[DB_srpsalt],
547 irow ? irow[DB_srpsalt] : row[DB_srpgN],
548 irow ? irow[DB_srpverifier] : NULL, passin,
ecf3a1fb 549 verbose)) {
6e81b270
AP
550 BIO_printf(bio_err,
551 "Invalid password for user \"%s\", operation abandoned.\n",
552 user);
553 errors++;
7e1b7485 554 goto end;
6e81b270
AP
555 }
556 }
7e1b7485
RS
557 if (verbose)
558 BIO_printf(bio_err, "Password for user \"%s\" ok.\n",
559 user);
560
561 if (!
562 (gNid =
563 srp_create_user(user, &(row[DB_srpverifier]),
564 &(row[DB_srpsalt]),
565 gNrow ? gNrow[DB_srpsalt] : NULL,
566 gNrow ? gNrow[DB_srpverifier] : NULL,
ecf3a1fb 567 passout, verbose))) {
6e81b270 568 BIO_printf(bio_err,
7e1b7485
RS
569 "Cannot create srp verifier for user \"%s\", operation abandoned.\n",
570 user);
6e81b270 571 errors++;
7e1b7485 572 goto end;
6e81b270
AP
573 }
574
575 row[DB_srptype][0] = 'v';
7644a9ae 576 row[DB_srpgN] = OPENSSL_strdup(gNid);
6e81b270 577
75ebbd9a
RS
578 if (row[DB_srpid] == NULL
579 || row[DB_srpgN] == NULL
580 || row[DB_srptype] == NULL
581 || row[DB_srpverifier] == NULL
582 || row[DB_srpsalt] == NULL
6e81b270 583 || (userinfo
7644a9ae 584 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo))
75ebbd9a 585 == NULL)))
7e1b7485 586 goto end;
6e81b270
AP
587
588 doupdatedb = 1;
589 }
590 }
7e1b7485 591 } else if (mode == OPT_DELETE) {
6e81b270
AP
592 if (userindex < 0) {
593 BIO_printf(bio_err,
594 "user \"%s\" does not exist, operation ignored. t\n",
595 user);
596 errors++;
597 } else {
75ebbd9a 598 char **xpp = sk_OPENSSL_PSTRING_value(db->db->data, userindex);
6e81b270 599
75ebbd9a 600 BIO_printf(bio_err, "user \"%s\" revoked. t\n", user);
6e81b270 601 xpp[DB_srptype][0] = 'R';
6e81b270
AP
602 doupdatedb = 1;
603 }
604 }
605 if (--argc > 0)
606 user = *(argv++);
607 else {
608 user = NULL;
6e81b270
AP
609 }
610 }
611
7e1b7485
RS
612 if (verbose)
613 BIO_printf(bio_err, "User procession done.\n");
6e81b270
AP
614
615 if (doupdatedb) {
616 /* Lets check some fields */
617 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
618 pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
619
620 if (pp[DB_srptype][0] == 'v') {
621 pp[DB_srptype][0] = 'V';
ecf3a1fb 622 print_user(db, i, verbose);
6e81b270
AP
623 }
624 }
625
7e1b7485
RS
626 if (verbose)
627 BIO_printf(bio_err, "Trying to update srpvfile.\n");
dfd6211c 628 if (!save_index(srpvfile, "new", db))
7e1b7485 629 goto end;
6e81b270 630
7e1b7485
RS
631 if (verbose)
632 BIO_printf(bio_err, "Temporary srpvfile created.\n");
dfd6211c 633 if (!rotate_index(srpvfile, "new", "old"))
7e1b7485 634 goto end;
6e81b270 635
7e1b7485
RS
636 if (verbose)
637 BIO_printf(bio_err, "srpvfile updated.\n");
6e81b270
AP
638 }
639
640 ret = (errors != 0);
7e1b7485 641 end:
6e81b270 642 if (errors != 0)
7e1b7485
RS
643 if (verbose)
644 BIO_printf(bio_err, "User errors %d.\n", errors);
6e81b270 645
7e1b7485
RS
646 if (verbose)
647 BIO_printf(bio_err, "SRP terminating with code %d.\n", ret);
b548a1f1 648 OPENSSL_free(tofree);
6e81b270
AP
649 if (ret)
650 ERR_print_errors(bio_err);
651 if (randfile)
7e1b7485 652 app_RAND_write_file(randfile);
25aaa98a
RS
653 NCONF_free(conf);
654 free_index(db);
7e1b7485 655 return (ret);
6e81b270 656}
edc032b5 657#endif