You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suricata/src/util-binsearch.c

88 lines
2.1 KiB
C

#include "eidps-common.h"
#include "eidps.h"
/** \todo replace this by a better algo */
void BinSearchInit (void)
{
/* nothing no more */
}
/* Binary search.
*
* Returns:
* - ptr to start of the match
* - null if no match
*/
/* simple bin search modelled loosely after strstr */
uint8_t *
BinSearch(const uint8_t *haystack, size_t haystack_len,
const uint8_t *needle, size_t needle_len)
{
const uint8_t *h, *n;
const uint8_t *hmax = haystack + haystack_len;
const uint8_t *nmax = needle + (needle_len - 1);
if (needle_len == 0)
return NULL;
for (n = needle; haystack != hmax; haystack++) {
if (*haystack != *n) {
continue;
}
/* one byte needles */
if (needle_len == 1)
return (uint8_t *)haystack;
for (h = haystack+1, n++; h != hmax; h++, n++) {
//printf("h %c n %c\n", isprint(*h) ? *h : 'X', *n);
if (*h != *n) {
break;
}
/* if we run out of needle we fully matched */
if (n == nmax) {
return (uint8_t *)haystack;
}
}
n = needle;
}
return NULL;
}
/* Caseless binary search. More expensive that the one that
* respects case.
*
* Returns:
* - ptr to start of the match
* - null if no match
*/
uint8_t *
BinSearchNocase(const uint8_t *haystack, size_t haystack_len,
const uint8_t *needle, size_t needle_len)
{
const uint8_t *h, *n;
const uint8_t *hmax = haystack + haystack_len;
const uint8_t *nmax = needle + (needle_len - 1);
if (needle_len == 0)
return NULL;
for (n = needle; haystack != hmax; haystack++) {
if (*haystack != *n && *haystack != u8_tolower(*n)) {
continue;
}
for (h = haystack+1, n++; h != hmax; h++, n++) {
if (*h != *n && *h != u8_tolower(*n)) {
break;
}
/* if we run out of needle we fully matched */
if (n == nmax) {
return (uint8_t *)haystack;
}
}
n = needle;
}
return NULL;
}