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_scanner_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 <ietf/ietf_attr_port_filter.h>
23 #include <tncif_names.h>
24 #include <tncif_pa_subtypes.h>
27 #include <utils/lexparser.h>
34 static const char imc_name
[] = "Scanner";
36 #define IMC_VENDOR_ID PEN_ITA
37 #define IMC_SUBTYPE PA_SUBTYPE_ITA_SCANNER
39 static imc_agent_t
*imc_scanner
;
42 * see section 3.7.1 of TCG TNC IF-IMC Specification 1.2
44 TNC_Result
TNC_IMC_Initialize(TNC_IMCID imc_id
,
45 TNC_Version min_version
,
46 TNC_Version max_version
,
47 TNC_Version
*actual_version
)
51 DBG1(DBG_IMC
, "IMC \"%s\" has already been initialized", imc_name
);
52 return TNC_RESULT_ALREADY_INITIALIZED
;
54 imc_scanner
= imc_agent_create(imc_name
, IMC_VENDOR_ID
, IMC_SUBTYPE
,
55 imc_id
, actual_version
);
58 return TNC_RESULT_FATAL
;
60 if (min_version
> TNC_IFIMC_VERSION_1
|| max_version
< TNC_IFIMC_VERSION_1
)
62 DBG1(DBG_IMC
, "no common IF-IMC version");
63 return TNC_RESULT_NO_COMMON_VERSION
;
65 return TNC_RESULT_SUCCESS
;
69 * see section 3.7.2 of TCG TNC IF-IMC Specification 1.2
71 TNC_Result
TNC_IMC_NotifyConnectionChange(TNC_IMCID imc_id
,
72 TNC_ConnectionID connection_id
,
73 TNC_ConnectionState new_state
)
79 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
80 return TNC_RESULT_NOT_INITIALIZED
;
84 case TNC_CONNECTION_STATE_CREATE
:
85 state
= imc_scanner_state_create(connection_id
);
86 return imc_scanner
->create_state(imc_scanner
, state
);
87 case TNC_CONNECTION_STATE_DELETE
:
88 return imc_scanner
->delete_state(imc_scanner
, connection_id
);
90 return imc_scanner
->change_state(imc_scanner
, connection_id
,
96 * Determine all TCP and UDP server sockets listening on physical interfaces
98 static bool do_netstat(ietf_attr_port_filter_t
*attr
)
104 bool success
= FALSE
;
105 const char loopback_v4
[] = "127.0.0.1";
106 const char loopback_v6
[] = "::1";
108 /* Open a pipe stream for reading the output of the netstat commmand */
109 file
= popen("/bin/netstat -n -l -p -4 -6 --inet", "r");
112 DBG1(DBG_IMC
, "Failed to run netstat command");
116 /* Read the output a line at a time */
117 while (fgets(buf
, BUF_LEN
-1, file
))
120 u_int8_t new_protocol
, protocol
;
121 u_int16_t new_port
, port
;
123 enumerator_t
*enumerator
;
124 bool allowed
, found
= FALSE
;
126 DBG2(DBG_IMC
, "%.*s", strlen(buf
)-1, buf
);
130 /* skip the first two header lines */
133 line
= chunk_create(buf
, strlen(buf
));
135 /* Extract the IP protocol type */
136 if (!extract_token(&token
, ' ', &line
))
138 DBG1(DBG_IMC
, "Protocol field in netstat output not found");
141 if (match("tcp", &token
) || match("tcp6", &token
))
143 new_protocol
= IPPROTO_TCP
;
145 else if (match("udp", &token
) || match("udp6", &token
))
147 new_protocol
= IPPROTO_UDP
;
151 DBG1(DBG_IMC
, "Skipped unknown IP protocol in netstat output");
155 /* Skip the Recv-Q and Send-Q fields */
156 for (i
= 0; i
< 3; i
++)
158 if (!eat_whitespace(&line
) || !extract_token(&token
, ' ', &line
))
166 DBG1(DBG_IMC
, "Local Address field in netstat output not found");
170 /* Find the local port appended to the local address */
171 pos
= token
.ptr
+ token
.len
;
172 while (*--pos
!= ':' && --token
.len
);
175 DBG1(DBG_IMC
, "Local port field in netstat output not found");
180 /* ignore ports of IPv4 and IPv6 loopback interfaces */
181 if ((token
.len
== strlen(loopback_v4
) &&
182 memeq(loopback_v4
, token
.ptr
, token
.len
)) ||
183 (token
.len
== strlen(loopback_v6
) &&
184 memeq(loopback_v6
, token
.ptr
, token
.len
)))
189 /* convert the port string to an integer */
190 new_port
= atoi(pos
+1);
192 /* check if the there is already a port entry */
193 enumerator
= attr
->create_port_enumerator(attr
);
194 while (enumerator
->enumerate(enumerator
, &allowed
, &protocol
, &port
))
196 if (new_port
== port
&& new_protocol
== protocol
)
201 enumerator
->destroy(enumerator
);
203 /* Skip the duplicate port entry */
209 /* Add new port entry */
210 attr
->add_port(attr
, FALSE
, new_protocol
, new_port
);
213 /* Successfully completed the parsing of the netstat output */
217 /* Close the pipe stream */
222 static TNC_Result
send_message(TNC_ConnectionID connection_id
)
226 ietf_attr_port_filter_t
*attr_port_filter
;
229 attr
= ietf_attr_port_filter_create();
230 attr
->set_noskip_flag(attr
, TRUE
);
231 attr_port_filter
= (ietf_attr_port_filter_t
*)attr
;
232 if (!do_netstat(attr_port_filter
))
235 return TNC_RESULT_FATAL
;
237 msg
= pa_tnc_msg_create();
238 msg
->add_attribute(msg
, attr
);
240 result
= imc_scanner
->send_message(imc_scanner
, connection_id
,
241 msg
->get_encoding(msg
));
248 * see section 3.7.3 of TCG TNC IF-IMC Specification 1.2
250 TNC_Result
TNC_IMC_BeginHandshake(TNC_IMCID imc_id
,
251 TNC_ConnectionID connection_id
)
255 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
256 return TNC_RESULT_NOT_INITIALIZED
;
258 return send_message(connection_id
);
262 * see section 3.7.4 of TCG TNC IF-IMC Specification 1.2
264 TNC_Result
TNC_IMC_ReceiveMessage(TNC_IMCID imc_id
,
265 TNC_ConnectionID connection_id
,
266 TNC_BufferReference msg
,
268 TNC_MessageType msg_type
)
270 pa_tnc_msg_t
*pa_tnc_msg
;
272 enumerator_t
*enumerator
;
274 bool fatal_error
= FALSE
;
278 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
279 return TNC_RESULT_NOT_INITIALIZED
;
282 /* parse received PA-TNC message and automatically handle any errors */
283 result
= imc_scanner
->receive_message(imc_scanner
, connection_id
,
284 chunk_create(msg
, msg_len
), msg_type
,
287 /* no parsed PA-TNC attributes available if an error occurred */
293 /* analyze PA-TNC attributes */
294 enumerator
= pa_tnc_msg
->create_attribute_enumerator(pa_tnc_msg
);
295 while (enumerator
->enumerate(enumerator
, &attr
))
297 ietf_attr_pa_tnc_error_t
*error_attr
;
298 pa_tnc_error_code_t error_code
;
299 chunk_t msg_info
, attr_info
;
302 if (attr
->get_vendor_id(attr
) != PEN_IETF
&&
303 attr
->get_type(attr
) != IETF_ATTR_PA_TNC_ERROR
)
308 error_attr
= (ietf_attr_pa_tnc_error_t
*)attr
;
309 error_code
= error_attr
->get_error_code(error_attr
);
310 msg_info
= error_attr
->get_msg_info(error_attr
);
311 DBG1(DBG_IMC
, "received PA-TNC error '%N' concerning message %#B",
312 pa_tnc_error_code_names
, error_code
, &msg_info
);
316 case PA_ERROR_INVALID_PARAMETER
:
317 offset
= error_attr
->get_offset(error_attr
);
318 DBG1(DBG_IMC
, " occurred at offset of %u bytes", offset
);
320 case PA_ERROR_ATTR_TYPE_NOT_SUPPORTED
:
321 attr_info
= error_attr
->get_attr_info(error_attr
);
322 DBG1(DBG_IMC
, " unsupported attribute %#B", &attr_info
);
329 enumerator
->destroy(enumerator
);
330 pa_tnc_msg
->destroy(pa_tnc_msg
);
332 /* if no error occurred then always return the same response */
333 return fatal_error ? TNC_RESULT_FATAL
: send_message(connection_id
);
337 * see section 3.7.5 of TCG TNC IF-IMC Specification 1.2
339 TNC_Result
TNC_IMC_BatchEnding(TNC_IMCID imc_id
,
340 TNC_ConnectionID connection_id
)
344 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
345 return TNC_RESULT_NOT_INITIALIZED
;
347 return TNC_RESULT_SUCCESS
;
351 * see section 3.7.6 of TCG TNC IF-IMC Specification 1.2
353 TNC_Result
TNC_IMC_Terminate(TNC_IMCID imc_id
)
357 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
358 return TNC_RESULT_NOT_INITIALIZED
;
360 imc_scanner
->destroy(imc_scanner
);
363 return TNC_RESULT_SUCCESS
;
367 * see section 4.2.8.1 of TCG TNC IF-IMC Specification 1.2
369 TNC_Result
TNC_IMC_ProvideBindFunction(TNC_IMCID imc_id
,
370 TNC_TNCC_BindFunctionPointer bind_function
)
374 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
375 return TNC_RESULT_NOT_INITIALIZED
;
377 return imc_scanner
->bind_functions(imc_scanner
, bind_function
);