aboutsummaryrefslogtreecommitdiff
path: root/nDPId.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-07-23 18:40:48 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-07-23 18:43:58 +0200
commitbc0a5782cce511886476acf57c5748ba7a232277 (patch)
tree4079fdd3703f9cc42f51ae0a5b49e6ea0551de2f /nDPId.c
parent8a8de12fb3e282d7153ffbddcbc321a13f207db4 (diff)
bump libnDPI to 2b230e28e0612e8654ad617534deb9aaaabd51b7
* fixes loading of gambling lists which increased nDPId's memory usage *a lot* * nDPId: handle EINTR correctly Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPId.c')
-rw-r--r--nDPId.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/nDPId.c b/nDPId.c
index c95c92276..41a374817 100644
--- a/nDPId.c
+++ b/nDPId.c
@@ -586,9 +586,14 @@ static void jsonize_flow_detection_event(struct nDPId_reader_thread * const read
static int set_collector_nonblock(struct nDPId_reader_thread * const reader_thread)
{
- int current_flags = fcntl(reader_thread->collector_sockfd, F_GETFL, 0);
+ int current_flags;
+
+ while ((current_flags = fcntl(reader_thread->collector_sockfd, F_GETFL, 0)) == -1 && errno == EINTR) {}
+ if (current_flags == -1) {
+ }
- if (current_flags == -1 || fcntl(reader_thread->collector_sockfd, F_SETFL, current_flags | O_NONBLOCK) == -1)
+ while ((current_flags = fcntl(reader_thread->collector_sockfd, F_SETFL, current_flags | O_NONBLOCK)) == -1 && errno == EINTR) {}
+ if (current_flags == -1)
{
reader_thread->collector_sock_last_errno = errno;
logger(1,
@@ -1318,7 +1323,7 @@ static struct nDPId_workflow * init_workflow(char const * const file_or_device)
pcap_freecode(&fp);
}
- ndpi_init_prefs init_prefs = ndpi_no_prefs;
+ ndpi_init_prefs init_prefs = ndpi_no_prefs | ndpi_dont_load_gambling_list;
workflow->ndpi_struct = ndpi_init_detection_module(init_prefs);
if (workflow->ndpi_struct == NULL)
{