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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
|
/* SPDX-License-Identifier: BSD-3-Clause */
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>
#include "files.h"
#include "log.h"
#include "pcr.h"
#include "tpm2.h"
#include "tpm2_auth_util.h"
#include "tpm2_policy.h"
#define HEX_PREFIX "hex:"
#define HEX_PREFIX_LEN sizeof(HEX_PREFIX) - 1
#define STR_PREFIX "str:"
#define STR_PREFIX_LEN sizeof(STR_PREFIX) - 1
#define SESSION_PREFIX "session:"
#define SESSION_PREFIX_LEN sizeof(SESSION_PREFIX) - 1
#define FILE_PREFIX "file:"
#define FILE_PREFIX_LEN sizeof(FILE_PREFIX) - 1
#define PCR_PREFIX "pcr:"
#define PCR_PREFIX_LEN sizeof(PCR_PREFIX) - 1
static bool handle_hex_password(const char *password, TPM2B_AUTH *auth) {
/* if it is hex, then skip the prefix */
password += HEX_PREFIX_LEN;
auth->size = BUFFER_SIZE(typeof(*auth), buffer);
int rc = tpm2_util_hex_to_byte_structure(password, &auth->size,
auth->buffer);
if (rc) {
auth->size = 0;
return false;
}
return true;
}
static bool handle_str_password(const char *password, TPM2B_AUTH *auth) {
/* str may or may not have the str: prefix */
bool is_str_prefix = !strncmp(password, STR_PREFIX, STR_PREFIX_LEN);
if (is_str_prefix) {
password += STR_PREFIX_LEN;
}
/*
* Per the man page:
* "a return value of size or more means that the output was truncated."
*/
size_t wrote = snprintf((char * )&auth->buffer,
BUFFER_SIZE(typeof(*auth), buffer), "%s", password);
if (wrote >= BUFFER_SIZE(typeof(*auth), buffer)) {
auth->size = 0;
return false;
}
auth->size = wrote;
return true;
}
static bool handle_password(const char *password, TPM2B_AUTH *auth) {
bool is_hex = !strncmp(password, HEX_PREFIX, HEX_PREFIX_LEN);
if (is_hex) {
return handle_hex_password(password, auth);
}
/* must be string, handle it */
return handle_str_password(password, auth);
}
static tool_rc start_hmac_session(ESYS_CONTEXT *ectx, TPM2B_AUTH *auth,
tpm2_session **session) {
tpm2_session_data *d = tpm2_session_data_new(TPM2_SE_HMAC);
if (!d) {
LOG_ERR("oom");
return tool_rc_general_error;
}
tool_rc rc = tpm2_session_open(ectx, d, session);
if (rc != tool_rc_success) {
return rc;
}
tpm2_session_set_auth_value(*session, auth);
return tool_rc_success;
}
static tool_rc handle_password_session(ESYS_CONTEXT *ectx, const char *password,
tpm2_session **session) {
TPM2B_AUTH auth = { 0 };
bool result = handle_password(password, &auth);
if (!result) {
return tool_rc_general_error;
}
return start_hmac_session(ectx, &auth, session);
}
static tool_rc handle_session(ESYS_CONTEXT *ectx, const char *path,
tpm2_session **session) {
TPM2B_AUTH auth = { 0 };
/* if it is session, then skip the prefix */
path += SESSION_PREFIX_LEN;
/* Make a local copy for manipulation */
char tmp[PATH_MAX];
size_t len = snprintf(tmp, sizeof(tmp), "%s", path);
if (len >= sizeof(tmp)) {
LOG_ERR("Path truncated");
return tool_rc_general_error;
}
/*
* Sessions can have an associated password/auth value denoted after
* a + sign, ie session.ctx+foo, deal with it by
* finding a +, splitting the string on it, and if
* not a NULL byte after the +, use that as a password.
*/
char *password = strchr(tmp, '+');
if (password) {
*password = '\0';
password++;
if (*password) {
bool result = handle_password(password, &auth);
if (!result) {
return tool_rc_general_error;
}
}
}
tool_rc rc = tpm2_session_restore(ectx, tmp, false, session);
if (rc != tool_rc_success) {
return rc;
}
tpm2_session_set_auth_value(*session, &auth);
bool is_trial = tpm2_session_is_trial(*session);
if (is_trial) {
LOG_ERR("A trial session cannot be used to authenticate, "
"Please use an hmac or policy session");
tpm2_session_close(session);
return tool_rc_general_error;
}
return tool_rc_success;
}
static bool parse_pcr(const char *policy, char **pcr_str, char **raw_path) {
char *split;
policy += PCR_PREFIX_LEN;
*pcr_str = NULL;
*raw_path = NULL;
/* completely empty PCR specification or just raw-pcr-file given */
if ((policy[0] == '\0') || (policy[0] == '=')) {
return false;
}
*pcr_str = strdup(policy);
if (!*pcr_str) {
LOG_ERR("oom");
return false;
}
split = strchr(*pcr_str, '=');
if (split) {
split[0] = '\0';
*raw_path = split + 1;
/* empty raw-pcr-file */
if (*raw_path[0] == '\0') {
return false;
}
}
return true;
}
static tool_rc handle_pcr(ESYS_CONTEXT *ectx, const char *policy,
tpm2_session **session) {
tool_rc rc = tool_rc_general_error;
char *pcr_str, *raw_path;
TPML_PCR_SELECTION pcrs;
bool ret;
ret = parse_pcr(policy, &pcr_str, &raw_path);
if (!ret) {
goto out;
}
ret = pcr_parse_selections(pcr_str, &pcrs);
if (!ret) {
goto out;
}
tpm2_session_data *d = tpm2_session_data_new(TPM2_SE_POLICY);
if (!d) {
LOG_ERR("oom");
goto out;
}
tpm2_session *s = NULL;
tool_rc tmp_rc = tpm2_session_open(ectx, d, &s);
if (tmp_rc != tool_rc_success) {
LOG_ERR("Could not start tpm session");
rc = tmp_rc;
goto out;
}
tmp_rc = tpm2_policy_build_pcr(ectx, s, raw_path, &pcrs, NULL);
if (tmp_rc != tool_rc_success) {
tpm2_session_close(&s);
rc = tmp_rc;
goto out;
}
*session = s;
rc = tool_rc_success;
out:
free(pcr_str);
return rc;
}
static tool_rc console_display_echo_control(bool echo) {
struct termios console;
int rc = tcgetattr(STDIN_FILENO, &console);
if (rc) {
return tool_rc_general_error;
}
if (echo) {
console.c_lflag |= ECHO;
} else {
console.c_lflag &= ~((tcflag_t) ECHO);
}
rc = tcsetattr(STDIN_FILENO, TCSANOW, &console);
if (rc) {
return tool_rc_general_error;
}
return tool_rc_success;
}
static tool_rc handle_file(ESYS_CONTEXT *ectx, const char *path,
tpm2_session **session) {
path += FILE_PREFIX_LEN;
path = strcmp("-", path) ? path : NULL;
TPM2B_AUTH auth = { 0 };
UINT8 buffer[(sizeof(auth.buffer) * 2) + HEX_PREFIX_LEN + 1] = { 0 };
/*
* If path is set or stdin is not a TTY, then read
* from a path. Note: that "file:" will still go this
* path and fail as path "" is not valid.
*/
bool is_a_tty = isatty(STDIN_FILENO);
if (!is_a_tty || path) {
UINT16 size = sizeof(buffer) - 1;
bool ret = files_load_bytes_from_buffer_or_file_or_stdin(NULL, path,
&size, buffer);
if (!ret) {
return tool_rc_general_error;
}
/* bash here strings and many commands add a trailing newline, if its stdin, kill the newline */
if (!path && buffer[size - 1] == '\n') {
buffer[size - 1] = '\0';
}
/*
* It is a TTY and we're reading from stdin.
* Prompt the user for the password with echoing
* disabled.
*/
} else {
tool_rc rc = console_display_echo_control(false);
if (rc != tool_rc_success) {
return rc;
}
printf("Enter Password: ");
fflush(stdout);
char *b = (char *) buffer;
size_t size = sizeof(buffer) - 1;
ssize_t read = getline(&b, &size, stdin);
if (read < 0) {
LOG_ERR("Could not get stdin, error: \"%s\"", strerror(errno));
}
b[read - 1] = '\0';
rc = console_display_echo_control(true);
if (rc != tool_rc_success || read < 0) {
return tool_rc_general_error;
}
}
/* from here the buffer has been populated with the password */
bool ret = handle_password((char *) buffer, &auth);
if (!ret) {
return tool_rc_general_error;
}
return start_hmac_session(ectx, &auth, session);
}
tool_rc tpm2_auth_util_from_optarg(ESYS_CONTEXT *ectx, const char *password,
tpm2_session **session, bool is_restricted) {
password = password ? password : "";
/* starts with session: */
bool is_session = !strncmp(password, SESSION_PREFIX, SESSION_PREFIX_LEN);
if (is_session) {
if (is_restricted) {
LOG_ERR("cannot specify password");
return tool_rc_general_error;
}
return handle_session(ectx, password, session);
}
/* starts with "file:" */
bool is_file = !strncmp(password, FILE_PREFIX, FILE_PREFIX_LEN);
if (is_file) {
return handle_file(ectx, password, session);
}
/* starts with pcr: */
bool is_pcr = !strncmp(password, PCR_PREFIX, PCR_PREFIX_LEN);
if (is_pcr) {
return handle_pcr(ectx, password, session);
}
/* must be a password */
return handle_password_session(ectx, password, session);
}
tool_rc tpm2_auth_util_get_shandle(ESYS_CONTEXT *ectx, ESYS_TR object,
tpm2_session *session, ESYS_TR *out) {
*out = tpm2_session_get_handle(session);
const TPM2B_AUTH *auth = tpm2_session_get_auth_value(session);
return tpm2_tr_set_auth(ectx, object, auth);
}
|