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 static pen_type_t msg_types
[] = {
38 { PEN_ITA
, PA_SUBTYPE_ITA_SCANNER
}
41 static imc_agent_t
*imc_scanner
;
44 * see section 3.8.1 of TCG TNC IF-IMC Specification 1.3
46 TNC_Result
TNC_IMC_Initialize(TNC_IMCID imc_id
,
47 TNC_Version min_version
,
48 TNC_Version max_version
,
49 TNC_Version
*actual_version
)
53 DBG1(DBG_IMC
, "IMC \"%s\" has already been initialized", imc_name
);
54 return TNC_RESULT_ALREADY_INITIALIZED
;
56 imc_scanner
= imc_agent_create(imc_name
, msg_types
, 1, 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", (int)(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
, PEN_ITA
, PA_SUBTYPE_ITA_SCANNER
,
252 attr_list
->destroy(attr_list
);
258 * see section 3.8.3 of TCG TNC IF-IMC Specification 1.3
260 TNC_Result
TNC_IMC_BeginHandshake(TNC_IMCID imc_id
,
261 TNC_ConnectionID connection_id
)
265 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
266 return TNC_RESULT_NOT_INITIALIZED
;
268 return send_message(connection_id
);
271 static TNC_Result
receive_message(TNC_IMCID imc_id
,
272 TNC_ConnectionID connection_id
,
273 TNC_UInt32 msg_flags
,
275 TNC_VendorID msg_vid
,
276 TNC_MessageSubtype msg_subtype
,
277 TNC_UInt32 src_imv_id
,
278 TNC_UInt32 dst_imc_id
)
280 pa_tnc_msg_t
*pa_tnc_msg
;
282 pen_type_t attr_type
;
284 enumerator_t
*enumerator
;
286 TNC_UInt32 target_imc_id
;
291 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
292 return TNC_RESULT_NOT_INITIALIZED
;
295 /* get current IMC state */
296 if (!imc_scanner
->get_state(imc_scanner
, connection_id
, &state
))
298 return TNC_RESULT_FATAL
;
301 /* parse received PA-TNC message and automatically handle any errors */
302 result
= imc_scanner
->receive_message(imc_scanner
, state
, msg
, msg_vid
,
303 msg_subtype
, src_imv_id
, dst_imc_id
, &pa_tnc_msg
);
305 /* no parsed PA-TNC attributes available if an error occurred */
310 target_imc_id
= (dst_imc_id
== TNC_IMCID_ANY
) ? imc_id
: dst_imc_id
;
312 /* preprocess any IETF standard error attributes */
313 fatal_error
= pa_tnc_msg
->process_ietf_std_errors(pa_tnc_msg
);
315 /* analyze PA-TNC attributes */
316 enumerator
= pa_tnc_msg
->create_attribute_enumerator(pa_tnc_msg
);
317 while (enumerator
->enumerate(enumerator
, &attr
))
319 attr_type
= attr
->get_type(attr
);
321 if (attr_type
.vendor_id
== PEN_IETF
&&
322 attr_type
.type
== IETF_ATTR_ASSESSMENT_RESULT
)
324 ietf_attr_assess_result_t
*ietf_attr
;
326 ietf_attr
= (ietf_attr_assess_result_t
*)attr
;
327 state
->set_result(state
, target_imc_id
,
328 ietf_attr
->get_result(ietf_attr
));
331 enumerator
->destroy(enumerator
);
332 pa_tnc_msg
->destroy(pa_tnc_msg
);
336 return TNC_RESULT_FATAL
;
339 /* if no assessment result is known then repeat the measurement */
340 return state
->get_result(state
, target_imc_id
, NULL
) ?
341 TNC_RESULT_SUCCESS
: send_message(connection_id
);
345 * see section 3.8.4 of TCG TNC IF-IMC Specification 1.3
348 TNC_Result
TNC_IMC_ReceiveMessage(TNC_IMCID imc_id
,
349 TNC_ConnectionID connection_id
,
350 TNC_BufferReference msg
,
352 TNC_MessageType msg_type
)
354 TNC_VendorID msg_vid
;
355 TNC_MessageSubtype msg_subtype
;
357 msg_vid
= msg_type
>> 8;
358 msg_subtype
= msg_type
& TNC_SUBTYPE_ANY
;
360 return receive_message(imc_id
, connection_id
, 0, chunk_create(msg
, msg_len
),
361 msg_vid
, msg_subtype
, 0, TNC_IMCID_ANY
);
365 * see section 3.8.6 of TCG TNC IF-IMV Specification 1.3
367 TNC_Result
TNC_IMC_ReceiveMessageLong(TNC_IMCID imc_id
,
368 TNC_ConnectionID connection_id
,
369 TNC_UInt32 msg_flags
,
370 TNC_BufferReference msg
,
372 TNC_VendorID msg_vid
,
373 TNC_MessageSubtype msg_subtype
,
374 TNC_UInt32 src_imv_id
,
375 TNC_UInt32 dst_imc_id
)
377 return receive_message(imc_id
, connection_id
, msg_flags
,
378 chunk_create(msg
, msg_len
), msg_vid
, msg_subtype
,
379 src_imv_id
, dst_imc_id
);
383 * see section 3.8.7 of TCG TNC IF-IMC Specification 1.3
385 TNC_Result
TNC_IMC_BatchEnding(TNC_IMCID imc_id
,
386 TNC_ConnectionID connection_id
)
390 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
391 return TNC_RESULT_NOT_INITIALIZED
;
393 return TNC_RESULT_SUCCESS
;
397 * see section 3.8.8 of TCG TNC IF-IMC Specification 1.3
399 TNC_Result
TNC_IMC_Terminate(TNC_IMCID imc_id
)
403 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
404 return TNC_RESULT_NOT_INITIALIZED
;
406 imc_scanner
->destroy(imc_scanner
);
409 return TNC_RESULT_SUCCESS
;
413 * see section 4.2.8.1 of TCG TNC IF-IMC Specification 1.3
415 TNC_Result
TNC_IMC_ProvideBindFunction(TNC_IMCID imc_id
,
416 TNC_TNCC_BindFunctionPointer bind_function
)
420 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
421 return TNC_RESULT_NOT_INITIALIZED
;
423 return imc_scanner
->bind_functions(imc_scanner
, bind_function
);