GH721: Duplicated flags in doc
[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
59 #include <openssl/opensslconf.h>
60 #ifdef OPENSSL_NO_SRP
61 NON_EMPTY_TRANSLATION_UNIT
62 #else
63
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"
74
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
83 static 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
93                 && strcmp(id, pp[DB_srpid]) == 0)
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
100                 && strcmp(id, pp[DB_srpid]) == 0)
101                 return i;
102         }
103
104     return -1;
105 }
106
107 static void print_entry(CA_DB *db, int indx, int verbose, char *s)
108 {
109     if (indx >= 0 && verbose) {
110         int j;
111         char **pp = sk_OPENSSL_PSTRING_value(db->db->data, indx);
112         BIO_printf(bio_err, "%s \"%s\"\n", s, pp[DB_srpid]);
113         for (j = 0; j < DB_NUMBER; j++) {
114             BIO_printf(bio_err, "  %d = \"%s\"\n", j, pp[j]);
115         }
116     }
117 }
118
119 static void print_index(CA_DB *db, int indexindex, int verbose)
120 {
121     print_entry(db, indexindex, verbose, "g N entry");
122 }
123
124 static void print_user(CA_DB *db, int userindex, int verbose)
125 {
126     if (verbose > 0) {
127         char **pp = sk_OPENSSL_PSTRING_value(db->db->data, userindex);
128
129         if (pp[DB_srptype][0] != 'I') {
130             print_entry(db, userindex, verbose, "User entry");
131             print_entry(db, get_index(db, pp[DB_srpgN], 'I'), verbose,
132                         "g N entry");
133         }
134
135     }
136 }
137
138 static int update_index(CA_DB *db, char **row)
139 {
140     char **irow;
141     int i;
142
143     irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row pointers");
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)) {
151         BIO_printf(bio_err, "failed to update srpvfile\n");
152         BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
153         OPENSSL_free(irow);
154         return 0;
155     }
156     return 1;
157 }
158
159 static void lookup_fail(const char *name, const char *tag)
160 {
161     BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
162 }
163
164 static char *srp_verify_user(const char *user, const char *srp_verifier,
165                              char *srp_usersalt, const char *g, const char *N,
166                              const char *passin, int verbose)
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) {
177         if (verbose)
178             BIO_printf(bio_err,
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);
181         BIO_printf(bio_err, "Pass %s\n", password);
182
183         OPENSSL_assert(srp_usersalt != NULL);
184         if (!
185             (gNid =
186              SRP_create_verifier(user, password, &srp_usersalt, &verifier, N,
187                                  g))) {
188             BIO_printf(bio_err, "Internal error validating SRP verifier\n");
189         } else {
190             if (strcmp(verifier, srp_verifier))
191                 gNid = NULL;
192             OPENSSL_free(verifier);
193         }
194     }
195     return gNid;
196 }
197
198 static char *srp_create_user(char *user, char **srp_verifier,
199                              char **srp_usersalt, char *g, char *N,
200                              char *passout, int verbose)
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) {
210         if (verbose)
211             BIO_printf(bio_err, "Creating\n user=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
212                        user, g, N);
213         if (!
214             (gNid =
215              SRP_create_verifier(user, password, &salt, srp_verifier, N,
216                                  g))) {
217             BIO_printf(bio_err, "Internal error creating SRP verifier\n");
218         } else
219             *srp_usersalt = salt;
220         if (verbose > 1)
221             BIO_printf(bio_err, "gNid=%s salt =\"%s\"\n verifier =\"%s\"\n", gNid,
222                        salt, *srp_verifier);
223
224     }
225     return gNid;
226 }
227
228 typedef 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
235 OPTIONS 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"},
250 # ifndef OPENSSL_NO_ENGINE
251     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
252 # endif
253     {NULL}
254 };
255
256 int srp_main(int argc, char **argv)
257 {
258     CA_DB *db = NULL;
259     DB_ATTR db_attr;
260     CONF *conf = NULL;
261     int gNindex = -1, maxgN = -1, ret = 1, errors = 0, verbose = 0, i;
262     int doupdatedb = 0, mode = OPT_ERR;
263     char *user = NULL, *passinarg = NULL, *passoutarg = NULL;
264     char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL;
265     char *randfile = NULL, *tofree = NULL, *section = NULL;
266     char **gNrow = NULL, *configfile = NULL;
267     char *srpvfile = NULL, **pp, *prog;
268     OPTION_CHOICE o;
269
270     prog = opt_init(argc, argv, srp_options);
271     while ((o = opt_next()) != OPT_EOF) {
272         switch (o) {
273         case OPT_EOF:
274         case OPT_ERR:
275  opthelp:
276             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
277             goto end;
278         case OPT_HELP:
279             opt_help(srp_options);
280             ret = 0;
281             goto end;
282         case OPT_VERBOSE:
283             verbose++;
284             break;
285         case OPT_CONFIG:
286             configfile = opt_arg();
287             break;
288         case OPT_NAME:
289             section = opt_arg();
290             break;
291         case OPT_SRPVFILE:
292             srpvfile = opt_arg();
293             break;
294         case OPT_ADD:
295         case OPT_DELETE:
296         case OPT_MODIFY:
297         case OPT_LIST:
298             if (mode != OPT_ERR) {
299                 BIO_printf(bio_err,
300                            "%s: Only one of -add/delete-modify/-list\n",
301                            prog);
302                 goto opthelp;
303             }
304             mode = o;
305             break;
306         case OPT_GN:
307             gN = opt_arg();
308             break;
309         case OPT_USERINFO:
310             userinfo = opt_arg();
311             break;
312         case OPT_PASSIN:
313             passinarg = opt_arg();
314             break;
315         case OPT_PASSOUT:
316             passoutarg = opt_arg();
317             break;
318         case OPT_ENGINE:
319             (void)setup_engine(opt_arg(), 0);
320             break;
321         }
322     }
323     argc = opt_num_rest();
324     argv = opt_rest();
325
326     if (srpvfile && configfile) {
327         BIO_printf(bio_err,
328                    "-srpvfile and -configfile cannot be specified together.\n");
329         goto end;
330     }
331     if (mode == OPT_ERR) {
332         BIO_printf(bio_err,
333                    "Exactly one of the options -add, -delete, -modify -list must be specified.\n");
334         goto opthelp;
335     }
336     if ((mode == OPT_DELETE || mode == OPT_MODIFY || mode == OPT_ADD)
337         && argc < 1) {
338         BIO_printf(bio_err,
339                    "Need at least one user for options -add, -delete, -modify. \n");
340         goto opthelp;
341     }
342     if ((passin || passout) && argc != 1) {
343         BIO_printf(bio_err,
344                    "-passin, -passout arguments only valid with one user.\n");
345         goto opthelp;
346     }
347
348     if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
349         BIO_printf(bio_err, "Error getting passwords\n");
350         goto end;
351     }
352
353     if (!srpvfile) {
354         if (!configfile)
355             configfile = default_config_file;
356
357         if (verbose)
358             BIO_printf(bio_err, "Using configuration from %s\n",
359                        configfile);
360         conf = app_load_config(configfile);
361         if (conf == NULL)
362             goto end;
363         if (!app_load_modules(conf))
364             goto end;
365
366         /* Lets get the config section we are using */
367         if (section == NULL) {
368             if (verbose)
369                 BIO_printf(bio_err,
370                            "trying to read " ENV_DEFAULT_SRP
371                            " in " BASE_SECTION "\n");
372
373             section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_SRP);
374             if (section == NULL) {
375                 lookup_fail(BASE_SECTION, ENV_DEFAULT_SRP);
376                 goto end;
377             }
378         }
379
380         if (randfile == NULL && conf)
381             randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE");
382
383         if (verbose)
384             BIO_printf(bio_err,
385                        "trying to read " ENV_DATABASE " in section \"%s\"\n",
386                        section);
387
388         if ((srpvfile = NCONF_get_string(conf, section, ENV_DATABASE))
389                 == NULL) {
390             lookup_fail(section, ENV_DATABASE);
391             goto end;
392         }
393
394     }
395     if (randfile == NULL)
396         ERR_clear_error();
397     else
398         app_RAND_load_file(randfile, 0);
399
400     if (verbose)
401         BIO_printf(bio_err, "Trying to read SRP verifier file \"%s\"\n",
402                    srpvfile);
403
404     db = load_index(srpvfile, &db_attr);
405     if (db == NULL)
406         goto end;
407
408     /* Lets check some fields */
409     for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
410         pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
411
412         if (pp[DB_srptype][0] == DB_SRP_INDEX) {
413             maxgN = i;
414             if ((gNindex < 0) && (gN != NULL) && strcmp(gN, pp[DB_srpid]) == 0)
415                 gNindex = i;
416
417             print_index(db, i, verbose > 1);
418         }
419     }
420
421     if (verbose)
422         BIO_printf(bio_err, "Database initialised\n");
423
424     if (gNindex >= 0) {
425         gNrow = sk_OPENSSL_PSTRING_value(db->db->data, gNindex);
426         print_entry(db, gNindex, verbose > 1, "Default g and N");
427     } else if (maxgN > 0 && !SRP_get_default_gN(gN)) {
428         BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN);
429         goto end;
430     } else {
431         if (verbose)
432             BIO_printf(bio_err, "Database has no g N information.\n");
433         gNrow = NULL;
434     }
435
436     if (verbose > 1)
437         BIO_printf(bio_err, "Starting user processing\n");
438
439     if (argc > 0)
440         user = *(argv++);
441
442     while (mode == OPT_LIST || user) {
443         int userindex = -1;
444         if (user)
445             if (verbose > 1)
446                 BIO_printf(bio_err, "Processing user \"%s\"\n", user);
447         if ((userindex = get_index(db, user, 'U')) >= 0) {
448             print_user(db, userindex, (verbose > 0)
449                        || mode == OPT_LIST);
450         }
451
452         if (mode == OPT_LIST) {
453             if (user == NULL) {
454                 BIO_printf(bio_err, "List all users\n");
455
456                 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
457                     print_user(db, i, 1);
458                 }
459             } else if (userindex < 0) {
460                 BIO_printf(bio_err,
461                            "user \"%s\" does not exist, ignored. t\n", user);
462                 errors++;
463             }
464         } else if (mode == OPT_ADD) {
465             if (userindex >= 0) {
466                 /* reactivation of a new user */
467                 char **row =
468                     sk_OPENSSL_PSTRING_value(db->db->data, userindex);
469                 BIO_printf(bio_err, "user \"%s\" reactivated.\n", user);
470                 row[DB_srptype][0] = 'V';
471
472                 doupdatedb = 1;
473             } else {
474                 char *row[DB_NUMBER];
475                 char *gNid;
476                 row[DB_srpverifier] = NULL;
477                 row[DB_srpsalt] = NULL;
478                 row[DB_srpinfo] = NULL;
479                 if (!
480                     (gNid =
481                      srp_create_user(user, &(row[DB_srpverifier]),
482                                      &(row[DB_srpsalt]),
483                                      gNrow ? gNrow[DB_srpsalt] : gN,
484                                      gNrow ? gNrow[DB_srpverifier] : NULL,
485                                      passout, verbose))) {
486                     BIO_printf(bio_err,
487                                "Cannot create srp verifier for user \"%s\", operation abandoned .\n",
488                                user);
489                     errors++;
490                     goto end;
491                 }
492                 row[DB_srpid] = OPENSSL_strdup(user);
493                 row[DB_srptype] = OPENSSL_strdup("v");
494                 row[DB_srpgN] = OPENSSL_strdup(gNid);
495
496                 if ((row[DB_srpid] == NULL)
497                     || (row[DB_srpgN] == NULL)
498                     || (row[DB_srptype] == NULL)
499                     || (row[DB_srpverifier] == NULL)
500                     || (row[DB_srpsalt] == NULL)
501                     || (userinfo
502                         && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo)) == NULL))
503                     || !update_index(db, row)) {
504                     OPENSSL_free(row[DB_srpid]);
505                     OPENSSL_free(row[DB_srpgN]);
506                     OPENSSL_free(row[DB_srpinfo]);
507                     OPENSSL_free(row[DB_srptype]);
508                     OPENSSL_free(row[DB_srpverifier]);
509                     OPENSSL_free(row[DB_srpsalt]);
510                     goto end;
511                 }
512                 doupdatedb = 1;
513             }
514         } else if (mode == OPT_MODIFY) {
515             if (userindex < 0) {
516                 BIO_printf(bio_err,
517                            "user \"%s\" does not exist, operation ignored.\n",
518                            user);
519                 errors++;
520             } else {
521
522                 char **row =
523                     sk_OPENSSL_PSTRING_value(db->db->data, userindex);
524                 char type = row[DB_srptype][0];
525                 if (type == 'v') {
526                     BIO_printf(bio_err,
527                                "user \"%s\" already updated, operation ignored.\n",
528                                user);
529                     errors++;
530                 } else {
531                     char *gNid;
532
533                     if (row[DB_srptype][0] == 'V') {
534                         int user_gN;
535                         char **irow = NULL;
536                         if (verbose)
537                             BIO_printf(bio_err,
538                                        "Verifying password for user \"%s\"\n",
539                                        user);
540                         if ((user_gN =
541                              get_index(db, row[DB_srpgN], DB_SRP_INDEX)) >= 0)
542                             irow =
543                                 sk_OPENSSL_PSTRING_value(db->db->data,
544                                                          userindex);
545
546                         if (!srp_verify_user
547                             (user, row[DB_srpverifier], row[DB_srpsalt],
548                              irow ? irow[DB_srpsalt] : row[DB_srpgN],
549                              irow ? irow[DB_srpverifier] : NULL, passin,
550                              verbose)) {
551                             BIO_printf(bio_err,
552                                        "Invalid password for user \"%s\", operation abandoned.\n",
553                                        user);
554                             errors++;
555                             goto end;
556                         }
557                     }
558                     if (verbose)
559                         BIO_printf(bio_err, "Password for user \"%s\" ok.\n",
560                                    user);
561
562                     if (!
563                         (gNid =
564                          srp_create_user(user, &(row[DB_srpverifier]),
565                                          &(row[DB_srpsalt]),
566                                          gNrow ? gNrow[DB_srpsalt] : NULL,
567                                          gNrow ? gNrow[DB_srpverifier] : NULL,
568                                          passout, verbose))) {
569                         BIO_printf(bio_err,
570                                    "Cannot create srp verifier for user \"%s\", operation abandoned.\n",
571                                    user);
572                         errors++;
573                         goto end;
574                     }
575
576                     row[DB_srptype][0] = 'v';
577                     row[DB_srpgN] = OPENSSL_strdup(gNid);
578
579                     if (row[DB_srpid] == NULL
580                         || row[DB_srpgN] == NULL
581                         || row[DB_srptype] == NULL
582                         || row[DB_srpverifier] == NULL
583                         || row[DB_srpsalt] == NULL
584                         || (userinfo
585                             && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo))
586                                 == NULL)))
587                         goto end;
588
589                     doupdatedb = 1;
590                 }
591             }
592         } else if (mode == OPT_DELETE) {
593             if (userindex < 0) {
594                 BIO_printf(bio_err,
595                            "user \"%s\" does not exist, operation ignored. t\n",
596                            user);
597                 errors++;
598             } else {
599                 char **xpp = sk_OPENSSL_PSTRING_value(db->db->data, userindex);
600
601                 BIO_printf(bio_err, "user \"%s\" revoked. t\n", user);
602                 xpp[DB_srptype][0] = 'R';
603                 doupdatedb = 1;
604             }
605         }
606         if (--argc > 0)
607             user = *(argv++);
608         else {
609             user = NULL;
610         }
611     }
612
613     if (verbose)
614         BIO_printf(bio_err, "User procession done.\n");
615
616     if (doupdatedb) {
617         /* Lets check some fields */
618         for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
619             pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
620
621             if (pp[DB_srptype][0] == 'v') {
622                 pp[DB_srptype][0] = 'V';
623                 print_user(db, i, verbose);
624             }
625         }
626
627         if (verbose)
628             BIO_printf(bio_err, "Trying to update srpvfile.\n");
629         if (!save_index(srpvfile, "new", db))
630             goto end;
631
632         if (verbose)
633             BIO_printf(bio_err, "Temporary srpvfile created.\n");
634         if (!rotate_index(srpvfile, "new", "old"))
635             goto end;
636
637         if (verbose)
638             BIO_printf(bio_err, "srpvfile updated.\n");
639     }
640
641     ret = (errors != 0);
642  end:
643     if (errors != 0)
644         if (verbose)
645             BIO_printf(bio_err, "User errors %d.\n", errors);
646
647     if (verbose)
648         BIO_printf(bio_err, "SRP terminating with code %d.\n", ret);
649     OPENSSL_free(tofree);
650     if (ret)
651         ERR_print_errors(bio_err);
652     if (randfile)
653         app_RAND_write_file(randfile);
654     NCONF_free(conf);
655     free_index(db);
656     OBJ_cleanup();
657     return (ret);
658 }
659 #endif