2 * Copyright (C) 2011 Andreas Steffen, HSR Hochschule fuer Technik Rapperswil
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 #include "imc_test_state.h"
17 #include <imc/imc_agent.h>
18 #include <pa_tnc/pa_tnc_msg.h>
19 #include <ietf/ietf_attr.h>
20 #include <ietf/ietf_attr_pa_tnc_error.h>
21 #include <ita/ita_attr_command.h>
29 static const char imc_name
[] = "Test";
31 #define IMC_VENDOR_ID PEN_ITA
32 #define IMC_SUBTYPE 0x01
34 static imc_agent_t
*imc_test
;
37 * see section 3.7.1 of TCG TNC IF-IMC Specification 1.2
39 TNC_Result
TNC_IMC_Initialize(TNC_IMCID imc_id
,
40 TNC_Version min_version
,
41 TNC_Version max_version
,
42 TNC_Version
*actual_version
)
46 DBG1(DBG_IMC
, "IMC \"%s\" has already been initialized", imc_name
);
47 return TNC_RESULT_ALREADY_INITIALIZED
;
49 imc_test
= imc_agent_create(imc_name
, IMC_VENDOR_ID
, IMC_SUBTYPE
,
50 imc_id
, actual_version
);
53 return TNC_RESULT_FATAL
;
55 if (min_version
> TNC_IFIMC_VERSION_1
|| max_version
< TNC_IFIMC_VERSION_1
)
57 DBG1(DBG_IMC
, "no common IF-IMC version");
58 return TNC_RESULT_NO_COMMON_VERSION
;
60 return TNC_RESULT_SUCCESS
;
64 * see section 3.7.2 of TCG TNC IF-IMC Specification 1.2
66 TNC_Result
TNC_IMC_NotifyConnectionChange(TNC_IMCID imc_id
,
67 TNC_ConnectionID connection_id
,
68 TNC_ConnectionState new_state
)
74 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
75 return TNC_RESULT_NOT_INITIALIZED
;
79 case TNC_CONNECTION_STATE_CREATE
:
80 state
= imc_test_state_create(connection_id
);
81 return imc_test
->create_state(imc_test
, state
);
82 case TNC_CONNECTION_STATE_DELETE
:
83 return imc_test
->delete_state(imc_test
, connection_id
);
85 return imc_test
->change_state(imc_test
, connection_id
, new_state
);
89 static TNC_Result
send_message(TNC_ConnectionID connection_id
)
96 command
= lib
->settings
->get_str(lib
->settings
,
97 "libimcv.plugins.imc-test.command", "none");
98 attr
= ita_attr_command_create(command
);
99 attr
->set_noskip_flag(attr
, TRUE
);
100 msg
= pa_tnc_msg_create();
101 msg
->add_attribute(msg
, attr
);
103 result
= imc_test
->send_message(imc_test
, connection_id
,
104 msg
->get_encoding(msg
));
111 * see section 3.7.3 of TCG TNC IF-IMC Specification 1.2
113 TNC_Result
TNC_IMC_BeginHandshake(TNC_IMCID imc_id
,
114 TNC_ConnectionID connection_id
)
118 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
119 return TNC_RESULT_NOT_INITIALIZED
;
121 return send_message(connection_id
);
125 * see section 3.7.4 of TCG TNC IF-IMC Specification 1.2
127 TNC_Result
TNC_IMC_ReceiveMessage(TNC_IMCID imc_id
,
128 TNC_ConnectionID connection_id
,
129 TNC_BufferReference msg
,
131 TNC_MessageType msg_type
)
133 pa_tnc_msg_t
*pa_tnc_msg
;
135 enumerator_t
*enumerator
;
137 bool fatal_error
= FALSE
;
141 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
142 return TNC_RESULT_NOT_INITIALIZED
;
145 /* parse received PA-TNC message and automatically handle any errors */
146 result
= imc_test
->receive_message(imc_test
, connection_id
,
147 chunk_create(msg
, msg_len
), msg_type
,
150 /* no parsed PA-TNC attributes available if an error occurred */
156 /* analyze PA-TNC attributes */
157 enumerator
= pa_tnc_msg
->create_attribute_enumerator(pa_tnc_msg
);
158 while (enumerator
->enumerate(enumerator
, &attr
))
160 if (attr
->get_vendor_id(attr
) == PEN_IETF
&&
161 attr
->get_type(attr
) == IETF_ATTR_PA_TNC_ERROR
)
163 ietf_attr_pa_tnc_error_t
*error_attr
;
164 pa_tnc_error_code_t error_code
;
165 chunk_t msg_info
, attr_info
;
167 error_attr
= (ietf_attr_pa_tnc_error_t
*)attr
;
168 error_code
= error_attr
->get_error_code(error_attr
);
169 msg_info
= error_attr
->get_msg_info(error_attr
);
171 DBG1(DBG_IMC
, "received PA-TNC error '%N' concerning message %#B",
172 pa_tnc_error_code_names
, error_code
, &msg_info
);
175 case PA_ERROR_ATTR_TYPE_NOT_SUPPORTED
:
176 attr_info
= error_attr
->get_attr_info(error_attr
);
177 DBG1(DBG_IMC
, " unsupported attribute %#B", &attr_info
);
184 else if (attr
->get_vendor_id(attr
) == PEN_ITA
&&
185 attr
->get_type(attr
) == ITA_ATTR_COMMAND
)
187 ita_attr_command_t
*ita_attr
;
190 ita_attr
= (ita_attr_command_t
*)attr
;
191 command
= ita_attr
->get_command(ita_attr
);
194 enumerator
->destroy(enumerator
);
195 pa_tnc_msg
->destroy(pa_tnc_msg
);
197 /* if no error occurred then always return the same response */
198 return fatal_error ? TNC_RESULT_FATAL
: send_message(connection_id
);
202 * see section 3.7.5 of TCG TNC IF-IMC Specification 1.2
204 TNC_Result
TNC_IMC_BatchEnding(TNC_IMCID imc_id
,
205 TNC_ConnectionID connection_id
)
209 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
210 return TNC_RESULT_NOT_INITIALIZED
;
212 return TNC_RESULT_SUCCESS
;
216 * see section 3.7.6 of TCG TNC IF-IMC Specification 1.2
218 TNC_Result
TNC_IMC_Terminate(TNC_IMCID imc_id
)
222 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
223 return TNC_RESULT_NOT_INITIALIZED
;
225 imc_test
->destroy(imc_test
);
228 return TNC_RESULT_SUCCESS
;
232 * see section 4.2.8.1 of TCG TNC IF-IMC Specification 1.2
234 TNC_Result
TNC_IMC_ProvideBindFunction(TNC_IMCID imc_id
,
235 TNC_TNCC_BindFunctionPointer bind_function
)
239 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
240 return TNC_RESULT_NOT_INITIALIZED
;
242 return imc_test
->bind_functions(imc_test
, bind_function
);