// Copyright 2018 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // #include #include #include #include #include const TEEC_UUID hello_world_ta = {0x8aaaf200, 0x2450, 0x11e4, {0xab, 0xe2, 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}}; #define TA_HELLO_WORLD_CMD_INC_VALUE 0 int main(int argc, const char** argv) { const char* prog_name = argv[0]; TEEC_Result result; TEEC_Context context; TEEC_Session session; uint32_t return_origin; result = TEEC_InitializeContext(NULL, &context); if (result != TEEC_SUCCESS) { printf("%s: Failed to initialize context (%x)\n", prog_name, result); return result; } result = TEEC_OpenSession(&context, &session, &hello_world_ta, TEEC_LOGIN_PUBLIC, NULL, NULL, &return_origin); if (result != TEEC_SUCCESS) { printf("%s: Failed to open session (%x %x)\n", prog_name, result, return_origin); goto out_finalize; } TEEC_Operation op; memset(&op, 0, sizeof(op)); op.paramTypes = TEEC_PARAM_TYPES(TEEC_VALUE_INOUT, TEEC_NONE, TEEC_NONE, TEEC_NONE); op.params[0].value.a = 42; printf("Invoking TA to increment %d\n", op.params[0].value.a); result = TEEC_InvokeCommand(&session, TA_HELLO_WORLD_CMD_INC_VALUE, &op, &return_origin); if (result != TEEC_SUCCESS) { printf("TEEC_InvokeCommand failed with code 0x%x origin 0x%x\n", result, return_origin); goto out_close_session; } printf("TA incremented value to %d\n", op.params[0].value.a); out_close_session: TEEC_CloseSession(&session); out_finalize: TEEC_FinalizeContext(&context); return result; }