Coverage Report

Created: 2025-10-13 06:07

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