pcre2_substitute.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  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. #ifdef HAVE_CONFIG_H
  34. #include "config.h"
  35. #endif
  36. #include "pcre2_internal.h"
  37. #define PTR_STACK_SIZE 20
  38. #define SUBSTITUTE_OPTIONS \
  39. (PCRE2_SUBSTITUTE_EXTENDED|PCRE2_SUBSTITUTE_GLOBAL| \
  40. PCRE2_SUBSTITUTE_OVERFLOW_LENGTH|PCRE2_SUBSTITUTE_UNKNOWN_UNSET| \
  41. PCRE2_SUBSTITUTE_UNSET_EMPTY)
  42. /*************************************************
  43. * Find end of substitute text *
  44. *************************************************/
  45. /* In extended mode, we recognize ${name:+set text:unset text} and similar
  46. constructions. This requires the identification of unescaped : and }
  47. characters. This function scans for such. It must deal with nested ${
  48. constructions. The pointer to the text is updated, either to the required end
  49. character, or to where an error was detected.
  50. Arguments:
  51. code points to the compiled expression (for options)
  52. ptrptr points to the pointer to the start of the text (updated)
  53. ptrend end of the whole string
  54. last TRUE if the last expected string (only } recognized)
  55. Returns: 0 on success
  56. negative error code on failure
  57. */
  58. static int
  59. find_text_end(const pcre2_code *code, PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend,
  60. BOOL last)
  61. {
  62. int rc = 0;
  63. uint32_t nestlevel = 0;
  64. BOOL literal = FALSE;
  65. PCRE2_SPTR ptr = *ptrptr;
  66. for (; ptr < ptrend; ptr++)
  67. {
  68. if (literal)
  69. {
  70. if (ptr[0] == CHAR_BACKSLASH && ptr < ptrend - 1 && ptr[1] == CHAR_E)
  71. {
  72. literal = FALSE;
  73. ptr += 1;
  74. }
  75. }
  76. else if (*ptr == CHAR_RIGHT_CURLY_BRACKET)
  77. {
  78. if (nestlevel == 0) goto EXIT;
  79. nestlevel--;
  80. }
  81. else if (*ptr == CHAR_COLON && !last && nestlevel == 0) goto EXIT;
  82. else if (*ptr == CHAR_DOLLAR_SIGN)
  83. {
  84. if (ptr < ptrend - 1 && ptr[1] == CHAR_LEFT_CURLY_BRACKET)
  85. {
  86. nestlevel++;
  87. ptr += 1;
  88. }
  89. }
  90. else if (*ptr == CHAR_BACKSLASH)
  91. {
  92. int erc;
  93. int errorcode;
  94. uint32_t ch;
  95. if (ptr < ptrend - 1) switch (ptr[1])
  96. {
  97. case CHAR_L:
  98. case CHAR_l:
  99. case CHAR_U:
  100. case CHAR_u:
  101. ptr += 1;
  102. continue;
  103. }
  104. ptr += 1; /* Must point after \ */
  105. erc = PRIV(check_escape)(&ptr, ptrend, &ch, &errorcode,
  106. code->overall_options, FALSE, NULL);
  107. ptr -= 1; /* Back to last code unit of escape */
  108. if (errorcode != 0)
  109. {
  110. rc = errorcode;
  111. goto EXIT;
  112. }
  113. switch(erc)
  114. {
  115. case 0: /* Data character */
  116. case ESC_E: /* Isolated \E is ignored */
  117. break;
  118. case ESC_Q:
  119. literal = TRUE;
  120. break;
  121. default:
  122. rc = PCRE2_ERROR_BADREPESCAPE;
  123. goto EXIT;
  124. }
  125. }
  126. }
  127. rc = PCRE2_ERROR_REPMISSINGBRACE; /* Terminator not found */
  128. EXIT:
  129. *ptrptr = ptr;
  130. return rc;
  131. }
  132. /*************************************************
  133. * Match and substitute *
  134. *************************************************/
  135. /* This function applies a compiled re to a subject string and creates a new
  136. string with substitutions. The first 7 arguments are the same as for
  137. pcre2_match(). Either string length may be PCRE2_ZERO_TERMINATED.
  138. Arguments:
  139. code points to the compiled expression
  140. subject points to the subject string
  141. length length of subject string (may contain binary zeros)
  142. start_offset where to start in the subject string
  143. options option bits
  144. match_data points to a match_data block, or is NULL
  145. context points a PCRE2 context
  146. replacement points to the replacement string
  147. rlength length of replacement string
  148. buffer where to put the substituted string
  149. blength points to length of buffer; updated to length of string
  150. Returns: >= 0 number of substitutions made
  151. < 0 an error code
  152. PCRE2_ERROR_BADREPLACEMENT means invalid use of $
  153. */
  154. /* This macro checks for space in the buffer before copying into it. On
  155. overflow, either give an error immediately, or keep on, accumulating the
  156. length. */
  157. #define CHECKMEMCPY(from,length) \
  158. if (!overflowed && lengthleft < length) \
  159. { \
  160. if ((suboptions & PCRE2_SUBSTITUTE_OVERFLOW_LENGTH) == 0) goto NOROOM; \
  161. overflowed = TRUE; \
  162. extra_needed = length - lengthleft; \
  163. } \
  164. else if (overflowed) \
  165. { \
  166. extra_needed += length; \
  167. } \
  168. else \
  169. { \
  170. memcpy(buffer + buff_offset, from, CU2BYTES(length)); \
  171. buff_offset += length; \
  172. lengthleft -= length; \
  173. }
  174. /* Here's the function */
  175. PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
  176. pcre2_substitute(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length,
  177. PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data,
  178. pcre2_match_context *mcontext, PCRE2_SPTR replacement, PCRE2_SIZE rlength,
  179. PCRE2_UCHAR *buffer, PCRE2_SIZE *blength)
  180. {
  181. int rc;
  182. int subs;
  183. int forcecase = 0;
  184. int forcecasereset = 0;
  185. uint32_t ovector_count;
  186. uint32_t goptions = 0;
  187. uint32_t suboptions;
  188. BOOL match_data_created = FALSE;
  189. BOOL literal = FALSE;
  190. BOOL overflowed = FALSE;
  191. #ifdef SUPPORT_UNICODE
  192. BOOL utf = (code->overall_options & PCRE2_UTF) != 0;
  193. #endif
  194. PCRE2_UCHAR temp[6];
  195. PCRE2_SPTR ptr;
  196. PCRE2_SPTR repend;
  197. PCRE2_SIZE extra_needed = 0;
  198. PCRE2_SIZE buff_offset, buff_length, lengthleft, fraglength;
  199. PCRE2_SIZE *ovector;
  200. PCRE2_SIZE ovecsave[3];
  201. buff_offset = 0;
  202. lengthleft = buff_length = *blength;
  203. *blength = PCRE2_UNSET;
  204. ovecsave[0] = ovecsave[1] = ovecsave[2] = PCRE2_UNSET;
  205. /* Partial matching is not valid. */
  206. if ((options & (PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT)) != 0)
  207. return PCRE2_ERROR_BADOPTION;
  208. /* If no match data block is provided, create one. */
  209. if (match_data == NULL)
  210. {
  211. pcre2_general_context *gcontext = (mcontext == NULL)?
  212. (pcre2_general_context *)code :
  213. (pcre2_general_context *)mcontext;
  214. match_data = pcre2_match_data_create_from_pattern(code, gcontext);
  215. if (match_data == NULL) return PCRE2_ERROR_NOMEMORY;
  216. match_data_created = TRUE;
  217. }
  218. ovector = pcre2_get_ovector_pointer(match_data);
  219. ovector_count = pcre2_get_ovector_count(match_data);
  220. /* Find lengths of zero-terminated strings and the end of the replacement. */
  221. if (length == PCRE2_ZERO_TERMINATED) length = PRIV(strlen)(subject);
  222. if (rlength == PCRE2_ZERO_TERMINATED) rlength = PRIV(strlen)(replacement);
  223. repend = replacement + rlength;
  224. /* Check UTF replacement string if necessary. */
  225. #ifdef SUPPORT_UNICODE
  226. if (utf && (options & PCRE2_NO_UTF_CHECK) == 0)
  227. {
  228. rc = PRIV(valid_utf)(replacement, rlength, &(match_data->rightchar));
  229. if (rc != 0)
  230. {
  231. match_data->leftchar = 0;
  232. goto EXIT;
  233. }
  234. }
  235. #endif /* SUPPORT_UNICODE */
  236. /* Save the substitute options and remove them from the match options. */
  237. suboptions = options & SUBSTITUTE_OPTIONS;
  238. options &= ~SUBSTITUTE_OPTIONS;
  239. /* Copy up to the start offset */
  240. if (start_offset > length)
  241. {
  242. match_data->leftchar = 0;
  243. rc = PCRE2_ERROR_BADOFFSET;
  244. goto EXIT;
  245. }
  246. CHECKMEMCPY(subject, start_offset);
  247. /* Loop for global substituting. */
  248. subs = 0;
  249. do
  250. {
  251. PCRE2_SPTR ptrstack[PTR_STACK_SIZE];
  252. uint32_t ptrstackptr = 0;
  253. rc = pcre2_match(code, subject, length, start_offset, options|goptions,
  254. match_data, mcontext);
  255. #ifdef SUPPORT_UNICODE
  256. if (utf) options |= PCRE2_NO_UTF_CHECK; /* Only need to check once */
  257. #endif
  258. /* Any error other than no match returns the error code. No match when not
  259. doing the special after-empty-match global rematch, or when at the end of the
  260. subject, breaks the global loop. Otherwise, advance the starting point by one
  261. character, copying it to the output, and try again. */
  262. if (rc < 0)
  263. {
  264. PCRE2_SIZE save_start;
  265. if (rc != PCRE2_ERROR_NOMATCH) goto EXIT;
  266. if (goptions == 0 || start_offset >= length) break;
  267. /* Advance by one code point. Then, if CRLF is a valid newline sequence and
  268. we have advanced into the middle of it, advance one more code point. In
  269. other words, do not start in the middle of CRLF, even if CR and LF on their
  270. own are valid newlines. */
  271. save_start = start_offset++;
  272. if (subject[start_offset-1] == CHAR_CR &&
  273. code->newline_convention != PCRE2_NEWLINE_CR &&
  274. code->newline_convention != PCRE2_NEWLINE_LF &&
  275. start_offset < length &&
  276. subject[start_offset] == CHAR_LF)
  277. start_offset++;
  278. /* Otherwise, in UTF mode, advance past any secondary code points. */
  279. else if ((code->overall_options & PCRE2_UTF) != 0)
  280. {
  281. #if PCRE2_CODE_UNIT_WIDTH == 8
  282. while (start_offset < length && (subject[start_offset] & 0xc0) == 0x80)
  283. start_offset++;
  284. #elif PCRE2_CODE_UNIT_WIDTH == 16
  285. while (start_offset < length &&
  286. (subject[start_offset] & 0xfc00) == 0xdc00)
  287. start_offset++;
  288. #endif
  289. }
  290. /* Copy what we have advanced past, reset the special global options, and
  291. continue to the next match. */
  292. fraglength = start_offset - save_start;
  293. CHECKMEMCPY(subject + save_start, fraglength);
  294. goptions = 0;
  295. continue;
  296. }
  297. /* Handle a successful match. Matches that use \K to end before they start
  298. or start before the current point in the subject are not supported. */
  299. if (ovector[1] < ovector[0] || ovector[0] < start_offset)
  300. {
  301. rc = PCRE2_ERROR_BADSUBSPATTERN;
  302. goto EXIT;
  303. }
  304. /* Check for the same match as previous. This is legitimate after matching an
  305. empty string that starts after the initial match offset. We have tried again
  306. at the match point in case the pattern is one like /(?<=\G.)/ which can never
  307. match at its starting point, so running the match achieves the bumpalong. If
  308. we do get the same (null) match at the original match point, it isn't such a
  309. pattern, so we now do the empty string magic. In all other cases, a repeat
  310. match should never occur. */
  311. if (ovecsave[0] == ovector[0] && ovecsave[1] == ovector[1])
  312. {
  313. if (ovector[0] == ovector[1] && ovecsave[2] != start_offset)
  314. {
  315. goptions = PCRE2_NOTEMPTY_ATSTART | PCRE2_ANCHORED;
  316. ovecsave[2] = start_offset;
  317. continue; /* Back to the top of the loop */
  318. }
  319. rc = PCRE2_ERROR_INTERNAL_DUPMATCH;
  320. goto EXIT;
  321. }
  322. /* Count substitutions with a paranoid check for integer overflow; surely no
  323. real call to this function would ever hit this! */
  324. if (subs == INT_MAX)
  325. {
  326. rc = PCRE2_ERROR_TOOMANYREPLACE;
  327. goto EXIT;
  328. }
  329. subs++;
  330. /* Copy the text leading up to the match. */
  331. if (rc == 0) rc = ovector_count;
  332. fraglength = ovector[0] - start_offset;
  333. CHECKMEMCPY(subject + start_offset, fraglength);
  334. /* Process the replacement string. Literal mode is set by \Q, but only in
  335. extended mode when backslashes are being interpreted. In extended mode we
  336. must handle nested substrings that are to be reprocessed. */
  337. ptr = replacement;
  338. for (;;)
  339. {
  340. uint32_t ch;
  341. unsigned int chlen;
  342. /* If at the end of a nested substring, pop the stack. */
  343. if (ptr >= repend)
  344. {
  345. if (ptrstackptr <= 0) break; /* End of replacement string */
  346. repend = ptrstack[--ptrstackptr];
  347. ptr = ptrstack[--ptrstackptr];
  348. continue;
  349. }
  350. /* Handle the next character */
  351. if (literal)
  352. {
  353. if (ptr[0] == CHAR_BACKSLASH && ptr < repend - 1 && ptr[1] == CHAR_E)
  354. {
  355. literal = FALSE;
  356. ptr += 2;
  357. continue;
  358. }
  359. goto LOADLITERAL;
  360. }
  361. /* Not in literal mode. */
  362. if (*ptr == CHAR_DOLLAR_SIGN)
  363. {
  364. int group, n;
  365. uint32_t special = 0;
  366. BOOL inparens;
  367. BOOL star;
  368. PCRE2_SIZE sublength;
  369. PCRE2_SPTR text1_start = NULL;
  370. PCRE2_SPTR text1_end = NULL;
  371. PCRE2_SPTR text2_start = NULL;
  372. PCRE2_SPTR text2_end = NULL;
  373. PCRE2_UCHAR next;
  374. PCRE2_UCHAR name[33];
  375. if (++ptr >= repend) goto BAD;
  376. if ((next = *ptr) == CHAR_DOLLAR_SIGN) goto LOADLITERAL;
  377. group = -1;
  378. n = 0;
  379. inparens = FALSE;
  380. star = FALSE;
  381. if (next == CHAR_LEFT_CURLY_BRACKET)
  382. {
  383. if (++ptr >= repend) goto BAD;
  384. next = *ptr;
  385. inparens = TRUE;
  386. }
  387. if (next == CHAR_ASTERISK)
  388. {
  389. if (++ptr >= repend) goto BAD;
  390. next = *ptr;
  391. star = TRUE;
  392. }
  393. if (!star && next >= CHAR_0 && next <= CHAR_9)
  394. {
  395. group = next - CHAR_0;
  396. while (++ptr < repend)
  397. {
  398. next = *ptr;
  399. if (next < CHAR_0 || next > CHAR_9) break;
  400. group = group * 10 + next - CHAR_0;
  401. /* A check for a number greater than the hightest captured group
  402. is sufficient here; no need for a separate overflow check. If unknown
  403. groups are to be treated as unset, just skip over any remaining
  404. digits and carry on. */
  405. if (group > code->top_bracket)
  406. {
  407. if ((suboptions & PCRE2_SUBSTITUTE_UNKNOWN_UNSET) != 0)
  408. {
  409. while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9);
  410. break;
  411. }
  412. else
  413. {
  414. rc = PCRE2_ERROR_NOSUBSTRING;
  415. goto PTREXIT;
  416. }
  417. }
  418. }
  419. }
  420. else
  421. {
  422. const uint8_t *ctypes = code->tables + ctypes_offset;
  423. while (MAX_255(next) && (ctypes[next] & ctype_word) != 0)
  424. {
  425. name[n++] = next;
  426. if (n > 32) goto BAD;
  427. if (++ptr >= repend) break;
  428. next = *ptr;
  429. }
  430. if (n == 0) goto BAD;
  431. name[n] = 0;
  432. }
  433. /* In extended mode we recognize ${name:+set text:unset text} and
  434. ${name:-default text}. */
  435. if (inparens)
  436. {
  437. if ((suboptions & PCRE2_SUBSTITUTE_EXTENDED) != 0 &&
  438. !star && ptr < repend - 2 && next == CHAR_COLON)
  439. {
  440. special = *(++ptr);
  441. if (special != CHAR_PLUS && special != CHAR_MINUS)
  442. {
  443. rc = PCRE2_ERROR_BADSUBSTITUTION;
  444. goto PTREXIT;
  445. }
  446. text1_start = ++ptr;
  447. rc = find_text_end(code, &ptr, repend, special == CHAR_MINUS);
  448. if (rc != 0) goto PTREXIT;
  449. text1_end = ptr;
  450. if (special == CHAR_PLUS && *ptr == CHAR_COLON)
  451. {
  452. text2_start = ++ptr;
  453. rc = find_text_end(code, &ptr, repend, TRUE);
  454. if (rc != 0) goto PTREXIT;
  455. text2_end = ptr;
  456. }
  457. }
  458. else
  459. {
  460. if (ptr >= repend || *ptr != CHAR_RIGHT_CURLY_BRACKET)
  461. {
  462. rc = PCRE2_ERROR_REPMISSINGBRACE;
  463. goto PTREXIT;
  464. }
  465. }
  466. ptr++;
  467. }
  468. /* Have found a syntactically correct group number or name, or *name.
  469. Only *MARK is currently recognized. */
  470. if (star)
  471. {
  472. if (PRIV(strcmp_c8)(name, STRING_MARK) == 0)
  473. {
  474. PCRE2_SPTR mark = pcre2_get_mark(match_data);
  475. if (mark != NULL)
  476. {
  477. PCRE2_SPTR mark_start = mark;
  478. while (*mark != 0) mark++;
  479. fraglength = mark - mark_start;
  480. CHECKMEMCPY(mark_start, fraglength);
  481. }
  482. }
  483. else goto BAD;
  484. }
  485. /* Substitute the contents of a group. We don't use substring_copy
  486. functions any more, in order to support case forcing. */
  487. else
  488. {
  489. PCRE2_SPTR subptr, subptrend;
  490. /* Find a number for a named group. In case there are duplicate names,
  491. search for the first one that is set. If the name is not found when
  492. PCRE2_SUBSTITUTE_UNKNOWN_EMPTY is set, set the group number to a
  493. non-existent group. */
  494. if (group < 0)
  495. {
  496. PCRE2_SPTR first, last, entry;
  497. rc = pcre2_substring_nametable_scan(code, name, &first, &last);
  498. if (rc == PCRE2_ERROR_NOSUBSTRING &&
  499. (suboptions & PCRE2_SUBSTITUTE_UNKNOWN_UNSET) != 0)
  500. {
  501. group = code->top_bracket + 1;
  502. }
  503. else
  504. {
  505. if (rc < 0) goto PTREXIT;
  506. for (entry = first; entry <= last; entry += rc)
  507. {
  508. uint32_t ng = GET2(entry, 0);
  509. if (ng < ovector_count)
  510. {
  511. if (group < 0) group = ng; /* First in ovector */
  512. if (ovector[ng*2] != PCRE2_UNSET)
  513. {
  514. group = ng; /* First that is set */
  515. break;
  516. }
  517. }
  518. }
  519. /* If group is still negative, it means we did not find a group
  520. that is in the ovector. Just set the first group. */
  521. if (group < 0) group = GET2(first, 0);
  522. }
  523. }
  524. /* We now have a group that is identified by number. Find the length of
  525. the captured string. If a group in a non-special substitution is unset
  526. when PCRE2_SUBSTITUTE_UNSET_EMPTY is set, substitute nothing. */
  527. rc = pcre2_substring_length_bynumber(match_data, group, &sublength);
  528. if (rc < 0)
  529. {
  530. if (rc == PCRE2_ERROR_NOSUBSTRING &&
  531. (suboptions & PCRE2_SUBSTITUTE_UNKNOWN_UNSET) != 0)
  532. {
  533. rc = PCRE2_ERROR_UNSET;
  534. }
  535. if (rc != PCRE2_ERROR_UNSET) goto PTREXIT; /* Non-unset errors */
  536. if (special == 0) /* Plain substitution */
  537. {
  538. if ((suboptions & PCRE2_SUBSTITUTE_UNSET_EMPTY) != 0) continue;
  539. goto PTREXIT; /* Else error */
  540. }
  541. }
  542. /* If special is '+' we have a 'set' and possibly an 'unset' text,
  543. both of which are reprocessed when used. If special is '-' we have a
  544. default text for when the group is unset; it must be reprocessed. */
  545. if (special != 0)
  546. {
  547. if (special == CHAR_MINUS)
  548. {
  549. if (rc == 0) goto LITERAL_SUBSTITUTE;
  550. text2_start = text1_start;
  551. text2_end = text1_end;
  552. }
  553. if (ptrstackptr >= PTR_STACK_SIZE) goto BAD;
  554. ptrstack[ptrstackptr++] = ptr;
  555. ptrstack[ptrstackptr++] = repend;
  556. if (rc == 0)
  557. {
  558. ptr = text1_start;
  559. repend = text1_end;
  560. }
  561. else
  562. {
  563. ptr = text2_start;
  564. repend = text2_end;
  565. }
  566. continue;
  567. }
  568. /* Otherwise we have a literal substitution of a group's contents. */
  569. LITERAL_SUBSTITUTE:
  570. subptr = subject + ovector[group*2];
  571. subptrend = subject + ovector[group*2 + 1];
  572. /* Substitute a literal string, possibly forcing alphabetic case. */
  573. while (subptr < subptrend)
  574. {
  575. GETCHARINCTEST(ch, subptr);
  576. if (forcecase != 0)
  577. {
  578. #ifdef SUPPORT_UNICODE
  579. if (utf)
  580. {
  581. uint32_t type = UCD_CHARTYPE(ch);
  582. if (PRIV(ucp_gentype)[type] == ucp_L &&
  583. type != ((forcecase > 0)? ucp_Lu : ucp_Ll))
  584. ch = UCD_OTHERCASE(ch);
  585. }
  586. else
  587. #endif
  588. {
  589. if (((code->tables + cbits_offset +
  590. ((forcecase > 0)? cbit_upper:cbit_lower)
  591. )[ch/8] & (1 << (ch%8))) == 0)
  592. ch = (code->tables + fcc_offset)[ch];
  593. }
  594. forcecase = forcecasereset;
  595. }
  596. #ifdef SUPPORT_UNICODE
  597. if (utf) chlen = PRIV(ord2utf)(ch, temp); else
  598. #endif
  599. {
  600. temp[0] = ch;
  601. chlen = 1;
  602. }
  603. CHECKMEMCPY(temp, chlen);
  604. }
  605. }
  606. }
  607. /* Handle an escape sequence in extended mode. We can use check_escape()
  608. to process \Q, \E, \c, \o, \x and \ followed by non-alphanumerics, but
  609. the case-forcing escapes are not supported in pcre2_compile() so must be
  610. recognized here. */
  611. else if ((suboptions & PCRE2_SUBSTITUTE_EXTENDED) != 0 &&
  612. *ptr == CHAR_BACKSLASH)
  613. {
  614. int errorcode;
  615. if (ptr < repend - 1) switch (ptr[1])
  616. {
  617. case CHAR_L:
  618. forcecase = forcecasereset = -1;
  619. ptr += 2;
  620. continue;
  621. case CHAR_l:
  622. forcecase = -1;
  623. forcecasereset = 0;
  624. ptr += 2;
  625. continue;
  626. case CHAR_U:
  627. forcecase = forcecasereset = 1;
  628. ptr += 2;
  629. continue;
  630. case CHAR_u:
  631. forcecase = 1;
  632. forcecasereset = 0;
  633. ptr += 2;
  634. continue;
  635. default:
  636. break;
  637. }
  638. ptr++; /* Point after \ */
  639. rc = PRIV(check_escape)(&ptr, repend, &ch, &errorcode,
  640. code->overall_options, FALSE, NULL);
  641. if (errorcode != 0) goto BADESCAPE;
  642. switch(rc)
  643. {
  644. case ESC_E:
  645. forcecase = forcecasereset = 0;
  646. continue;
  647. case ESC_Q:
  648. literal = TRUE;
  649. continue;
  650. case 0: /* Data character */
  651. goto LITERAL;
  652. default:
  653. goto BADESCAPE;
  654. }
  655. }
  656. /* Handle a literal code unit */
  657. else
  658. {
  659. LOADLITERAL:
  660. GETCHARINCTEST(ch, ptr); /* Get character value, increment pointer */
  661. LITERAL:
  662. if (forcecase != 0)
  663. {
  664. #ifdef SUPPORT_UNICODE
  665. if (utf)
  666. {
  667. uint32_t type = UCD_CHARTYPE(ch);
  668. if (PRIV(ucp_gentype)[type] == ucp_L &&
  669. type != ((forcecase > 0)? ucp_Lu : ucp_Ll))
  670. ch = UCD_OTHERCASE(ch);
  671. }
  672. else
  673. #endif
  674. {
  675. if (((code->tables + cbits_offset +
  676. ((forcecase > 0)? cbit_upper:cbit_lower)
  677. )[ch/8] & (1 << (ch%8))) == 0)
  678. ch = (code->tables + fcc_offset)[ch];
  679. }
  680. forcecase = forcecasereset;
  681. }
  682. #ifdef SUPPORT_UNICODE
  683. if (utf) chlen = PRIV(ord2utf)(ch, temp); else
  684. #endif
  685. {
  686. temp[0] = ch;
  687. chlen = 1;
  688. }
  689. CHECKMEMCPY(temp, chlen);
  690. } /* End handling a literal code unit */
  691. } /* End of loop for scanning the replacement. */
  692. /* The replacement has been copied to the output. Save the details of this
  693. match. See above for how this data is used. If we matched an empty string, do
  694. the magic for global matches. Finally, update the start offset to point to
  695. the rest of the subject string. */
  696. ovecsave[0] = ovector[0];
  697. ovecsave[1] = ovector[1];
  698. ovecsave[2] = start_offset;
  699. goptions = (ovector[0] != ovector[1] || ovector[0] > start_offset)? 0 :
  700. PCRE2_ANCHORED|PCRE2_NOTEMPTY_ATSTART;
  701. start_offset = ovector[1];
  702. } while ((suboptions & PCRE2_SUBSTITUTE_GLOBAL) != 0); /* Repeat "do" loop */
  703. /* Copy the rest of the subject. */
  704. fraglength = length - start_offset;
  705. CHECKMEMCPY(subject + start_offset, fraglength);
  706. temp[0] = 0;
  707. CHECKMEMCPY(temp , 1);
  708. /* If overflowed is set it means the PCRE2_SUBSTITUTE_OVERFLOW_LENGTH is set,
  709. and matching has carried on after a full buffer, in order to compute the length
  710. needed. Otherwise, an overflow generates an immediate error return. */
  711. if (overflowed)
  712. {
  713. rc = PCRE2_ERROR_NOMEMORY;
  714. *blength = buff_length + extra_needed;
  715. }
  716. /* After a successful execution, return the number of substitutions and set the
  717. length of buffer used, excluding the trailing zero. */
  718. else
  719. {
  720. rc = subs;
  721. *blength = buff_offset - 1;
  722. }
  723. EXIT:
  724. if (match_data_created) pcre2_match_data_free(match_data);
  725. else match_data->rc = rc;
  726. return rc;
  727. NOROOM:
  728. rc = PCRE2_ERROR_NOMEMORY;
  729. goto EXIT;
  730. BAD:
  731. rc = PCRE2_ERROR_BADREPLACEMENT;
  732. goto PTREXIT;
  733. BADESCAPE:
  734. rc = PCRE2_ERROR_BADREPESCAPE;
  735. PTREXIT:
  736. *blength = (PCRE2_SIZE)(ptr - replacement);
  737. goto EXIT;
  738. }
  739. /* End of pcre2_substitute.c */