Use p==NULL not !p (in if statements, mainly)
[openssl.git] / apps / srp.c
1 /*
2  * Written by Peter Sylvester (peter.sylvester@edelweb.fr) for the EdelKey
3  * project and contributed to the OpenSSL project 2004.
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
13  *    notice, this list of conditions and the following disclaimer.
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  */
58 #include <openssl/opensslconf.h>
59
60 #ifndef OPENSSL_NO_SRP
61 # include <stdio.h>
62 # include <stdlib.h>
63 # include <string.h>
64 # include <openssl/conf.h>
65 # include <openssl/bio.h>
66 # include <openssl/err.h>
67 # include <openssl/txt_db.h>
68 # include <openssl/buffer.h>
69 # include <openssl/srp.h>
70
71 # include "apps.h"
72
73 # define BASE_SECTION    "srp"
74 # define CONFIG_FILE "openssl.cnf"
75
76 # define ENV_RANDFILE            "RANDFILE"
77
78 # define ENV_DATABASE            "srpvfile"
79 # define ENV_DEFAULT_SRP         "default_srp"
80
81 static int get_index(CA_DB *db, char *id, char type)
82 {
83     char **pp;
84     int i;
85     if (id == NULL)
86         return -1;
87     if (type == DB_SRP_INDEX)
88         for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
89             pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
90             if (pp[DB_srptype][0] == DB_SRP_INDEX
91                 && strcmp(id, pp[DB_srpid]) == 0)
92                 return i;
93     } else
94         for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
95             pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
96
97             if (pp[DB_srptype][0] != DB_SRP_INDEX
98                 && strcmp(id, pp[DB_srpid]) == 0)
99                 return i;
100         }
101
102     return -1;
103 }
104
105 static void print_entry(CA_DB *db, int indx, int verbose, char *s)
106 {
107     if (indx >= 0 && verbose) {
108         int j;
109         char **pp = sk_OPENSSL_PSTRING_value(db->db->data, indx);
110         BIO_printf(bio_err, "%s \"%s\"\n", s, pp[DB_srpid]);
111         for (j = 0; j < DB_NUMBER; j++) {
112             BIO_printf(bio_err, "  %d = \"%s\"\n", j, pp[j]);
113         }
114     }
115 }
116
117 static void print_index(CA_DB *db, int indexindex, int verbose)
118 {
119     print_entry(db, indexindex, verbose, "g N entry");
120 }
121
122 static void print_user(CA_DB *db, int userindex, int verbose)
123 {
124     if (verbose > 0) {
125         char **pp = sk_OPENSSL_PSTRING_value(db->db->data, userindex);
126
127         if (pp[DB_srptype][0] != 'I') {
128             print_entry(db, userindex, verbose, "User entry");
129             print_entry(db, get_index(db, pp[DB_srpgN], 'I'), verbose,
130                         "g N entry");
131         }
132
133     }
134 }
135
136 static int update_index(CA_DB *db, char **row)
137 {
138     char **irow;
139     int i;
140
141     irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row pointers");
142     for (i = 0; i < DB_NUMBER; i++) {
143         irow[i] = row[i];
144         row[i] = NULL;
145     }
146     irow[DB_NUMBER] = NULL;
147
148     if (!TXT_DB_insert(db->db, irow)) {
149         BIO_printf(bio_err, "failed to update srpvfile\n");
150         BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
151         OPENSSL_free(irow);
152         return 0;
153     }
154     return 1;
155 }
156
157 static void lookup_fail(const char *name, const char *tag)
158 {
159     BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
160 }
161
162 static char *srp_verify_user(const char *user, const char *srp_verifier,
163                              char *srp_usersalt, const char *g, const char *N,
164                              const char *passin, int verbose)
165 {
166     char password[1024];
167     PW_CB_DATA cb_tmp;
168     char *verifier = NULL;
169     char *gNid = NULL;
170
171     cb_tmp.prompt_info = user;
172     cb_tmp.password = passin;
173
174     if (password_callback(password, 1024, 0, &cb_tmp) > 0) {
175         if (verbose)
176             BIO_printf(bio_err,
177                        "Validating\n   user=\"%s\"\n srp_verifier=\"%s\"\n srp_usersalt=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
178                        user, srp_verifier, srp_usersalt, g, N);
179         BIO_printf(bio_err, "Pass %s\n", password);
180
181         OPENSSL_assert(srp_usersalt != NULL);
182         if (!
183             (gNid =
184              SRP_create_verifier(user, password, &srp_usersalt, &verifier, N,
185                                  g))) {
186             BIO_printf(bio_err, "Internal error validating SRP verifier\n");
187         } else {
188             if (strcmp(verifier, srp_verifier))
189                 gNid = NULL;
190             OPENSSL_free(verifier);
191         }
192     }
193     return gNid;
194 }
195
196 static char *srp_create_user(char *user, char **srp_verifier,
197                              char **srp_usersalt, char *g, char *N,
198                              char *passout, int verbose)
199 {
200     char password[1024];
201     PW_CB_DATA cb_tmp;
202     char *gNid = NULL;
203     char *salt = NULL;
204     cb_tmp.prompt_info = user;
205     cb_tmp.password = passout;
206
207     if (password_callback(password, 1024, 1, &cb_tmp) > 0) {
208         if (verbose)
209             BIO_printf(bio_err, "Creating\n user=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
210                        user, g, N);
211         if (!
212             (gNid =
213              SRP_create_verifier(user, password, &salt, srp_verifier, N,
214                                  g))) {
215             BIO_printf(bio_err, "Internal error creating SRP verifier\n");
216         } else
217             *srp_usersalt = salt;
218         if (verbose > 1)
219             BIO_printf(bio_err, "gNid=%s salt =\"%s\"\n verifier =\"%s\"\n", gNid,
220                        salt, *srp_verifier);
221
222     }
223     return gNid;
224 }
225
226 typedef enum OPTION_choice {
227     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
228     OPT_VERBOSE, OPT_CONFIG, OPT_NAME, OPT_SRPVFILE, OPT_ADD,
229     OPT_DELETE, OPT_MODIFY, OPT_LIST, OPT_GN, OPT_USERINFO,
230     OPT_PASSIN, OPT_PASSOUT, OPT_ENGINE
231 } OPTION_CHOICE;
232
233 OPTIONS srp_options[] = {
234     {"help", OPT_HELP, '-', "Display this summary"},
235     {"verbose", OPT_VERBOSE, '-', "Talk a lot while doing things"},
236     {"config", OPT_CONFIG, '<', "A config file"},
237     {"name", OPT_NAME, 's', "The particular srp definition to use"},
238     {"srpvfile", OPT_SRPVFILE, '<', "The srp verifier file name"},
239     {"add", OPT_ADD, '-', "Add a user and srp verifier"},
240     {"modify", OPT_MODIFY, '-',
241      "Modify the srp verifier of an existing user"},
242     {"delete", OPT_DELETE, '-', "Delete user from verifier file"},
243     {"list", OPT_LIST, '-', "List users"},
244     {"gn", OPT_GN, 's', "Set g and N values to be used for new verifier"},
245     {"userinfo", OPT_USERINFO, 's', "Additional info to be set for user"},
246     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
247     {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
248 # ifndef OPENSSL_NO_ENGINE
249     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
250 # endif
251     {NULL}
252 };
253
254 int srp_main(int argc, char **argv)
255 {
256     CA_DB *db = NULL;
257     DB_ATTR db_attr;
258     CONF *conf = NULL;
259     int gNindex = -1, maxgN = -1, ret = 1, errors = 0, verbose =
260         0, i, doupdatedb = 0;
261     int mode = OPT_ERR;
262     char *user = NULL, *passinarg = NULL, *passoutarg = NULL;
263     char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL;
264     char *randfile = NULL, *tofree = NULL, *section = NULL;
265     char **gNrow = NULL, *configfile = NULL, *dbfile = NULL, **pp, *prog;
266     long errorline = -1;
267     OPTION_CHOICE o;
268
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:
282             verbose++;
283             break;
284         case OPT_CONFIG:
285             configfile = opt_arg();
286             break;
287         case OPT_NAME:
288             section = opt_arg();
289             break;
290         case OPT_SRPVFILE:
291             dbfile = opt_arg();
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:
318             (void)setup_engine(opt_arg(), 0);
319             break;
320         }
321     }
322     argc = opt_num_rest();
323     argv = opt_rest();
324
325     if (dbfile && configfile) {
326         BIO_printf(bio_err,
327                    "-dbfile and -configfile cannot be specified together.\n");
328         goto end;
329     }
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;
334     }
335     if ((mode == OPT_DELETE || mode == OPT_MODIFY || mode == OPT_ADD)
336         && argc < 1) {
337         BIO_printf(bio_err,
338                    "Need at least one user for options -add, -delete, -modify. \n");
339         goto opthelp;
340     }
341     if ((passin || passout) && argc != 1) {
342         BIO_printf(bio_err,
343                    "-passin, -passout arguments only valid with one user.\n");
344         goto opthelp;
345     }
346
347     if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
348         BIO_printf(bio_err, "Error getting passwords\n");
349         goto end;
350     }
351
352     if (!dbfile) {
353
354         /*****************************************************************/
355         tofree = NULL;
356         if (configfile == NULL)
357             configfile = getenv("OPENSSL_CONF");
358         if (configfile == NULL)
359             configfile = getenv("SSLEAY_CONF");
360         if (configfile == NULL) {
361             const char *s = X509_get_default_cert_area();
362             size_t len = strlen(s) + 1 + sizeof(CONFIG_FILE);
363
364             tofree = app_malloc(len, "config filename space");
365 # ifdef OPENSSL_SYS_VMS
366             strcpy(tofree, s);
367 # else
368             BUF_strlcpy(tofree, s, len);
369             BUF_strlcat(tofree, "/", len);
370 # endif
371             BUF_strlcat(tofree, CONFIG_FILE, len);
372             configfile = tofree;
373         }
374
375         if (verbose)
376             BIO_printf(bio_err, "Using configuration from %s\n", configfile);
377         conf = NCONF_new(NULL);
378         if (NCONF_load(conf, configfile, &errorline) <= 0) {
379             if (errorline <= 0)
380                 BIO_printf(bio_err, "error loading the config file '%s'\n",
381                            configfile);
382             else
383                 BIO_printf(bio_err, "error on line %ld of config file '%s'\n",
384                            errorline, configfile);
385             goto end;
386         }
387         OPENSSL_free(tofree);
388         tofree = NULL;
389
390         /* Lets get the config section we are using */
391         if (section == NULL) {
392             if (verbose)
393                 BIO_printf(bio_err,
394                            "trying to read " ENV_DEFAULT_SRP
395                            " in \" BASE_SECTION \"\n");
396
397             section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_SRP);
398             if (section == NULL) {
399                 lookup_fail(BASE_SECTION, ENV_DEFAULT_SRP);
400                 goto end;
401             }
402         }
403
404         if (randfile == NULL && conf)
405             randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE");
406
407         if (verbose)
408             BIO_printf(bio_err,
409                        "trying to read " ENV_DATABASE " in section \"%s\"\n",
410                        section);
411
412         if ((dbfile = NCONF_get_string(conf, section, ENV_DATABASE)) == NULL) {
413             lookup_fail(section, ENV_DATABASE);
414             goto end;
415         }
416
417     }
418     if (randfile == NULL)
419         ERR_clear_error();
420     else
421         app_RAND_load_file(randfile, 0);
422
423     if (verbose)
424         BIO_printf(bio_err, "Trying to read SRP verifier file \"%s\"\n",
425                    dbfile);
426
427     db = load_index(dbfile, &db_attr);
428     if (db == NULL)
429         goto end;
430
431     /* Lets check some fields */
432     for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
433         pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
434
435         if (pp[DB_srptype][0] == DB_SRP_INDEX) {
436             maxgN = i;
437             if ((gNindex < 0) && (gN != NULL) && strcmp(gN, pp[DB_srpid]) == 0)
438                 gNindex = i;
439
440             print_index(db, i, verbose > 1);
441         }
442     }
443
444     if (verbose)
445         BIO_printf(bio_err, "Database initialised\n");
446
447     if (gNindex >= 0) {
448         gNrow = sk_OPENSSL_PSTRING_value(db->db->data, gNindex);
449         print_entry(db, gNindex, verbose > 1, "Default g and N");
450     } else if (maxgN > 0 && !SRP_get_default_gN(gN)) {
451         BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN);
452         goto end;
453     } else {
454         if (verbose)
455             BIO_printf(bio_err, "Database has no g N information.\n");
456         gNrow = NULL;
457     }
458
459     if (verbose > 1)
460         BIO_printf(bio_err, "Starting user processing\n");
461
462     if (argc > 0)
463         user = *(argv++);
464
465     while (mode == OPT_LIST || user) {
466         int userindex = -1;
467         if (user)
468             if (verbose > 1)
469                 BIO_printf(bio_err, "Processing user \"%s\"\n", user);
470         if ((userindex = get_index(db, user, 'U')) >= 0) {
471             print_user(db, userindex, (verbose > 0)
472                        || mode == OPT_LIST);
473         }
474
475         if (mode == OPT_LIST) {
476             if (user == NULL) {
477                 BIO_printf(bio_err, "List all users\n");
478
479                 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
480                     print_user(db, i, 1);
481                 }
482             } else if (userindex < 0) {
483                 BIO_printf(bio_err,
484                            "user \"%s\" does not exist, ignored. t\n", user);
485                 errors++;
486             }
487         } else if (mode == OPT_ADD) {
488             if (userindex >= 0) {
489                 /* reactivation of a new user */
490                 char **row =
491                     sk_OPENSSL_PSTRING_value(db->db->data, userindex);
492                 BIO_printf(bio_err, "user \"%s\" reactivated.\n", user);
493                 row[DB_srptype][0] = 'V';
494
495                 doupdatedb = 1;
496             } else {
497                 char *row[DB_NUMBER];
498                 char *gNid;
499                 row[DB_srpverifier] = NULL;
500                 row[DB_srpsalt] = NULL;
501                 row[DB_srpinfo] = NULL;
502                 if (!
503                     (gNid =
504                      srp_create_user(user, &(row[DB_srpverifier]),
505                                      &(row[DB_srpsalt]),
506                                      gNrow ? gNrow[DB_srpsalt] : gN,
507                                      gNrow ? gNrow[DB_srpverifier] : NULL,
508                                      passout, verbose))) {
509                     BIO_printf(bio_err,
510                                "Cannot create srp verifier for user \"%s\", operation abandoned .\n",
511                                user);
512                     errors++;
513                     goto end;
514                 }
515                 row[DB_srpid] = BUF_strdup(user);
516                 row[DB_srptype] = BUF_strdup("v");
517                 row[DB_srpgN] = BUF_strdup(gNid);
518
519                 if ((row[DB_srpid] == NULL)
520                     || (row[DB_srpgN] == NULL)
521                     || (row[DB_srptype] == NULL)
522                     || (row[DB_srpverifier] == NULL)
523                     || (row[DB_srpsalt] == NULL)
524                     || (userinfo
525                         && ((row[DB_srpinfo] = BUF_strdup(userinfo)) == NULL))
526                     || !update_index(db, row)) {
527                     OPENSSL_free(row[DB_srpid]);
528                     OPENSSL_free(row[DB_srpgN]);
529                     OPENSSL_free(row[DB_srpinfo]);
530                     OPENSSL_free(row[DB_srptype]);
531                     OPENSSL_free(row[DB_srpverifier]);
532                     OPENSSL_free(row[DB_srpsalt]);
533                     goto end;
534                 }
535                 doupdatedb = 1;
536             }
537         } else if (mode == OPT_MODIFY) {
538             if (userindex < 0) {
539                 BIO_printf(bio_err,
540                            "user \"%s\" does not exist, operation ignored.\n",
541                            user);
542                 errors++;
543             } else {
544
545                 char **row =
546                     sk_OPENSSL_PSTRING_value(db->db->data, userindex);
547                 char type = row[DB_srptype][0];
548                 if (type == 'v') {
549                     BIO_printf(bio_err,
550                                "user \"%s\" already updated, operation ignored.\n",
551                                user);
552                     errors++;
553                 } else {
554                     char *gNid;
555
556                     if (row[DB_srptype][0] == 'V') {
557                         int user_gN;
558                         char **irow = NULL;
559                         if (verbose)
560                             BIO_printf(bio_err,
561                                        "Verifying password for user \"%s\"\n",
562                                        user);
563                         if ((user_gN =
564                              get_index(db, row[DB_srpgN], DB_SRP_INDEX)) >= 0)
565                             irow =
566                                 sk_OPENSSL_PSTRING_value(db->db->data,
567                                                          userindex);
568
569                         if (!srp_verify_user
570                             (user, row[DB_srpverifier], row[DB_srpsalt],
571                              irow ? irow[DB_srpsalt] : row[DB_srpgN],
572                              irow ? irow[DB_srpverifier] : NULL, passin,
573                              verbose)) {
574                             BIO_printf(bio_err,
575                                        "Invalid password for user \"%s\", operation abandoned.\n",
576                                        user);
577                             errors++;
578                             goto end;
579                         }
580                     }
581                     if (verbose)
582                         BIO_printf(bio_err, "Password for user \"%s\" ok.\n",
583                                    user);
584
585                     if (!
586                         (gNid =
587                          srp_create_user(user, &(row[DB_srpverifier]),
588                                          &(row[DB_srpsalt]),
589                                          gNrow ? gNrow[DB_srpsalt] : NULL,
590                                          gNrow ? gNrow[DB_srpverifier] : NULL,
591                                          passout, verbose))) {
592                         BIO_printf(bio_err,
593                                    "Cannot create srp verifier for user \"%s\", operation abandoned.\n",
594                                    user);
595                         errors++;
596                         goto end;
597                     }
598
599                     row[DB_srptype][0] = 'v';
600                     row[DB_srpgN] = BUF_strdup(gNid);
601
602                     if (row[DB_srpid] == NULL
603                         || row[DB_srpgN] == NULL
604                         || row[DB_srptype] == NULL
605                         || row[DB_srpverifier] == NULL
606                         || row[DB_srpsalt] == NULL
607                         || (userinfo
608                             && ((row[DB_srpinfo] = BUF_strdup(userinfo))
609                                 == NULL)))
610                         goto end;
611
612                     doupdatedb = 1;
613                 }
614             }
615         } else if (mode == OPT_DELETE) {
616             if (userindex < 0) {
617                 BIO_printf(bio_err,
618                            "user \"%s\" does not exist, operation ignored. t\n",
619                            user);
620                 errors++;
621             } else {
622                 char **xpp = sk_OPENSSL_PSTRING_value(db->db->data, userindex);
623
624                 BIO_printf(bio_err, "user \"%s\" revoked. t\n", user);
625                 xpp[DB_srptype][0] = 'R';
626                 doupdatedb = 1;
627             }
628         }
629         if (--argc > 0)
630             user = *(argv++);
631         else {
632             user = NULL;
633         }
634     }
635
636     if (verbose)
637         BIO_printf(bio_err, "User procession done.\n");
638
639     if (doupdatedb) {
640         /* Lets check some fields */
641         for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
642             pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
643
644             if (pp[DB_srptype][0] == 'v') {
645                 pp[DB_srptype][0] = 'V';
646                 print_user(db, i, verbose);
647             }
648         }
649
650         if (verbose)
651             BIO_printf(bio_err, "Trying to update srpvfile.\n");
652         if (!save_index(dbfile, "new", db))
653             goto end;
654
655         if (verbose)
656             BIO_printf(bio_err, "Temporary srpvfile created.\n");
657         if (!rotate_index(dbfile, "new", "old"))
658             goto end;
659
660         if (verbose)
661             BIO_printf(bio_err, "srpvfile updated.\n");
662     }
663
664     ret = (errors != 0);
665  end:
666     if (errors != 0)
667         if (verbose)
668             BIO_printf(bio_err, "User errors %d.\n", errors);
669
670     if (verbose)
671         BIO_printf(bio_err, "SRP terminating with code %d.\n", ret);
672     OPENSSL_free(tofree);
673     if (ret)
674         ERR_print_errors(bio_err);
675     if (randfile)
676         app_RAND_write_file(randfile);
677     NCONF_free(conf);
678     free_index(db);
679     OBJ_cleanup();
680     return (ret);
681 }
682
683 #endif