aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2020-11-04 12:40:31 +0100
committerLuca Deri <deri@ntop.org>2020-11-04 12:40:31 +0100
commit044a11faca10988e51e0194f997a7d12d0fed7df (patch)
tree6d4df37c2683f11fae40cc779c67470cc11d1c36 /src/lib
parent017e395ed179e88ae921b99c88dcfcfe878f7cc3 (diff)
IEC60870 dissection improvements
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/protocols/iec60870-5-104.c39
1 files changed, 26 insertions, 13 deletions
diff --git a/src/lib/protocols/iec60870-5-104.c b/src/lib/protocols/iec60870-5-104.c
index e5e5325bf..ff8108549 100644
--- a/src/lib/protocols/iec60870-5-104.c
+++ b/src/lib/protocols/iec60870-5-104.c
@@ -2,9 +2,7 @@
* iec60870-5-104.c
* Extension for industrial 104 protocol recognition
*
- * Created by Cesar HM <cesar91hoyos@gmail.com>
- *
- * Copyright (C) 2019 - ntop.org
+ * Copyright (C) 2019-20 - ntop.org
*
* This file is part of nDPI, an open source deep packet inspection
* library based on the OpenDPI and PACE technology by ipoque GmbH
@@ -22,29 +20,45 @@
* You should have received a copy of the GNU Lesser General Public License
* along with nDPI. If not, see <http://www.gnu.org/licenses/>.
*
+ * Origianally created by Cesar HM <cesar91hoyos@gmail.com>
+ *
*/
#include "ndpi_protocol_ids.h"
+
#define NDPI_CURRENT_PROTO NDPI_PROTOCOL_IEC60870
+
#include "ndpi_api.h"
void ndpi_search_iec60870_tcp(struct ndpi_detection_module_struct *ndpi_struct,
struct ndpi_flow_struct *flow) {
struct ndpi_packet_struct *packet = &flow->packet;
- u_int16_t iec104_port = htons(2404); // port used by IEC60870
/* Check connection over TCP */
NDPI_LOG_DBG(ndpi_struct, "search IEC60870\n");
if(packet->tcp) {
- /* The start byte of 104 is 0x68
- * The usual port: 2404
- */
- if((packet->payload[0] == 0x68) &&
- ((packet->tcp->dest == iec104_port) || (packet->tcp->source == iec104_port)) ){
- NDPI_LOG_INFO(ndpi_struct, "found 104\n");
- ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_IEC60870, NDPI_PROTOCOL_UNKNOWN);
- return;
+ /* The start byte of 104 is 0x68 */
+ if(packet->payload[0] == 0x68) {
+ /*
+ Teoretically there is a port to use but it is not compulsory
+ to use it hence better not count on it
+ */
+#ifdef CHECK_PORT
+ u_int16_t iec104_port = htons(2404); // port used by IEC60870
+
+ if((packet->tcp->dest == iec104_port) || (packet->tcp->source == iec104_port))
+#endif
+ {
+ u_int8_t len = packet->payload[1];
+
+ if(packet->payload_packet_len == (len+2)) {
+ NDPI_LOG_INFO(ndpi_struct, "Found IEC60870-104\n");
+
+ ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_IEC60870, NDPI_PROTOCOL_UNKNOWN);
+ return;
+ }
+ }
}
}
@@ -52,7 +66,6 @@ void ndpi_search_iec60870_tcp(struct ndpi_detection_module_struct *ndpi_struct,
}
-
void init_104_dissector(struct ndpi_detection_module_struct *ndpi_struct,
u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask) {
ndpi_set_bitmask_protocol_detection("IEC60870", ndpi_struct, detection_bitmask, *id,