pcre2_dfa_match.c 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864
  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 the external function pcre2_dfa_match(), which is an
  34. alternative matching function that uses a sort of DFA algorithm (not a true
  35. FSM). This is NOT Perl-compatible, but it has advantages in certain
  36. applications. */
  37. /* NOTE ABOUT PERFORMANCE: A user of this function sent some code that improved
  38. the performance of his patterns greatly. I could not use it as it stood, as it
  39. was not thread safe, and made assumptions about pattern sizes. Also, it caused
  40. test 7 to loop, and test 9 to crash with a segfault.
  41. The issue is the check for duplicate states, which is done by a simple linear
  42. search up the state list. (Grep for "duplicate" below to find the code.) For
  43. many patterns, there will never be many states active at one time, so a simple
  44. linear search is fine. In patterns that have many active states, it might be a
  45. bottleneck. The suggested code used an indexing scheme to remember which states
  46. had previously been used for each character, and avoided the linear search when
  47. it knew there was no chance of a duplicate. This was implemented when adding
  48. states to the state lists.
  49. I wrote some thread-safe, not-limited code to try something similar at the time
  50. of checking for duplicates (instead of when adding states), using index vectors
  51. on the stack. It did give a 13% improvement with one specially constructed
  52. pattern for certain subject strings, but on other strings and on many of the
  53. simpler patterns in the test suite it did worse. The major problem, I think,
  54. was the extra time to initialize the index. This had to be done for each call
  55. of internal_dfa_match(). (The supplied patch used a static vector, initialized
  56. only once - I suspect this was the cause of the problems with the tests.)
  57. Overall, I concluded that the gains in some cases did not outweigh the losses
  58. in others, so I abandoned this code. */
  59. #ifdef HAVE_CONFIG_H
  60. #include "config.h"
  61. #endif
  62. #define NLBLOCK mb /* Block containing newline information */
  63. #define PSSTART start_subject /* Field containing processed string start */
  64. #define PSEND end_subject /* Field containing processed string end */
  65. #include "pcre2_internal.h"
  66. #define PUBLIC_DFA_MATCH_OPTIONS \
  67. (PCRE2_ANCHORED|PCRE2_ENDANCHORED|PCRE2_NOTBOL|PCRE2_NOTEOL|PCRE2_NOTEMPTY| \
  68. PCRE2_NOTEMPTY_ATSTART|PCRE2_NO_UTF_CHECK|PCRE2_PARTIAL_HARD| \
  69. PCRE2_PARTIAL_SOFT|PCRE2_DFA_SHORTEST|PCRE2_DFA_RESTART)
  70. /*************************************************
  71. * Code parameters and static tables *
  72. *************************************************/
  73. /* These are offsets that are used to turn the OP_TYPESTAR and friends opcodes
  74. into others, under special conditions. A gap of 20 between the blocks should be
  75. enough. The resulting opcodes don't have to be less than 256 because they are
  76. never stored, so we push them well clear of the normal opcodes. */
  77. #define OP_PROP_EXTRA 300
  78. #define OP_EXTUNI_EXTRA 320
  79. #define OP_ANYNL_EXTRA 340
  80. #define OP_HSPACE_EXTRA 360
  81. #define OP_VSPACE_EXTRA 380
  82. /* This table identifies those opcodes that are followed immediately by a
  83. character that is to be tested in some way. This makes it possible to
  84. centralize the loading of these characters. In the case of Type * etc, the
  85. "character" is the opcode for \D, \d, \S, \s, \W, or \w, which will always be a
  86. small value. Non-zero values in the table are the offsets from the opcode where
  87. the character is to be found. ***NOTE*** If the start of this table is
  88. modified, the three tables that follow must also be modified. */
  89. static const uint8_t coptable[] = {
  90. 0, /* End */
  91. 0, 0, 0, 0, 0, /* \A, \G, \K, \B, \b */
  92. 0, 0, 0, 0, 0, 0, /* \D, \d, \S, \s, \W, \w */
  93. 0, 0, 0, /* Any, AllAny, Anybyte */
  94. 0, 0, /* \P, \p */
  95. 0, 0, 0, 0, 0, /* \R, \H, \h, \V, \v */
  96. 0, /* \X */
  97. 0, 0, 0, 0, 0, 0, /* \Z, \z, $, $M, ^, ^M */
  98. 1, /* Char */
  99. 1, /* Chari */
  100. 1, /* not */
  101. 1, /* noti */
  102. /* Positive single-char repeats */
  103. 1, 1, 1, 1, 1, 1, /* *, *?, +, +?, ?, ?? */
  104. 1+IMM2_SIZE, 1+IMM2_SIZE, /* upto, minupto */
  105. 1+IMM2_SIZE, /* exact */
  106. 1, 1, 1, 1+IMM2_SIZE, /* *+, ++, ?+, upto+ */
  107. 1, 1, 1, 1, 1, 1, /* *I, *?I, +I, +?I, ?I, ??I */
  108. 1+IMM2_SIZE, 1+IMM2_SIZE, /* upto I, minupto I */
  109. 1+IMM2_SIZE, /* exact I */
  110. 1, 1, 1, 1+IMM2_SIZE, /* *+I, ++I, ?+I, upto+I */
  111. /* Negative single-char repeats - only for chars < 256 */
  112. 1, 1, 1, 1, 1, 1, /* NOT *, *?, +, +?, ?, ?? */
  113. 1+IMM2_SIZE, 1+IMM2_SIZE, /* NOT upto, minupto */
  114. 1+IMM2_SIZE, /* NOT exact */
  115. 1, 1, 1, 1+IMM2_SIZE, /* NOT *+, ++, ?+, upto+ */
  116. 1, 1, 1, 1, 1, 1, /* NOT *I, *?I, +I, +?I, ?I, ??I */
  117. 1+IMM2_SIZE, 1+IMM2_SIZE, /* NOT upto I, minupto I */
  118. 1+IMM2_SIZE, /* NOT exact I */
  119. 1, 1, 1, 1+IMM2_SIZE, /* NOT *+I, ++I, ?+I, upto+I */
  120. /* Positive type repeats */
  121. 1, 1, 1, 1, 1, 1, /* Type *, *?, +, +?, ?, ?? */
  122. 1+IMM2_SIZE, 1+IMM2_SIZE, /* Type upto, minupto */
  123. 1+IMM2_SIZE, /* Type exact */
  124. 1, 1, 1, 1+IMM2_SIZE, /* Type *+, ++, ?+, upto+ */
  125. /* Character class & ref repeats */
  126. 0, 0, 0, 0, 0, 0, /* *, *?, +, +?, ?, ?? */
  127. 0, 0, /* CRRANGE, CRMINRANGE */
  128. 0, 0, 0, 0, /* Possessive *+, ++, ?+, CRPOSRANGE */
  129. 0, /* CLASS */
  130. 0, /* NCLASS */
  131. 0, /* XCLASS - variable length */
  132. 0, /* REF */
  133. 0, /* REFI */
  134. 0, /* DNREF */
  135. 0, /* DNREFI */
  136. 0, /* RECURSE */
  137. 0, /* CALLOUT */
  138. 0, /* CALLOUT_STR */
  139. 0, /* Alt */
  140. 0, /* Ket */
  141. 0, /* KetRmax */
  142. 0, /* KetRmin */
  143. 0, /* KetRpos */
  144. 0, /* Reverse */
  145. 0, /* Assert */
  146. 0, /* Assert not */
  147. 0, /* Assert behind */
  148. 0, /* Assert behind not */
  149. 0, /* ONCE */
  150. 0, 0, 0, 0, 0, /* BRA, BRAPOS, CBRA, CBRAPOS, COND */
  151. 0, 0, 0, 0, 0, /* SBRA, SBRAPOS, SCBRA, SCBRAPOS, SCOND */
  152. 0, 0, /* CREF, DNCREF */
  153. 0, 0, /* RREF, DNRREF */
  154. 0, 0, /* FALSE, TRUE */
  155. 0, 0, 0, /* BRAZERO, BRAMINZERO, BRAPOSZERO */
  156. 0, 0, 0, /* MARK, PRUNE, PRUNE_ARG */
  157. 0, 0, 0, 0, /* SKIP, SKIP_ARG, THEN, THEN_ARG */
  158. 0, 0, /* COMMIT, COMMIT_ARG */
  159. 0, 0, 0, /* FAIL, ACCEPT, ASSERT_ACCEPT */
  160. 0, 0, 0 /* CLOSE, SKIPZERO, DEFINE */
  161. };
  162. /* This table identifies those opcodes that inspect a character. It is used to
  163. remember the fact that a character could have been inspected when the end of
  164. the subject is reached. ***NOTE*** If the start of this table is modified, the
  165. two tables that follow must also be modified. */
  166. static const uint8_t poptable[] = {
  167. 0, /* End */
  168. 0, 0, 0, 1, 1, /* \A, \G, \K, \B, \b */
  169. 1, 1, 1, 1, 1, 1, /* \D, \d, \S, \s, \W, \w */
  170. 1, 1, 1, /* Any, AllAny, Anybyte */
  171. 1, 1, /* \P, \p */
  172. 1, 1, 1, 1, 1, /* \R, \H, \h, \V, \v */
  173. 1, /* \X */
  174. 0, 0, 0, 0, 0, 0, /* \Z, \z, $, $M, ^, ^M */
  175. 1, /* Char */
  176. 1, /* Chari */
  177. 1, /* not */
  178. 1, /* noti */
  179. /* Positive single-char repeats */
  180. 1, 1, 1, 1, 1, 1, /* *, *?, +, +?, ?, ?? */
  181. 1, 1, 1, /* upto, minupto, exact */
  182. 1, 1, 1, 1, /* *+, ++, ?+, upto+ */
  183. 1, 1, 1, 1, 1, 1, /* *I, *?I, +I, +?I, ?I, ??I */
  184. 1, 1, 1, /* upto I, minupto I, exact I */
  185. 1, 1, 1, 1, /* *+I, ++I, ?+I, upto+I */
  186. /* Negative single-char repeats - only for chars < 256 */
  187. 1, 1, 1, 1, 1, 1, /* NOT *, *?, +, +?, ?, ?? */
  188. 1, 1, 1, /* NOT upto, minupto, exact */
  189. 1, 1, 1, 1, /* NOT *+, ++, ?+, upto+ */
  190. 1, 1, 1, 1, 1, 1, /* NOT *I, *?I, +I, +?I, ?I, ??I */
  191. 1, 1, 1, /* NOT upto I, minupto I, exact I */
  192. 1, 1, 1, 1, /* NOT *+I, ++I, ?+I, upto+I */
  193. /* Positive type repeats */
  194. 1, 1, 1, 1, 1, 1, /* Type *, *?, +, +?, ?, ?? */
  195. 1, 1, 1, /* Type upto, minupto, exact */
  196. 1, 1, 1, 1, /* Type *+, ++, ?+, upto+ */
  197. /* Character class & ref repeats */
  198. 1, 1, 1, 1, 1, 1, /* *, *?, +, +?, ?, ?? */
  199. 1, 1, /* CRRANGE, CRMINRANGE */
  200. 1, 1, 1, 1, /* Possessive *+, ++, ?+, CRPOSRANGE */
  201. 1, /* CLASS */
  202. 1, /* NCLASS */
  203. 1, /* XCLASS - variable length */
  204. 0, /* REF */
  205. 0, /* REFI */
  206. 0, /* DNREF */
  207. 0, /* DNREFI */
  208. 0, /* RECURSE */
  209. 0, /* CALLOUT */
  210. 0, /* CALLOUT_STR */
  211. 0, /* Alt */
  212. 0, /* Ket */
  213. 0, /* KetRmax */
  214. 0, /* KetRmin */
  215. 0, /* KetRpos */
  216. 0, /* Reverse */
  217. 0, /* Assert */
  218. 0, /* Assert not */
  219. 0, /* Assert behind */
  220. 0, /* Assert behind not */
  221. 0, /* ONCE */
  222. 0, 0, 0, 0, 0, /* BRA, BRAPOS, CBRA, CBRAPOS, COND */
  223. 0, 0, 0, 0, 0, /* SBRA, SBRAPOS, SCBRA, SCBRAPOS, SCOND */
  224. 0, 0, /* CREF, DNCREF */
  225. 0, 0, /* RREF, DNRREF */
  226. 0, 0, /* FALSE, TRUE */
  227. 0, 0, 0, /* BRAZERO, BRAMINZERO, BRAPOSZERO */
  228. 0, 0, 0, /* MARK, PRUNE, PRUNE_ARG */
  229. 0, 0, 0, 0, /* SKIP, SKIP_ARG, THEN, THEN_ARG */
  230. 0, 0, /* COMMIT, COMMIT_ARG */
  231. 0, 0, 0, /* FAIL, ACCEPT, ASSERT_ACCEPT */
  232. 0, 0, 0 /* CLOSE, SKIPZERO, DEFINE */
  233. };
  234. /* These 2 tables allow for compact code for testing for \D, \d, \S, \s, \W,
  235. and \w */
  236. static const uint8_t toptable1[] = {
  237. 0, 0, 0, 0, 0, 0,
  238. ctype_digit, ctype_digit,
  239. ctype_space, ctype_space,
  240. ctype_word, ctype_word,
  241. 0, 0 /* OP_ANY, OP_ALLANY */
  242. };
  243. static const uint8_t toptable2[] = {
  244. 0, 0, 0, 0, 0, 0,
  245. ctype_digit, 0,
  246. ctype_space, 0,
  247. ctype_word, 0,
  248. 1, 1 /* OP_ANY, OP_ALLANY */
  249. };
  250. /* Structure for holding data about a particular state, which is in effect the
  251. current data for an active path through the match tree. It must consist
  252. entirely of ints because the working vector we are passed, and which we put
  253. these structures in, is a vector of ints. */
  254. typedef struct stateblock {
  255. int offset; /* Offset to opcode (-ve has meaning) */
  256. int count; /* Count for repeats */
  257. int data; /* Some use extra data */
  258. } stateblock;
  259. #define INTS_PER_STATEBLOCK (int)(sizeof(stateblock)/sizeof(int))
  260. /* Before version 10.32 the recursive calls of internal_dfa_match() were passed
  261. local working space and output vectors that were created on the stack. This has
  262. caused issues for some patterns, especially in small-stack environments such as
  263. Windows. A new scheme is now in use which sets up a vector on the stack, but if
  264. this is too small, heap memory is used, up to the heap_limit. The main
  265. parameters are all numbers of ints because the workspace is a vector of ints.
  266. The size of the starting stack vector, DFA_START_RWS_SIZE, is in bytes, and is
  267. defined in pcre2_internal.h so as to be available to pcre2test when it is
  268. finding the minimum heap requirement for a match. */
  269. #define OVEC_UNIT (sizeof(PCRE2_SIZE)/sizeof(int))
  270. #define RWS_BASE_SIZE (DFA_START_RWS_SIZE/sizeof(int)) /* Stack vector */
  271. #define RWS_RSIZE 1000 /* Work size for recursion */
  272. #define RWS_OVEC_RSIZE (1000*OVEC_UNIT) /* Ovector for recursion */
  273. #define RWS_OVEC_OSIZE (2*OVEC_UNIT) /* Ovector in other cases */
  274. /* This structure is at the start of each workspace block. */
  275. typedef struct RWS_anchor {
  276. struct RWS_anchor *next;
  277. unsigned int size; /* Number of ints */
  278. unsigned int free; /* Number of ints */
  279. } RWS_anchor;
  280. #define RWS_ANCHOR_SIZE (sizeof(RWS_anchor)/sizeof(int))
  281. /*************************************************
  282. * Process a callout *
  283. *************************************************/
  284. /* This function is called to perform a callout.
  285. Arguments:
  286. code current code pointer
  287. offsets points to current capture offsets
  288. current_subject start of current subject match
  289. ptr current position in subject
  290. mb the match block
  291. extracode extra code offset when called from condition
  292. lengthptr where to return the callout length
  293. Returns: the return from the callout
  294. */
  295. static int
  296. do_callout(PCRE2_SPTR code, PCRE2_SIZE *offsets, PCRE2_SPTR current_subject,
  297. PCRE2_SPTR ptr, dfa_match_block *mb, PCRE2_SIZE extracode,
  298. PCRE2_SIZE *lengthptr)
  299. {
  300. pcre2_callout_block *cb = mb->cb;
  301. *lengthptr = (code[extracode] == OP_CALLOUT)?
  302. (PCRE2_SIZE)PRIV(OP_lengths)[OP_CALLOUT] :
  303. (PCRE2_SIZE)GET(code, 1 + 2*LINK_SIZE + extracode);
  304. if (mb->callout == NULL) return 0; /* No callout provided */
  305. /* Fixed fields in the callout block are set once and for all at the start of
  306. matching. */
  307. cb->offset_vector = offsets;
  308. cb->start_match = (PCRE2_SIZE)(current_subject - mb->start_subject);
  309. cb->current_position = (PCRE2_SIZE)(ptr - mb->start_subject);
  310. cb->pattern_position = GET(code, 1 + extracode);
  311. cb->next_item_length = GET(code, 1 + LINK_SIZE + extracode);
  312. if (code[extracode] == OP_CALLOUT)
  313. {
  314. cb->callout_number = code[1 + 2*LINK_SIZE + extracode];
  315. cb->callout_string_offset = 0;
  316. cb->callout_string = NULL;
  317. cb->callout_string_length = 0;
  318. }
  319. else
  320. {
  321. cb->callout_number = 0;
  322. cb->callout_string_offset = GET(code, 1 + 3*LINK_SIZE + extracode);
  323. cb->callout_string = code + (1 + 4*LINK_SIZE + extracode) + 1;
  324. cb->callout_string_length = *lengthptr - (1 + 4*LINK_SIZE) - 2;
  325. }
  326. return (mb->callout)(cb, mb->callout_data);
  327. }
  328. /*************************************************
  329. * Expand local workspace memory *
  330. *************************************************/
  331. /* This function is called when internal_dfa_match() is about to be called
  332. recursively and there is insufficient working space left in the current
  333. workspace block. If there's an existing next block, use it; otherwise get a new
  334. block unless the heap limit is reached.
  335. Arguments:
  336. rwsptr pointer to block pointer (updated)
  337. ovecsize space needed for an ovector
  338. mb the match block
  339. Returns: 0 rwsptr has been updated
  340. !0 an error code
  341. */
  342. static int
  343. more_workspace(RWS_anchor **rwsptr, unsigned int ovecsize, dfa_match_block *mb)
  344. {
  345. RWS_anchor *rws = *rwsptr;
  346. RWS_anchor *new;
  347. if (rws->next != NULL)
  348. {
  349. new = rws->next;
  350. }
  351. /* All sizes are in units of sizeof(int), except for mb->heaplimit, which is in
  352. kibibytes. */
  353. else
  354. {
  355. unsigned int newsize = rws->size * 2;
  356. unsigned int heapleft = (unsigned int)
  357. (((1024/sizeof(int))*mb->heap_limit - mb->heap_used));
  358. if (newsize > heapleft) newsize = heapleft;
  359. if (newsize < RWS_RSIZE + ovecsize + RWS_ANCHOR_SIZE)
  360. return PCRE2_ERROR_HEAPLIMIT;
  361. new = mb->memctl.malloc(newsize*sizeof(int), mb->memctl.memory_data);
  362. if (new == NULL) return PCRE2_ERROR_NOMEMORY;
  363. mb->heap_used += newsize;
  364. new->next = NULL;
  365. new->size = newsize;
  366. rws->next = new;
  367. }
  368. new->free = new->size - RWS_ANCHOR_SIZE;
  369. *rwsptr = new;
  370. return 0;
  371. }
  372. /*************************************************
  373. * Match a Regular Expression - DFA engine *
  374. *************************************************/
  375. /* This internal function applies a compiled pattern to a subject string,
  376. starting at a given point, using a DFA engine. This function is called from the
  377. external one, possibly multiple times if the pattern is not anchored. The
  378. function calls itself recursively for some kinds of subpattern.
  379. Arguments:
  380. mb the match_data block with fixed information
  381. this_start_code the opening bracket of this subexpression's code
  382. current_subject where we currently are in the subject string
  383. start_offset start offset in the subject string
  384. offsets vector to contain the matching string offsets
  385. offsetcount size of same
  386. workspace vector of workspace
  387. wscount size of same
  388. rlevel function call recursion level
  389. Returns: > 0 => number of match offset pairs placed in offsets
  390. = 0 => offsets overflowed; longest matches are present
  391. -1 => failed to match
  392. < -1 => some kind of unexpected problem
  393. The following macros are used for adding states to the two state vectors (one
  394. for the current character, one for the following character). */
  395. #define ADD_ACTIVE(x,y) \
  396. if (active_count++ < wscount) \
  397. { \
  398. next_active_state->offset = (x); \
  399. next_active_state->count = (y); \
  400. next_active_state++; \
  401. } \
  402. else return PCRE2_ERROR_DFA_WSSIZE
  403. #define ADD_ACTIVE_DATA(x,y,z) \
  404. if (active_count++ < wscount) \
  405. { \
  406. next_active_state->offset = (x); \
  407. next_active_state->count = (y); \
  408. next_active_state->data = (z); \
  409. next_active_state++; \
  410. } \
  411. else return PCRE2_ERROR_DFA_WSSIZE
  412. #define ADD_NEW(x,y) \
  413. if (new_count++ < wscount) \
  414. { \
  415. next_new_state->offset = (x); \
  416. next_new_state->count = (y); \
  417. next_new_state++; \
  418. } \
  419. else return PCRE2_ERROR_DFA_WSSIZE
  420. #define ADD_NEW_DATA(x,y,z) \
  421. if (new_count++ < wscount) \
  422. { \
  423. next_new_state->offset = (x); \
  424. next_new_state->count = (y); \
  425. next_new_state->data = (z); \
  426. next_new_state++; \
  427. } \
  428. else return PCRE2_ERROR_DFA_WSSIZE
  429. /* And now, here is the code */
  430. static int
  431. internal_dfa_match(
  432. dfa_match_block *mb,
  433. PCRE2_SPTR this_start_code,
  434. PCRE2_SPTR current_subject,
  435. PCRE2_SIZE start_offset,
  436. PCRE2_SIZE *offsets,
  437. uint32_t offsetcount,
  438. int *workspace,
  439. int wscount,
  440. uint32_t rlevel,
  441. int *RWS)
  442. {
  443. stateblock *active_states, *new_states, *temp_states;
  444. stateblock *next_active_state, *next_new_state;
  445. const uint8_t *ctypes, *lcc, *fcc;
  446. PCRE2_SPTR ptr;
  447. PCRE2_SPTR end_code;
  448. dfa_recursion_info new_recursive;
  449. int active_count, new_count, match_count;
  450. /* Some fields in the mb block are frequently referenced, so we load them into
  451. independent variables in the hope that this will perform better. */
  452. PCRE2_SPTR start_subject = mb->start_subject;
  453. PCRE2_SPTR end_subject = mb->end_subject;
  454. PCRE2_SPTR start_code = mb->start_code;
  455. #ifdef SUPPORT_UNICODE
  456. BOOL utf = (mb->poptions & PCRE2_UTF) != 0;
  457. #else
  458. BOOL utf = FALSE;
  459. #endif
  460. BOOL reset_could_continue = FALSE;
  461. if (mb->match_call_count++ >= mb->match_limit) return PCRE2_ERROR_MATCHLIMIT;
  462. if (rlevel++ > mb->match_limit_depth) return PCRE2_ERROR_DEPTHLIMIT;
  463. offsetcount &= (uint32_t)(-2); /* Round down */
  464. wscount -= 2;
  465. wscount = (wscount - (wscount % (INTS_PER_STATEBLOCK * 2))) /
  466. (2 * INTS_PER_STATEBLOCK);
  467. ctypes = mb->tables + ctypes_offset;
  468. lcc = mb->tables + lcc_offset;
  469. fcc = mb->tables + fcc_offset;
  470. match_count = PCRE2_ERROR_NOMATCH; /* A negative number */
  471. active_states = (stateblock *)(workspace + 2);
  472. next_new_state = new_states = active_states + wscount;
  473. new_count = 0;
  474. /* The first thing in any (sub) pattern is a bracket of some sort. Push all
  475. the alternative states onto the list, and find out where the end is. This
  476. makes is possible to use this function recursively, when we want to stop at a
  477. matching internal ket rather than at the end.
  478. If we are dealing with a backward assertion we have to find out the maximum
  479. amount to move back, and set up each alternative appropriately. */
  480. if (*this_start_code == OP_ASSERTBACK || *this_start_code == OP_ASSERTBACK_NOT)
  481. {
  482. size_t max_back = 0;
  483. size_t gone_back;
  484. end_code = this_start_code;
  485. do
  486. {
  487. size_t back = (size_t)GET(end_code, 2+LINK_SIZE);
  488. if (back > max_back) max_back = back;
  489. end_code += GET(end_code, 1);
  490. }
  491. while (*end_code == OP_ALT);
  492. /* If we can't go back the amount required for the longest lookbehind
  493. pattern, go back as far as we can; some alternatives may still be viable. */
  494. #ifdef SUPPORT_UNICODE
  495. /* In character mode we have to step back character by character */
  496. if (utf)
  497. {
  498. for (gone_back = 0; gone_back < max_back; gone_back++)
  499. {
  500. if (current_subject <= start_subject) break;
  501. current_subject--;
  502. ACROSSCHAR(current_subject > start_subject, current_subject,
  503. current_subject--);
  504. }
  505. }
  506. else
  507. #endif
  508. /* In byte-mode we can do this quickly. */
  509. {
  510. size_t current_offset = (size_t)(current_subject - start_subject);
  511. gone_back = (current_offset < max_back)? current_offset : max_back;
  512. current_subject -= gone_back;
  513. }
  514. /* Save the earliest consulted character */
  515. if (current_subject < mb->start_used_ptr)
  516. mb->start_used_ptr = current_subject;
  517. /* Now we can process the individual branches. There will be an OP_REVERSE at
  518. the start of each branch, except when the length of the branch is zero. */
  519. end_code = this_start_code;
  520. do
  521. {
  522. uint32_t revlen = (end_code[1+LINK_SIZE] == OP_REVERSE)? 1 + LINK_SIZE : 0;
  523. size_t back = (revlen == 0)? 0 : (size_t)GET(end_code, 2+LINK_SIZE);
  524. if (back <= gone_back)
  525. {
  526. int bstate = (int)(end_code - start_code + 1 + LINK_SIZE + revlen);
  527. ADD_NEW_DATA(-bstate, 0, (int)(gone_back - back));
  528. }
  529. end_code += GET(end_code, 1);
  530. }
  531. while (*end_code == OP_ALT);
  532. }
  533. /* This is the code for a "normal" subpattern (not a backward assertion). The
  534. start of a whole pattern is always one of these. If we are at the top level,
  535. we may be asked to restart matching from the same point that we reached for a
  536. previous partial match. We still have to scan through the top-level branches to
  537. find the end state. */
  538. else
  539. {
  540. end_code = this_start_code;
  541. /* Restarting */
  542. if (rlevel == 1 && (mb->moptions & PCRE2_DFA_RESTART) != 0)
  543. {
  544. do { end_code += GET(end_code, 1); } while (*end_code == OP_ALT);
  545. new_count = workspace[1];
  546. if (!workspace[0])
  547. memcpy(new_states, active_states, (size_t)new_count * sizeof(stateblock));
  548. }
  549. /* Not restarting */
  550. else
  551. {
  552. int length = 1 + LINK_SIZE +
  553. ((*this_start_code == OP_CBRA || *this_start_code == OP_SCBRA ||
  554. *this_start_code == OP_CBRAPOS || *this_start_code == OP_SCBRAPOS)
  555. ? IMM2_SIZE:0);
  556. do
  557. {
  558. ADD_NEW((int)(end_code - start_code + length), 0);
  559. end_code += GET(end_code, 1);
  560. length = 1 + LINK_SIZE;
  561. }
  562. while (*end_code == OP_ALT);
  563. }
  564. }
  565. workspace[0] = 0; /* Bit indicating which vector is current */
  566. /* Loop for scanning the subject */
  567. ptr = current_subject;
  568. for (;;)
  569. {
  570. int i, j;
  571. int clen, dlen;
  572. uint32_t c, d;
  573. int forced_fail = 0;
  574. BOOL partial_newline = FALSE;
  575. BOOL could_continue = reset_could_continue;
  576. reset_could_continue = FALSE;
  577. if (ptr > mb->last_used_ptr) mb->last_used_ptr = ptr;
  578. /* Make the new state list into the active state list and empty the
  579. new state list. */
  580. temp_states = active_states;
  581. active_states = new_states;
  582. new_states = temp_states;
  583. active_count = new_count;
  584. new_count = 0;
  585. workspace[0] ^= 1; /* Remember for the restarting feature */
  586. workspace[1] = active_count;
  587. /* Set the pointers for adding new states */
  588. next_active_state = active_states + active_count;
  589. next_new_state = new_states;
  590. /* Load the current character from the subject outside the loop, as many
  591. different states may want to look at it, and we assume that at least one
  592. will. */
  593. if (ptr < end_subject)
  594. {
  595. clen = 1; /* Number of data items in the character */
  596. #ifdef SUPPORT_UNICODE
  597. GETCHARLENTEST(c, ptr, clen);
  598. #else
  599. c = *ptr;
  600. #endif /* SUPPORT_UNICODE */
  601. }
  602. else
  603. {
  604. clen = 0; /* This indicates the end of the subject */
  605. c = NOTACHAR; /* This value should never actually be used */
  606. }
  607. /* Scan up the active states and act on each one. The result of an action
  608. may be to add more states to the currently active list (e.g. on hitting a
  609. parenthesis) or it may be to put states on the new list, for considering
  610. when we move the character pointer on. */
  611. for (i = 0; i < active_count; i++)
  612. {
  613. stateblock *current_state = active_states + i;
  614. BOOL caseless = FALSE;
  615. PCRE2_SPTR code;
  616. uint32_t codevalue;
  617. int state_offset = current_state->offset;
  618. int rrc;
  619. int count;
  620. /* A negative offset is a special case meaning "hold off going to this
  621. (negated) state until the number of characters in the data field have
  622. been skipped". If the could_continue flag was passed over from a previous
  623. state, arrange for it to passed on. */
  624. if (state_offset < 0)
  625. {
  626. if (current_state->data > 0)
  627. {
  628. ADD_NEW_DATA(state_offset, current_state->count,
  629. current_state->data - 1);
  630. if (could_continue) reset_could_continue = TRUE;
  631. continue;
  632. }
  633. else
  634. {
  635. current_state->offset = state_offset = -state_offset;
  636. }
  637. }
  638. /* Check for a duplicate state with the same count, and skip if found.
  639. See the note at the head of this module about the possibility of improving
  640. performance here. */
  641. for (j = 0; j < i; j++)
  642. {
  643. if (active_states[j].offset == state_offset &&
  644. active_states[j].count == current_state->count)
  645. goto NEXT_ACTIVE_STATE;
  646. }
  647. /* The state offset is the offset to the opcode */
  648. code = start_code + state_offset;
  649. codevalue = *code;
  650. /* If this opcode inspects a character, but we are at the end of the
  651. subject, remember the fact for use when testing for a partial match. */
  652. if (clen == 0 && poptable[codevalue] != 0)
  653. could_continue = TRUE;
  654. /* If this opcode is followed by an inline character, load it. It is
  655. tempting to test for the presence of a subject character here, but that
  656. is wrong, because sometimes zero repetitions of the subject are
  657. permitted.
  658. We also use this mechanism for opcodes such as OP_TYPEPLUS that take an
  659. argument that is not a data character - but is always one byte long because
  660. the values are small. We have to take special action to deal with \P, \p,
  661. \H, \h, \V, \v and \X in this case. To keep the other cases fast, convert
  662. these ones to new opcodes. */
  663. if (coptable[codevalue] > 0)
  664. {
  665. dlen = 1;
  666. #ifdef SUPPORT_UNICODE
  667. if (utf) { GETCHARLEN(d, (code + coptable[codevalue]), dlen); } else
  668. #endif /* SUPPORT_UNICODE */
  669. d = code[coptable[codevalue]];
  670. if (codevalue >= OP_TYPESTAR)
  671. {
  672. switch(d)
  673. {
  674. case OP_ANYBYTE: return PCRE2_ERROR_DFA_UITEM;
  675. case OP_NOTPROP:
  676. case OP_PROP: codevalue += OP_PROP_EXTRA; break;
  677. case OP_ANYNL: codevalue += OP_ANYNL_EXTRA; break;
  678. case OP_EXTUNI: codevalue += OP_EXTUNI_EXTRA; break;
  679. case OP_NOT_HSPACE:
  680. case OP_HSPACE: codevalue += OP_HSPACE_EXTRA; break;
  681. case OP_NOT_VSPACE:
  682. case OP_VSPACE: codevalue += OP_VSPACE_EXTRA; break;
  683. default: break;
  684. }
  685. }
  686. }
  687. else
  688. {
  689. dlen = 0; /* Not strictly necessary, but compilers moan */
  690. d = NOTACHAR; /* if these variables are not set. */
  691. }
  692. /* Now process the individual opcodes */
  693. switch (codevalue)
  694. {
  695. /* ========================================================================== */
  696. /* These cases are never obeyed. This is a fudge that causes a compile-
  697. time error if the vectors coptable or poptable, which are indexed by
  698. opcode, are not the correct length. It seems to be the only way to do
  699. such a check at compile time, as the sizeof() operator does not work
  700. in the C preprocessor. */
  701. case OP_TABLE_LENGTH:
  702. case OP_TABLE_LENGTH +
  703. ((sizeof(coptable) == OP_TABLE_LENGTH) &&
  704. (sizeof(poptable) == OP_TABLE_LENGTH)):
  705. return 0;
  706. /* ========================================================================== */
  707. /* Reached a closing bracket. If not at the end of the pattern, carry
  708. on with the next opcode. For repeating opcodes, also add the repeat
  709. state. Note that KETRPOS will always be encountered at the end of the
  710. subpattern, because the possessive subpattern repeats are always handled
  711. using recursive calls. Thus, it never adds any new states.
  712. At the end of the (sub)pattern, unless we have an empty string and
  713. PCRE2_NOTEMPTY is set, or PCRE2_NOTEMPTY_ATSTART is set and we are at the
  714. start of the subject, save the match data, shifting up all previous
  715. matches so we always have the longest first. */
  716. case OP_KET:
  717. case OP_KETRMIN:
  718. case OP_KETRMAX:
  719. case OP_KETRPOS:
  720. if (code != end_code)
  721. {
  722. ADD_ACTIVE(state_offset + 1 + LINK_SIZE, 0);
  723. if (codevalue != OP_KET)
  724. {
  725. ADD_ACTIVE(state_offset - (int)GET(code, 1), 0);
  726. }
  727. }
  728. else
  729. {
  730. if (ptr > current_subject ||
  731. ((mb->moptions & PCRE2_NOTEMPTY) == 0 &&
  732. ((mb->moptions & PCRE2_NOTEMPTY_ATSTART) == 0 ||
  733. current_subject > start_subject + mb->start_offset)))
  734. {
  735. if (match_count < 0) match_count = (offsetcount >= 2)? 1 : 0;
  736. else if (match_count > 0 && ++match_count * 2 > (int)offsetcount)
  737. match_count = 0;
  738. count = ((match_count == 0)? (int)offsetcount : match_count * 2) - 2;
  739. if (count > 0) (void)memmove(offsets + 2, offsets,
  740. (size_t)count * sizeof(PCRE2_SIZE));
  741. if (offsetcount >= 2)
  742. {
  743. offsets[0] = (PCRE2_SIZE)(current_subject - start_subject);
  744. offsets[1] = (PCRE2_SIZE)(ptr - start_subject);
  745. }
  746. if ((mb->moptions & PCRE2_DFA_SHORTEST) != 0) return match_count;
  747. }
  748. }
  749. break;
  750. /* ========================================================================== */
  751. /* These opcodes add to the current list of states without looking
  752. at the current character. */
  753. /*-----------------------------------------------------------------*/
  754. case OP_ALT:
  755. do { code += GET(code, 1); } while (*code == OP_ALT);
  756. ADD_ACTIVE((int)(code - start_code), 0);
  757. break;
  758. /*-----------------------------------------------------------------*/
  759. case OP_BRA:
  760. case OP_SBRA:
  761. do
  762. {
  763. ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE), 0);
  764. code += GET(code, 1);
  765. }
  766. while (*code == OP_ALT);
  767. break;
  768. /*-----------------------------------------------------------------*/
  769. case OP_CBRA:
  770. case OP_SCBRA:
  771. ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE + IMM2_SIZE), 0);
  772. code += GET(code, 1);
  773. while (*code == OP_ALT)
  774. {
  775. ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE), 0);
  776. code += GET(code, 1);
  777. }
  778. break;
  779. /*-----------------------------------------------------------------*/
  780. case OP_BRAZERO:
  781. case OP_BRAMINZERO:
  782. ADD_ACTIVE(state_offset + 1, 0);
  783. code += 1 + GET(code, 2);
  784. while (*code == OP_ALT) code += GET(code, 1);
  785. ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE), 0);
  786. break;
  787. /*-----------------------------------------------------------------*/
  788. case OP_SKIPZERO:
  789. code += 1 + GET(code, 2);
  790. while (*code == OP_ALT) code += GET(code, 1);
  791. ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE), 0);
  792. break;
  793. /*-----------------------------------------------------------------*/
  794. case OP_CIRC:
  795. if (ptr == start_subject && (mb->moptions & PCRE2_NOTBOL) == 0)
  796. { ADD_ACTIVE(state_offset + 1, 0); }
  797. break;
  798. /*-----------------------------------------------------------------*/
  799. case OP_CIRCM:
  800. if ((ptr == start_subject && (mb->moptions & PCRE2_NOTBOL) == 0) ||
  801. ((ptr != end_subject || (mb->poptions & PCRE2_ALT_CIRCUMFLEX) != 0 )
  802. && WAS_NEWLINE(ptr)))
  803. { ADD_ACTIVE(state_offset + 1, 0); }
  804. break;
  805. /*-----------------------------------------------------------------*/
  806. case OP_EOD:
  807. if (ptr >= end_subject)
  808. {
  809. if ((mb->moptions & PCRE2_PARTIAL_HARD) != 0)
  810. could_continue = TRUE;
  811. else { ADD_ACTIVE(state_offset + 1, 0); }
  812. }
  813. break;
  814. /*-----------------------------------------------------------------*/
  815. case OP_SOD:
  816. if (ptr == start_subject) { ADD_ACTIVE(state_offset + 1, 0); }
  817. break;
  818. /*-----------------------------------------------------------------*/
  819. case OP_SOM:
  820. if (ptr == start_subject + start_offset) { ADD_ACTIVE(state_offset + 1, 0); }
  821. break;
  822. /* ========================================================================== */
  823. /* These opcodes inspect the next subject character, and sometimes
  824. the previous one as well, but do not have an argument. The variable
  825. clen contains the length of the current character and is zero if we are
  826. at the end of the subject. */
  827. /*-----------------------------------------------------------------*/
  828. case OP_ANY:
  829. if (clen > 0 && !IS_NEWLINE(ptr))
  830. {
  831. if (ptr + 1 >= mb->end_subject &&
  832. (mb->moptions & (PCRE2_PARTIAL_HARD)) != 0 &&
  833. NLBLOCK->nltype == NLTYPE_FIXED &&
  834. NLBLOCK->nllen == 2 &&
  835. c == NLBLOCK->nl[0])
  836. {
  837. could_continue = partial_newline = TRUE;
  838. }
  839. else
  840. {
  841. ADD_NEW(state_offset + 1, 0);
  842. }
  843. }
  844. break;
  845. /*-----------------------------------------------------------------*/
  846. case OP_ALLANY:
  847. if (clen > 0)
  848. { ADD_NEW(state_offset + 1, 0); }
  849. break;
  850. /*-----------------------------------------------------------------*/
  851. case OP_EODN:
  852. if (clen == 0 && (mb->moptions & PCRE2_PARTIAL_HARD) != 0)
  853. could_continue = TRUE;
  854. else if (clen == 0 || (IS_NEWLINE(ptr) && ptr == end_subject - mb->nllen))
  855. { ADD_ACTIVE(state_offset + 1, 0); }
  856. break;
  857. /*-----------------------------------------------------------------*/
  858. case OP_DOLL:
  859. if ((mb->moptions & PCRE2_NOTEOL) == 0)
  860. {
  861. if (clen == 0 && (mb->moptions & PCRE2_PARTIAL_HARD) != 0)
  862. could_continue = TRUE;
  863. else if (clen == 0 ||
  864. ((mb->poptions & PCRE2_DOLLAR_ENDONLY) == 0 && IS_NEWLINE(ptr) &&
  865. (ptr == end_subject - mb->nllen)
  866. ))
  867. { ADD_ACTIVE(state_offset + 1, 0); }
  868. else if (ptr + 1 >= mb->end_subject &&
  869. (mb->moptions & (PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT)) != 0 &&
  870. NLBLOCK->nltype == NLTYPE_FIXED &&
  871. NLBLOCK->nllen == 2 &&
  872. c == NLBLOCK->nl[0])
  873. {
  874. if ((mb->moptions & PCRE2_PARTIAL_HARD) != 0)
  875. {
  876. reset_could_continue = TRUE;
  877. ADD_NEW_DATA(-(state_offset + 1), 0, 1);
  878. }
  879. else could_continue = partial_newline = TRUE;
  880. }
  881. }
  882. break;
  883. /*-----------------------------------------------------------------*/
  884. case OP_DOLLM:
  885. if ((mb->moptions & PCRE2_NOTEOL) == 0)
  886. {
  887. if (clen == 0 && (mb->moptions & PCRE2_PARTIAL_HARD) != 0)
  888. could_continue = TRUE;
  889. else if (clen == 0 ||
  890. ((mb->poptions & PCRE2_DOLLAR_ENDONLY) == 0 && IS_NEWLINE(ptr)))
  891. { ADD_ACTIVE(state_offset + 1, 0); }
  892. else if (ptr + 1 >= mb->end_subject &&
  893. (mb->moptions & (PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT)) != 0 &&
  894. NLBLOCK->nltype == NLTYPE_FIXED &&
  895. NLBLOCK->nllen == 2 &&
  896. c == NLBLOCK->nl[0])
  897. {
  898. if ((mb->moptions & PCRE2_PARTIAL_HARD) != 0)
  899. {
  900. reset_could_continue = TRUE;
  901. ADD_NEW_DATA(-(state_offset + 1), 0, 1);
  902. }
  903. else could_continue = partial_newline = TRUE;
  904. }
  905. }
  906. else if (IS_NEWLINE(ptr))
  907. { ADD_ACTIVE(state_offset + 1, 0); }
  908. break;
  909. /*-----------------------------------------------------------------*/
  910. case OP_DIGIT:
  911. case OP_WHITESPACE:
  912. case OP_WORDCHAR:
  913. if (clen > 0 && c < 256 &&
  914. ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0)
  915. { ADD_NEW(state_offset + 1, 0); }
  916. break;
  917. /*-----------------------------------------------------------------*/
  918. case OP_NOT_DIGIT:
  919. case OP_NOT_WHITESPACE:
  920. case OP_NOT_WORDCHAR:
  921. if (clen > 0 && (c >= 256 ||
  922. ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0))
  923. { ADD_NEW(state_offset + 1, 0); }
  924. break;
  925. /*-----------------------------------------------------------------*/
  926. case OP_WORD_BOUNDARY:
  927. case OP_NOT_WORD_BOUNDARY:
  928. {
  929. int left_word, right_word;
  930. if (ptr > start_subject)
  931. {
  932. PCRE2_SPTR temp = ptr - 1;
  933. if (temp < mb->start_used_ptr) mb->start_used_ptr = temp;
  934. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH != 32
  935. if (utf) { BACKCHAR(temp); }
  936. #endif
  937. GETCHARTEST(d, temp);
  938. #ifdef SUPPORT_UNICODE
  939. if ((mb->poptions & PCRE2_UCP) != 0)
  940. {
  941. if (d == '_') left_word = TRUE; else
  942. {
  943. uint32_t cat = UCD_CATEGORY(d);
  944. left_word = (cat == ucp_L || cat == ucp_N);
  945. }
  946. }
  947. else
  948. #endif
  949. left_word = d < 256 && (ctypes[d] & ctype_word) != 0;
  950. }
  951. else left_word = FALSE;
  952. if (clen > 0)
  953. {
  954. if (ptr >= mb->last_used_ptr)
  955. {
  956. PCRE2_SPTR temp = ptr + 1;
  957. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH != 32
  958. if (utf) { FORWARDCHARTEST(temp, mb->end_subject); }
  959. #endif
  960. mb->last_used_ptr = temp;
  961. }
  962. #ifdef SUPPORT_UNICODE
  963. if ((mb->poptions & PCRE2_UCP) != 0)
  964. {
  965. if (c == '_') right_word = TRUE; else
  966. {
  967. uint32_t cat = UCD_CATEGORY(c);
  968. right_word = (cat == ucp_L || cat == ucp_N);
  969. }
  970. }
  971. else
  972. #endif
  973. right_word = c < 256 && (ctypes[c] & ctype_word) != 0;
  974. }
  975. else right_word = FALSE;
  976. if ((left_word == right_word) == (codevalue == OP_NOT_WORD_BOUNDARY))
  977. { ADD_ACTIVE(state_offset + 1, 0); }
  978. }
  979. break;
  980. /*-----------------------------------------------------------------*/
  981. /* Check the next character by Unicode property. We will get here only
  982. if the support is in the binary; otherwise a compile-time error occurs.
  983. */
  984. #ifdef SUPPORT_UNICODE
  985. case OP_PROP:
  986. case OP_NOTPROP:
  987. if (clen > 0)
  988. {
  989. BOOL OK;
  990. const uint32_t *cp;
  991. const ucd_record * prop = GET_UCD(c);
  992. switch(code[1])
  993. {
  994. case PT_ANY:
  995. OK = TRUE;
  996. break;
  997. case PT_LAMP:
  998. OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll ||
  999. prop->chartype == ucp_Lt;
  1000. break;
  1001. case PT_GC:
  1002. OK = PRIV(ucp_gentype)[prop->chartype] == code[2];
  1003. break;
  1004. case PT_PC:
  1005. OK = prop->chartype == code[2];
  1006. break;
  1007. case PT_SC:
  1008. OK = prop->script == code[2];
  1009. break;
  1010. /* These are specials for combination cases. */
  1011. case PT_ALNUM:
  1012. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
  1013. PRIV(ucp_gentype)[prop->chartype] == ucp_N;
  1014. break;
  1015. /* Perl space used to exclude VT, but from Perl 5.18 it is included,
  1016. which means that Perl space and POSIX space are now identical. PCRE
  1017. was changed at release 8.34. */
  1018. case PT_SPACE: /* Perl space */
  1019. case PT_PXSPACE: /* POSIX space */
  1020. switch(c)
  1021. {
  1022. HSPACE_CASES:
  1023. VSPACE_CASES:
  1024. OK = TRUE;
  1025. break;
  1026. default:
  1027. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_Z;
  1028. break;
  1029. }
  1030. break;
  1031. case PT_WORD:
  1032. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
  1033. PRIV(ucp_gentype)[prop->chartype] == ucp_N ||
  1034. c == CHAR_UNDERSCORE;
  1035. break;
  1036. case PT_CLIST:
  1037. cp = PRIV(ucd_caseless_sets) + code[2];
  1038. for (;;)
  1039. {
  1040. if (c < *cp) { OK = FALSE; break; }
  1041. if (c == *cp++) { OK = TRUE; break; }
  1042. }
  1043. break;
  1044. case PT_UCNC:
  1045. OK = c == CHAR_DOLLAR_SIGN || c == CHAR_COMMERCIAL_AT ||
  1046. c == CHAR_GRAVE_ACCENT || (c >= 0xa0 && c <= 0xd7ff) ||
  1047. c >= 0xe000;
  1048. break;
  1049. /* Should never occur, but keep compilers from grumbling. */
  1050. default:
  1051. OK = codevalue != OP_PROP;
  1052. break;
  1053. }
  1054. if (OK == (codevalue == OP_PROP)) { ADD_NEW(state_offset + 3, 0); }
  1055. }
  1056. break;
  1057. #endif
  1058. /* ========================================================================== */
  1059. /* These opcodes likewise inspect the subject character, but have an
  1060. argument that is not a data character. It is one of these opcodes:
  1061. OP_ANY, OP_ALLANY, OP_DIGIT, OP_NOT_DIGIT, OP_WHITESPACE, OP_NOT_SPACE,
  1062. OP_WORDCHAR, OP_NOT_WORDCHAR. The value is loaded into d. */
  1063. case OP_TYPEPLUS:
  1064. case OP_TYPEMINPLUS:
  1065. case OP_TYPEPOSPLUS:
  1066. count = current_state->count; /* Already matched */
  1067. if (count > 0) { ADD_ACTIVE(state_offset + 2, 0); }
  1068. if (clen > 0)
  1069. {
  1070. if (d == OP_ANY && ptr + 1 >= mb->end_subject &&
  1071. (mb->moptions & (PCRE2_PARTIAL_HARD)) != 0 &&
  1072. NLBLOCK->nltype == NLTYPE_FIXED &&
  1073. NLBLOCK->nllen == 2 &&
  1074. c == NLBLOCK->nl[0])
  1075. {
  1076. could_continue = partial_newline = TRUE;
  1077. }
  1078. else if ((c >= 256 && d != OP_DIGIT && d != OP_WHITESPACE && d != OP_WORDCHAR) ||
  1079. (c < 256 &&
  1080. (d != OP_ANY || !IS_NEWLINE(ptr)) &&
  1081. ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0))
  1082. {
  1083. if (count > 0 && codevalue == OP_TYPEPOSPLUS)
  1084. {
  1085. active_count--; /* Remove non-match possibility */
  1086. next_active_state--;
  1087. }
  1088. count++;
  1089. ADD_NEW(state_offset, count);
  1090. }
  1091. }
  1092. break;
  1093. /*-----------------------------------------------------------------*/
  1094. case OP_TYPEQUERY:
  1095. case OP_TYPEMINQUERY:
  1096. case OP_TYPEPOSQUERY:
  1097. ADD_ACTIVE(state_offset + 2, 0);
  1098. if (clen > 0)
  1099. {
  1100. if (d == OP_ANY && ptr + 1 >= mb->end_subject &&
  1101. (mb->moptions & (PCRE2_PARTIAL_HARD)) != 0 &&
  1102. NLBLOCK->nltype == NLTYPE_FIXED &&
  1103. NLBLOCK->nllen == 2 &&
  1104. c == NLBLOCK->nl[0])
  1105. {
  1106. could_continue = partial_newline = TRUE;
  1107. }
  1108. else if ((c >= 256 && d != OP_DIGIT && d != OP_WHITESPACE && d != OP_WORDCHAR) ||
  1109. (c < 256 &&
  1110. (d != OP_ANY || !IS_NEWLINE(ptr)) &&
  1111. ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0))
  1112. {
  1113. if (codevalue == OP_TYPEPOSQUERY)
  1114. {
  1115. active_count--; /* Remove non-match possibility */
  1116. next_active_state--;
  1117. }
  1118. ADD_NEW(state_offset + 2, 0);
  1119. }
  1120. }
  1121. break;
  1122. /*-----------------------------------------------------------------*/
  1123. case OP_TYPESTAR:
  1124. case OP_TYPEMINSTAR:
  1125. case OP_TYPEPOSSTAR:
  1126. ADD_ACTIVE(state_offset + 2, 0);
  1127. if (clen > 0)
  1128. {
  1129. if (d == OP_ANY && ptr + 1 >= mb->end_subject &&
  1130. (mb->moptions & (PCRE2_PARTIAL_HARD)) != 0 &&
  1131. NLBLOCK->nltype == NLTYPE_FIXED &&
  1132. NLBLOCK->nllen == 2 &&
  1133. c == NLBLOCK->nl[0])
  1134. {
  1135. could_continue = partial_newline = TRUE;
  1136. }
  1137. else if ((c >= 256 && d != OP_DIGIT && d != OP_WHITESPACE && d != OP_WORDCHAR) ||
  1138. (c < 256 &&
  1139. (d != OP_ANY || !IS_NEWLINE(ptr)) &&
  1140. ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0))
  1141. {
  1142. if (codevalue == OP_TYPEPOSSTAR)
  1143. {
  1144. active_count--; /* Remove non-match possibility */
  1145. next_active_state--;
  1146. }
  1147. ADD_NEW(state_offset, 0);
  1148. }
  1149. }
  1150. break;
  1151. /*-----------------------------------------------------------------*/
  1152. case OP_TYPEEXACT:
  1153. count = current_state->count; /* Number already matched */
  1154. if (clen > 0)
  1155. {
  1156. if (d == OP_ANY && ptr + 1 >= mb->end_subject &&
  1157. (mb->moptions & (PCRE2_PARTIAL_HARD)) != 0 &&
  1158. NLBLOCK->nltype == NLTYPE_FIXED &&
  1159. NLBLOCK->nllen == 2 &&
  1160. c == NLBLOCK->nl[0])
  1161. {
  1162. could_continue = partial_newline = TRUE;
  1163. }
  1164. else if ((c >= 256 && d != OP_DIGIT && d != OP_WHITESPACE && d != OP_WORDCHAR) ||
  1165. (c < 256 &&
  1166. (d != OP_ANY || !IS_NEWLINE(ptr)) &&
  1167. ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0))
  1168. {
  1169. if (++count >= (int)GET2(code, 1))
  1170. { ADD_NEW(state_offset + 1 + IMM2_SIZE + 1, 0); }
  1171. else
  1172. { ADD_NEW(state_offset, count); }
  1173. }
  1174. }
  1175. break;
  1176. /*-----------------------------------------------------------------*/
  1177. case OP_TYPEUPTO:
  1178. case OP_TYPEMINUPTO:
  1179. case OP_TYPEPOSUPTO:
  1180. ADD_ACTIVE(state_offset + 2 + IMM2_SIZE, 0);
  1181. count = current_state->count; /* Number already matched */
  1182. if (clen > 0)
  1183. {
  1184. if (d == OP_ANY && ptr + 1 >= mb->end_subject &&
  1185. (mb->moptions & (PCRE2_PARTIAL_HARD)) != 0 &&
  1186. NLBLOCK->nltype == NLTYPE_FIXED &&
  1187. NLBLOCK->nllen == 2 &&
  1188. c == NLBLOCK->nl[0])
  1189. {
  1190. could_continue = partial_newline = TRUE;
  1191. }
  1192. else if ((c >= 256 && d != OP_DIGIT && d != OP_WHITESPACE && d != OP_WORDCHAR) ||
  1193. (c < 256 &&
  1194. (d != OP_ANY || !IS_NEWLINE(ptr)) &&
  1195. ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0))
  1196. {
  1197. if (codevalue == OP_TYPEPOSUPTO)
  1198. {
  1199. active_count--; /* Remove non-match possibility */
  1200. next_active_state--;
  1201. }
  1202. if (++count >= (int)GET2(code, 1))
  1203. { ADD_NEW(state_offset + 2 + IMM2_SIZE, 0); }
  1204. else
  1205. { ADD_NEW(state_offset, count); }
  1206. }
  1207. }
  1208. break;
  1209. /* ========================================================================== */
  1210. /* These are virtual opcodes that are used when something like
  1211. OP_TYPEPLUS has OP_PROP, OP_NOTPROP, OP_ANYNL, or OP_EXTUNI as its
  1212. argument. It keeps the code above fast for the other cases. The argument
  1213. is in the d variable. */
  1214. #ifdef SUPPORT_UNICODE
  1215. case OP_PROP_EXTRA + OP_TYPEPLUS:
  1216. case OP_PROP_EXTRA + OP_TYPEMINPLUS:
  1217. case OP_PROP_EXTRA + OP_TYPEPOSPLUS:
  1218. count = current_state->count; /* Already matched */
  1219. if (count > 0) { ADD_ACTIVE(state_offset + 4, 0); }
  1220. if (clen > 0)
  1221. {
  1222. BOOL OK;
  1223. const uint32_t *cp;
  1224. const ucd_record * prop = GET_UCD(c);
  1225. switch(code[2])
  1226. {
  1227. case PT_ANY:
  1228. OK = TRUE;
  1229. break;
  1230. case PT_LAMP:
  1231. OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll ||
  1232. prop->chartype == ucp_Lt;
  1233. break;
  1234. case PT_GC:
  1235. OK = PRIV(ucp_gentype)[prop->chartype] == code[3];
  1236. break;
  1237. case PT_PC:
  1238. OK = prop->chartype == code[3];
  1239. break;
  1240. case PT_SC:
  1241. OK = prop->script == code[3];
  1242. break;
  1243. /* These are specials for combination cases. */
  1244. case PT_ALNUM:
  1245. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
  1246. PRIV(ucp_gentype)[prop->chartype] == ucp_N;
  1247. break;
  1248. /* Perl space used to exclude VT, but from Perl 5.18 it is included,
  1249. which means that Perl space and POSIX space are now identical. PCRE
  1250. was changed at release 8.34. */
  1251. case PT_SPACE: /* Perl space */
  1252. case PT_PXSPACE: /* POSIX space */
  1253. switch(c)
  1254. {
  1255. HSPACE_CASES:
  1256. VSPACE_CASES:
  1257. OK = TRUE;
  1258. break;
  1259. default:
  1260. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_Z;
  1261. break;
  1262. }
  1263. break;
  1264. case PT_WORD:
  1265. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
  1266. PRIV(ucp_gentype)[prop->chartype] == ucp_N ||
  1267. c == CHAR_UNDERSCORE;
  1268. break;
  1269. case PT_CLIST:
  1270. cp = PRIV(ucd_caseless_sets) + code[3];
  1271. for (;;)
  1272. {
  1273. if (c < *cp) { OK = FALSE; break; }
  1274. if (c == *cp++) { OK = TRUE; break; }
  1275. }
  1276. break;
  1277. case PT_UCNC:
  1278. OK = c == CHAR_DOLLAR_SIGN || c == CHAR_COMMERCIAL_AT ||
  1279. c == CHAR_GRAVE_ACCENT || (c >= 0xa0 && c <= 0xd7ff) ||
  1280. c >= 0xe000;
  1281. break;
  1282. /* Should never occur, but keep compilers from grumbling. */
  1283. default:
  1284. OK = codevalue != OP_PROP;
  1285. break;
  1286. }
  1287. if (OK == (d == OP_PROP))
  1288. {
  1289. if (count > 0 && codevalue == OP_PROP_EXTRA + OP_TYPEPOSPLUS)
  1290. {
  1291. active_count--; /* Remove non-match possibility */
  1292. next_active_state--;
  1293. }
  1294. count++;
  1295. ADD_NEW(state_offset, count);
  1296. }
  1297. }
  1298. break;
  1299. /*-----------------------------------------------------------------*/
  1300. case OP_EXTUNI_EXTRA + OP_TYPEPLUS:
  1301. case OP_EXTUNI_EXTRA + OP_TYPEMINPLUS:
  1302. case OP_EXTUNI_EXTRA + OP_TYPEPOSPLUS:
  1303. count = current_state->count; /* Already matched */
  1304. if (count > 0) { ADD_ACTIVE(state_offset + 2, 0); }
  1305. if (clen > 0)
  1306. {
  1307. int ncount = 0;
  1308. if (count > 0 && codevalue == OP_EXTUNI_EXTRA + OP_TYPEPOSPLUS)
  1309. {
  1310. active_count--; /* Remove non-match possibility */
  1311. next_active_state--;
  1312. }
  1313. (void)PRIV(extuni)(c, ptr + clen, mb->start_subject, end_subject, utf,
  1314. &ncount);
  1315. count++;
  1316. ADD_NEW_DATA(-state_offset, count, ncount);
  1317. }
  1318. break;
  1319. #endif
  1320. /*-----------------------------------------------------------------*/
  1321. case OP_ANYNL_EXTRA + OP_TYPEPLUS:
  1322. case OP_ANYNL_EXTRA + OP_TYPEMINPLUS:
  1323. case OP_ANYNL_EXTRA + OP_TYPEPOSPLUS:
  1324. count = current_state->count; /* Already matched */
  1325. if (count > 0) { ADD_ACTIVE(state_offset + 2, 0); }
  1326. if (clen > 0)
  1327. {
  1328. int ncount = 0;
  1329. switch (c)
  1330. {
  1331. case CHAR_VT:
  1332. case CHAR_FF:
  1333. case CHAR_NEL:
  1334. #ifndef EBCDIC
  1335. case 0x2028:
  1336. case 0x2029:
  1337. #endif /* Not EBCDIC */
  1338. if (mb->bsr_convention == PCRE2_BSR_ANYCRLF) break;
  1339. goto ANYNL01;
  1340. case CHAR_CR:
  1341. if (ptr + 1 < end_subject && UCHAR21TEST(ptr + 1) == CHAR_LF) ncount = 1;
  1342. /* Fall through */
  1343. ANYNL01:
  1344. case CHAR_LF:
  1345. if (count > 0 && codevalue == OP_ANYNL_EXTRA + OP_TYPEPOSPLUS)
  1346. {
  1347. active_count--; /* Remove non-match possibility */
  1348. next_active_state--;
  1349. }
  1350. count++;
  1351. ADD_NEW_DATA(-state_offset, count, ncount);
  1352. break;
  1353. default:
  1354. break;
  1355. }
  1356. }
  1357. break;
  1358. /*-----------------------------------------------------------------*/
  1359. case OP_VSPACE_EXTRA + OP_TYPEPLUS:
  1360. case OP_VSPACE_EXTRA + OP_TYPEMINPLUS:
  1361. case OP_VSPACE_EXTRA + OP_TYPEPOSPLUS:
  1362. count = current_state->count; /* Already matched */
  1363. if (count > 0) { ADD_ACTIVE(state_offset + 2, 0); }
  1364. if (clen > 0)
  1365. {
  1366. BOOL OK;
  1367. switch (c)
  1368. {
  1369. VSPACE_CASES:
  1370. OK = TRUE;
  1371. break;
  1372. default:
  1373. OK = FALSE;
  1374. break;
  1375. }
  1376. if (OK == (d == OP_VSPACE))
  1377. {
  1378. if (count > 0 && codevalue == OP_VSPACE_EXTRA + OP_TYPEPOSPLUS)
  1379. {
  1380. active_count--; /* Remove non-match possibility */
  1381. next_active_state--;
  1382. }
  1383. count++;
  1384. ADD_NEW_DATA(-state_offset, count, 0);
  1385. }
  1386. }
  1387. break;
  1388. /*-----------------------------------------------------------------*/
  1389. case OP_HSPACE_EXTRA + OP_TYPEPLUS:
  1390. case OP_HSPACE_EXTRA + OP_TYPEMINPLUS:
  1391. case OP_HSPACE_EXTRA + OP_TYPEPOSPLUS:
  1392. count = current_state->count; /* Already matched */
  1393. if (count > 0) { ADD_ACTIVE(state_offset + 2, 0); }
  1394. if (clen > 0)
  1395. {
  1396. BOOL OK;
  1397. switch (c)
  1398. {
  1399. HSPACE_CASES:
  1400. OK = TRUE;
  1401. break;
  1402. default:
  1403. OK = FALSE;
  1404. break;
  1405. }
  1406. if (OK == (d == OP_HSPACE))
  1407. {
  1408. if (count > 0 && codevalue == OP_HSPACE_EXTRA + OP_TYPEPOSPLUS)
  1409. {
  1410. active_count--; /* Remove non-match possibility */
  1411. next_active_state--;
  1412. }
  1413. count++;
  1414. ADD_NEW_DATA(-state_offset, count, 0);
  1415. }
  1416. }
  1417. break;
  1418. /*-----------------------------------------------------------------*/
  1419. #ifdef SUPPORT_UNICODE
  1420. case OP_PROP_EXTRA + OP_TYPEQUERY:
  1421. case OP_PROP_EXTRA + OP_TYPEMINQUERY:
  1422. case OP_PROP_EXTRA + OP_TYPEPOSQUERY:
  1423. count = 4;
  1424. goto QS1;
  1425. case OP_PROP_EXTRA + OP_TYPESTAR:
  1426. case OP_PROP_EXTRA + OP_TYPEMINSTAR:
  1427. case OP_PROP_EXTRA + OP_TYPEPOSSTAR:
  1428. count = 0;
  1429. QS1:
  1430. ADD_ACTIVE(state_offset + 4, 0);
  1431. if (clen > 0)
  1432. {
  1433. BOOL OK;
  1434. const uint32_t *cp;
  1435. const ucd_record * prop = GET_UCD(c);
  1436. switch(code[2])
  1437. {
  1438. case PT_ANY:
  1439. OK = TRUE;
  1440. break;
  1441. case PT_LAMP:
  1442. OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll ||
  1443. prop->chartype == ucp_Lt;
  1444. break;
  1445. case PT_GC:
  1446. OK = PRIV(ucp_gentype)[prop->chartype] == code[3];
  1447. break;
  1448. case PT_PC:
  1449. OK = prop->chartype == code[3];
  1450. break;
  1451. case PT_SC:
  1452. OK = prop->script == code[3];
  1453. break;
  1454. /* These are specials for combination cases. */
  1455. case PT_ALNUM:
  1456. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
  1457. PRIV(ucp_gentype)[prop->chartype] == ucp_N;
  1458. break;
  1459. /* Perl space used to exclude VT, but from Perl 5.18 it is included,
  1460. which means that Perl space and POSIX space are now identical. PCRE
  1461. was changed at release 8.34. */
  1462. case PT_SPACE: /* Perl space */
  1463. case PT_PXSPACE: /* POSIX space */
  1464. switch(c)
  1465. {
  1466. HSPACE_CASES:
  1467. VSPACE_CASES:
  1468. OK = TRUE;
  1469. break;
  1470. default:
  1471. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_Z;
  1472. break;
  1473. }
  1474. break;
  1475. case PT_WORD:
  1476. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
  1477. PRIV(ucp_gentype)[prop->chartype] == ucp_N ||
  1478. c == CHAR_UNDERSCORE;
  1479. break;
  1480. case PT_CLIST:
  1481. cp = PRIV(ucd_caseless_sets) + code[3];
  1482. for (;;)
  1483. {
  1484. if (c < *cp) { OK = FALSE; break; }
  1485. if (c == *cp++) { OK = TRUE; break; }
  1486. }
  1487. break;
  1488. case PT_UCNC:
  1489. OK = c == CHAR_DOLLAR_SIGN || c == CHAR_COMMERCIAL_AT ||
  1490. c == CHAR_GRAVE_ACCENT || (c >= 0xa0 && c <= 0xd7ff) ||
  1491. c >= 0xe000;
  1492. break;
  1493. /* Should never occur, but keep compilers from grumbling. */
  1494. default:
  1495. OK = codevalue != OP_PROP;
  1496. break;
  1497. }
  1498. if (OK == (d == OP_PROP))
  1499. {
  1500. if (codevalue == OP_PROP_EXTRA + OP_TYPEPOSSTAR ||
  1501. codevalue == OP_PROP_EXTRA + OP_TYPEPOSQUERY)
  1502. {
  1503. active_count--; /* Remove non-match possibility */
  1504. next_active_state--;
  1505. }
  1506. ADD_NEW(state_offset + count, 0);
  1507. }
  1508. }
  1509. break;
  1510. /*-----------------------------------------------------------------*/
  1511. case OP_EXTUNI_EXTRA + OP_TYPEQUERY:
  1512. case OP_EXTUNI_EXTRA + OP_TYPEMINQUERY:
  1513. case OP_EXTUNI_EXTRA + OP_TYPEPOSQUERY:
  1514. count = 2;
  1515. goto QS2;
  1516. case OP_EXTUNI_EXTRA + OP_TYPESTAR:
  1517. case OP_EXTUNI_EXTRA + OP_TYPEMINSTAR:
  1518. case OP_EXTUNI_EXTRA + OP_TYPEPOSSTAR:
  1519. count = 0;
  1520. QS2:
  1521. ADD_ACTIVE(state_offset + 2, 0);
  1522. if (clen > 0)
  1523. {
  1524. int ncount = 0;
  1525. if (codevalue == OP_EXTUNI_EXTRA + OP_TYPEPOSSTAR ||
  1526. codevalue == OP_EXTUNI_EXTRA + OP_TYPEPOSQUERY)
  1527. {
  1528. active_count--; /* Remove non-match possibility */
  1529. next_active_state--;
  1530. }
  1531. (void)PRIV(extuni)(c, ptr + clen, mb->start_subject, end_subject, utf,
  1532. &ncount);
  1533. ADD_NEW_DATA(-(state_offset + count), 0, ncount);
  1534. }
  1535. break;
  1536. #endif
  1537. /*-----------------------------------------------------------------*/
  1538. case OP_ANYNL_EXTRA + OP_TYPEQUERY:
  1539. case OP_ANYNL_EXTRA + OP_TYPEMINQUERY:
  1540. case OP_ANYNL_EXTRA + OP_TYPEPOSQUERY:
  1541. count = 2;
  1542. goto QS3;
  1543. case OP_ANYNL_EXTRA + OP_TYPESTAR:
  1544. case OP_ANYNL_EXTRA + OP_TYPEMINSTAR:
  1545. case OP_ANYNL_EXTRA + OP_TYPEPOSSTAR:
  1546. count = 0;
  1547. QS3:
  1548. ADD_ACTIVE(state_offset + 2, 0);
  1549. if (clen > 0)
  1550. {
  1551. int ncount = 0;
  1552. switch (c)
  1553. {
  1554. case CHAR_VT:
  1555. case CHAR_FF:
  1556. case CHAR_NEL:
  1557. #ifndef EBCDIC
  1558. case 0x2028:
  1559. case 0x2029:
  1560. #endif /* Not EBCDIC */
  1561. if (mb->bsr_convention == PCRE2_BSR_ANYCRLF) break;
  1562. goto ANYNL02;
  1563. case CHAR_CR:
  1564. if (ptr + 1 < end_subject && UCHAR21TEST(ptr + 1) == CHAR_LF) ncount = 1;
  1565. /* Fall through */
  1566. ANYNL02:
  1567. case CHAR_LF:
  1568. if (codevalue == OP_ANYNL_EXTRA + OP_TYPEPOSSTAR ||
  1569. codevalue == OP_ANYNL_EXTRA + OP_TYPEPOSQUERY)
  1570. {
  1571. active_count--; /* Remove non-match possibility */
  1572. next_active_state--;
  1573. }
  1574. ADD_NEW_DATA(-(state_offset + (int)count), 0, ncount);
  1575. break;
  1576. default:
  1577. break;
  1578. }
  1579. }
  1580. break;
  1581. /*-----------------------------------------------------------------*/
  1582. case OP_VSPACE_EXTRA + OP_TYPEQUERY:
  1583. case OP_VSPACE_EXTRA + OP_TYPEMINQUERY:
  1584. case OP_VSPACE_EXTRA + OP_TYPEPOSQUERY:
  1585. count = 2;
  1586. goto QS4;
  1587. case OP_VSPACE_EXTRA + OP_TYPESTAR:
  1588. case OP_VSPACE_EXTRA + OP_TYPEMINSTAR:
  1589. case OP_VSPACE_EXTRA + OP_TYPEPOSSTAR:
  1590. count = 0;
  1591. QS4:
  1592. ADD_ACTIVE(state_offset + 2, 0);
  1593. if (clen > 0)
  1594. {
  1595. BOOL OK;
  1596. switch (c)
  1597. {
  1598. VSPACE_CASES:
  1599. OK = TRUE;
  1600. break;
  1601. default:
  1602. OK = FALSE;
  1603. break;
  1604. }
  1605. if (OK == (d == OP_VSPACE))
  1606. {
  1607. if (codevalue == OP_VSPACE_EXTRA + OP_TYPEPOSSTAR ||
  1608. codevalue == OP_VSPACE_EXTRA + OP_TYPEPOSQUERY)
  1609. {
  1610. active_count--; /* Remove non-match possibility */
  1611. next_active_state--;
  1612. }
  1613. ADD_NEW_DATA(-(state_offset + (int)count), 0, 0);
  1614. }
  1615. }
  1616. break;
  1617. /*-----------------------------------------------------------------*/
  1618. case OP_HSPACE_EXTRA + OP_TYPEQUERY:
  1619. case OP_HSPACE_EXTRA + OP_TYPEMINQUERY:
  1620. case OP_HSPACE_EXTRA + OP_TYPEPOSQUERY:
  1621. count = 2;
  1622. goto QS5;
  1623. case OP_HSPACE_EXTRA + OP_TYPESTAR:
  1624. case OP_HSPACE_EXTRA + OP_TYPEMINSTAR:
  1625. case OP_HSPACE_EXTRA + OP_TYPEPOSSTAR:
  1626. count = 0;
  1627. QS5:
  1628. ADD_ACTIVE(state_offset + 2, 0);
  1629. if (clen > 0)
  1630. {
  1631. BOOL OK;
  1632. switch (c)
  1633. {
  1634. HSPACE_CASES:
  1635. OK = TRUE;
  1636. break;
  1637. default:
  1638. OK = FALSE;
  1639. break;
  1640. }
  1641. if (OK == (d == OP_HSPACE))
  1642. {
  1643. if (codevalue == OP_HSPACE_EXTRA + OP_TYPEPOSSTAR ||
  1644. codevalue == OP_HSPACE_EXTRA + OP_TYPEPOSQUERY)
  1645. {
  1646. active_count--; /* Remove non-match possibility */
  1647. next_active_state--;
  1648. }
  1649. ADD_NEW_DATA(-(state_offset + (int)count), 0, 0);
  1650. }
  1651. }
  1652. break;
  1653. /*-----------------------------------------------------------------*/
  1654. #ifdef SUPPORT_UNICODE
  1655. case OP_PROP_EXTRA + OP_TYPEEXACT:
  1656. case OP_PROP_EXTRA + OP_TYPEUPTO:
  1657. case OP_PROP_EXTRA + OP_TYPEMINUPTO:
  1658. case OP_PROP_EXTRA + OP_TYPEPOSUPTO:
  1659. if (codevalue != OP_PROP_EXTRA + OP_TYPEEXACT)
  1660. { ADD_ACTIVE(state_offset + 1 + IMM2_SIZE + 3, 0); }
  1661. count = current_state->count; /* Number already matched */
  1662. if (clen > 0)
  1663. {
  1664. BOOL OK;
  1665. const uint32_t *cp;
  1666. const ucd_record * prop = GET_UCD(c);
  1667. switch(code[1 + IMM2_SIZE + 1])
  1668. {
  1669. case PT_ANY:
  1670. OK = TRUE;
  1671. break;
  1672. case PT_LAMP:
  1673. OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll ||
  1674. prop->chartype == ucp_Lt;
  1675. break;
  1676. case PT_GC:
  1677. OK = PRIV(ucp_gentype)[prop->chartype] == code[1 + IMM2_SIZE + 2];
  1678. break;
  1679. case PT_PC:
  1680. OK = prop->chartype == code[1 + IMM2_SIZE + 2];
  1681. break;
  1682. case PT_SC:
  1683. OK = prop->script == code[1 + IMM2_SIZE + 2];
  1684. break;
  1685. /* These are specials for combination cases. */
  1686. case PT_ALNUM:
  1687. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
  1688. PRIV(ucp_gentype)[prop->chartype] == ucp_N;
  1689. break;
  1690. /* Perl space used to exclude VT, but from Perl 5.18 it is included,
  1691. which means that Perl space and POSIX space are now identical. PCRE
  1692. was changed at release 8.34. */
  1693. case PT_SPACE: /* Perl space */
  1694. case PT_PXSPACE: /* POSIX space */
  1695. switch(c)
  1696. {
  1697. HSPACE_CASES:
  1698. VSPACE_CASES:
  1699. OK = TRUE;
  1700. break;
  1701. default:
  1702. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_Z;
  1703. break;
  1704. }
  1705. break;
  1706. case PT_WORD:
  1707. OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
  1708. PRIV(ucp_gentype)[prop->chartype] == ucp_N ||
  1709. c == CHAR_UNDERSCORE;
  1710. break;
  1711. case PT_CLIST:
  1712. cp = PRIV(ucd_caseless_sets) + code[1 + IMM2_SIZE + 2];
  1713. for (;;)
  1714. {
  1715. if (c < *cp) { OK = FALSE; break; }
  1716. if (c == *cp++) { OK = TRUE; break; }
  1717. }
  1718. break;
  1719. case PT_UCNC:
  1720. OK = c == CHAR_DOLLAR_SIGN || c == CHAR_COMMERCIAL_AT ||
  1721. c == CHAR_GRAVE_ACCENT || (c >= 0xa0 && c <= 0xd7ff) ||
  1722. c >= 0xe000;
  1723. break;
  1724. /* Should never occur, but keep compilers from grumbling. */
  1725. default:
  1726. OK = codevalue != OP_PROP;
  1727. break;
  1728. }
  1729. if (OK == (d == OP_PROP))
  1730. {
  1731. if (codevalue == OP_PROP_EXTRA + OP_TYPEPOSUPTO)
  1732. {
  1733. active_count--; /* Remove non-match possibility */
  1734. next_active_state--;
  1735. }
  1736. if (++count >= (int)GET2(code, 1))
  1737. { ADD_NEW(state_offset + 1 + IMM2_SIZE + 3, 0); }
  1738. else
  1739. { ADD_NEW(state_offset, count); }
  1740. }
  1741. }
  1742. break;
  1743. /*-----------------------------------------------------------------*/
  1744. case OP_EXTUNI_EXTRA + OP_TYPEEXACT:
  1745. case OP_EXTUNI_EXTRA + OP_TYPEUPTO:
  1746. case OP_EXTUNI_EXTRA + OP_TYPEMINUPTO:
  1747. case OP_EXTUNI_EXTRA + OP_TYPEPOSUPTO:
  1748. if (codevalue != OP_EXTUNI_EXTRA + OP_TYPEEXACT)
  1749. { ADD_ACTIVE(state_offset + 2 + IMM2_SIZE, 0); }
  1750. count = current_state->count; /* Number already matched */
  1751. if (clen > 0)
  1752. {
  1753. PCRE2_SPTR nptr;
  1754. int ncount = 0;
  1755. if (codevalue == OP_EXTUNI_EXTRA + OP_TYPEPOSUPTO)
  1756. {
  1757. active_count--; /* Remove non-match possibility */
  1758. next_active_state--;
  1759. }
  1760. nptr = PRIV(extuni)(c, ptr + clen, mb->start_subject, end_subject, utf,
  1761. &ncount);
  1762. if (nptr >= end_subject && (mb->moptions & PCRE2_PARTIAL_HARD) != 0)
  1763. reset_could_continue = TRUE;
  1764. if (++count >= (int)GET2(code, 1))
  1765. { ADD_NEW_DATA(-(state_offset + 2 + IMM2_SIZE), 0, ncount); }
  1766. else
  1767. { ADD_NEW_DATA(-state_offset, count, ncount); }
  1768. }
  1769. break;
  1770. #endif
  1771. /*-----------------------------------------------------------------*/
  1772. case OP_ANYNL_EXTRA + OP_TYPEEXACT:
  1773. case OP_ANYNL_EXTRA + OP_TYPEUPTO:
  1774. case OP_ANYNL_EXTRA + OP_TYPEMINUPTO:
  1775. case OP_ANYNL_EXTRA + OP_TYPEPOSUPTO:
  1776. if (codevalue != OP_ANYNL_EXTRA + OP_TYPEEXACT)
  1777. { ADD_ACTIVE(state_offset + 2 + IMM2_SIZE, 0); }
  1778. count = current_state->count; /* Number already matched */
  1779. if (clen > 0)
  1780. {
  1781. int ncount = 0;
  1782. switch (c)
  1783. {
  1784. case CHAR_VT:
  1785. case CHAR_FF:
  1786. case CHAR_NEL:
  1787. #ifndef EBCDIC
  1788. case 0x2028:
  1789. case 0x2029:
  1790. #endif /* Not EBCDIC */
  1791. if (mb->bsr_convention == PCRE2_BSR_ANYCRLF) break;
  1792. goto ANYNL03;
  1793. case CHAR_CR:
  1794. if (ptr + 1 < end_subject && UCHAR21TEST(ptr + 1) == CHAR_LF) ncount = 1;
  1795. /* Fall through */
  1796. ANYNL03:
  1797. case CHAR_LF:
  1798. if (codevalue == OP_ANYNL_EXTRA + OP_TYPEPOSUPTO)
  1799. {
  1800. active_count--; /* Remove non-match possibility */
  1801. next_active_state--;
  1802. }
  1803. if (++count >= (int)GET2(code, 1))
  1804. { ADD_NEW_DATA(-(state_offset + 2 + IMM2_SIZE), 0, ncount); }
  1805. else
  1806. { ADD_NEW_DATA(-state_offset, count, ncount); }
  1807. break;
  1808. default:
  1809. break;
  1810. }
  1811. }
  1812. break;
  1813. /*-----------------------------------------------------------------*/
  1814. case OP_VSPACE_EXTRA + OP_TYPEEXACT:
  1815. case OP_VSPACE_EXTRA + OP_TYPEUPTO:
  1816. case OP_VSPACE_EXTRA + OP_TYPEMINUPTO:
  1817. case OP_VSPACE_EXTRA + OP_TYPEPOSUPTO:
  1818. if (codevalue != OP_VSPACE_EXTRA + OP_TYPEEXACT)
  1819. { ADD_ACTIVE(state_offset + 2 + IMM2_SIZE, 0); }
  1820. count = current_state->count; /* Number already matched */
  1821. if (clen > 0)
  1822. {
  1823. BOOL OK;
  1824. switch (c)
  1825. {
  1826. VSPACE_CASES:
  1827. OK = TRUE;
  1828. break;
  1829. default:
  1830. OK = FALSE;
  1831. }
  1832. if (OK == (d == OP_VSPACE))
  1833. {
  1834. if (codevalue == OP_VSPACE_EXTRA + OP_TYPEPOSUPTO)
  1835. {
  1836. active_count--; /* Remove non-match possibility */
  1837. next_active_state--;
  1838. }
  1839. if (++count >= (int)GET2(code, 1))
  1840. { ADD_NEW_DATA(-(state_offset + 2 + IMM2_SIZE), 0, 0); }
  1841. else
  1842. { ADD_NEW_DATA(-state_offset, count, 0); }
  1843. }
  1844. }
  1845. break;
  1846. /*-----------------------------------------------------------------*/
  1847. case OP_HSPACE_EXTRA + OP_TYPEEXACT:
  1848. case OP_HSPACE_EXTRA + OP_TYPEUPTO:
  1849. case OP_HSPACE_EXTRA + OP_TYPEMINUPTO:
  1850. case OP_HSPACE_EXTRA + OP_TYPEPOSUPTO:
  1851. if (codevalue != OP_HSPACE_EXTRA + OP_TYPEEXACT)
  1852. { ADD_ACTIVE(state_offset + 2 + IMM2_SIZE, 0); }
  1853. count = current_state->count; /* Number already matched */
  1854. if (clen > 0)
  1855. {
  1856. BOOL OK;
  1857. switch (c)
  1858. {
  1859. HSPACE_CASES:
  1860. OK = TRUE;
  1861. break;
  1862. default:
  1863. OK = FALSE;
  1864. break;
  1865. }
  1866. if (OK == (d == OP_HSPACE))
  1867. {
  1868. if (codevalue == OP_HSPACE_EXTRA + OP_TYPEPOSUPTO)
  1869. {
  1870. active_count--; /* Remove non-match possibility */
  1871. next_active_state--;
  1872. }
  1873. if (++count >= (int)GET2(code, 1))
  1874. { ADD_NEW_DATA(-(state_offset + 2 + IMM2_SIZE), 0, 0); }
  1875. else
  1876. { ADD_NEW_DATA(-state_offset, count, 0); }
  1877. }
  1878. }
  1879. break;
  1880. /* ========================================================================== */
  1881. /* These opcodes are followed by a character that is usually compared
  1882. to the current subject character; it is loaded into d. We still get
  1883. here even if there is no subject character, because in some cases zero
  1884. repetitions are permitted. */
  1885. /*-----------------------------------------------------------------*/
  1886. case OP_CHAR:
  1887. if (clen > 0 && c == d) { ADD_NEW(state_offset + dlen + 1, 0); }
  1888. break;
  1889. /*-----------------------------------------------------------------*/
  1890. case OP_CHARI:
  1891. if (clen == 0) break;
  1892. #ifdef SUPPORT_UNICODE
  1893. if (utf)
  1894. {
  1895. if (c == d) { ADD_NEW(state_offset + dlen + 1, 0); } else
  1896. {
  1897. unsigned int othercase;
  1898. if (c < 128)
  1899. othercase = fcc[c];
  1900. else
  1901. othercase = UCD_OTHERCASE(c);
  1902. if (d == othercase) { ADD_NEW(state_offset + dlen + 1, 0); }
  1903. }
  1904. }
  1905. else
  1906. #endif /* SUPPORT_UNICODE */
  1907. /* Not UTF mode */
  1908. {
  1909. if (TABLE_GET(c, lcc, c) == TABLE_GET(d, lcc, d))
  1910. { ADD_NEW(state_offset + 2, 0); }
  1911. }
  1912. break;
  1913. #ifdef SUPPORT_UNICODE
  1914. /*-----------------------------------------------------------------*/
  1915. /* This is a tricky one because it can match more than one character.
  1916. Find out how many characters to skip, and then set up a negative state
  1917. to wait for them to pass before continuing. */
  1918. case OP_EXTUNI:
  1919. if (clen > 0)
  1920. {
  1921. int ncount = 0;
  1922. PCRE2_SPTR nptr = PRIV(extuni)(c, ptr + clen, mb->start_subject,
  1923. end_subject, utf, &ncount);
  1924. if (nptr >= end_subject && (mb->moptions & PCRE2_PARTIAL_HARD) != 0)
  1925. reset_could_continue = TRUE;
  1926. ADD_NEW_DATA(-(state_offset + 1), 0, ncount);
  1927. }
  1928. break;
  1929. #endif
  1930. /*-----------------------------------------------------------------*/
  1931. /* This is a tricky like EXTUNI because it too can match more than one
  1932. character (when CR is followed by LF). In this case, set up a negative
  1933. state to wait for one character to pass before continuing. */
  1934. case OP_ANYNL:
  1935. if (clen > 0) switch(c)
  1936. {
  1937. case CHAR_VT:
  1938. case CHAR_FF:
  1939. case CHAR_NEL:
  1940. #ifndef EBCDIC
  1941. case 0x2028:
  1942. case 0x2029:
  1943. #endif /* Not EBCDIC */
  1944. if (mb->bsr_convention == PCRE2_BSR_ANYCRLF) break;
  1945. /* Fall through */
  1946. case CHAR_LF:
  1947. ADD_NEW(state_offset + 1, 0);
  1948. break;
  1949. case CHAR_CR:
  1950. if (ptr + 1 >= end_subject)
  1951. {
  1952. ADD_NEW(state_offset + 1, 0);
  1953. if ((mb->moptions & PCRE2_PARTIAL_HARD) != 0)
  1954. reset_could_continue = TRUE;
  1955. }
  1956. else if (UCHAR21TEST(ptr + 1) == CHAR_LF)
  1957. {
  1958. ADD_NEW_DATA(-(state_offset + 1), 0, 1);
  1959. }
  1960. else
  1961. {
  1962. ADD_NEW(state_offset + 1, 0);
  1963. }
  1964. break;
  1965. }
  1966. break;
  1967. /*-----------------------------------------------------------------*/
  1968. case OP_NOT_VSPACE:
  1969. if (clen > 0) switch(c)
  1970. {
  1971. VSPACE_CASES:
  1972. break;
  1973. default:
  1974. ADD_NEW(state_offset + 1, 0);
  1975. break;
  1976. }
  1977. break;
  1978. /*-----------------------------------------------------------------*/
  1979. case OP_VSPACE:
  1980. if (clen > 0) switch(c)
  1981. {
  1982. VSPACE_CASES:
  1983. ADD_NEW(state_offset + 1, 0);
  1984. break;
  1985. default:
  1986. break;
  1987. }
  1988. break;
  1989. /*-----------------------------------------------------------------*/
  1990. case OP_NOT_HSPACE:
  1991. if (clen > 0) switch(c)
  1992. {
  1993. HSPACE_CASES:
  1994. break;
  1995. default:
  1996. ADD_NEW(state_offset + 1, 0);
  1997. break;
  1998. }
  1999. break;
  2000. /*-----------------------------------------------------------------*/
  2001. case OP_HSPACE:
  2002. if (clen > 0) switch(c)
  2003. {
  2004. HSPACE_CASES:
  2005. ADD_NEW(state_offset + 1, 0);
  2006. break;
  2007. default:
  2008. break;
  2009. }
  2010. break;
  2011. /*-----------------------------------------------------------------*/
  2012. /* Match a negated single character casefully. */
  2013. case OP_NOT:
  2014. if (clen > 0 && c != d) { ADD_NEW(state_offset + dlen + 1, 0); }
  2015. break;
  2016. /*-----------------------------------------------------------------*/
  2017. /* Match a negated single character caselessly. */
  2018. case OP_NOTI:
  2019. if (clen > 0)
  2020. {
  2021. uint32_t otherd;
  2022. #ifdef SUPPORT_UNICODE
  2023. if (utf && d >= 128)
  2024. otherd = UCD_OTHERCASE(d);
  2025. else
  2026. #endif /* SUPPORT_UNICODE */
  2027. otherd = TABLE_GET(d, fcc, d);
  2028. if (c != d && c != otherd)
  2029. { ADD_NEW(state_offset + dlen + 1, 0); }
  2030. }
  2031. break;
  2032. /*-----------------------------------------------------------------*/
  2033. case OP_PLUSI:
  2034. case OP_MINPLUSI:
  2035. case OP_POSPLUSI:
  2036. case OP_NOTPLUSI:
  2037. case OP_NOTMINPLUSI:
  2038. case OP_NOTPOSPLUSI:
  2039. caseless = TRUE;
  2040. codevalue -= OP_STARI - OP_STAR;
  2041. /* Fall through */
  2042. case OP_PLUS:
  2043. case OP_MINPLUS:
  2044. case OP_POSPLUS:
  2045. case OP_NOTPLUS:
  2046. case OP_NOTMINPLUS:
  2047. case OP_NOTPOSPLUS:
  2048. count = current_state->count; /* Already matched */
  2049. if (count > 0) { ADD_ACTIVE(state_offset + dlen + 1, 0); }
  2050. if (clen > 0)
  2051. {
  2052. uint32_t otherd = NOTACHAR;
  2053. if (caseless)
  2054. {
  2055. #ifdef SUPPORT_UNICODE
  2056. if (utf && d >= 128)
  2057. otherd = UCD_OTHERCASE(d);
  2058. else
  2059. #endif /* SUPPORT_UNICODE */
  2060. otherd = TABLE_GET(d, fcc, d);
  2061. }
  2062. if ((c == d || c == otherd) == (codevalue < OP_NOTSTAR))
  2063. {
  2064. if (count > 0 &&
  2065. (codevalue == OP_POSPLUS || codevalue == OP_NOTPOSPLUS))
  2066. {
  2067. active_count--; /* Remove non-match possibility */
  2068. next_active_state--;
  2069. }
  2070. count++;
  2071. ADD_NEW(state_offset, count);
  2072. }
  2073. }
  2074. break;
  2075. /*-----------------------------------------------------------------*/
  2076. case OP_QUERYI:
  2077. case OP_MINQUERYI:
  2078. case OP_POSQUERYI:
  2079. case OP_NOTQUERYI:
  2080. case OP_NOTMINQUERYI:
  2081. case OP_NOTPOSQUERYI:
  2082. caseless = TRUE;
  2083. codevalue -= OP_STARI - OP_STAR;
  2084. /* Fall through */
  2085. case OP_QUERY:
  2086. case OP_MINQUERY:
  2087. case OP_POSQUERY:
  2088. case OP_NOTQUERY:
  2089. case OP_NOTMINQUERY:
  2090. case OP_NOTPOSQUERY:
  2091. ADD_ACTIVE(state_offset + dlen + 1, 0);
  2092. if (clen > 0)
  2093. {
  2094. uint32_t otherd = NOTACHAR;
  2095. if (caseless)
  2096. {
  2097. #ifdef SUPPORT_UNICODE
  2098. if (utf && d >= 128)
  2099. otherd = UCD_OTHERCASE(d);
  2100. else
  2101. #endif /* SUPPORT_UNICODE */
  2102. otherd = TABLE_GET(d, fcc, d);
  2103. }
  2104. if ((c == d || c == otherd) == (codevalue < OP_NOTSTAR))
  2105. {
  2106. if (codevalue == OP_POSQUERY || codevalue == OP_NOTPOSQUERY)
  2107. {
  2108. active_count--; /* Remove non-match possibility */
  2109. next_active_state--;
  2110. }
  2111. ADD_NEW(state_offset + dlen + 1, 0);
  2112. }
  2113. }
  2114. break;
  2115. /*-----------------------------------------------------------------*/
  2116. case OP_STARI:
  2117. case OP_MINSTARI:
  2118. case OP_POSSTARI:
  2119. case OP_NOTSTARI:
  2120. case OP_NOTMINSTARI:
  2121. case OP_NOTPOSSTARI:
  2122. caseless = TRUE;
  2123. codevalue -= OP_STARI - OP_STAR;
  2124. /* Fall through */
  2125. case OP_STAR:
  2126. case OP_MINSTAR:
  2127. case OP_POSSTAR:
  2128. case OP_NOTSTAR:
  2129. case OP_NOTMINSTAR:
  2130. case OP_NOTPOSSTAR:
  2131. ADD_ACTIVE(state_offset + dlen + 1, 0);
  2132. if (clen > 0)
  2133. {
  2134. uint32_t otherd = NOTACHAR;
  2135. if (caseless)
  2136. {
  2137. #ifdef SUPPORT_UNICODE
  2138. if (utf && d >= 128)
  2139. otherd = UCD_OTHERCASE(d);
  2140. else
  2141. #endif /* SUPPORT_UNICODE */
  2142. otherd = TABLE_GET(d, fcc, d);
  2143. }
  2144. if ((c == d || c == otherd) == (codevalue < OP_NOTSTAR))
  2145. {
  2146. if (codevalue == OP_POSSTAR || codevalue == OP_NOTPOSSTAR)
  2147. {
  2148. active_count--; /* Remove non-match possibility */
  2149. next_active_state--;
  2150. }
  2151. ADD_NEW(state_offset, 0);
  2152. }
  2153. }
  2154. break;
  2155. /*-----------------------------------------------------------------*/
  2156. case OP_EXACTI:
  2157. case OP_NOTEXACTI:
  2158. caseless = TRUE;
  2159. codevalue -= OP_STARI - OP_STAR;
  2160. /* Fall through */
  2161. case OP_EXACT:
  2162. case OP_NOTEXACT:
  2163. count = current_state->count; /* Number already matched */
  2164. if (clen > 0)
  2165. {
  2166. uint32_t otherd = NOTACHAR;
  2167. if (caseless)
  2168. {
  2169. #ifdef SUPPORT_UNICODE
  2170. if (utf && d >= 128)
  2171. otherd = UCD_OTHERCASE(d);
  2172. else
  2173. #endif /* SUPPORT_UNICODE */
  2174. otherd = TABLE_GET(d, fcc, d);
  2175. }
  2176. if ((c == d || c == otherd) == (codevalue < OP_NOTSTAR))
  2177. {
  2178. if (++count >= (int)GET2(code, 1))
  2179. { ADD_NEW(state_offset + dlen + 1 + IMM2_SIZE, 0); }
  2180. else
  2181. { ADD_NEW(state_offset, count); }
  2182. }
  2183. }
  2184. break;
  2185. /*-----------------------------------------------------------------*/
  2186. case OP_UPTOI:
  2187. case OP_MINUPTOI:
  2188. case OP_POSUPTOI:
  2189. case OP_NOTUPTOI:
  2190. case OP_NOTMINUPTOI:
  2191. case OP_NOTPOSUPTOI:
  2192. caseless = TRUE;
  2193. codevalue -= OP_STARI - OP_STAR;
  2194. /* Fall through */
  2195. case OP_UPTO:
  2196. case OP_MINUPTO:
  2197. case OP_POSUPTO:
  2198. case OP_NOTUPTO:
  2199. case OP_NOTMINUPTO:
  2200. case OP_NOTPOSUPTO:
  2201. ADD_ACTIVE(state_offset + dlen + 1 + IMM2_SIZE, 0);
  2202. count = current_state->count; /* Number already matched */
  2203. if (clen > 0)
  2204. {
  2205. uint32_t otherd = NOTACHAR;
  2206. if (caseless)
  2207. {
  2208. #ifdef SUPPORT_UNICODE
  2209. if (utf && d >= 128)
  2210. otherd = UCD_OTHERCASE(d);
  2211. else
  2212. #endif /* SUPPORT_UNICODE */
  2213. otherd = TABLE_GET(d, fcc, d);
  2214. }
  2215. if ((c == d || c == otherd) == (codevalue < OP_NOTSTAR))
  2216. {
  2217. if (codevalue == OP_POSUPTO || codevalue == OP_NOTPOSUPTO)
  2218. {
  2219. active_count--; /* Remove non-match possibility */
  2220. next_active_state--;
  2221. }
  2222. if (++count >= (int)GET2(code, 1))
  2223. { ADD_NEW(state_offset + dlen + 1 + IMM2_SIZE, 0); }
  2224. else
  2225. { ADD_NEW(state_offset, count); }
  2226. }
  2227. }
  2228. break;
  2229. /* ========================================================================== */
  2230. /* These are the class-handling opcodes */
  2231. case OP_CLASS:
  2232. case OP_NCLASS:
  2233. case OP_XCLASS:
  2234. {
  2235. BOOL isinclass = FALSE;
  2236. int next_state_offset;
  2237. PCRE2_SPTR ecode;
  2238. /* For a simple class, there is always just a 32-byte table, and we
  2239. can set isinclass from it. */
  2240. if (codevalue != OP_XCLASS)
  2241. {
  2242. ecode = code + 1 + (32 / sizeof(PCRE2_UCHAR));
  2243. if (clen > 0)
  2244. {
  2245. isinclass = (c > 255)? (codevalue == OP_NCLASS) :
  2246. ((((uint8_t *)(code + 1))[c/8] & (1 << (c&7))) != 0);
  2247. }
  2248. }
  2249. /* An extended class may have a table or a list of single characters,
  2250. ranges, or both, and it may be positive or negative. There's a
  2251. function that sorts all this out. */
  2252. else
  2253. {
  2254. ecode = code + GET(code, 1);
  2255. if (clen > 0) isinclass = PRIV(xclass)(c, code + 1 + LINK_SIZE, utf);
  2256. }
  2257. /* At this point, isinclass is set for all kinds of class, and ecode
  2258. points to the byte after the end of the class. If there is a
  2259. quantifier, this is where it will be. */
  2260. next_state_offset = (int)(ecode - start_code);
  2261. switch (*ecode)
  2262. {
  2263. case OP_CRSTAR:
  2264. case OP_CRMINSTAR:
  2265. case OP_CRPOSSTAR:
  2266. ADD_ACTIVE(next_state_offset + 1, 0);
  2267. if (isinclass)
  2268. {
  2269. if (*ecode == OP_CRPOSSTAR)
  2270. {
  2271. active_count--; /* Remove non-match possibility */
  2272. next_active_state--;
  2273. }
  2274. ADD_NEW(state_offset, 0);
  2275. }
  2276. break;
  2277. case OP_CRPLUS:
  2278. case OP_CRMINPLUS:
  2279. case OP_CRPOSPLUS:
  2280. count = current_state->count; /* Already matched */
  2281. if (count > 0) { ADD_ACTIVE(next_state_offset + 1, 0); }
  2282. if (isinclass)
  2283. {
  2284. if (count > 0 && *ecode == OP_CRPOSPLUS)
  2285. {
  2286. active_count--; /* Remove non-match possibility */
  2287. next_active_state--;
  2288. }
  2289. count++;
  2290. ADD_NEW(state_offset, count);
  2291. }
  2292. break;
  2293. case OP_CRQUERY:
  2294. case OP_CRMINQUERY:
  2295. case OP_CRPOSQUERY:
  2296. ADD_ACTIVE(next_state_offset + 1, 0);
  2297. if (isinclass)
  2298. {
  2299. if (*ecode == OP_CRPOSQUERY)
  2300. {
  2301. active_count--; /* Remove non-match possibility */
  2302. next_active_state--;
  2303. }
  2304. ADD_NEW(next_state_offset + 1, 0);
  2305. }
  2306. break;
  2307. case OP_CRRANGE:
  2308. case OP_CRMINRANGE:
  2309. case OP_CRPOSRANGE:
  2310. count = current_state->count; /* Already matched */
  2311. if (count >= (int)GET2(ecode, 1))
  2312. { ADD_ACTIVE(next_state_offset + 1 + 2 * IMM2_SIZE, 0); }
  2313. if (isinclass)
  2314. {
  2315. int max = (int)GET2(ecode, 1 + IMM2_SIZE);
  2316. if (*ecode == OP_CRPOSRANGE && count >= (int)GET2(ecode, 1))
  2317. {
  2318. active_count--; /* Remove non-match possibility */
  2319. next_active_state--;
  2320. }
  2321. if (++count >= max && max != 0) /* Max 0 => no limit */
  2322. { ADD_NEW(next_state_offset + 1 + 2 * IMM2_SIZE, 0); }
  2323. else
  2324. { ADD_NEW(state_offset, count); }
  2325. }
  2326. break;
  2327. default:
  2328. if (isinclass) { ADD_NEW(next_state_offset, 0); }
  2329. break;
  2330. }
  2331. }
  2332. break;
  2333. /* ========================================================================== */
  2334. /* These are the opcodes for fancy brackets of various kinds. We have
  2335. to use recursion in order to handle them. The "always failing" assertion
  2336. (?!) is optimised to OP_FAIL when compiling, so we have to support that,
  2337. though the other "backtracking verbs" are not supported. */
  2338. case OP_FAIL:
  2339. forced_fail++; /* Count FAILs for multiple states */
  2340. break;
  2341. case OP_ASSERT:
  2342. case OP_ASSERT_NOT:
  2343. case OP_ASSERTBACK:
  2344. case OP_ASSERTBACK_NOT:
  2345. {
  2346. int rc;
  2347. int *local_workspace;
  2348. PCRE2_SIZE *local_offsets;
  2349. PCRE2_SPTR endasscode = code + GET(code, 1);
  2350. RWS_anchor *rws = (RWS_anchor *)RWS;
  2351. if (rws->free < RWS_RSIZE + RWS_OVEC_OSIZE)
  2352. {
  2353. rc = more_workspace(&rws, RWS_OVEC_OSIZE, mb);
  2354. if (rc != 0) return rc;
  2355. RWS = (int *)rws;
  2356. }
  2357. local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free);
  2358. local_workspace = ((int *)local_offsets) + RWS_OVEC_OSIZE;
  2359. rws->free -= RWS_RSIZE + RWS_OVEC_OSIZE;
  2360. while (*endasscode == OP_ALT) endasscode += GET(endasscode, 1);
  2361. rc = internal_dfa_match(
  2362. mb, /* static match data */
  2363. code, /* this subexpression's code */
  2364. ptr, /* where we currently are */
  2365. (PCRE2_SIZE)(ptr - start_subject), /* start offset */
  2366. local_offsets, /* offset vector */
  2367. RWS_OVEC_OSIZE/OVEC_UNIT, /* size of same */
  2368. local_workspace, /* workspace vector */
  2369. RWS_RSIZE, /* size of same */
  2370. rlevel, /* function recursion level */
  2371. RWS); /* recursion workspace */
  2372. rws->free += RWS_RSIZE + RWS_OVEC_OSIZE;
  2373. if (rc < 0 && rc != PCRE2_ERROR_NOMATCH) return rc;
  2374. if ((rc >= 0) == (codevalue == OP_ASSERT || codevalue == OP_ASSERTBACK))
  2375. { ADD_ACTIVE((int)(endasscode + LINK_SIZE + 1 - start_code), 0); }
  2376. }
  2377. break;
  2378. /*-----------------------------------------------------------------*/
  2379. case OP_COND:
  2380. case OP_SCOND:
  2381. {
  2382. int codelink = (int)GET(code, 1);
  2383. PCRE2_UCHAR condcode;
  2384. /* Because of the way auto-callout works during compile, a callout item
  2385. is inserted between OP_COND and an assertion condition. This does not
  2386. happen for the other conditions. */
  2387. if (code[LINK_SIZE + 1] == OP_CALLOUT
  2388. || code[LINK_SIZE + 1] == OP_CALLOUT_STR)
  2389. {
  2390. PCRE2_SIZE callout_length;
  2391. rrc = do_callout(code, offsets, current_subject, ptr, mb,
  2392. 1 + LINK_SIZE, &callout_length);
  2393. if (rrc < 0) return rrc; /* Abandon */
  2394. if (rrc > 0) break; /* Fail this thread */
  2395. code += callout_length; /* Skip callout data */
  2396. }
  2397. condcode = code[LINK_SIZE+1];
  2398. /* Back reference conditions and duplicate named recursion conditions
  2399. are not supported */
  2400. if (condcode == OP_CREF || condcode == OP_DNCREF ||
  2401. condcode == OP_DNRREF)
  2402. return PCRE2_ERROR_DFA_UCOND;
  2403. /* The DEFINE condition is always false, and the assertion (?!) is
  2404. converted to OP_FAIL. */
  2405. if (condcode == OP_FALSE || condcode == OP_FAIL)
  2406. { ADD_ACTIVE(state_offset + codelink + LINK_SIZE + 1, 0); }
  2407. /* There is also an always-true condition */
  2408. else if (condcode == OP_TRUE)
  2409. { ADD_ACTIVE(state_offset + LINK_SIZE + 2 + IMM2_SIZE, 0); }
  2410. /* The only supported version of OP_RREF is for the value RREF_ANY,
  2411. which means "test if in any recursion". We can't test for specifically
  2412. recursed groups. */
  2413. else if (condcode == OP_RREF)
  2414. {
  2415. unsigned int value = GET2(code, LINK_SIZE + 2);
  2416. if (value != RREF_ANY) return PCRE2_ERROR_DFA_UCOND;
  2417. if (mb->recursive != NULL)
  2418. { ADD_ACTIVE(state_offset + LINK_SIZE + 2 + IMM2_SIZE, 0); }
  2419. else { ADD_ACTIVE(state_offset + codelink + LINK_SIZE + 1, 0); }
  2420. }
  2421. /* Otherwise, the condition is an assertion */
  2422. else
  2423. {
  2424. int rc;
  2425. int *local_workspace;
  2426. PCRE2_SIZE *local_offsets;
  2427. PCRE2_SPTR asscode = code + LINK_SIZE + 1;
  2428. PCRE2_SPTR endasscode = asscode + GET(asscode, 1);
  2429. RWS_anchor *rws = (RWS_anchor *)RWS;
  2430. if (rws->free < RWS_RSIZE + RWS_OVEC_OSIZE)
  2431. {
  2432. rc = more_workspace(&rws, RWS_OVEC_OSIZE, mb);
  2433. if (rc != 0) return rc;
  2434. RWS = (int *)rws;
  2435. }
  2436. local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free);
  2437. local_workspace = ((int *)local_offsets) + RWS_OVEC_OSIZE;
  2438. rws->free -= RWS_RSIZE + RWS_OVEC_OSIZE;
  2439. while (*endasscode == OP_ALT) endasscode += GET(endasscode, 1);
  2440. rc = internal_dfa_match(
  2441. mb, /* fixed match data */
  2442. asscode, /* this subexpression's code */
  2443. ptr, /* where we currently are */
  2444. (PCRE2_SIZE)(ptr - start_subject), /* start offset */
  2445. local_offsets, /* offset vector */
  2446. RWS_OVEC_OSIZE/OVEC_UNIT, /* size of same */
  2447. local_workspace, /* workspace vector */
  2448. RWS_RSIZE, /* size of same */
  2449. rlevel, /* function recursion level */
  2450. RWS); /* recursion workspace */
  2451. rws->free += RWS_RSIZE + RWS_OVEC_OSIZE;
  2452. if (rc < 0 && rc != PCRE2_ERROR_NOMATCH) return rc;
  2453. if ((rc >= 0) ==
  2454. (condcode == OP_ASSERT || condcode == OP_ASSERTBACK))
  2455. { ADD_ACTIVE((int)(endasscode + LINK_SIZE + 1 - start_code), 0); }
  2456. else
  2457. { ADD_ACTIVE(state_offset + codelink + LINK_SIZE + 1, 0); }
  2458. }
  2459. }
  2460. break;
  2461. /*-----------------------------------------------------------------*/
  2462. case OP_RECURSE:
  2463. {
  2464. int rc;
  2465. int *local_workspace;
  2466. PCRE2_SIZE *local_offsets;
  2467. RWS_anchor *rws = (RWS_anchor *)RWS;
  2468. dfa_recursion_info *ri;
  2469. PCRE2_SPTR callpat = start_code + GET(code, 1);
  2470. uint32_t recno = (callpat == mb->start_code)? 0 :
  2471. GET2(callpat, 1 + LINK_SIZE);
  2472. if (rws->free < RWS_RSIZE + RWS_OVEC_RSIZE)
  2473. {
  2474. rc = more_workspace(&rws, RWS_OVEC_RSIZE, mb);
  2475. if (rc != 0) return rc;
  2476. RWS = (int *)rws;
  2477. }
  2478. local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free);
  2479. local_workspace = ((int *)local_offsets) + RWS_OVEC_RSIZE;
  2480. rws->free -= RWS_RSIZE + RWS_OVEC_RSIZE;
  2481. /* Check for repeating a recursion without advancing the subject
  2482. pointer. This should catch convoluted mutual recursions. (Some simple
  2483. cases are caught at compile time.) */
  2484. for (ri = mb->recursive; ri != NULL; ri = ri->prevrec)
  2485. if (recno == ri->group_num && ptr == ri->subject_position)
  2486. return PCRE2_ERROR_RECURSELOOP;
  2487. /* Remember this recursion and where we started it so as to
  2488. catch infinite loops. */
  2489. new_recursive.group_num = recno;
  2490. new_recursive.subject_position = ptr;
  2491. new_recursive.prevrec = mb->recursive;
  2492. mb->recursive = &new_recursive;
  2493. rc = internal_dfa_match(
  2494. mb, /* fixed match data */
  2495. callpat, /* this subexpression's code */
  2496. ptr, /* where we currently are */
  2497. (PCRE2_SIZE)(ptr - start_subject), /* start offset */
  2498. local_offsets, /* offset vector */
  2499. RWS_OVEC_RSIZE/OVEC_UNIT, /* size of same */
  2500. local_workspace, /* workspace vector */
  2501. RWS_RSIZE, /* size of same */
  2502. rlevel, /* function recursion level */
  2503. RWS); /* recursion workspace */
  2504. rws->free += RWS_RSIZE + RWS_OVEC_RSIZE;
  2505. mb->recursive = new_recursive.prevrec; /* Done this recursion */
  2506. /* Ran out of internal offsets */
  2507. if (rc == 0) return PCRE2_ERROR_DFA_RECURSE;
  2508. /* For each successful matched substring, set up the next state with a
  2509. count of characters to skip before trying it. Note that the count is in
  2510. characters, not bytes. */
  2511. if (rc > 0)
  2512. {
  2513. for (rc = rc*2 - 2; rc >= 0; rc -= 2)
  2514. {
  2515. PCRE2_SIZE charcount = local_offsets[rc+1] - local_offsets[rc];
  2516. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH != 32
  2517. if (utf)
  2518. {
  2519. PCRE2_SPTR p = start_subject + local_offsets[rc];
  2520. PCRE2_SPTR pp = start_subject + local_offsets[rc+1];
  2521. while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--;
  2522. }
  2523. #endif
  2524. if (charcount > 0)
  2525. {
  2526. ADD_NEW_DATA(-(state_offset + LINK_SIZE + 1), 0,
  2527. (int)(charcount - 1));
  2528. }
  2529. else
  2530. {
  2531. ADD_ACTIVE(state_offset + LINK_SIZE + 1, 0);
  2532. }
  2533. }
  2534. }
  2535. else if (rc != PCRE2_ERROR_NOMATCH) return rc;
  2536. }
  2537. break;
  2538. /*-----------------------------------------------------------------*/
  2539. case OP_BRAPOS:
  2540. case OP_SBRAPOS:
  2541. case OP_CBRAPOS:
  2542. case OP_SCBRAPOS:
  2543. case OP_BRAPOSZERO:
  2544. {
  2545. int rc;
  2546. int *local_workspace;
  2547. PCRE2_SIZE *local_offsets;
  2548. PCRE2_SIZE charcount, matched_count;
  2549. PCRE2_SPTR local_ptr = ptr;
  2550. RWS_anchor *rws = (RWS_anchor *)RWS;
  2551. BOOL allow_zero;
  2552. if (rws->free < RWS_RSIZE + RWS_OVEC_OSIZE)
  2553. {
  2554. rc = more_workspace(&rws, RWS_OVEC_OSIZE, mb);
  2555. if (rc != 0) return rc;
  2556. RWS = (int *)rws;
  2557. }
  2558. local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free);
  2559. local_workspace = ((int *)local_offsets) + RWS_OVEC_OSIZE;
  2560. rws->free -= RWS_RSIZE + RWS_OVEC_OSIZE;
  2561. if (codevalue == OP_BRAPOSZERO)
  2562. {
  2563. allow_zero = TRUE;
  2564. codevalue = *(++code); /* Codevalue will be one of above BRAs */
  2565. }
  2566. else allow_zero = FALSE;
  2567. /* Loop to match the subpattern as many times as possible as if it were
  2568. a complete pattern. */
  2569. for (matched_count = 0;; matched_count++)
  2570. {
  2571. rc = internal_dfa_match(
  2572. mb, /* fixed match data */
  2573. code, /* this subexpression's code */
  2574. local_ptr, /* where we currently are */
  2575. (PCRE2_SIZE)(ptr - start_subject), /* start offset */
  2576. local_offsets, /* offset vector */
  2577. RWS_OVEC_OSIZE/OVEC_UNIT, /* size of same */
  2578. local_workspace, /* workspace vector */
  2579. RWS_RSIZE, /* size of same */
  2580. rlevel, /* function recursion level */
  2581. RWS); /* recursion workspace */
  2582. /* Failed to match */
  2583. if (rc < 0)
  2584. {
  2585. if (rc != PCRE2_ERROR_NOMATCH) return rc;
  2586. break;
  2587. }
  2588. /* Matched: break the loop if zero characters matched. */
  2589. charcount = local_offsets[1] - local_offsets[0];
  2590. if (charcount == 0) break;
  2591. local_ptr += charcount; /* Advance temporary position ptr */
  2592. }
  2593. rws->free += RWS_RSIZE + RWS_OVEC_OSIZE;
  2594. /* At this point we have matched the subpattern matched_count
  2595. times, and local_ptr is pointing to the character after the end of the
  2596. last match. */
  2597. if (matched_count > 0 || allow_zero)
  2598. {
  2599. PCRE2_SPTR end_subpattern = code;
  2600. int next_state_offset;
  2601. do { end_subpattern += GET(end_subpattern, 1); }
  2602. while (*end_subpattern == OP_ALT);
  2603. next_state_offset =
  2604. (int)(end_subpattern - start_code + LINK_SIZE + 1);
  2605. /* Optimization: if there are no more active states, and there
  2606. are no new states yet set up, then skip over the subject string
  2607. right here, to save looping. Otherwise, set up the new state to swing
  2608. into action when the end of the matched substring is reached. */
  2609. if (i + 1 >= active_count && new_count == 0)
  2610. {
  2611. ptr = local_ptr;
  2612. clen = 0;
  2613. ADD_NEW(next_state_offset, 0);
  2614. }
  2615. else
  2616. {
  2617. PCRE2_SPTR p = ptr;
  2618. PCRE2_SPTR pp = local_ptr;
  2619. charcount = (PCRE2_SIZE)(pp - p);
  2620. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH != 32
  2621. if (utf) while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--;
  2622. #endif
  2623. ADD_NEW_DATA(-next_state_offset, 0, (int)(charcount - 1));
  2624. }
  2625. }
  2626. }
  2627. break;
  2628. /*-----------------------------------------------------------------*/
  2629. case OP_ONCE:
  2630. {
  2631. int rc;
  2632. int *local_workspace;
  2633. PCRE2_SIZE *local_offsets;
  2634. RWS_anchor *rws = (RWS_anchor *)RWS;
  2635. if (rws->free < RWS_RSIZE + RWS_OVEC_OSIZE)
  2636. {
  2637. rc = more_workspace(&rws, RWS_OVEC_OSIZE, mb);
  2638. if (rc != 0) return rc;
  2639. RWS = (int *)rws;
  2640. }
  2641. local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free);
  2642. local_workspace = ((int *)local_offsets) + RWS_OVEC_OSIZE;
  2643. rws->free -= RWS_RSIZE + RWS_OVEC_OSIZE;
  2644. rc = internal_dfa_match(
  2645. mb, /* fixed match data */
  2646. code, /* this subexpression's code */
  2647. ptr, /* where we currently are */
  2648. (PCRE2_SIZE)(ptr - start_subject), /* start offset */
  2649. local_offsets, /* offset vector */
  2650. RWS_OVEC_OSIZE/OVEC_UNIT, /* size of same */
  2651. local_workspace, /* workspace vector */
  2652. RWS_RSIZE, /* size of same */
  2653. rlevel, /* function recursion level */
  2654. RWS); /* recursion workspace */
  2655. rws->free += RWS_RSIZE + RWS_OVEC_OSIZE;
  2656. if (rc >= 0)
  2657. {
  2658. PCRE2_SPTR end_subpattern = code;
  2659. PCRE2_SIZE charcount = local_offsets[1] - local_offsets[0];
  2660. int next_state_offset, repeat_state_offset;
  2661. do { end_subpattern += GET(end_subpattern, 1); }
  2662. while (*end_subpattern == OP_ALT);
  2663. next_state_offset =
  2664. (int)(end_subpattern - start_code + LINK_SIZE + 1);
  2665. /* If the end of this subpattern is KETRMAX or KETRMIN, we must
  2666. arrange for the repeat state also to be added to the relevant list.
  2667. Calculate the offset, or set -1 for no repeat. */
  2668. repeat_state_offset = (*end_subpattern == OP_KETRMAX ||
  2669. *end_subpattern == OP_KETRMIN)?
  2670. (int)(end_subpattern - start_code - GET(end_subpattern, 1)) : -1;
  2671. /* If we have matched an empty string, add the next state at the
  2672. current character pointer. This is important so that the duplicate
  2673. checking kicks in, which is what breaks infinite loops that match an
  2674. empty string. */
  2675. if (charcount == 0)
  2676. {
  2677. ADD_ACTIVE(next_state_offset, 0);
  2678. }
  2679. /* Optimization: if there are no more active states, and there
  2680. are no new states yet set up, then skip over the subject string
  2681. right here, to save looping. Otherwise, set up the new state to swing
  2682. into action when the end of the matched substring is reached. */
  2683. else if (i + 1 >= active_count && new_count == 0)
  2684. {
  2685. ptr += charcount;
  2686. clen = 0;
  2687. ADD_NEW(next_state_offset, 0);
  2688. /* If we are adding a repeat state at the new character position,
  2689. we must fudge things so that it is the only current state.
  2690. Otherwise, it might be a duplicate of one we processed before, and
  2691. that would cause it to be skipped. */
  2692. if (repeat_state_offset >= 0)
  2693. {
  2694. next_active_state = active_states;
  2695. active_count = 0;
  2696. i = -1;
  2697. ADD_ACTIVE(repeat_state_offset, 0);
  2698. }
  2699. }
  2700. else
  2701. {
  2702. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH != 32
  2703. if (utf)
  2704. {
  2705. PCRE2_SPTR p = start_subject + local_offsets[0];
  2706. PCRE2_SPTR pp = start_subject + local_offsets[1];
  2707. while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--;
  2708. }
  2709. #endif
  2710. ADD_NEW_DATA(-next_state_offset, 0, (int)(charcount - 1));
  2711. if (repeat_state_offset >= 0)
  2712. { ADD_NEW_DATA(-repeat_state_offset, 0, (int)(charcount - 1)); }
  2713. }
  2714. }
  2715. else if (rc != PCRE2_ERROR_NOMATCH) return rc;
  2716. }
  2717. break;
  2718. /* ========================================================================== */
  2719. /* Handle callouts */
  2720. case OP_CALLOUT:
  2721. case OP_CALLOUT_STR:
  2722. {
  2723. PCRE2_SIZE callout_length;
  2724. rrc = do_callout(code, offsets, current_subject, ptr, mb, 0,
  2725. &callout_length);
  2726. if (rrc < 0) return rrc; /* Abandon */
  2727. if (rrc == 0)
  2728. { ADD_ACTIVE(state_offset + (int)callout_length, 0); }
  2729. }
  2730. break;
  2731. /* ========================================================================== */
  2732. default: /* Unsupported opcode */
  2733. return PCRE2_ERROR_DFA_UITEM;
  2734. }
  2735. NEXT_ACTIVE_STATE: continue;
  2736. } /* End of loop scanning active states */
  2737. /* We have finished the processing at the current subject character. If no
  2738. new states have been set for the next character, we have found all the
  2739. matches that we are going to find. If we are at the top level and partial
  2740. matching has been requested, check for appropriate conditions.
  2741. The "forced_ fail" variable counts the number of (*F) encountered for the
  2742. character. If it is equal to the original active_count (saved in
  2743. workspace[1]) it means that (*F) was found on every active state. In this
  2744. case we don't want to give a partial match.
  2745. The "could_continue" variable is true if a state could have continued but
  2746. for the fact that the end of the subject was reached. */
  2747. if (new_count <= 0)
  2748. {
  2749. if (rlevel == 1 && /* Top level, and */
  2750. could_continue && /* Some could go on, and */
  2751. forced_fail != workspace[1] && /* Not all forced fail & */
  2752. ( /* either... */
  2753. (mb->moptions & PCRE2_PARTIAL_HARD) != 0 /* Hard partial */
  2754. || /* or... */
  2755. ((mb->moptions & PCRE2_PARTIAL_SOFT) != 0 && /* Soft partial and */
  2756. match_count < 0) /* no matches */
  2757. ) && /* And... */
  2758. (
  2759. partial_newline || /* Either partial NL */
  2760. ( /* or ... */
  2761. ptr >= end_subject && /* End of subject and */
  2762. ptr > mb->start_used_ptr) /* Inspected non-empty string */
  2763. )
  2764. )
  2765. match_count = PCRE2_ERROR_PARTIAL;
  2766. break; /* Exit from loop along the subject string */
  2767. }
  2768. /* One or more states are active for the next character. */
  2769. ptr += clen; /* Advance to next subject character */
  2770. } /* Loop to move along the subject string */
  2771. /* Control gets here from "break" a few lines above. If we have a match and
  2772. PCRE2_ENDANCHORED is set, the match fails. */
  2773. if (match_count >= 0 &&
  2774. ((mb->moptions | mb->poptions) & PCRE2_ENDANCHORED) != 0 &&
  2775. ptr < end_subject)
  2776. match_count = PCRE2_ERROR_NOMATCH;
  2777. return match_count;
  2778. }
  2779. /*************************************************
  2780. * Match a pattern using the DFA algorithm *
  2781. *************************************************/
  2782. /* This function matches a compiled pattern to a subject string, using the
  2783. alternate matching algorithm that finds all matches at once.
  2784. Arguments:
  2785. code points to the compiled pattern
  2786. subject subject string
  2787. length length of subject string
  2788. startoffset where to start matching in the subject
  2789. options option bits
  2790. match_data points to a match data structure
  2791. gcontext points to a match context
  2792. workspace pointer to workspace
  2793. wscount size of workspace
  2794. Returns: > 0 => number of match offset pairs placed in offsets
  2795. = 0 => offsets overflowed; longest matches are present
  2796. -1 => failed to match
  2797. < -1 => some kind of unexpected problem
  2798. */
  2799. PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
  2800. pcre2_dfa_match(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length,
  2801. PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data,
  2802. pcre2_match_context *mcontext, int *workspace, PCRE2_SIZE wscount)
  2803. {
  2804. int rc;
  2805. const pcre2_real_code *re = (const pcre2_real_code *)code;
  2806. PCRE2_SPTR start_match;
  2807. PCRE2_SPTR end_subject;
  2808. PCRE2_SPTR bumpalong_limit;
  2809. PCRE2_SPTR req_cu_ptr;
  2810. BOOL utf, anchored, startline, firstline;
  2811. BOOL has_first_cu = FALSE;
  2812. BOOL has_req_cu = FALSE;
  2813. PCRE2_UCHAR first_cu = 0;
  2814. PCRE2_UCHAR first_cu2 = 0;
  2815. PCRE2_UCHAR req_cu = 0;
  2816. PCRE2_UCHAR req_cu2 = 0;
  2817. const uint8_t *start_bits = NULL;
  2818. /* We need to have mb pointing to a match block, because the IS_NEWLINE macro
  2819. is used below, and it expects NLBLOCK to be defined as a pointer. */
  2820. pcre2_callout_block cb;
  2821. dfa_match_block actual_match_block;
  2822. dfa_match_block *mb = &actual_match_block;
  2823. /* Set up a starting block of memory for use during recursive calls to
  2824. internal_dfa_match(). By putting this on the stack, it minimizes resource use
  2825. in the case when it is not needed. If this is too small, more memory is
  2826. obtained from the heap. At the start of each block is an anchor structure.*/
  2827. int base_recursion_workspace[RWS_BASE_SIZE];
  2828. RWS_anchor *rws = (RWS_anchor *)base_recursion_workspace;
  2829. rws->next = NULL;
  2830. rws->size = RWS_BASE_SIZE;
  2831. rws->free = RWS_BASE_SIZE - RWS_ANCHOR_SIZE;
  2832. /* A length equal to PCRE2_ZERO_TERMINATED implies a zero-terminated
  2833. subject string. */
  2834. if (length == PCRE2_ZERO_TERMINATED) length = PRIV(strlen)(subject);
  2835. /* Plausibility checks */
  2836. if ((options & ~PUBLIC_DFA_MATCH_OPTIONS) != 0) return PCRE2_ERROR_BADOPTION;
  2837. if (re == NULL || subject == NULL || workspace == NULL || match_data == NULL)
  2838. return PCRE2_ERROR_NULL;
  2839. if (wscount < 20) return PCRE2_ERROR_DFA_WSSIZE;
  2840. if (start_offset > length) return PCRE2_ERROR_BADOFFSET;
  2841. /* Partial matching and PCRE2_ENDANCHORED are currently not allowed at the same
  2842. time. */
  2843. if ((options & (PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT)) != 0 &&
  2844. ((re->overall_options | options) & PCRE2_ENDANCHORED) != 0)
  2845. return PCRE2_ERROR_BADOPTION;
  2846. /* Check that the first field in the block is the magic number. If it is not,
  2847. return with PCRE2_ERROR_BADMAGIC. */
  2848. if (re->magic_number != MAGIC_NUMBER) return PCRE2_ERROR_BADMAGIC;
  2849. /* Check the code unit width. */
  2850. if ((re->flags & PCRE2_MODE_MASK) != PCRE2_CODE_UNIT_WIDTH/8)
  2851. return PCRE2_ERROR_BADMODE;
  2852. /* PCRE2_NOTEMPTY and PCRE2_NOTEMPTY_ATSTART are match-time flags in the
  2853. options variable for this function. Users of PCRE2 who are not calling the
  2854. function directly would like to have a way of setting these flags, in the same
  2855. way that they can set pcre2_compile() flags like PCRE2_NO_AUTOPOSSESS with
  2856. constructions like (*NO_AUTOPOSSESS). To enable this, (*NOTEMPTY) and
  2857. (*NOTEMPTY_ATSTART) set bits in the pattern's "flag" function which can now be
  2858. transferred to the options for this function. The bits are guaranteed to be
  2859. adjacent, but do not have the same values. This bit of Boolean trickery assumes
  2860. that the match-time bits are not more significant than the flag bits. If by
  2861. accident this is not the case, a compile-time division by zero error will
  2862. occur. */
  2863. #define FF (PCRE2_NOTEMPTY_SET|PCRE2_NE_ATST_SET)
  2864. #define OO (PCRE2_NOTEMPTY|PCRE2_NOTEMPTY_ATSTART)
  2865. options |= (re->flags & FF) / ((FF & (~FF+1)) / (OO & (~OO+1)));
  2866. #undef FF
  2867. #undef OO
  2868. /* If restarting after a partial match, do some sanity checks on the contents
  2869. of the workspace. */
  2870. if ((options & PCRE2_DFA_RESTART) != 0)
  2871. {
  2872. if ((workspace[0] & (-2)) != 0 || workspace[1] < 1 ||
  2873. workspace[1] > (int)((wscount - 2)/INTS_PER_STATEBLOCK))
  2874. return PCRE2_ERROR_DFA_BADRESTART;
  2875. }
  2876. /* Set some local values */
  2877. utf = (re->overall_options & PCRE2_UTF) != 0;
  2878. start_match = subject + start_offset;
  2879. end_subject = subject + length;
  2880. req_cu_ptr = start_match - 1;
  2881. anchored = (options & (PCRE2_ANCHORED|PCRE2_DFA_RESTART)) != 0 ||
  2882. (re->overall_options & PCRE2_ANCHORED) != 0;
  2883. /* The "must be at the start of a line" flags are used in a loop when finding
  2884. where to start. */
  2885. startline = (re->flags & PCRE2_STARTLINE) != 0;
  2886. firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0;
  2887. bumpalong_limit = end_subject;
  2888. /* Initialize and set up the fixed fields in the callout block, with a pointer
  2889. in the match block. */
  2890. mb->cb = &cb;
  2891. cb.version = 2;
  2892. cb.subject = subject;
  2893. cb.subject_length = (PCRE2_SIZE)(end_subject - subject);
  2894. cb.callout_flags = 0;
  2895. cb.capture_top = 1; /* No capture support */
  2896. cb.capture_last = 0;
  2897. cb.mark = NULL; /* No (*MARK) support */
  2898. /* Get data from the match context, if present, and fill in the remaining
  2899. fields in the match block. It is an error to set an offset limit without
  2900. setting the flag at compile time. */
  2901. if (mcontext == NULL)
  2902. {
  2903. mb->callout = NULL;
  2904. mb->memctl = re->memctl;
  2905. mb->match_limit = PRIV(default_match_context).match_limit;
  2906. mb->match_limit_depth = PRIV(default_match_context).depth_limit;
  2907. mb->heap_limit = PRIV(default_match_context).heap_limit;
  2908. }
  2909. else
  2910. {
  2911. if (mcontext->offset_limit != PCRE2_UNSET)
  2912. {
  2913. if ((re->overall_options & PCRE2_USE_OFFSET_LIMIT) == 0)
  2914. return PCRE2_ERROR_BADOFFSETLIMIT;
  2915. bumpalong_limit = subject + mcontext->offset_limit;
  2916. }
  2917. mb->callout = mcontext->callout;
  2918. mb->callout_data = mcontext->callout_data;
  2919. mb->memctl = mcontext->memctl;
  2920. mb->match_limit = mcontext->match_limit;
  2921. mb->match_limit_depth = mcontext->depth_limit;
  2922. mb->heap_limit = mcontext->heap_limit;
  2923. }
  2924. if (mb->match_limit > re->limit_match)
  2925. mb->match_limit = re->limit_match;
  2926. if (mb->match_limit_depth > re->limit_depth)
  2927. mb->match_limit_depth = re->limit_depth;
  2928. if (mb->heap_limit > re->limit_heap)
  2929. mb->heap_limit = re->limit_heap;
  2930. mb->start_code = (PCRE2_UCHAR *)((uint8_t *)re + sizeof(pcre2_real_code)) +
  2931. re->name_count * re->name_entry_size;
  2932. mb->tables = re->tables;
  2933. mb->start_subject = subject;
  2934. mb->end_subject = end_subject;
  2935. mb->start_offset = start_offset;
  2936. mb->moptions = options;
  2937. mb->poptions = re->overall_options;
  2938. mb->match_call_count = 0;
  2939. mb->heap_used = 0;
  2940. /* Process the \R and newline settings. */
  2941. mb->bsr_convention = re->bsr_convention;
  2942. mb->nltype = NLTYPE_FIXED;
  2943. switch(re->newline_convention)
  2944. {
  2945. case PCRE2_NEWLINE_CR:
  2946. mb->nllen = 1;
  2947. mb->nl[0] = CHAR_CR;
  2948. break;
  2949. case PCRE2_NEWLINE_LF:
  2950. mb->nllen = 1;
  2951. mb->nl[0] = CHAR_NL;
  2952. break;
  2953. case PCRE2_NEWLINE_NUL:
  2954. mb->nllen = 1;
  2955. mb->nl[0] = CHAR_NUL;
  2956. break;
  2957. case PCRE2_NEWLINE_CRLF:
  2958. mb->nllen = 2;
  2959. mb->nl[0] = CHAR_CR;
  2960. mb->nl[1] = CHAR_NL;
  2961. break;
  2962. case PCRE2_NEWLINE_ANY:
  2963. mb->nltype = NLTYPE_ANY;
  2964. break;
  2965. case PCRE2_NEWLINE_ANYCRLF:
  2966. mb->nltype = NLTYPE_ANYCRLF;
  2967. break;
  2968. default: return PCRE2_ERROR_INTERNAL;
  2969. }
  2970. /* Check a UTF string for validity if required. For 8-bit and 16-bit strings,
  2971. we must also check that a starting offset does not point into the middle of a
  2972. multiunit character. We check only the portion of the subject that is going to
  2973. be inspected during matching - from the offset minus the maximum back reference
  2974. to the given length. This saves time when a small part of a large subject is
  2975. being matched by the use of a starting offset. Note that the maximum lookbehind
  2976. is a number of characters, not code units. */
  2977. #ifdef SUPPORT_UNICODE
  2978. if (utf && (options & PCRE2_NO_UTF_CHECK) == 0)
  2979. {
  2980. PCRE2_SPTR check_subject = start_match; /* start_match includes offset */
  2981. if (start_offset > 0)
  2982. {
  2983. #if PCRE2_CODE_UNIT_WIDTH != 32
  2984. unsigned int i;
  2985. if (start_match < end_subject && NOT_FIRSTCU(*start_match))
  2986. return PCRE2_ERROR_BADUTFOFFSET;
  2987. for (i = re->max_lookbehind; i > 0 && check_subject > subject; i--)
  2988. {
  2989. check_subject--;
  2990. while (check_subject > subject &&
  2991. #if PCRE2_CODE_UNIT_WIDTH == 8
  2992. (*check_subject & 0xc0) == 0x80)
  2993. #else /* 16-bit */
  2994. (*check_subject & 0xfc00) == 0xdc00)
  2995. #endif /* PCRE2_CODE_UNIT_WIDTH == 8 */
  2996. check_subject--;
  2997. }
  2998. #else /* In the 32-bit library, one code unit equals one character. */
  2999. check_subject -= re->max_lookbehind;
  3000. if (check_subject < subject) check_subject = subject;
  3001. #endif /* PCRE2_CODE_UNIT_WIDTH != 32 */
  3002. }
  3003. /* Validate the relevant portion of the subject. After an error, adjust the
  3004. offset to be an absolute offset in the whole string. */
  3005. match_data->rc = PRIV(valid_utf)(check_subject,
  3006. length - (PCRE2_SIZE)(check_subject - subject), &(match_data->startchar));
  3007. if (match_data->rc != 0)
  3008. {
  3009. match_data->startchar += (PCRE2_SIZE)(check_subject - subject);
  3010. return match_data->rc;
  3011. }
  3012. }
  3013. #endif /* SUPPORT_UNICODE */
  3014. /* Set up the first code unit to match, if available. If there's no first code
  3015. unit there may be a bitmap of possible first characters. */
  3016. if ((re->flags & PCRE2_FIRSTSET) != 0)
  3017. {
  3018. has_first_cu = TRUE;
  3019. first_cu = first_cu2 = (PCRE2_UCHAR)(re->first_codeunit);
  3020. if ((re->flags & PCRE2_FIRSTCASELESS) != 0)
  3021. {
  3022. first_cu2 = TABLE_GET(first_cu, mb->tables + fcc_offset, first_cu);
  3023. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH != 8
  3024. if (utf && first_cu > 127)
  3025. first_cu2 = (PCRE2_UCHAR)UCD_OTHERCASE(first_cu);
  3026. #endif
  3027. }
  3028. }
  3029. else
  3030. if (!startline && (re->flags & PCRE2_FIRSTMAPSET) != 0)
  3031. start_bits = re->start_bitmap;
  3032. /* There may be a "last known required code unit" set. */
  3033. if ((re->flags & PCRE2_LASTSET) != 0)
  3034. {
  3035. has_req_cu = TRUE;
  3036. req_cu = req_cu2 = (PCRE2_UCHAR)(re->last_codeunit);
  3037. if ((re->flags & PCRE2_LASTCASELESS) != 0)
  3038. {
  3039. req_cu2 = TABLE_GET(req_cu, mb->tables + fcc_offset, req_cu);
  3040. #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH != 8
  3041. if (utf && req_cu > 127) req_cu2 = (PCRE2_UCHAR)UCD_OTHERCASE(req_cu);
  3042. #endif
  3043. }
  3044. }
  3045. /* Fill in fields that are always returned in the match data. */
  3046. match_data->code = re;
  3047. match_data->subject = subject;
  3048. match_data->mark = NULL;
  3049. match_data->matchedby = PCRE2_MATCHEDBY_DFA_INTERPRETER;
  3050. /* Call the main matching function, looping for a non-anchored regex after a
  3051. failed match. If not restarting, perform certain optimizations at the start of
  3052. a match. */
  3053. for (;;)
  3054. {
  3055. /* ----------------- Start of match optimizations ---------------- */
  3056. /* There are some optimizations that avoid running the match if a known
  3057. starting point is not found, or if a known later code unit is not present.
  3058. However, there is an option (settable at compile time) that disables
  3059. these, for testing and for ensuring that all callouts do actually occur.
  3060. The optimizations must also be avoided when restarting a DFA match. */
  3061. if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0 &&
  3062. (options & PCRE2_DFA_RESTART) == 0)
  3063. {
  3064. /* If firstline is TRUE, the start of the match is constrained to the first
  3065. line of a multiline string. That is, the match must be before or at the
  3066. first newline following the start of matching. Temporarily adjust
  3067. end_subject so that we stop the optimization scans for a first code unit
  3068. immediately after the first character of a newline (the first code unit can
  3069. legitimately be a newline). If the match fails at the newline, later code
  3070. breaks this loop. */
  3071. if (firstline)
  3072. {
  3073. PCRE2_SPTR t = start_match;
  3074. #ifdef SUPPORT_UNICODE
  3075. if (utf)
  3076. {
  3077. while (t < end_subject && !IS_NEWLINE(t))
  3078. {
  3079. t++;
  3080. ACROSSCHAR(t < end_subject, t, t++);
  3081. }
  3082. }
  3083. else
  3084. #endif
  3085. while (t < end_subject && !IS_NEWLINE(t)) t++;
  3086. end_subject = t;
  3087. }
  3088. /* Anchored: check the first code unit if one is recorded. This may seem
  3089. pointless but it can help in detecting a no match case without scanning for
  3090. the required code unit. */
  3091. if (anchored)
  3092. {
  3093. if (has_first_cu || start_bits != NULL)
  3094. {
  3095. BOOL ok = start_match < end_subject;
  3096. if (ok)
  3097. {
  3098. PCRE2_UCHAR c = UCHAR21TEST(start_match);
  3099. ok = has_first_cu && (c == first_cu || c == first_cu2);
  3100. if (!ok && start_bits != NULL)
  3101. {
  3102. #if PCRE2_CODE_UNIT_WIDTH != 8
  3103. if (c > 255) c = 255;
  3104. #endif
  3105. ok = (start_bits[c/8] & (1 << (c&7))) != 0;
  3106. }
  3107. }
  3108. if (!ok) break;
  3109. }
  3110. }
  3111. /* Not anchored. Advance to a unique first code unit if there is one. In
  3112. 8-bit mode, the use of memchr() gives a big speed up, even though we have
  3113. to call it twice in caseless mode, in order to find the earliest occurrence
  3114. of the character in either of its cases. */
  3115. else
  3116. {
  3117. if (has_first_cu)
  3118. {
  3119. if (first_cu != first_cu2) /* Caseless */
  3120. {
  3121. #if PCRE2_CODE_UNIT_WIDTH != 8
  3122. PCRE2_UCHAR smc;
  3123. while (start_match < end_subject &&
  3124. (smc = UCHAR21TEST(start_match)) != first_cu &&
  3125. smc != first_cu2)
  3126. start_match++;
  3127. #else /* 8-bit code units */
  3128. PCRE2_SPTR pp1 =
  3129. memchr(start_match, first_cu, end_subject-start_match);
  3130. PCRE2_SPTR pp2 =
  3131. memchr(start_match, first_cu2, end_subject-start_match);
  3132. if (pp1 == NULL)
  3133. start_match = (pp2 == NULL)? end_subject : pp2;
  3134. else
  3135. start_match = (pp2 == NULL || pp1 < pp2)? pp1 : pp2;
  3136. #endif
  3137. }
  3138. /* The caseful case */
  3139. else
  3140. {
  3141. #if PCRE2_CODE_UNIT_WIDTH != 8
  3142. while (start_match < end_subject && UCHAR21TEST(start_match) !=
  3143. first_cu)
  3144. start_match++;
  3145. #else
  3146. start_match = memchr(start_match, first_cu, end_subject - start_match);
  3147. if (start_match == NULL) start_match = end_subject;
  3148. #endif
  3149. }
  3150. /* If we can't find the required code unit, having reached the true end
  3151. of the subject, break the bumpalong loop, to force a match failure,
  3152. except when doing partial matching, when we let the next cycle run at
  3153. the end of the subject. To see why, consider the pattern /(?<=abc)def/,
  3154. which partially matches "abc", even though the string does not contain
  3155. the starting character "d". If we have not reached the true end of the
  3156. subject (PCRE2_FIRSTLINE caused end_subject to be temporarily modified)
  3157. we also let the cycle run, because the matching string is legitimately
  3158. allowed to start with the first code unit of a newline. */
  3159. if ((mb->moptions & (PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT)) == 0 &&
  3160. start_match >= mb->end_subject)
  3161. break;
  3162. }
  3163. /* If there's no first code unit, advance to just after a linebreak for a
  3164. multiline match if required. */
  3165. else if (startline)
  3166. {
  3167. if (start_match > mb->start_subject + start_offset)
  3168. {
  3169. #ifdef SUPPORT_UNICODE
  3170. if (utf)
  3171. {
  3172. while (start_match < end_subject && !WAS_NEWLINE(start_match))
  3173. {
  3174. start_match++;
  3175. ACROSSCHAR(start_match < end_subject, start_match, start_match++);
  3176. }
  3177. }
  3178. else
  3179. #endif
  3180. while (start_match < end_subject && !WAS_NEWLINE(start_match))
  3181. start_match++;
  3182. /* If we have just passed a CR and the newline option is ANY or
  3183. ANYCRLF, and we are now at a LF, advance the match position by one
  3184. more code unit. */
  3185. if (start_match[-1] == CHAR_CR &&
  3186. (mb->nltype == NLTYPE_ANY || mb->nltype == NLTYPE_ANYCRLF) &&
  3187. start_match < end_subject &&
  3188. UCHAR21TEST(start_match) == CHAR_NL)
  3189. start_match++;
  3190. }
  3191. }
  3192. /* If there's no first code unit or a requirement for a multiline line
  3193. start, advance to a non-unique first code unit if any have been
  3194. identified. The bitmap contains only 256 bits. When code units are 16 or
  3195. 32 bits wide, all code units greater than 254 set the 255 bit. */
  3196. else if (start_bits != NULL)
  3197. {
  3198. while (start_match < end_subject)
  3199. {
  3200. uint32_t c = UCHAR21TEST(start_match);
  3201. #if PCRE2_CODE_UNIT_WIDTH != 8
  3202. if (c > 255) c = 255;
  3203. #endif
  3204. if ((start_bits[c/8] & (1 << (c&7))) != 0) break;
  3205. start_match++;
  3206. }
  3207. /* See comment above in first_cu checking about the next line. */
  3208. if ((mb->moptions & (PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT)) == 0 &&
  3209. start_match >= mb->end_subject)
  3210. break;
  3211. }
  3212. } /* End of first code unit handling */
  3213. /* Restore fudged end_subject */
  3214. end_subject = mb->end_subject;
  3215. /* The following two optimizations are disabled for partial matching. */
  3216. if ((mb->moptions & (PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT)) == 0)
  3217. {
  3218. /* The minimum matching length is a lower bound; no actual string of that
  3219. length may actually match the pattern. Although the value is, strictly,
  3220. in characters, we treat it as code units to avoid spending too much time
  3221. in this optimization. */
  3222. if (end_subject - start_match < re->minlength) goto NOMATCH_EXIT;
  3223. /* If req_cu is set, we know that that code unit must appear in the
  3224. subject for the match to succeed. If the first code unit is set, req_cu
  3225. must be later in the subject; otherwise the test starts at the match
  3226. point. This optimization can save a huge amount of backtracking in
  3227. patterns with nested unlimited repeats that aren't going to match.
  3228. Writing separate code for cased/caseless versions makes it go faster, as
  3229. does using an autoincrement and backing off on a match.
  3230. HOWEVER: when the subject string is very, very long, searching to its end
  3231. can take a long time, and give bad performance on quite ordinary
  3232. patterns. This showed up when somebody was matching something like
  3233. /^\d+C/ on a 32-megabyte string... so we don't do this when the string is
  3234. sufficiently long. */
  3235. if (has_req_cu && end_subject - start_match < REQ_CU_MAX)
  3236. {
  3237. PCRE2_SPTR p = start_match + (has_first_cu? 1:0);
  3238. /* We don't need to repeat the search if we haven't yet reached the
  3239. place we found it at last time. */
  3240. if (p > req_cu_ptr)
  3241. {
  3242. if (req_cu != req_cu2)
  3243. {
  3244. while (p < end_subject)
  3245. {
  3246. uint32_t pp = UCHAR21INCTEST(p);
  3247. if (pp == req_cu || pp == req_cu2) { p--; break; }
  3248. }
  3249. }
  3250. else
  3251. {
  3252. while (p < end_subject)
  3253. {
  3254. if (UCHAR21INCTEST(p) == req_cu) { p--; break; }
  3255. }
  3256. }
  3257. /* If we can't find the required code unit, break the matching loop,
  3258. forcing a match failure. */
  3259. if (p >= end_subject) break;
  3260. /* If we have found the required code unit, save the point where we
  3261. found it, so that we don't search again next time round the loop if
  3262. the start hasn't passed this code unit yet. */
  3263. req_cu_ptr = p;
  3264. }
  3265. }
  3266. }
  3267. }
  3268. /* ------------ End of start of match optimizations ------------ */
  3269. /* Give no match if we have passed the bumpalong limit. */
  3270. if (start_match > bumpalong_limit) break;
  3271. /* OK, now we can do the business */
  3272. mb->start_used_ptr = start_match;
  3273. mb->last_used_ptr = start_match;
  3274. mb->recursive = NULL;
  3275. rc = internal_dfa_match(
  3276. mb, /* fixed match data */
  3277. mb->start_code, /* this subexpression's code */
  3278. start_match, /* where we currently are */
  3279. start_offset, /* start offset in subject */
  3280. match_data->ovector, /* offset vector */
  3281. (uint32_t)match_data->oveccount * 2, /* actual size of same */
  3282. workspace, /* workspace vector */
  3283. (int)wscount, /* size of same */
  3284. 0, /* function recurse level */
  3285. base_recursion_workspace); /* initial workspace for recursion */
  3286. /* Anything other than "no match" means we are done, always; otherwise, carry
  3287. on only if not anchored. */
  3288. if (rc != PCRE2_ERROR_NOMATCH || anchored)
  3289. {
  3290. if (rc == PCRE2_ERROR_PARTIAL && match_data->oveccount > 0)
  3291. {
  3292. match_data->ovector[0] = (PCRE2_SIZE)(start_match - subject);
  3293. match_data->ovector[1] = (PCRE2_SIZE)(end_subject - subject);
  3294. }
  3295. match_data->leftchar = (PCRE2_SIZE)(mb->start_used_ptr - subject);
  3296. match_data->rightchar = (PCRE2_SIZE)( mb->last_used_ptr - subject);
  3297. match_data->startchar = (PCRE2_SIZE)(start_match - subject);
  3298. match_data->rc = rc;
  3299. goto EXIT;
  3300. }
  3301. /* Advance to the next subject character unless we are at the end of a line
  3302. and firstline is set. */
  3303. if (firstline && IS_NEWLINE(start_match)) break;
  3304. start_match++;
  3305. #ifdef SUPPORT_UNICODE
  3306. if (utf)
  3307. {
  3308. ACROSSCHAR(start_match < end_subject, start_match, start_match++);
  3309. }
  3310. #endif
  3311. if (start_match > end_subject) break;
  3312. /* If we have just passed a CR and we are now at a LF, and the pattern does
  3313. not contain any explicit matches for \r or \n, and the newline option is CRLF
  3314. or ANY or ANYCRLF, advance the match position by one more character. */
  3315. if (UCHAR21TEST(start_match - 1) == CHAR_CR &&
  3316. start_match < end_subject &&
  3317. UCHAR21TEST(start_match) == CHAR_NL &&
  3318. (re->flags & PCRE2_HASCRORLF) == 0 &&
  3319. (mb->nltype == NLTYPE_ANY ||
  3320. mb->nltype == NLTYPE_ANYCRLF ||
  3321. mb->nllen == 2))
  3322. start_match++;
  3323. } /* "Bumpalong" loop */
  3324. NOMATCH_EXIT:
  3325. rc = PCRE2_ERROR_NOMATCH;
  3326. EXIT:
  3327. while (rws->next != NULL)
  3328. {
  3329. RWS_anchor *next = rws->next;
  3330. rws->next = next->next;
  3331. mb->memctl.free(next, mb->memctl.memory_data);
  3332. }
  3333. return rc;
  3334. }
  3335. /* End of pcre2_dfa_match.c */