2 * Copyright (C) 2011-2012 Andreas Steffen
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_scanner_state.h"
18 #include <imc/imc_agent.h>
19 #include <pa_tnc/pa_tnc_msg.h>
20 #include <ietf/ietf_attr.h>
21 #include <ietf/ietf_attr_pa_tnc_error.h>
22 #include <ietf/ietf_attr_port_filter.h>
23 #include <ietf/ietf_attr_assess_result.h>
25 #include <tncif_pa_subtypes.h>
28 #include <utils/lexparser.h>
35 static const char imc_name
[] = "Scanner";
37 #define IMC_VENDOR_ID PEN_ITA
38 #define IMC_SUBTYPE PA_SUBTYPE_ITA_SCANNER
40 static imc_agent_t
*imc_scanner
;
43 * see section 3.8.1 of TCG TNC IF-IMC Specification 1.3
45 TNC_Result
TNC_IMC_Initialize(TNC_IMCID imc_id
,
46 TNC_Version min_version
,
47 TNC_Version max_version
,
48 TNC_Version
*actual_version
)
52 DBG1(DBG_IMC
, "IMC \"%s\" has already been initialized", imc_name
);
53 return TNC_RESULT_ALREADY_INITIALIZED
;
55 imc_scanner
= imc_agent_create(imc_name
, IMC_VENDOR_ID
, IMC_SUBTYPE
,
56 imc_id
, actual_version
);
59 return TNC_RESULT_FATAL
;
61 if (min_version
> TNC_IFIMC_VERSION_1
|| max_version
< TNC_IFIMC_VERSION_1
)
63 DBG1(DBG_IMC
, "no common IF-IMC version");
64 return TNC_RESULT_NO_COMMON_VERSION
;
66 return TNC_RESULT_SUCCESS
;
70 * see section 3.8.2 of TCG TNC IF-IMC Specification 1.3
72 TNC_Result
TNC_IMC_NotifyConnectionChange(TNC_IMCID imc_id
,
73 TNC_ConnectionID connection_id
,
74 TNC_ConnectionState new_state
)
80 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
81 return TNC_RESULT_NOT_INITIALIZED
;
85 case TNC_CONNECTION_STATE_CREATE
:
86 state
= imc_scanner_state_create(connection_id
);
87 return imc_scanner
->create_state(imc_scanner
, state
);
88 case TNC_CONNECTION_STATE_HANDSHAKE
:
89 if (imc_scanner
->change_state(imc_scanner
, connection_id
, new_state
,
90 &state
) != TNC_RESULT_SUCCESS
)
92 return TNC_RESULT_FATAL
;
94 state
->set_result(state
, imc_id
,
95 TNC_IMV_EVALUATION_RESULT_DONT_KNOW
);
96 return TNC_RESULT_SUCCESS
;
97 case TNC_CONNECTION_STATE_DELETE
:
98 return imc_scanner
->delete_state(imc_scanner
, connection_id
);
100 return imc_scanner
->change_state(imc_scanner
, connection_id
,
106 * Determine all TCP and UDP server sockets listening on physical interfaces
108 static bool do_netstat(ietf_attr_port_filter_t
*attr
)
114 bool success
= FALSE
;
115 const char loopback_v4
[] = "127.0.0.1";
116 const char loopback_v6
[] = "::1";
118 /* Open a pipe stream for reading the output of the netstat commmand */
119 file
= popen("/bin/netstat -n -l -p -4 -6 --inet", "r");
122 DBG1(DBG_IMC
, "Failed to run netstat command");
126 /* Read the output a line at a time */
127 while (fgets(buf
, BUF_LEN
-1, file
))
130 u_int8_t new_protocol
, protocol
;
131 u_int16_t new_port
, port
;
133 enumerator_t
*enumerator
;
134 bool allowed
, found
= FALSE
;
136 DBG2(DBG_IMC
, "%.*s", strlen(buf
)-1, buf
);
140 /* skip the first two header lines */
143 line
= chunk_create(buf
, strlen(buf
));
145 /* Extract the IP protocol type */
146 if (!extract_token(&token
, ' ', &line
))
148 DBG1(DBG_IMC
, "Protocol field in netstat output not found");
151 if (match("tcp", &token
) || match("tcp6", &token
))
153 new_protocol
= IPPROTO_TCP
;
155 else if (match("udp", &token
) || match("udp6", &token
))
157 new_protocol
= IPPROTO_UDP
;
161 DBG1(DBG_IMC
, "Skipped unknown IP protocol in netstat output");
165 /* Skip the Recv-Q and Send-Q fields */
166 for (i
= 0; i
< 3; i
++)
168 if (!eat_whitespace(&line
) || !extract_token(&token
, ' ', &line
))
176 DBG1(DBG_IMC
, "Local Address field in netstat output not found");
180 /* Find the local port appended to the local address */
181 pos
= token
.ptr
+ token
.len
;
182 while (*--pos
!= ':' && --token
.len
);
185 DBG1(DBG_IMC
, "Local port field in netstat output not found");
190 /* ignore ports of IPv4 and IPv6 loopback interfaces */
191 if ((token
.len
== strlen(loopback_v4
) &&
192 memeq(loopback_v4
, token
.ptr
, token
.len
)) ||
193 (token
.len
== strlen(loopback_v6
) &&
194 memeq(loopback_v6
, token
.ptr
, token
.len
)))
199 /* convert the port string to an integer */
200 new_port
= atoi(pos
+1);
202 /* check if the there is already a port entry */
203 enumerator
= attr
->create_port_enumerator(attr
);
204 while (enumerator
->enumerate(enumerator
, &allowed
, &protocol
, &port
))
206 if (new_port
== port
&& new_protocol
== protocol
)
211 enumerator
->destroy(enumerator
);
213 /* Skip the duplicate port entry */
219 /* Add new port entry */
220 attr
->add_port(attr
, FALSE
, new_protocol
, new_port
);
223 /* Successfully completed the parsing of the netstat output */
227 /* Close the pipe stream */
232 static TNC_Result
send_message(TNC_ConnectionID connection_id
)
234 linked_list_t
*attr_list
;
236 ietf_attr_port_filter_t
*attr_port_filter
;
239 attr
= ietf_attr_port_filter_create();
240 attr
->set_noskip_flag(attr
, TRUE
);
241 attr_port_filter
= (ietf_attr_port_filter_t
*)attr
;
242 if (!do_netstat(attr_port_filter
))
245 return TNC_RESULT_FATAL
;
247 attr_list
= linked_list_create();
248 attr_list
->insert_last(attr_list
, attr
);
249 result
= imc_scanner
->send_message(imc_scanner
, connection_id
, FALSE
, 0,
250 TNC_IMVID_ANY
, attr_list
);
251 attr_list
->destroy(attr_list
);
257 * see section 3.8.3 of TCG TNC IF-IMC Specification 1.3
259 TNC_Result
TNC_IMC_BeginHandshake(TNC_IMCID imc_id
,
260 TNC_ConnectionID connection_id
)
264 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
265 return TNC_RESULT_NOT_INITIALIZED
;
267 return send_message(connection_id
);
270 static TNC_Result
receive_message(TNC_IMCID imc_id
,
271 TNC_ConnectionID connection_id
,
272 TNC_UInt32 msg_flags
,
274 TNC_VendorID msg_vid
,
275 TNC_MessageSubtype msg_subtype
,
276 TNC_UInt32 src_imv_id
,
277 TNC_UInt32 dst_imc_id
)
279 pa_tnc_msg_t
*pa_tnc_msg
;
281 pen_type_t attr_type
;
283 enumerator_t
*enumerator
;
285 TNC_UInt32 target_imc_id
;
290 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
291 return TNC_RESULT_NOT_INITIALIZED
;
294 /* get current IMC state */
295 if (!imc_scanner
->get_state(imc_scanner
, connection_id
, &state
))
297 return TNC_RESULT_FATAL
;
300 /* parse received PA-TNC message and automatically handle any errors */
301 result
= imc_scanner
->receive_message(imc_scanner
, state
, msg
, msg_vid
,
302 msg_subtype
, src_imv_id
, dst_imc_id
, &pa_tnc_msg
);
304 /* no parsed PA-TNC attributes available if an error occurred */
309 target_imc_id
= (dst_imc_id
== TNC_IMCID_ANY
) ? imc_id
: dst_imc_id
;
311 /* preprocess any IETF standard error attributes */
312 fatal_error
= pa_tnc_msg
->process_ietf_std_errors(pa_tnc_msg
);
314 /* analyze PA-TNC attributes */
315 enumerator
= pa_tnc_msg
->create_attribute_enumerator(pa_tnc_msg
);
316 while (enumerator
->enumerate(enumerator
, &attr
))
318 attr_type
= attr
->get_type(attr
);
320 if (attr_type
.vendor_id
== PEN_IETF
&&
321 attr_type
.type
== IETF_ATTR_ASSESSMENT_RESULT
)
323 ietf_attr_assess_result_t
*ietf_attr
;
325 ietf_attr
= (ietf_attr_assess_result_t
*)attr
;
326 state
->set_result(state
, target_imc_id
,
327 ietf_attr
->get_result(ietf_attr
));
330 enumerator
->destroy(enumerator
);
331 pa_tnc_msg
->destroy(pa_tnc_msg
);
335 return TNC_RESULT_FATAL
;
338 /* if no assessment result is known then repeat the measurement */
339 return state
->get_result(state
, target_imc_id
, NULL
) ?
340 TNC_RESULT_SUCCESS
: send_message(connection_id
);
344 * see section 3.8.4 of TCG TNC IF-IMC Specification 1.3
347 TNC_Result
TNC_IMC_ReceiveMessage(TNC_IMCID imc_id
,
348 TNC_ConnectionID connection_id
,
349 TNC_BufferReference msg
,
351 TNC_MessageType msg_type
)
353 TNC_VendorID msg_vid
;
354 TNC_MessageSubtype msg_subtype
;
356 msg_vid
= msg_type
>> 8;
357 msg_subtype
= msg_type
& TNC_SUBTYPE_ANY
;
359 return receive_message(imc_id
, connection_id
, 0, chunk_create(msg
, msg_len
),
360 msg_vid
, msg_subtype
, 0, TNC_IMCID_ANY
);
364 * see section 3.8.6 of TCG TNC IF-IMV Specification 1.3
366 TNC_Result
TNC_IMC_ReceiveMessageLong(TNC_IMCID imc_id
,
367 TNC_ConnectionID connection_id
,
368 TNC_UInt32 msg_flags
,
369 TNC_BufferReference msg
,
371 TNC_VendorID msg_vid
,
372 TNC_MessageSubtype msg_subtype
,
373 TNC_UInt32 src_imv_id
,
374 TNC_UInt32 dst_imc_id
)
376 return receive_message(imc_id
, connection_id
, msg_flags
,
377 chunk_create(msg
, msg_len
), msg_vid
, msg_subtype
,
378 src_imv_id
, dst_imc_id
);
382 * see section 3.8.7 of TCG TNC IF-IMC Specification 1.3
384 TNC_Result
TNC_IMC_BatchEnding(TNC_IMCID imc_id
,
385 TNC_ConnectionID connection_id
)
389 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
390 return TNC_RESULT_NOT_INITIALIZED
;
392 return TNC_RESULT_SUCCESS
;
396 * see section 3.8.8 of TCG TNC IF-IMC Specification 1.3
398 TNC_Result
TNC_IMC_Terminate(TNC_IMCID imc_id
)
402 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
403 return TNC_RESULT_NOT_INITIALIZED
;
405 imc_scanner
->destroy(imc_scanner
);
408 return TNC_RESULT_SUCCESS
;
412 * see section 4.2.8.1 of TCG TNC IF-IMC Specification 1.3
414 TNC_Result
TNC_IMC_ProvideBindFunction(TNC_IMCID imc_id
,
415 TNC_TNCC_BindFunctionPointer bind_function
)
419 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
420 return TNC_RESULT_NOT_INITIALIZED
;
422 return imc_scanner
->bind_functions(imc_scanner
, bind_function
);