Jason Ish
3dc8b154f3
rust/ffi: add safe thread storage wrapper
...
Add a typed ThreadStorage<T> wrapper around the thread storage bindings.
Ticket: #8445
1 month ago
Jason Ish
5e0abf1572
rust/ffi: use ThreadVars wrapper in flow callbacks
...
Update the flow init, update and finish callback registrations to pass the
safe ThreadVars wrapper instead of a raw pointer.
Ticket: #8598
1 month ago
Jason Ish
1cac242948
rust/ffi: use ThreadVars wrapper in eve callback
...
Update the EVE callback registration to pass the safe ThreadVars wrapper
instead of a raw pointer.
Ticket: #8598
1 month ago
Jason Ish
45762aa644
rust/ffi: use ThreadVars wrapper in thread init callback
...
Update the thread init callback registration to pass the safe ThreadVars
wrapper instead of a raw pointer.
Ticket: #8598
1 month ago
Jason Ish
144f824f17
rust/ffi: add thread init callback wrapper
...
Ticket: #8605
1 month ago
Jason Ish
e1a2a36ee7
examples/plugins/rust: misc cleanups
...
- Remove registration helper
- Limit function visibility
1 month ago
Philippe Antoine
5db471500c
rust/ffi: remove altemplate plugin last dependency on suricata crate
...
Ticket: 7666
2 months ago
Jason Ish
5e2a33d080
examples: add flow callbacks to rust plugin example
...
Ticket: #8446
2 months ago
Philippe Antoine
5ed394b26b
rust/ffi: move AppLayerEvent to ffi
...
Ticket: 7666
2 months ago
Philippe Antoine
9b12fd9f09
rust/ffi: move helper trait state_get_tx_iterator to ffi
...
Ticket: 7666
2 months ago
Philippe Antoine
07f37676b6
rust/ffi: move Flags for AppLayerParserState to ffi crate
...
Ticket: 7666
2 months ago
Philippe Antoine
fb20c69d8d
rust/ffi: move APP_LAYER_PARSER_OPT_X const to ffi crate
...
Ticket: 7666
2 months ago
Philippe Antoine
9677851637
rust/ffi: move app-layer traits to ffi crate
...
Ticket: 7666
Traits around structures defined in C and bindgened to rust
3 months ago
Philippe Antoine
f803c25f24
rust/ffi: move export_X_data_get macros to ffi crate
...
Ticket: 7666
3 months ago
Jason Ish
f5bf76c0ee
examples/plugins/rust: add a rust example plugin
...
Only demonstrates EVE callbacks for now, but I plan to turn this into a
show case of a variety of callbacks a Rust plugin can do as we add Rust
bindings to the ffi crate.
3 months ago
Philippe Antoine
58a71d94b0
rust/ffi: move conf_get helper to ffi crate
...
Ticket: 7666
3 months ago
Philippe Antoine
c53b9df5a2
rust/ffi: move detection helpers to ffi crate
...
Ticket: 7666
3 months ago
Philippe Antoine
f61247e846
plugin: remove one small suricata crate dependency
4 months ago
Philippe Antoine
267c3baff7
rust/ffi: move STREAM_ constants to ffi crate
...
Ticket: 7666
reexport them in suricata crate
cbindgen them to C
4 months ago
Philippe Antoine
d77c43c79b
rust/ffi: move build_slice macro to ffi crate
...
Ticket: 7666
4 months ago
Philippe Antoine
4a0143c8d4
rust/ffi: move cast_pointer macro to ffi crate
...
Ticket: 7666
4 months ago
Philippe Antoine
71b59f6dbe
rust/ffi: move IPPROTO_TCP to ffi
...
and reexport in suricata
Allows to reduce dependencies to full suricata crate
Ticket: 7666
5 months ago
Philippe Antoine
2a90cef318
plugin: reduce dependency on suricata crate
...
Ticket: 7666
The end goal is to remove all dependencies on suricata and just
use suricata_sys or suricata_ffi
For now, make usage of what is already available
5 months ago
Jason Ish
d230a760e6
examples/altemplate: update to use jsonbuilder from ffi crate
5 months ago
Jason Ish
f79158ae55
rust/sys: generate jsonbuilder bindings in sys
...
Bindgen the Rust bindings to the C JsonBuilder API along with the rest
of the Rust bindings to C. Breaking it out was probably the wrong
idea.
This should make it easier, and more correct to bindgen C functions
that use SCJsonBuilder types.
5 months ago
Jason Ish
8e3bd1ca55
examples/altemplate: use suricata-ffi for logging macros
5 months ago
Philippe Antoine
364d2c077d
rust: bindgen SCAppLayerRegisterParser
...
Ticket: 7662
5 months ago
Philippe Antoine
c960b7d7c1
app-layer: AppLayerParserFPtr uses a mut pointer to local storage
...
So, fix the fn prototype in rust ParseFn
6 months ago
Philippe Antoine
455b7d1b3b
rust: use snake case for applayer_register_protocol_detection
7 months ago
Victor Julien
46203de0e9
doc: adjust for master to main rename
10 months ago
Philippe Antoine
6dbc421825
rust: bindgen AppLayerParserConfParserEnabled
...
Ticket: 7667
1 year ago
Philippe Antoine
49b2a2be5d
rust: bindgen SCAppLayerParserRegisterLogger
...
Ticket: 7667
1 year ago
Philippe Antoine
b29d46d81f
rust: bindgen SCAppLayerParserStateIssetFlag
...
Ticket: 7667
1 year ago
Jason Ish
25e32f4f7a
output: delayed initialization for custom loggers
...
When a plugin is first initialized, it is too early to register
transaction loggers. Instead, a plugin can register a callback to be
called when Suricata is ready for outputs like transaction loggers to
be registered.
Likewise for library users, there is a window in SuricataInit where
transaction loggers can be registered that library users don't have
access to. So a lifecycle callback useful here as well.
Ticket #7236
1 year ago
Philippe Antoine
7bb0c94ae9
rust: bindgen app-layer-detect-proto.h
...
Ticket: 7667
1 year ago
Philippe Antoine
f2e7309bbb
rust: use bindgened Flow definition
...
Ticket: 7667
1 year ago
Philippe Antoine
78034b218d
rust: bindgen SCDetectSignatureSetAppProto
...
Ticket: 7667
1 year ago
Philippe Antoine
dc20129195
rust: bindgen SCDetectHelperBufferMpmRegister
...
Ticket: 7667
1 year ago
Philippe Antoine
e2603fa820
detect/single-buf: new simple wrapper
...
Introduce DetectGetSingleData which does the generic wrapping,
including the transforms, using a new callback prototype
DetectTxGetBufferPtr
The goal is to replace most InspectionBufferGetDataPtr.
For this commit, we do not change every callback to keep the
change relatively small.
Focus here is to remove DetectHelperGetData as its functionality is
provided more directly by the new DetectTxGetBufferPtr.
1 year ago
Jason Ish
14864d49ac
examples/altemplate: remove rs_ naming
1 year ago
Philippe Antoine
033e0480cf
detect/single-buf: helper with more explicit direction
1 year ago
Philippe Antoine
dadf9012fc
rust: bindgen detect-engine-buffer.h
...
Ticket: 7667
And prefix SCDetectBufferSetActiveList to be exported
Allows less use of suricata crate in plugin as we get the functions
prototypes from suricata_sys and they are more correct.
1 year ago
Philippe Antoine
a6392ac5d4
rust: use pure rust helper for registering sticky buffers
...
Mark sdp and sip keywords with flags SIGMATCH_INFO_STICKY_BUFFER
as a side effect.
1 year ago
Philippe Antoine
9c8ec0d3a9
plugin: applayer: do not use suricata JsonError
...
We do not need a specific error type
1 year ago
Philippe Antoine
96afdce283
detect: rename SCSigTableElmt to SCSigTableAppLiteElmt
1 year ago
Philippe Antoine
5e87b6bd51
plugin: add in-tree app-layer template plugin for testing
...
Ticket: 7151
Ticket: 7152
Ticket: 7154
1 year ago
Jason Ish
22b77b0c56
conf: prefix conf API with SC
1 year ago
Jason Ish
461e9110b6
examples/lib: use packet setter functions
...
Instead of direct field access.
Ticket: #7240
1 year ago
Philippe Antoine
c164cfcf6b
plugins: check version for all plugins
1 year ago
Jason Ish
83b1e40028
examples/plugin: update to find generated rust header
...
Needed for changes to output-eve.h.
2 years ago