X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fwildcard.cpp;h=aaa619f2f226d60a3e76c5ae90d8c0a5a1e58a6f;hb=2b3394855d5adddb16285b905503d9ffe5a1d963;hp=46d90bd0ed5d3ae6c04904dd52c7f37ae75b2ec4;hpb=ab01aaeeee9aed655df2eec2522072233fe3aa57;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/wildcard.cpp b/src/wildcard.cpp index 46d90bd0e..aaa619f2f 100644 --- a/src/wildcard.cpp +++ b/src/wildcard.cpp @@ -2,26 +2,21 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ -using namespace std; - -#include -#include "inspircd_config.h" #include "inspircd.h" -#include "helperfuncs.h" +#include "hashcomp.h" #include "inspstring.h" +using irc::sockets::MatchCIDR; + // Wed 27 Apr 2005 - Brain // I've taken our our old wildcard routine - // although comprehensive, it was topheavy and very @@ -32,9 +27,12 @@ using namespace std; // (unattributed to any author) all over the 'net. // For now, we'll just consider this public domain. -int wildcmp(char *wild, char *string) +CoreExport bool csmatch(const char *str, const char *mask) { - char *cp, *mp; + unsigned char *cp = NULL, *mp = NULL; + unsigned char* string = (unsigned char*)str; + unsigned char* wild = (unsigned char*)mask; + while ((*string) && (*wild != '*')) { if ((*wild != *string) && (*wild != '?')) @@ -78,19 +76,72 @@ int wildcmp(char *wild, char *string) return !*wild; } -// This wrapper function is required to convert both -// strings to 'scandanavian lowercase' and make copies -// of them to a safe location. It also ensures we don't -// bite off more than we can chew with the length of -// the string. +CoreExport bool match(const char *str, const char *mask) +{ + unsigned char *cp = NULL, *mp = NULL; + unsigned char* string = (unsigned char*)str; + unsigned char* wild = (unsigned char*)mask; + + while ((*string) && (*wild != '*')) + { + if ((lowermap[*wild] != lowermap[*string]) && (*wild != '?')) + { + return 0; + } + wild++; + string++; + } -bool match(const char* literal, const char* mask) + while (*string) + { + if (*wild == '*') + { + if (!*++wild) + { + return 1; + } + mp = wild; + cp = string+1; + } + else + if ((lowermap[*wild] == lowermap[*string]) || (*wild == '?')) + { + wild++; + string++; + } + else + { + wild = mp; + string = cp++; + } + + } + + while (*wild == '*') + { + wild++; + } + + return !*wild; +} + +/* Overloaded function that has the option of using cidr */ +CoreExport bool match(const char *str, const char *mask, bool use_cidr_match) { - static char L[10240]; - static char M[10240]; - strlcpy(L,literal,10240); - strlcpy(M,mask,10240); - strlower(L); - strlower(M); - return wildcmp(M,L); + if (use_cidr_match && MatchCIDR(str, mask, true)) + return true; + return match(str, mask); } + +CoreExport bool match(bool case_sensitive, const char *str, const char *mask, bool use_cidr_match) +{ + if (use_cidr_match && MatchCIDR(str, mask, true)) + return true; + return csmatch(str, mask); +} + +CoreExport bool match(bool case_sensitive, const char *str, const char *mask) +{ + return case_sensitive ? csmatch(str, mask) : match(str, mask); +} +