diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2024-05-11 23:37:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-11 23:37:31 +0200 |
commit | a064261e854317bcc48aab31f86f3cbee67855c3 (patch) | |
tree | e913f6308457f41f1398434017bec6f71ffc1339 /src | |
parent | 2d33431948ce6fb75ee7117544b887f34c495444 (diff) |
Revert `ndpi_strnstr()` optimization introduced in a813121e0 (#2439)
New implementation fails tests 11b, 12 and 13.
Revert to the original (BSD) implementation (with also some basic
parameters check)
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ndpi_main.c | 51 |
1 files changed, 18 insertions, 33 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index f15d0cb8f..eb5959dd6 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -9687,42 +9687,27 @@ void ndpi_dump_risks_score(FILE *risk_out) { * first slen characters of s. */ char *ndpi_strnstr(const char *s, const char *find, size_t slen) { - if (s == NULL || find == NULL || slen == 0) { - return NULL; - } - - char c = *find; - - if (c == '\0') { - return (char *)s; - } - - if (*(find + 1) == '\0') { - return (char *)memchr(s, c, slen); - } - - size_t find_len = strnlen(find, slen); + char c; + size_t len; - if (find_len > slen) { + if(s == NULL || find == NULL || slen == 0) return NULL; - } - const char *end = s + slen - find_len; - - while (s <= end) { - if (memcmp(s, find, find_len) == 0) { - return (char *)s; - } - - size_t remaining_length = end - s; - s = (char *)memchr(s + 1, c, remaining_length); - - if (s == NULL || s > end) { - return NULL; - } - } - - return NULL; + if((c = *find++) != '\0') { + len = strnlen(find, slen); + do { + char sc; + + do { + if(slen-- < 1 || (sc = *s++) == '\0') + return(NULL); + } while(sc != c); + if(len > slen) + return(NULL); + } while(strncmp(s, find, len) != 0); + s--; + } + return((char *) s); } /* ****************************************************** */ |