srp.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768
  1. /* apps/srp.c */
  2. /*
  3. * Written by Peter Sylvester (peter.sylvester@edelweb.fr) for the EdelKey
  4. * project and contributed to the OpenSSL project 2004.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  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
  19. * distribution.
  20. *
  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/)"
  25. *
  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.
  30. *
  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.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  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. * ====================================================================
  53. *
  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).
  57. *
  58. */
  59. #include <openssl/opensslconf.h>
  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. # include "apps.h"
  71. # undef PROG
  72. # define PROG srp_main
  73. # define BASE_SECTION "srp"
  74. # define CONFIG_FILE "openssl.cnf"
  75. # define ENV_RANDFILE "RANDFILE"
  76. # define ENV_DATABASE "srpvfile"
  77. # define ENV_DEFAULT_SRP "default_srp"
  78. static char *srp_usage[] = {
  79. "usage: srp [args] [user] \n",
  80. "\n",
  81. " -verbose Talk alot while doing things\n",
  82. " -config file A config file\n",
  83. " -name arg The particular srp definition to use\n",
  84. " -srpvfile arg The srp verifier file name\n",
  85. " -add add an user and srp verifier\n",
  86. " -modify modify the srp verifier of an existing user\n",
  87. " -delete delete user from verifier file\n",
  88. " -list list user\n",
  89. " -gn arg g and N values to be used for new verifier\n",
  90. " -userinfo arg additional info to be set for user\n",
  91. " -passin arg input file pass phrase source\n",
  92. " -passout arg output file pass phrase source\n",
  93. # ifndef OPENSSL_NO_ENGINE
  94. " -engine e - use engine e, possibly a hardware device.\n",
  95. # endif
  96. NULL
  97. };
  98. # ifdef EFENCE
  99. extern int EF_PROTECT_FREE;
  100. extern int EF_PROTECT_BELOW;
  101. extern int EF_ALIGNMENT;
  102. # endif
  103. static CONF *conf = NULL;
  104. static char *section = NULL;
  105. # define VERBOSE if (verbose)
  106. # define VVERBOSE if (verbose>1)
  107. int MAIN(int, char **);
  108. static int get_index(CA_DB *db, char *id, char type)
  109. {
  110. char **pp;
  111. int i;
  112. if (id == NULL)
  113. return -1;
  114. if (type == DB_SRP_INDEX)
  115. for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
  116. pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
  117. if (pp[DB_srptype][0] == DB_SRP_INDEX
  118. && !strcmp(id, pp[DB_srpid]))
  119. return i;
  120. } else
  121. for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
  122. pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
  123. if (pp[DB_srptype][0] != DB_SRP_INDEX
  124. && !strcmp(id, pp[DB_srpid]))
  125. return i;
  126. }
  127. return -1;
  128. }
  129. static void print_entry(CA_DB *db, BIO *bio, int indx, int verbose, char *s)
  130. {
  131. if (indx >= 0 && verbose) {
  132. int j;
  133. char **pp = sk_OPENSSL_PSTRING_value(db->db->data, indx);
  134. BIO_printf(bio, "%s \"%s\"\n", s, pp[DB_srpid]);
  135. for (j = 0; j < DB_NUMBER; j++) {
  136. BIO_printf(bio_err, " %d = \"%s\"\n", j, pp[j]);
  137. }
  138. }
  139. }
  140. static void print_index(CA_DB *db, BIO *bio, int indexindex, int verbose)
  141. {
  142. print_entry(db, bio, indexindex, verbose, "g N entry");
  143. }
  144. static void print_user(CA_DB *db, BIO *bio, int userindex, int verbose)
  145. {
  146. if (verbose > 0) {
  147. char **pp = sk_OPENSSL_PSTRING_value(db->db->data, userindex);
  148. if (pp[DB_srptype][0] != 'I') {
  149. print_entry(db, bio, userindex, verbose, "User entry");
  150. print_entry(db, bio, get_index(db, pp[DB_srpgN], 'I'), verbose,
  151. "g N entry");
  152. }
  153. }
  154. }
  155. static int update_index(CA_DB *db, BIO *bio, char **row)
  156. {
  157. char **irow;
  158. int i;
  159. if ((irow =
  160. (char **)OPENSSL_malloc(sizeof(char *) * (DB_NUMBER + 1))) == NULL) {
  161. BIO_printf(bio_err, "Memory allocation failure\n");
  162. return 0;
  163. }
  164. for (i = 0; i < DB_NUMBER; i++) {
  165. irow[i] = row[i];
  166. row[i] = NULL;
  167. }
  168. irow[DB_NUMBER] = NULL;
  169. if (!TXT_DB_insert(db->db, irow)) {
  170. BIO_printf(bio, "failed to update srpvfile\n");
  171. BIO_printf(bio, "TXT_DB error number %ld\n", db->db->error);
  172. OPENSSL_free(irow);
  173. return 0;
  174. }
  175. return 1;
  176. }
  177. static void lookup_fail(const char *name, char *tag)
  178. {
  179. BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
  180. }
  181. static char *srp_verify_user(const char *user, const char *srp_verifier,
  182. char *srp_usersalt, const char *g, const char *N,
  183. const char *passin, BIO *bio, int verbose)
  184. {
  185. char password[1024];
  186. PW_CB_DATA cb_tmp;
  187. char *verifier = NULL;
  188. char *gNid = NULL;
  189. cb_tmp.prompt_info = user;
  190. cb_tmp.password = passin;
  191. if (password_callback(password, 1024, 0, &cb_tmp) > 0) {
  192. VERBOSE BIO_printf(bio,
  193. "Validating\n user=\"%s\"\n srp_verifier=\"%s\"\n srp_usersalt=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
  194. user, srp_verifier, srp_usersalt, g, N);
  195. BIO_printf(bio, "Pass %s\n", password);
  196. if (!
  197. (gNid =
  198. SRP_create_verifier(user, password, &srp_usersalt, &verifier, N,
  199. g))) {
  200. BIO_printf(bio, "Internal error validating SRP verifier\n");
  201. } else {
  202. if (strcmp(verifier, srp_verifier))
  203. gNid = NULL;
  204. OPENSSL_free(verifier);
  205. }
  206. }
  207. return gNid;
  208. }
  209. static char *srp_create_user(char *user, char **srp_verifier,
  210. char **srp_usersalt, char *g, char *N,
  211. char *passout, BIO *bio, int verbose)
  212. {
  213. char password[1024];
  214. PW_CB_DATA cb_tmp;
  215. char *gNid = NULL;
  216. char *salt = NULL;
  217. cb_tmp.prompt_info = user;
  218. cb_tmp.password = passout;
  219. if (password_callback(password, 1024, 1, &cb_tmp) > 0) {
  220. VERBOSE BIO_printf(bio,
  221. "Creating\n user=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",
  222. user, g, N);
  223. if (!
  224. (gNid =
  225. SRP_create_verifier(user, password, &salt, srp_verifier, N,
  226. g))) {
  227. BIO_printf(bio, "Internal error creating SRP verifier\n");
  228. } else
  229. *srp_usersalt = salt;
  230. VVERBOSE BIO_printf(bio, "gNid=%s salt =\"%s\"\n verifier =\"%s\"\n",
  231. gNid, salt, *srp_verifier);
  232. }
  233. return gNid;
  234. }
  235. int MAIN(int argc, char **argv)
  236. {
  237. int add_user = 0;
  238. int list_user = 0;
  239. int delete_user = 0;
  240. int modify_user = 0;
  241. char *user = NULL;
  242. char *passargin = NULL, *passargout = NULL;
  243. char *passin = NULL, *passout = NULL;
  244. char *gN = NULL;
  245. int gNindex = -1;
  246. char **gNrow = NULL;
  247. int maxgN = -1;
  248. char *userinfo = NULL;
  249. int badops = 0;
  250. int ret = 1;
  251. int errors = 0;
  252. int verbose = 0;
  253. int doupdatedb = 0;
  254. char *configfile = NULL;
  255. char *dbfile = NULL;
  256. CA_DB *db = NULL;
  257. char **pp;
  258. int i;
  259. long errorline = -1;
  260. char *randfile = NULL;
  261. # ifndef OPENSSL_NO_ENGINE
  262. char *engine = NULL;
  263. # endif
  264. char *tofree = NULL;
  265. DB_ATTR db_attr;
  266. # ifdef EFENCE
  267. EF_PROTECT_FREE = 1;
  268. EF_PROTECT_BELOW = 1;
  269. EF_ALIGNMENT = 0;
  270. # endif
  271. apps_startup();
  272. conf = NULL;
  273. section = NULL;
  274. if (bio_err == NULL)
  275. if ((bio_err = BIO_new(BIO_s_file())) != NULL)
  276. BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
  277. argc--;
  278. argv++;
  279. while (argc >= 1 && badops == 0) {
  280. if (strcmp(*argv, "-verbose") == 0)
  281. verbose++;
  282. else if (strcmp(*argv, "-config") == 0) {
  283. if (--argc < 1)
  284. goto bad;
  285. configfile = *(++argv);
  286. } else if (strcmp(*argv, "-name") == 0) {
  287. if (--argc < 1)
  288. goto bad;
  289. section = *(++argv);
  290. } else if (strcmp(*argv, "-srpvfile") == 0) {
  291. if (--argc < 1)
  292. goto bad;
  293. dbfile = *(++argv);
  294. } else if (strcmp(*argv, "-add") == 0)
  295. add_user = 1;
  296. else if (strcmp(*argv, "-delete") == 0)
  297. delete_user = 1;
  298. else if (strcmp(*argv, "-modify") == 0)
  299. modify_user = 1;
  300. else if (strcmp(*argv, "-list") == 0)
  301. list_user = 1;
  302. else if (strcmp(*argv, "-gn") == 0) {
  303. if (--argc < 1)
  304. goto bad;
  305. gN = *(++argv);
  306. } else if (strcmp(*argv, "-userinfo") == 0) {
  307. if (--argc < 1)
  308. goto bad;
  309. userinfo = *(++argv);
  310. } else if (strcmp(*argv, "-passin") == 0) {
  311. if (--argc < 1)
  312. goto bad;
  313. passargin = *(++argv);
  314. } else if (strcmp(*argv, "-passout") == 0) {
  315. if (--argc < 1)
  316. goto bad;
  317. passargout = *(++argv);
  318. }
  319. # ifndef OPENSSL_NO_ENGINE
  320. else if (strcmp(*argv, "-engine") == 0) {
  321. if (--argc < 1)
  322. goto bad;
  323. engine = *(++argv);
  324. }
  325. # endif
  326. else if (**argv == '-') {
  327. bad:
  328. BIO_printf(bio_err, "unknown option %s\n", *argv);
  329. badops = 1;
  330. break;
  331. } else
  332. break;
  333. argc--;
  334. argv++;
  335. }
  336. if (dbfile && configfile) {
  337. BIO_printf(bio_err,
  338. "-dbfile and -configfile cannot be specified together.\n");
  339. badops = 1;
  340. }
  341. if (add_user + delete_user + modify_user + list_user != 1) {
  342. BIO_printf(bio_err,
  343. "Exactly one of the options -add, -delete, -modify -list must be specified.\n");
  344. badops = 1;
  345. }
  346. if (delete_user + modify_user + delete_user == 1 && argc <= 0) {
  347. BIO_printf(bio_err,
  348. "Need at least one user for options -add, -delete, -modify. \n");
  349. badops = 1;
  350. }
  351. if ((passin || passout) && argc != 1) {
  352. BIO_printf(bio_err,
  353. "-passin, -passout arguments only valid with one user.\n");
  354. badops = 1;
  355. }
  356. if (badops) {
  357. for (pp = srp_usage; (*pp != NULL); pp++)
  358. BIO_printf(bio_err, "%s", *pp);
  359. BIO_printf(bio_err, " -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR,
  360. LIST_SEPARATOR_CHAR);
  361. BIO_printf(bio_err,
  362. " load the file (or the files in the directory) into\n");
  363. BIO_printf(bio_err, " the random number generator\n");
  364. goto err;
  365. }
  366. ERR_load_crypto_strings();
  367. # ifndef OPENSSL_NO_ENGINE
  368. setup_engine(bio_err, engine, 0);
  369. # endif
  370. if (!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
  371. BIO_printf(bio_err, "Error getting passwords\n");
  372. goto err;
  373. }
  374. if (!dbfile) {
  375. /*****************************************************************/
  376. tofree = NULL;
  377. if (configfile == NULL)
  378. configfile = getenv("OPENSSL_CONF");
  379. if (configfile == NULL)
  380. configfile = getenv("SSLEAY_CONF");
  381. if (configfile == NULL) {
  382. const char *s = X509_get_default_cert_area();
  383. size_t len;
  384. # ifdef OPENSSL_SYS_VMS
  385. len = strlen(s) + sizeof(CONFIG_FILE);
  386. tofree = OPENSSL_malloc(len);
  387. if (!tofree) {
  388. BIO_printf(bio_err, "Out of memory\n");
  389. goto err;
  390. }
  391. strcpy(tofree, s);
  392. # else
  393. len = strlen(s) + sizeof(CONFIG_FILE) + 1;
  394. tofree = OPENSSL_malloc(len);
  395. if (!tofree) {
  396. BIO_printf(bio_err, "Out of memory\n");
  397. goto err;
  398. }
  399. BUF_strlcpy(tofree, s, len);
  400. BUF_strlcat(tofree, "/", len);
  401. # endif
  402. BUF_strlcat(tofree, CONFIG_FILE, len);
  403. configfile = tofree;
  404. }
  405. VERBOSE BIO_printf(bio_err, "Using configuration from %s\n",
  406. configfile);
  407. conf = NCONF_new(NULL);
  408. if (NCONF_load(conf, configfile, &errorline) <= 0) {
  409. if (errorline <= 0)
  410. BIO_printf(bio_err, "error loading the config file '%s'\n",
  411. configfile);
  412. else
  413. BIO_printf(bio_err, "error on line %ld of config file '%s'\n",
  414. errorline, configfile);
  415. goto err;
  416. }
  417. if (tofree) {
  418. OPENSSL_free(tofree);
  419. tofree = NULL;
  420. }
  421. if (!load_config(bio_err, conf))
  422. goto err;
  423. /* Lets get the config section we are using */
  424. if (section == NULL) {
  425. VERBOSE BIO_printf(bio_err,
  426. "trying to read " ENV_DEFAULT_SRP
  427. " in \" BASE_SECTION \"\n");
  428. section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_SRP);
  429. if (section == NULL) {
  430. lookup_fail(BASE_SECTION, ENV_DEFAULT_SRP);
  431. goto err;
  432. }
  433. }
  434. if (randfile == NULL && conf)
  435. randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE");
  436. VERBOSE BIO_printf(bio_err,
  437. "trying to read " ENV_DATABASE
  438. " in section \"%s\"\n", section);
  439. if ((dbfile = NCONF_get_string(conf, section, ENV_DATABASE)) == NULL) {
  440. lookup_fail(section, ENV_DATABASE);
  441. goto err;
  442. }
  443. }
  444. if (randfile == NULL)
  445. ERR_clear_error();
  446. else
  447. app_RAND_load_file(randfile, bio_err, 0);
  448. VERBOSE BIO_printf(bio_err, "Trying to read SRP verifier file \"%s\"\n",
  449. dbfile);
  450. db = load_index(dbfile, &db_attr);
  451. if (db == NULL)
  452. goto err;
  453. /* Lets check some fields */
  454. for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
  455. pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
  456. if (pp[DB_srptype][0] == DB_SRP_INDEX) {
  457. maxgN = i;
  458. if (gNindex < 0 && gN != NULL && !strcmp(gN, pp[DB_srpid]))
  459. gNindex = i;
  460. print_index(db, bio_err, i, verbose > 1);
  461. }
  462. }
  463. VERBOSE BIO_printf(bio_err, "Database initialised\n");
  464. if (gNindex >= 0) {
  465. gNrow = sk_OPENSSL_PSTRING_value(db->db->data, gNindex);
  466. print_entry(db, bio_err, gNindex, verbose > 1, "Default g and N");
  467. } else if (maxgN > 0 && !SRP_get_default_gN(gN)) {
  468. BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN);
  469. goto err;
  470. } else {
  471. VERBOSE BIO_printf(bio_err, "Database has no g N information.\n");
  472. gNrow = NULL;
  473. }
  474. VVERBOSE BIO_printf(bio_err, "Starting user processing\n");
  475. if (argc > 0)
  476. user = *(argv++);
  477. while (list_user || user) {
  478. int userindex = -1;
  479. if (user)
  480. VVERBOSE BIO_printf(bio_err, "Processing user \"%s\"\n", user);
  481. if ((userindex = get_index(db, user, 'U')) >= 0) {
  482. print_user(db, bio_err, userindex, (verbose > 0) || list_user);
  483. }
  484. if (list_user) {
  485. if (user == NULL) {
  486. BIO_printf(bio_err, "List all users\n");
  487. for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
  488. print_user(db, bio_err, i, 1);
  489. }
  490. list_user = 0;
  491. } else if (userindex < 0) {
  492. BIO_printf(bio_err,
  493. "user \"%s\" does not exist, ignored. t\n", user);
  494. errors++;
  495. }
  496. } else if (add_user) {
  497. if (userindex >= 0) {
  498. /* reactivation of a new user */
  499. char **row =
  500. sk_OPENSSL_PSTRING_value(db->db->data, userindex);
  501. BIO_printf(bio_err, "user \"%s\" reactivated.\n", user);
  502. row[DB_srptype][0] = 'V';
  503. doupdatedb = 1;
  504. } else {
  505. char *row[DB_NUMBER];
  506. char *gNid;
  507. row[DB_srpverifier] = NULL;
  508. row[DB_srpsalt] = NULL;
  509. row[DB_srpinfo] = NULL;
  510. if (!
  511. (gNid =
  512. srp_create_user(user, &(row[DB_srpverifier]),
  513. &(row[DB_srpsalt]),
  514. gNrow ? gNrow[DB_srpsalt] : gN,
  515. gNrow ? gNrow[DB_srpverifier] : NULL,
  516. passout, bio_err, verbose))) {
  517. BIO_printf(bio_err,
  518. "Cannot create srp verifier for user \"%s\", operation abandoned .\n",
  519. user);
  520. errors++;
  521. goto err;
  522. }
  523. row[DB_srpid] = BUF_strdup(user);
  524. row[DB_srptype] = BUF_strdup("v");
  525. row[DB_srpgN] = BUF_strdup(gNid);
  526. if (!row[DB_srpid] || !row[DB_srpgN] || !row[DB_srptype]
  527. || !row[DB_srpverifier] || !row[DB_srpsalt] || (userinfo
  528. &&
  529. (!(row
  530. [DB_srpinfo]
  531. =
  532. BUF_strdup
  533. (userinfo))))
  534. || !update_index(db, bio_err, row)) {
  535. if (row[DB_srpid])
  536. OPENSSL_free(row[DB_srpid]);
  537. if (row[DB_srpgN])
  538. OPENSSL_free(row[DB_srpgN]);
  539. if (row[DB_srpinfo])
  540. OPENSSL_free(row[DB_srpinfo]);
  541. if (row[DB_srptype])
  542. OPENSSL_free(row[DB_srptype]);
  543. if (row[DB_srpverifier])
  544. OPENSSL_free(row[DB_srpverifier]);
  545. if (row[DB_srpsalt])
  546. OPENSSL_free(row[DB_srpsalt]);
  547. goto err;
  548. }
  549. doupdatedb = 1;
  550. }
  551. } else if (modify_user) {
  552. if (userindex < 0) {
  553. BIO_printf(bio_err,
  554. "user \"%s\" does not exist, operation ignored.\n",
  555. user);
  556. errors++;
  557. } else {
  558. char **row =
  559. sk_OPENSSL_PSTRING_value(db->db->data, userindex);
  560. char type = row[DB_srptype][0];
  561. if (type == 'v') {
  562. BIO_printf(bio_err,
  563. "user \"%s\" already updated, operation ignored.\n",
  564. user);
  565. errors++;
  566. } else {
  567. char *gNid;
  568. if (row[DB_srptype][0] == 'V') {
  569. int user_gN;
  570. char **irow = NULL;
  571. VERBOSE BIO_printf(bio_err,
  572. "Verifying password for user \"%s\"\n",
  573. user);
  574. if ((user_gN =
  575. get_index(db, row[DB_srpgN], DB_SRP_INDEX)) >= 0)
  576. irow =
  577. (char **)sk_OPENSSL_PSTRING_value(db->
  578. db->data,
  579. userindex);
  580. if (!srp_verify_user
  581. (user, row[DB_srpverifier], row[DB_srpsalt],
  582. irow ? irow[DB_srpsalt] : row[DB_srpgN],
  583. irow ? irow[DB_srpverifier] : NULL, passin,
  584. bio_err, verbose)) {
  585. BIO_printf(bio_err,
  586. "Invalid password for user \"%s\", operation abandoned.\n",
  587. user);
  588. errors++;
  589. goto err;
  590. }
  591. }
  592. VERBOSE BIO_printf(bio_err,
  593. "Password for user \"%s\" ok.\n",
  594. user);
  595. if (!
  596. (gNid =
  597. srp_create_user(user, &(row[DB_srpverifier]),
  598. &(row[DB_srpsalt]),
  599. gNrow ? gNrow[DB_srpsalt] : NULL,
  600. gNrow ? gNrow[DB_srpverifier] : NULL,
  601. passout, bio_err, verbose))) {
  602. BIO_printf(bio_err,
  603. "Cannot create srp verifier for user \"%s\", operation abandoned.\n",
  604. user);
  605. errors++;
  606. goto err;
  607. }
  608. row[DB_srptype][0] = 'v';
  609. row[DB_srpgN] = BUF_strdup(gNid);
  610. if (!row[DB_srpid] || !row[DB_srpgN] || !row[DB_srptype]
  611. || !row[DB_srpverifier] || !row[DB_srpsalt]
  612. || (userinfo
  613. && (!(row[DB_srpinfo] = BUF_strdup(userinfo)))))
  614. goto err;
  615. doupdatedb = 1;
  616. }
  617. }
  618. } else if (delete_user) {
  619. if (userindex < 0) {
  620. BIO_printf(bio_err,
  621. "user \"%s\" does not exist, operation ignored. t\n",
  622. user);
  623. errors++;
  624. } else {
  625. char **xpp =
  626. sk_OPENSSL_PSTRING_value(db->db->data, userindex);
  627. BIO_printf(bio_err, "user \"%s\" revoked. t\n", user);
  628. xpp[DB_srptype][0] = 'R';
  629. doupdatedb = 1;
  630. }
  631. }
  632. if (--argc > 0)
  633. user = *(argv++);
  634. else {
  635. user = NULL;
  636. list_user = 0;
  637. }
  638. }
  639. VERBOSE BIO_printf(bio_err, "User procession done.\n");
  640. if (doupdatedb) {
  641. /* Lets check some fields */
  642. for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
  643. pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
  644. if (pp[DB_srptype][0] == 'v') {
  645. pp[DB_srptype][0] = 'V';
  646. print_user(db, bio_err, i, verbose);
  647. }
  648. }
  649. VERBOSE BIO_printf(bio_err, "Trying to update srpvfile.\n");
  650. if (!save_index(dbfile, "new", db))
  651. goto err;
  652. VERBOSE BIO_printf(bio_err, "Temporary srpvfile created.\n");
  653. if (!rotate_index(dbfile, "new", "old"))
  654. goto err;
  655. VERBOSE BIO_printf(bio_err, "srpvfile updated.\n");
  656. }
  657. ret = (errors != 0);
  658. err:
  659. if (errors != 0)
  660. VERBOSE BIO_printf(bio_err, "User errors %d.\n", errors);
  661. VERBOSE BIO_printf(bio_err, "SRP terminating with code %d.\n", ret);
  662. if (tofree)
  663. OPENSSL_free(tofree);
  664. if (ret)
  665. ERR_print_errors(bio_err);
  666. if (randfile)
  667. app_RAND_write_file(randfile, bio_err);
  668. if (conf)
  669. NCONF_free(conf);
  670. if (db)
  671. free_index(db);
  672. OBJ_cleanup();
  673. apps_shutdown();
  674. OPENSSL_EXIT(ret);
  675. }
  676. #endif