Philip Hazel
1c41a5b815
Fix minor issues raised by Clang sanitize
2021-12-14 15:52:24 +00:00
Philip Hazel
30abd0ac8d
Documentation for Bidi_Control and Bidi_Class
2021-12-08 16:37:34 +00:00
Philip Hazel
4ef0c51d2b
Interpret NULL pointer, zero length as an empty string for subjects and replacements.
2021-11-30 16:34:39 +00:00
Carlo Marcelo Arenas Belón
ae4e6261e5
match: avoid crash if subject NULL and PCRE2_ZERO_TERMINATED ( #53 )
...
* pcre2_match: avoid crash if subject NULL and PCRE2_ZERO_TERMINATED
When length of subject is PCRE2_ZERO_TERMINATED strlen is used
to calculate its size, which will trigger a crash if subject is
also NULL.
Move the NULL check before strlen on it would be used, and make
sure or dependent variables are set after the NULL validation
as well.
While at it, fix a typo in a debug flag in the same file, which
is otherwise unrelated and make sure the full section of constrain
checks can be identified clearly using the leading comment alone.
* pcre2_dfa_match: avoid crash if subject NULL and PCRE2_ZERO_TERMINATED
When length of subject is PCRE2_ZERO_TERMINATED strlen is used
to calculate its size, which will trigger a crash if subject is
also NULL.
Move the NULL check before the detection for subject sizes to
avoid this issue.
* pcre2_substitute: avoid crash if subject or replacement are NULL
The underlying pcre2_match() function will validate the subject if
needed, but will crash when length is PCRE2_ZERO_TERMINATED or if
subject == NULL and pcre2_match() is not being called because
match_data was provided.
The replacement parameter is missing NULL checks, and so currently
allows for an equivalent response to "" if rlength == 0.
Restrict all other cases to avoid strlen(NULL) crashes in the same
way that is done for subject, but also make sure to reject invalid
length values as early as possible.
2021-11-27 16:49:31 +00:00
Carlo Marcelo Arenas Belón
587b94277b
doc: formatting/typo fixes to documentation ( #47 )
...
* doc: fix incorrect use of JOIN and typo
Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
* doc: reformat of pcre2_substitute to align options
includes some rewording to fit better in an 80 char wide troff output.
Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
* doc: update names to pcre2
2021-11-27 16:27:49 +00:00
Philip Hazel
072717a61f
Fix very minor typos in documentation: redundant spaces.
2021-10-30 11:25:12 +01:00
Philip Hazel
8f3e11a355
Doc file tidies for 10.38-RC1
2021-08-31 17:14:42 +01:00
Philip Hazel
21c26698b3
Lock out \K in lookaround assertions by default, but provide an option to
...
re-enable the old behaviour, just in case.
2021-08-30 16:57:44 +01:00
Philip Hazel
6c2fe9da99
Documentation update to clarify ovector usage with DFA matching.
2021-08-28 16:25:59 +01:00
Philip.Hazel
d70da76dfb
Fix some documentation typos.
2021-06-14 10:53:18 +00:00
Philip.Hazel
000bbf2ea7
File tidies for 10.36-RC1
2020-11-06 17:27:35 +00:00
Philip.Hazel
dc426be88e
Documentation update
2020-11-04 17:01:13 +00:00
Philip.Hazel
deffc391ce
Documentation update.
2020-10-05 16:52:39 +00:00
Philip.Hazel
d4e4533240
Fix documentation typos and upgrade documentation checking script.
2020-04-24 16:05:36 +00:00
Philip.Hazel
8b3f8af535
File tidies for 10.35-RC1 release candidate.
2020-04-15 16:34:36 +00:00
Philip.Hazel
8057c3c8b9
Renamed dftables as pcre2_dftables and enable it to write the tables in binary.
...
Update documentation about character tables.
2020-03-20 18:09:59 +00:00
Philip.Hazel
4e8f13cbd6
Documentation for PCRE2_UCP handling of upper/lower casing.
2020-02-24 16:35:15 +00:00
Philip.Hazel
a57787b7cd
Fix problems with new PCRE2_SUBSTITUTE_MATCHED code.
2020-02-16 17:46:40 +00:00
Philip.Hazel
e8d70e2459
Implement PCRE2_SUBSTITUTE_REPLACEMENT_ONLY.
2020-01-22 17:50:12 +00:00
Philip.Hazel
d170829b26
Implement PCRE2_SUBSTITUTE_MATCHED.
2019-12-27 13:35:17 +00:00
Philip.Hazel
f3fd8b18cb
Implement PCRE2_SUBSTITUTE_LITERAL.
2019-12-26 14:53:24 +00:00
Philip.Hazel
ae9208ab7b
Source tidies (trailing spaces) etc. for 10.34-RC1.
2019-10-17 16:39:38 +00:00
Philip.Hazel
3787601f81
Fix typo.
2019-09-26 16:10:30 +00:00
Philip.Hazel
963b570fd0
Back off failed attempt to handle nested lookbehinds for estimating how much of
...
a partial match to retain for multi-segment matching. Document the current
difficulty if the whole first segment cannot be retained.
2019-09-04 18:14:54 +00:00
Philip.Hazel
0970ae4195
Add the pcre2_maketables_free() function.
2019-09-03 14:16:07 +00:00
Philip.Hazel
ec6191cd7f
Documentation update and ensure current pcre2.h.generic.
2019-08-01 16:49:09 +00:00
Philip.Hazel
9319b5bb83
Correct tables argument data type for pcre2_set_character_tables() and fix
...
documentation for pcre2_maketables().
2019-07-28 15:58:24 +00:00
Philip.Hazel
3572634086
More partial match tweaks.
2019-07-22 16:30:44 +00:00
Philip.Hazel
f7e21162fa
Documentation typo fixes.
2019-07-22 11:05:19 +00:00
Philip.Hazel
c84a06c96e
Update definition of partial match and fix \z and \Z (as documented).
2019-07-21 16:48:13 +00:00
Philip.Hazel
d21f7daf9b
Improve maximum lookbehind calculation for nested lookbehinds.
2019-06-25 15:40:42 +00:00
Philip.Hazel
1f6b9097f4
Minor improvement to minimum length calculation.
2019-06-13 16:00:11 +00:00
Philip.Hazel
16d47a9cb1
Documentation update.
2019-05-30 15:43:05 +00:00
Philip.Hazel
16c046ce50
Implement support for invalid UTF in the pcre2_match() interpreter.
2019-05-24 17:15:48 +00:00
Philip.Hazel
7375089fa5
More file tidies for 10.33-RC1
2019-03-04 18:07:04 +00:00
Philip.Hazel
740a9792dd
Fix two identical documentation typos.
2019-02-14 16:07:14 +00:00
Philip.Hazel
8c8deae8eb
Implement PCRE2_EXTRA_ALT_BSUX to support ECMAscript 6's \u{hhh..} syntax.
2019-02-12 17:50:19 +00:00
Philip.Hazel
d7b10a57d1
Allow non-ASCII in group names when UTF is set; revise group naming terminology
...
in documentation to use "capture group", as Perl does.
2019-02-06 18:11:36 +00:00
Philip.Hazel
7de013bac3
Fix issues with BAD_ESCAPE_IS_LITERAL in character classes.
2019-01-04 16:41:32 +00:00
Philip.Hazel
d7bc79b140
Documentation typo.
2018-12-14 16:10:57 +00:00
Philip.Hazel
e7a762ddff
Documentation update.
2018-11-27 16:41:20 +00:00
Philip.Hazel
9bc81d5229
Upgrade the as yet unreleased substitute callout facility.
2018-11-12 16:02:01 +00:00
Philip.Hazel
8a0dd8955a
Set subject field in match data to NULL after failed match.
2018-10-19 15:31:16 +00:00
Philip.Hazel
4642f82ba7
Fix typo.
2018-10-17 16:44:22 +00:00
Philip.Hazel
f90ce1a333
Implement PCRE2_COPY_MATCHED_SUBJECT.
2018-10-17 08:33:38 +00:00
Philip.Hazel
69254c77f1
Implement PCRE2_EXTRA_ESCAPED_CR_IS_LF
2018-09-21 16:59:48 +00:00
Philip.Hazel
a69267246f
Implement callouts from pcre2_substitute().
2018-09-18 16:31:30 +00:00
Philip.Hazel
bf3c7c68ec
Final file tidies for 10.32
2018-09-11 14:27:39 +00:00
Philip.Hazel
3e6f016907
Documentation update.
2018-09-07 15:56:36 +00:00
Philip.Hazel
50f0de6015
Lock out \N{U+hhhh} in non-UTF (non-Unicode) modes.
2018-09-02 16:03:27 +00:00