aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--example/ndpiReader.c87
-rw-r--r--example/reader_util.c3
-rw-r--r--example/reader_util.h10
-rw-r--r--src/include/ndpi_define.h.in17
-rw-r--r--src/lib/ndpi_main.c2
-rw-r--r--src/lib/ndpi_utils.c4
-rw-r--r--windows/src/ndpi_define.h17
7 files changed, 118 insertions, 22 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c
index c383ca522..eefeb8329 100644
--- a/example/ndpiReader.c
+++ b/example/ndpiReader.c
@@ -92,7 +92,7 @@ static char* domain_to_check = NULL;
static char* ip_port_to_check = NULL;
static u_int8_t ignore_vlanid = 0;
/** User preferences **/
-u_int8_t enable_protocol_guess = 1, enable_payload_analyzer = 0, num_bin_clusters = 0, extcap_exit = 0;
+u_int8_t enable_realtime_output = 0, enable_protocol_guess = 1, enable_payload_analyzer = 0, num_bin_clusters = 0, extcap_exit = 0;
u_int8_t verbose = 0, enable_flow_stats = 0;
int nDPI_LogLevel = 0;
char *_debug_protocols = NULL;
@@ -520,7 +520,7 @@ static void help(u_int long_help) {
"[-f <filter>][-s <duration>][-m <duration>][-b <num bin clusters>]\n"
" [-p <protos>][-l <loops> [-q][-d][-h][-H][-D][-e <len>][-E][-t][-v <level>]\n"
" [-n <threads>][-w <file>][-c <file>][-C <file>][-j <file>][-x <file>]\n"
- " [-r <file>][-j <file>][-S <file>][-T <num>][-U <num>] [-x <domain>]\n"
+ " [-r <file>][-R][-j <file>][-S <file>][-T <num>][-U <num>] [-x <domain>]\n"
" [-a <mode>][-B proto_list]\n\n"
"Usage:\n"
" -i <file.pcap|device> | Specify a pcap file/playlist to read packets from or a\n"
@@ -559,6 +559,7 @@ static void help(u_int long_help) {
" -c <path> | Load custom categories from the specified file\n"
" -C <path> | Write output in CSV format on the specified file\n"
" -r <path> | Load risky domain file\n"
+ " -R | Print detected realtime protocols\n"
" -j <path> | Load malicious JA3 fingeprints\n"
" -S <path> | Load malicious SSL certificate SHA1 fingerprints\n"
" -G <dir> | Bind domain names to categories loading files from <dir>\n"
@@ -978,7 +979,7 @@ static void parseOptions(int argc, char **argv) {
}
while((opt = getopt_long(argc, argv,
- "a:Ab:B:e:Ec:C:dDFf:g:G:i:Ij:k:K:S:hHp:pP:l:r:s:tu:v:V:n:rp:x:X:w:Z:q0123:456:7:89:m:MT:U:",
+ "a:Ab:B:e:Ec:C:dDFf:g:G:i:Ij:k:K:S:hHp:pP:l:r:Rs:tu:v:V:n:rp:x:X:w:Z:q0123:456:7:89:m:MT:U:",
longopts, &option_idx)) != EOF) {
#ifdef DEBUG_TRACE
if(trace) fprintf(trace, " #### Handling option -%c [%s] #### \n", opt, optarg ? optarg : "");
@@ -1081,6 +1082,10 @@ static void parseOptions(int argc, char **argv) {
_riskyDomainFilePath = optarg;
break;
+ case 'R':
+ enable_realtime_output =1;
+ break;
+
case 's':
capture_for = atoi(optarg);
capture_until = capture_for + time(NULL);
@@ -2646,6 +2651,79 @@ static void debug_printf(u_int32_t protocol, void *id_struct,
/* *********************************************** */
+static int is_realtime_protocol(ndpi_protocol proto)
+{
+ static u_int16_t const realtime_protos[] = {
+ NDPI_PROTOCOL_YOUTUBE,
+ NDPI_PROTOCOL_YOUTUBE_UPLOAD,
+ NDPI_PROTOCOL_TIKTOK,
+ NDPI_PROTOCOL_GOOGLE,
+ NDPI_PROTOCOL_GOOGLE_CLASSROOM,
+ NDPI_PROTOCOL_GOOGLE_CLOUD,
+ NDPI_PROTOCOL_GOOGLE_DOCS,
+ NDPI_PROTOCOL_GOOGLE_DRIVE,
+ NDPI_PROTOCOL_GOOGLE_MAPS,
+ NDPI_PROTOCOL_GOOGLE_SERVICES
+ };
+ u_int16_t i;
+
+ for (i = 0; i < NDPI_ARRAY_LENGTH(realtime_protos); i++) {
+ if (proto.app_protocol == realtime_protos[i]
+ || proto.master_protocol == realtime_protos[i])
+ {
+ return 1;
+ }
+ }
+
+ return 0;
+}
+
+static void dump_realtime_protocol(struct ndpi_workflow * workflow, struct ndpi_flow_info *flow)
+{
+ FILE *out = results_file ? results_file : stdout;
+ char srcip[64], dstip[64];
+ char ip_proto[64], app_name[64];
+ char date[64];
+ int ret = is_realtime_protocol(flow->detected_protocol);
+ time_t firsttime = flow->first_seen_ms;
+ struct tm result;
+
+ if (ndpi_gmtime_r(&firsttime, &result) != NULL)
+ {
+ strftime(date, sizeof(date), "%d.%m.%y %H:%M:%S", &result);
+ } else {
+ snprintf(date, sizeof(date), "%s", "Unknown");
+ }
+
+ if (flow->ip_version==4) {
+ inet_ntop(AF_INET, &flow->src_ip, srcip, sizeof(srcip));
+ inet_ntop(AF_INET, &flow->dst_ip, dstip, sizeof(dstip));
+ } else {
+ snprintf(srcip, sizeof(srcip), "[%s]", flow->src_name);
+ snprintf(dstip, sizeof(dstip), "[%s]", flow->dst_name);
+ }
+
+ ndpi_protocol2name(workflow->ndpi_struct, flow->detected_protocol, app_name, sizeof(app_name));
+
+ if (ret == 1) {
+ fprintf(out, "Detected Realtime protocol %s --> [%s] %s:%d <--> %s:%d app=%s <%s>\n",
+ date, ndpi_get_ip_proto_name(flow->protocol, ip_proto, sizeof(ip_proto)),
+ srcip, ntohs(flow->src_port), dstip, ntohs(flow->dst_port),
+ app_name, flow->human_readeable_string_buffer);
+ }
+}
+
+static void on_protocol_discovered(struct ndpi_workflow * workflow,
+ struct ndpi_flow_info * flow,
+ void * userdata)
+{
+ (void)userdata;
+ if (enable_realtime_output != 0)
+ dump_realtime_protocol(workflow, flow);
+}
+
+/* *********************************************** */
+
/**
* @brief Setup for detection begin
*/
@@ -2704,6 +2782,9 @@ static void setupDetection(u_int16_t thread_id, pcap_t * pcap_handle) {
}
}
+ ndpi_workflow_set_flow_callback(ndpi_thread_info[thread_id].workflow,
+ on_protocol_discovered, NULL);
+
/* Make sure to load lists before finalizing the initialization */
ndpi_set_protocol_detection_bitmask2(ndpi_thread_info[thread_id].workflow->ndpi_struct, &enabled_bitmask);
diff --git a/example/reader_util.c b/example/reader_util.c
index 28b208099..b69a11105 100644
--- a/example/reader_util.c
+++ b/example/reader_util.c
@@ -1425,6 +1425,9 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl
flow->flow_payload = flow->ndpi_flow->flow_payload, flow->flow_payload_len = flow->ndpi_flow->flow_payload_len;
flow->ndpi_flow->flow_payload = NULL; /* We'll free the memory */
+ if(workflow->flow_callback != NULL)
+ workflow->flow_callback(workflow, flow, workflow->flow_callback_userdata);
+
ndpi_free_flow_info_half(flow);
}
}
diff --git a/example/reader_util.h b/example/reader_util.h
index 59a5f69ec..06cb6fab6 100644
--- a/example/reader_util.h
+++ b/example/reader_util.h
@@ -374,6 +374,9 @@ typedef struct ndpi_workflow {
struct ndpi_workflow_prefs prefs;
struct ndpi_stats stats;
+ ndpi_workflow_callback_ptr flow_callback;
+ void * flow_callback_userdata;
+
/* outside referencies */
pcap_t *pcap_handle;
@@ -408,6 +411,13 @@ struct ndpi_proto ndpi_workflow_process_packet(struct ndpi_workflow * workflow,
const u_char *packet,
ndpi_risk *flow_risk);
+
+/* Flow callback for completed flows, before the flow memory will be freed. */
+static inline void ndpi_workflow_set_flow_callback(struct ndpi_workflow * workflow, ndpi_workflow_callback_ptr callback, void * userdata) {
+ workflow->flow_callback = callback;
+ workflow->flow_callback_userdata = userdata;
+}
+
int ndpi_is_datalink_supported(int datalink_type);
/* compare two nodes in workflow */
diff --git a/src/include/ndpi_define.h.in b/src/include/ndpi_define.h.in
index 4d61d7130..3a5585f12 100644
--- a/src/include/ndpi_define.h.in
+++ b/src/include/ndpi_define.h.in
@@ -290,14 +290,15 @@
ndpi_parse_packet_line_info(ndpi_struct,flow); \
} \
-#define NDPI_IPSEC_PROTOCOL_ESP 50
-#define NDPI_IPSEC_PROTOCOL_AH 51
-#define NDPI_GRE_PROTOCOL_TYPE 0x2F
-#define NDPI_ICMP_PROTOCOL_TYPE 0x01
-#define NDPI_IGMP_PROTOCOL_TYPE 0x02
-#define NDPI_EGP_PROTOCOL_TYPE 0x08
-#define NDPI_OSPF_PROTOCOL_TYPE 0x59
-#define NDPI_SCTP_PROTOCOL_TYPE 132
+#define NDPI_IPSEC_PROTOCOL_ESP 50
+#define NDPI_IPSEC_PROTOCOL_AH 51
+#define NDPI_GRE_PROTOCOL_TYPE 0x2F
+#define NDPI_ICMP_PROTOCOL_TYPE 0x01
+#define NDPI_IGMP_PROTOCOL_TYPE 0x02
+#define NDPI_EGP_PROTOCOL_TYPE 0x08
+#define NDPI_OSPF_PROTOCOL_TYPE 0x59
+#define NDPI_VRRP_PROTOCOL_TYPE 112
+#define NDPI_SCTP_PROTOCOL_TYPE 132
#define NDPI_IPIP_PROTOCOL_TYPE 0x04
#define NDPI_ICMPV6_PROTOCOL_TYPE 0x3a
#define NDPI_PGM_PROTOCOL_TYPE 0x71
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index 2d258b46a..253becadd 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -4138,7 +4138,7 @@ static u_int16_t guess_protocol_id(struct ndpi_detection_module_struct *ndpi_str
}
}
return(NDPI_PROTOCOL_IP_ICMPV6);
- case 112:
+ case NDPI_VRRP_PROTOCOL_TYPE:
return(NDPI_PROTOCOL_IP_VRRP);
}
}
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c
index dd5067906..67b2d92e8 100644
--- a/src/lib/ndpi_utils.c
+++ b/src/lib/ndpi_utils.c
@@ -1569,7 +1569,7 @@ char *ndpi_get_ip_proto_name(u_int16_t ip_proto, char *name, unsigned int name_l
snprintf(name, name_len, "PIM");
break;
- case 112:
+ case NDPI_VRRP_PROTOCOL_TYPE:
snprintf(name, name_len, "VRRP");
break;
@@ -2849,7 +2849,7 @@ int ndpi_vsnprintf(char * str, size_t size, char const * format, va_list va_args
struct tm *ndpi_gmtime_r(const time_t *timep,
struct tm *result)
{
-#ifdef WIN32
+#if defined(WIN32)
gmtime_s(result, timep);
return result;
#else
diff --git a/windows/src/ndpi_define.h b/windows/src/ndpi_define.h
index 5a47f9254..1097a95e9 100644
--- a/windows/src/ndpi_define.h
+++ b/windows/src/ndpi_define.h
@@ -283,14 +283,15 @@
ndpi_parse_packet_line_info(ndpi_struct,flow); \
} \
-#define NDPI_IPSEC_PROTOCOL_ESP 50
-#define NDPI_IPSEC_PROTOCOL_AH 51
-#define NDPI_GRE_PROTOCOL_TYPE 0x2F
-#define NDPI_ICMP_PROTOCOL_TYPE 0x01
-#define NDPI_IGMP_PROTOCOL_TYPE 0x02
-#define NDPI_EGP_PROTOCOL_TYPE 0x08
-#define NDPI_OSPF_PROTOCOL_TYPE 0x59
-#define NDPI_SCTP_PROTOCOL_TYPE 132
+#define NDPI_IPSEC_PROTOCOL_ESP 50
+#define NDPI_IPSEC_PROTOCOL_AH 51
+#define NDPI_GRE_PROTOCOL_TYPE 0x2F
+#define NDPI_ICMP_PROTOCOL_TYPE 0x01
+#define NDPI_IGMP_PROTOCOL_TYPE 0x02
+#define NDPI_EGP_PROTOCOL_TYPE 0x08
+#define NDPI_OSPF_PROTOCOL_TYPE 0x59
+#define NDPI_VRRP_PROTOCOL_TYPE 112
+#define NDPI_SCTP_PROTOCOL_TYPE 132
#define NDPI_IPIP_PROTOCOL_TYPE 0x04
#define NDPI_ICMPV6_PROTOCOL_TYPE 0x3a
#define NDPI_PGM_PROTOCOL_TYPE 0x71