b984c14c97ab3088e4fec6d1897011a987bacd40
[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]))
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]))
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(char *) * (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         if (tofree) {
388             OPENSSL_free(tofree);
389             tofree = NULL;
390         }
391
392         /* Lets get the config section we are using */
393         if (section == NULL) {
394             if (verbose)
395                 BIO_printf(bio_err,
396                            "trying to read " ENV_DEFAULT_SRP
397                            " in \" BASE_SECTION \"\n");
398
399             section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_SRP);
400             if (section == NULL) {
401                 lookup_fail(BASE_SECTION, ENV_DEFAULT_SRP);
402                 goto end;
403             }
404         }
405
406         if (randfile == NULL && conf)
407             randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE");
408
409         if (verbose)
410             BIO_printf(bio_err,
411                        "trying to read " ENV_DATABASE " in section \"%s\"\n",
412                        section);
413
414         if ((dbfile = NCONF_get_string(conf, section, ENV_DATABASE)) == NULL) {
415             lookup_fail(section, ENV_DATABASE);
416             goto end;
417         }
418
419     }
420     if (randfile == NULL)
421         ERR_clear_error();
422     else
423         app_RAND_load_file(randfile, 0);
424
425     if (verbose)
426         BIO_printf(bio_err, "Trying to read SRP verifier file \"%s\"\n",
427                    dbfile);
428
429     db = load_index(dbfile, &db_attr);
430     if (db == NULL)
431         goto end;
432
433     /* Lets check some fields */
434     for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
435         pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
436
437         if (pp[DB_srptype][0] == DB_SRP_INDEX) {
438             maxgN = i;
439             if (gNindex < 0 && gN != NULL && !strcmp(gN, pp[DB_srpid]))
440                 gNindex = i;
441
442             print_index(db, i, verbose > 1);
443         }
444     }
445
446     if (verbose)
447         BIO_printf(bio_err, "Database initialised\n");
448
449     if (gNindex >= 0) {
450         gNrow = sk_OPENSSL_PSTRING_value(db->db->data, gNindex);
451         print_entry(db, gNindex, verbose > 1, "Default g and N");
452     } else if (maxgN > 0 && !SRP_get_default_gN(gN)) {
453         BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN);
454         goto end;
455     } else {
456         if (verbose)
457             BIO_printf(bio_err, "Database has no g N information.\n");
458         gNrow = NULL;
459     }
460
461     if (verbose > 1)
462         BIO_printf(bio_err, "Starting user processing\n");
463
464     if (argc > 0)
465         user = *(argv++);
466
467     while (mode == OPT_LIST || user) {
468         int userindex = -1;
469         if (user)
470             if (verbose > 1)
471                 BIO_printf(bio_err, "Processing user \"%s\"\n", user);
472         if ((userindex = get_index(db, user, 'U')) >= 0) {
473             print_user(db, userindex, (verbose > 0)
474                        || mode == OPT_LIST);
475         }
476
477         if (mode == OPT_LIST) {
478             if (user == NULL) {
479                 BIO_printf(bio_err, "List all users\n");
480
481                 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
482                     print_user(db, i, 1);
483                 }
484             } else if (userindex < 0) {
485                 BIO_printf(bio_err,
486                            "user \"%s\" does not exist, ignored. t\n", user);
487                 errors++;
488             }
489         } else if (mode == OPT_ADD) {
490             if (userindex >= 0) {
491                 /* reactivation of a new user */
492                 char **row =
493                     sk_OPENSSL_PSTRING_value(db->db->data, userindex);
494                 BIO_printf(bio_err, "user \"%s\" reactivated.\n", user);
495                 row[DB_srptype][0] = 'V';
496
497                 doupdatedb = 1;
498             } else {
499                 char *row[DB_NUMBER];
500                 char *gNid;
501                 row[DB_srpverifier] = NULL;
502                 row[DB_srpsalt] = NULL;
503                 row[DB_srpinfo] = NULL;
504                 if (!
505                     (gNid =
506                      srp_create_user(user, &(row[DB_srpverifier]),
507                                      &(row[DB_srpsalt]),
508                                      gNrow ? gNrow[DB_srpsalt] : gN,
509                                      gNrow ? gNrow[DB_srpverifier] : NULL,
510                                      passout, verbose))) {
511                     BIO_printf(bio_err,
512                                "Cannot create srp verifier for user \"%s\", operation abandoned .\n",
513                                user);
514                     errors++;
515                     goto end;
516                 }
517                 row[DB_srpid] = BUF_strdup(user);
518                 row[DB_srptype] = BUF_strdup("v");
519                 row[DB_srpgN] = BUF_strdup(gNid);
520
521                 if (!row[DB_srpid] || !row[DB_srpgN] || !row[DB_srptype]
522                     || !row[DB_srpverifier] || !row[DB_srpsalt] || (userinfo
523                                                                     &&
524                                                                     (!(row
525                                                                        [DB_srpinfo]
526                                                                        =
527                                                                        BUF_strdup
528                                                                        (userinfo))))
529                     || !update_index(db, row)) {
530                     if (row[DB_srpid])
531                         OPENSSL_free(row[DB_srpid]);
532                     if (row[DB_srpgN])
533                         OPENSSL_free(row[DB_srpgN]);
534                     if (row[DB_srpinfo])
535                         OPENSSL_free(row[DB_srpinfo]);
536                     if (row[DB_srptype])
537                         OPENSSL_free(row[DB_srptype]);
538                     if (row[DB_srpverifier])
539                         OPENSSL_free(row[DB_srpverifier]);
540                     if (row[DB_srpsalt])
541                         OPENSSL_free(row[DB_srpsalt]);
542                     goto end;
543                 }
544                 doupdatedb = 1;
545             }
546         } else if (mode == OPT_MODIFY) {
547             if (userindex < 0) {
548                 BIO_printf(bio_err,
549                            "user \"%s\" does not exist, operation ignored.\n",
550                            user);
551                 errors++;
552             } else {
553
554                 char **row =
555                     sk_OPENSSL_PSTRING_value(db->db->data, userindex);
556                 char type = row[DB_srptype][0];
557                 if (type == 'v') {
558                     BIO_printf(bio_err,
559                                "user \"%s\" already updated, operation ignored.\n",
560                                user);
561                     errors++;
562                 } else {
563                     char *gNid;
564
565                     if (row[DB_srptype][0] == 'V') {
566                         int user_gN;
567                         char **irow = NULL;
568                         if (verbose)
569                             BIO_printf(bio_err,
570                                        "Verifying password for user \"%s\"\n",
571                                        user);
572                         if ((user_gN =
573                              get_index(db, row[DB_srpgN], DB_SRP_INDEX)) >= 0)
574                             irow =
575                                 sk_OPENSSL_PSTRING_value(db->db->data,
576                                                          userindex);
577
578                         if (!srp_verify_user
579                             (user, row[DB_srpverifier], row[DB_srpsalt],
580                              irow ? irow[DB_srpsalt] : row[DB_srpgN],
581                              irow ? irow[DB_srpverifier] : NULL, passin,
582                              verbose)) {
583                             BIO_printf(bio_err,
584                                        "Invalid password for user \"%s\", operation abandoned.\n",
585                                        user);
586                             errors++;
587                             goto end;
588                         }
589                     }
590                     if (verbose)
591                         BIO_printf(bio_err, "Password for user \"%s\" ok.\n",
592                                    user);
593
594                     if (!
595                         (gNid =
596                          srp_create_user(user, &(row[DB_srpverifier]),
597                                          &(row[DB_srpsalt]),
598                                          gNrow ? gNrow[DB_srpsalt] : NULL,
599                                          gNrow ? gNrow[DB_srpverifier] : NULL,
600                                          passout, verbose))) {
601                         BIO_printf(bio_err,
602                                    "Cannot create srp verifier for user \"%s\", operation abandoned.\n",
603                                    user);
604                         errors++;
605                         goto end;
606                     }
607
608                     row[DB_srptype][0] = 'v';
609                     row[DB_srpgN] = BUF_strdup(gNid);
610
611                     if (!row[DB_srpid] || !row[DB_srpgN] || !row[DB_srptype]
612                         || !row[DB_srpverifier] || !row[DB_srpsalt]
613                         || (userinfo
614                             && (!(row[DB_srpinfo] = BUF_strdup(userinfo)))))
615                         goto end;
616
617                     doupdatedb = 1;
618                 }
619             }
620         } else if (mode == OPT_DELETE) {
621             if (userindex < 0) {
622                 BIO_printf(bio_err,
623                            "user \"%s\" does not exist, operation ignored. t\n",
624                            user);
625                 errors++;
626             } else {
627                 char **xpp =
628                     sk_OPENSSL_PSTRING_value(db->db->data, userindex);
629                 BIO_printf(bio_err, "user \"%s\" revoked. t\n", user);
630
631                 xpp[DB_srptype][0] = 'R';
632
633                 doupdatedb = 1;
634             }
635         }
636         if (--argc > 0)
637             user = *(argv++);
638         else {
639             user = NULL;
640         }
641     }
642
643     if (verbose)
644         BIO_printf(bio_err, "User procession done.\n");
645
646     if (doupdatedb) {
647         /* Lets check some fields */
648         for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
649             pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
650
651             if (pp[DB_srptype][0] == 'v') {
652                 pp[DB_srptype][0] = 'V';
653                 print_user(db, i, verbose);
654             }
655         }
656
657         if (verbose)
658             BIO_printf(bio_err, "Trying to update srpvfile.\n");
659         if (!save_index(dbfile, "new", db))
660             goto end;
661
662         if (verbose)
663             BIO_printf(bio_err, "Temporary srpvfile created.\n");
664         if (!rotate_index(dbfile, "new", "old"))
665             goto end;
666
667         if (verbose)
668             BIO_printf(bio_err, "srpvfile updated.\n");
669     }
670
671     ret = (errors != 0);
672  end:
673     if (errors != 0)
674         if (verbose)
675             BIO_printf(bio_err, "User errors %d.\n", errors);
676
677     if (verbose)
678         BIO_printf(bio_err, "SRP terminating with code %d.\n", ret);
679     if (tofree)
680         OPENSSL_free(tofree);
681     if (ret)
682         ERR_print_errors(bio_err);
683     if (randfile)
684         app_RAND_write_file(randfile);
685     if (conf)
686         NCONF_free(conf);
687     if (db)
688         free_index(db);
689
690     OBJ_cleanup();
691     return (ret);
692 }
693
694 #endif