2 * Copyright (C) 2011 Sansar Choinyambuu
3 * HSR Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "imc_attestation_state.h"
17 #include "imc_attestation_process.h"
19 #include <imc/imc_agent.h>
20 #include <pa_tnc/pa_tnc_msg.h>
21 #include <ietf/ietf_attr.h>
22 #include <ietf/ietf_attr_pa_tnc_error.h>
23 #include <ietf/ietf_attr_product_info.h>
27 #include <pts/pts_error.h>
29 #include <tcg/tcg_pts_attr_proto_caps.h>
30 #include <tcg/tcg_pts_attr_meas_algo.h>
32 #include <tncif_pa_subtypes.h>
36 #include <utils/linked_list.h>
40 static const char imc_name
[] = "Attestation";
42 #define IMC_VENDOR_ID PEN_TCG
43 #define IMC_SUBTYPE PA_SUBTYPE_TCG_PTS
45 static imc_agent_t
*imc_attestation
;
48 * Supported PTS measurement algorithms
50 static pts_meas_algorithms_t supported_algorithms
= PTS_MEAS_ALGO_NONE
;
53 * Supported PTS Diffie Hellman Groups
55 static pts_dh_group_t supported_dh_groups
= PTS_DH_GROUP_NONE
;
58 * see section 3.8.1 of TCG TNC IF-IMC Specification 1.3
60 TNC_Result
TNC_IMC_Initialize(TNC_IMCID imc_id
,
61 TNC_Version min_version
,
62 TNC_Version max_version
,
63 TNC_Version
*actual_version
)
67 DBG1(DBG_IMC
, "IMC \"%s\" has already been initialized", imc_name
);
68 return TNC_RESULT_ALREADY_INITIALIZED
;
70 if (!pts_meas_algo_probe(&supported_algorithms
) ||
71 !pts_dh_group_probe(&supported_dh_groups
))
73 return TNC_RESULT_FATAL
;
75 imc_attestation
= imc_agent_create(imc_name
, IMC_VENDOR_ID
, IMC_SUBTYPE
,
76 imc_id
, actual_version
);
79 return TNC_RESULT_FATAL
;
84 if (min_version
> TNC_IFIMC_VERSION_1
|| max_version
< TNC_IFIMC_VERSION_1
)
86 DBG1(DBG_IMC
, "no common IF-IMC version");
87 return TNC_RESULT_NO_COMMON_VERSION
;
89 return TNC_RESULT_SUCCESS
;
93 * see section 3.8.2 of TCG TNC IF-IMC Specification 1.3
95 TNC_Result
TNC_IMC_NotifyConnectionChange(TNC_IMCID imc_id
,
96 TNC_ConnectionID connection_id
,
97 TNC_ConnectionState new_state
)
101 if (!imc_attestation
)
103 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
104 return TNC_RESULT_NOT_INITIALIZED
;
108 case TNC_CONNECTION_STATE_CREATE
:
109 state
= imc_attestation_state_create(connection_id
);
110 return imc_attestation
->create_state(imc_attestation
, state
);
111 case TNC_CONNECTION_STATE_DELETE
:
112 return imc_attestation
->delete_state(imc_attestation
, connection_id
);
113 case TNC_CONNECTION_STATE_HANDSHAKE
:
114 case TNC_CONNECTION_STATE_ACCESS_ISOLATED
:
115 case TNC_CONNECTION_STATE_ACCESS_NONE
:
117 return imc_attestation
->change_state(imc_attestation
, connection_id
,
124 * see section 3.8.3 of TCG TNC IF-IMC Specification 1.3
126 TNC_Result
TNC_IMC_BeginHandshake(TNC_IMCID imc_id
,
127 TNC_ConnectionID connection_id
)
130 imc_attestation_state_t
*attestation_state
;
133 TNC_Result result
= TNC_RESULT_SUCCESS
;
135 if (!imc_attestation
)
137 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
138 return TNC_RESULT_NOT_INITIALIZED
;
141 /* get current IMC state */
142 if (!imc_attestation
->get_state(imc_attestation
, connection_id
, &state
))
144 return TNC_RESULT_FATAL
;
146 attestation_state
= (imc_attestation_state_t
*)state
;
147 pts
= attestation_state
->get_pts(attestation_state
);
149 platform_info
= pts
->get_platform_info(pts
);
152 linked_list_t
*attr_list
;
155 attr_list
= linked_list_create();
156 attr
= ietf_attr_product_info_create(0, 0, platform_info
);
157 attr_list
->insert_last(attr_list
, attr
);
158 result
= imc_attestation
->send_message(imc_attestation
, connection_id
,
159 FALSE
, 0, TNC_IMVID_ANY
, attr_list
);
160 attr_list
->destroy(attr_list
);
166 static TNC_Result
receive_message(TNC_IMCID imc_id
,
167 TNC_ConnectionID connection_id
,
168 TNC_UInt32 msg_flags
,
170 TNC_VendorID msg_vid
,
171 TNC_MessageSubtype msg_subtype
,
172 TNC_UInt32 src_imv_id
,
173 TNC_UInt32 dst_imc_id
)
175 pa_tnc_msg_t
*pa_tnc_msg
;
177 linked_list_t
*attr_list
;
179 imc_attestation_state_t
*attestation_state
;
180 enumerator_t
*enumerator
;
183 if (!imc_attestation
)
185 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
186 return TNC_RESULT_NOT_INITIALIZED
;
189 /* get current IMC state */
190 if (!imc_attestation
->get_state(imc_attestation
, connection_id
, &state
))
192 return TNC_RESULT_FATAL
;
194 attestation_state
= (imc_attestation_state_t
*)state
;
196 /* parse received PA-TNC message and automatically handle any errors */
197 result
= imc_attestation
->receive_message(imc_attestation
, state
, msg
,
198 msg_vid
, msg_subtype
, src_imv_id
, dst_imc_id
, &pa_tnc_msg
);
200 /* no parsed PA-TNC attributes available if an error occurred */
206 /* preprocess any IETF standard error attributes */
207 result
= pa_tnc_msg
->process_ietf_std_errors(pa_tnc_msg
) ?
208 TNC_RESULT_FATAL
: TNC_RESULT_SUCCESS
;
210 attr_list
= linked_list_create();
212 /* analyze PA-TNC attributes */
213 enumerator
= pa_tnc_msg
->create_attribute_enumerator(pa_tnc_msg
);
214 while (enumerator
->enumerate(enumerator
, &attr
))
216 if (attr
->get_vendor_id(attr
) == PEN_IETF
&&
217 attr
->get_type(attr
) == IETF_ATTR_PA_TNC_ERROR
)
219 ietf_attr_pa_tnc_error_t
*error_attr
;
220 pen_t error_vendor_id
;
221 pa_tnc_error_code_t error_code
;
224 error_attr
= (ietf_attr_pa_tnc_error_t
*)attr
;
225 error_vendor_id
= error_attr
->get_vendor_id(error_attr
);
227 if (error_vendor_id
== PEN_TCG
)
229 error_code
= error_attr
->get_error_code(error_attr
);
230 msg_info
= error_attr
->get_msg_info(error_attr
);
232 DBG1(DBG_IMC
, "received TCG-PTS error '%N'",
233 pts_error_code_names
, error_code
);
234 DBG1(DBG_IMC
, "error information: %B", &msg_info
);
236 result
= TNC_RESULT_FATAL
;
239 else if (attr
->get_vendor_id(attr
) == PEN_TCG
)
241 if (!imc_attestation_process(attr
, attr_list
, attestation_state
,
242 supported_algorithms
, supported_dh_groups
))
244 result
= TNC_RESULT_FATAL
;
249 enumerator
->destroy(enumerator
);
250 pa_tnc_msg
->destroy(pa_tnc_msg
);
252 if (result
== TNC_RESULT_SUCCESS
&& attr_list
->get_count(attr_list
))
254 result
= imc_attestation
->send_message(imc_attestation
, connection_id
,
255 FALSE
, 0, TNC_IMVID_ANY
, attr_list
);
257 attr_list
->destroy(attr_list
);
263 * see section 3.8.4 of TCG TNC IF-IMC Specification 1.3
265 TNC_Result
TNC_IMC_ReceiveMessage(TNC_IMCID imc_id
,
266 TNC_ConnectionID connection_id
,
267 TNC_BufferReference msg
,
269 TNC_MessageType msg_type
)
271 TNC_VendorID msg_vid
;
272 TNC_MessageSubtype msg_subtype
;
274 msg_vid
= msg_type
>> 8;
275 msg_subtype
= msg_type
& TNC_SUBTYPE_ANY
;
277 return receive_message(imc_id
, connection_id
, 0, chunk_create(msg
, msg_len
),
278 msg_vid
, msg_subtype
, 0, TNC_IMCID_ANY
);
282 * see section 3.8.6 of TCG TNC IF-IMV Specification 1.3
284 TNC_Result
TNC_IMC_ReceiveMessageLong(TNC_IMCID imc_id
,
285 TNC_ConnectionID connection_id
,
286 TNC_UInt32 msg_flags
,
287 TNC_BufferReference msg
,
289 TNC_VendorID msg_vid
,
290 TNC_MessageSubtype msg_subtype
,
291 TNC_UInt32 src_imv_id
,
292 TNC_UInt32 dst_imc_id
)
294 return receive_message(imc_id
, connection_id
, msg_flags
,
295 chunk_create(msg
, msg_len
), msg_vid
, msg_subtype
,
296 src_imv_id
, dst_imc_id
);
300 * see section 3.8.7 of TCG TNC IF-IMC Specification 1.3
302 TNC_Result
TNC_IMC_BatchEnding(TNC_IMCID imc_id
,
303 TNC_ConnectionID connection_id
)
305 if (!imc_attestation
)
307 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
308 return TNC_RESULT_NOT_INITIALIZED
;
310 return TNC_RESULT_SUCCESS
;
314 * see section 3.8.8 of TCG TNC IF-IMC Specification 1.3
316 TNC_Result
TNC_IMC_Terminate(TNC_IMCID imc_id
)
318 if (!imc_attestation
)
320 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
321 return TNC_RESULT_NOT_INITIALIZED
;
326 imc_attestation
->destroy(imc_attestation
);
327 imc_attestation
= NULL
;
329 return TNC_RESULT_SUCCESS
;
333 * see section 4.2.8.1 of TCG TNC IF-IMC Specification 1.3
335 TNC_Result
TNC_IMC_ProvideBindFunction(TNC_IMCID imc_id
,
336 TNC_TNCC_BindFunctionPointer bind_function
)
338 if (!imc_attestation
)
340 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
341 return TNC_RESULT_NOT_INITIALIZED
;
343 return imc_attestation
->bind_functions(imc_attestation
, bind_function
);