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
|
/*
* Licensed Materials - Property of IBM
*
* trousers - An open source TCG Software Stack
*
* (C) Copyright International Business Machines Corp. 2004-2006
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "trousers/tss.h"
#include "trousers/trousers.h"
#include "trousers_types.h"
#include "trousers_types.h"
#include "spi_utils.h"
#include "capabilities.h"
#include "tsplog.h"
#include "tcs_tsp.h"
#include "tspps.h"
#include "tcsd_wrap.h"
#include "tcsd.h"
#include "obj.h"
TSS_RESULT
Tspi_Context_GetCapability(TSS_HCONTEXT tspContext, /* in */
TSS_FLAG capArea, /* in */
UINT32 ulSubCapLength, /* in */
BYTE * rgbSubCap, /* in */
UINT32 * pulRespDataLength, /* out */
BYTE ** prgbRespData) /* out */
{
TSS_RESULT result;
if (prgbRespData == NULL || pulRespDataLength == NULL )
return TSPERR(TSS_E_BAD_PARAMETER);
if (rgbSubCap == NULL && ulSubCapLength != 0)
return TSPERR(TSS_E_BAD_PARAMETER);
if (ulSubCapLength > sizeof(UINT32))
return TSPERR(TSS_E_BAD_PARAMETER);
if (!obj_is_context(tspContext))
return TSPERR(TSS_E_INVALID_HANDLE);
switch (capArea) {
case TSS_TSPCAP_ALG:
case TSS_TSPCAP_RETURNVALUE_INFO:
case TSS_TSPCAP_PLATFORM_INFO:
case TSS_TSPCAP_MANUFACTURER:
if (ulSubCapLength != sizeof(UINT32) || !rgbSubCap)
return TSPERR(TSS_E_BAD_PARAMETER);
/* fall through */
case TSS_TSPCAP_VERSION:
case TSS_TSPCAP_PERSSTORAGE:
result = internal_GetCap(tspContext, capArea,
rgbSubCap ? *(UINT32 *)rgbSubCap : 0,
pulRespDataLength,
prgbRespData);
break;
case TSS_TCSCAP_ALG:
if (ulSubCapLength != sizeof(UINT32) || !rgbSubCap)
return TSPERR(TSS_E_BAD_PARAMETER);
/* fall through */
case TSS_TCSCAP_VERSION:
case TSS_TCSCAP_CACHING:
case TSS_TCSCAP_PERSSTORAGE:
case TSS_TCSCAP_MANUFACTURER:
case TSS_TCSCAP_TRANSPORT:
case TSS_TCSCAP_PLATFORM_CLASS:
result = RPC_GetCapability(tspContext, capArea, ulSubCapLength, rgbSubCap,
pulRespDataLength, prgbRespData);
break;
default:
LogDebug("Invalid capArea: 0x%x", capArea);
result = TSPERR(TSS_E_BAD_PARAMETER);
break;
}
return result;
}
|