UI_new.pod 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. =pod
  2. =head1 NAME
  3. UI,
  4. UI_new, UI_new_method, UI_free, UI_add_input_string, UI_dup_input_string,
  5. UI_add_verify_string, UI_dup_verify_string, UI_add_input_boolean,
  6. UI_dup_input_boolean, UI_add_info_string, UI_dup_info_string,
  7. UI_add_error_string, UI_dup_error_string, UI_construct_prompt,
  8. UI_add_user_data, UI_get0_user_data, UI_get0_result, UI_process,
  9. UI_ctrl, UI_set_default_method, UI_get_default_method, UI_get_method,
  10. UI_set_method, UI_OpenSSL, UI_null - user interface
  11. =head1 SYNOPSIS
  12. #include <openssl/ui.h>
  13. typedef struct ui_st UI;
  14. UI *UI_new(void);
  15. UI *UI_new_method(const UI_METHOD *method);
  16. void UI_free(UI *ui);
  17. int UI_add_input_string(UI *ui, const char *prompt, int flags,
  18. char *result_buf, int minsize, int maxsize);
  19. int UI_dup_input_string(UI *ui, const char *prompt, int flags,
  20. char *result_buf, int minsize, int maxsize);
  21. int UI_add_verify_string(UI *ui, const char *prompt, int flags,
  22. char *result_buf, int minsize, int maxsize, const char *test_buf);
  23. int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
  24. char *result_buf, int minsize, int maxsize, const char *test_buf);
  25. int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
  26. const char *ok_chars, const char *cancel_chars,
  27. int flags, char *result_buf);
  28. int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc,
  29. const char *ok_chars, const char *cancel_chars,
  30. int flags, char *result_buf);
  31. int UI_add_info_string(UI *ui, const char *text);
  32. int UI_dup_info_string(UI *ui, const char *text);
  33. int UI_add_error_string(UI *ui, const char *text);
  34. int UI_dup_error_string(UI *ui, const char *text);
  35. char *UI_construct_prompt(UI *ui_method,
  36. const char *object_desc, const char *object_name);
  37. void *UI_add_user_data(UI *ui, void *user_data);
  38. void *UI_get0_user_data(UI *ui);
  39. const char *UI_get0_result(UI *ui, int i);
  40. int UI_process(UI *ui);
  41. int UI_ctrl(UI *ui, int cmd, long i, void *p, void (*f)());
  42. void UI_set_default_method(const UI_METHOD *meth);
  43. const UI_METHOD *UI_get_default_method(void);
  44. const UI_METHOD *UI_get_method(UI *ui);
  45. const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth);
  46. UI_METHOD *UI_OpenSSL(void);
  47. const UI_METHOD *UI_null(void);
  48. =head1 DESCRIPTION
  49. UI stands for User Interface, and is general purpose set of routines to
  50. prompt the user for text-based information. Through user-written methods
  51. (see L<UI_create_method(3)>), prompting can be done in any way
  52. imaginable, be it plain text prompting, through dialog boxes or from a
  53. cell phone.
  54. All the functions work through a context of the type UI. This context
  55. contains all the information needed to prompt correctly as well as a
  56. reference to a UI_METHOD, which is an ordered vector of functions that
  57. carry out the actual prompting.
  58. The first thing to do is to create a UI with UI_new() or UI_new_method(),
  59. then add information to it with the UI_add or UI_dup functions. Also,
  60. user-defined random data can be passed down to the underlying method
  61. through calls to UI_add_user_data. The default UI method doesn't care
  62. about these data, but other methods might. Finally, use UI_process()
  63. to actually perform the prompting and UI_get0_result() to find the result
  64. to the prompt.
  65. A UI can contain more than one prompt, which are performed in the given
  66. sequence. Each prompt gets an index number which is returned by the
  67. UI_add and UI_dup functions, and has to be used to get the corresponding
  68. result with UI_get0_result().
  69. The functions are as follows:
  70. UI_new() creates a new UI using the default UI method. When done with
  71. this UI, it should be freed using UI_free().
  72. UI_new_method() creates a new UI using the given UI method. When done with
  73. this UI, it should be freed using UI_free().
  74. UI_OpenSSL() returns the built-in UI method (note: not necessarely the
  75. default one, since the default can be changed. See further on). This
  76. method is the most machine/OS dependent part of OpenSSL and normally
  77. generates the most problems when porting.
  78. UI_null() returns a UI method that does nothing. Its use is to avoid
  79. getting internal defaults for passed UI_METHOD pointers.
  80. UI_free() removes a UI from memory, along with all other pieces of memory
  81. that's connected to it, like duplicated input strings, results and others.
  82. If B<ui> is NULL nothing is done.
  83. UI_add_input_string() and UI_add_verify_string() add a prompt to the UI,
  84. as well as flags and a result buffer and the desired minimum and maximum
  85. sizes of the result, not counting the final NUL character. The given
  86. information is used to prompt for information, for example a password,
  87. and to verify a password (i.e. having the user enter it twice and check
  88. that the same string was entered twice). UI_add_verify_string() takes
  89. and extra argument that should be a pointer to the result buffer of the
  90. input string that it's supposed to verify, or verification will fail.
  91. UI_add_input_boolean() adds a prompt to the UI that's supposed to be answered
  92. in a boolean way, with a single character for yes and a different character
  93. for no. A set of characters that can be used to cancel the prompt is given
  94. as well. The prompt itself is divided in two, one part being the
  95. descriptive text (given through the I<prompt> argument) and one describing
  96. the possible answers (given through the I<action_desc> argument).
  97. UI_add_info_string() and UI_add_error_string() add strings that are shown at
  98. the same time as the prompt for extra information or to show an error string.
  99. The difference between the two is only conceptual. With the builtin method,
  100. there's no technical difference between them. Other methods may make a
  101. difference between them, however.
  102. The flags currently supported are B<UI_INPUT_FLAG_ECHO>, which is relevant for
  103. UI_add_input_string() and will have the users response be echoed (when
  104. prompting for a password, this flag should obviously not be used, and
  105. B<UI_INPUT_FLAG_DEFAULT_PWD>, which means that a default password of some
  106. sort will be used (completely depending on the application and the UI
  107. method).
  108. UI_dup_input_string(), UI_dup_verify_string(), UI_dup_input_boolean(),
  109. UI_dup_info_string() and UI_dup_error_string() are basically the same
  110. as their UI_add counterparts, except that they make their own copies
  111. of all strings.
  112. UI_construct_prompt() is a helper function that can be used to create
  113. a prompt from two pieces of information: an description and a name.
  114. The default constructor (if there is none provided by the method used)
  115. creates a string "Enter I<description> for I<name>:". With the
  116. description "pass phrase" and the file name "foo.key", that becomes
  117. "Enter pass phrase for foo.key:". Other methods may create whatever
  118. string and may include encodings that will be processed by the other
  119. method functions.
  120. UI_add_user_data() adds a piece of memory for the method to use at any
  121. time. The builtin UI method doesn't care about this info. Note that several
  122. calls to this function doesn't add data, it replaces the previous blob
  123. with the one given as argument.
  124. UI_get0_user_data() retrieves the data that has last been given to the
  125. UI with UI_add_user_data().
  126. UI_get0_result() returns a pointer to the result buffer associated with
  127. the information indexed by I<i>.
  128. UI_process() goes through the information given so far, does all the printing
  129. and prompting and returns the final status, which is -2 on out-of-band events
  130. (Interrupt, Cancel, ...), -1 on error and 0 on success.
  131. UI_ctrl() adds extra control for the application author. For now, it
  132. understands two commands: B<UI_CTRL_PRINT_ERRORS>, which makes UI_process()
  133. print the OpenSSL error stack as part of processing the UI, and
  134. B<UI_CTRL_IS_REDOABLE>, which returns a flag saying if the used UI can
  135. be used again or not.
  136. UI_set_default_method() changes the default UI method to the one given.
  137. This function is not thread-safe and should not be called at the same time
  138. as other OpenSSL functions.
  139. UI_get_default_method() returns a pointer to the current default UI method.
  140. UI_get_method() returns the UI method associated with a given UI.
  141. UI_set_method() changes the UI method associated with a given UI.
  142. =head1 NOTES
  143. The resulting strings that the built in method UI_OpenSSL() generate
  144. are assumed to be encoded according to the current locale or (for
  145. Windows) code page.
  146. For applications having different demands, these strings need to be
  147. converted appropriately by the caller.
  148. For Windows, if the OPENSSL_WIN32_UTF8 environment variable is set,
  149. the built-in method UI_OpenSSL() will produce UTF-8 encoded strings
  150. instead.
  151. =head1 COPYRIGHT
  152. Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved.
  153. Licensed under the OpenSSL license (the "License"). You may not use
  154. this file except in compliance with the License. You can obtain a copy
  155. in the file LICENSE in the source distribution or at
  156. L<https://www.openssl.org/source/license.html>.
  157. =cut