3 * Written by Peter Sylvester (peter.sylvester@edelweb.fr) for the EdelKey
4 * project and contributed to the OpenSSL project 2004.
6 /* ====================================================================
7 * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
18 * the documentation and/or other materials provided with the
21 * 3. All advertising materials mentioning features or use of this
22 * software must display the following acknowledgment:
23 * "This product includes software developed by the OpenSSL Project
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27 * endorse or promote products derived from this software without
28 * prior written permission. For written permission, please contact
29 * licensing@OpenSSL.org.
31 * 5. Products derived from this software may not be called "OpenSSL"
32 * nor may "OpenSSL" appear in their names without prior written
33 * permission of the OpenSSL Project.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 * ====================================================================
54 * This product includes cryptographic software written by Eric Young
55 * (eay@cryptsoft.com). This product includes software written by Tim
56 * Hudson (tjh@cryptsoft.com).
59 #include <openssl/opensslconf.h>
61 #ifndef OPENSSL_NO_SRP
65 # include <openssl/conf.h>
66 # include <openssl/bio.h>
67 # include <openssl/err.h>
68 # include <openssl/txt_db.h>
69 # include <openssl/buffer.h>
70 # include <openssl/srp.h>
75 # define PROG srp_main
77 # define BASE_SECTION "srp"
78 # define CONFIG_FILE "openssl.cnf"
80 # define ENV_RANDFILE "RANDFILE"
82 # define ENV_DATABASE "srpvfile"
83 # define ENV_DEFAULT_SRP "default_srp"
85 static char *srp_usage
[] = {
86 "usage: srp [args] [user] \n",
88 " -verbose Talk alot while doing things\n",
89 " -config file A config file\n",
90 " -name arg The particular srp definition to use\n",
91 " -srpvfile arg The srp verifier file name\n",
92 " -add add an user and srp verifier\n",
93 " -modify modify the srp verifier of an existing user\n",
94 " -delete delete user from verifier file\n",
96 " -gn arg g and N values to be used for new verifier\n",
97 " -userinfo arg additional info to be set for user\n",
98 " -passin arg input file pass phrase source\n",
99 " -passout arg output file pass phrase source\n",
100 # ifndef OPENSSL_NO_ENGINE
101 " -engine e - use engine e, possibly a hardware device.\n",
107 extern int EF_PROTECT_FREE
;
108 extern int EF_PROTECT_BELOW
;
109 extern int EF_ALIGNMENT
;
112 static CONF
*conf
= NULL
;
113 static char *section
= NULL
;
115 # define VERBOSE if (verbose)
116 # define VVERBOSE if (verbose>1)
118 int MAIN(int, char **);
120 static int get_index(CA_DB
*db
, char *id
, char type
)
126 if (type
== DB_SRP_INDEX
)
127 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
128 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
129 if (pp
[DB_srptype
][0] == DB_SRP_INDEX
130 && !strcmp(id
, pp
[DB_srpid
]))
133 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
134 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
136 if (pp
[DB_srptype
][0] != DB_SRP_INDEX
137 && !strcmp(id
, pp
[DB_srpid
]))
144 static void print_entry(CA_DB
*db
, BIO
*bio
, int indx
, int verbose
, char *s
)
146 if (indx
>= 0 && verbose
) {
148 char **pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, indx
);
149 BIO_printf(bio
, "%s \"%s\"\n", s
, pp
[DB_srpid
]);
150 for (j
= 0; j
< DB_NUMBER
; j
++) {
151 BIO_printf(bio_err
, " %d = \"%s\"\n", j
, pp
[j
]);
156 static void print_index(CA_DB
*db
, BIO
*bio
, int indexindex
, int verbose
)
158 print_entry(db
, bio
, indexindex
, verbose
, "g N entry");
161 static void print_user(CA_DB
*db
, BIO
*bio
, int userindex
, int verbose
)
164 char **pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, userindex
);
166 if (pp
[DB_srptype
][0] != 'I') {
167 print_entry(db
, bio
, userindex
, verbose
, "User entry");
168 print_entry(db
, bio
, get_index(db
, pp
[DB_srpgN
], 'I'), verbose
,
175 static int update_index(CA_DB
*db
, BIO
*bio
, char **row
)
181 (char **)OPENSSL_malloc(sizeof(char *) * (DB_NUMBER
+ 1))) == NULL
) {
182 BIO_printf(bio_err
, "Memory allocation failure\n");
186 for (i
= 0; i
< DB_NUMBER
; i
++) {
190 irow
[DB_NUMBER
] = NULL
;
192 if (!TXT_DB_insert(db
->db
, irow
)) {
193 BIO_printf(bio
, "failed to update srpvfile\n");
194 BIO_printf(bio
, "TXT_DB error number %ld\n", db
->db
->error
);
201 static void lookup_fail(const char *name
, char *tag
)
203 BIO_printf(bio_err
, "variable lookup failed for %s::%s\n", name
, tag
);
206 static char *srp_verify_user(const char *user
, const char *srp_verifier
,
207 char *srp_usersalt
, const char *g
, const char *N
,
208 const char *passin
, BIO
*bio
, int verbose
)
212 char *verifier
= NULL
;
215 cb_tmp
.prompt_info
= user
;
216 cb_tmp
.password
= passin
;
218 if (password_callback(password
, 1024, 0, &cb_tmp
) > 0) {
219 VERBOSE
BIO_printf(bio
,
220 "Validating\n user=\"%s\"\n srp_verifier=\"%s\"\n srp_usersalt=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
221 user
, srp_verifier
, srp_usersalt
, g
, N
);
222 BIO_printf(bio
, "Pass %s\n", password
);
226 SRP_create_verifier(user
, password
, &srp_usersalt
, &verifier
, N
,
228 BIO_printf(bio
, "Internal error validating SRP verifier\n");
230 if (strcmp(verifier
, srp_verifier
))
232 OPENSSL_free(verifier
);
238 static char *srp_create_user(char *user
, char **srp_verifier
,
239 char **srp_usersalt
, char *g
, char *N
,
240 char *passout
, BIO
*bio
, int verbose
)
246 cb_tmp
.prompt_info
= user
;
247 cb_tmp
.password
= passout
;
249 if (password_callback(password
, 1024, 1, &cb_tmp
) > 0) {
250 VERBOSE
BIO_printf(bio
,
251 "Creating\n user=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
255 SRP_create_verifier(user
, password
, &salt
, srp_verifier
, N
,
257 BIO_printf(bio
, "Internal error creating SRP verifier\n");
259 *srp_usersalt
= salt
;
260 VVERBOSE
BIO_printf(bio
, "gNid=%s salt =\"%s\"\n verifier =\"%s\"\n",
261 gNid
, salt
, *srp_verifier
);
267 int MAIN(int argc
, char **argv
)
275 char *passargin
= NULL
, *passargout
= NULL
;
276 char *passin
= NULL
, *passout
= NULL
;
282 char *userinfo
= NULL
;
289 char *configfile
= NULL
;
295 char *randfile
= NULL
;
296 # ifndef OPENSSL_NO_ENGINE
304 EF_PROTECT_BELOW
= 1;
314 if ((bio_err
= BIO_new(BIO_s_file())) != NULL
)
315 BIO_set_fp(bio_err
, stderr
, BIO_NOCLOSE
| BIO_FP_TEXT
);
319 while (argc
>= 1 && badops
== 0) {
320 if (strcmp(*argv
, "-verbose") == 0)
322 else if (strcmp(*argv
, "-config") == 0) {
325 configfile
= *(++argv
);
326 } else if (strcmp(*argv
, "-name") == 0) {
330 } else if (strcmp(*argv
, "-srpvfile") == 0) {
334 } else if (strcmp(*argv
, "-add") == 0)
336 else if (strcmp(*argv
, "-delete") == 0)
338 else if (strcmp(*argv
, "-modify") == 0)
340 else if (strcmp(*argv
, "-list") == 0)
342 else if (strcmp(*argv
, "-gn") == 0) {
346 } else if (strcmp(*argv
, "-userinfo") == 0) {
349 userinfo
= *(++argv
);
350 } else if (strcmp(*argv
, "-passin") == 0) {
353 passargin
= *(++argv
);
354 } else if (strcmp(*argv
, "-passout") == 0) {
357 passargout
= *(++argv
);
359 # ifndef OPENSSL_NO_ENGINE
360 else if (strcmp(*argv
, "-engine") == 0) {
367 else if (**argv
== '-') {
369 BIO_printf(bio_err
, "unknown option %s\n", *argv
);
379 if (dbfile
&& configfile
) {
381 "-dbfile and -configfile cannot be specified together.\n");
384 if (add_user
+ delete_user
+ modify_user
+ list_user
!= 1) {
386 "Exactly one of the options -add, -delete, -modify -list must be specified.\n");
389 if (delete_user
+ modify_user
+ delete_user
== 1 && argc
<= 0) {
391 "Need at least one user for options -add, -delete, -modify. \n");
394 if ((passin
|| passout
) && argc
!= 1) {
396 "-passin, -passout arguments only valid with one user.\n");
401 for (pp
= srp_usage
; (*pp
!= NULL
); pp
++)
402 BIO_printf(bio_err
, "%s", *pp
);
404 BIO_printf(bio_err
, " -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR
,
405 LIST_SEPARATOR_CHAR
);
407 " load the file (or the files in the directory) into\n");
408 BIO_printf(bio_err
, " the random number generator\n");
412 ERR_load_crypto_strings();
414 # ifndef OPENSSL_NO_ENGINE
415 setup_engine(bio_err
, engine
, 0);
418 if (!app_passwd(bio_err
, passargin
, passargout
, &passin
, &passout
)) {
419 BIO_printf(bio_err
, "Error getting passwords\n");
425 /*****************************************************************/
427 if (configfile
== NULL
)
428 configfile
= getenv("OPENSSL_CONF");
429 if (configfile
== NULL
)
430 configfile
= getenv("SSLEAY_CONF");
431 if (configfile
== NULL
) {
432 const char *s
= X509_get_default_cert_area();
435 # ifdef OPENSSL_SYS_VMS
436 len
= strlen(s
) + sizeof(CONFIG_FILE
);
437 tofree
= OPENSSL_malloc(len
);
439 BIO_printf(bio_err
, "Out of memory\n");
444 len
= strlen(s
) + sizeof(CONFIG_FILE
) + 1;
445 tofree
= OPENSSL_malloc(len
);
447 BIO_printf(bio_err
, "Out of memory\n");
450 BUF_strlcpy(tofree
, s
, len
);
451 BUF_strlcat(tofree
, "/", len
);
453 BUF_strlcat(tofree
, CONFIG_FILE
, len
);
457 VERBOSE
BIO_printf(bio_err
, "Using configuration from %s\n",
459 conf
= NCONF_new(NULL
);
460 if (NCONF_load(conf
, configfile
, &errorline
) <= 0) {
462 BIO_printf(bio_err
, "error loading the config file '%s'\n",
465 BIO_printf(bio_err
, "error on line %ld of config file '%s'\n",
466 errorline
, configfile
);
470 OPENSSL_free(tofree
);
474 if (!load_config(bio_err
, conf
))
477 /* Lets get the config section we are using */
478 if (section
== NULL
) {
479 VERBOSE
BIO_printf(bio_err
,
480 "trying to read " ENV_DEFAULT_SRP
481 " in \" BASE_SECTION \"\n");
483 section
= NCONF_get_string(conf
, BASE_SECTION
, ENV_DEFAULT_SRP
);
484 if (section
== NULL
) {
485 lookup_fail(BASE_SECTION
, ENV_DEFAULT_SRP
);
490 if (randfile
== NULL
&& conf
)
491 randfile
= NCONF_get_string(conf
, BASE_SECTION
, "RANDFILE");
493 VERBOSE
BIO_printf(bio_err
,
494 "trying to read " ENV_DATABASE
495 " in section \"%s\"\n", section
);
497 if ((dbfile
= NCONF_get_string(conf
, section
, ENV_DATABASE
)) == NULL
) {
498 lookup_fail(section
, ENV_DATABASE
);
503 if (randfile
== NULL
)
506 app_RAND_load_file(randfile
, bio_err
, 0);
508 VERBOSE
BIO_printf(bio_err
, "Trying to read SRP verifier file \"%s\"\n",
511 db
= load_index(dbfile
, &db_attr
);
515 /* Lets check some fields */
516 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
517 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
519 if (pp
[DB_srptype
][0] == DB_SRP_INDEX
) {
521 if (gNindex
< 0 && gN
!= NULL
&& !strcmp(gN
, pp
[DB_srpid
]))
524 print_index(db
, bio_err
, i
, verbose
> 1);
528 VERBOSE
BIO_printf(bio_err
, "Database initialised\n");
531 gNrow
= sk_OPENSSL_PSTRING_value(db
->db
->data
, gNindex
);
532 print_entry(db
, bio_err
, gNindex
, verbose
> 1, "Default g and N");
533 } else if (maxgN
> 0 && !SRP_get_default_gN(gN
)) {
534 BIO_printf(bio_err
, "No g and N value for index \"%s\"\n", gN
);
537 VERBOSE
BIO_printf(bio_err
, "Database has no g N information.\n");
541 VVERBOSE
BIO_printf(bio_err
, "Starting user processing\n");
546 while (list_user
|| user
) {
549 VVERBOSE
BIO_printf(bio_err
, "Processing user \"%s\"\n", user
);
550 if ((userindex
= get_index(db
, user
, 'U')) >= 0) {
551 print_user(db
, bio_err
, userindex
, (verbose
> 0) || list_user
);
556 BIO_printf(bio_err
, "List all users\n");
558 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
559 print_user(db
, bio_err
, i
, 1);
562 } else if (userindex
< 0) {
564 "user \"%s\" does not exist, ignored. t\n", user
);
567 } else if (add_user
) {
568 if (userindex
>= 0) {
569 /* reactivation of a new user */
571 sk_OPENSSL_PSTRING_value(db
->db
->data
, userindex
);
572 BIO_printf(bio_err
, "user \"%s\" reactivated.\n", user
);
573 row
[DB_srptype
][0] = 'V';
577 char *row
[DB_NUMBER
];
579 row
[DB_srpverifier
] = NULL
;
580 row
[DB_srpsalt
] = NULL
;
581 row
[DB_srpinfo
] = NULL
;
584 srp_create_user(user
, &(row
[DB_srpverifier
]),
586 gNrow
? gNrow
[DB_srpsalt
] : gN
,
587 gNrow
? gNrow
[DB_srpverifier
] : NULL
,
588 passout
, bio_err
, verbose
))) {
590 "Cannot create srp verifier for user \"%s\", operation abandoned .\n",
595 row
[DB_srpid
] = BUF_strdup(user
);
596 row
[DB_srptype
] = BUF_strdup("v");
597 row
[DB_srpgN
] = BUF_strdup(gNid
);
599 if (!row
[DB_srpid
] || !row
[DB_srpgN
] || !row
[DB_srptype
]
600 || !row
[DB_srpverifier
] || !row
[DB_srpsalt
] || (userinfo
607 || !update_index(db
, bio_err
, row
)) {
609 OPENSSL_free(row
[DB_srpid
]);
611 OPENSSL_free(row
[DB_srpgN
]);
613 OPENSSL_free(row
[DB_srpinfo
]);
615 OPENSSL_free(row
[DB_srptype
]);
616 if (row
[DB_srpverifier
])
617 OPENSSL_free(row
[DB_srpverifier
]);
619 OPENSSL_free(row
[DB_srpsalt
]);
624 } else if (modify_user
) {
627 "user \"%s\" does not exist, operation ignored.\n",
633 sk_OPENSSL_PSTRING_value(db
->db
->data
, userindex
);
634 char type
= row
[DB_srptype
][0];
637 "user \"%s\" already updated, operation ignored.\n",
643 if (row
[DB_srptype
][0] == 'V') {
646 VERBOSE
BIO_printf(bio_err
,
647 "Verifying password for user \"%s\"\n",
650 get_index(db
, row
[DB_srpgN
], DB_SRP_INDEX
)) >= 0)
652 (char **)sk_OPENSSL_PSTRING_value(db
->
657 (user
, row
[DB_srpverifier
], row
[DB_srpsalt
],
658 irow
? irow
[DB_srpsalt
] : row
[DB_srpgN
],
659 irow
? irow
[DB_srpverifier
] : NULL
, passin
,
662 "Invalid password for user \"%s\", operation abandoned.\n",
668 VERBOSE
BIO_printf(bio_err
,
669 "Password for user \"%s\" ok.\n",
674 srp_create_user(user
, &(row
[DB_srpverifier
]),
676 gNrow
? gNrow
[DB_srpsalt
] : NULL
,
677 gNrow
? gNrow
[DB_srpverifier
] : NULL
,
678 passout
, bio_err
, verbose
))) {
680 "Cannot create srp verifier for user \"%s\", operation abandoned.\n",
686 row
[DB_srptype
][0] = 'v';
687 row
[DB_srpgN
] = BUF_strdup(gNid
);
689 if (!row
[DB_srpid
] || !row
[DB_srpgN
] || !row
[DB_srptype
]
690 || !row
[DB_srpverifier
] || !row
[DB_srpsalt
]
692 && (!(row
[DB_srpinfo
] = BUF_strdup(userinfo
)))))
698 } else if (delete_user
) {
701 "user \"%s\" does not exist, operation ignored. t\n",
706 sk_OPENSSL_PSTRING_value(db
->db
->data
, userindex
);
707 BIO_printf(bio_err
, "user \"%s\" revoked. t\n", user
);
709 xpp
[DB_srptype
][0] = 'R';
722 VERBOSE
BIO_printf(bio_err
, "User procession done.\n");
725 /* Lets check some fields */
726 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
727 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
729 if (pp
[DB_srptype
][0] == 'v') {
730 pp
[DB_srptype
][0] = 'V';
731 print_user(db
, bio_err
, i
, verbose
);
735 VERBOSE
BIO_printf(bio_err
, "Trying to update srpvfile.\n");
736 if (!save_index(dbfile
, "new", db
))
739 VERBOSE
BIO_printf(bio_err
, "Temporary srpvfile created.\n");
740 if (!rotate_index(dbfile
, "new", "old"))
743 VERBOSE
BIO_printf(bio_err
, "srpvfile updated.\n");
749 VERBOSE
BIO_printf(bio_err
, "User errors %d.\n", errors
);
751 VERBOSE
BIO_printf(bio_err
, "SRP terminating with code %d.\n", ret
);
753 OPENSSL_free(tofree
);
755 ERR_print_errors(bio_err
);
757 app_RAND_write_file(randfile
, bio_err
);