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
|
/********************************************************************************/
/* */
/* TSS and Application Utilities */
/* Written by Ken Goldman */
/* IBM Thomas J. Watson Research Center */
/* $Id: tssutils.c 978 2017-04-04 15:37:15Z kgoldman $ */
/* */
/* (c) Copyright IBM Corporation 2015. */
/* */
/* All rights reserved. */
/* */
/* Redistribution and use in source and binary forms, with or without */
/* modification, are permitted provided that the following conditions are */
/* met: */
/* */
/* Redistributions of source code must retain the above copyright notice, */
/* this list of conditions and the following disclaimer. */
/* */
/* Redistributions in binary form must reproduce the above copyright */
/* notice, this list of conditions and the following disclaimer in the */
/* documentation and/or other materials provided with the distribution. */
/* */
/* Neither the names of the IBM Corporation nor the names of its */
/* contributors may be used to endorse or promote products derived from */
/* this software without specific prior written permission. */
/* */
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
/* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
/* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
/* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
/* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
/* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
/* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
/* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
/* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
/* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
/* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
/********************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#ifdef TPM_POSIX
#include <netinet/in.h>
#endif
#ifdef TPM_WINDOWS
#include <winsock2.h>
#endif
#include <tss2/tssutils.h>
#include <tss2/tssresponsecode.h>
#include <tss2/tsserror.h>
#include <tss2/tssprint.h>
#define TSS_ALLOC_MAX 0x10000 /* 64k bytes */
extern int tssVerbose;
extern int tssVverbose;
/* TSS_Malloc() is a general purpose wrapper around malloc()
*/
TPM_RC TSS_Malloc(unsigned char **buffer, uint32_t size)
{
TPM_RC rc = 0;
/* assertion test. The coding style requires that all allocated pointers are initialized to
NULL. A non-NULL value indicates either a missing initialization or a pointer reuse (a
memory leak). */
if (rc == 0) {
if (*buffer != NULL) {
if (tssVerbose)
printf("TSS_Malloc: Error (fatal), *buffer %p should be NULL before malloc\n",
*buffer);
rc = TSS_RC_ALLOC_INPUT;
}
}
/* verify that the size is not "too large" */
if (rc == 0) {
if (size > TSS_ALLOC_MAX) {
if (tssVerbose) printf("TSS_Malloc: Error, size %u greater than maximum allowed\n",
size);
rc = TSS_RC_MALLOC_SIZE;
}
}
/* verify that the size is not 0, this would be implementation defined and should never occur */
if (rc == 0) {
if (size == 0) {
if (tssVerbose) printf("TSS_Malloc: Error (fatal), size is zero\n");
rc = TSS_RC_MALLOC_SIZE;
}
}
if (rc == 0) {
*buffer = malloc(size);
if (*buffer == NULL) {
if (tssVerbose) printf("TSS_Malloc: Error allocating %u bytes\n", size);
rc = TSS_RC_OUT_OF_MEMORY;
}
}
return rc;
}
TPM_RC TSS_Realloc(unsigned char **buffer, uint32_t size)
{
TPM_RC rc = 0;
unsigned char *tmpptr;
/* verify that the size is not "too large" */
if (rc == 0) {
if (size > TSS_ALLOC_MAX) {
if (tssVerbose) printf("TSS_Realloc: Error, size %u greater than maximum allowed\n",
size);
rc = TSS_RC_MALLOC_SIZE;
}
}
/* verify that the size is not 0, this should never occur */
if (rc == 0) {
if (size == 0) {
if (tssVerbose) printf("TSS_Malloc: Error (fatal), size is zero\n");
rc = TSS_RC_MALLOC_SIZE;
}
}
if (rc == 0) {
tmpptr = realloc(*buffer, size);
if (tmpptr == NULL) {
if (tssVerbose) printf("TSS_Realloc: Error reallocating %u bytes\n", size);
rc = TSS_RC_OUT_OF_MEMORY;
}
}
if (rc == 0) {
*buffer = tmpptr;
}
return rc;
}
/* TSS_Structure_Marshal() is a general purpose "marshal a structure" function.
It marshals the structure using "marshalFunction", and returns the malloc'ed stream.
*/
TPM_RC TSS_Structure_Marshal(uint8_t **buffer, /* freed by caller */
uint16_t *written,
void *structure,
MarshalFunction_t marshalFunction)
{
TPM_RC rc = 0;
uint8_t *buffer1 = NULL; /* for marshaling, moves pointer */
/* marshal once to calculates the byte length */
if (rc == 0) {
*written = 0;
rc = marshalFunction(structure, written, NULL, NULL);
}
if (rc == 0) {
rc = TSS_Malloc(buffer, *written);
}
if (rc == 0) {
buffer1 = *buffer;
*written = 0;
rc = marshalFunction(structure, written, &buffer1, NULL);
}
return rc;
}
/* TSS_TPM2B_Copy() copies source to target if the source fits the target size */
TPM_RC TSS_TPM2B_Copy(TPM2B *target, TPM2B *source, uint16_t targetSize)
{
TPM_RC rc = 0;
if (rc == 0) {
if (source->size > targetSize) {
if (tssVerbose) printf("TSS_TPM2B_Copy: size %u greater than target %u\n",
source->size, targetSize);
rc = TSS_RC_INSUFFICIENT_BUFFER;
}
}
if (rc == 0) {
memmove(target->buffer, source->buffer, source->size);
target->size = source->size;
}
return rc;
}
/* TSS_TPM2B_Append() appends the source TPM2B to the target TPM2B.
It checks that the source fits the target size. The target size is the total size, not the size
remaining.
*/
TPM_RC TSS_TPM2B_Append(TPM2B *target, TPM2B *source, uint16_t targetSize)
{
TPM_RC rc = 0;
if (rc == 0) {
if (target->size + source->size > targetSize) {
if (tssVerbose) printf("TSS_TPM2B_Append: size %u greater than target %u\n",
target->size + source->size, targetSize);
rc = TSS_RC_INSUFFICIENT_BUFFER;
}
}
if (rc == 0) {
memmove(target->buffer + target->size, source->buffer, source->size);
target->size += source->size;
}
return rc;
}
/* TSS_TPM2B_Create() copies the buffer of 'size' into target, checking targetSize */
TPM_RC TSS_TPM2B_Create(TPM2B *target, uint8_t *buffer, uint16_t size, uint16_t targetSize)
{
TPM_RC rc = 0;
if (rc == 0) {
if (size > targetSize) {
if (tssVerbose) printf("TSS_TPM2B_Create: size %u greater than target %u\n",
size, targetSize);
rc = TSS_RC_INSUFFICIENT_BUFFER;
}
}
if (rc == 0) {
target->size = size;
memmove(target->buffer, buffer, size);
}
return rc;
}
/* TSS_TPM2B_CreateUint32() creates a TPM2B from a uint32_t, typically a permanent handle */
TPM_RC TSS_TPM2B_CreateUint32(TPM2B *target, uint32_t source, uint16_t targetSize)
{
TPM_RC rc = 0;
if (rc == 0) {
if (sizeof(uint32_t) > targetSize) {
if (tssVerbose) printf("TSS_TPM2B_CreateUint32: size %u greater than target %u\n",
(unsigned int)sizeof(uint32_t), targetSize);
rc = TSS_RC_INSUFFICIENT_BUFFER;
}
}
if (rc == 0) {
uint32_t sourceNbo = htonl(source);
memmove(target->buffer, (uint8_t *)&sourceNbo, sizeof(uint32_t));
target->size = sizeof(uint32_t);
}
return rc;
}
/* TSS_TPM2B_StringCopy() copies a NUL terminated string (omitting the NUL) from source to target.
It checks that the string will fit in targetSize.
If source is NULL, creates a TPM2B of size 0.
*/
TPM_RC TSS_TPM2B_StringCopy(TPM2B *target, const char *source, uint16_t targetSize)
{
TPM_RC rc = 0;
size_t length;
if (source != NULL) {
if (rc == 0) {
length = strlen(source);
if (length > targetSize) {
if (tssVerbose) printf("TSS_TPM2B_StringCopy: size %u greater than target %u\n",
(unsigned int)length, targetSize);
rc = TSS_RC_INSUFFICIENT_BUFFER;
}
}
if (rc == 0) {
target->size = length;
memcpy(target->buffer, source, length);
}
}
else {
target->size = 0;
}
return rc;
}
int TSS_TPM2B_Compare(TPM2B *expect, TPM2B *actual)
{
int irc;
int match = YES;
if (match == YES) {
if (expect->size != actual->size) {
match = NO;
}
}
if (match == YES) {
irc = memcmp(expect->buffer, actual->buffer, expect->size);
if (irc != 0) {
match = NO;
}
}
return match;
}
|