X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fwildcard.cpp;h=161bb81a6c3df0964555aab26203ea3e3bf5e658;hb=b43fc66c17c2bef6dca66a966676b8128d5774ee;hp=9846b7d4f4213ee603cc6766cbacaad4b6afdf96;hpb=03ef675c0dd4742464d8ad93888e98721a044108;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/wildcard.cpp b/src/wildcard.cpp index 9846b7d4f..161bb81a6 100644 --- a/src/wildcard.cpp +++ b/src/wildcard.cpp @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -11,134 +11,101 @@ * --------------------------------------------------- */ -/* $Core: libIRCDwildcard */ +/* $Core */ #include "inspircd.h" #include "hashcomp.h" #include "inspstring.h" -using irc::sockets::MatchCIDR; - -/* Rewritten to operate on more effective C++ std::string types - * rather than char* to avoid data copies. - * - Brain - */ - -CoreExport bool csmatch(const std::string &str, const std::string &mask) +static bool match_internal(const unsigned char *str, const unsigned char *mask, unsigned const char *map) { - std::string::const_iterator cp, mp; + unsigned char *cp = NULL, *mp = NULL; + unsigned char* string = (unsigned char*)str; + unsigned char* wild = (unsigned char*)mask; - //unsigned char *cp = NULL, *mp = NULL; - //unsigned char* string = (unsigned char*)str; - //unsigned char* wild = (unsigned char*)mask; - - std::string::const_iterator wild = mask.begin(); - std::string::const_iterator string = str.begin(); - - while ((string != str.end()) && (wild != mask.end()) && (*wild != '*')) + while ((*string) && (*wild != '*')) { - if ((*wild != *string) && (*wild != '?')) + if ((map[*wild] != map[*string]) && (*wild != '?')) + { return 0; - + } wild++; string++; } - while (string != str.end()) + while (*string) { if (*wild == '*') { - if (++wild == mask.end()) + if (!*++wild) + { return 1; - + } mp = wild; - cp = string; - cp++; - } - else - if ((*wild == *string) || (*wild == '?')) - { - wild++; - string++; + cp = string+1; } else - { - wild = mp; - string = cp++; - } + if ((map[*wild] == map[*string]) || (*wild == '?')) + { + wild++; + string++; + } + else + { + wild = mp; + string = cp++; + } } - while ((wild != mask.end()) && (*wild == '*')) - wild++; - - return wild == mask.end(); -} - -CoreExport bool match(const std::string &str, const std::string &mask) -{ - std::string::const_iterator cp, mp; - std::string::const_iterator wild = mask.begin(); - std::string::const_iterator string = str.begin(); - - while ((string != str.end()) && (wild != mask.end()) && (*wild != '*')) + while (*wild == '*') { - if ((lowermap[(unsigned char)*wild] != lowermap[(unsigned char)*string]) && (*wild != '?')) - return 0; - wild++; - string++; } - while (string != str.end()) - { - if (*wild == '*') - { - if (++wild == mask.end()) - return 1; - - mp = wild; - cp = string; - cp++; - } - else - if ((lowermap[(unsigned char)*wild] == lowermap[(unsigned char)*string]) || (*wild == '?')) - { - wild++; - string++; - } - else - { - wild = mp; - string = cp++; - } + return !*wild; +} - } +/******************************************************************** + * Below here is all wrappers around match_internal + ********************************************************************/ - while ((wild != mask.end()) && (*wild == '*')) - wild++; +CoreExport bool InspIRCd::Match(const std::string &str, const std::string &mask, unsigned const char *map) +{ + if (!map) + map = national_case_insensitive_map; - return wild == mask.end(); + return match_internal((const unsigned char *)str.c_str(), (const unsigned char *)mask.c_str(), map); } -/* Overloaded function that has the option of using cidr */ -CoreExport bool match(const std::string &str, const std::string &mask, bool use_cidr_match) +CoreExport bool InspIRCd::Match(const char *str, const char *mask, unsigned const char *map) { - if (use_cidr_match && MatchCIDR(str, mask, true)) - return true; - return match(str, mask); + if (!map) + map = national_case_insensitive_map; + return match_internal((const unsigned char *)str, (const unsigned char *)mask, map); } -CoreExport bool match(bool case_sensitive, const std::string &str, const std::string &mask, bool use_cidr_match) +CoreExport bool InspIRCd::MatchCIDR(const std::string &str, const std::string &mask, unsigned const char *map) { - if (use_cidr_match && MatchCIDR(str, mask, true)) + if (irc::sockets::MatchCIDR(str, mask, true)) return true; - return case_sensitive ? csmatch(str, mask) : match(str, mask); + if (!map) + map = national_case_insensitive_map; + + // Fall back to regular match + return InspIRCd::Match(str, mask, map); } -CoreExport bool match(bool case_sensitive, const std::string &str, const std::string &mask) +CoreExport bool InspIRCd::MatchCIDR(const char *str, const char *mask, unsigned const char *map) { - return case_sensitive ? csmatch(str, mask) : match(str, mask); + if (irc::sockets::MatchCIDR(str, mask, true)) + return true; + + if (!map) + map = national_case_insensitive_map; + + // Fall back to regular match + return InspIRCd::Match(str, mask, map); }