ui_lib.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954
  1. /*
  2. * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <string.h>
  10. #include "internal/cryptlib.h"
  11. #include <openssl/e_os2.h>
  12. #include <openssl/buffer.h>
  13. #include <openssl/ui.h>
  14. #include <openssl/err.h>
  15. #include "ui_locl.h"
  16. UI *UI_new(void)
  17. {
  18. return UI_new_method(NULL);
  19. }
  20. UI *UI_new_method(const UI_METHOD *method)
  21. {
  22. UI *ret = OPENSSL_zalloc(sizeof(*ret));
  23. if (ret == NULL) {
  24. UIerr(UI_F_UI_NEW_METHOD, ERR_R_MALLOC_FAILURE);
  25. return NULL;
  26. }
  27. ret->lock = CRYPTO_THREAD_lock_new();
  28. if (ret->lock == NULL) {
  29. UIerr(UI_F_UI_NEW_METHOD, ERR_R_MALLOC_FAILURE);
  30. OPENSSL_free(ret);
  31. return NULL;
  32. }
  33. if (method == NULL)
  34. method = UI_get_default_method();
  35. if (method == NULL)
  36. method = UI_null();
  37. ret->meth = method;
  38. if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_UI, ret, &ret->ex_data)) {
  39. OPENSSL_free(ret);
  40. return NULL;
  41. }
  42. return ret;
  43. }
  44. static void free_string(UI_STRING *uis)
  45. {
  46. if (uis->flags & OUT_STRING_FREEABLE) {
  47. OPENSSL_free((char *)uis->out_string);
  48. switch (uis->type) {
  49. case UIT_BOOLEAN:
  50. OPENSSL_free((char *)uis->_.boolean_data.action_desc);
  51. OPENSSL_free((char *)uis->_.boolean_data.ok_chars);
  52. OPENSSL_free((char *)uis->_.boolean_data.cancel_chars);
  53. break;
  54. case UIT_NONE:
  55. case UIT_PROMPT:
  56. case UIT_VERIFY:
  57. case UIT_ERROR:
  58. case UIT_INFO:
  59. break;
  60. }
  61. }
  62. OPENSSL_free(uis);
  63. }
  64. void UI_free(UI *ui)
  65. {
  66. if (ui == NULL)
  67. return;
  68. if ((ui->flags & UI_FLAG_DUPL_DATA) != 0) {
  69. ui->meth->ui_destroy_data(ui, ui->user_data);
  70. }
  71. sk_UI_STRING_pop_free(ui->strings, free_string);
  72. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_UI, ui, &ui->ex_data);
  73. CRYPTO_THREAD_lock_free(ui->lock);
  74. OPENSSL_free(ui);
  75. }
  76. static int allocate_string_stack(UI *ui)
  77. {
  78. if (ui->strings == NULL) {
  79. ui->strings = sk_UI_STRING_new_null();
  80. if (ui->strings == NULL) {
  81. return -1;
  82. }
  83. }
  84. return 0;
  85. }
  86. static UI_STRING *general_allocate_prompt(UI *ui, const char *prompt,
  87. int prompt_freeable,
  88. enum UI_string_types type,
  89. int input_flags, char *result_buf)
  90. {
  91. UI_STRING *ret = NULL;
  92. if (prompt == NULL) {
  93. UIerr(UI_F_GENERAL_ALLOCATE_PROMPT, ERR_R_PASSED_NULL_PARAMETER);
  94. } else if ((type == UIT_PROMPT || type == UIT_VERIFY
  95. || type == UIT_BOOLEAN) && result_buf == NULL) {
  96. UIerr(UI_F_GENERAL_ALLOCATE_PROMPT, UI_R_NO_RESULT_BUFFER);
  97. } else if ((ret = OPENSSL_malloc(sizeof(*ret))) != NULL) {
  98. ret->out_string = prompt;
  99. ret->flags = prompt_freeable ? OUT_STRING_FREEABLE : 0;
  100. ret->input_flags = input_flags;
  101. ret->type = type;
  102. ret->result_buf = result_buf;
  103. }
  104. return ret;
  105. }
  106. static int general_allocate_string(UI *ui, const char *prompt,
  107. int prompt_freeable,
  108. enum UI_string_types type, int input_flags,
  109. char *result_buf, int minsize, int maxsize,
  110. const char *test_buf)
  111. {
  112. int ret = -1;
  113. UI_STRING *s = general_allocate_prompt(ui, prompt, prompt_freeable,
  114. type, input_flags, result_buf);
  115. if (s != NULL) {
  116. if (allocate_string_stack(ui) >= 0) {
  117. s->_.string_data.result_minsize = minsize;
  118. s->_.string_data.result_maxsize = maxsize;
  119. s->_.string_data.test_buf = test_buf;
  120. ret = sk_UI_STRING_push(ui->strings, s);
  121. /* sk_push() returns 0 on error. Let's adapt that */
  122. if (ret <= 0) {
  123. ret--;
  124. free_string(s);
  125. }
  126. } else
  127. free_string(s);
  128. }
  129. return ret;
  130. }
  131. static int general_allocate_boolean(UI *ui,
  132. const char *prompt,
  133. const char *action_desc,
  134. const char *ok_chars,
  135. const char *cancel_chars,
  136. int prompt_freeable,
  137. enum UI_string_types type,
  138. int input_flags, char *result_buf)
  139. {
  140. int ret = -1;
  141. UI_STRING *s;
  142. const char *p;
  143. if (ok_chars == NULL) {
  144. UIerr(UI_F_GENERAL_ALLOCATE_BOOLEAN, ERR_R_PASSED_NULL_PARAMETER);
  145. } else if (cancel_chars == NULL) {
  146. UIerr(UI_F_GENERAL_ALLOCATE_BOOLEAN, ERR_R_PASSED_NULL_PARAMETER);
  147. } else {
  148. for (p = ok_chars; *p != '\0'; p++) {
  149. if (strchr(cancel_chars, *p) != NULL) {
  150. UIerr(UI_F_GENERAL_ALLOCATE_BOOLEAN,
  151. UI_R_COMMON_OK_AND_CANCEL_CHARACTERS);
  152. }
  153. }
  154. s = general_allocate_prompt(ui, prompt, prompt_freeable,
  155. type, input_flags, result_buf);
  156. if (s != NULL) {
  157. if (allocate_string_stack(ui) >= 0) {
  158. s->_.boolean_data.action_desc = action_desc;
  159. s->_.boolean_data.ok_chars = ok_chars;
  160. s->_.boolean_data.cancel_chars = cancel_chars;
  161. ret = sk_UI_STRING_push(ui->strings, s);
  162. /*
  163. * sk_push() returns 0 on error. Let's adapt that
  164. */
  165. if (ret <= 0) {
  166. ret--;
  167. free_string(s);
  168. }
  169. } else
  170. free_string(s);
  171. }
  172. }
  173. return ret;
  174. }
  175. /*
  176. * Returns the index to the place in the stack or -1 for error. Uses a
  177. * direct reference to the prompt.
  178. */
  179. int UI_add_input_string(UI *ui, const char *prompt, int flags,
  180. char *result_buf, int minsize, int maxsize)
  181. {
  182. return general_allocate_string(ui, prompt, 0,
  183. UIT_PROMPT, flags, result_buf, minsize,
  184. maxsize, NULL);
  185. }
  186. /* Same as UI_add_input_string(), excepts it takes a copy of the prompt */
  187. int UI_dup_input_string(UI *ui, const char *prompt, int flags,
  188. char *result_buf, int minsize, int maxsize)
  189. {
  190. char *prompt_copy = NULL;
  191. if (prompt != NULL) {
  192. prompt_copy = OPENSSL_strdup(prompt);
  193. if (prompt_copy == NULL) {
  194. UIerr(UI_F_UI_DUP_INPUT_STRING, ERR_R_MALLOC_FAILURE);
  195. return 0;
  196. }
  197. }
  198. return general_allocate_string(ui, prompt_copy, 1,
  199. UIT_PROMPT, flags, result_buf, minsize,
  200. maxsize, NULL);
  201. }
  202. int UI_add_verify_string(UI *ui, const char *prompt, int flags,
  203. char *result_buf, int minsize, int maxsize,
  204. const char *test_buf)
  205. {
  206. return general_allocate_string(ui, prompt, 0,
  207. UIT_VERIFY, flags, result_buf, minsize,
  208. maxsize, test_buf);
  209. }
  210. int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
  211. char *result_buf, int minsize, int maxsize,
  212. const char *test_buf)
  213. {
  214. char *prompt_copy = NULL;
  215. if (prompt != NULL) {
  216. prompt_copy = OPENSSL_strdup(prompt);
  217. if (prompt_copy == NULL) {
  218. UIerr(UI_F_UI_DUP_VERIFY_STRING, ERR_R_MALLOC_FAILURE);
  219. return -1;
  220. }
  221. }
  222. return general_allocate_string(ui, prompt_copy, 1,
  223. UIT_VERIFY, flags, result_buf, minsize,
  224. maxsize, test_buf);
  225. }
  226. int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
  227. const char *ok_chars, const char *cancel_chars,
  228. int flags, char *result_buf)
  229. {
  230. return general_allocate_boolean(ui, prompt, action_desc,
  231. ok_chars, cancel_chars, 0, UIT_BOOLEAN,
  232. flags, result_buf);
  233. }
  234. int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc,
  235. const char *ok_chars, const char *cancel_chars,
  236. int flags, char *result_buf)
  237. {
  238. char *prompt_copy = NULL;
  239. char *action_desc_copy = NULL;
  240. char *ok_chars_copy = NULL;
  241. char *cancel_chars_copy = NULL;
  242. if (prompt != NULL) {
  243. prompt_copy = OPENSSL_strdup(prompt);
  244. if (prompt_copy == NULL) {
  245. UIerr(UI_F_UI_DUP_INPUT_BOOLEAN, ERR_R_MALLOC_FAILURE);
  246. goto err;
  247. }
  248. }
  249. if (action_desc != NULL) {
  250. action_desc_copy = OPENSSL_strdup(action_desc);
  251. if (action_desc_copy == NULL) {
  252. UIerr(UI_F_UI_DUP_INPUT_BOOLEAN, ERR_R_MALLOC_FAILURE);
  253. goto err;
  254. }
  255. }
  256. if (ok_chars != NULL) {
  257. ok_chars_copy = OPENSSL_strdup(ok_chars);
  258. if (ok_chars_copy == NULL) {
  259. UIerr(UI_F_UI_DUP_INPUT_BOOLEAN, ERR_R_MALLOC_FAILURE);
  260. goto err;
  261. }
  262. }
  263. if (cancel_chars != NULL) {
  264. cancel_chars_copy = OPENSSL_strdup(cancel_chars);
  265. if (cancel_chars_copy == NULL) {
  266. UIerr(UI_F_UI_DUP_INPUT_BOOLEAN, ERR_R_MALLOC_FAILURE);
  267. goto err;
  268. }
  269. }
  270. return general_allocate_boolean(ui, prompt_copy, action_desc_copy,
  271. ok_chars_copy, cancel_chars_copy, 1,
  272. UIT_BOOLEAN, flags, result_buf);
  273. err:
  274. OPENSSL_free(prompt_copy);
  275. OPENSSL_free(action_desc_copy);
  276. OPENSSL_free(ok_chars_copy);
  277. OPENSSL_free(cancel_chars_copy);
  278. return -1;
  279. }
  280. int UI_add_info_string(UI *ui, const char *text)
  281. {
  282. return general_allocate_string(ui, text, 0, UIT_INFO, 0, NULL, 0, 0,
  283. NULL);
  284. }
  285. int UI_dup_info_string(UI *ui, const char *text)
  286. {
  287. char *text_copy = NULL;
  288. if (text != NULL) {
  289. text_copy = OPENSSL_strdup(text);
  290. if (text_copy == NULL) {
  291. UIerr(UI_F_UI_DUP_INFO_STRING, ERR_R_MALLOC_FAILURE);
  292. return -1;
  293. }
  294. }
  295. return general_allocate_string(ui, text_copy, 1, UIT_INFO, 0, NULL,
  296. 0, 0, NULL);
  297. }
  298. int UI_add_error_string(UI *ui, const char *text)
  299. {
  300. return general_allocate_string(ui, text, 0, UIT_ERROR, 0, NULL, 0, 0,
  301. NULL);
  302. }
  303. int UI_dup_error_string(UI *ui, const char *text)
  304. {
  305. char *text_copy = NULL;
  306. if (text != NULL) {
  307. text_copy = OPENSSL_strdup(text);
  308. if (text_copy == NULL) {
  309. UIerr(UI_F_UI_DUP_ERROR_STRING, ERR_R_MALLOC_FAILURE);
  310. return -1;
  311. }
  312. }
  313. return general_allocate_string(ui, text_copy, 1, UIT_ERROR, 0, NULL,
  314. 0, 0, NULL);
  315. }
  316. char *UI_construct_prompt(UI *ui, const char *object_desc,
  317. const char *object_name)
  318. {
  319. char *prompt = NULL;
  320. if (ui->meth->ui_construct_prompt != NULL)
  321. prompt = ui->meth->ui_construct_prompt(ui, object_desc, object_name);
  322. else {
  323. char prompt1[] = "Enter ";
  324. char prompt2[] = " for ";
  325. char prompt3[] = ":";
  326. int len = 0;
  327. if (object_desc == NULL)
  328. return NULL;
  329. len = sizeof(prompt1) - 1 + strlen(object_desc);
  330. if (object_name != NULL)
  331. len += sizeof(prompt2) - 1 + strlen(object_name);
  332. len += sizeof(prompt3) - 1;
  333. if ((prompt = OPENSSL_malloc(len + 1)) == NULL) {
  334. UIerr(UI_F_UI_CONSTRUCT_PROMPT, ERR_R_MALLOC_FAILURE);
  335. return NULL;
  336. }
  337. OPENSSL_strlcpy(prompt, prompt1, len + 1);
  338. OPENSSL_strlcat(prompt, object_desc, len + 1);
  339. if (object_name != NULL) {
  340. OPENSSL_strlcat(prompt, prompt2, len + 1);
  341. OPENSSL_strlcat(prompt, object_name, len + 1);
  342. }
  343. OPENSSL_strlcat(prompt, prompt3, len + 1);
  344. }
  345. return prompt;
  346. }
  347. void *UI_add_user_data(UI *ui, void *user_data)
  348. {
  349. void *old_data = ui->user_data;
  350. if ((ui->flags & UI_FLAG_DUPL_DATA) != 0) {
  351. ui->meth->ui_destroy_data(ui, old_data);
  352. old_data = NULL;
  353. }
  354. ui->user_data = user_data;
  355. ui->flags &= ~UI_FLAG_DUPL_DATA;
  356. return old_data;
  357. }
  358. int UI_dup_user_data(UI *ui, void *user_data)
  359. {
  360. void *duplicate = NULL;
  361. if (ui->meth->ui_duplicate_data == NULL
  362. || ui->meth->ui_destroy_data == NULL) {
  363. UIerr(UI_F_UI_DUP_USER_DATA, UI_R_USER_DATA_DUPLICATION_UNSUPPORTED);
  364. return -1;
  365. }
  366. duplicate = ui->meth->ui_duplicate_data(ui, user_data);
  367. if (duplicate == NULL) {
  368. UIerr(UI_F_UI_DUP_USER_DATA, ERR_R_MALLOC_FAILURE);
  369. return -1;
  370. }
  371. (void)UI_add_user_data(ui, duplicate);
  372. ui->flags |= UI_FLAG_DUPL_DATA;
  373. return 0;
  374. }
  375. void *UI_get0_user_data(UI *ui)
  376. {
  377. return ui->user_data;
  378. }
  379. const char *UI_get0_result(UI *ui, int i)
  380. {
  381. if (i < 0) {
  382. UIerr(UI_F_UI_GET0_RESULT, UI_R_INDEX_TOO_SMALL);
  383. return NULL;
  384. }
  385. if (i >= sk_UI_STRING_num(ui->strings)) {
  386. UIerr(UI_F_UI_GET0_RESULT, UI_R_INDEX_TOO_LARGE);
  387. return NULL;
  388. }
  389. return UI_get0_result_string(sk_UI_STRING_value(ui->strings, i));
  390. }
  391. int UI_get_result_length(UI *ui, int i)
  392. {
  393. if (i < 0) {
  394. UIerr(UI_F_UI_GET_RESULT_LENGTH, UI_R_INDEX_TOO_SMALL);
  395. return -1;
  396. }
  397. if (i >= sk_UI_STRING_num(ui->strings)) {
  398. UIerr(UI_F_UI_GET_RESULT_LENGTH, UI_R_INDEX_TOO_LARGE);
  399. return -1;
  400. }
  401. return UI_get_result_string_length(sk_UI_STRING_value(ui->strings, i));
  402. }
  403. static int print_error(const char *str, size_t len, UI *ui)
  404. {
  405. UI_STRING uis;
  406. memset(&uis, 0, sizeof(uis));
  407. uis.type = UIT_ERROR;
  408. uis.out_string = str;
  409. if (ui->meth->ui_write_string != NULL
  410. && ui->meth->ui_write_string(ui, &uis) <= 0)
  411. return -1;
  412. return 0;
  413. }
  414. int UI_process(UI *ui)
  415. {
  416. int i, ok = 0;
  417. const char *state = "processing";
  418. if (ui->meth->ui_open_session != NULL
  419. && ui->meth->ui_open_session(ui) <= 0) {
  420. state = "opening session";
  421. ok = -1;
  422. goto err;
  423. }
  424. if (ui->flags & UI_FLAG_PRINT_ERRORS)
  425. ERR_print_errors_cb((int (*)(const char *, size_t, void *))
  426. print_error, (void *)ui);
  427. for (i = 0; i < sk_UI_STRING_num(ui->strings); i++) {
  428. if (ui->meth->ui_write_string != NULL
  429. && (ui->meth->ui_write_string(ui,
  430. sk_UI_STRING_value(ui->strings, i))
  431. <= 0))
  432. {
  433. state = "writing strings";
  434. ok = -1;
  435. goto err;
  436. }
  437. }
  438. if (ui->meth->ui_flush != NULL)
  439. switch (ui->meth->ui_flush(ui)) {
  440. case -1: /* Interrupt/Cancel/something... */
  441. ok = -2;
  442. goto err;
  443. case 0: /* Errors */
  444. state = "flushing";
  445. ok = -1;
  446. goto err;
  447. default: /* Success */
  448. ok = 0;
  449. break;
  450. }
  451. for (i = 0; i < sk_UI_STRING_num(ui->strings); i++) {
  452. if (ui->meth->ui_read_string != NULL) {
  453. switch (ui->meth->ui_read_string(ui,
  454. sk_UI_STRING_value(ui->strings,
  455. i))) {
  456. case -1: /* Interrupt/Cancel/something... */
  457. ok = -2;
  458. goto err;
  459. case 0: /* Errors */
  460. state = "reading strings";
  461. ok = -1;
  462. goto err;
  463. default: /* Success */
  464. ok = 0;
  465. break;
  466. }
  467. }
  468. }
  469. state = NULL;
  470. err:
  471. if (ui->meth->ui_close_session != NULL
  472. && ui->meth->ui_close_session(ui) <= 0) {
  473. if (state == NULL)
  474. state = "closing session";
  475. ok = -1;
  476. }
  477. if (ok == -1) {
  478. UIerr(UI_F_UI_PROCESS, UI_R_PROCESSING_ERROR);
  479. ERR_add_error_data(2, "while ", state);
  480. }
  481. return ok;
  482. }
  483. int UI_ctrl(UI *ui, int cmd, long i, void *p, void (*f) (void))
  484. {
  485. if (ui == NULL) {
  486. UIerr(UI_F_UI_CTRL, ERR_R_PASSED_NULL_PARAMETER);
  487. return -1;
  488. }
  489. switch (cmd) {
  490. case UI_CTRL_PRINT_ERRORS:
  491. {
  492. int save_flag = ! !(ui->flags & UI_FLAG_PRINT_ERRORS);
  493. if (i)
  494. ui->flags |= UI_FLAG_PRINT_ERRORS;
  495. else
  496. ui->flags &= ~UI_FLAG_PRINT_ERRORS;
  497. return save_flag;
  498. }
  499. case UI_CTRL_IS_REDOABLE:
  500. return ! !(ui->flags & UI_FLAG_REDOABLE);
  501. default:
  502. break;
  503. }
  504. UIerr(UI_F_UI_CTRL, UI_R_UNKNOWN_CONTROL_COMMAND);
  505. return -1;
  506. }
  507. int UI_set_ex_data(UI *r, int idx, void *arg)
  508. {
  509. return CRYPTO_set_ex_data(&r->ex_data, idx, arg);
  510. }
  511. void *UI_get_ex_data(UI *r, int idx)
  512. {
  513. return CRYPTO_get_ex_data(&r->ex_data, idx);
  514. }
  515. const UI_METHOD *UI_get_method(UI *ui)
  516. {
  517. return ui->meth;
  518. }
  519. const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth)
  520. {
  521. ui->meth = meth;
  522. return ui->meth;
  523. }
  524. UI_METHOD *UI_create_method(const char *name)
  525. {
  526. UI_METHOD *ui_method = NULL;
  527. if ((ui_method = OPENSSL_zalloc(sizeof(*ui_method))) == NULL
  528. || (ui_method->name = OPENSSL_strdup(name)) == NULL
  529. || !CRYPTO_new_ex_data(CRYPTO_EX_INDEX_UI_METHOD, ui_method,
  530. &ui_method->ex_data)) {
  531. if (ui_method)
  532. OPENSSL_free(ui_method->name);
  533. OPENSSL_free(ui_method);
  534. UIerr(UI_F_UI_CREATE_METHOD, ERR_R_MALLOC_FAILURE);
  535. return NULL;
  536. }
  537. return ui_method;
  538. }
  539. /*
  540. * BIG FSCKING WARNING!!!! If you use this on a statically allocated method
  541. * (that is, it hasn't been allocated using UI_create_method(), you deserve
  542. * anything Murphy can throw at you and more! You have been warned.
  543. */
  544. void UI_destroy_method(UI_METHOD *ui_method)
  545. {
  546. if (ui_method == NULL)
  547. return;
  548. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_UI_METHOD, ui_method,
  549. &ui_method->ex_data);
  550. OPENSSL_free(ui_method->name);
  551. ui_method->name = NULL;
  552. OPENSSL_free(ui_method);
  553. }
  554. int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui))
  555. {
  556. if (method != NULL) {
  557. method->ui_open_session = opener;
  558. return 0;
  559. }
  560. return -1;
  561. }
  562. int UI_method_set_writer(UI_METHOD *method,
  563. int (*writer) (UI *ui, UI_STRING *uis))
  564. {
  565. if (method != NULL) {
  566. method->ui_write_string = writer;
  567. return 0;
  568. }
  569. return -1;
  570. }
  571. int UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui))
  572. {
  573. if (method != NULL) {
  574. method->ui_flush = flusher;
  575. return 0;
  576. }
  577. return -1;
  578. }
  579. int UI_method_set_reader(UI_METHOD *method,
  580. int (*reader) (UI *ui, UI_STRING *uis))
  581. {
  582. if (method != NULL) {
  583. method->ui_read_string = reader;
  584. return 0;
  585. }
  586. return -1;
  587. }
  588. int UI_method_set_closer(UI_METHOD *method, int (*closer) (UI *ui))
  589. {
  590. if (method != NULL) {
  591. method->ui_close_session = closer;
  592. return 0;
  593. }
  594. return -1;
  595. }
  596. int UI_method_set_data_duplicator(UI_METHOD *method,
  597. void *(*duplicator) (UI *ui, void *ui_data),
  598. void (*destructor)(UI *ui, void *ui_data))
  599. {
  600. if (method != NULL) {
  601. method->ui_duplicate_data = duplicator;
  602. method->ui_destroy_data = destructor;
  603. return 0;
  604. }
  605. return -1;
  606. }
  607. int UI_method_set_prompt_constructor(UI_METHOD *method,
  608. char *(*prompt_constructor) (UI *ui,
  609. const char
  610. *object_desc,
  611. const char
  612. *object_name))
  613. {
  614. if (method != NULL) {
  615. method->ui_construct_prompt = prompt_constructor;
  616. return 0;
  617. }
  618. return -1;
  619. }
  620. int UI_method_set_ex_data(UI_METHOD *method, int idx, void *data)
  621. {
  622. return CRYPTO_set_ex_data(&method->ex_data, idx, data);
  623. }
  624. int (*UI_method_get_opener(const UI_METHOD *method)) (UI *)
  625. {
  626. if (method != NULL)
  627. return method->ui_open_session;
  628. return NULL;
  629. }
  630. int (*UI_method_get_writer(const UI_METHOD *method)) (UI *, UI_STRING *)
  631. {
  632. if (method != NULL)
  633. return method->ui_write_string;
  634. return NULL;
  635. }
  636. int (*UI_method_get_flusher(const UI_METHOD *method)) (UI *)
  637. {
  638. if (method != NULL)
  639. return method->ui_flush;
  640. return NULL;
  641. }
  642. int (*UI_method_get_reader(const UI_METHOD *method)) (UI *, UI_STRING *)
  643. {
  644. if (method != NULL)
  645. return method->ui_read_string;
  646. return NULL;
  647. }
  648. int (*UI_method_get_closer(const UI_METHOD *method)) (UI *)
  649. {
  650. if (method != NULL)
  651. return method->ui_close_session;
  652. return NULL;
  653. }
  654. char *(*UI_method_get_prompt_constructor(const UI_METHOD *method))
  655. (UI *, const char *, const char *)
  656. {
  657. if (method != NULL)
  658. return method->ui_construct_prompt;
  659. return NULL;
  660. }
  661. void *(*UI_method_get_data_duplicator(const UI_METHOD *method)) (UI *, void *)
  662. {
  663. if (method != NULL)
  664. return method->ui_duplicate_data;
  665. return NULL;
  666. }
  667. void (*UI_method_get_data_destructor(const UI_METHOD *method)) (UI *, void *)
  668. {
  669. if (method != NULL)
  670. return method->ui_destroy_data;
  671. return NULL;
  672. }
  673. const void *UI_method_get_ex_data(const UI_METHOD *method, int idx)
  674. {
  675. return CRYPTO_get_ex_data(&method->ex_data, idx);
  676. }
  677. enum UI_string_types UI_get_string_type(UI_STRING *uis)
  678. {
  679. return uis->type;
  680. }
  681. int UI_get_input_flags(UI_STRING *uis)
  682. {
  683. return uis->input_flags;
  684. }
  685. const char *UI_get0_output_string(UI_STRING *uis)
  686. {
  687. return uis->out_string;
  688. }
  689. const char *UI_get0_action_string(UI_STRING *uis)
  690. {
  691. switch (uis->type) {
  692. case UIT_BOOLEAN:
  693. return uis->_.boolean_data.action_desc;
  694. case UIT_PROMPT:
  695. case UIT_NONE:
  696. case UIT_VERIFY:
  697. case UIT_INFO:
  698. case UIT_ERROR:
  699. break;
  700. }
  701. return NULL;
  702. }
  703. const char *UI_get0_result_string(UI_STRING *uis)
  704. {
  705. switch (uis->type) {
  706. case UIT_PROMPT:
  707. case UIT_VERIFY:
  708. return uis->result_buf;
  709. case UIT_NONE:
  710. case UIT_BOOLEAN:
  711. case UIT_INFO:
  712. case UIT_ERROR:
  713. break;
  714. }
  715. return NULL;
  716. }
  717. int UI_get_result_string_length(UI_STRING *uis)
  718. {
  719. switch (uis->type) {
  720. case UIT_PROMPT:
  721. case UIT_VERIFY:
  722. return uis->result_len;
  723. case UIT_NONE:
  724. case UIT_BOOLEAN:
  725. case UIT_INFO:
  726. case UIT_ERROR:
  727. break;
  728. }
  729. return -1;
  730. }
  731. const char *UI_get0_test_string(UI_STRING *uis)
  732. {
  733. switch (uis->type) {
  734. case UIT_VERIFY:
  735. return uis->_.string_data.test_buf;
  736. case UIT_NONE:
  737. case UIT_BOOLEAN:
  738. case UIT_INFO:
  739. case UIT_ERROR:
  740. case UIT_PROMPT:
  741. break;
  742. }
  743. return NULL;
  744. }
  745. int UI_get_result_minsize(UI_STRING *uis)
  746. {
  747. switch (uis->type) {
  748. case UIT_PROMPT:
  749. case UIT_VERIFY:
  750. return uis->_.string_data.result_minsize;
  751. case UIT_NONE:
  752. case UIT_INFO:
  753. case UIT_ERROR:
  754. case UIT_BOOLEAN:
  755. break;
  756. }
  757. return -1;
  758. }
  759. int UI_get_result_maxsize(UI_STRING *uis)
  760. {
  761. switch (uis->type) {
  762. case UIT_PROMPT:
  763. case UIT_VERIFY:
  764. return uis->_.string_data.result_maxsize;
  765. case UIT_NONE:
  766. case UIT_INFO:
  767. case UIT_ERROR:
  768. case UIT_BOOLEAN:
  769. break;
  770. }
  771. return -1;
  772. }
  773. int UI_set_result(UI *ui, UI_STRING *uis, const char *result)
  774. {
  775. #if 0
  776. /*
  777. * This is placed here solely to preserve UI_F_UI_SET_RESULT
  778. * To be removed for OpenSSL 1.2.0
  779. */
  780. UIerr(UI_F_UI_SET_RESULT, ERR_R_DISABLED);
  781. #endif
  782. return UI_set_result_ex(ui, uis, result, strlen(result));
  783. }
  784. int UI_set_result_ex(UI *ui, UI_STRING *uis, const char *result, int len)
  785. {
  786. ui->flags &= ~UI_FLAG_REDOABLE;
  787. switch (uis->type) {
  788. case UIT_PROMPT:
  789. case UIT_VERIFY:
  790. {
  791. char number1[DECIMAL_SIZE(uis->_.string_data.result_minsize) + 1];
  792. char number2[DECIMAL_SIZE(uis->_.string_data.result_maxsize) + 1];
  793. BIO_snprintf(number1, sizeof(number1), "%d",
  794. uis->_.string_data.result_minsize);
  795. BIO_snprintf(number2, sizeof(number2), "%d",
  796. uis->_.string_data.result_maxsize);
  797. if (len < uis->_.string_data.result_minsize) {
  798. ui->flags |= UI_FLAG_REDOABLE;
  799. UIerr(UI_F_UI_SET_RESULT_EX, UI_R_RESULT_TOO_SMALL);
  800. ERR_add_error_data(5, "You must type in ",
  801. number1, " to ", number2, " characters");
  802. return -1;
  803. }
  804. if (len > uis->_.string_data.result_maxsize) {
  805. ui->flags |= UI_FLAG_REDOABLE;
  806. UIerr(UI_F_UI_SET_RESULT_EX, UI_R_RESULT_TOO_LARGE);
  807. ERR_add_error_data(5, "You must type in ",
  808. number1, " to ", number2, " characters");
  809. return -1;
  810. }
  811. }
  812. if (uis->result_buf == NULL) {
  813. UIerr(UI_F_UI_SET_RESULT_EX, UI_R_NO_RESULT_BUFFER);
  814. return -1;
  815. }
  816. memcpy(uis->result_buf, result, len);
  817. if (len <= uis->_.string_data.result_maxsize)
  818. uis->result_buf[len] = '\0';
  819. uis->result_len = len;
  820. break;
  821. case UIT_BOOLEAN:
  822. {
  823. const char *p;
  824. if (uis->result_buf == NULL) {
  825. UIerr(UI_F_UI_SET_RESULT_EX, UI_R_NO_RESULT_BUFFER);
  826. return -1;
  827. }
  828. uis->result_buf[0] = '\0';
  829. for (p = result; *p; p++) {
  830. if (strchr(uis->_.boolean_data.ok_chars, *p)) {
  831. uis->result_buf[0] = uis->_.boolean_data.ok_chars[0];
  832. break;
  833. }
  834. if (strchr(uis->_.boolean_data.cancel_chars, *p)) {
  835. uis->result_buf[0] = uis->_.boolean_data.cancel_chars[0];
  836. break;
  837. }
  838. }
  839. }
  840. case UIT_NONE:
  841. case UIT_INFO:
  842. case UIT_ERROR:
  843. break;
  844. }
  845. return 0;
  846. }