Enforce HSM object policy when opening v1 private key material

Require verified PIN, SO/admin, or isolated firmware authorization without migrating legacy keys

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2026-07-17 23:16:18 +02:00
parent 5f4032fdfa
commit b68cc7cfb6
4 changed files with 1412 additions and 0 deletions
+95
View File
@@ -0,0 +1,95 @@
#
# This file is part of the Pico Keys SDK distribution (https://github.com/polhenarejos/pico-keys-sdk).
# Copyright (c) 2022 Pol Henarejos.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
cmake_minimum_required(VERSION 3.13)
project(picokeys_sdk_tests C)
set(CMAKE_C_STANDARD 11)
enable_testing()
set(OBJECT_CRYPTO_MBEDTLS_SOURCES
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/aes.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/ccm.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/chacha20.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/chachapoly.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/cipher.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/cipher_wrap.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/constant_time.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/des.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/gcm.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/hkdf.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/md.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/md5.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/platform_util.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/poly1305.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/ripemd160.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/sha1.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/sha256.c
${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/library/sha512.c
)
add_library(object_crypto_mbedtls STATIC ${OBJECT_CRYPTO_MBEDTLS_SOURCES})
target_compile_definitions(object_crypto_mbedtls PUBLIC MBEDTLS_CONFIG_FILE="${CMAKE_CURRENT_LIST_DIR}/../config/mbedtls_config.h")
target_include_directories(object_crypto_mbedtls SYSTEM PUBLIC ${CMAKE_CURRENT_LIST_DIR}/../third-party/mbedtls/include)
add_executable(object_store_test
${CMAKE_CURRENT_LIST_DIR}/../src/fs/object_store.c
${CMAKE_CURRENT_LIST_DIR}/../src/fs/object_store_txn.c
${CMAKE_CURRENT_LIST_DIR}/../src/fs/object_container.c
${CMAKE_CURRENT_LIST_DIR}/object_store_test.c
)
target_compile_definitions(object_store_test PRIVATE ENABLE_EMULATION)
target_include_directories(object_store_test PRIVATE ${CMAKE_CURRENT_LIST_DIR}/../src ${CMAKE_CURRENT_LIST_DIR}/../src/fs)
if(MSVC)
target_compile_options(object_store_test PRIVATE /W4 /WX)
else()
target_compile_options(object_store_test PRIVATE -Wall -Wextra -Werror)
endif()
add_test(NAME object_store_test COMMAND object_store_test)
add_executable(object_crypto_provider_test
${CMAKE_CURRENT_LIST_DIR}/../src/fs/object_crypto_provider.c
${CMAKE_CURRENT_LIST_DIR}/object_crypto_provider_test.c
)
target_include_directories(object_crypto_provider_test PRIVATE ${CMAKE_CURRENT_LIST_DIR}/../src ${CMAKE_CURRENT_LIST_DIR}/../src/fs)
target_link_libraries(object_crypto_provider_test PRIVATE object_crypto_mbedtls)
if(MSVC)
target_compile_options(object_crypto_provider_test PRIVATE /W4 /WX)
else()
target_compile_options(object_crypto_provider_test PRIVATE -Wall -Wextra -Werror)
endif()
add_test(NAME object_crypto_provider_test COMMAND object_crypto_provider_test)
add_executable(object_policy_test
${CMAKE_CURRENT_LIST_DIR}/../src/fs/object_policy.c
${CMAKE_CURRENT_LIST_DIR}/object_policy_test.c
)
target_include_directories(object_policy_test PRIVATE ${CMAKE_CURRENT_LIST_DIR}/../src ${CMAKE_CURRENT_LIST_DIR}/../src/fs)
target_link_libraries(object_policy_test PRIVATE object_crypto_mbedtls)
if(MSVC)
target_compile_options(object_policy_test PRIVATE /W4 /WX)
else()
target_compile_options(object_policy_test PRIVATE -Wall -Wextra -Werror)
endif()
add_test(NAME object_policy_test COMMAND object_policy_test)
+300
View File
@@ -0,0 +1,300 @@
/*
* This file is part of the Pico Keys SDK distribution (https://github.com/polhenarejos/pico-keys-sdk).
* Copyright (c) 2022 Pol Henarejos.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "picokeys.h"
#include "object_crypto_provider.h"
#include <assert.h>
#include <stdio.h>
#define TEST_NAMESPACE_A 0x1234u
#define TEST_NAMESPACE_B 0x5678u
#define TEST_MAX_KEY_DOMAINS 16u
#define TEST_AAD_NAMESPACE_OFFSET 5u
#define TEST_AAD_KIND_OFFSET 7u
#define TEST_AAD_CONTAINER_ID_OFFSET 9u
#define TEST_AAD_TYPE_OFFSET 13u
#define TEST_AAD_TAG_OFFSET 15u
#define TEST_AAD_GENERATION_OFFSET 17u
#define TEST_AAD_LOGICAL_SIZE_OFFSET 21u
#define TEST_AAD_POLICY_ID_OFFSET 25u
#define TEST_AAD_POLICY_HASH_OFFSET 27u
#define TEST_AAD_KEY_DOMAIN_OFFSET 43u
#define TEST_AAD_PROTECTION_OFFSET 44u
#define TEST_AAD_FLAGS_OFFSET 45u
#define TEST_AAD_RECORD_ID_OFFSET 47u
typedef struct test_root_context {
uint8_t root[FILE_OBJECT_CRYPTO_ROOT_KEY_SIZE];
bool available;
} test_root_context_t;
static void test_root_reset(test_root_context_t *ctx, uint8_t offset) {
memset(ctx, 0, sizeof(*ctx));
for (size_t i = 0; i < sizeof(ctx->root); i++) {
ctx->root[i] = (uint8_t)(offset + i);
}
ctx->available = true;
}
static int test_root_load(void *ctx, uint8_t root[FILE_OBJECT_CRYPTO_ROOT_KEY_SIZE]) {
test_root_context_t *root_ctx = (test_root_context_t *)ctx;
if (!root_ctx->available) {
return PICOKEYS_NO_LOGIN;
}
memcpy(root, root_ctx->root, FILE_OBJECT_CRYPTO_ROOT_KEY_SIZE);
return PICOKEYS_OK;
}
static bool test_identity_valid(void *ctx, const file_object_record_identity_t *identity) {
(void)ctx;
return identity->key_domain < TEST_MAX_KEY_DOMAINS;
}
static void test_provider_init(file_object_crypto_provider_t *provider, test_root_context_t *root, uint16_t namespace_id) {
const file_object_crypto_provider_config_t config = {
.ctx = root,
.namespace_id = namespace_id,
.load_root = test_root_load,
.identity_valid = test_identity_valid
};
assert(file_object_crypto_provider_init(provider, &config) == PICOKEYS_OK);
}
static file_object_record_identity_t test_identity(uint16_t namespace_id, uint8_t protection) {
file_object_record_identity_t identity = {
.namespace_id = namespace_id,
.container_kind = 1,
.container_id = 0x01020304,
.object_type = 1,
.object_tag = 2,
.generation = 3,
.logical_size = 5,
.policy_id = 0x0101,
.key_domain = 1,
.protection = protection,
.flags = FILE_OBJECT_FLAG_NON_EXPORTABLE,
.record_id = UINT64_C(0x0102030405060708)
};
for (size_t i = 0; i < sizeof(identity.policy_hash); i++) {
identity.policy_hash[i] = (uint8_t)(0xa0 + i);
}
return identity;
}
static void test_aad_build(const file_object_record_identity_t *identity, uint8_t aad[FILE_OBJECT_RECORD_AAD_SIZE], uint8_t nonce[FILE_OBJECT_RECORD_NONCE_SIZE]) {
memset(aad, 0, FILE_OBJECT_RECORD_AAD_SIZE);
memcpy(aad, "PKOR", 4);
aad[4] = FILE_OBJECT_RECORD_FORMAT_VERSION;
put_uint16_be(identity->namespace_id, aad + TEST_AAD_NAMESPACE_OFFSET);
put_uint16_be(identity->container_kind, aad + TEST_AAD_KIND_OFFSET);
put_uint32_be(identity->container_id, aad + TEST_AAD_CONTAINER_ID_OFFSET);
put_uint16_be(identity->object_type, aad + TEST_AAD_TYPE_OFFSET);
put_uint16_be(identity->object_tag, aad + TEST_AAD_TAG_OFFSET);
put_uint32_be(identity->generation, aad + TEST_AAD_GENERATION_OFFSET);
put_uint32_be(identity->logical_size, aad + TEST_AAD_LOGICAL_SIZE_OFFSET);
put_uint16_be(identity->policy_id, aad + TEST_AAD_POLICY_ID_OFFSET);
memcpy(aad + TEST_AAD_POLICY_HASH_OFFSET, identity->policy_hash, FILE_OBJECT_POLICY_HASH_SIZE);
aad[TEST_AAD_KEY_DOMAIN_OFFSET] = identity->key_domain;
aad[TEST_AAD_PROTECTION_OFFSET] = identity->protection;
put_uint16_be(identity->flags, aad + TEST_AAD_FLAGS_OFFSET);
put_uint64_be(identity->record_id, aad + TEST_AAD_RECORD_ID_OFFSET);
put_uint64_be(identity->record_id, nonce);
put_uint32_be(identity->generation, nonce + sizeof(uint64_t));
}
static void test_manifest_tag(file_object_crypto_provider_t *provider, const uint8_t *data, size_t len, uint8_t tag[FILE_OBJECT_AUTH_TAG_SIZE]) {
const file_object_authenticator_t *auth = file_object_crypto_manifest_authenticator(provider);
assert(auth != NULL);
assert(auth->start(auth->ctx) == PICOKEYS_OK);
assert(auth->update(auth->ctx, data, len / 2) == PICOKEYS_OK);
assert(auth->update(auth->ctx, data + len / 2, len - len / 2) == PICOKEYS_OK);
assert(auth->finish(auth->ctx, tag) == PICOKEYS_OK);
}
static void test_initialization(void) {
file_object_crypto_provider_t provider;
test_root_context_t root;
test_root_reset(&root, 1);
file_object_crypto_provider_config_t config = {
.ctx = &root,
.namespace_id = 0,
.load_root = test_root_load
};
assert(file_object_crypto_provider_init(NULL, &config) == PICOKEYS_ERR_NULL_PARAM);
assert(file_object_crypto_provider_init(&provider, &config) == PICOKEYS_ERR_NULL_PARAM);
config.namespace_id = TEST_NAMESPACE_A;
config.load_root = NULL;
assert(file_object_crypto_provider_init(&provider, &config) == PICOKEYS_ERR_NULL_PARAM);
}
static void test_manifest_authentication(void) {
static const uint8_t data[] = { 1, 2, 3, 4, 5 };
file_object_crypto_provider_t provider_a;
file_object_crypto_provider_t provider_b;
test_root_context_t root;
test_root_reset(&root, 1);
test_provider_init(&provider_a, &root, TEST_NAMESPACE_A);
test_provider_init(&provider_b, &root, TEST_NAMESPACE_B);
uint8_t first[FILE_OBJECT_AUTH_TAG_SIZE];
uint8_t second[FILE_OBJECT_AUTH_TAG_SIZE];
uint8_t other_namespace[FILE_OBJECT_AUTH_TAG_SIZE];
test_manifest_tag(&provider_a, data, sizeof(data), first);
test_manifest_tag(&provider_a, data, sizeof(data), second);
test_manifest_tag(&provider_b, data, sizeof(data), other_namespace);
assert(memcmp(first, second, sizeof(first)) == 0);
assert(memcmp(first, other_namespace, sizeof(first)) != 0);
root.available = false;
const file_object_authenticator_t *auth = file_object_crypto_manifest_authenticator(&provider_a);
assert(auth->start(auth->ctx) == PICOKEYS_NO_LOGIN);
file_object_crypto_provider_deinit(&provider_a);
file_object_crypto_provider_deinit(&provider_b);
assert(file_object_crypto_manifest_authenticator(&provider_a) == NULL);
}
static void test_authenticated_public_record(void) {
static const uint8_t plaintext[] = { 0x10, 0x20, 0x30, 0x40, 0x50 };
file_object_crypto_provider_t provider;
test_root_context_t root;
test_root_reset(&root, 1);
test_provider_init(&provider, &root, TEST_NAMESPACE_A);
const file_object_record_protector_t *protector = file_object_crypto_record_protector(&provider);
file_object_record_identity_t identity = test_identity(TEST_NAMESPACE_A, FILE_OBJECT_PROTECTION_AUTHENTICATED_PUBLIC);
uint8_t aad[FILE_OBJECT_RECORD_AAD_SIZE];
uint8_t nonce[FILE_OBJECT_RECORD_NONCE_SIZE];
uint8_t stored[sizeof(plaintext)];
uint8_t output[sizeof(plaintext)];
uint8_t tag[FILE_OBJECT_AUTH_TAG_SIZE];
test_aad_build(&identity, aad, nonce);
assert(protector->seal(protector->ctx, &identity, nonce, aad, plaintext, sizeof(plaintext), stored, tag) == PICOKEYS_OK);
assert(memcmp(stored, plaintext, sizeof(plaintext)) == 0);
assert(protector->unseal(protector->ctx, &identity, nonce, aad, stored, sizeof(stored), tag, output) == PICOKEYS_OK);
assert(memcmp(output, plaintext, sizeof(plaintext)) == 0);
stored[0] ^= 0x01;
assert(protector->unseal(protector->ctx, &identity, nonce, aad, stored, sizeof(stored), tag, output) == PICOKEYS_WRONG_SIGNATURE);
file_object_crypto_provider_deinit(&provider);
}
static void test_aead_secret_record(void) {
static const uint8_t plaintext[] = { 0x60, 0x70, 0x80, 0x90, 0xa0 };
file_object_crypto_provider_t provider;
file_object_crypto_provider_t wrong_provider;
test_root_context_t root;
test_root_context_t wrong_root;
test_root_reset(&root, 1);
test_root_reset(&wrong_root, 0x80);
test_provider_init(&provider, &root, TEST_NAMESPACE_A);
test_provider_init(&wrong_provider, &wrong_root, TEST_NAMESPACE_A);
const file_object_record_protector_t *protector = file_object_crypto_record_protector(&provider);
const file_object_record_protector_t *wrong_protector = file_object_crypto_record_protector(&wrong_provider);
file_object_record_identity_t identity = test_identity(TEST_NAMESPACE_A, FILE_OBJECT_PROTECTION_AEAD_SECRET);
uint8_t aad[FILE_OBJECT_RECORD_AAD_SIZE];
uint8_t nonce[FILE_OBJECT_RECORD_NONCE_SIZE];
uint8_t stored[sizeof(plaintext)];
uint8_t output[sizeof(plaintext)];
uint8_t tag[FILE_OBJECT_AUTH_TAG_SIZE];
test_aad_build(&identity, aad, nonce);
assert(protector->seal(protector->ctx, &identity, nonce, aad, plaintext, sizeof(plaintext), stored, tag) == PICOKEYS_OK);
assert(memcmp(stored, plaintext, sizeof(plaintext)) != 0);
assert(protector->unseal(protector->ctx, &identity, nonce, aad, stored, sizeof(stored), tag, output) == PICOKEYS_OK);
assert(memcmp(output, plaintext, sizeof(plaintext)) == 0);
assert(wrong_protector->unseal(wrong_protector->ctx, &identity, nonce, aad, stored, sizeof(stored), tag, output) == PICOKEYS_WRONG_SIGNATURE);
for (size_t i = 0; i < sizeof(output); i++) {
assert(output[i] == 0);
}
stored[0] ^= 0x01;
memset(output, 0xa5, sizeof(output));
assert(protector->unseal(protector->ctx, &identity, nonce, aad, stored, sizeof(stored), tag, output) == PICOKEYS_WRONG_SIGNATURE);
for (size_t i = 0; i < sizeof(output); i++) {
assert(output[i] == 0);
}
stored[0] ^= 0x01;
aad[TEST_AAD_CONTAINER_ID_OFFSET] ^= 0x01;
assert(protector->unseal(protector->ctx, &identity, nonce, aad, stored, sizeof(stored), tag, output) == PICOKEYS_WRONG_DATA);
aad[TEST_AAD_CONTAINER_ID_OFFSET] ^= 0x01;
tag[0] ^= 0x01;
memset(output, 0xa5, sizeof(output));
assert(protector->unseal(protector->ctx, &identity, nonce, aad, stored, sizeof(stored), tag, output) == PICOKEYS_WRONG_SIGNATURE);
for (size_t i = 0; i < sizeof(output); i++) {
assert(output[i] == 0);
}
tag[0] ^= 0x01;
identity.container_id++;
test_aad_build(&identity, aad, nonce);
assert(protector->unseal(protector->ctx, &identity, nonce, aad, stored, sizeof(stored), tag, output) == PICOKEYS_WRONG_SIGNATURE);
identity = test_identity(TEST_NAMESPACE_A, FILE_OBJECT_PROTECTION_AEAD_SECRET);
identity.policy_hash[0] ^= 0x01;
test_aad_build(&identity, aad, nonce);
assert(protector->unseal(protector->ctx, &identity, nonce, aad, stored, sizeof(stored), tag, output) == PICOKEYS_WRONG_SIGNATURE);
identity = test_identity(TEST_NAMESPACE_A, FILE_OBJECT_PROTECTION_AEAD_SECRET);
identity.key_domain = TEST_MAX_KEY_DOMAINS;
test_aad_build(&identity, aad, nonce);
assert(protector->seal(protector->ctx, &identity, nonce, aad, plaintext, sizeof(plaintext), stored, tag) == PICOKEYS_WRONG_DATA);
identity = test_identity(TEST_NAMESPACE_A, FILE_OBJECT_PROTECTION_AEAD_SECRET);
test_aad_build(&identity, aad, nonce);
root.available = false;
assert(protector->seal(protector->ctx, &identity, nonce, aad, plaintext, sizeof(plaintext), stored, tag) == PICOKEYS_NO_LOGIN);
file_object_crypto_provider_deinit(&provider);
file_object_crypto_provider_deinit(&wrong_provider);
}
static void test_empty_internal_record(void) {
file_object_crypto_provider_t provider;
test_root_context_t root;
test_root_reset(&root, 1);
test_provider_init(&provider, &root, TEST_NAMESPACE_A);
const file_object_record_protector_t *protector = file_object_crypto_record_protector(&provider);
file_object_record_identity_t identity = test_identity(TEST_NAMESPACE_A, FILE_OBJECT_PROTECTION_FIRMWARE_INTERNAL);
uint8_t aad[FILE_OBJECT_RECORD_AAD_SIZE];
uint8_t nonce[FILE_OBJECT_RECORD_NONCE_SIZE];
uint8_t stored = 0;
uint8_t tag[FILE_OBJECT_AUTH_TAG_SIZE];
identity.logical_size = 0;
test_aad_build(&identity, aad, nonce);
assert(protector->seal(protector->ctx, &identity, nonce, aad, NULL, 0, &stored, tag) == PICOKEYS_OK);
assert(protector->unseal(protector->ctx, &identity, nonce, aad, &stored, 0, tag, NULL) == PICOKEYS_OK);
file_object_crypto_provider_deinit(&provider);
}
int main(void) {
test_initialization();
test_manifest_authentication();
test_authenticated_public_record();
test_aead_secret_record();
test_empty_internal_record();
puts("object_crypto_provider_test: OK");
return 0;
}
+203
View File
@@ -0,0 +1,203 @@
/*
* This file is part of the Pico Keys SDK distribution (https://github.com/polhenarejos/pico-keys-sdk).
* Copyright (c) 2022 Pol Henarejos.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "picokeys.h"
#include "object_policy.h"
#include <assert.h>
#include <stdio.h>
#define TEST_NAMESPACE 0x0001u
#define TEST_OTHER_NAMESPACE 0x0002u
static void test_rule_build(uint8_t *rule, uint16_t operations, uint32_t required_facts, uint32_t forbidden_facts, uint16_t caller_namespace, uint16_t flags) {
put_uint16_be(operations, rule);
put_uint32_be(required_facts, rule + 2);
put_uint32_be(forbidden_facts, rule + 6);
put_uint16_be(caller_namespace, rule + 10);
put_uint16_be(flags, rule + 12);
}
static size_t test_policy_build(uint8_t *policy, uint8_t rule_count) {
policy[0] = FILE_OBJECT_POLICY_FORMAT_VERSION;
policy[1] = rule_count;
return FILE_OBJECT_POLICY_HEADER_SIZE + (size_t)rule_count * FILE_OBJECT_POLICY_RULE_SIZE;
}
static file_object_authorization_context_t test_context(uint16_t caller_namespace, uint32_t facts) {
file_object_authorization_context_t context = {
.facts = facts,
.session_epoch = 7,
.facts_epoch = 7,
.caller_namespace = caller_namespace
};
return context;
}
static void test_default_deny(void) {
uint8_t policy[FILE_OBJECT_POLICY_HEADER_SIZE];
size_t policy_size = test_policy_build(policy, 0);
file_object_authorization_context_t context = test_context(TEST_NAMESPACE, 0);
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_OK);
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, &context));
}
static void test_rules(void) {
uint8_t policy[FILE_OBJECT_POLICY_HEADER_SIZE + 2 * FILE_OBJECT_POLICY_RULE_SIZE];
size_t policy_size = test_policy_build(policy, 2);
test_rule_build(policy + FILE_OBJECT_POLICY_HEADER_SIZE, FILE_OBJECT_OPERATION_READ | FILE_OBJECT_OPERATION_ENUMERATE, 0, FILE_OBJECT_FACT_ADMIN, FILE_OBJECT_POLICY_NAMESPACE_ANY, 0);
test_rule_build(policy + FILE_OBJECT_POLICY_HEADER_SIZE + FILE_OBJECT_POLICY_RULE_SIZE, FILE_OBJECT_OPERATION_SIGN, FILE_OBJECT_FACT_USER_VERIFICATION | FILE_OBJECT_FACT_SESSION_BOUND, FILE_OBJECT_FACT_ADMIN, TEST_NAMESPACE, 0);
file_object_authorization_context_t context = test_context(TEST_OTHER_NAMESPACE, 0);
assert(file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, &context));
assert(file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_ENUMERATE, &context));
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_SIGN, &context));
context = test_context(TEST_NAMESPACE, FILE_OBJECT_FACT_USER_VERIFICATION | FILE_OBJECT_FACT_SESSION_BOUND);
assert(file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_SIGN, &context));
context.facts |= FILE_OBJECT_FACT_ADMIN;
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_SIGN, &context));
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, &context));
context = test_context(TEST_OTHER_NAMESPACE, FILE_OBJECT_FACT_USER_VERIFICATION | FILE_OBJECT_FACT_SESSION_BOUND);
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_SIGN, &context));
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ | FILE_OBJECT_OPERATION_ENUMERATE, &context));
}
static void test_session_epoch(void) {
uint8_t policy[FILE_OBJECT_POLICY_HEADER_SIZE + FILE_OBJECT_POLICY_RULE_SIZE];
size_t policy_size = test_policy_build(policy, 1);
test_rule_build(policy + FILE_OBJECT_POLICY_HEADER_SIZE, FILE_OBJECT_OPERATION_READ, 0, 0, TEST_NAMESPACE, 0);
file_object_authorization_context_t context = test_context(TEST_NAMESPACE, 0);
assert(file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, &context));
context.facts_epoch--;
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, &context));
context.facts_epoch = context.session_epoch;
context.session_epoch = 0;
context.facts_epoch = 0;
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, &context));
}
static void test_malformed(void) {
uint8_t policy[FILE_OBJECT_POLICY_MAX_SIZE + 1];
size_t policy_size = test_policy_build(policy, 1);
test_rule_build(policy + FILE_OBJECT_POLICY_HEADER_SIZE, FILE_OBJECT_OPERATION_READ, FILE_OBJECT_FACT_USER_VERIFICATION, FILE_OBJECT_FACT_ADMIN, TEST_NAMESPACE, 0);
assert(file_object_policy_validate(NULL, policy_size) == PICOKEYS_ERR_NULL_PARAM);
for (size_t len = 0; len < policy_size; len++) {
assert(file_object_policy_validate(policy, len) != PICOKEYS_OK);
}
assert(file_object_policy_validate(policy, policy_size + 1) == PICOKEYS_WRONG_LENGTH);
uint8_t saved = policy[0];
policy[0] = FILE_OBJECT_POLICY_FORMAT_VERSION + 1;
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_WRONG_DATA);
policy[0] = saved;
saved = policy[1];
policy[1] = FILE_OBJECT_POLICY_MAX_RULES + 1;
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_WRONG_DATA);
policy[1] = saved;
uint8_t *rule = policy + FILE_OBJECT_POLICY_HEADER_SIZE;
put_uint16_be(0, rule);
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_WRONG_DATA);
put_uint16_be(FILE_OBJECT_OPERATION_MASK + 1u, rule);
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_WRONG_DATA);
put_uint16_be(FILE_OBJECT_OPERATION_READ, rule);
put_uint32_be(FILE_OBJECT_FACT_MASK + 1u, rule + 2);
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_WRONG_DATA);
put_uint32_be(FILE_OBJECT_FACT_USER_VERIFICATION, rule + 2);
put_uint32_be(FILE_OBJECT_FACT_USER_VERIFICATION, rule + 6);
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_WRONG_DATA);
put_uint32_be(FILE_OBJECT_FACT_ADMIN, rule + 6);
put_uint16_be(0, rule + 10);
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_WRONG_DATA);
put_uint16_be(TEST_NAMESPACE, rule + 10);
put_uint16_be(1, rule + 12);
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_WRONG_DATA);
}
static void test_context_validation(void) {
uint8_t policy[FILE_OBJECT_POLICY_HEADER_SIZE + FILE_OBJECT_POLICY_RULE_SIZE];
size_t policy_size = test_policy_build(policy, 1);
test_rule_build(policy + FILE_OBJECT_POLICY_HEADER_SIZE, FILE_OBJECT_OPERATION_READ, 0, 0, FILE_OBJECT_POLICY_NAMESPACE_ANY, 0);
file_object_authorization_context_t context = test_context(TEST_NAMESPACE, 0);
assert(!file_object_policy_authorize(policy, policy_size, 0, &context));
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ | FILE_OBJECT_OPERATION_ENUMERATE, &context));
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_MASK + 1u, &context));
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, NULL));
context.caller_namespace = 0;
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, &context));
context.caller_namespace = FILE_OBJECT_POLICY_NAMESPACE_ANY;
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, &context));
context = test_context(TEST_NAMESPACE, FILE_OBJECT_FACT_MASK + 1u);
assert(!file_object_policy_authorize(policy, policy_size, FILE_OBJECT_OPERATION_READ, &context));
}
static void test_maximum_rules(void) {
uint8_t policy[FILE_OBJECT_POLICY_MAX_SIZE];
size_t policy_size = test_policy_build(policy, FILE_OBJECT_POLICY_MAX_RULES);
for (uint8_t i = 0; i < FILE_OBJECT_POLICY_MAX_RULES; i++) {
test_rule_build(policy + FILE_OBJECT_POLICY_HEADER_SIZE + (size_t)i * FILE_OBJECT_POLICY_RULE_SIZE, FILE_OBJECT_OPERATION_READ, 0, 0, TEST_NAMESPACE, 0);
}
assert(policy_size == sizeof(policy));
assert(file_object_policy_validate(policy, policy_size) == PICOKEYS_OK);
}
static void test_hash(void) {
uint8_t policy[FILE_OBJECT_POLICY_HEADER_SIZE + FILE_OBJECT_POLICY_RULE_SIZE];
size_t policy_size = test_policy_build(policy, 1);
uint8_t first[FILE_OBJECT_POLICY_HASH_SIZE];
uint8_t second[FILE_OBJECT_POLICY_HASH_SIZE];
test_rule_build(policy + FILE_OBJECT_POLICY_HEADER_SIZE, FILE_OBJECT_OPERATION_SIGN, FILE_OBJECT_FACT_USER_VERIFICATION, 0, TEST_NAMESPACE, 0);
assert(file_object_policy_hash(policy, policy_size, first) == PICOKEYS_OK);
assert(file_object_policy_hash(policy, policy_size, second) == PICOKEYS_OK);
assert(memcmp(first, second, sizeof(first)) == 0);
policy[FILE_OBJECT_POLICY_HEADER_SIZE + 1] ^= 0x01;
assert(file_object_policy_hash(policy, policy_size, second) == PICOKEYS_OK);
assert(memcmp(first, second, sizeof(first)) != 0);
memset(second, 0xa5, sizeof(second));
policy[0] = FILE_OBJECT_POLICY_FORMAT_VERSION + 1;
assert(file_object_policy_hash(policy, policy_size, second) == PICOKEYS_WRONG_DATA);
for (size_t i = 0; i < sizeof(second); i++) {
assert(second[i] == 0);
}
assert(file_object_policy_hash(policy, policy_size, NULL) == PICOKEYS_ERR_NULL_PARAM);
}
int main(void) {
test_default_deny();
test_rules();
test_session_epoch();
test_malformed();
test_context_validation();
test_maximum_rules();
test_hash();
puts("object_policy_test: OK");
return 0;
}
+814
View File
@@ -0,0 +1,814 @@
/*
* This file is part of the Pico Keys SDK distribution (https://github.com/polhenarejos/pico-keys-sdk).
* Copyright (c) 2022 Pol Henarejos.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "picokeys.h"
#include "fs/object_container.h"
#include "fs/object_store.h"
#include <assert.h>
#include <stdio.h>
#define TEST_FILE_COUNT 4u
#define TEST_FILE_CAPACITY 256u
#define TEST_TXN_RECORD_HEADER_SIZE 32u
#define TEST_TXN_COMMIT_SIZE 64u
#define TEST_MANIFEST_DESCRIPTOR_FLAGS_OFFSET (FILE_OBJECT_MANIFEST_HEADER_SIZE + 28u)
#define TEST_MANIFEST_DESCRIPTOR_EXTENSION_OFFSET (FILE_OBJECT_MANIFEST_HEADER_SIZE + 30u)
#define TEST_MANIFEST_EXTENSION_SIZE_OFFSET 28u
typedef struct test_file {
file_t file;
uint8_t storage[TEST_FILE_CAPACITY];
uint32_t size;
bool allocated;
} test_file_t;
typedef struct test_file_image {
uint8_t storage[TEST_FILE_CAPACITY];
uint32_t size;
uint16_t fid;
bool allocated;
} test_file_image_t;
static test_file_t test_files[TEST_FILE_COUNT];
static test_file_image_t test_durable_files[TEST_FILE_COUNT];
static uint16_t test_fail_write_fid;
static size_t test_fail_write_after = SIZE_MAX;
static size_t test_commit_count;
static size_t test_fail_commit = SIZE_MAX;
static const file_object_txn_layout_t test_txn_layout = {
.namespace_id = 0x1001,
.object_type = 0x2001,
.object_id = 0x01020304,
.record_fid = { 0xd001, 0xd101 },
.commit_fid = { 0xd201, 0xd301 }
};
typedef struct test_auth_context {
uint32_t state[4];
bool active;
} test_auth_context_t;
static test_auth_context_t test_auth_context;
typedef struct test_record_protector_context {
uint8_t key;
} test_record_protector_context_t;
static test_record_protector_context_t test_record_protector_context = { .key = 0x5a };
static int test_auth_start(void *ctx) {
test_auth_context_t *auth = (test_auth_context_t *)ctx;
auth->state[0] = 0x811c9dc5u;
auth->state[1] = 0x9e3779b9u;
auth->state[2] = 0x85ebca6bu;
auth->state[3] = 0xc2b2ae35u;
auth->active = true;
return PICOKEYS_OK;
}
static int test_auth_update(void *ctx, const uint8_t *data, size_t len) {
test_auth_context_t *auth = (test_auth_context_t *)ctx;
if (!auth->active || (!data && len > 0)) {
return PICOKEYS_EXEC_ERROR;
}
for (size_t i = 0; i < len; i++) {
for (size_t word = 0; word < 4; word++) {
auth->state[word] ^= data[i] + (uint8_t)word;
auth->state[word] *= 0x01000193u + (uint32_t)(word * 2u);
auth->state[word] = (auth->state[word] << 5) | (auth->state[word] >> 27);
}
}
return PICOKEYS_OK;
}
static int test_auth_finish(void *ctx, uint8_t tag[FILE_OBJECT_AUTH_TAG_SIZE]) {
test_auth_context_t *auth = (test_auth_context_t *)ctx;
if (!auth->active || !tag) {
return PICOKEYS_EXEC_ERROR;
}
for (size_t i = 0; i < 4; i++) {
put_uint32_be(auth->state[i], tag + i * sizeof(uint32_t));
}
memset(auth->state, 0, sizeof(auth->state));
auth->active = false;
return PICOKEYS_OK;
}
static void test_auth_abort(void *ctx) {
test_auth_context_t *auth = (test_auth_context_t *)ctx;
memset(auth, 0, sizeof(*auth));
}
static const file_object_authenticator_t test_auth = {
.ctx = &test_auth_context,
.start = test_auth_start,
.update = test_auth_update,
.finish = test_auth_finish,
.abort = test_auth_abort
};
static int test_record_tag(test_record_protector_context_t *protector, const uint8_t nonce[FILE_OBJECT_RECORD_NONCE_SIZE], const uint8_t aad[FILE_OBJECT_RECORD_AAD_SIZE], const uint8_t *stored, size_t len, uint8_t tag[FILE_OBJECT_AUTH_TAG_SIZE]) {
int r = test_auth_start(&test_auth_context);
if (r == PICOKEYS_OK) {
r = test_auth_update(&test_auth_context, &protector->key, sizeof(protector->key));
}
if (r == PICOKEYS_OK) {
r = test_auth_update(&test_auth_context, aad, FILE_OBJECT_RECORD_AAD_SIZE);
}
if (r == PICOKEYS_OK) {
r = test_auth_update(&test_auth_context, nonce, FILE_OBJECT_RECORD_NONCE_SIZE);
}
if (r == PICOKEYS_OK) {
r = test_auth_update(&test_auth_context, stored, len);
}
if (r == PICOKEYS_OK) {
r = test_auth_finish(&test_auth_context, tag);
}
if (r != PICOKEYS_OK) {
test_auth_abort(&test_auth_context);
}
return r;
}
static int test_record_seal(void *ctx, const file_object_record_identity_t *identity, const uint8_t nonce[FILE_OBJECT_RECORD_NONCE_SIZE], const uint8_t aad[FILE_OBJECT_RECORD_AAD_SIZE], const uint8_t *plaintext, size_t len, uint8_t *stored, uint8_t tag[FILE_OBJECT_AUTH_TAG_SIZE]) {
test_record_protector_context_t *protector = (test_record_protector_context_t *)ctx;
if (!protector || !identity || !nonce || !aad || (!plaintext && len > 0) || !stored || !tag) {
return PICOKEYS_ERR_NULL_PARAM;
}
for (size_t i = 0; i < len; i++) {
stored[i] = identity->protection == FILE_OBJECT_PROTECTION_AEAD_SECRET ? plaintext[i] ^ protector->key ^ nonce[i % FILE_OBJECT_RECORD_NONCE_SIZE] : plaintext[i];
}
return test_record_tag(protector, nonce, aad, stored, len, tag);
}
static int test_record_unseal(void *ctx, const file_object_record_identity_t *identity, const uint8_t nonce[FILE_OBJECT_RECORD_NONCE_SIZE], const uint8_t aad[FILE_OBJECT_RECORD_AAD_SIZE], const uint8_t *stored, size_t len, const uint8_t tag[FILE_OBJECT_AUTH_TAG_SIZE], uint8_t *plaintext) {
test_record_protector_context_t *protector = (test_record_protector_context_t *)ctx;
uint8_t calculated_tag[FILE_OBJECT_AUTH_TAG_SIZE];
int r = test_record_tag(protector, nonce, aad, stored, len, calculated_tag);
uint8_t difference = 0;
if (r == PICOKEYS_OK) {
for (size_t i = 0; i < sizeof(calculated_tag); i++) {
difference |= calculated_tag[i] ^ tag[i];
}
if (difference != 0) {
r = PICOKEYS_WRONG_SIGNATURE;
}
}
memset(calculated_tag, 0, sizeof(calculated_tag));
if (r != PICOKEYS_OK) {
return r;
}
for (size_t i = 0; i < len; i++) {
plaintext[i] = identity->protection == FILE_OBJECT_PROTECTION_AEAD_SECRET ? stored[i] ^ protector->key ^ nonce[i % FILE_OBJECT_RECORD_NONCE_SIZE] : stored[i];
}
return PICOKEYS_OK;
}
static const file_object_record_protector_t test_record_protector = {
.ctx = &test_record_protector_context,
.seal = test_record_seal,
.unseal = test_record_unseal
};
static bool test_extension_supported(void *ctx, uint8_t kind) {
const uint8_t *supported_kind = (const uint8_t *)ctx;
return supported_kind && kind == *supported_kind;
}
static void test_manifest_retag(uint8_t *data, size_t len) {
assert(len >= FILE_OBJECT_AUTH_TAG_SIZE);
assert(test_auth_start(&test_auth_context) == PICOKEYS_OK);
assert(test_auth_update(&test_auth_context, data, len - FILE_OBJECT_AUTH_TAG_SIZE) == PICOKEYS_OK);
assert(test_auth_finish(&test_auth_context, data + len - FILE_OBJECT_AUTH_TAG_SIZE) == PICOKEYS_OK);
}
static file_object_manifest_t test_manifest_value(void) {
return (file_object_manifest_t) {
.namespace_id = 0x1001,
.container_kind = 0x0001,
.container_id = 0x01020304,
.generation = 2,
.previous_generation = 1,
.has_object = true,
.object = {
.object_type = 0x0008,
.object_tag = 0x0002,
.generation = 3,
.logical_size = 3,
.record_id = UINT64_C(0x0102030412345678),
.stored_size = 3,
.policy_id = 0x0001,
.protection = FILE_OBJECT_PROTECTION_AUTHENTICATED_PUBLIC,
.flags = FILE_OBJECT_FLAG_MUTABLE | FILE_OBJECT_FLAG_GENERIC_READABLE
}
};
}
static test_file_t *test_file_from_handle(const file_t *file) {
for (size_t i = 0; i < TEST_FILE_COUNT; i++) {
if (&test_files[i].file == file) {
return &test_files[i];
}
}
return NULL;
}
static void test_files_reset(void) {
memset(test_files, 0, sizeof(test_files));
memset(test_durable_files, 0, sizeof(test_durable_files));
test_fail_write_fid = 0;
test_fail_write_after = SIZE_MAX;
test_commit_count = 0;
test_fail_commit = SIZE_MAX;
test_auth_abort(&test_auth_context);
}
static void test_persist_files(void) {
for (size_t i = 0; i < TEST_FILE_COUNT; i++) {
memcpy(test_durable_files[i].storage, test_files[i].storage, sizeof(test_durable_files[i].storage));
test_durable_files[i].size = test_files[i].size;
test_durable_files[i].fid = test_files[i].file.fid;
test_durable_files[i].allocated = test_files[i].allocated;
}
}
static void test_reboot(void) {
memset(test_files, 0, sizeof(test_files));
for (size_t i = 0; i < TEST_FILE_COUNT; i++) {
memcpy(test_files[i].storage, test_durable_files[i].storage, sizeof(test_files[i].storage));
test_files[i].size = test_durable_files[i].size;
test_files[i].file.fid = test_durable_files[i].fid;
test_files[i].allocated = test_durable_files[i].allocated;
test_files[i].file.data = test_files[i].size > 0 ? test_files[i].storage : NULL;
}
test_fail_write_fid = 0;
test_fail_write_after = SIZE_MAX;
test_fail_commit = SIZE_MAX;
test_auth_abort(&test_auth_context);
}
file_t *file_search(uint16_t fid) {
for (size_t i = 0; i < TEST_FILE_COUNT; i++) {
if (test_files[i].allocated && test_files[i].file.fid == fid) {
return &test_files[i].file;
}
}
return NULL;
}
file_t *file_new(uint16_t fid) {
file_t *existing = file_search(fid);
if (existing) {
return existing;
}
for (size_t i = 0; i < TEST_FILE_COUNT; i++) {
if (!test_files[i].allocated) {
test_files[i].allocated = true;
test_files[i].file.fid = fid;
return &test_files[i].file;
}
}
return NULL;
}
file_t *file_search_by_fid(const uint16_t fid, const file_t *parent, const uint8_t sp) {
(void)fid;
(void)parent;
(void)sp;
return NULL;
}
bool file_has_data(const file_t *file) {
test_file_t *test_file = test_file_from_handle(file);
return test_file && test_file->allocated && test_file->file.data && test_file->size > 0;
}
uint32_t file_get_size(const file_t *file) {
test_file_t *test_file = test_file_from_handle(file);
return test_file ? test_file->size : 0;
}
int file_read_at(const file_t *file, uint32_t offset, uint8_t *data, size_t len) {
test_file_t *test_file = test_file_from_handle(file);
if (!test_file || (!data && len > 0) || offset > test_file->size || len > test_file->size - offset) {
return PICOKEYS_ERR_NULL_PARAM;
}
if (len > 0) {
memcpy(data, test_file->storage + offset, len);
}
return PICOKEYS_OK;
}
int file_put_data(file_t *file, const uint8_t *data, uint32_t len) {
test_file_t *test_file = test_file_from_handle(file);
if (!test_file || (!data && len > 0) || len > sizeof(test_file->storage)) {
return PICOKEYS_ERR_NO_MEMORY;
}
size_t written = len;
bool fail = file->fid == test_fail_write_fid && test_fail_write_after < len;
if (fail) {
written = test_fail_write_after;
}
if (written > 0) {
memcpy(test_file->storage, data, written);
}
test_file->size = (uint32_t)written;
test_file->file.data = written > 0 ? test_file->storage : NULL;
return fail ? PICOKEYS_EXEC_ERROR : PICOKEYS_OK;
}
int file_delete_no_commit(file_t *file) {
test_file_t *test_file = test_file_from_handle(file);
if (!test_file || !test_file->allocated) {
return PICOKEYS_ERR_FILE_NOT_FOUND;
}
memset(test_file->storage, 0, sizeof(test_file->storage));
test_file->file.data = NULL;
test_file->size = 0;
return PICOKEYS_OK;
}
int file_delete(file_t *file) {
return file_delete_no_commit(file);
}
bool flash_commit_sync(uint32_t timeout_ms) {
(void)timeout_ms;
test_commit_count++;
if (test_commit_count == test_fail_commit) {
return false;
}
test_persist_files();
return true;
}
static void test_txn_read(const file_object_txn_layout_t *layout, const uint8_t *expected, size_t expected_len, uint32_t expected_generation) {
file_object_txn_handle_t handle = FILE_OBJECT_TXN_INVALID_HANDLE;
file_object_info_t info;
uint8_t output[32] = { 0 };
assert(expected_len <= sizeof(output));
assert(file_object_txn_open(layout, &test_auth, &handle) == PICOKEYS_OK);
assert(file_object_txn_get_info(handle, &test_auth, &info) == PICOKEYS_OK);
assert(info.generation == expected_generation);
assert(info.payload_size == expected_len);
assert(file_object_txn_read_at(handle, &test_auth, 0, output, expected_len) == PICOKEYS_OK);
assert(memcmp(output, expected, expected_len) == 0);
assert(file_object_txn_close(handle) == PICOKEYS_OK);
}
static void test_identity_and_stale_handles(void) {
static const uint8_t first[] = { 1, 2, 3, 4 };
static const uint8_t second[] = { 5, 6, 7 };
const file_object_id_t object_id = { .namespace_id = 1, .object_type = 2, .fid = 0xc701 };
const file_object_id_t wrong_namespace = { .namespace_id = 2, .object_type = 2, .fid = 0xc701 };
const file_object_id_t wrong_type = { .namespace_id = 1, .object_type = 3, .fid = 0xc701 };
file_object_handle_t first_handle = FILE_OBJECT_INVALID_HANDLE;
file_object_handle_t second_handle = FILE_OBJECT_INVALID_HANDLE;
file_object_info_t info;
uint8_t output[sizeof(first)] = { 0 };
assert(file_object_put(&object_id, first, sizeof(first)) == PICOKEYS_OK);
assert(file_object_open(&wrong_namespace, &first_handle) == PICOKEYS_WRONG_DATA);
assert(first_handle == FILE_OBJECT_INVALID_HANDLE);
assert(file_object_open(&wrong_type, &first_handle) == PICOKEYS_WRONG_DATA);
assert(file_object_open(&object_id, &first_handle) == PICOKEYS_OK);
assert(file_object_get_info(first_handle, &info) == PICOKEYS_OK);
assert(info.generation == 1);
assert(info.payload_size == sizeof(first));
assert(file_object_read_at(first_handle, 1, output, 2) == PICOKEYS_OK);
assert(memcmp(output, first + 1, 2) == 0);
assert(file_object_read_at(first_handle, sizeof(first), output, 1) == PICOKEYS_WRONG_LENGTH);
assert(file_object_put(&object_id, second, sizeof(second)) == PICOKEYS_OK);
assert(file_object_read_at(first_handle, 0, output, 1) == PICOKEYS_ERR_STALE_HANDLE);
assert(file_object_close(first_handle) == PICOKEYS_OK);
assert(file_object_read_at(first_handle, 0, output, 1) == PICOKEYS_ERR_STALE_HANDLE);
assert(file_object_open(&object_id, &second_handle) == PICOKEYS_OK);
assert(file_object_get_info(second_handle, &info) == PICOKEYS_OK);
assert(info.generation == 2);
assert(info.payload_size == sizeof(second));
memset(output, 0, sizeof(output));
assert(file_object_read_at(second_handle, 0, output, sizeof(second)) == PICOKEYS_OK);
assert(memcmp(output, second, sizeof(second)) == 0);
assert(file_object_delete_no_commit(&object_id) == PICOKEYS_OK);
assert(file_object_read_at(second_handle, 0, output, 1) == PICOKEYS_ERR_STALE_HANDLE);
assert(file_object_close(second_handle) == PICOKEYS_OK);
}
static void test_fid_binding_and_malformed_header(void) {
static const uint8_t payload[] = { 9, 8, 7, 6 };
const file_object_id_t source_id = { .namespace_id = 1, .object_type = 2, .fid = 0xc711 };
const file_object_id_t copied_id = { .namespace_id = 1, .object_type = 2, .fid = 0xc712 };
file_object_handle_t handle = FILE_OBJECT_INVALID_HANDLE;
assert(file_object_put(&source_id, payload, sizeof(payload)) == PICOKEYS_OK);
file_t *source = file_search(source_id.fid);
file_t *copied = file_new(copied_id.fid);
assert(source && copied);
assert(file_put_data(copied, test_file_from_handle(source)->storage, file_get_size(source)) == PICOKEYS_OK);
assert(file_object_open(&copied_id, &handle) == PICOKEYS_WRONG_DATA);
assert(handle == FILE_OBJECT_INVALID_HANDLE);
test_file_t *source_file = test_file_from_handle(source);
source_file->storage[4] = 0xff;
assert(file_object_open(&source_id, &handle) == PICOKEYS_WRONG_DATA);
}
static void test_handle_capacity(void) {
static const uint8_t payload[] = { 1 };
const file_object_id_t object_id = { .namespace_id = 3, .object_type = 4, .fid = 0xc721 };
file_object_handle_t handles[FILE_OBJECT_MAX_HANDLES];
file_object_handle_t extra = FILE_OBJECT_INVALID_HANDLE;
assert(file_object_put(&object_id, payload, sizeof(payload)) == PICOKEYS_OK);
for (size_t i = 0; i < FILE_OBJECT_MAX_HANDLES; i++) {
assert(file_object_open(&object_id, &handles[i]) == PICOKEYS_OK);
}
assert(file_object_open(&object_id, &extra) == PICOKEYS_ERR_NO_MEMORY);
assert(extra == FILE_OBJECT_INVALID_HANDLE);
for (size_t i = 0; i < FILE_OBJECT_MAX_HANDLES; i++) {
assert(file_object_close(handles[i]) == PICOKEYS_OK);
}
}
static void test_transaction_replacement_and_delete(void) {
static const uint8_t first[] = { 1, 3, 5, 7 };
static const uint8_t second[] = { 2, 4, 6, 8, 10 };
static const uint8_t third[] = { 11, 12, 13 };
file_object_txn_handle_t stale_handle = FILE_OBJECT_TXN_INVALID_HANDLE;
uint8_t output = 0;
assert(file_object_txn_put(&test_txn_layout, &test_auth, first, sizeof(first)) == PICOKEYS_OK);
test_txn_read(&test_txn_layout, first, sizeof(first), 1);
assert(file_object_txn_open(&test_txn_layout, &test_auth, &stale_handle) == PICOKEYS_OK);
assert(file_object_txn_put(&test_txn_layout, &test_auth, second, sizeof(second)) == PICOKEYS_OK);
assert(file_object_txn_read_at(stale_handle, &test_auth, 0, &output, 1) == PICOKEYS_ERR_STALE_HANDLE);
assert(file_object_txn_close(stale_handle) == PICOKEYS_OK);
test_txn_read(&test_txn_layout, second, sizeof(second), 2);
assert(file_object_txn_open(&test_txn_layout, &test_auth, &stale_handle) == PICOKEYS_OK);
assert(file_object_txn_delete(&test_txn_layout, &test_auth) == PICOKEYS_OK);
assert(file_object_txn_read_at(stale_handle, &test_auth, 0, &output, 1) == PICOKEYS_ERR_STALE_HANDLE);
assert(file_object_txn_close(stale_handle) == PICOKEYS_OK);
assert(file_object_txn_open(&test_txn_layout, &test_auth, &stale_handle) == PICOKEYS_ERR_FILE_NOT_FOUND);
assert(file_object_txn_put(&test_txn_layout, &test_auth, third, sizeof(third)) == PICOKEYS_OK);
test_txn_read(&test_txn_layout, third, sizeof(third), 4);
}
static void test_transaction_commit_boundaries(void) {
static const uint8_t first[] = { 0x10, 0x11, 0x12 };
static const uint8_t second[] = { 0x20, 0x21, 0x22, 0x23 };
assert(file_object_txn_put(&test_txn_layout, &test_auth, first, sizeof(first)) == PICOKEYS_OK);
test_fail_commit = test_commit_count + 1;
assert(file_object_txn_put(&test_txn_layout, &test_auth, second, sizeof(second)) == PICOKEYS_ERR_MEMORY_FATAL);
test_reboot();
test_txn_read(&test_txn_layout, first, sizeof(first), 1);
test_files_reset();
assert(file_object_txn_put(&test_txn_layout, &test_auth, first, sizeof(first)) == PICOKEYS_OK);
test_fail_commit = test_commit_count + 2;
assert(file_object_txn_put(&test_txn_layout, &test_auth, second, sizeof(second)) == PICOKEYS_ERR_MEMORY_FATAL);
test_reboot();
test_txn_read(&test_txn_layout, first, sizeof(first), 1);
}
static void test_transaction_record_write_boundaries(void) {
static const uint8_t first[] = { 0x31, 0x32, 0x33 };
static const uint8_t second[] = { 0x41, 0x42, 0x43, 0x44 };
const size_t record_size = TEST_TXN_RECORD_HEADER_SIZE + sizeof(second) + FILE_OBJECT_AUTH_TAG_SIZE;
for (size_t written = 0; written < record_size; written++) {
test_files_reset();
assert(file_object_txn_put(&test_txn_layout, &test_auth, first, sizeof(first)) == PICOKEYS_OK);
test_fail_write_fid = test_txn_layout.record_fid[1];
test_fail_write_after = written;
assert(file_object_txn_put(&test_txn_layout, &test_auth, second, sizeof(second)) == PICOKEYS_EXEC_ERROR);
test_persist_files();
test_reboot();
test_txn_read(&test_txn_layout, first, sizeof(first), 1);
}
}
static void test_transaction_commit_write_boundaries(void) {
static const uint8_t first[] = { 0x51, 0x52, 0x53 };
static const uint8_t second[] = { 0x61, 0x62, 0x63, 0x64 };
for (size_t written = 0; written < TEST_TXN_COMMIT_SIZE; written++) {
test_files_reset();
assert(file_object_txn_put(&test_txn_layout, &test_auth, first, sizeof(first)) == PICOKEYS_OK);
test_fail_write_fid = test_txn_layout.commit_fid[1];
test_fail_write_after = written;
assert(file_object_txn_put(&test_txn_layout, &test_auth, second, sizeof(second)) == PICOKEYS_EXEC_ERROR);
test_persist_files();
test_reboot();
test_txn_read(&test_txn_layout, first, sizeof(first), 1);
}
}
static void test_transaction_corruption_falls_back(void) {
static const uint8_t first[] = { 0x71, 0x72, 0x73 };
static const uint8_t second[] = { 0x81, 0x82, 0x83, 0x84 };
assert(file_object_txn_put(&test_txn_layout, &test_auth, first, sizeof(first)) == PICOKEYS_OK);
assert(file_object_txn_put(&test_txn_layout, &test_auth, second, sizeof(second)) == PICOKEYS_OK);
test_file_t *record = test_file_from_handle(file_search(test_txn_layout.record_fid[1]));
assert(record && record->size > TEST_TXN_RECORD_HEADER_SIZE);
record->storage[TEST_TXN_RECORD_HEADER_SIZE] ^= 0x80;
test_persist_files();
test_reboot();
test_txn_read(&test_txn_layout, first, sizeof(first), 1);
test_files_reset();
assert(file_object_txn_put(&test_txn_layout, &test_auth, first, sizeof(first)) == PICOKEYS_OK);
assert(file_object_txn_put(&test_txn_layout, &test_auth, second, sizeof(second)) == PICOKEYS_OK);
test_file_t *commit = test_file_from_handle(file_search(test_txn_layout.commit_fid[1]));
assert(commit && commit->size == TEST_TXN_COMMIT_SIZE);
commit->storage[TEST_TXN_COMMIT_SIZE - 1] ^= 0x01;
test_persist_files();
test_reboot();
test_txn_read(&test_txn_layout, first, sizeof(first), 1);
}
static void test_transaction_identity_isolation(void) {
static const uint8_t payload[] = { 0x91, 0x92, 0x93 };
file_object_txn_layout_t wrong_layout = test_txn_layout;
file_object_txn_handle_t handle = FILE_OBJECT_TXN_INVALID_HANDLE;
assert(file_object_txn_put(&test_txn_layout, &test_auth, payload, sizeof(payload)) == PICOKEYS_OK);
wrong_layout.namespace_id++;
assert(file_object_txn_open(&wrong_layout, &test_auth, &handle) == PICOKEYS_ERR_FILE_NOT_FOUND);
wrong_layout = test_txn_layout;
wrong_layout.object_type++;
assert(file_object_txn_open(&wrong_layout, &test_auth, &handle) == PICOKEYS_ERR_FILE_NOT_FOUND);
wrong_layout = test_txn_layout;
wrong_layout.object_id++;
assert(file_object_txn_open(&wrong_layout, &test_auth, &handle) == PICOKEYS_ERR_FILE_NOT_FOUND);
}
static void test_manifest_round_trip(void) {
static const uint8_t extensions[] = { 0x80, 0x00, 0x00, 0x03, 0xaa, 0xbb, 0xcc };
file_object_manifest_t source = test_manifest_value();
file_object_manifest_t parsed;
uint8_t data[128];
size_t written = 0;
source.object.extension_offset = FILE_OBJECT_MANIFEST_HEADER_SIZE + FILE_OBJECT_DESCRIPTOR_SIZE;
source.object.extension_size = sizeof(extensions);
assert(file_object_manifest_build(&source, extensions, sizeof(extensions), &test_auth, data, sizeof(data), &written) == PICOKEYS_OK);
assert(written == FILE_OBJECT_MANIFEST_HEADER_SIZE + FILE_OBJECT_DESCRIPTOR_SIZE + sizeof(extensions) + FILE_OBJECT_AUTH_TAG_SIZE);
assert(file_object_manifest_parse(data, written, &test_auth, NULL, NULL, &parsed) == PICOKEYS_OK);
assert(parsed.namespace_id == source.namespace_id);
assert(parsed.container_kind == source.container_kind);
assert(parsed.container_id == source.container_id);
assert(parsed.generation == source.generation);
assert(parsed.previous_generation == source.previous_generation);
assert(parsed.has_object);
assert(parsed.object.object_type == source.object.object_type);
assert(parsed.object.object_tag == source.object.object_tag);
assert(parsed.object.record_id == source.object.record_id);
assert(parsed.object.flags == source.object.flags);
assert(parsed.extension_size == sizeof(extensions));
assert(memcmp(data + parsed.extension_offset, extensions, sizeof(extensions)) == 0);
for (size_t truncated = 0; truncated < written; truncated++) {
assert(file_object_manifest_parse(data, truncated, &test_auth, NULL, NULL, &parsed) != PICOKEYS_OK);
}
data[8] ^= 0x01;
assert(file_object_manifest_parse(data, written, &test_auth, NULL, NULL, &parsed) == PICOKEYS_WRONG_SIGNATURE);
data[8] ^= 0x01;
assert(file_object_manifest_build(&source, extensions, sizeof(extensions), &test_auth, data, written - 1, &written) == PICOKEYS_WRONG_LENGTH);
assert(written == 0);
}
static void test_manifest_extension_compatibility(void) {
static const uint8_t critical_extension[] = { 0x81, FILE_OBJECT_EXTENSION_FLAG_CRITICAL, 0x00, 0x01, 0x42 };
static const uint8_t malformed_extension[] = { 0x82, 0x00, 0x00, 0x02, 0x42 };
const uint8_t supported_kind = 0x81;
file_object_manifest_t source = test_manifest_value();
file_object_manifest_t parsed;
uint8_t data[128];
size_t written = 0;
source.object.extension_offset = FILE_OBJECT_MANIFEST_HEADER_SIZE + FILE_OBJECT_DESCRIPTOR_SIZE;
source.object.extension_size = sizeof(critical_extension);
assert(file_object_manifest_build(&source, critical_extension, sizeof(critical_extension), &test_auth, data, sizeof(data), &written) == PICOKEYS_OK);
assert(file_object_manifest_parse(data, written, &test_auth, NULL, NULL, &parsed) == PICOKEYS_WRONG_DATA);
assert(file_object_manifest_parse(data, written, &test_auth, test_extension_supported, (void *)&supported_kind, &parsed) == PICOKEYS_OK);
assert(memcmp(data + parsed.extension_offset, critical_extension, sizeof(critical_extension)) == 0);
source.object.extension_offset++;
source.object.extension_size--;
assert(file_object_manifest_build(&source, critical_extension, sizeof(critical_extension), &test_auth, data, sizeof(data), &written) == PICOKEYS_WRONG_DATA);
source.object.extension_offset = FILE_OBJECT_MANIFEST_HEADER_SIZE + FILE_OBJECT_DESCRIPTOR_SIZE;
source.object.extension_size = sizeof(malformed_extension);
assert(file_object_manifest_build(&source, malformed_extension, sizeof(malformed_extension), &test_auth, data, sizeof(data), &written) == PICOKEYS_WRONG_DATA);
}
static void test_manifest_malformed_fields(void) {
file_object_manifest_t source = test_manifest_value();
file_object_manifest_t parsed;
uint8_t data[128];
size_t written = 0;
source.object.flags |= 0x8000;
assert(file_object_manifest_build(&source, NULL, 0, &test_auth, data, sizeof(data), &written) == PICOKEYS_WRONG_DATA);
source = test_manifest_value();
source.object.flags |= FILE_OBJECT_FLAG_INLINE;
assert(file_object_manifest_build(&source, NULL, 0, &test_auth, data, sizeof(data), &written) == PICOKEYS_WRONG_DATA);
source = test_manifest_value();
source.object.flags |= FILE_OBJECT_FLAG_TRANSACTION_GROUP;
assert(file_object_manifest_build(&source, NULL, 0, &test_auth, data, sizeof(data), &written) == PICOKEYS_WRONG_DATA);
source = test_manifest_value();
assert(file_object_manifest_build(&source, NULL, 0, &test_auth, data, sizeof(data), &written) == PICOKEYS_OK);
put_uint16_be(2, data + 24);
assert(file_object_manifest_parse(data, written, &test_auth, NULL, NULL, &parsed) == PICOKEYS_WRONG_DATA);
assert(file_object_manifest_build(&source, NULL, 0, &test_auth, data, sizeof(data), &written) == PICOKEYS_OK);
put_uint16_be(0x8000, data + TEST_MANIFEST_DESCRIPTOR_FLAGS_OFFSET);
test_manifest_retag(data, written);
assert(file_object_manifest_parse(data, written, &test_auth, NULL, NULL, &parsed) == PICOKEYS_WRONG_DATA);
assert(file_object_manifest_build(&source, NULL, 0, &test_auth, data, sizeof(data), &written) == PICOKEYS_OK);
put_uint16_be(1, data + TEST_MANIFEST_DESCRIPTOR_EXTENSION_OFFSET);
test_manifest_retag(data, written);
assert(file_object_manifest_parse(data, written, &test_auth, NULL, NULL, &parsed) == PICOKEYS_WRONG_DATA);
assert(file_object_manifest_build(&source, NULL, 0, &test_auth, data, sizeof(data), &written) == PICOKEYS_OK);
put_uint16_be(1, data + TEST_MANIFEST_EXTENSION_SIZE_OFFSET);
test_manifest_retag(data, written);
assert(file_object_manifest_parse(data, written, &test_auth, NULL, NULL, &parsed) == PICOKEYS_WRONG_DATA);
}
static void test_object_record_header_binding(void) {
file_object_manifest_t manifest = test_manifest_value();
file_object_record_info_t info;
uint8_t record[FILE_OBJECT_RECORD_HEADER_SIZE + 3 + FILE_OBJECT_AUTH_TAG_SIZE] = { 0 };
assert(file_object_record_header_build(&manifest.object, record) == PICOKEYS_OK);
record[FILE_OBJECT_RECORD_HEADER_SIZE] = 1;
record[FILE_OBJECT_RECORD_HEADER_SIZE + 1] = 2;
record[FILE_OBJECT_RECORD_HEADER_SIZE + 2] = 3;
assert(file_object_record_header_parse(record, sizeof(record), &manifest.object, &info) == PICOKEYS_OK);
assert(info.record_id == manifest.object.record_id);
assert(info.generation == manifest.object.generation);
assert(info.payload_offset == FILE_OBJECT_RECORD_HEADER_SIZE);
assert(info.tag_offset == FILE_OBJECT_RECORD_HEADER_SIZE + manifest.object.stored_size);
assert(file_object_record_header_parse(record, sizeof(record) - 1, &manifest.object, &info) == PICOKEYS_WRONG_LENGTH);
record[FILE_OBJECT_RECORD_HEADER_SIZE - 1] ^= 0x01;
assert(file_object_record_header_parse(record, sizeof(record), &manifest.object, &info) == PICOKEYS_WRONG_DATA);
record[FILE_OBJECT_RECORD_HEADER_SIZE - 1] ^= 0x01;
record[8] ^= 0x01;
assert(file_object_record_header_parse(record, sizeof(record), &manifest.object, &info) == PICOKEYS_WRONG_DATA);
}
static void test_object_record_protection(void) {
static const uint8_t plaintext[] = { 0x10, 0x20, 0x30 };
static const uint8_t policy_hash[FILE_OBJECT_POLICY_HASH_SIZE] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10 };
file_object_manifest_t manifest = test_manifest_value();
file_object_manifest_t relocated;
uint8_t record[FILE_OBJECT_RECORD_HEADER_SIZE + sizeof(plaintext) + FILE_OBJECT_AUTH_TAG_SIZE];
uint8_t output[sizeof(plaintext)];
uint8_t wrong_policy_hash[FILE_OBJECT_POLICY_HASH_SIZE];
size_t written = 0;
assert(file_object_record_seal(&manifest, policy_hash, &test_record_protector, plaintext, sizeof(plaintext), record, sizeof(record), &written) == PICOKEYS_OK);
assert(written == sizeof(record));
assert(memcmp(record + FILE_OBJECT_RECORD_HEADER_SIZE, plaintext, sizeof(plaintext)) == 0);
assert(file_object_record_unseal(&manifest, policy_hash, &test_record_protector, record, sizeof(record), output, sizeof(output), &written) == PICOKEYS_OK);
assert(written == sizeof(plaintext));
assert(memcmp(output, plaintext, sizeof(plaintext)) == 0);
assert(file_object_record_unseal(&manifest, policy_hash, &test_record_protector, record, sizeof(record), output, sizeof(output) - 1, &written) == PICOKEYS_WRONG_LENGTH);
relocated = manifest;
relocated.container_id++;
memset(output, 0xa5, sizeof(output));
assert(file_object_record_unseal(&relocated, policy_hash, &test_record_protector, record, sizeof(record), output, sizeof(output), &written) == PICOKEYS_WRONG_SIGNATURE);
assert(memcmp(output, (uint8_t[sizeof(output)]) { 0 }, sizeof(output)) == 0);
memcpy(wrong_policy_hash, policy_hash, sizeof(wrong_policy_hash));
wrong_policy_hash[0] ^= 0x80;
assert(file_object_record_unseal(&manifest, wrong_policy_hash, &test_record_protector, record, sizeof(record), output, sizeof(output), &written) == PICOKEYS_WRONG_SIGNATURE);
record[FILE_OBJECT_RECORD_HEADER_SIZE] ^= 0x01;
assert(file_object_record_unseal(&manifest, policy_hash, &test_record_protector, record, sizeof(record), output, sizeof(output), &written) == PICOKEYS_WRONG_SIGNATURE);
record[FILE_OBJECT_RECORD_HEADER_SIZE] ^= 0x01;
manifest.object.protection = FILE_OBJECT_PROTECTION_AEAD_SECRET;
manifest.object.flags = FILE_OBJECT_FLAG_NON_EXPORTABLE;
assert(file_object_record_seal(&manifest, policy_hash, &test_record_protector, plaintext, sizeof(plaintext), record, sizeof(record), &written) == PICOKEYS_OK);
assert(memcmp(record + FILE_OBJECT_RECORD_HEADER_SIZE, plaintext, sizeof(plaintext)) != 0);
assert(file_object_record_unseal(&manifest, policy_hash, &test_record_protector, record, sizeof(record), output, sizeof(output), &written) == PICOKEYS_OK);
assert(memcmp(output, plaintext, sizeof(plaintext)) == 0);
test_record_protector_context.key ^= 0x01;
assert(file_object_record_unseal(&manifest, policy_hash, &test_record_protector, record, sizeof(record), output, sizeof(output), &written) == PICOKEYS_WRONG_SIGNATURE);
test_record_protector_context.key ^= 0x01;
}
static void test_record_id_allocator(void) {
uint64_t record_id = 0;
assert(file_object_record_id_allocate(&test_txn_layout, &test_auth, &record_id) == PICOKEYS_OK);
assert(record_id == 1);
assert(file_object_record_id_allocate(&test_txn_layout, &test_auth, &record_id) == PICOKEYS_OK);
assert(record_id == 2);
test_reboot();
assert(file_object_record_id_allocate(&test_txn_layout, &test_auth, &record_id) == PICOKEYS_OK);
assert(record_id == 3);
}
static void test_record_id_allocator_power_loss(void) {
for (size_t failed_barrier = 1; failed_barrier <= 4; failed_barrier++) {
test_files_reset();
uint64_t record_id = 0;
assert(file_object_record_id_allocate(&test_txn_layout, &test_auth, &record_id) == PICOKEYS_OK);
assert(record_id == 1);
test_fail_commit = test_commit_count + failed_barrier;
record_id = UINT64_MAX;
assert(file_object_record_id_allocate(&test_txn_layout, &test_auth, &record_id) == PICOKEYS_ERR_MEMORY_FATAL);
assert(record_id == 0);
test_reboot();
assert(file_object_record_id_allocate(&test_txn_layout, &test_auth, &record_id) == PICOKEYS_OK);
assert(record_id >= 2);
}
}
static void test_record_id_allocator_single_slot_corruption(void) {
uint64_t record_id = 0;
assert(file_object_record_id_allocate(&test_txn_layout, &test_auth, &record_id) == PICOKEYS_OK);
assert(record_id == 1);
test_file_t *newest_record = test_file_from_handle(file_search(test_txn_layout.record_fid[1]));
assert(newest_record && newest_record->size > TEST_TXN_RECORD_HEADER_SIZE);
newest_record->storage[TEST_TXN_RECORD_HEADER_SIZE] ^= 0x80;
test_persist_files();
test_reboot();
assert(file_object_record_id_allocate(&test_txn_layout, &test_auth, &record_id) == PICOKEYS_OK);
assert(record_id == 2);
}
int main(void) {
test_files_reset();
test_identity_and_stale_handles();
test_files_reset();
test_fid_binding_and_malformed_header();
test_files_reset();
test_handle_capacity();
test_files_reset();
test_transaction_replacement_and_delete();
test_files_reset();
test_transaction_commit_boundaries();
test_files_reset();
test_transaction_record_write_boundaries();
test_files_reset();
test_transaction_commit_write_boundaries();
test_files_reset();
test_transaction_corruption_falls_back();
test_files_reset();
test_transaction_identity_isolation();
test_files_reset();
test_manifest_round_trip();
test_files_reset();
test_manifest_extension_compatibility();
test_files_reset();
test_manifest_malformed_fields();
test_files_reset();
test_object_record_header_binding();
test_files_reset();
test_object_record_protection();
test_files_reset();
test_record_id_allocator();
test_files_reset();
test_record_id_allocator_power_loss();
test_files_reset();
test_record_id_allocator_single_slot_corruption();
puts("object_store_test: OK");
return 0;
}