pcre2_study.c 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635
  1. /*************************************************
  2. * Perl-Compatible Regular Expressions *
  3. *************************************************/
  4. /* PCRE is a library of functions to support regular expressions whose syntax
  5. and semantics are as close as possible to those of the Perl 5 language.
  6. Written by Philip Hazel
  7. Original API code Copyright (c) 1997-2012 University of Cambridge
  8. New API code Copyright (c) 2016-2018 University of Cambridge
  9. -----------------------------------------------------------------------------
  10. Redistribution and use in source and binary forms, with or without
  11. modification, are permitted provided that the following conditions are met:
  12. * Redistributions of source code must retain the above copyright notice,
  13. this list of conditions and the following disclaimer.
  14. * Redistributions in binary form must reproduce the above copyright
  15. notice, this list of conditions and the following disclaimer in the
  16. documentation and/or other materials provided with the distribution.
  17. * Neither the name of the University of Cambridge nor the names of its
  18. contributors may be used to endorse or promote products derived from
  19. this software without specific prior written permission.
  20. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  21. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  24. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  25. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  26. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  27. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  28. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  29. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  30. POSSIBILITY OF SUCH DAMAGE.
  31. -----------------------------------------------------------------------------
  32. */
  33. /* This module contains functions for scanning a compiled pattern and
  34. collecting data (e.g. minimum matching length). */
  35. #ifdef HAVE_CONFIG_H
  36. #include "config.h"
  37. #endif
  38. #include "pcre2_internal.h"
  39. /* The maximum remembered capturing brackets minimum. */
  40. #define MAX_CACHE_BACKREF 128
  41. /* Set a bit in the starting code unit bit map. */
  42. #define SET_BIT(c) re->start_bitmap[(c)/8] |= (1 << ((c)&7))
  43. /* Returns from set_start_bits() */
  44. enum { SSB_FAIL, SSB_DONE, SSB_CONTINUE, SSB_UNKNOWN };
  45. /*************************************************
  46. * Find the minimum subject length for a group *
  47. *************************************************/
  48. /* Scan a parenthesized group and compute the minimum length of subject that
  49. is needed to match it. This is a lower bound; it does not mean there is a
  50. string of that length that matches. In UTF mode, the result is in characters
  51. rather than code units. The field in a compiled pattern for storing the minimum
  52. length is 16-bits long (on the grounds that anything longer than that is
  53. pathological), so we give up when we reach that amount. This also means that
  54. integer overflow for really crazy patterns cannot happen.
  55. Backreference minimum lengths are cached to speed up multiple references. This
  56. function is called only when the highest back reference in the pattern is less
  57. than or equal to MAX_CACHE_BACKREF, which is one less than the size of the
  58. caching vector. The zeroth element contains the number of the highest set
  59. value.
  60. Arguments:
  61. re compiled pattern block
  62. code pointer to start of group (the bracket)
  63. startcode pointer to start of the whole pattern's code
  64. utf UTF flag
  65. recurses chain of recurse_check to catch mutual recursion
  66. countptr pointer to call count (to catch over complexity)
  67. backref_cache vector for caching back references.
  68. Returns: the minimum length
  69. -1 \C in UTF-8 mode
  70. or (*ACCEPT)
  71. or pattern too complicated
  72. or back reference to duplicate name/number
  73. -2 internal error (missing capturing bracket)
  74. -3 internal error (opcode not listed)
  75. */
  76. static int
  77. find_minlength(const pcre2_real_code *re, PCRE2_SPTR code,
  78. PCRE2_SPTR startcode, BOOL utf, recurse_check *recurses, int *countptr,
  79. int *backref_cache)
  80. {
  81. int length = -1;
  82. int prev_cap_recno = -1;
  83. int prev_cap_d = 0;
  84. int prev_recurse_recno = -1;
  85. int prev_recurse_d = 0;
  86. uint32_t once_fudge = 0;
  87. BOOL had_recurse = FALSE;
  88. BOOL dupcapused = (re->flags & PCRE2_DUPCAPUSED) != 0;
  89. recurse_check this_recurse;
  90. int branchlength = 0;
  91. PCRE2_UCHAR *cc = (PCRE2_UCHAR *)code + 1 + LINK_SIZE;
  92. /* If this is a "could be empty" group, its minimum length is 0. */
  93. if (*code >= OP_SBRA && *code <= OP_SCOND) return 0;
  94. /* Skip over capturing bracket number */
  95. if (*code == OP_CBRA || *code == OP_CBRAPOS) cc += IMM2_SIZE;
  96. /* A large and/or complex regex can take too long to process. */
  97. if ((*countptr)++ > 1000) return -1;
  98. /* Scan along the opcodes for this branch. If we get to the end of the branch,
  99. check the length against that of the other branches. If the accumulated length
  100. passes 16-bits, stop. */
  101. for (;;)
  102. {
  103. int d, min, recno;
  104. PCRE2_UCHAR *cs, *ce;
  105. PCRE2_UCHAR op = *cc;
  106. if (branchlength >= UINT16_MAX) return UINT16_MAX;
  107. switch (op)
  108. {
  109. case OP_COND:
  110. case OP_SCOND:
  111. /* If there is only one branch in a condition, the implied branch has zero
  112. length, so we don't add anything. This covers the DEFINE "condition"
  113. automatically. If there are two branches we can treat it the same as any
  114. other non-capturing subpattern. */
  115. cs = cc + GET(cc, 1);
  116. if (*cs != OP_ALT)
  117. {
  118. cc = cs + 1 + LINK_SIZE;
  119. break;
  120. }
  121. goto PROCESS_NON_CAPTURE;
  122. case OP_BRA:
  123. /* There's a special case of OP_BRA, when it is wrapped round a repeated
  124. OP_RECURSE. We'd like to process the latter at this level so that
  125. remembering the value works for repeated cases. So we do nothing, but
  126. set a fudge value to skip over the OP_KET after the recurse. */
  127. if (cc[1+LINK_SIZE] == OP_RECURSE && cc[2*(1+LINK_SIZE)] == OP_KET)
  128. {
  129. once_fudge = 1 + LINK_SIZE;
  130. cc += 1 + LINK_SIZE;
  131. break;
  132. }
  133. /* Fall through */
  134. case OP_ONCE:
  135. case OP_SBRA:
  136. case OP_BRAPOS:
  137. case OP_SBRAPOS:
  138. PROCESS_NON_CAPTURE:
  139. d = find_minlength(re, cc, startcode, utf, recurses, countptr,
  140. backref_cache);
  141. if (d < 0) return d;
  142. branchlength += d;
  143. do cc += GET(cc, 1); while (*cc == OP_ALT);
  144. cc += 1 + LINK_SIZE;
  145. break;
  146. /* To save time for repeated capturing subpatterns, we remember the
  147. length of the previous one. Unfortunately we can't do the same for
  148. the unnumbered ones above. Nor can we do this if (?| is present in the
  149. pattern because captures with the same number are not then identical. */
  150. case OP_CBRA:
  151. case OP_SCBRA:
  152. case OP_CBRAPOS:
  153. case OP_SCBRAPOS:
  154. recno = (int)GET2(cc, 1+LINK_SIZE);
  155. if (dupcapused || recno != prev_cap_recno)
  156. {
  157. prev_cap_recno = recno;
  158. prev_cap_d = find_minlength(re, cc, startcode, utf, recurses, countptr,
  159. backref_cache);
  160. if (prev_cap_d < 0) return prev_cap_d;
  161. }
  162. branchlength += prev_cap_d;
  163. do cc += GET(cc, 1); while (*cc == OP_ALT);
  164. cc += 1 + LINK_SIZE;
  165. break;
  166. /* ACCEPT makes things far too complicated; we have to give up. */
  167. case OP_ACCEPT:
  168. case OP_ASSERT_ACCEPT:
  169. return -1;
  170. /* Reached end of a branch; if it's a ket it is the end of a nested
  171. call. If it's ALT it is an alternation in a nested call. If it is END it's
  172. the end of the outer call. All can be handled by the same code. If an
  173. ACCEPT was previously encountered, use the length that was in force at that
  174. time, and pass back the shortest ACCEPT length. */
  175. case OP_ALT:
  176. case OP_KET:
  177. case OP_KETRMAX:
  178. case OP_KETRMIN:
  179. case OP_KETRPOS:
  180. case OP_END:
  181. if (length < 0 || (!had_recurse && branchlength < length))
  182. length = branchlength;
  183. if (op != OP_ALT) return length;
  184. cc += 1 + LINK_SIZE;
  185. branchlength = 0;
  186. had_recurse = FALSE;
  187. break;
  188. /* Skip over assertive subpatterns */
  189. case OP_ASSERT:
  190. case OP_ASSERT_NOT:
  191. case OP_ASSERTBACK:
  192. case OP_ASSERTBACK_NOT:
  193. do cc += GET(cc, 1); while (*cc == OP_ALT);
  194. /* Fall through */
  195. /* Skip over things that don't match chars */
  196. case OP_REVERSE:
  197. case OP_CREF:
  198. case OP_DNCREF:
  199. case OP_RREF:
  200. case OP_DNRREF:
  201. case OP_FALSE:
  202. case OP_TRUE:
  203. case OP_CALLOUT:
  204. case OP_SOD:
  205. case OP_SOM:
  206. case OP_EOD:
  207. case OP_EODN:
  208. case OP_CIRC:
  209. case OP_CIRCM:
  210. case OP_DOLL:
  211. case OP_DOLLM:
  212. case OP_NOT_WORD_BOUNDARY:
  213. case OP_WORD_BOUNDARY:
  214. cc += PRIV(OP_lengths)[*cc];
  215. break;
  216. case OP_CALLOUT_STR:
  217. cc += GET(cc, 1 + 2*LINK_SIZE);
  218. break;
  219. /* Skip over a subpattern that has a {0} or {0,x} quantifier */
  220. case OP_BRAZERO:
  221. case OP_BRAMINZERO:
  222. case OP_BRAPOSZERO:
  223. case OP_SKIPZERO:
  224. cc += PRIV(OP_lengths)[*cc];
  225. do cc += GET(cc, 1); while (*cc == OP_ALT);
  226. cc += 1 + LINK_SIZE;
  227. break;
  228. /* Handle literal characters and + repetitions */
  229. case OP_CHAR:
  230. case OP_CHARI:
  231. case OP_NOT:
  232. case OP_NOTI:
  233. case OP_PLUS:
  234. case OP_PLUSI:
  235. case OP_MINPLUS:
  236. case OP_MINPLUSI:
  237. case OP_POSPLUS:
  238. case OP_POSPLUSI:
  239. case OP_NOTPLUS:
  240. case OP_NOTPLUSI:
  241. case OP_NOTMINPLUS:
  242. case OP_NOTMINPLUSI:
  243. case OP_NOTPOSPLUS:
  244. case OP_NOTPOSPLUSI:
  245. branchlength++;
  246. cc += 2;
  247. #ifdef SUPPORT_UNICODE
  248. if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
  249. #endif
  250. break;
  251. case OP_TYPEPLUS:
  252. case OP_TYPEMINPLUS:
  253. case OP_TYPEPOSPLUS:
  254. branchlength++;
  255. cc += (cc[1] == OP_PROP || cc[1] == OP_NOTPROP)? 4 : 2;
  256. break;
  257. /* Handle exact repetitions. The count is already in characters, but we
  258. may need to skip over a multibyte character in UTF mode. */
  259. case OP_EXACT:
  260. case OP_EXACTI:
  261. case OP_NOTEXACT:
  262. case OP_NOTEXACTI:
  263. branchlength += GET2(cc,1);
  264. cc += 2 + IMM2_SIZE;
  265. #ifdef SUPPORT_UNICODE
  266. if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
  267. #endif
  268. break;
  269. case OP_TYPEEXACT:
  270. branchlength += GET2(cc,1);
  271. cc += 2 + IMM2_SIZE + ((cc[1 + IMM2_SIZE] == OP_PROP
  272. || cc[1 + IMM2_SIZE] == OP_NOTPROP)? 2 : 0);
  273. break;
  274. /* Handle single-char non-literal matchers */
  275. case OP_PROP:
  276. case OP_NOTPROP:
  277. cc += 2;
  278. /* Fall through */
  279. case OP_NOT_DIGIT:
  280. case OP_DIGIT:
  281. case OP_NOT_WHITESPACE:
  282. case OP_WHITESPACE:
  283. case OP_NOT_WORDCHAR:
  284. case OP_WORDCHAR:
  285. case OP_ANY:
  286. case OP_ALLANY:
  287. case OP_EXTUNI:
  288. case OP_HSPACE:
  289. case OP_NOT_HSPACE:
  290. case OP_VSPACE:
  291. case OP_NOT_VSPACE:
  292. branchlength++;
  293. cc++;
  294. break;
  295. /* "Any newline" might match two characters, but it also might match just
  296. one. */
  297. case OP_ANYNL:
  298. branchlength += 1;
  299. cc++;
  300. break;
  301. /* The single-byte matcher means we can't proceed in UTF mode. (In
  302. non-UTF mode \C will actually be turned into OP_ALLANY, so won't ever
  303. appear, but leave the code, just in case.) */
  304. case OP_ANYBYTE:
  305. #ifdef SUPPORT_UNICODE
  306. if (utf) return -1;
  307. #endif
  308. branchlength++;
  309. cc++;
  310. break;
  311. /* For repeated character types, we have to test for \p and \P, which have
  312. an extra two bytes of parameters. */
  313. case OP_TYPESTAR:
  314. case OP_TYPEMINSTAR:
  315. case OP_TYPEQUERY:
  316. case OP_TYPEMINQUERY:
  317. case OP_TYPEPOSSTAR:
  318. case OP_TYPEPOSQUERY:
  319. if (cc[1] == OP_PROP || cc[1] == OP_NOTPROP) cc += 2;
  320. cc += PRIV(OP_lengths)[op];
  321. break;
  322. case OP_TYPEUPTO:
  323. case OP_TYPEMINUPTO:
  324. case OP_TYPEPOSUPTO:
  325. if (cc[1 + IMM2_SIZE] == OP_PROP
  326. || cc[1 + IMM2_SIZE] == OP_NOTPROP) cc += 2;
  327. cc += PRIV(OP_lengths)[op];
  328. break;
  329. /* Check a class for variable quantification */
  330. case OP_CLASS:
  331. case OP_NCLASS:
  332. #ifdef SUPPORT_WIDE_CHARS
  333. case OP_XCLASS:
  334. /* The original code caused an unsigned overflow in 64 bit systems,
  335. so now we use a conditional statement. */
  336. if (op == OP_XCLASS)
  337. cc += GET(cc, 1);
  338. else
  339. cc += PRIV(OP_lengths)[OP_CLASS];
  340. #else
  341. cc += PRIV(OP_lengths)[OP_CLASS];
  342. #endif
  343. switch (*cc)
  344. {
  345. case OP_CRPLUS:
  346. case OP_CRMINPLUS:
  347. case OP_CRPOSPLUS:
  348. branchlength++;
  349. /* Fall through */
  350. case OP_CRSTAR:
  351. case OP_CRMINSTAR:
  352. case OP_CRQUERY:
  353. case OP_CRMINQUERY:
  354. case OP_CRPOSSTAR:
  355. case OP_CRPOSQUERY:
  356. cc++;
  357. break;
  358. case OP_CRRANGE:
  359. case OP_CRMINRANGE:
  360. case OP_CRPOSRANGE:
  361. branchlength += GET2(cc,1);
  362. cc += 1 + 2 * IMM2_SIZE;
  363. break;
  364. default:
  365. branchlength++;
  366. break;
  367. }
  368. break;
  369. /* Backreferences and subroutine calls (OP_RECURSE) are treated in the same
  370. way: we find the minimum length for the subpattern. A recursion
  371. (backreference or subroutine) causes an a flag to be set that causes the
  372. length of this branch to be ignored. The logic is that a recursion can only
  373. make sense if there is another alternative that stops the recursing. That
  374. will provide the minimum length (when no recursion happens).
  375. If PCRE2_MATCH_UNSET_BACKREF is set, a backreference to an unset bracket
  376. matches an empty string (by default it causes a matching failure), so in
  377. that case we must set the minimum length to zero. */
  378. /* Duplicate named pattern back reference. We cannot reliably find a length
  379. for this if duplicate numbers are present in the pattern. */
  380. case OP_DNREF:
  381. case OP_DNREFI:
  382. if (dupcapused) return -1;
  383. if ((re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0)
  384. {
  385. int count = GET2(cc, 1+IMM2_SIZE);
  386. PCRE2_UCHAR *slot =
  387. (PCRE2_UCHAR *)((uint8_t *)re + sizeof(pcre2_real_code)) +
  388. GET2(cc, 1) * re->name_entry_size;
  389. d = INT_MAX;
  390. /* Scan all groups with the same name; find the shortest. */
  391. while (count-- > 0)
  392. {
  393. int dd, i;
  394. recno = GET2(slot, 0);
  395. if (recno <= backref_cache[0] && backref_cache[recno] >= 0)
  396. dd = backref_cache[recno];
  397. else
  398. {
  399. ce = cs = (PCRE2_UCHAR *)PRIV(find_bracket)(startcode, utf, recno);
  400. if (cs == NULL) return -2;
  401. do ce += GET(ce, 1); while (*ce == OP_ALT);
  402. if (cc > cs && cc < ce) /* Simple recursion */
  403. {
  404. dd = 0;
  405. had_recurse = TRUE;
  406. }
  407. else
  408. {
  409. recurse_check *r = recurses;
  410. for (r = recurses; r != NULL; r = r->prev)
  411. if (r->group == cs) break;
  412. if (r != NULL) /* Mutual recursion */
  413. {
  414. dd = 0;
  415. had_recurse = TRUE;
  416. }
  417. else
  418. {
  419. this_recurse.prev = recurses;
  420. this_recurse.group = cs;
  421. dd = find_minlength(re, cs, startcode, utf, &this_recurse,
  422. countptr, backref_cache);
  423. if (dd < 0) return dd;
  424. }
  425. }
  426. backref_cache[recno] = dd;
  427. for (i = backref_cache[0] + 1; i < recno; i++) backref_cache[i] = -1;
  428. backref_cache[0] = recno;
  429. }
  430. if (dd < d) d = dd;
  431. if (d <= 0) break; /* No point looking at any more */
  432. slot += re->name_entry_size;
  433. }
  434. }
  435. else d = 0;
  436. cc += 1 + 2*IMM2_SIZE;
  437. goto REPEAT_BACK_REFERENCE;
  438. /* Single back reference. We cannot find a length for this if duplicate
  439. numbers are present in the pattern. */
  440. case OP_REF:
  441. case OP_REFI:
  442. if (dupcapused) return -1;
  443. recno = GET2(cc, 1);
  444. if (recno <= backref_cache[0] && backref_cache[recno] >= 0)
  445. d = backref_cache[recno];
  446. else
  447. {
  448. int i;
  449. if ((re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0)
  450. {
  451. ce = cs = (PCRE2_UCHAR *)PRIV(find_bracket)(startcode, utf, recno);
  452. if (cs == NULL) return -2;
  453. do ce += GET(ce, 1); while (*ce == OP_ALT);
  454. if (cc > cs && cc < ce) /* Simple recursion */
  455. {
  456. d = 0;
  457. had_recurse = TRUE;
  458. }
  459. else
  460. {
  461. recurse_check *r = recurses;
  462. for (r = recurses; r != NULL; r = r->prev) if (r->group == cs) break;
  463. if (r != NULL) /* Mutual recursion */
  464. {
  465. d = 0;
  466. had_recurse = TRUE;
  467. }
  468. else
  469. {
  470. this_recurse.prev = recurses;
  471. this_recurse.group = cs;
  472. d = find_minlength(re, cs, startcode, utf, &this_recurse, countptr,
  473. backref_cache);
  474. if (d < 0) return d;
  475. }
  476. }
  477. }
  478. else d = 0;
  479. backref_cache[recno] = d;
  480. for (i = backref_cache[0] + 1; i < recno; i++) backref_cache[i] = -1;
  481. backref_cache[0] = recno;
  482. }
  483. cc += 1 + IMM2_SIZE;
  484. /* Handle repeated back references */
  485. REPEAT_BACK_REFERENCE:
  486. switch (*cc)
  487. {
  488. case OP_CRSTAR:
  489. case OP_CRMINSTAR:
  490. case OP_CRQUERY:
  491. case OP_CRMINQUERY:
  492. case OP_CRPOSSTAR:
  493. case OP_CRPOSQUERY:
  494. min = 0;
  495. cc++;
  496. break;
  497. case OP_CRPLUS:
  498. case OP_CRMINPLUS:
  499. case OP_CRPOSPLUS:
  500. min = 1;
  501. cc++;
  502. break;
  503. case OP_CRRANGE:
  504. case OP_CRMINRANGE:
  505. case OP_CRPOSRANGE:
  506. min = GET2(cc, 1);
  507. cc += 1 + 2 * IMM2_SIZE;
  508. break;
  509. default:
  510. min = 1;
  511. break;
  512. }
  513. /* Take care not to overflow: (1) min and d are ints, so check that their
  514. product is not greater than INT_MAX. (2) branchlength is limited to
  515. UINT16_MAX (checked at the top of the loop). */
  516. if ((d > 0 && (INT_MAX/d) < min) || UINT16_MAX - branchlength < min*d)
  517. branchlength = UINT16_MAX;
  518. else branchlength += min * d;
  519. break;
  520. /* Recursion always refers to the first occurrence of a subpattern with a
  521. given number. Therefore, we can always make use of caching, even when the
  522. pattern contains multiple subpatterns with the same number. */
  523. case OP_RECURSE:
  524. cs = ce = (PCRE2_UCHAR *)startcode + GET(cc, 1);
  525. recno = GET2(cs, 1+LINK_SIZE);
  526. if (recno == prev_recurse_recno)
  527. {
  528. branchlength += prev_recurse_d;
  529. }
  530. else
  531. {
  532. do ce += GET(ce, 1); while (*ce == OP_ALT);
  533. if (cc > cs && cc < ce) /* Simple recursion */
  534. had_recurse = TRUE;
  535. else
  536. {
  537. recurse_check *r = recurses;
  538. for (r = recurses; r != NULL; r = r->prev) if (r->group == cs) break;
  539. if (r != NULL) /* Mutual recursion */
  540. had_recurse = TRUE;
  541. else
  542. {
  543. this_recurse.prev = recurses;
  544. this_recurse.group = cs;
  545. prev_recurse_d = find_minlength(re, cs, startcode, utf, &this_recurse,
  546. countptr, backref_cache);
  547. if (prev_recurse_d < 0) return prev_recurse_d;
  548. prev_recurse_recno = recno;
  549. branchlength += prev_recurse_d;
  550. }
  551. }
  552. }
  553. cc += 1 + LINK_SIZE + once_fudge;
  554. once_fudge = 0;
  555. break;
  556. /* Anything else does not or need not match a character. We can get the
  557. item's length from the table, but for those that can match zero occurrences
  558. of a character, we must take special action for UTF-8 characters. As it
  559. happens, the "NOT" versions of these opcodes are used at present only for
  560. ASCII characters, so they could be omitted from this list. However, in
  561. future that may change, so we include them here so as not to leave a
  562. gotcha for a future maintainer. */
  563. case OP_UPTO:
  564. case OP_UPTOI:
  565. case OP_NOTUPTO:
  566. case OP_NOTUPTOI:
  567. case OP_MINUPTO:
  568. case OP_MINUPTOI:
  569. case OP_NOTMINUPTO:
  570. case OP_NOTMINUPTOI:
  571. case OP_POSUPTO:
  572. case OP_POSUPTOI:
  573. case OP_NOTPOSUPTO:
  574. case OP_NOTPOSUPTOI:
  575. case OP_STAR:
  576. case OP_STARI:
  577. case OP_NOTSTAR:
  578. case OP_NOTSTARI:
  579. case OP_MINSTAR:
  580. case OP_MINSTARI:
  581. case OP_NOTMINSTAR:
  582. case OP_NOTMINSTARI:
  583. case OP_POSSTAR:
  584. case OP_POSSTARI:
  585. case OP_NOTPOSSTAR:
  586. case OP_NOTPOSSTARI:
  587. case OP_QUERY:
  588. case OP_QUERYI:
  589. case OP_NOTQUERY:
  590. case OP_NOTQUERYI:
  591. case OP_MINQUERY:
  592. case OP_MINQUERYI:
  593. case OP_NOTMINQUERY:
  594. case OP_NOTMINQUERYI:
  595. case OP_POSQUERY:
  596. case OP_POSQUERYI:
  597. case OP_NOTPOSQUERY:
  598. case OP_NOTPOSQUERYI:
  599. cc += PRIV(OP_lengths)[op];
  600. #ifdef SUPPORT_UNICODE
  601. if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
  602. #endif
  603. break;
  604. /* Skip these, but we need to add in the name length. */
  605. case OP_MARK:
  606. case OP_COMMIT_ARG:
  607. case OP_PRUNE_ARG:
  608. case OP_SKIP_ARG:
  609. case OP_THEN_ARG:
  610. cc += PRIV(OP_lengths)[op] + cc[1];
  611. break;
  612. /* The remaining opcodes are just skipped over. */
  613. case OP_CLOSE:
  614. case OP_COMMIT:
  615. case OP_FAIL:
  616. case OP_PRUNE:
  617. case OP_SET_SOM:
  618. case OP_SKIP:
  619. case OP_THEN:
  620. cc += PRIV(OP_lengths)[op];
  621. break;
  622. /* This should not occur: we list all opcodes explicitly so that when
  623. new ones get added they are properly considered. */
  624. default:
  625. return -3;
  626. }
  627. }
  628. /* Control never gets here */
  629. }
  630. /*************************************************
  631. * Set a bit and maybe its alternate case *
  632. *************************************************/
  633. /* Given a character, set its first code unit's bit in the table, and also the
  634. corresponding bit for the other version of a letter if we are caseless.
  635. Arguments:
  636. re points to the regex block
  637. p points to the first code unit of the character
  638. caseless TRUE if caseless
  639. utf TRUE for UTF mode
  640. Returns: pointer after the character
  641. */
  642. static PCRE2_SPTR
  643. set_table_bit(pcre2_real_code *re, PCRE2_SPTR p, BOOL caseless, BOOL utf)
  644. {
  645. uint32_t c = *p++; /* First code unit */
  646. (void)utf; /* Stop compiler warning when UTF not supported */
  647. /* In 16-bit and 32-bit modes, code units greater than 0xff set the bit for
  648. 0xff. */
  649. #if PCRE2_CODE_UNIT_WIDTH != 8
  650. if (c > 0xff) SET_BIT(0xff); else
  651. #endif
  652. SET_BIT(c);
  653. /* In UTF-8 or UTF-16 mode, pick up the remaining code units in order to find
  654. the end of the character, even when caseless. */
  655. #ifdef SUPPORT_UNICODE
  656. if (utf)
  657. {
  658. #if PCRE2_CODE_UNIT_WIDTH == 8
  659. if (c >= 0xc0) GETUTF8INC(c, p);
  660. #elif PCRE2_CODE_UNIT_WIDTH == 16
  661. if ((c & 0xfc00) == 0xd800) GETUTF16INC(c, p);
  662. #endif
  663. }
  664. #endif /* SUPPORT_UNICODE */
  665. /* If caseless, handle the other case of the character. */
  666. if (caseless)
  667. {
  668. #ifdef SUPPORT_UNICODE
  669. if (utf)
  670. {
  671. #if PCRE2_CODE_UNIT_WIDTH == 8
  672. PCRE2_UCHAR buff[6];
  673. c = UCD_OTHERCASE(c);
  674. (void)PRIV(ord2utf)(c, buff);
  675. SET_BIT(buff[0]);
  676. #else /* 16-bit or 32-bit mode */
  677. c = UCD_OTHERCASE(c);
  678. if (c > 0xff) SET_BIT(0xff); else SET_BIT(c);
  679. #endif
  680. }
  681. else
  682. #endif /* SUPPORT_UNICODE */
  683. /* Not UTF */
  684. if (MAX_255(c)) SET_BIT(re->tables[fcc_offset + c]);
  685. }
  686. return p;
  687. }
  688. /*************************************************
  689. * Set bits for a positive character type *
  690. *************************************************/
  691. /* This function sets starting bits for a character type. In UTF-8 mode, we can
  692. only do a direct setting for bytes less than 128, as otherwise there can be
  693. confusion with bytes in the middle of UTF-8 characters. In a "traditional"
  694. environment, the tables will only recognize ASCII characters anyway, but in at
  695. least one Windows environment, some higher bytes bits were set in the tables.
  696. So we deal with that case by considering the UTF-8 encoding.
  697. Arguments:
  698. re the regex block
  699. cbit type the type of character wanted
  700. table_limit 32 for non-UTF-8; 16 for UTF-8
  701. Returns: nothing
  702. */
  703. static void
  704. set_type_bits(pcre2_real_code *re, int cbit_type, unsigned int table_limit)
  705. {
  706. uint32_t c;
  707. for (c = 0; c < table_limit; c++)
  708. re->start_bitmap[c] |= re->tables[c+cbits_offset+cbit_type];
  709. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
  710. if (table_limit == 32) return;
  711. for (c = 128; c < 256; c++)
  712. {
  713. if ((re->tables[cbits_offset + c/8] & (1 << (c&7))) != 0)
  714. {
  715. PCRE2_UCHAR buff[6];
  716. (void)PRIV(ord2utf)(c, buff);
  717. SET_BIT(buff[0]);
  718. }
  719. }
  720. #endif /* UTF-8 */
  721. }
  722. /*************************************************
  723. * Set bits for a negative character type *
  724. *************************************************/
  725. /* This function sets starting bits for a negative character type such as \D.
  726. In UTF-8 mode, we can only do a direct setting for bytes less than 128, as
  727. otherwise there can be confusion with bytes in the middle of UTF-8 characters.
  728. Unlike in the positive case, where we can set appropriate starting bits for
  729. specific high-valued UTF-8 characters, in this case we have to set the bits for
  730. all high-valued characters. The lowest is 0xc2, but we overkill by starting at
  731. 0xc0 (192) for simplicity.
  732. Arguments:
  733. re the regex block
  734. cbit type the type of character wanted
  735. table_limit 32 for non-UTF-8; 16 for UTF-8
  736. Returns: nothing
  737. */
  738. static void
  739. set_nottype_bits(pcre2_real_code *re, int cbit_type, unsigned int table_limit)
  740. {
  741. uint32_t c;
  742. for (c = 0; c < table_limit; c++)
  743. re->start_bitmap[c] |= ~(re->tables[c+cbits_offset+cbit_type]);
  744. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
  745. if (table_limit != 32) for (c = 24; c < 32; c++) re->start_bitmap[c] = 0xff;
  746. #endif
  747. }
  748. /*************************************************
  749. * Create bitmap of starting bytes *
  750. *************************************************/
  751. /* This function scans a compiled unanchored expression recursively and
  752. attempts to build a bitmap of the set of possible starting code units whose
  753. values are less than 256. In 16-bit and 32-bit mode, values above 255 all cause
  754. the 255 bit to be set. When calling set[_not]_type_bits() in UTF-8 (sic) mode
  755. we pass a value of 16 rather than 32 as the final argument. (See comments in
  756. those functions for the reason.)
  757. The SSB_CONTINUE return is useful for parenthesized groups in patterns such as
  758. (a*)b where the group provides some optional starting code units but scanning
  759. must continue at the outer level to find at least one mandatory code unit. At
  760. the outermost level, this function fails unless the result is SSB_DONE.
  761. Arguments:
  762. re points to the compiled regex block
  763. code points to an expression
  764. utf TRUE if in UTF mode
  765. Returns: SSB_FAIL => Failed to find any starting code units
  766. SSB_DONE => Found mandatory starting code units
  767. SSB_CONTINUE => Found optional starting code units
  768. SSB_UNKNOWN => Hit an unrecognized opcode
  769. */
  770. static int
  771. set_start_bits(pcre2_real_code *re, PCRE2_SPTR code, BOOL utf)
  772. {
  773. uint32_t c;
  774. int yield = SSB_DONE;
  775. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
  776. int table_limit = utf? 16:32;
  777. #else
  778. int table_limit = 32;
  779. #endif
  780. do
  781. {
  782. BOOL try_next = TRUE;
  783. PCRE2_SPTR tcode = code + 1 + LINK_SIZE;
  784. if (*code == OP_CBRA || *code == OP_SCBRA ||
  785. *code == OP_CBRAPOS || *code == OP_SCBRAPOS) tcode += IMM2_SIZE;
  786. while (try_next) /* Loop for items in this branch */
  787. {
  788. int rc;
  789. uint8_t *classmap = NULL;
  790. switch(*tcode)
  791. {
  792. /* If we reach something we don't understand, it means a new opcode has
  793. been created that hasn't been added to this function. Hopefully this
  794. problem will be discovered during testing. */
  795. default:
  796. return SSB_UNKNOWN;
  797. /* Fail for a valid opcode that implies no starting bits. */
  798. case OP_ACCEPT:
  799. case OP_ASSERT_ACCEPT:
  800. case OP_ALLANY:
  801. case OP_ANY:
  802. case OP_ANYBYTE:
  803. case OP_CIRCM:
  804. case OP_CLOSE:
  805. case OP_COMMIT:
  806. case OP_COMMIT_ARG:
  807. case OP_COND:
  808. case OP_CREF:
  809. case OP_FALSE:
  810. case OP_TRUE:
  811. case OP_DNCREF:
  812. case OP_DNREF:
  813. case OP_DNREFI:
  814. case OP_DNRREF:
  815. case OP_DOLL:
  816. case OP_DOLLM:
  817. case OP_END:
  818. case OP_EOD:
  819. case OP_EODN:
  820. case OP_EXTUNI:
  821. case OP_FAIL:
  822. case OP_MARK:
  823. case OP_NOT:
  824. case OP_NOTEXACT:
  825. case OP_NOTEXACTI:
  826. case OP_NOTI:
  827. case OP_NOTMINPLUS:
  828. case OP_NOTMINPLUSI:
  829. case OP_NOTMINQUERY:
  830. case OP_NOTMINQUERYI:
  831. case OP_NOTMINSTAR:
  832. case OP_NOTMINSTARI:
  833. case OP_NOTMINUPTO:
  834. case OP_NOTMINUPTOI:
  835. case OP_NOTPLUS:
  836. case OP_NOTPLUSI:
  837. case OP_NOTPOSPLUS:
  838. case OP_NOTPOSPLUSI:
  839. case OP_NOTPOSQUERY:
  840. case OP_NOTPOSQUERYI:
  841. case OP_NOTPOSSTAR:
  842. case OP_NOTPOSSTARI:
  843. case OP_NOTPOSUPTO:
  844. case OP_NOTPOSUPTOI:
  845. case OP_NOTPROP:
  846. case OP_NOTQUERY:
  847. case OP_NOTQUERYI:
  848. case OP_NOTSTAR:
  849. case OP_NOTSTARI:
  850. case OP_NOTUPTO:
  851. case OP_NOTUPTOI:
  852. case OP_NOT_HSPACE:
  853. case OP_NOT_VSPACE:
  854. case OP_PRUNE:
  855. case OP_PRUNE_ARG:
  856. case OP_RECURSE:
  857. case OP_REF:
  858. case OP_REFI:
  859. case OP_REVERSE:
  860. case OP_RREF:
  861. case OP_SCOND:
  862. case OP_SET_SOM:
  863. case OP_SKIP:
  864. case OP_SKIP_ARG:
  865. case OP_SOD:
  866. case OP_SOM:
  867. case OP_THEN:
  868. case OP_THEN_ARG:
  869. return SSB_FAIL;
  870. /* OP_CIRC happens only at the start of an anchored branch (multiline ^
  871. uses OP_CIRCM). Skip over it. */
  872. case OP_CIRC:
  873. tcode += PRIV(OP_lengths)[OP_CIRC];
  874. break;
  875. /* A "real" property test implies no starting bits, but the fake property
  876. PT_CLIST identifies a list of characters. These lists are short, as they
  877. are used for characters with more than one "other case", so there is no
  878. point in recognizing them for OP_NOTPROP. */
  879. case OP_PROP:
  880. if (tcode[1] != PT_CLIST) return SSB_FAIL;
  881. {
  882. const uint32_t *p = PRIV(ucd_caseless_sets) + tcode[2];
  883. while ((c = *p++) < NOTACHAR)
  884. {
  885. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
  886. if (utf)
  887. {
  888. PCRE2_UCHAR buff[6];
  889. (void)PRIV(ord2utf)(c, buff);
  890. c = buff[0];
  891. }
  892. #endif
  893. if (c > 0xff) SET_BIT(0xff); else SET_BIT(c);
  894. }
  895. }
  896. try_next = FALSE;
  897. break;
  898. /* We can ignore word boundary tests. */
  899. case OP_WORD_BOUNDARY:
  900. case OP_NOT_WORD_BOUNDARY:
  901. tcode++;
  902. break;
  903. /* If we hit a bracket or a positive lookahead assertion, recurse to set
  904. bits from within the subpattern. If it can't find anything, we have to
  905. give up. If it finds some mandatory character(s), we are done for this
  906. branch. Otherwise, carry on scanning after the subpattern. */
  907. case OP_BRA:
  908. case OP_SBRA:
  909. case OP_CBRA:
  910. case OP_SCBRA:
  911. case OP_BRAPOS:
  912. case OP_SBRAPOS:
  913. case OP_CBRAPOS:
  914. case OP_SCBRAPOS:
  915. case OP_ONCE:
  916. case OP_ASSERT:
  917. rc = set_start_bits(re, tcode, utf);
  918. if (rc == SSB_FAIL || rc == SSB_UNKNOWN) return rc;
  919. if (rc == SSB_DONE) try_next = FALSE; else
  920. {
  921. do tcode += GET(tcode, 1); while (*tcode == OP_ALT);
  922. tcode += 1 + LINK_SIZE;
  923. }
  924. break;
  925. /* If we hit ALT or KET, it means we haven't found anything mandatory in
  926. this branch, though we might have found something optional. For ALT, we
  927. continue with the next alternative, but we have to arrange that the final
  928. result from subpattern is SSB_CONTINUE rather than SSB_DONE. For KET,
  929. return SSB_CONTINUE: if this is the top level, that indicates failure,
  930. but after a nested subpattern, it causes scanning to continue. */
  931. case OP_ALT:
  932. yield = SSB_CONTINUE;
  933. try_next = FALSE;
  934. break;
  935. case OP_KET:
  936. case OP_KETRMAX:
  937. case OP_KETRMIN:
  938. case OP_KETRPOS:
  939. return SSB_CONTINUE;
  940. /* Skip over callout */
  941. case OP_CALLOUT:
  942. tcode += PRIV(OP_lengths)[OP_CALLOUT];
  943. break;
  944. case OP_CALLOUT_STR:
  945. tcode += GET(tcode, 1 + 2*LINK_SIZE);
  946. break;
  947. /* Skip over lookbehind and negative lookahead assertions */
  948. case OP_ASSERT_NOT:
  949. case OP_ASSERTBACK:
  950. case OP_ASSERTBACK_NOT:
  951. do tcode += GET(tcode, 1); while (*tcode == OP_ALT);
  952. tcode += 1 + LINK_SIZE;
  953. break;
  954. /* BRAZERO does the bracket, but carries on. */
  955. case OP_BRAZERO:
  956. case OP_BRAMINZERO:
  957. case OP_BRAPOSZERO:
  958. rc = set_start_bits(re, ++tcode, utf);
  959. if (rc == SSB_FAIL || rc == SSB_UNKNOWN) return rc;
  960. do tcode += GET(tcode,1); while (*tcode == OP_ALT);
  961. tcode += 1 + LINK_SIZE;
  962. break;
  963. /* SKIPZERO skips the bracket. */
  964. case OP_SKIPZERO:
  965. tcode++;
  966. do tcode += GET(tcode,1); while (*tcode == OP_ALT);
  967. tcode += 1 + LINK_SIZE;
  968. break;
  969. /* Single-char * or ? sets the bit and tries the next item */
  970. case OP_STAR:
  971. case OP_MINSTAR:
  972. case OP_POSSTAR:
  973. case OP_QUERY:
  974. case OP_MINQUERY:
  975. case OP_POSQUERY:
  976. tcode = set_table_bit(re, tcode + 1, FALSE, utf);
  977. break;
  978. case OP_STARI:
  979. case OP_MINSTARI:
  980. case OP_POSSTARI:
  981. case OP_QUERYI:
  982. case OP_MINQUERYI:
  983. case OP_POSQUERYI:
  984. tcode = set_table_bit(re, tcode + 1, TRUE, utf);
  985. break;
  986. /* Single-char upto sets the bit and tries the next */
  987. case OP_UPTO:
  988. case OP_MINUPTO:
  989. case OP_POSUPTO:
  990. tcode = set_table_bit(re, tcode + 1 + IMM2_SIZE, FALSE, utf);
  991. break;
  992. case OP_UPTOI:
  993. case OP_MINUPTOI:
  994. case OP_POSUPTOI:
  995. tcode = set_table_bit(re, tcode + 1 + IMM2_SIZE, TRUE, utf);
  996. break;
  997. /* At least one single char sets the bit and stops */
  998. case OP_EXACT:
  999. tcode += IMM2_SIZE;
  1000. /* Fall through */
  1001. case OP_CHAR:
  1002. case OP_PLUS:
  1003. case OP_MINPLUS:
  1004. case OP_POSPLUS:
  1005. (void)set_table_bit(re, tcode + 1, FALSE, utf);
  1006. try_next = FALSE;
  1007. break;
  1008. case OP_EXACTI:
  1009. tcode += IMM2_SIZE;
  1010. /* Fall through */
  1011. case OP_CHARI:
  1012. case OP_PLUSI:
  1013. case OP_MINPLUSI:
  1014. case OP_POSPLUSI:
  1015. (void)set_table_bit(re, tcode + 1, TRUE, utf);
  1016. try_next = FALSE;
  1017. break;
  1018. /* Special spacing and line-terminating items. These recognize specific
  1019. lists of characters. The difference between VSPACE and ANYNL is that the
  1020. latter can match the two-character CRLF sequence, but that is not
  1021. relevant for finding the first character, so their code here is
  1022. identical. */
  1023. case OP_HSPACE:
  1024. SET_BIT(CHAR_HT);
  1025. SET_BIT(CHAR_SPACE);
  1026. /* For the 16-bit and 32-bit libraries (which can never be EBCDIC), set
  1027. the bits for 0xA0 and for code units >= 255, independently of UTF. */
  1028. #if PCRE2_CODE_UNIT_WIDTH != 8
  1029. SET_BIT(0xA0);
  1030. SET_BIT(0xFF);
  1031. #else
  1032. /* For the 8-bit library in UTF-8 mode, set the bits for the first code
  1033. units of horizontal space characters. */
  1034. #ifdef SUPPORT_UNICODE
  1035. if (utf)
  1036. {
  1037. SET_BIT(0xC2); /* For U+00A0 */
  1038. SET_BIT(0xE1); /* For U+1680, U+180E */
  1039. SET_BIT(0xE2); /* For U+2000 - U+200A, U+202F, U+205F */
  1040. SET_BIT(0xE3); /* For U+3000 */
  1041. }
  1042. else
  1043. #endif
  1044. /* For the 8-bit library not in UTF-8 mode, set the bit for 0xA0, unless
  1045. the code is EBCDIC. */
  1046. {
  1047. #ifndef EBCDIC
  1048. SET_BIT(0xA0);
  1049. #endif /* Not EBCDIC */
  1050. }
  1051. #endif /* 8-bit support */
  1052. try_next = FALSE;
  1053. break;
  1054. case OP_ANYNL:
  1055. case OP_VSPACE:
  1056. SET_BIT(CHAR_LF);
  1057. SET_BIT(CHAR_VT);
  1058. SET_BIT(CHAR_FF);
  1059. SET_BIT(CHAR_CR);
  1060. /* For the 16-bit and 32-bit libraries (which can never be EBCDIC), set
  1061. the bits for NEL and for code units >= 255, independently of UTF. */
  1062. #if PCRE2_CODE_UNIT_WIDTH != 8
  1063. SET_BIT(CHAR_NEL);
  1064. SET_BIT(0xFF);
  1065. #else
  1066. /* For the 8-bit library in UTF-8 mode, set the bits for the first code
  1067. units of vertical space characters. */
  1068. #ifdef SUPPORT_UNICODE
  1069. if (utf)
  1070. {
  1071. SET_BIT(0xC2); /* For U+0085 (NEL) */
  1072. SET_BIT(0xE2); /* For U+2028, U+2029 */
  1073. }
  1074. else
  1075. #endif
  1076. /* For the 8-bit library not in UTF-8 mode, set the bit for NEL. */
  1077. {
  1078. SET_BIT(CHAR_NEL);
  1079. }
  1080. #endif /* 8-bit support */
  1081. try_next = FALSE;
  1082. break;
  1083. /* Single character types set the bits and stop. Note that if PCRE2_UCP
  1084. is set, we do not see these opcodes because \d etc are converted to
  1085. properties. Therefore, these apply in the case when only characters less
  1086. than 256 are recognized to match the types. */
  1087. case OP_NOT_DIGIT:
  1088. set_nottype_bits(re, cbit_digit, table_limit);
  1089. try_next = FALSE;
  1090. break;
  1091. case OP_DIGIT:
  1092. set_type_bits(re, cbit_digit, table_limit);
  1093. try_next = FALSE;
  1094. break;
  1095. case OP_NOT_WHITESPACE:
  1096. set_nottype_bits(re, cbit_space, table_limit);
  1097. try_next = FALSE;
  1098. break;
  1099. case OP_WHITESPACE:
  1100. set_type_bits(re, cbit_space, table_limit);
  1101. try_next = FALSE;
  1102. break;
  1103. case OP_NOT_WORDCHAR:
  1104. set_nottype_bits(re, cbit_word, table_limit);
  1105. try_next = FALSE;
  1106. break;
  1107. case OP_WORDCHAR:
  1108. set_type_bits(re, cbit_word, table_limit);
  1109. try_next = FALSE;
  1110. break;
  1111. /* One or more character type fudges the pointer and restarts, knowing
  1112. it will hit a single character type and stop there. */
  1113. case OP_TYPEPLUS:
  1114. case OP_TYPEMINPLUS:
  1115. case OP_TYPEPOSPLUS:
  1116. tcode++;
  1117. break;
  1118. case OP_TYPEEXACT:
  1119. tcode += 1 + IMM2_SIZE;
  1120. break;
  1121. /* Zero or more repeats of character types set the bits and then
  1122. try again. */
  1123. case OP_TYPEUPTO:
  1124. case OP_TYPEMINUPTO:
  1125. case OP_TYPEPOSUPTO:
  1126. tcode += IMM2_SIZE; /* Fall through */
  1127. case OP_TYPESTAR:
  1128. case OP_TYPEMINSTAR:
  1129. case OP_TYPEPOSSTAR:
  1130. case OP_TYPEQUERY:
  1131. case OP_TYPEMINQUERY:
  1132. case OP_TYPEPOSQUERY:
  1133. switch(tcode[1])
  1134. {
  1135. default:
  1136. case OP_ANY:
  1137. case OP_ALLANY:
  1138. return SSB_FAIL;
  1139. case OP_HSPACE:
  1140. SET_BIT(CHAR_HT);
  1141. SET_BIT(CHAR_SPACE);
  1142. /* For the 16-bit and 32-bit libraries (which can never be EBCDIC), set
  1143. the bits for 0xA0 and for code units >= 255, independently of UTF. */
  1144. #if PCRE2_CODE_UNIT_WIDTH != 8
  1145. SET_BIT(0xA0);
  1146. SET_BIT(0xFF);
  1147. #else
  1148. /* For the 8-bit library in UTF-8 mode, set the bits for the first code
  1149. units of horizontal space characters. */
  1150. #ifdef SUPPORT_UNICODE
  1151. if (utf)
  1152. {
  1153. SET_BIT(0xC2); /* For U+00A0 */
  1154. SET_BIT(0xE1); /* For U+1680, U+180E */
  1155. SET_BIT(0xE2); /* For U+2000 - U+200A, U+202F, U+205F */
  1156. SET_BIT(0xE3); /* For U+3000 */
  1157. }
  1158. else
  1159. #endif
  1160. /* For the 8-bit library not in UTF-8 mode, set the bit for 0xA0, unless
  1161. the code is EBCDIC. */
  1162. {
  1163. #ifndef EBCDIC
  1164. SET_BIT(0xA0);
  1165. #endif /* Not EBCDIC */
  1166. }
  1167. #endif /* 8-bit support */
  1168. break;
  1169. case OP_ANYNL:
  1170. case OP_VSPACE:
  1171. SET_BIT(CHAR_LF);
  1172. SET_BIT(CHAR_VT);
  1173. SET_BIT(CHAR_FF);
  1174. SET_BIT(CHAR_CR);
  1175. /* For the 16-bit and 32-bit libraries (which can never be EBCDIC), set
  1176. the bits for NEL and for code units >= 255, independently of UTF. */
  1177. #if PCRE2_CODE_UNIT_WIDTH != 8
  1178. SET_BIT(CHAR_NEL);
  1179. SET_BIT(0xFF);
  1180. #else
  1181. /* For the 8-bit library in UTF-8 mode, set the bits for the first code
  1182. units of vertical space characters. */
  1183. #ifdef SUPPORT_UNICODE
  1184. if (utf)
  1185. {
  1186. SET_BIT(0xC2); /* For U+0085 (NEL) */
  1187. SET_BIT(0xE2); /* For U+2028, U+2029 */
  1188. }
  1189. else
  1190. #endif
  1191. /* For the 8-bit library not in UTF-8 mode, set the bit for NEL. */
  1192. {
  1193. SET_BIT(CHAR_NEL);
  1194. }
  1195. #endif /* 8-bit support */
  1196. break;
  1197. case OP_NOT_DIGIT:
  1198. set_nottype_bits(re, cbit_digit, table_limit);
  1199. break;
  1200. case OP_DIGIT:
  1201. set_type_bits(re, cbit_digit, table_limit);
  1202. break;
  1203. case OP_NOT_WHITESPACE:
  1204. set_nottype_bits(re, cbit_space, table_limit);
  1205. break;
  1206. case OP_WHITESPACE:
  1207. set_type_bits(re, cbit_space, table_limit);
  1208. break;
  1209. case OP_NOT_WORDCHAR:
  1210. set_nottype_bits(re, cbit_word, table_limit);
  1211. break;
  1212. case OP_WORDCHAR:
  1213. set_type_bits(re, cbit_word, table_limit);
  1214. break;
  1215. }
  1216. tcode += 2;
  1217. break;
  1218. /* Extended class: if there are any property checks, or if this is a
  1219. negative XCLASS without a map, give up. If there are no property checks,
  1220. there must be wide characters on the XCLASS list, because otherwise an
  1221. XCLASS would not have been created. This means that code points >= 255
  1222. are always potential starters. */
  1223. #ifdef SUPPORT_WIDE_CHARS
  1224. case OP_XCLASS:
  1225. if ((tcode[1 + LINK_SIZE] & XCL_HASPROP) != 0 ||
  1226. (tcode[1 + LINK_SIZE] & (XCL_MAP|XCL_NOT)) == XCL_NOT)
  1227. return SSB_FAIL;
  1228. /* We have a positive XCLASS or a negative one without a map. Set up the
  1229. map pointer if there is one, and fall through. */
  1230. classmap = ((tcode[1 + LINK_SIZE] & XCL_MAP) == 0)? NULL :
  1231. (uint8_t *)(tcode + 1 + LINK_SIZE + 1);
  1232. #endif
  1233. /* It seems that the fall through comment must be outside the #ifdef if
  1234. it is to avoid the gcc compiler warning. */
  1235. /* Fall through */
  1236. /* Enter here for a negative non-XCLASS. In the 8-bit library, if we are
  1237. in UTF mode, any byte with a value >= 0xc4 is a potentially valid starter
  1238. because it starts a character with a value > 255. In 8-bit non-UTF mode,
  1239. there is no difference between CLASS and NCLASS. In all other wide
  1240. character modes, set the 0xFF bit to indicate code units >= 255. */
  1241. case OP_NCLASS:
  1242. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
  1243. if (utf)
  1244. {
  1245. re->start_bitmap[24] |= 0xf0; /* Bits for 0xc4 - 0xc8 */
  1246. memset(re->start_bitmap+25, 0xff, 7); /* Bits for 0xc9 - 0xff */
  1247. }
  1248. #elif PCRE2_CODE_UNIT_WIDTH != 8
  1249. SET_BIT(0xFF); /* For characters >= 255 */
  1250. #endif
  1251. /* Fall through */
  1252. /* Enter here for a positive non-XCLASS. If we have fallen through from
  1253. an XCLASS, classmap will already be set; just advance the code pointer.
  1254. Otherwise, set up classmap for a a non-XCLASS and advance past it. */
  1255. case OP_CLASS:
  1256. if (*tcode == OP_XCLASS) tcode += GET(tcode, 1); else
  1257. {
  1258. classmap = (uint8_t *)(++tcode);
  1259. tcode += 32 / sizeof(PCRE2_UCHAR);
  1260. }
  1261. /* When wide characters are supported, classmap may be NULL. In UTF-8
  1262. (sic) mode, the bits in a class bit map correspond to character values,
  1263. not to byte values. However, the bit map we are constructing is for byte
  1264. values. So we have to do a conversion for characters whose code point is
  1265. greater than 127. In fact, there are only two possible starting bytes for
  1266. characters in the range 128 - 255. */
  1267. if (classmap != NULL)
  1268. {
  1269. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
  1270. if (utf)
  1271. {
  1272. for (c = 0; c < 16; c++) re->start_bitmap[c] |= classmap[c];
  1273. for (c = 128; c < 256; c++)
  1274. {
  1275. if ((classmap[c/8] & (1 << (c&7))) != 0)
  1276. {
  1277. int d = (c >> 6) | 0xc0; /* Set bit for this starter */
  1278. re->start_bitmap[d/8] |= (1 << (d&7)); /* and then skip on to the */
  1279. c = (c & 0xc0) + 0x40 - 1; /* next relevant character. */
  1280. }
  1281. }
  1282. }
  1283. else
  1284. #endif
  1285. /* In all modes except UTF-8, the two bit maps are compatible. */
  1286. {
  1287. for (c = 0; c < 32; c++) re->start_bitmap[c] |= classmap[c];
  1288. }
  1289. }
  1290. /* Act on what follows the class. For a zero minimum repeat, continue;
  1291. otherwise stop processing. */
  1292. switch (*tcode)
  1293. {
  1294. case OP_CRSTAR:
  1295. case OP_CRMINSTAR:
  1296. case OP_CRQUERY:
  1297. case OP_CRMINQUERY:
  1298. case OP_CRPOSSTAR:
  1299. case OP_CRPOSQUERY:
  1300. tcode++;
  1301. break;
  1302. case OP_CRRANGE:
  1303. case OP_CRMINRANGE:
  1304. case OP_CRPOSRANGE:
  1305. if (GET2(tcode, 1) == 0) tcode += 1 + 2 * IMM2_SIZE;
  1306. else try_next = FALSE;
  1307. break;
  1308. default:
  1309. try_next = FALSE;
  1310. break;
  1311. }
  1312. break; /* End of class handling case */
  1313. } /* End of switch for opcodes */
  1314. } /* End of try_next loop */
  1315. code += GET(code, 1); /* Advance to next branch */
  1316. }
  1317. while (*code == OP_ALT);
  1318. return yield;
  1319. }
  1320. /*************************************************
  1321. * Study a compiled expression *
  1322. *************************************************/
  1323. /* This function is handed a compiled expression that it must study to produce
  1324. information that will speed up the matching.
  1325. Argument: points to the compiled expression
  1326. Returns: 0 normally; non-zero should never normally occur
  1327. 1 unknown opcode in set_start_bits
  1328. 2 missing capturing bracket
  1329. 3 unknown opcode in find_minlength
  1330. */
  1331. int
  1332. PRIV(study)(pcre2_real_code *re)
  1333. {
  1334. int min;
  1335. int count = 0;
  1336. PCRE2_UCHAR *code;
  1337. BOOL utf = (re->overall_options & PCRE2_UTF) != 0;
  1338. /* Find start of compiled code */
  1339. code = (PCRE2_UCHAR *)((uint8_t *)re + sizeof(pcre2_real_code)) +
  1340. re->name_entry_size * re->name_count;
  1341. /* For a pattern that has a first code unit, or a multiline pattern that
  1342. matches only at "line start", there is no point in seeking a list of starting
  1343. code units. */
  1344. if ((re->flags & (PCRE2_FIRSTSET|PCRE2_STARTLINE)) == 0)
  1345. {
  1346. int rc = set_start_bits(re, code, utf);
  1347. if (rc == SSB_UNKNOWN) return 1;
  1348. if (rc == SSB_DONE) re->flags |= PCRE2_FIRSTMAPSET;
  1349. }
  1350. /* Find the minimum length of subject string. If the pattern can match an empty
  1351. string, the minimum length is already known. If there are more back references
  1352. than the size of the vector we are going to cache them in, do nothing. A
  1353. pattern that complicated will probably take a long time to analyze and may in
  1354. any case turn out to be too complicated. Note that back reference minima are
  1355. held as 16-bit numbers. */
  1356. if ((re->flags & PCRE2_MATCH_EMPTY) == 0 &&
  1357. re->top_backref <= MAX_CACHE_BACKREF)
  1358. {
  1359. int backref_cache[MAX_CACHE_BACKREF+1];
  1360. backref_cache[0] = 0; /* Highest one that is set */
  1361. min = find_minlength(re, code, code, utf, NULL, &count, backref_cache);
  1362. switch(min)
  1363. {
  1364. case -1: /* \C in UTF mode or (*ACCEPT) or over-complex regex */
  1365. break; /* Leave minlength unchanged (will be zero) */
  1366. case -2:
  1367. return 2; /* missing capturing bracket */
  1368. case -3:
  1369. return 3; /* unrecognized opcode */
  1370. default:
  1371. if (min > UINT16_MAX) min = UINT16_MAX;
  1372. re->minlength = min;
  1373. break;
  1374. }
  1375. }
  1376. return 0;
  1377. }
  1378. /* End of pcre2_study.c */