blob: 2e08de970e64a5151d7fa02a087f28b1aaa897ac [file] [log] [blame]
Randall Spanglerda2b49c2014-06-10 17:03:40 -07001/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 *
5 * Stub API implementations which should be implemented by the caller.
6 */
7
Bill Richardson40890c52015-01-26 13:48:32 -08008#include <stdarg.h>
9#include <stdio.h>
10
Randall Spanglerda2b49c2014-06-10 17:03:40 -070011#include "2sysincludes.h"
12#include "2api.h"
13
Julius Wernerf10e9092014-12-16 19:24:54 -080014__attribute__((weak))
Bill Richardson40890c52015-01-26 13:48:32 -080015void vb2ex_printf(const char *func, const char *fmt, ...)
16{
17 va_list ap;
18 va_start(ap, fmt);
Randall Spanglera6094782017-01-20 14:54:47 -080019 if (func)
20 fprintf(stderr, "%s: ", func);
Bill Richardson40890c52015-01-26 13:48:32 -080021 vfprintf(stderr, fmt, ap);
22 va_end(ap);
23}
24
25__attribute__((weak))
Randall Spanglerda2b49c2014-06-10 17:03:40 -070026int vb2ex_tpm_clear_owner(struct vb2_context *ctx)
27{
Randall Spangler25c95d02014-06-20 13:57:12 -070028 return VB2_ERROR_EX_TPM_CLEAR_OWNER_UNIMPLEMENTED;
Randall Spanglerda2b49c2014-06-10 17:03:40 -070029}
30
Julius Wernerf10e9092014-12-16 19:24:54 -080031__attribute__((weak))
Randall Spanglerda2b49c2014-06-10 17:03:40 -070032int vb2ex_read_resource(struct vb2_context *ctx,
33 enum vb2_resource_index index,
34 uint32_t offset,
35 void *buf,
36 uint32_t size)
37{
Randall Spangler25c95d02014-06-20 13:57:12 -070038 return VB2_ERROR_EX_READ_RESOURCE_UNIMPLEMENTED;
Randall Spanglerda2b49c2014-06-10 17:03:40 -070039}
Julius Wernerf10e9092014-12-16 19:24:54 -080040
41__attribute__((weak))
42int vb2ex_hwcrypto_digest_init(enum vb2_hash_algorithm hash_alg,
43 uint32_t data_size)
44{
45 return VB2_ERROR_EX_HWCRYPTO_UNSUPPORTED;
46}
47
48__attribute__((weak))
49int vb2ex_hwcrypto_digest_extend(const uint8_t *buf,
50 uint32_t size)
51{
52 return VB2_ERROR_SHA_EXTEND_ALGORITHM; /* Should not be called. */
53}
54
55__attribute__((weak))
56int vb2ex_hwcrypto_digest_finalize(uint8_t *digest,
57 uint32_t digest_size)
58{
59 return VB2_ERROR_SHA_FINALIZE_ALGORITHM; /* Should not be called. */
60}