pcre_get.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  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. Copyright (c) 1997-2012 University of Cambridge
  8. -----------------------------------------------------------------------------
  9. Redistribution and use in source and binary forms, with or without
  10. modification, are permitted provided that the following conditions are met:
  11. * Redistributions of source code must retain the above copyright notice,
  12. this list of conditions and the following disclaimer.
  13. * Redistributions in binary form must reproduce the above copyright
  14. notice, this list of conditions and the following disclaimer in the
  15. documentation and/or other materials provided with the distribution.
  16. * Neither the name of the University of Cambridge nor the names of its
  17. contributors may be used to endorse or promote products derived from
  18. this software without specific prior written permission.
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. POSSIBILITY OF SUCH DAMAGE.
  30. -----------------------------------------------------------------------------
  31. */
  32. /* This module contains some convenience functions for extracting substrings
  33. from the subject string after a regex match has succeeded. The original idea
  34. for these functions came from Scott Wimer. */
  35. #ifdef HAVE_CONFIG_H
  36. #include "config.h"
  37. #endif
  38. #include "pcre_internal.h"
  39. /*************************************************
  40. * Find number for named string *
  41. *************************************************/
  42. /* This function is used by the get_first_set() function below, as well
  43. as being generally available. It assumes that names are unique.
  44. Arguments:
  45. code the compiled regex
  46. stringname the name whose number is required
  47. Returns: the number of the named parentheses, or a negative number
  48. (PCRE_ERROR_NOSUBSTRING) if not found
  49. */
  50. #if defined COMPILE_PCRE8
  51. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  52. pcre_get_stringnumber(const pcre *code, const char *stringname)
  53. #elif defined COMPILE_PCRE16
  54. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  55. pcre16_get_stringnumber(const pcre16 *code, PCRE_SPTR16 stringname)
  56. #elif defined COMPILE_PCRE32
  57. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  58. pcre32_get_stringnumber(const pcre32 *code, PCRE_SPTR32 stringname)
  59. #endif
  60. {
  61. int rc;
  62. int entrysize;
  63. int top, bot;
  64. pcre_uchar *nametable;
  65. #ifdef COMPILE_PCRE8
  66. if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
  67. return rc;
  68. if (top <= 0) return PCRE_ERROR_NOSUBSTRING;
  69. if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMEENTRYSIZE, &entrysize)) != 0)
  70. return rc;
  71. if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMETABLE, &nametable)) != 0)
  72. return rc;
  73. #endif
  74. #ifdef COMPILE_PCRE16
  75. if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
  76. return rc;
  77. if (top <= 0) return PCRE_ERROR_NOSUBSTRING;
  78. if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMEENTRYSIZE, &entrysize)) != 0)
  79. return rc;
  80. if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMETABLE, &nametable)) != 0)
  81. return rc;
  82. #endif
  83. #ifdef COMPILE_PCRE32
  84. if ((rc = pcre32_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
  85. return rc;
  86. if (top <= 0) return PCRE_ERROR_NOSUBSTRING;
  87. if ((rc = pcre32_fullinfo(code, NULL, PCRE_INFO_NAMEENTRYSIZE, &entrysize)) != 0)
  88. return rc;
  89. if ((rc = pcre32_fullinfo(code, NULL, PCRE_INFO_NAMETABLE, &nametable)) != 0)
  90. return rc;
  91. #endif
  92. bot = 0;
  93. while (top > bot)
  94. {
  95. int mid = (top + bot) / 2;
  96. pcre_uchar *entry = nametable + entrysize*mid;
  97. int c = STRCMP_UC_UC((pcre_uchar *)stringname,
  98. (pcre_uchar *)(entry + IMM2_SIZE));
  99. if (c == 0) return GET2(entry, 0);
  100. if (c > 0) bot = mid + 1; else top = mid;
  101. }
  102. return PCRE_ERROR_NOSUBSTRING;
  103. }
  104. /*************************************************
  105. * Find (multiple) entries for named string *
  106. *************************************************/
  107. /* This is used by the get_first_set() function below, as well as being
  108. generally available. It is used when duplicated names are permitted.
  109. Arguments:
  110. code the compiled regex
  111. stringname the name whose entries required
  112. firstptr where to put the pointer to the first entry
  113. lastptr where to put the pointer to the last entry
  114. Returns: the length of each entry, or a negative number
  115. (PCRE_ERROR_NOSUBSTRING) if not found
  116. */
  117. #if defined COMPILE_PCRE8
  118. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  119. pcre_get_stringtable_entries(const pcre *code, const char *stringname,
  120. char **firstptr, char **lastptr)
  121. #elif defined COMPILE_PCRE16
  122. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  123. pcre16_get_stringtable_entries(const pcre16 *code, PCRE_SPTR16 stringname,
  124. PCRE_UCHAR16 **firstptr, PCRE_UCHAR16 **lastptr)
  125. #elif defined COMPILE_PCRE32
  126. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  127. pcre32_get_stringtable_entries(const pcre32 *code, PCRE_SPTR32 stringname,
  128. PCRE_UCHAR32 **firstptr, PCRE_UCHAR32 **lastptr)
  129. #endif
  130. {
  131. int rc;
  132. int entrysize;
  133. int top, bot;
  134. pcre_uchar *nametable, *lastentry;
  135. #ifdef COMPILE_PCRE8
  136. if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
  137. return rc;
  138. if (top <= 0) return PCRE_ERROR_NOSUBSTRING;
  139. if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMEENTRYSIZE, &entrysize)) != 0)
  140. return rc;
  141. if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMETABLE, &nametable)) != 0)
  142. return rc;
  143. #endif
  144. #ifdef COMPILE_PCRE16
  145. if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
  146. return rc;
  147. if (top <= 0) return PCRE_ERROR_NOSUBSTRING;
  148. if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMEENTRYSIZE, &entrysize)) != 0)
  149. return rc;
  150. if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMETABLE, &nametable)) != 0)
  151. return rc;
  152. #endif
  153. #ifdef COMPILE_PCRE32
  154. if ((rc = pcre32_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
  155. return rc;
  156. if (top <= 0) return PCRE_ERROR_NOSUBSTRING;
  157. if ((rc = pcre32_fullinfo(code, NULL, PCRE_INFO_NAMEENTRYSIZE, &entrysize)) != 0)
  158. return rc;
  159. if ((rc = pcre32_fullinfo(code, NULL, PCRE_INFO_NAMETABLE, &nametable)) != 0)
  160. return rc;
  161. #endif
  162. lastentry = nametable + entrysize * (top - 1);
  163. bot = 0;
  164. while (top > bot)
  165. {
  166. int mid = (top + bot) / 2;
  167. pcre_uchar *entry = nametable + entrysize*mid;
  168. int c = STRCMP_UC_UC((pcre_uchar *)stringname,
  169. (pcre_uchar *)(entry + IMM2_SIZE));
  170. if (c == 0)
  171. {
  172. pcre_uchar *first = entry;
  173. pcre_uchar *last = entry;
  174. while (first > nametable)
  175. {
  176. if (STRCMP_UC_UC((pcre_uchar *)stringname,
  177. (pcre_uchar *)(first - entrysize + IMM2_SIZE)) != 0) break;
  178. first -= entrysize;
  179. }
  180. while (last < lastentry)
  181. {
  182. if (STRCMP_UC_UC((pcre_uchar *)stringname,
  183. (pcre_uchar *)(last + entrysize + IMM2_SIZE)) != 0) break;
  184. last += entrysize;
  185. }
  186. #if defined COMPILE_PCRE8
  187. *firstptr = (char *)first;
  188. *lastptr = (char *)last;
  189. #elif defined COMPILE_PCRE16
  190. *firstptr = (PCRE_UCHAR16 *)first;
  191. *lastptr = (PCRE_UCHAR16 *)last;
  192. #elif defined COMPILE_PCRE32
  193. *firstptr = (PCRE_UCHAR32 *)first;
  194. *lastptr = (PCRE_UCHAR32 *)last;
  195. #endif
  196. return entrysize;
  197. }
  198. if (c > 0) bot = mid + 1; else top = mid;
  199. }
  200. return PCRE_ERROR_NOSUBSTRING;
  201. }
  202. /*************************************************
  203. * Find first set of multiple named strings *
  204. *************************************************/
  205. /* This function allows for duplicate names in the table of named substrings.
  206. It returns the number of the first one that was set in a pattern match.
  207. Arguments:
  208. code the compiled regex
  209. stringname the name of the capturing substring
  210. ovector the vector of matched substrings
  211. Returns: the number of the first that is set,
  212. or the number of the last one if none are set,
  213. or a negative number on error
  214. */
  215. #if defined COMPILE_PCRE8
  216. static int
  217. get_first_set(const pcre *code, const char *stringname, int *ovector)
  218. #elif defined COMPILE_PCRE16
  219. static int
  220. get_first_set(const pcre16 *code, PCRE_SPTR16 stringname, int *ovector)
  221. #elif defined COMPILE_PCRE32
  222. static int
  223. get_first_set(const pcre32 *code, PCRE_SPTR32 stringname, int *ovector)
  224. #endif
  225. {
  226. const REAL_PCRE *re = (const REAL_PCRE *)code;
  227. int entrysize;
  228. pcre_uchar *entry;
  229. #if defined COMPILE_PCRE8
  230. char *first, *last;
  231. #elif defined COMPILE_PCRE16
  232. PCRE_UCHAR16 *first, *last;
  233. #elif defined COMPILE_PCRE32
  234. PCRE_UCHAR32 *first, *last;
  235. #endif
  236. #if defined COMPILE_PCRE8
  237. if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
  238. return pcre_get_stringnumber(code, stringname);
  239. entrysize = pcre_get_stringtable_entries(code, stringname, &first, &last);
  240. #elif defined COMPILE_PCRE16
  241. if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
  242. return pcre16_get_stringnumber(code, stringname);
  243. entrysize = pcre16_get_stringtable_entries(code, stringname, &first, &last);
  244. #elif defined COMPILE_PCRE32
  245. if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
  246. return pcre32_get_stringnumber(code, stringname);
  247. entrysize = pcre32_get_stringtable_entries(code, stringname, &first, &last);
  248. #endif
  249. if (entrysize <= 0) return entrysize;
  250. for (entry = (pcre_uchar *)first; entry <= (pcre_uchar *)last; entry += entrysize)
  251. {
  252. int n = GET2(entry, 0);
  253. if (ovector[n*2] >= 0) return n;
  254. }
  255. return GET2(entry, 0);
  256. }
  257. /*************************************************
  258. * Copy captured string to given buffer *
  259. *************************************************/
  260. /* This function copies a single captured substring into a given buffer.
  261. Note that we use memcpy() rather than strncpy() in case there are binary zeros
  262. in the string.
  263. Arguments:
  264. subject the subject string that was matched
  265. ovector pointer to the offsets table
  266. stringcount the number of substrings that were captured
  267. (i.e. the yield of the pcre_exec call, unless
  268. that was zero, in which case it should be 1/3
  269. of the offset table size)
  270. stringnumber the number of the required substring
  271. buffer where to put the substring
  272. size the size of the buffer
  273. Returns: if successful:
  274. the length of the copied string, not including the zero
  275. that is put on the end; can be zero
  276. if not successful:
  277. PCRE_ERROR_NOMEMORY (-6) buffer too small
  278. PCRE_ERROR_NOSUBSTRING (-7) no such captured substring
  279. */
  280. #if defined COMPILE_PCRE8
  281. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  282. pcre_copy_substring(const char *subject, int *ovector, int stringcount,
  283. int stringnumber, char *buffer, int size)
  284. #elif defined COMPILE_PCRE16
  285. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  286. pcre16_copy_substring(PCRE_SPTR16 subject, int *ovector, int stringcount,
  287. int stringnumber, PCRE_UCHAR16 *buffer, int size)
  288. #elif defined COMPILE_PCRE32
  289. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  290. pcre32_copy_substring(PCRE_SPTR32 subject, int *ovector, int stringcount,
  291. int stringnumber, PCRE_UCHAR32 *buffer, int size)
  292. #endif
  293. {
  294. int yield;
  295. if (stringnumber < 0 || stringnumber >= stringcount)
  296. return PCRE_ERROR_NOSUBSTRING;
  297. stringnumber *= 2;
  298. yield = ovector[stringnumber+1] - ovector[stringnumber];
  299. if (size < yield + 1) return PCRE_ERROR_NOMEMORY;
  300. memcpy(buffer, subject + ovector[stringnumber], IN_UCHARS(yield));
  301. buffer[yield] = 0;
  302. return yield;
  303. }
  304. /*************************************************
  305. * Copy named captured string to given buffer *
  306. *************************************************/
  307. /* This function copies a single captured substring into a given buffer,
  308. identifying it by name. If the regex permits duplicate names, the first
  309. substring that is set is chosen.
  310. Arguments:
  311. code the compiled regex
  312. subject the subject string that was matched
  313. ovector pointer to the offsets table
  314. stringcount the number of substrings that were captured
  315. (i.e. the yield of the pcre_exec call, unless
  316. that was zero, in which case it should be 1/3
  317. of the offset table size)
  318. stringname the name of the required substring
  319. buffer where to put the substring
  320. size the size of the buffer
  321. Returns: if successful:
  322. the length of the copied string, not including the zero
  323. that is put on the end; can be zero
  324. if not successful:
  325. PCRE_ERROR_NOMEMORY (-6) buffer too small
  326. PCRE_ERROR_NOSUBSTRING (-7) no such captured substring
  327. */
  328. #if defined COMPILE_PCRE8
  329. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  330. pcre_copy_named_substring(const pcre *code, const char *subject,
  331. int *ovector, int stringcount, const char *stringname,
  332. char *buffer, int size)
  333. #elif defined COMPILE_PCRE16
  334. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  335. pcre16_copy_named_substring(const pcre16 *code, PCRE_SPTR16 subject,
  336. int *ovector, int stringcount, PCRE_SPTR16 stringname,
  337. PCRE_UCHAR16 *buffer, int size)
  338. #elif defined COMPILE_PCRE32
  339. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  340. pcre32_copy_named_substring(const pcre32 *code, PCRE_SPTR32 subject,
  341. int *ovector, int stringcount, PCRE_SPTR32 stringname,
  342. PCRE_UCHAR32 *buffer, int size)
  343. #endif
  344. {
  345. int n = get_first_set(code, stringname, ovector);
  346. if (n <= 0) return n;
  347. #if defined COMPILE_PCRE8
  348. return pcre_copy_substring(subject, ovector, stringcount, n, buffer, size);
  349. #elif defined COMPILE_PCRE16
  350. return pcre16_copy_substring(subject, ovector, stringcount, n, buffer, size);
  351. #elif defined COMPILE_PCRE32
  352. return pcre32_copy_substring(subject, ovector, stringcount, n, buffer, size);
  353. #endif
  354. }
  355. /*************************************************
  356. * Copy all captured strings to new store *
  357. *************************************************/
  358. /* This function gets one chunk of store and builds a list of pointers and all
  359. of the captured substrings in it. A NULL pointer is put on the end of the list.
  360. Arguments:
  361. subject the subject string that was matched
  362. ovector pointer to the offsets table
  363. stringcount the number of substrings that were captured
  364. (i.e. the yield of the pcre_exec call, unless
  365. that was zero, in which case it should be 1/3
  366. of the offset table size)
  367. listptr set to point to the list of pointers
  368. Returns: if successful: 0
  369. if not successful:
  370. PCRE_ERROR_NOMEMORY (-6) failed to get store
  371. */
  372. #if defined COMPILE_PCRE8
  373. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  374. pcre_get_substring_list(const char *subject, int *ovector, int stringcount,
  375. const char ***listptr)
  376. #elif defined COMPILE_PCRE16
  377. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  378. pcre16_get_substring_list(PCRE_SPTR16 subject, int *ovector, int stringcount,
  379. PCRE_SPTR16 **listptr)
  380. #elif defined COMPILE_PCRE32
  381. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  382. pcre32_get_substring_list(PCRE_SPTR32 subject, int *ovector, int stringcount,
  383. PCRE_SPTR32 **listptr)
  384. #endif
  385. {
  386. int i;
  387. int size = sizeof(pcre_uchar *);
  388. int double_count = stringcount * 2;
  389. pcre_uchar **stringlist;
  390. pcre_uchar *p;
  391. for (i = 0; i < double_count; i += 2)
  392. size += sizeof(pcre_uchar *) + IN_UCHARS(ovector[i+1] - ovector[i] + 1);
  393. stringlist = (pcre_uchar **)(PUBL(malloc))(size);
  394. if (stringlist == NULL) return PCRE_ERROR_NOMEMORY;
  395. #if defined COMPILE_PCRE8
  396. *listptr = (const char **)stringlist;
  397. #elif defined COMPILE_PCRE16
  398. *listptr = (PCRE_SPTR16 *)stringlist;
  399. #elif defined COMPILE_PCRE32
  400. *listptr = (PCRE_SPTR32 *)stringlist;
  401. #endif
  402. p = (pcre_uchar *)(stringlist + stringcount + 1);
  403. for (i = 0; i < double_count; i += 2)
  404. {
  405. int len = ovector[i+1] - ovector[i];
  406. memcpy(p, subject + ovector[i], IN_UCHARS(len));
  407. *stringlist++ = p;
  408. p += len;
  409. *p++ = 0;
  410. }
  411. *stringlist = NULL;
  412. return 0;
  413. }
  414. /*************************************************
  415. * Free store obtained by get_substring_list *
  416. *************************************************/
  417. /* This function exists for the benefit of people calling PCRE from non-C
  418. programs that can call its functions, but not free() or (PUBL(free))()
  419. directly.
  420. Argument: the result of a previous pcre_get_substring_list()
  421. Returns: nothing
  422. */
  423. #if defined COMPILE_PCRE8
  424. PCRE_EXP_DEFN void PCRE_CALL_CONVENTION
  425. pcre_free_substring_list(const char **pointer)
  426. #elif defined COMPILE_PCRE16
  427. PCRE_EXP_DEFN void PCRE_CALL_CONVENTION
  428. pcre16_free_substring_list(PCRE_SPTR16 *pointer)
  429. #elif defined COMPILE_PCRE32
  430. PCRE_EXP_DEFN void PCRE_CALL_CONVENTION
  431. pcre32_free_substring_list(PCRE_SPTR32 *pointer)
  432. #endif
  433. {
  434. (PUBL(free))((void *)pointer);
  435. }
  436. /*************************************************
  437. * Copy captured string to new store *
  438. *************************************************/
  439. /* This function copies a single captured substring into a piece of new
  440. store
  441. Arguments:
  442. subject the subject string that was matched
  443. ovector pointer to the offsets table
  444. stringcount the number of substrings that were captured
  445. (i.e. the yield of the pcre_exec call, unless
  446. that was zero, in which case it should be 1/3
  447. of the offset table size)
  448. stringnumber the number of the required substring
  449. stringptr where to put a pointer to the substring
  450. Returns: if successful:
  451. the length of the string, not including the zero that
  452. is put on the end; can be zero
  453. if not successful:
  454. PCRE_ERROR_NOMEMORY (-6) failed to get store
  455. PCRE_ERROR_NOSUBSTRING (-7) substring not present
  456. */
  457. #if defined COMPILE_PCRE8
  458. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  459. pcre_get_substring(const char *subject, int *ovector, int stringcount,
  460. int stringnumber, const char **stringptr)
  461. #elif defined COMPILE_PCRE16
  462. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  463. pcre16_get_substring(PCRE_SPTR16 subject, int *ovector, int stringcount,
  464. int stringnumber, PCRE_SPTR16 *stringptr)
  465. #elif defined COMPILE_PCRE32
  466. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  467. pcre32_get_substring(PCRE_SPTR32 subject, int *ovector, int stringcount,
  468. int stringnumber, PCRE_SPTR32 *stringptr)
  469. #endif
  470. {
  471. int yield;
  472. pcre_uchar *substring;
  473. if (stringnumber < 0 || stringnumber >= stringcount)
  474. return PCRE_ERROR_NOSUBSTRING;
  475. stringnumber *= 2;
  476. yield = ovector[stringnumber+1] - ovector[stringnumber];
  477. substring = (pcre_uchar *)(PUBL(malloc))(IN_UCHARS(yield + 1));
  478. if (substring == NULL) return PCRE_ERROR_NOMEMORY;
  479. memcpy(substring, subject + ovector[stringnumber], IN_UCHARS(yield));
  480. substring[yield] = 0;
  481. #if defined COMPILE_PCRE8
  482. *stringptr = (const char *)substring;
  483. #elif defined COMPILE_PCRE16
  484. *stringptr = (PCRE_SPTR16)substring;
  485. #elif defined COMPILE_PCRE32
  486. *stringptr = (PCRE_SPTR32)substring;
  487. #endif
  488. return yield;
  489. }
  490. /*************************************************
  491. * Copy named captured string to new store *
  492. *************************************************/
  493. /* This function copies a single captured substring, identified by name, into
  494. new store. If the regex permits duplicate names, the first substring that is
  495. set is chosen.
  496. Arguments:
  497. code the compiled regex
  498. subject the subject string that was matched
  499. ovector pointer to the offsets table
  500. stringcount the number of substrings that were captured
  501. (i.e. the yield of the pcre_exec call, unless
  502. that was zero, in which case it should be 1/3
  503. of the offset table size)
  504. stringname the name of the required substring
  505. stringptr where to put the pointer
  506. Returns: if successful:
  507. the length of the copied string, not including the zero
  508. that is put on the end; can be zero
  509. if not successful:
  510. PCRE_ERROR_NOMEMORY (-6) couldn't get memory
  511. PCRE_ERROR_NOSUBSTRING (-7) no such captured substring
  512. */
  513. #if defined COMPILE_PCRE8
  514. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  515. pcre_get_named_substring(const pcre *code, const char *subject,
  516. int *ovector, int stringcount, const char *stringname,
  517. const char **stringptr)
  518. #elif defined COMPILE_PCRE16
  519. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  520. pcre16_get_named_substring(const pcre16 *code, PCRE_SPTR16 subject,
  521. int *ovector, int stringcount, PCRE_SPTR16 stringname,
  522. PCRE_SPTR16 *stringptr)
  523. #elif defined COMPILE_PCRE32
  524. PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
  525. pcre32_get_named_substring(const pcre32 *code, PCRE_SPTR32 subject,
  526. int *ovector, int stringcount, PCRE_SPTR32 stringname,
  527. PCRE_SPTR32 *stringptr)
  528. #endif
  529. {
  530. int n = get_first_set(code, stringname, ovector);
  531. if (n <= 0) return n;
  532. #if defined COMPILE_PCRE8
  533. return pcre_get_substring(subject, ovector, stringcount, n, stringptr);
  534. #elif defined COMPILE_PCRE16
  535. return pcre16_get_substring(subject, ovector, stringcount, n, stringptr);
  536. #elif defined COMPILE_PCRE32
  537. return pcre32_get_substring(subject, ovector, stringcount, n, stringptr);
  538. #endif
  539. }
  540. /*************************************************
  541. * Free store obtained by get_substring *
  542. *************************************************/
  543. /* This function exists for the benefit of people calling PCRE from non-C
  544. programs that can call its functions, but not free() or (PUBL(free))()
  545. directly.
  546. Argument: the result of a previous pcre_get_substring()
  547. Returns: nothing
  548. */
  549. #if defined COMPILE_PCRE8
  550. PCRE_EXP_DEFN void PCRE_CALL_CONVENTION
  551. pcre_free_substring(const char *pointer)
  552. #elif defined COMPILE_PCRE16
  553. PCRE_EXP_DEFN void PCRE_CALL_CONVENTION
  554. pcre16_free_substring(PCRE_SPTR16 pointer)
  555. #elif defined COMPILE_PCRE32
  556. PCRE_EXP_DEFN void PCRE_CALL_CONVENTION
  557. pcre32_free_substring(PCRE_SPTR32 pointer)
  558. #endif
  559. {
  560. (PUBL(free))((void *)pointer);
  561. }
  562. /* End of pcre_get.c */