bpf_trace_filter: plugin for BPF Trace Filtering
[vpp.git] / src / plugins / bpf_trace_filter / bpf_trace_filter.h
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2023 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #ifndef _BPF_TRACE_FILTER_H_
19 #define _BPF_TRACE_FILTER_H_
20 #include <vlib/vlib.h>
21 #include <pcap.h>
22 typedef struct
23 {
24   pcap_t *pcap;
25   u16 msg_id_base;
26   u8 prog_set;
27   struct bpf_program prog;
28 } bpf_trace_filter_main_t;
29
30 extern bpf_trace_filter_main_t bpf_trace_filter_main;
31 clib_error_t *bpf_trace_filter_set_unset (const char *bpf_expr, u8 is_del);
32 #endif /* _BPF_TRACE_FILTER_H_ */
33
34 /*
35  * fd.io coding-style-patch-verification: ON
36  *
37  * Local Variables:
38  * eval: (c-set-style "gnu")
39  * End:
40  */