FD.io VPP  v20.09-64-g4f7b92f0a
Vector Packet Processing
adl.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016,2020 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef __vnet_adl_h__
17 #define __vnet_adl_h__
18 
19 #include <vlib/vlib.h>
20 #include <vnet/vnet.h>
21 #include <vnet/pg/pg.h>
22 
23 #include <vppinfra/error.h>
24 #include <vppinfra/hash.h>
25 #include <vnet/vnet.h>
26 #include <vnet/ip/ip.h>
27 #include <vnet/l2/l2_input.h>
28 #include <vnet/ethernet/ethernet.h>
29 #include <vnet/ip/ip4_packet.h>
30 #include <vnet/ip/ip6_packet.h>
31 
32 typedef enum {
37 } vnet_adl_t;
38 
39 typedef enum {
40  /* First check src address against allowlist */
44 
45  /* Pkts not otherwise dropped go to xxx-input */
49 
50  /* Going, going, gone... */
52 
55 
56 typedef struct {
60 
61 typedef struct {
64 
65 typedef struct {
66  adl_config_main_t adl_config_mains[VNET_N_ADLS];
67 
69 
70  /* convenience */
73 } adl_main_t;
74 
75 extern adl_main_t adl_main;
76 
78 
79 int adl_interface_enable_disable (u32 sw_if_index, int enable_disable);
80 
81 typedef struct {
88 
90 
91 /* Plugin private opaque union type */
92 typedef struct {
93  /* MUST be in sync with .../src/vnet/buffer.h */
100  /* end of must be in sync with .../src/vnet/buffer.h */
101  union
102  {
103  /* COP - configurable junk filter(s) */
104  struct
105  {
106  /* Current configuration index. */
108  } adl;
109  };
111 
112 #define adl_buffer(b) ((adl_buffer_opaque_t *) (b)->opaque)
113 
114 #endif /* __vnet_adl_h__ */
a
Definition: bitmap.h:538
i16 l3_hdr_offset
Definition: adl.h:96
unsigned char u8
Definition: types.h:56
Definition: adl.h:65
i16 l4_hdr_offset
Definition: adl.h:97
u16 msg_id_base
Definition: adl.h:68
u32 current_config_index
Definition: adl.h:107
unsigned int u32
Definition: types.h:88
vlib_main_t * vlib_main
Definition: adl.h:71
i16 l2_hdr_offset
Definition: adl.h:95
unsigned short u16
Definition: types.h:57
adl_main_t adl_main
Definition: adl.c:20
vnet_config_main_t config_main
Definition: adl.h:57
int adl_allowlist_enable_disable(adl_allowlist_enable_disable_args_t *a)
Definition: adl.c:233
int adl_interface_enable_disable(u32 sw_if_index, int enable_disable)
Definition: adl.c:169
u32 fib_index
Definition: adl.h:62
u8 feature_arc_index
Definition: adl.h:98
u32 * config_index_by_sw_if_index
Definition: adl.h:58
vlib_node_registration_t adl_input_node
(constructor) VLIB_REGISTER_NODE (adl_input_node)
Definition: node.c:259
struct _vlib_node_registration vlib_node_registration_t
adl_feature_type_t
Definition: adl.h:39
vnet_adl_t
Definition: adl.h:32
u8 dont_waste_me
Definition: adl.h:99
vnet_main_t * vnet_main
Definition: adl.h:72
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:33
signed short i16
Definition: types.h:46