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 <imc/imc_msg.h>
20 #include <ietf/ietf_attr.h>
21 #include <ietf/ietf_attr_attr_request.h>
22 #include <ietf/ietf_attr_port_filter.h>
24 #include <tncif_pa_subtypes.h>
27 #include <utils/lexparser.h>
28 #include <utils/debug.h>
34 static const char imc_name
[] = "Scanner";
36 static pen_type_t msg_types
[] = {
37 { PEN_IETF
, PA_SUBTYPE_IETF_VPN
}
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
, msg_types
, countof(msg_types
),
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
, sizeof(buf
), 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 */
233 * Add IETF Port Filter attribute to the send queue
235 static TNC_Result
add_port_filter(imc_msg_t
*msg
)
238 ietf_attr_port_filter_t
*attr_port_filter
;
240 attr
= ietf_attr_port_filter_create();
241 attr
->set_noskip_flag(attr
, TRUE
);
242 attr_port_filter
= (ietf_attr_port_filter_t
*)attr
;
243 if (!do_netstat(attr_port_filter
))
246 return TNC_RESULT_FATAL
;
248 msg
->add_attribute(msg
, attr
);
250 return TNC_RESULT_SUCCESS
;
254 * see section 3.8.3 of TCG TNC IF-IMC Specification 1.3
256 TNC_Result
TNC_IMC_BeginHandshake(TNC_IMCID imc_id
,
257 TNC_ConnectionID connection_id
)
261 TNC_Result result
= TNC_RESULT_SUCCESS
;
265 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
266 return TNC_RESULT_NOT_INITIALIZED
;
268 if (!imc_scanner
->get_state(imc_scanner
, connection_id
, &state
))
270 return TNC_RESULT_FATAL
;
272 if (lib
->settings
->get_bool(lib
->settings
,
273 "libimcv.plugins.imc-scanner.send_ports", TRUE
))
275 out_msg
= imc_msg_create(imc_scanner
, state
, connection_id
, imc_id
,
276 TNC_IMVID_ANY
, msg_types
[0]);
277 result
= add_port_filter(out_msg
);
278 if (result
== TNC_RESULT_SUCCESS
)
280 /* send PA-TNC message with the excl flag not set */
281 result
= out_msg
->send(out_msg
, FALSE
);
283 out_msg
->destroy(out_msg
);
289 static TNC_Result
receive_message(imc_msg_t
*in_msg
)
292 enumerator_t
*enumerator
;
294 pen_type_t attr_type
;
295 TNC_Result result
= TNC_RESULT_SUCCESS
;
296 bool fatal_error
= FALSE
;
298 /* parse received PA-TNC message and handle local and remote errors */
299 result
= in_msg
->receive(in_msg
, &fatal_error
);
300 if (result
!= TNC_RESULT_SUCCESS
)
304 out_msg
= imc_msg_create_as_reply(in_msg
);
306 /* analyze PA-TNC attributes */
307 enumerator
= in_msg
->create_attribute_enumerator(in_msg
);
308 while (enumerator
->enumerate(enumerator
, &attr
))
310 attr_type
= attr
->get_type(attr
);
312 if (attr_type
.vendor_id
!= PEN_IETF
)
316 if (attr_type
.type
== IETF_ATTR_ATTRIBUTE_REQUEST
)
318 ietf_attr_attr_request_t
*attr_cast
;
322 attr_cast
= (ietf_attr_attr_request_t
*)attr
;
324 e
= attr_cast
->create_enumerator(attr_cast
);
325 while (e
->enumerate(e
, &entry
))
327 if (entry
->vendor_id
!= PEN_IETF
)
333 case IETF_ATTR_PORT_FILTER
:
334 result
= add_port_filter(out_msg
);
343 enumerator
->destroy(enumerator
);
347 result
= TNC_RESULT_FATAL
;
349 else if (result
== TNC_RESULT_SUCCESS
)
351 result
= out_msg
->send(out_msg
, TRUE
);
353 out_msg
->destroy(out_msg
);
359 * see section 3.8.4 of TCG TNC IF-IMC Specification 1.3
362 TNC_Result
TNC_IMC_ReceiveMessage(TNC_IMCID imc_id
,
363 TNC_ConnectionID connection_id
,
364 TNC_BufferReference msg
,
366 TNC_MessageType msg_type
)
374 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
375 return TNC_RESULT_NOT_INITIALIZED
;
377 if (!imc_scanner
->get_state(imc_scanner
, connection_id
, &state
))
379 return TNC_RESULT_FATAL
;
382 in_msg
= imc_msg_create_from_data(imc_scanner
, state
, connection_id
,
383 msg_type
, chunk_create(msg
, msg_len
));
384 result
= receive_message(in_msg
);
385 in_msg
->destroy(in_msg
);
391 * see section 3.8.6 of TCG TNC IF-IMV Specification 1.3
393 TNC_Result
TNC_IMC_ReceiveMessageLong(TNC_IMCID imc_id
,
394 TNC_ConnectionID connection_id
,
395 TNC_UInt32 msg_flags
,
396 TNC_BufferReference msg
,
398 TNC_VendorID msg_vid
,
399 TNC_MessageSubtype msg_subtype
,
400 TNC_UInt32 src_imv_id
,
401 TNC_UInt32 dst_imc_id
)
409 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
410 return TNC_RESULT_NOT_INITIALIZED
;
412 if (!imc_scanner
->get_state(imc_scanner
, connection_id
, &state
))
414 return TNC_RESULT_FATAL
;
416 in_msg
= imc_msg_create_from_long_data(imc_scanner
, state
, connection_id
,
417 src_imv_id
, dst_imc_id
, msg_vid
, msg_subtype
,
418 chunk_create(msg
, msg_len
));
419 result
= receive_message(in_msg
);
420 in_msg
->destroy(in_msg
);
426 * see section 3.8.7 of TCG TNC IF-IMC Specification 1.3
428 TNC_Result
TNC_IMC_BatchEnding(TNC_IMCID imc_id
,
429 TNC_ConnectionID connection_id
)
433 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
434 return TNC_RESULT_NOT_INITIALIZED
;
436 return TNC_RESULT_SUCCESS
;
440 * see section 3.8.8 of TCG TNC IF-IMC Specification 1.3
442 TNC_Result
TNC_IMC_Terminate(TNC_IMCID imc_id
)
446 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
447 return TNC_RESULT_NOT_INITIALIZED
;
449 imc_scanner
->destroy(imc_scanner
);
452 return TNC_RESULT_SUCCESS
;
456 * see section 4.2.8.1 of TCG TNC IF-IMC Specification 1.3
458 TNC_Result
TNC_IMC_ProvideBindFunction(TNC_IMCID imc_id
,
459 TNC_TNCC_BindFunctionPointer bind_function
)
463 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
464 return TNC_RESULT_NOT_INITIALIZED
;
466 return imc_scanner
->bind_functions(imc_scanner
, bind_function
);