Introduce composer/pcre (or similar) in order to handle preg_* functions failures

Created on 14 October 2022, over 2 years ago
Updated 18 March 2025, 18 days ago

Problem/Motivation

Inspired by the work and analysis taking place in 🐛 preg_split in _filter_url breaks for long html tags Fixed it becomes clear that testing codes as well as the actual codes from core would benefit from having type-safe preg_* replacements.

The silent failing of preg_* functions causes critical issues that are difficult (but not impossible) to figure out as well as capture in tests.

Steps to reproduce

@see 🐛 preg_split in _filter_url breaks for long html tags Fixed and !2862 mergeable

Proposed resolution

Scan and replace all preg_* function calls with their equivalent Composer\Pcre\Preg::* method
Additionally, update/extend tests that were trying to capture failures (based on FALSE/NULL return values) and can now expect a known exception.
An example @see the approach taken in the MR =>
!2865 mergeable

Remaining tasks

  1. Discuss the suggestion and try to figure out if another library or own code makes more sense
  2. Decide for this refactoring
  3. Add composer/pcre as a dependency
  4. Refactor test codes for exception expectation
  5. Refactor codes and replace preg_* function
📌 Task
Status

Active

Version

11.0 🔥

Component

composer

Created by

🇨🇭Switzerland stefanos.petrakis@gmail.com Biel, Switzerland

Live updates comments and jobs are added and updated live.
  • Security improvements

    It makes Drupal less vulnerable to abuse or misuse. Note, this is the preferred tag, though the Security tag has a large body of issues tagged to it. Do NOT publicly disclose security vulnerabilities; contact the security team instead. Anyone (whether security team or not) can apply this tag to security improvements that do not directly present a vulnerability e.g. hardening an API to add filtering to reduce a common mistake in contributed modules.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇫🇷France prudloff Lille

    Adding the "Security improvements" tag because I think this would make it a bit easier to prevent some ReDos vulnerabilities (because reaching the backtrack limit would now trigger an exception that can be catched instead of retuning NULL silently, which can sometimes be dangerous depending on where this NULL result is then used).

Production build 0.71.5 2024