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 <ita/ita_attr_command.h>
20 #include <tnc/pen/pen.h>
25 static const char imc_name
[] = "Test";
27 #define IMC_VENDOR_ID PEN_ITA
28 #define IMC_SUBTYPE 0x01
30 static imc_agent_t
*imc_test
;
33 * see section 3.7.1 of TCG TNC IF-IMC Specification 1.2
35 TNC_Result
TNC_IMC_Initialize(TNC_IMCID imc_id
,
36 TNC_Version min_version
,
37 TNC_Version max_version
,
38 TNC_Version
*actual_version
)
42 DBG1(DBG_IMC
, "IMC \"%s\" has already been initialized", imc_name
);
43 return TNC_RESULT_ALREADY_INITIALIZED
;
45 if (min_version
> TNC_IFIMC_VERSION_1
|| max_version
< TNC_IFIMC_VERSION_1
)
47 DBG1(DBG_IMC
, "no common IF-IMC version");
48 return TNC_RESULT_NO_COMMON_VERSION
;
50 imc_test
= imc_agent_create(imc_name
, IMC_VENDOR_ID
, IMC_SUBTYPE
,
51 imc_id
, actual_version
);
52 return TNC_RESULT_SUCCESS
;
56 * see section 3.7.2 of TCG TNC IF-IMC Specification 1.2
58 TNC_Result
TNC_IMC_NotifyConnectionChange(TNC_IMCID imc_id
,
59 TNC_ConnectionID connection_id
,
60 TNC_ConnectionState new_state
)
66 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
67 return TNC_RESULT_NOT_INITIALIZED
;
71 case TNC_CONNECTION_STATE_CREATE
:
72 state
= imc_test_state_create(connection_id
);
73 return imc_test
->create_state(imc_test
, state
);
74 case TNC_CONNECTION_STATE_DELETE
:
75 return imc_test
->delete_state(imc_test
, connection_id
);
77 return imc_test
->change_state(imc_test
, connection_id
, new_state
);
81 static TNC_Result
send_message(TNC_ConnectionID connection_id
)
88 command
= lib
->settings
->get_str(lib
->settings
, "imc-test.command", "none");
89 attr
= ita_attr_command_create(command
);
90 attr
->set_noskip_flag(attr
, TRUE
);
91 msg
= pa_tnc_msg_create();
92 msg
->add_attribute(msg
, attr
);
94 result
= imc_test
->send_message(imc_test
, connection_id
,
95 msg
->get_encoding(msg
));
102 * see section 3.7.3 of TCG TNC IF-IMC Specification 1.2
104 TNC_Result
TNC_IMC_BeginHandshake(TNC_IMCID imc_id
,
105 TNC_ConnectionID connection_id
)
109 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
110 return TNC_RESULT_NOT_INITIALIZED
;
112 return send_message(connection_id
);
116 * see section 3.7.4 of TCG TNC IF-IMC Specification 1.2
118 TNC_Result
TNC_IMC_ReceiveMessage(TNC_IMCID imc_id
,
119 TNC_ConnectionID connection_id
,
120 TNC_BufferReference msg
,
122 TNC_MessageType msg_type
)
124 pa_tnc_msg_t
*pa_tnc_msg
;
129 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
130 return TNC_RESULT_NOT_INITIALIZED
;
133 /* process received message */
134 DBG2(DBG_IMC
, "IMC %u \"%s\" received message type 0x%08x for Connection ID %u",
135 imc_id
, imc_name
, msg_type
, connection_id
);
136 pa_tnc_msg
= pa_tnc_msg_create_from_data(chunk_create(msg
, msg_len
));
137 status
= pa_tnc_msg
->process(pa_tnc_msg
);
138 pa_tnc_msg
->destroy(pa_tnc_msg
);
139 if (status
!= SUCCESS
)
141 return TNC_RESULT_FATAL
;
144 /* always return the same response */
145 return send_message(connection_id
);
149 * see section 3.7.5 of TCG TNC IF-IMC Specification 1.2
151 TNC_Result
TNC_IMC_BatchEnding(TNC_IMCID imc_id
,
152 TNC_ConnectionID connection_id
)
156 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
157 return TNC_RESULT_NOT_INITIALIZED
;
159 return TNC_RESULT_SUCCESS
;
163 * see section 3.7.6 of TCG TNC IF-IMC Specification 1.2
165 TNC_Result
TNC_IMC_Terminate(TNC_IMCID imc_id
)
169 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
170 return TNC_RESULT_NOT_INITIALIZED
;
172 imc_test
->destroy(imc_test
);
175 return TNC_RESULT_SUCCESS
;
179 * see section 4.2.8.1 of TCG TNC IF-IMC Specification 1.2
181 TNC_Result
TNC_IMC_ProvideBindFunction(TNC_IMCID imc_id
,
182 TNC_TNCC_BindFunctionPointer bind_function
)
186 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
187 return TNC_RESULT_NOT_INITIALIZED
;
189 return imc_test
->bind_functions(imc_test
, bind_function
);