aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2022-05-29 22:39:48 +0200
committerGitHub <noreply@github.com>2022-05-29 22:39:48 +0200
commita9d7cc4841ea098074b3dc0b42b7b6e73d4d8cd9 (patch)
treea15ea0890da76b5c723cd3f07e77c74a25cf9efd
parent9c1a53f39f9cadb1961621be689545af1eda67e1 (diff)
Fix dissection of IPv4 header (#1561)
See: https://github.com/ntop/nDPI/runs/6643914510?check_suite_focus=true Convert al the `MIN(a,b)` calls to `ndpi_min(a,b)`
-rw-r--r--src/include/ndpi_win32.h4
-rw-r--r--src/lib/ndpi_main.c2
-rw-r--r--src/lib/protocols/quic.c2
-rw-r--r--src/lib/protocols/tls.c4
4 files changed, 4 insertions, 8 deletions
diff --git a/src/include/ndpi_win32.h b/src/include/ndpi_win32.h
index 7885b13ef..74a38b5f7 100644
--- a/src/include/ndpi_win32.h
+++ b/src/include/ndpi_win32.h
@@ -49,10 +49,6 @@
#define IPVERSION 4 /* on *nix it is defined in netinet/ip.h */
-#ifndef MIN
-#define MIN(X, Y) (((X) < (Y)) ? (X) : (Y))
-#endif
-
#if defined(__MINGW32__) || defined(__MINGW64__)
#undef gettimeofday
#define gettimeofday mingw_gettimeofday
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index 5f5fd593d..52c2b8f85 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -4664,7 +4664,7 @@ static u_int8_t ndpi_detection_get_l4_internal(struct ndpi_detection_module_stru
/* 0: fragmented; 1: not fragmented */
if(iph != NULL && ndpi_iph_is_valid_and_not_fragmented(iph, l3_len)) {
- u_int16_t len = ntohs(iph->tot_len);
+ u_int16_t len = ndpi_min(ntohs(iph->tot_len), l3_len);
u_int16_t hlen = (iph->ihl * 4);
l4ptr = (((const u_int8_t *) iph) + iph->ihl * 4);
diff --git a/src/lib/protocols/quic.c b/src/lib/protocols/quic.c
index a8b2827f2..d3512cd9b 100644
--- a/src/lib/protocols/quic.c
+++ b/src/lib/protocols/quic.c
@@ -375,7 +375,7 @@ static gcry_error_t hkdf_expand(int hashalgo, const uint8_t *prk, uint32_t prk_l
gcry_md_write(h, &c, sizeof(c)); /* constant 0x01..N */
memcpy(lastoutput, gcry_md_read(h, hashalgo), hash_len);
- memcpy(out + offset, lastoutput, MIN(hash_len, out_len - offset));
+ memcpy(out + offset, lastoutput, ndpi_min(hash_len, out_len - offset));
}
gcry_md_close(h);
diff --git a/src/lib/protocols/tls.c b/src/lib/protocols/tls.c
index 608e4ffb3..a878e21ae 100644
--- a/src/lib/protocols/tls.c
+++ b/src/lib/protocols/tls.c
@@ -2200,10 +2200,10 @@ int processClientServerHello(struct ndpi_detection_module_struct *ndpi_struct,
} else {
u_int16_t seq_len = ntohs(*((u_int16_t*)&packet->payload[s_offset]));
s_offset += 2;
- final_offset = MIN(total_len, s_offset + seq_len);
+ final_offset = ndpi_min(total_len, s_offset + seq_len);
}
} else {
- final_offset = MIN(total_len, s_offset + extension_len);
+ final_offset = ndpi_min(total_len, s_offset + extension_len);
}
while(s_offset < final_offset) {