X-Git-Url: http://ftp.carnet.hr/pub/carnet-debian/scm?a=blobdiff_plain;f=src%2Fos_regex%2Fos_match.c;h=35ca37030017233b80417b3e43c31549a2dc708d;hb=946517cefb8751a43a89bda4220221f065f4e5d1;hp=3687523e969d1b4d2967c8365ff40357ddc253e5;hpb=6ef2f786c6c8ead94841b5f93baf9f43421f08c8;p=ossec-hids.git diff --git a/src/os_regex/os_match.c b/src/os_regex/os_match.c old mode 100755 new mode 100644 index 3687523..35ca370 --- a/src/os_regex/os_match.c +++ b/src/os_regex/os_match.c @@ -1,5 +1,3 @@ -/* $OSSEC, os_regex.c, v0.4, 2006/01/02, Daniel B. Cid$ */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -9,80 +7,32 @@ * Foundation */ - #include #include #include -#include "os_regex.h" +#include "os_regex.h" -/** int OS_Match2(char *pattern, char *str) v0.4 - * - * This function is a wrapper around the compile/execute +/* This function is a wrapper around the compile/execute * functions. It should only be used when the pattern is * only going to be used once. * Returns 1 on success or 0 on failure. */ -int OS_Match2(char *pattern, char *str) +int OS_Match2(const char *pattern, const char *str) { int r_code = 0; OSMatch reg; /* If the compilation failed, we don't need to free anything */ - if(OSMatch_Compile(pattern, ®, 0)) - { - if(OSMatch_Execute(str,strlen(str), ®)) - { + if (OSMatch_Compile(pattern, ®, 0)) { + if (OSMatch_Execute(str, strlen(str), ®)) { r_code = 1; } OSMatch_FreePattern(®); } - return(r_code); -} - - -#ifdef NOTHINGEMPTY -/** int OS_Match3(char *pattern, char *str) v2.6 - * - * This function is used - * to match any values from a delimited string - * e.g. match pattern "abc" from string "123,abc,xyz" - */ -int OS_Match3(char *pattern, char *str, char *delimiter) -{ - int r_code = 0; - char *token = NULL; - char *dupstr = NULL; - char *saveptr = NULL; - - /* debug2("1. str [%s], dupstr [%s], token[%s], delim [%s]", str, dupstr, token, delimiter); */ - - os_strdup(str, dupstr); - /* debug2("2. str [%s], dupstr [%s], token[%s], delim [%s]", str, dupstr, token, delimiter); */ - - token = strtok_r(dupstr, delimiter, &saveptr); - /* debug2("3. str [%s], dupstr [%s], token[%s], delim [%s]", str, dupstr, token, delimiter); */ - - while (token != NULL) - { - debug2("Matching [%s] with [%s]", pattern, token); - if (!strcmp(pattern, token)) - { - r_code = 1; - break; - } - - token = strtok_r(NULL, delimiter, &saveptr); - } - - /* debug2("4. str [%s], dupstr [%s], token[%s], delim [%s]", str, dupstr, token, delimiter); */ - free(dupstr); - return(r_code); + return (r_code); } -#endif - -/* EOF */