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 "imv_attestation_state.h"
18 #include <utils/lexparser.h>
21 typedef struct private_imv_attestation_state_t private_imv_attestation_state_t
;
24 * Private data of an imv_attestation_state_t object.
26 struct private_imv_attestation_state_t
{
29 * Public members of imv_attestation_state_t
31 imv_attestation_state_t
public;
36 TNC_ConnectionID connection_id
;
39 * TNCCS connection state
41 TNC_ConnectionState state
;
44 * IMV Attestation handshake state
46 imv_attestation_handshake_state_t handshake_state
;
49 * IMV action recommendation
51 TNC_IMV_Action_Recommendation rec
;
54 * IMV evaluation result
56 TNC_IMV_Evaluation_Result eval
;
65 typedef struct entry_t entry_t
;
68 * Define an internal reason string entry
76 * Table of multi-lingual reason string entries
78 static entry_t reasons
[] = {
79 { "en", "IMC Attestation Measurement/s of requested file didn't match" },
80 { "mn", "IMC Attestation Шалгахаар тохируулсан файлуудын хэмжилтүүд таарсангүй" },
81 { "de", "IMC Attestation Messung/en von angefordeten Datein stimmt nicht überein" },
84 METHOD(imv_state_t
, get_connection_id
, TNC_ConnectionID
,
85 private_imv_attestation_state_t
*this)
87 return this->connection_id
;
90 METHOD(imv_state_t
, change_state
, void,
91 private_imv_attestation_state_t
*this, TNC_ConnectionState new_state
)
93 this->state
= new_state
;
96 METHOD(imv_state_t
, get_recommendation
, void,
97 private_imv_attestation_state_t
*this, TNC_IMV_Action_Recommendation
*rec
,
98 TNC_IMV_Evaluation_Result
*eval
)
104 METHOD(imv_state_t
, set_recommendation
, void,
105 private_imv_attestation_state_t
*this, TNC_IMV_Action_Recommendation rec
,
106 TNC_IMV_Evaluation_Result eval
)
112 METHOD(imv_state_t
, get_reason_string
, bool,
113 private_imv_attestation_state_t
*this, chunk_t preferred_language
,
114 chunk_t
*reason_string
, chunk_t
*reason_language
)
116 chunk_t pref_lang
, lang
;
120 while (eat_whitespace(&preferred_language
))
122 if (!extract_token(&pref_lang
, ',', &preferred_language
))
124 /* last entry in a comma-separated list or single entry */
125 pref_lang
= preferred_language
;
128 /* eat trailing whitespace */
129 pos
= pref_lang
.ptr
+ pref_lang
.len
- 1;
130 while (pref_lang
.len
&& *pos
-- == ' ')
135 for (i
= 0 ; i
< countof(reasons
); i
++)
137 lang
= chunk_create(reasons
[i
].lang
, strlen(reasons
[i
].lang
));
138 if (chunk_equals(lang
, pref_lang
))
140 *reason_language
= lang
;
141 *reason_string
= chunk_create(reasons
[i
].string
,
142 strlen(reasons
[i
].string
));
148 /* no preferred language match found - use the default language */
149 *reason_string
= chunk_create(reasons
[0].string
,
150 strlen(reasons
[0].string
));
151 *reason_language
= chunk_create(reasons
[0].lang
,
152 strlen(reasons
[0].lang
));
156 METHOD(imv_state_t
, destroy
, void,
157 private_imv_attestation_state_t
*this)
159 this->pts
->destroy(this->pts
);
163 METHOD(imv_attestation_state_t
, get_handshake_state
, imv_attestation_handshake_state_t
,
164 private_imv_attestation_state_t
*this)
166 return this->handshake_state
;
169 METHOD(imv_attestation_state_t
, set_handshake_state
, void,
170 private_imv_attestation_state_t
*this, imv_attestation_handshake_state_t new_state
)
172 this->handshake_state
= new_state
;
175 METHOD(imv_attestation_state_t
, get_pts
, pts_t
*,
176 private_imv_attestation_state_t
*this)
182 * Described in header.
184 imv_state_t
*imv_attestation_state_create(TNC_ConnectionID connection_id
)
186 private_imv_attestation_state_t
*this;
192 .get_connection_id
= _get_connection_id
,
193 .change_state
= _change_state
,
194 .get_recommendation
= _get_recommendation
,
195 .set_recommendation
= _set_recommendation
,
196 .get_reason_string
= _get_reason_string
,
199 .get_handshake_state
= _get_handshake_state
,
200 .set_handshake_state
= _set_handshake_state
,
203 .connection_id
= connection_id
,
204 .state
= TNC_CONNECTION_STATE_CREATE
,
205 .handshake_state
= IMV_ATTESTATION_STATE_INIT
,
206 .rec
= TNC_IMV_ACTION_RECOMMENDATION_NO_RECOMMENDATION
,
207 .eval
= TNC_IMV_EVALUATION_RESULT_DONT_KNOW
,
208 .pts
= pts_create(FALSE
),
211 platform_info
= lib
->settings
->get_str(lib
->settings
,
212 "libimcv.plugins.imv-attestation.platform_info", NULL
);
215 this->pts
->set_platform_info(this->pts
, platform_info
);
218 return &this->public.interface
;