test/uitest.c's pem_password_cb returned 1 instead of the password length
[openssl.git] / test / uitest.c
1 /*
2  * Copyright 2002-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 #include <stdio.h>
11 #include <string.h>
12 #include <openssl/opensslconf.h>
13 #include <openssl/err.h>
14 #include "apps.h"
15 #include "testutil.h"
16
17 /* apps/apps.c depend on these */
18 char *default_config_file = NULL;
19
20 #ifndef OPENSSL_NO_UI
21 # include <openssl/ui.h>
22
23 /* Old style PEM password callback */
24 static int test_pem_password_cb(char *buf, int size, int rwflag, void *userdata)
25 {
26     OPENSSL_strlcpy(buf, (char *)userdata, (size_t)size);
27     return strlen(buf);
28 }
29
30 /*
31  * Test wrapping old style PEM password callback in a UI method through the
32  * use of UI utility functions
33  */
34 static int test_old()
35 {
36     UI_METHOD *ui_method = NULL;
37     UI *ui = NULL;
38     char defpass[] = "password";
39     char pass[16];
40     int ok = 0;
41
42     if (!TEST_ptr(ui_method =
43                   UI_UTIL_wrap_read_pem_callback( test_pem_password_cb, 0))
44             || !TEST_ptr(ui = UI_new_method(ui_method)))
45         goto err;
46
47     /* The wrapper passes the UI userdata as the callback userdata param */
48     UI_add_user_data(ui, defpass);
49
50     if (!UI_add_input_string(ui, "prompt", UI_INPUT_FLAG_DEFAULT_PWD,
51                              pass, 0, sizeof(pass) - 1))
52         goto err;
53
54     switch (UI_process(ui)) {
55     case -2:
56         TEST_info("test_old: UI process interrupted or cancelled");
57         /* fall through */
58     case -1:
59         goto err;
60     default:
61         break;
62     }
63
64     if (TEST_str_eq(pass, defpass))
65         ok = 1;
66
67  err:
68     UI_free(ui);
69     UI_destroy_method(ui_method);
70
71     return ok;
72 }
73
74 /* Test of UI.  This uses the UI method defined in apps/apps.c */
75 static int test_new_ui()
76 {
77     PW_CB_DATA cb_data = {
78         "password",
79         "prompt"
80     };
81     char pass[16];
82     int ok = 0;
83
84     setup_ui_method();
85     if (TEST_int_gt(password_callback(pass, sizeof(pass), 0, &cb_data), 0)
86             && TEST_str_eq(pass, cb_data.password))
87         ok = 1;
88     destroy_ui_method();
89     return ok;
90 }
91
92 #endif
93
94 void register_tests(void)
95 {
96 #ifndef OPENSSL_NO_UI
97     ADD_TEST(test_old);
98     ADD_TEST(test_new_ui);
99 #endif
100 }