Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft: detect/pcre: Remove shared pcre2 match objects #9241

Closed
wants to merge 4 commits into from

Commits on Jul 16, 2023

  1. classification: fix multi-tenant loading issues

    Move pcre2 data structures used for parsing into the detect engine
    context, so that multiple tenant loading threads don't use the same
    data structures.
    
    Bug: OISF#4797.
    victorjulien committed Jul 16, 2023
    Configuration menu
    Copy the full SHA
    2859eea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e2f4c75 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5e9f1bd View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. detect/pcre: Use local match variables

    pcre2 is not thread-safe wrt match objects so use locally scoped
    objects.
    
    Issue: 4797
    jlucovsky committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    f1cab60 View commit details
    Browse the repository at this point in the history