Fix typo in OPENSSL_LH_new compat API
[openssl.git] / crypto / ui / ui_locl.h
1 /*
2  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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
10 #ifndef HEADER_UI_LOCL_H
11 # define HEADER_UI_LOCL_H
12
13 # include <openssl/ui.h>
14 # include <openssl/crypto.h>
15
16 # ifdef _
17 #  undef _
18 # endif
19
20 struct ui_method_st {
21     char *name;
22     /*
23      * All the functions return 1 or non-NULL for success and 0 or NULL for
24      * failure
25      */
26     /*
27      * Open whatever channel for this, be it the console, an X window or
28      * whatever. This function should use the ex_data structure to save
29      * intermediate data.
30      */
31     int (*ui_open_session) (UI *ui);
32     int (*ui_write_string) (UI *ui, UI_STRING *uis);
33     /*
34      * Flush the output.  If a GUI dialog box is used, this function can be
35      * used to actually display it.
36      */
37     int (*ui_flush) (UI *ui);
38     int (*ui_read_string) (UI *ui, UI_STRING *uis);
39     int (*ui_close_session) (UI *ui);
40     /*
41      * Construct a prompt in a user-defined manner.  object_desc is a textual
42      * short description of the object, for example "pass phrase", and
43      * object_name is the name of the object (might be a card name or a file
44      * name. The returned string shall always be allocated on the heap with
45      * OPENSSL_malloc(), and need to be free'd with OPENSSL_free().
46      */
47     char *(*ui_construct_prompt) (UI *ui, const char *object_desc,
48                                   const char *object_name);
49     /*
50      * UI_METHOD specific application data.
51      */
52     CRYPTO_EX_DATA ex_data;
53 };
54
55 struct ui_string_st {
56     enum UI_string_types type;  /* Input */
57     const char *out_string;     /* Input */
58     int input_flags;            /* Flags from the user */
59     /*
60      * The following parameters are completely irrelevant for UIT_INFO, and
61      * can therefore be set to 0 or NULL
62      */
63     char *result_buf;           /* Input and Output: If not NULL,
64                                  * user-defined with size in result_maxsize.
65                                  * Otherwise, it may be allocated by the UI
66                                  * routine, meaning result_minsize is going
67                                  * to be overwritten. */
68     union {
69         struct {
70             int result_minsize; /* Input: minimum required size of the
71                                  * result. */
72             int result_maxsize; /* Input: maximum permitted size of the
73                                  * result */
74             const char *test_buf; /* Input: test string to verify against */
75         } string_data;
76         struct {
77             const char *action_desc; /* Input */
78             const char *ok_chars; /* Input */
79             const char *cancel_chars; /* Input */
80         } boolean_data;
81     } _;
82
83 # define OUT_STRING_FREEABLE 0x01
84     int flags;                  /* flags for internal use */
85 };
86
87 struct ui_st {
88     const UI_METHOD *meth;
89     STACK_OF(UI_STRING) *strings; /* We might want to prompt for more than
90                                    * one thing at a time, and with different
91                                    * echoing status.  */
92     void *user_data;
93     CRYPTO_EX_DATA ex_data;
94 # define UI_FLAG_REDOABLE        0x0001
95 # define UI_FLAG_PRINT_ERRORS    0x0100
96     int flags;
97
98     CRYPTO_RWLOCK *lock;
99 };
100
101 #endif