2 * Copyright (C) 2011-2015 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_FIREWALL
}
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_DELETE
:
89 return imc_scanner
->delete_state(imc_scanner
, connection_id
);
91 return imc_scanner
->change_state(imc_scanner
, connection_id
,
97 * Determine all TCP and UDP server sockets listening on physical interfaces
99 static bool do_netstat(ietf_attr_port_filter_t
*attr
)
105 bool success
= FALSE
;
106 const char system_v4
[] = "127.0.1.1";
107 const char loopback_v4
[] = "127.0.0.1";
108 const char loopback_v6
[] = "::1";
110 /* Open a pipe stream for reading the output of the netstat command */
111 file
= popen("/bin/netstat -n -l -p -4 -6 --inet", "r");
114 DBG1(DBG_IMC
, "failed to run netstat command");
118 /* Read the output a line at a time */
119 while (fgets(buf
, sizeof(buf
), file
))
122 uint8_t new_protocol
, protocol
;
123 uint16_t new_port
, port
;
125 enumerator_t
*enumerator
;
126 bool allowed
, found
= FALSE
;
128 DBG2(DBG_IMC
, "%.*s", (int)(strlen(buf
)-1), buf
);
132 /* skip the first two header lines */
135 line
= chunk_create(buf
, strlen(buf
));
137 /* Extract the IP protocol type */
138 if (!extract_token(&token
, ' ', &line
))
140 DBG1(DBG_IMC
, "protocol field in netstat output not found");
143 if (match("tcp", &token
) || match("tcp6", &token
))
145 new_protocol
= IPPROTO_TCP
;
147 else if (match("udp", &token
) || match("udp6", &token
))
149 new_protocol
= IPPROTO_UDP
;
153 DBG1(DBG_IMC
, "skipped unknown IP protocol in netstat output");
157 /* Skip the Recv-Q and Send-Q fields */
158 for (i
= 0; i
< 3; i
++)
160 if (!eat_whitespace(&line
) || !extract_token(&token
, ' ', &line
))
168 DBG1(DBG_IMC
, "local address field in netstat output not found");
172 /* Find the local port appended to the local address */
173 pos
= token
.ptr
+ token
.len
;
174 while (*--pos
!= ':' && --token
.len
);
177 DBG1(DBG_IMC
, "local port field in netstat output not found");
182 /* ignore ports of IPv4 and IPv6 loopback interfaces
183 and the internal system IPv4 address */
184 if ((token
.len
== strlen(system_v4
) &&
185 memeq(system_v4
, token
.ptr
, token
.len
)) ||
186 (token
.len
== strlen(loopback_v4
) &&
187 memeq(loopback_v4
, token
.ptr
, token
.len
)) ||
188 (token
.len
== strlen(loopback_v6
) &&
189 memeq(loopback_v6
, token
.ptr
, token
.len
)))
194 /* convert the port string to an integer */
195 new_port
= atoi(pos
+1);
197 /* check if the there is already a port entry */
198 enumerator
= attr
->create_port_enumerator(attr
);
199 while (enumerator
->enumerate(enumerator
, &allowed
, &protocol
, &port
))
201 if (new_port
== port
&& new_protocol
== protocol
)
206 enumerator
->destroy(enumerator
);
208 /* Skip the duplicate port entry */
214 /* Add new port entry */
215 attr
->add_port(attr
, FALSE
, new_protocol
, new_port
);
218 /* Successfully completed the parsing of the netstat output */
222 /* Close the pipe stream */
228 * Add IETF Port Filter attribute to the send queue
230 static TNC_Result
add_port_filter(imc_msg_t
*msg
)
233 ietf_attr_port_filter_t
*attr_port_filter
;
235 attr
= ietf_attr_port_filter_create(pen_type_create(PEN_IETF
,
236 IETF_ATTR_PORT_FILTER
));
237 attr
->set_noskip_flag(attr
, TRUE
);
238 attr_port_filter
= (ietf_attr_port_filter_t
*)attr
;
239 if (!do_netstat(attr_port_filter
))
242 return TNC_RESULT_FATAL
;
244 msg
->add_attribute(msg
, attr
);
246 return TNC_RESULT_SUCCESS
;
250 * see section 3.8.3 of TCG TNC IF-IMC Specification 1.3
252 TNC_Result
TNC_IMC_BeginHandshake(TNC_IMCID imc_id
,
253 TNC_ConnectionID connection_id
)
257 TNC_Result result
= TNC_RESULT_SUCCESS
;
261 DBG1(DBG_IMC
, "IMC \"%s\" has not been initialized", imc_name
);
262 return TNC_RESULT_NOT_INITIALIZED
;
264 if (!imc_scanner
->get_state(imc_scanner
, connection_id
, &state
))
266 return TNC_RESULT_FATAL
;
268 if (lib
->settings
->get_bool(lib
->settings
,
269 "%s.plugins.imc-scanner.push_info", TRUE
, lib
->ns
))
271 out_msg
= imc_msg_create(imc_scanner
, state
, connection_id
, imc_id
,
272 TNC_IMVID_ANY
, msg_types
[0]);
273 result
= add_port_filter(out_msg
);
274 if (result
== TNC_RESULT_SUCCESS
)
276 /* send PA-TNC message with the excl flag not set */
277 result
= out_msg
->send(out_msg
, FALSE
);
279 out_msg
->destroy(out_msg
);
285 static TNC_Result
receive_message(imc_msg_t
*in_msg
)
288 enumerator_t
*enumerator
;
290 pen_type_t attr_type
;
291 TNC_Result result
= TNC_RESULT_SUCCESS
;
292 bool fatal_error
= FALSE
;
294 /* generate an outgoing PA-TNC message - we might need it */
295 out_msg
= imc_msg_create_as_reply(in_msg
);
297 /* parse received PA-TNC message and handle local and remote errors */
298 result
= in_msg
->receive(in_msg
, out_msg
, &fatal_error
);
299 if (result
!= TNC_RESULT_SUCCESS
)
301 out_msg
->destroy(out_msg
);
305 /* analyze PA-TNC attributes */
306 enumerator
= in_msg
->create_attribute_enumerator(in_msg
);
307 while (enumerator
->enumerate(enumerator
, &attr
))
309 attr_type
= attr
->get_type(attr
);
311 if (attr_type
.vendor_id
!= PEN_IETF
)
315 if (attr_type
.type
== IETF_ATTR_ATTRIBUTE_REQUEST
)
317 ietf_attr_attr_request_t
*attr_cast
;
321 attr_cast
= (ietf_attr_attr_request_t
*)attr
;
323 e
= attr_cast
->create_enumerator(attr_cast
);
324 while (e
->enumerate(e
, &entry
))
326 if (entry
->vendor_id
!= PEN_IETF
)
332 case IETF_ATTR_PORT_FILTER
:
333 result
= add_port_filter(out_msg
);
342 enumerator
->destroy(enumerator
);
346 result
= TNC_RESULT_FATAL
;
348 else if (result
== TNC_RESULT_SUCCESS
)
350 /* send PA-TNC message with the EXCL flag set */
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
);