Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-11 08:49:01

0001 /*
0002  * WARNING: do not edit!
0003  * Generated by Makefile from include/openssl/ui.h.in
0004  *
0005  * Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved.
0006  *
0007  * Licensed under the Apache License 2.0 (the "License").  You may not use
0008  * this file except in compliance with the License.  You can obtain a copy
0009  * in the file LICENSE in the source distribution or at
0010  * https://www.openssl.org/source/license.html
0011  */
0012 
0013 /* clang-format off */
0014 
0015 /* clang-format on */
0016 
0017 #ifndef OPENSSL_UI_H
0018 #define OPENSSL_UI_H
0019 #pragma once
0020 
0021 #include <openssl/macros.h>
0022 #ifndef OPENSSL_NO_DEPRECATED_3_0
0023 #define HEADER_UI_H
0024 #endif
0025 
0026 #include <openssl/opensslconf.h>
0027 
0028 #ifndef OPENSSL_NO_DEPRECATED_1_1_0
0029 #include <openssl/crypto.h>
0030 #endif
0031 #include <openssl/safestack.h>
0032 #include <openssl/pem.h>
0033 #include <openssl/types.h>
0034 #include <openssl/uierr.h>
0035 
0036 /* For compatibility reasons, the macro OPENSSL_NO_UI is currently retained */
0037 #ifndef OPENSSL_NO_DEPRECATED_3_0
0038 #ifdef OPENSSL_NO_UI_CONSOLE
0039 #define OPENSSL_NO_UI
0040 #endif
0041 #endif
0042 
0043 #ifdef __cplusplus
0044 extern "C" {
0045 #endif
0046 
0047 /*
0048  * All the following functions return -1 or NULL on error and in some cases
0049  * (UI_process()) -2 if interrupted or in some other way cancelled. When
0050  * everything is fine, they return 0, a positive value or a non-NULL pointer,
0051  * all depending on their purpose.
0052  */
0053 
0054 /* Creators and destructor.   */
0055 UI *UI_new(void);
0056 UI *UI_new_method(const UI_METHOD *method);
0057 void UI_free(UI *ui);
0058 
0059 /*-
0060    The following functions are used to add strings to be printed and prompt
0061    strings to prompt for data.  The names are UI_{add,dup}_<function>_string
0062    and UI_{add,dup}_input_boolean.
0063 
0064    UI_{add,dup}_<function>_string have the following meanings:
0065         add     add a text or prompt string.  The pointers given to these
0066                 functions are used verbatim, no copying is done.
0067         dup     make a copy of the text or prompt string, then add the copy
0068                 to the collection of strings in the user interface.
0069         <function>
0070                 The function is a name for the functionality that the given
0071                 string shall be used for.  It can be one of:
0072                         input   use the string as data prompt.
0073                         verify  use the string as verification prompt.  This
0074                                 is used to verify a previous input.
0075                         info    use the string for informational output.
0076                         error   use the string for error output.
0077    Honestly, there's currently no difference between info and error for the
0078    moment.
0079 
0080    UI_{add,dup}_input_boolean have the same semantics for "add" and "dup",
0081    and are typically used when one wants to prompt for a yes/no response.
0082 
0083    All of the functions in this group take a UI and a prompt string.
0084    The string input and verify addition functions also take a flag argument,
0085    a buffer for the result to end up with, a minimum input size and a maximum
0086    input size (the result buffer MUST be large enough to be able to contain
0087    the maximum number of characters).  Additionally, the verify addition
0088    functions takes another buffer to compare the result against.
0089    The boolean input functions take an action description string (which should
0090    be safe to ignore if the expected user action is obvious, for example with
0091    a dialog box with an OK button and a Cancel button), a string of acceptable
0092    characters to mean OK and to mean Cancel.  The two last strings are checked
0093    to make sure they don't have common characters.  Additionally, the same
0094    flag argument as for the string input is taken, as well as a result buffer.
0095    The result buffer is required to be at least one byte long.  Depending on
0096    the answer, the first character from the OK or the Cancel character strings
0097    will be stored in the first byte of the result buffer.  No NUL will be
0098    added, so the result is *not* a string.
0099 
0100    On success, the all return an index of the added information.  That index
0101    is useful when retrieving results with UI_get0_result(). */
0102 int UI_add_input_string(UI *ui, const char *prompt, int flags,
0103     char *result_buf, int minsize, int maxsize);
0104 int UI_dup_input_string(UI *ui, const char *prompt, int flags,
0105     char *result_buf, int minsize, int maxsize);
0106 int UI_add_verify_string(UI *ui, const char *prompt, int flags,
0107     char *result_buf, int minsize, int maxsize,
0108     const char *test_buf);
0109 int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
0110     char *result_buf, int minsize, int maxsize,
0111     const char *test_buf);
0112 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
0113     const char *ok_chars, const char *cancel_chars,
0114     int flags, char *result_buf);
0115 int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc,
0116     const char *ok_chars, const char *cancel_chars,
0117     int flags, char *result_buf);
0118 int UI_add_info_string(UI *ui, const char *text);
0119 int UI_dup_info_string(UI *ui, const char *text);
0120 int UI_add_error_string(UI *ui, const char *text);
0121 int UI_dup_error_string(UI *ui, const char *text);
0122 
0123 /* These are the possible flags.  They can be or'ed together. */
0124 /* Use to have echoing of input */
0125 #define UI_INPUT_FLAG_ECHO 0x01
0126 /*
0127  * Use a default password.  Where that password is found is completely up to
0128  * the application, it might for example be in the user data set with
0129  * UI_add_user_data().  It is not recommended to have more than one input in
0130  * each UI being marked with this flag, or the application might get
0131  * confused.
0132  */
0133 #define UI_INPUT_FLAG_DEFAULT_PWD 0x02
0134 
0135 /*-
0136  * The user of these routines may want to define flags of their own.  The core
0137  * UI won't look at those, but will pass them on to the method routines.  They
0138  * must use higher bits so they don't get confused with the UI bits above.
0139  * UI_INPUT_FLAG_USER_BASE tells which is the lowest bit to use.  A good
0140  * example of use is this:
0141  *
0142  *    #define MY_UI_FLAG1       (0x01 << UI_INPUT_FLAG_USER_BASE)
0143  *
0144  */
0145 #define UI_INPUT_FLAG_USER_BASE 16
0146 
0147 /*-
0148  * The following function helps construct a prompt.
0149  * phrase_desc is a textual short description of the phrase to enter,
0150  * for example "pass phrase", and
0151  * object_name is the name of the object
0152  * (which might be a card name or a file name) or NULL.
0153  * The returned string shall always be allocated on the heap with
0154  * OPENSSL_malloc(), and need to be free'd with OPENSSL_free().
0155  *
0156  * If the ui_method doesn't contain a pointer to a user-defined prompt
0157  * constructor, a default string is built, looking like this:
0158  *
0159  *       "Enter {phrase_desc} for {object_name}:"
0160  *
0161  * So, if phrase_desc has the value "pass phrase" and object_name has
0162  * the value "foo.key", the resulting string is:
0163  *
0164  *       "Enter pass phrase for foo.key:"
0165  */
0166 char *UI_construct_prompt(UI *ui_method,
0167     const char *phrase_desc, const char *object_name);
0168 
0169 /*
0170  * The following function is used to store a pointer to user-specific data.
0171  * Any previous such pointer will be returned and replaced.
0172  *
0173  * For callback purposes, this function makes a lot more sense than using
0174  * ex_data, since the latter requires that different parts of OpenSSL or
0175  * applications share the same ex_data index.
0176  *
0177  * Note that the UI_OpenSSL() method completely ignores the user data. Other
0178  * methods may not, however.
0179  */
0180 void *UI_add_user_data(UI *ui, void *user_data);
0181 /*
0182  * Alternatively, this function is used to duplicate the user data.
0183  * This uses the duplicator method function.  The destroy function will
0184  * be used to free the user data in this case.
0185  */
0186 int UI_dup_user_data(UI *ui, void *user_data);
0187 /* We need a user data retrieving function as well.  */
0188 void *UI_get0_user_data(UI *ui);
0189 
0190 /* Return the result associated with a prompt given with the index i. */
0191 const char *UI_get0_result(UI *ui, int i);
0192 int UI_get_result_length(UI *ui, int i);
0193 
0194 /* When all strings have been added, process the whole thing. */
0195 int UI_process(UI *ui);
0196 
0197 /*
0198  * Give a user interface parameterised control commands.  This can be used to
0199  * send down an integer, a data pointer or a function pointer, as well as be
0200  * used to get information from a UI.
0201  */
0202 int UI_ctrl(UI *ui, int cmd, long i, void *p, void (*f)(void));
0203 
0204 /* The commands */
0205 /*
0206  * Use UI_CONTROL_PRINT_ERRORS with the value 1 to have UI_process print the
0207  * OpenSSL error stack before printing any info or added error messages and
0208  * before any prompting.
0209  */
0210 #define UI_CTRL_PRINT_ERRORS 1
0211 /*
0212  * Check if a UI_process() is possible to do again with the same instance of
0213  * a user interface.  This makes UI_ctrl() return 1 if it is redoable, and 0
0214  * if not.
0215  */
0216 #define UI_CTRL_IS_REDOABLE 2
0217 
0218 /* Some methods may use extra data */
0219 #define UI_set_app_data(s, arg) UI_set_ex_data(s, 0, arg)
0220 #define UI_get_app_data(s) UI_get_ex_data(s, 0)
0221 
0222 #define UI_get_ex_new_index(l, p, newf, dupf, freef) \
0223     CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_UI, l, p, newf, dupf, freef)
0224 int UI_set_ex_data(UI *r, int idx, void *arg);
0225 void *UI_get_ex_data(const UI *r, int idx);
0226 
0227 /* Use specific methods instead of the built-in one */
0228 void UI_set_default_method(const UI_METHOD *meth);
0229 const UI_METHOD *UI_get_default_method(void);
0230 const UI_METHOD *UI_get_method(UI *ui);
0231 const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth);
0232 
0233 #ifndef OPENSSL_NO_UI_CONSOLE
0234 
0235 /* The method with all the built-in thingies */
0236 UI_METHOD *UI_OpenSSL(void);
0237 
0238 #endif
0239 
0240 /*
0241  * NULL method.  Literally does nothing, but may serve as a placeholder
0242  * to avoid internal default.
0243  */
0244 const UI_METHOD *UI_null(void);
0245 
0246 /* ---------- For method writers ---------- */
0247 /*-
0248    A method contains a number of functions that implement the low level
0249    of the User Interface.  The functions are:
0250 
0251         an opener       This function starts a session, maybe by opening
0252                         a channel to a tty, or by opening a window.
0253         a writer        This function is called to write a given string,
0254                         maybe to the tty, maybe as a field label in a
0255                         window.
0256         a flusher       This function is called to flush everything that
0257                         has been output so far.  It can be used to actually
0258                         display a dialog box after it has been built.
0259         a reader        This function is called to read a given prompt,
0260                         maybe from the tty, maybe from a field in a
0261                         window.  Note that it's called with all string
0262                         structures, not only the prompt ones, so it must
0263                         check such things itself.
0264         a closer        This function closes the session, maybe by closing
0265                         the channel to the tty, or closing the window.
0266 
0267    All these functions are expected to return:
0268 
0269         0       on error.
0270         1       on success.
0271         -1      on out-of-band events, for example if some prompting has
0272                 been canceled (by pressing Ctrl-C, for example).  This is
0273                 only checked when returned by the flusher or the reader.
0274 
0275    The way this is used, the opener is first called, then the writer for all
0276    strings, then the flusher, then the reader for all strings and finally the
0277    closer.  Note that if you want to prompt from a terminal or other command
0278    line interface, the best is to have the reader also write the prompts
0279    instead of having the writer do it.  If you want to prompt from a dialog
0280    box, the writer can be used to build up the contents of the box, and the
0281    flusher to actually display the box and run the event loop until all data
0282    has been given, after which the reader only grabs the given data and puts
0283    them back into the UI strings.
0284 
0285    All method functions take a UI as argument.  Additionally, the writer and
0286    the reader take a UI_STRING.
0287 */
0288 
0289 /*
0290  * The UI_STRING type is the data structure that contains all the needed info
0291  * about a string or a prompt, including test data for a verification prompt.
0292  */
0293 typedef struct ui_string_st UI_STRING;
0294 
0295 /* clang-format off */
0296 SKM_DEFINE_STACK_OF_INTERNAL(UI_STRING, UI_STRING, UI_STRING)
0297 #define sk_UI_STRING_num(sk) OPENSSL_sk_num(ossl_check_const_UI_STRING_sk_type(sk))
0298 #define sk_UI_STRING_value(sk, idx) ((UI_STRING *)OPENSSL_sk_value(ossl_check_const_UI_STRING_sk_type(sk), (idx)))
0299 #define sk_UI_STRING_new(cmp) ((STACK_OF(UI_STRING) *)OPENSSL_sk_new(ossl_check_UI_STRING_compfunc_type(cmp)))
0300 #define sk_UI_STRING_new_null() ((STACK_OF(UI_STRING) *)OPENSSL_sk_new_null())
0301 #define sk_UI_STRING_new_reserve(cmp, n) ((STACK_OF(UI_STRING) *)OPENSSL_sk_new_reserve(ossl_check_UI_STRING_compfunc_type(cmp), (n)))
0302 #define sk_UI_STRING_reserve(sk, n) OPENSSL_sk_reserve(ossl_check_UI_STRING_sk_type(sk), (n))
0303 #define sk_UI_STRING_free(sk) OPENSSL_sk_free(ossl_check_UI_STRING_sk_type(sk))
0304 #define sk_UI_STRING_zero(sk) OPENSSL_sk_zero(ossl_check_UI_STRING_sk_type(sk))
0305 #define sk_UI_STRING_delete(sk, i) ((UI_STRING *)OPENSSL_sk_delete(ossl_check_UI_STRING_sk_type(sk), (i)))
0306 #define sk_UI_STRING_delete_ptr(sk, ptr) ((UI_STRING *)OPENSSL_sk_delete_ptr(ossl_check_UI_STRING_sk_type(sk), ossl_check_UI_STRING_type(ptr)))
0307 #define sk_UI_STRING_push(sk, ptr) OPENSSL_sk_push(ossl_check_UI_STRING_sk_type(sk), ossl_check_UI_STRING_type(ptr))
0308 #define sk_UI_STRING_unshift(sk, ptr) OPENSSL_sk_unshift(ossl_check_UI_STRING_sk_type(sk), ossl_check_UI_STRING_type(ptr))
0309 #define sk_UI_STRING_pop(sk) ((UI_STRING *)OPENSSL_sk_pop(ossl_check_UI_STRING_sk_type(sk)))
0310 #define sk_UI_STRING_shift(sk) ((UI_STRING *)OPENSSL_sk_shift(ossl_check_UI_STRING_sk_type(sk)))
0311 #define sk_UI_STRING_pop_free(sk, freefunc) OPENSSL_sk_pop_free(ossl_check_UI_STRING_sk_type(sk), ossl_check_UI_STRING_freefunc_type(freefunc))
0312 #define sk_UI_STRING_insert(sk, ptr, idx) OPENSSL_sk_insert(ossl_check_UI_STRING_sk_type(sk), ossl_check_UI_STRING_type(ptr), (idx))
0313 #define sk_UI_STRING_set(sk, idx, ptr) ((UI_STRING *)OPENSSL_sk_set(ossl_check_UI_STRING_sk_type(sk), (idx), ossl_check_UI_STRING_type(ptr)))
0314 #define sk_UI_STRING_find(sk, ptr) OPENSSL_sk_find(ossl_check_UI_STRING_sk_type(sk), ossl_check_UI_STRING_type(ptr))
0315 #define sk_UI_STRING_find_ex(sk, ptr) OPENSSL_sk_find_ex(ossl_check_UI_STRING_sk_type(sk), ossl_check_UI_STRING_type(ptr))
0316 #define sk_UI_STRING_find_all(sk, ptr, pnum) OPENSSL_sk_find_all(ossl_check_UI_STRING_sk_type(sk), ossl_check_UI_STRING_type(ptr), pnum)
0317 #define sk_UI_STRING_sort(sk) OPENSSL_sk_sort(ossl_check_UI_STRING_sk_type(sk))
0318 #define sk_UI_STRING_is_sorted(sk) OPENSSL_sk_is_sorted(ossl_check_const_UI_STRING_sk_type(sk))
0319 #define sk_UI_STRING_dup(sk) ((STACK_OF(UI_STRING) *)OPENSSL_sk_dup(ossl_check_const_UI_STRING_sk_type(sk)))
0320 #define sk_UI_STRING_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(UI_STRING) *)OPENSSL_sk_deep_copy(ossl_check_const_UI_STRING_sk_type(sk), ossl_check_UI_STRING_copyfunc_type(copyfunc), ossl_check_UI_STRING_freefunc_type(freefunc)))
0321 #define sk_UI_STRING_set_cmp_func(sk, cmp) ((sk_UI_STRING_compfunc)OPENSSL_sk_set_cmp_func(ossl_check_UI_STRING_sk_type(sk), ossl_check_UI_STRING_compfunc_type(cmp)))
0322 
0323 /* clang-format on */
0324 
0325 /*
0326  * The different types of strings that are currently supported. This is only
0327  * needed by method authors.
0328  */
0329 enum UI_string_types {
0330     UIT_NONE = 0,
0331     UIT_PROMPT, /* Prompt for a string */
0332     UIT_VERIFY, /* Prompt for a string and verify */
0333     UIT_BOOLEAN, /* Prompt for a yes/no response */
0334     UIT_INFO, /* Send info to the user */
0335     UIT_ERROR /* Send an error message to the user */
0336 };
0337 
0338 /* Create and manipulate methods */
0339 UI_METHOD *UI_create_method(const char *name);
0340 void UI_destroy_method(UI_METHOD *ui_method);
0341 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
0342 int UI_method_set_writer(UI_METHOD *method,
0343     int (*writer)(UI *ui, UI_STRING *uis));
0344 int UI_method_set_flusher(UI_METHOD *method, int (*flusher)(UI *ui));
0345 int UI_method_set_reader(UI_METHOD *method,
0346     int (*reader)(UI *ui, UI_STRING *uis));
0347 int UI_method_set_closer(UI_METHOD *method, int (*closer)(UI *ui));
0348 int UI_method_set_data_duplicator(UI_METHOD *method,
0349     void *(*duplicator)(UI *ui, void *ui_data),
0350     void (*destructor)(UI *ui, void *ui_data));
0351 int UI_method_set_prompt_constructor(UI_METHOD *method,
0352     char *(*prompt_constructor)(UI *ui,
0353         const char
0354             *phrase_desc,
0355         const char
0356             *object_name));
0357 int UI_method_set_ex_data(UI_METHOD *method, int idx, void *data);
0358 int (*UI_method_get_opener(const UI_METHOD *method))(UI *);
0359 int (*UI_method_get_writer(const UI_METHOD *method))(UI *, UI_STRING *);
0360 int (*UI_method_get_flusher(const UI_METHOD *method))(UI *);
0361 int (*UI_method_get_reader(const UI_METHOD *method))(UI *, UI_STRING *);
0362 int (*UI_method_get_closer(const UI_METHOD *method))(UI *);
0363 char *(*UI_method_get_prompt_constructor(const UI_METHOD *method))(UI *, const char *, const char *);
0364 void *(*UI_method_get_data_duplicator(const UI_METHOD *method))(UI *, void *);
0365 void (*UI_method_get_data_destructor(const UI_METHOD *method))(UI *, void *);
0366 const void *UI_method_get_ex_data(const UI_METHOD *method, int idx);
0367 
0368 /*
0369  * The following functions are helpers for method writers to access relevant
0370  * data from a UI_STRING.
0371  */
0372 
0373 /* Return type of the UI_STRING */
0374 enum UI_string_types UI_get_string_type(UI_STRING *uis);
0375 /* Return input flags of the UI_STRING */
0376 int UI_get_input_flags(UI_STRING *uis);
0377 /* Return the actual string to output (the prompt, info or error) */
0378 const char *UI_get0_output_string(UI_STRING *uis);
0379 /*
0380  * Return the optional action string to output (the boolean prompt
0381  * instruction)
0382  */
0383 const char *UI_get0_action_string(UI_STRING *uis);
0384 /* Return the result of a prompt */
0385 const char *UI_get0_result_string(UI_STRING *uis);
0386 int UI_get_result_string_length(UI_STRING *uis);
0387 /*
0388  * Return the string to test the result against.  Only useful with verifies.
0389  */
0390 const char *UI_get0_test_string(UI_STRING *uis);
0391 /* Return the required minimum size of the result */
0392 int UI_get_result_minsize(UI_STRING *uis);
0393 /* Return the required maximum size of the result */
0394 int UI_get_result_maxsize(UI_STRING *uis);
0395 /* Set the result of a UI_STRING. */
0396 int UI_set_result(UI *ui, UI_STRING *uis, const char *result);
0397 int UI_set_result_ex(UI *ui, UI_STRING *uis, const char *result, int len);
0398 
0399 /* A couple of popular utility functions */
0400 int UI_UTIL_read_pw_string(char *buf, int length, const char *prompt,
0401     int verify);
0402 int UI_UTIL_read_pw(char *buf, char *buff, int size, const char *prompt,
0403     int verify);
0404 UI_METHOD *UI_UTIL_wrap_read_pem_callback(pem_password_cb *cb, int rwflag);
0405 
0406 #ifdef __cplusplus
0407 }
0408 #endif
0409 #endif