1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
/* SPDX-License-Identifier: BSD-3-Clause */
#include <stdarg.h>
#include <stdbool.h>
#include <stdlib.h>
#include <setjmp.h>
#include <cmocka.h>
#include "tpm2_options.h"
#include "tpm2_util.h"
typedef struct test_pair test_pair;
struct test_pair {
union {
const char *cn;
void *v;
} input[2];
union {
char *s;
void *v;
int i;
} output;
};
static void set_getenv(const char *name, char *ret) {
test_pair *e = calloc(1, sizeof(test_pair));
assert_non_null(e);
e->input[0].cn = name;
e->output.s = ret;
will_return(__wrap_tpm2_util_getenv, e);
}
#define HANDLE_SKIP_CHECK ((void *) -1)
char *__wrap_tpm2_util_getenv(const char *name) {
test_pair *x = mock_ptr_type(test_pair *);
const char *expected_name = x->input[0].cn;
char *ret = x->output.s;
free(x);
assert_string_equal(name, expected_name);
return ret;
}
TSS2_RC __wrap_Tss2_TctiLdr_Initialize(const char *nameConf,
TSS2_TCTI_CONTEXT **context) {
UNUSED(nameConf);
printf("fml\n");
TSS2_RC rc = mock_type(TSS2_RC);
if (rc == TSS2_RC_SUCCESS) {
*context = mock_type(TSS2_TCTI_CONTEXT*);
}
return rc;
}
static TSS2_TCTI_CONTEXT_COMMON_V2 tcti_instance;
static void common_prelude(void) {
/*
* NULL getenv for the tcti config results
* in a default TCTI based on a probe using dlopen().
*
* If we find that tcti, we return the tcti conf, which
* then results in us following the normal tcti loading logic.
*/
set_getenv(TPM2TOOLS_ENV_TCTI, NULL);
/* mock Tss2_TctiLdr_Initialize */
will_return (__wrap_Tss2_TctiLdr_Initialize, TSS2_RC_SUCCESS);
will_return (__wrap_Tss2_TctiLdr_Initialize, &tcti_instance);
}
static void test_null_tcti_getenv_no_errata(void **state) {
UNUSED(state);
char *argv[] = {
"program",
"-Z" // Disable errata getenv call
};
int argc = ARRAY_LEN(argv);
tpm2_options *tool_opts = NULL;
tpm2_option_flags flags = { .all = 0 };
TSS2_TCTI_CONTEXT *tcti = NULL;
common_prelude();
tpm2_option_code oc = tpm2_handle_options(argc, argv, tool_opts, &flags,
&tcti);
assert_non_null(tcti);
assert_int_equal(oc, tpm2_option_code_continue);
}
static void test_null_tcti_getenv_with_errata(void **state) {
UNUSED(state);
char *argv[] = {
"program",
// Enable errata getenv call via no -Z
};
int argc = ARRAY_LEN(argv);
tpm2_options *tool_opts = NULL;
tpm2_option_flags flags = { .all = 0 };
TSS2_TCTI_CONTEXT *tcti = NULL;
common_prelude();
set_getenv(TPM2TOOLS_ENV_ENABLE_ERRATA, NULL);
tpm2_option_code oc = tpm2_handle_options(argc, argv, tool_opts, &flags,
&tcti);
assert_non_null(tcti);
assert_int_equal(oc, tpm2_option_code_continue);
}
static void test_tcti_short_option_no_errata(void **state) {
UNUSED(state);
char *argv[] = {
"program",
"-T", // Set TCTI to something specific
"tctifake",
"-Z" // Disable errata getenv call
};
int argc = ARRAY_LEN(argv);
tpm2_options *tool_opts = NULL;
tpm2_option_flags flags = { .all = 0 };
TSS2_TCTI_CONTEXT *tcti = NULL;
/* we never call getenv() because we use -T */
/* we never probe for a tcti */
/* we just use what is given, in this case, return a mocked instance */
will_return(__wrap_Tss2_TctiLdr_Initialize, TSS2_RC_SUCCESS);
will_return(__wrap_Tss2_TctiLdr_Initialize, &tcti_instance);
tpm2_option_code oc = tpm2_handle_options(argc, argv, tool_opts, &flags,
&tcti);
assert_non_null(tcti);
assert_int_equal(oc, tpm2_option_code_continue);
}
static void test_tcti_long_option_with_equals_no_errata(void **state) {
UNUSED(state);
char *argv[] = {
"program",
"--tcti=tctifake", // Set TCTI to something specific
"-Z" // Disable errata getenv call
};
int argc = ARRAY_LEN(argv);
tpm2_options *tool_opts = NULL;
tpm2_option_flags flags = { .all = 0 };
TSS2_TCTI_CONTEXT *tcti = NULL;
/* we never call getenv() because we use -T */
/* we never probe for a tcti */
/* we just use what is given, in this case, return a mocked instance */
will_return(__wrap_Tss2_TctiLdr_Initialize, TSS2_RC_SUCCESS);
will_return(__wrap_Tss2_TctiLdr_Initialize, &tcti_instance);
tpm2_option_code oc = tpm2_handle_options(argc, argv, tool_opts, &flags,
&tcti);
assert_non_null(tcti);
assert_int_equal(oc, tpm2_option_code_continue);
}
static void test_tcti_long_option_no_equals_no_errata(void **state) {
UNUSED(state);
char *argv[] = {
"program",
"--tcti", // Set TCTI to something specific
"tctifake",
"-Z" // Disable errata getenv call
};
int argc = ARRAY_LEN(argv);
tpm2_options *tool_opts = NULL;
tpm2_option_flags flags = { .all = 0 };
TSS2_TCTI_CONTEXT *tcti = NULL;
/* we never call getenv() because we use -T */
/* we never probe for a tcti */
/* we just use what is given, in this case, return a mocked instance */
will_return(__wrap_Tss2_TctiLdr_Initialize, TSS2_RC_SUCCESS);
will_return(__wrap_Tss2_TctiLdr_Initialize, &tcti_instance);
tpm2_option_code oc = tpm2_handle_options(argc, argv, tool_opts, &flags,
&tcti);
assert_non_null(tcti);
assert_int_equal(oc, tpm2_option_code_continue);
}
static void test_invalid_tcti_no_errata(void **state) {
UNUSED(state);
char *argv[] = {
"program",
"-T", // Set TCTI to something specific
"tctiinvalid",
"-Z" // Disable errata getenv call
};
int argc = ARRAY_LEN(argv);
tpm2_options *tool_opts = NULL;
tpm2_option_flags flags = { .all = 0 };
TSS2_TCTI_CONTEXT *tcti = NULL;
will_return(__wrap_Tss2_TctiLdr_Initialize, TSS2_TCTI_RC_NOT_SUPPORTED);
tpm2_option_code oc = tpm2_handle_options(argc, argv, tool_opts, &flags,
&tcti);
assert_int_equal(oc, tpm2_option_code_err);
}
/*
* link required symbol, but tpm2_tool.c declares it AND main, which
* we have a main below for cmocka tests.
*/
bool output_enabled = true;
int main(int argc, char *argv[]) {
UNUSED(argc);
UNUSED(argv);
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_null_tcti_getenv_no_errata),
cmocka_unit_test(test_null_tcti_getenv_with_errata),
cmocka_unit_test(test_tcti_short_option_no_errata),
cmocka_unit_test(test_tcti_long_option_no_equals_no_errata),
cmocka_unit_test(test_tcti_long_option_with_equals_no_errata),
cmocka_unit_test(test_invalid_tcti_no_errata),
};
return cmocka_run_group_tests(tests, NULL, NULL);
}
|