// Copyright 2006-2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include #include #include #include #include "util/test.h" #include "util/logging.h" #include "util/strutil.h" #include "re2/prog.h" #include "re2/re2.h" #include "re2/regexp.h" #include "re2/testing/regexp_generator.h" #include "re2/testing/string_generator.h" static const bool UsingMallocCounter = false; DEFINE_int32(size, 8, "log2(number of DFA nodes)"); DEFINE_int32(repeat, 2, "Repetition count."); DEFINE_int32(threads, 4, "number of threads"); namespace re2 { // Check that multithreaded access to DFA class works. // Helper function: builds entire DFA for prog. static void DoBuild(Prog* prog) { ASSERT_TRUE(prog->BuildEntireDFA(Prog::kFirstMatch, nullptr)); } TEST(Multithreaded, BuildEntireDFA) { // Create regexp with 2^FLAGS_size states in DFA. string s = "a"; for (int i = 0; i < FLAGS_size; i++) s += "[ab]"; s += "b"; Regexp* re = Regexp::Parse(s, Regexp::LikePerl, NULL); ASSERT_TRUE(re != NULL); // Check that single-threaded code works. { Prog* prog = re->CompileToProg(0); ASSERT_TRUE(prog != NULL); std::thread t(DoBuild, prog); t.join(); delete prog; } // Build the DFA simultaneously in a bunch of threads. for (int i = 0; i < FLAGS_repeat; i++) { Prog* prog = re->CompileToProg(0); ASSERT_TRUE(prog != NULL); std::vector threads; for (int j = 0; j < FLAGS_threads; j++) threads.emplace_back(DoBuild, prog); for (int j = 0; j < FLAGS_threads; j++) threads[j].join(); // One more compile, to make sure everything is okay. prog->BuildEntireDFA(Prog::kFirstMatch, nullptr); delete prog; } re->Decref(); } // Check that DFA size requirements are followed. // BuildEntireDFA will, like SearchDFA, stop building out // the DFA once the memory limits are reached. TEST(SingleThreaded, BuildEntireDFA) { // Create regexp with 2^30 states in DFA. Regexp* re = Regexp::Parse("a[ab]{30}b", Regexp::LikePerl, NULL); ASSERT_TRUE(re != NULL); for (int i = 17; i < 24; i++) { int64_t limit = int64_t{1}<CompileToProg(limit); ASSERT_TRUE(prog != NULL); //progusage = m.HeapGrowth(); //dfamem = prog->dfa_mem(); prog->BuildEntireDFA(Prog::kFirstMatch, nullptr); prog->BuildEntireDFA(Prog::kLongestMatch, nullptr); usage = m.HeapGrowth(); delete prog; } if (UsingMallocCounter) { //LOG(INFO) << "limit " << limit << ", " // << "prog usage " << progusage << ", " // << "DFA budget " << dfamem << ", " // << "total " << usage; // Tolerate +/- 10%. ASSERT_GT(usage, limit*9/10); ASSERT_LT(usage, limit*11/10); } } re->Decref(); } // Generates and returns a string over binary alphabet {0,1} that contains // all possible binary sequences of length n as subsequences. The obvious // brute force method would generate a string of length n * 2^n, but this // generates a string of length n + 2^n - 1 called a De Bruijn cycle. // See Knuth, The Art of Computer Programming, Vol 2, Exercise 3.2.2 #17. // Such a string is useful for testing a DFA. If you have a DFA // where distinct last n bytes implies distinct states, then running on a // DeBruijn string causes the DFA to need to create a new state at every // position in the input, never reusing any states until it gets to the // end of the string. This is the worst possible case for DFA execution. static string DeBruijnString(int n) { CHECK_LT(n, static_cast(8*sizeof(int))); CHECK_GT(n, 0); std::vector did(size_t{1}<CompileToProg(1<SearchDFA(match, StringPiece(), Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, NULL); ASSERT_FALSE(failed); ASSERT_TRUE(matched); matched = prog->SearchDFA(no_match, StringPiece(), Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, NULL); ASSERT_FALSE(failed); ASSERT_FALSE(matched); } usage = m.HeapGrowth(); peak_usage = m.PeakHeapGrowth(); delete prog; } if (UsingMallocCounter) { //LOG(INFO) << "usage " << usage << ", " // << "peak usage " << peak_usage; ASSERT_LT(usage, 1<Decref(); // Reset to original behaviour. Prog::TEST_dfa_should_bail_when_slow(true); } // Helper function: searches for match, which should match, // and no_match, which should not. static void DoSearch(Prog* prog, const StringPiece& match, const StringPiece& no_match) { for (int i = 0; i < 2; i++) { bool matched = false; bool failed = false; matched = prog->SearchDFA(match, StringPiece(), Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, NULL); ASSERT_FALSE(failed); ASSERT_TRUE(matched); matched = prog->SearchDFA(no_match, StringPiece(), Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, NULL); ASSERT_FALSE(failed); ASSERT_FALSE(matched); } } TEST(Multithreaded, SearchDFA) { Prog::TEST_dfa_should_bail_when_slow(false); // Same as single-threaded test above. const int n = 18; Regexp* re = Regexp::Parse(StringPrintf("0[01]{%d}$", n), Regexp::LikePerl, NULL); ASSERT_TRUE(re != NULL); string no_match = DeBruijnString(n); string match = no_match + "0"; // Check that single-threaded code works. { Prog* prog = re->CompileToProg(1<CompileToProg(1< threads; for (int j = 0; j < FLAGS_threads; j++) threads.emplace_back(DoSearch, prog, match, no_match); for (int j = 0; j < FLAGS_threads; j++) threads[j].join(); delete prog; } re->Decref(); // Reset to original behaviour. Prog::TEST_dfa_should_bail_when_slow(true); } struct ReverseTest { const char* regexp; const char* text; bool match; }; // Test that reverse DFA handles anchored/unanchored correctly. // It's in the DFA interface but not used by RE2. ReverseTest reverse_tests[] = { { "\\A(a|b)", "abc", true }, { "(a|b)\\z", "cba", true }, { "\\A(a|b)", "cba", false }, { "(a|b)\\z", "abc", false }, }; TEST(DFA, ReverseMatch) { int nfail = 0; for (int i = 0; i < arraysize(reverse_tests); i++) { const ReverseTest& t = reverse_tests[i]; Regexp* re = Regexp::Parse(t.regexp, Regexp::LikePerl, NULL); ASSERT_TRUE(re != NULL); Prog* prog = re->CompileToReverseProg(0); ASSERT_TRUE(prog != NULL); bool failed = false; bool matched = prog->SearchDFA(t.text, StringPiece(), Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, NULL); if (matched != t.match) { LOG(ERROR) << t.regexp << " on " << t.text << ": want " << t.match; nfail++; } delete prog; re->Decref(); } EXPECT_EQ(nfail, 0); } struct CallbackTest { const char* regexp; const char* dump; }; // Test that DFA::BuildAllStates() builds the expected DFA states // and issues the expected callbacks. These test cases reflect the // very compact encoding of the callbacks, but that also makes them // very difficult to understand, so let's work through "\\Aa\\z". // There are three slots per DFA state because the bytemap has two // equivalence classes and there is a third slot for kByteEndText: // 0: all bytes that are not 'a' // 1: the byte 'a' // 2: kByteEndText // -1 means that there is no transition from that DFA state to any // other DFA state for that slot. The valid transitions are thus: // state 0 --slot 1--> state 1 // state 1 --slot 2--> state 2 // The double brackets indicate that state 2 is a matching state. // Putting it together, this means that the DFA must consume the // byte 'a' and then hit end of text. Q.E.D. CallbackTest callback_tests[] = { { "\\Aa\\z", "[-1,1,-1] [-1,-1,2] [[-1,-1,-1]]" }, { "\\Aab\\z", "[-1,1,-1,-1] [-1,-1,2,-1] [-1,-1,-1,3] [[-1,-1,-1,-1]]" }, { "\\Aa*b\\z", "[-1,0,1,-1] [-1,-1,-1,2] [[-1,-1,-1,-1]]" }, { "\\Aa+b\\z", "[-1,1,-1,-1] [-1,1,2,-1] [-1,-1,-1,3] [[-1,-1,-1,-1]]" }, { "\\Aa?b\\z", "[-1,1,2,-1] [-1,-1,2,-1] [-1,-1,-1,3] [[-1,-1,-1,-1]]" }, { "\\Aa\\C*\\z", "[-1,1,-1] [1,1,2] [[-1,-1,-1]]" }, { "\\Aa\\C*", "[-1,1,-1] [2,2,3] [[2,2,2]] [[-1,-1,-1]]" }, { "a\\C*", "[0,1,-1] [2,2,3] [[2,2,2]] [[-1,-1,-1]]" }, { "\\C*", "[1,2] [[1,1]] [[-1,-1]]" }, { "a", "[0,1,-1] [2,2,2] [[-1,-1,-1]]"} , }; TEST(DFA, Callback) { int nfail = 0; for (int i = 0; i < arraysize(callback_tests); i++) { const CallbackTest& t = callback_tests[i]; Regexp* re = Regexp::Parse(t.regexp, Regexp::LikePerl, NULL); ASSERT_TRUE(re != NULL); Prog* prog = re->CompileToProg(0); ASSERT_TRUE(prog != NULL); string dump; prog->BuildEntireDFA(Prog::kLongestMatch, [&](const int* next, bool match) { ASSERT_TRUE(next != NULL); if (!dump.empty()) StringAppendF(&dump, " "); StringAppendF(&dump, match ? "[[" : "["); for (int b = 0; b < prog->bytemap_range() + 1; b++) StringAppendF(&dump, "%d,", next[b]); dump.pop_back(); StringAppendF(&dump, match ? "]]" : "]"); }); if (dump != t.dump) { LOG(ERROR) << t.regexp << " bytemap:\n" << prog->DumpByteMap(); LOG(ERROR) << t.regexp << " dump:\ngot " << dump << "\nwant " << t.dump; nfail++; } delete prog; re->Decref(); } EXPECT_EQ(nfail, 0); } } // namespace re2