Project

General

Profile

Actions

Optimization #4154

closed

Task #4772: tracking: parity between fields logged and fields available for detection

Feature #4153: app-layer: rust derive style macros to generate common code

Rust Parsers: Abstract AppLayer events to a derive macro

Added by Jason Ish almost 4 years ago. Updated about 3 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
Effort:
Difficulty:
Label:

Description

Most parsers duplicate code to deal with application layer events. Instead, a parser should be able to define the events in an enum and have the rest of the code generated via a derive macro.

For example, given an enum like:

#[derive(Debug, PartialEq, AppLayerEvent)]
pub enum DNSEvent {
    MalformedData,
    NotRequest,
    NotResponse,
    ZFlagSet,
}

the following utility functions will be generated:

  • from_id
  • as_i32
  • to_cstring
  • from_cstring
  • get_event_info
  • get_event_info_by_id
Actions #1

Updated by Jason Ish almost 4 years ago

  • Related to Feature #4153: app-layer: rust derive style macros to generate common code added
Actions #3

Updated by Victor Julien almost 4 years ago

  • Target version set to 7.0.0-beta1
Actions #4

Updated by Victor Julien about 3 years ago

  • Status changed from Assigned to In Progress
Actions #5

Updated by Victor Julien about 3 years ago

  • Parent task set to #4153
Actions #6

Updated by Jason Ish about 3 years ago

  • Status changed from In Progress to In Review
Actions #7

Updated by Jason Ish about 3 years ago

  • Status changed from In Review to Feedback

Merged into master. No backports required.

Actions #8

Updated by Jason Ish about 3 years ago

  • Status changed from Feedback to Closed
Actions

Also available in: Atom PDF