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
;
106 /* Open a pipe stream for reading the output of the netstat commmand */
107 file
= popen("/bin/netstat -n -l -4 -6 --inet", "r");
110 DBG1(DBG_IMC
, "Failed to run netstat command");
114 /* Read the output a line at a time */
115 while (fgets(buf
, BUF_LEN
-1, file
))
118 u_int8_t new_protocol
, protocol
;
119 u_int16_t new_port
, port
;
121 enumerator_t
*enumerator
;
122 bool allowed
, found
= FALSE
;
124 DBG2(DBG_IMC
, "%.*s", strlen(buf
)-1, buf
);
128 /* skip the first two header lines */
131 line
= chunk_create(buf
, strlen(buf
));
133 /* Extract the IP protocol type */
134 if (!extract_token(&token
, ' ', &line
))
136 DBG1(DBG_IMC
, "Protocol field in netstat output not found");
139 if (match("tcp", &token
) || match("tcp6", &token
))
141 new_protocol
= IPPROTO_TCP
;
143 else if (match("udp", &token
) || match("udp6", &token
))
145 new_protocol
= IPPROTO_UDP
;
149 DBG1(DBG_IMC
, "Skipped unknown IP protocol in netstat output");
153 /* Skip the Recv-Q and Send-Q fields */
154 for (i
= 0; i
< 3; i
++)
156 if (!eat_whitespace(&line
) || !extract_token(&token
, ' ', &line
))
164 DBG1(DBG_IMC
, "Local Address field in netstat output not found");
168 /* Find the local port appended to the local address */
169 pos
= token
.ptr
+ token
.len
;
170 while (*--pos
!= ':' && --token
.len
);
173 DBG1(DBG_IMC
, "Local port field in netstat output not found");
177 /* convert the port string to an integer */
178 new_port
= atoi(pos
+1);
180 /* check if the there is already a port entry */
181 enumerator
= attr
->create_port_enumerator(attr
);
182 while (enumerator
->enumerate(enumerator
, &allowed
, &protocol
, &port
))
184 if (new_port
== port
&& new_protocol
== protocol
)
189 enumerator
->destroy(enumerator
);
191 /* Skip the duplicate port entry */
197 /* Add new port entry */
198 attr
->add_port(attr
, FALSE
, new_protocol
, new_port
);
201 /* Successfully completed the parsing of the netstat output */
205 /* Close the pipe stream */
210 static TNC_Result
send_message(TNC_ConnectionID connection_id
)
214 ietf_attr_port_filter_t
*attr_port_filter
;
217 attr
= ietf_attr_port_filter_create();
218 attr
->set_noskip_flag(attr
, TRUE
);
219 attr_port_filter
= (ietf_attr_port_filter_t
*)attr
;
220 if (!do_netstat(attr_port_filter
))
223 return TNC_RESULT_FATAL
;
225 msg
= pa_tnc_msg_create();
226 msg
->add_attribute(msg
, attr
);
228 result
= imc_scanner
->send_message(imc_scanner
, connection_id
,
229 msg
->get_encoding(msg
));
236 * see section 3.7.3 of TCG TNC IF-IMC Specification 1.2
238 TNC_Result
TNC_IMC_BeginHandshake(TNC_IMCID imc_id
,
239 TNC_ConnectionID connection_id
)
243 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
244 return TNC_RESULT_NOT_INITIALIZED
;
246 return send_message(connection_id
);
250 * see section 3.7.4 of TCG TNC IF-IMC Specification 1.2
252 TNC_Result
TNC_IMC_ReceiveMessage(TNC_IMCID imc_id
,
253 TNC_ConnectionID connection_id
,
254 TNC_BufferReference msg
,
256 TNC_MessageType msg_type
)
258 pa_tnc_msg_t
*pa_tnc_msg
;
260 enumerator_t
*enumerator
;
262 bool fatal_error
= FALSE
;
266 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
267 return TNC_RESULT_NOT_INITIALIZED
;
270 /* parse received PA-TNC message and automatically handle any errors */
271 result
= imc_scanner
->receive_message(imc_scanner
, connection_id
,
272 chunk_create(msg
, msg_len
), msg_type
,
275 /* no parsed PA-TNC attributes available if an error occurred */
281 /* analyze PA-TNC attributes */
282 enumerator
= pa_tnc_msg
->create_attribute_enumerator(pa_tnc_msg
);
283 while (enumerator
->enumerate(enumerator
, &attr
))
285 ietf_attr_pa_tnc_error_t
*error_attr
;
286 pa_tnc_error_code_t error_code
;
287 chunk_t msg_info
, attr_info
;
289 if (attr
->get_vendor_id(attr
) != PEN_IETF
&&
290 attr
->get_type(attr
) != IETF_ATTR_PA_TNC_ERROR
)
295 error_attr
= (ietf_attr_pa_tnc_error_t
*)attr
;
296 error_code
= error_attr
->get_error_code(error_attr
);
297 msg_info
= error_attr
->get_msg_info(error_attr
);
298 DBG1(DBG_IMC
, "received PA-TNC error '%N' concerning message %#B",
299 pa_tnc_error_code_names
, error_code
, &msg_info
);
303 case PA_ERROR_ATTR_TYPE_NOT_SUPPORTED
:
304 attr_info
= error_attr
->get_attr_info(error_attr
);
305 DBG1(DBG_IMC
, " unsupported attribute %#B", &attr_info
);
312 enumerator
->destroy(enumerator
);
313 pa_tnc_msg
->destroy(pa_tnc_msg
);
315 /* if no error occurred then always return the same response */
316 return fatal_error ? TNC_RESULT_FATAL
: send_message(connection_id
);
320 * see section 3.7.5 of TCG TNC IF-IMC Specification 1.2
322 TNC_Result
TNC_IMC_BatchEnding(TNC_IMCID imc_id
,
323 TNC_ConnectionID connection_id
)
327 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
328 return TNC_RESULT_NOT_INITIALIZED
;
330 return TNC_RESULT_SUCCESS
;
334 * see section 3.7.6 of TCG TNC IF-IMC Specification 1.2
336 TNC_Result
TNC_IMC_Terminate(TNC_IMCID imc_id
)
340 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
341 return TNC_RESULT_NOT_INITIALIZED
;
343 imc_scanner
->destroy(imc_scanner
);
346 return TNC_RESULT_SUCCESS
;
350 * see section 4.2.8.1 of TCG TNC IF-IMC Specification 1.2
352 TNC_Result
TNC_IMC_ProvideBindFunction(TNC_IMCID imc_id
,
353 TNC_TNCC_BindFunctionPointer bind_function
)
357 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
358 return TNC_RESULT_NOT_INITIALIZED
;
360 return imc_scanner
->bind_functions(imc_scanner
, bind_function
);