adl: move allow/deny list function to plugin
[vpp.git] / src / plugins / adl / adl.h
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 {
33   VNET_ADL_IP4,
34   VNET_ADL_IP6,
35   VNET_ADL_DEFAULT,
36   VNET_N_ADLS,
37 } vnet_adl_t;
38
39 typedef enum {
40   /* First check src address against allowlist */
41   IP4_RX_ADL_ALLOWLIST,
42   IP6_RX_ADL_ALLOWLIST,
43   DEFAULT_RX_ADL_ALLOWLIST,
44
45   /* Pkts not otherwise dropped go to xxx-input */
46   IP4_RX_ADL_INPUT,
47   IP6_RX_ADL_INPUT,
48   DEFAULT_RX_ADL_INPUT,
49
50   /* Going, going, gone... */
51   RX_ADL_DROP,
52
53   ADL_RX_N_FEATURES,
54 } adl_feature_type_t;
55
56 typedef struct {
57   vnet_config_main_t config_main;
58   u32 * config_index_by_sw_if_index;
59 } adl_config_main_t;
60
61 typedef struct {
62   u32 fib_index;
63 } adl_config_data_t;
64
65 typedef struct {
66   adl_config_main_t adl_config_mains[VNET_N_ADLS];
67
68   u16 msg_id_base;
69
70   /* convenience */
71   vlib_main_t * vlib_main;
72   vnet_main_t * vnet_main;
73 } adl_main_t;
74
75 extern adl_main_t adl_main;
76
77 extern vlib_node_registration_t adl_input_node;
78
79 int adl_interface_enable_disable (u32 sw_if_index, int enable_disable);
80
81 typedef struct {
82   u32 sw_if_index;
83   u8 ip4;
84   u8 ip6;
85   u8 default_adl;
86   u32 fib_id;
87 } adl_allowlist_enable_disable_args_t;
88
89 int adl_allowlist_enable_disable (adl_allowlist_enable_disable_args_t *a);
90
91 /* Plugin private opaque union type */
92 typedef struct {
93     /* MUST be in sync with .../src/vnet/buffer.h */
94     u32 sw_if_index[VLIB_N_RX_TX];
95     i16 l2_hdr_offset;
96     i16 l3_hdr_offset;
97     i16 l4_hdr_offset;
98     u8 feature_arc_index;
99     u8 dont_waste_me;
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. */
107             u32 current_config_index;
108         } adl;
109     };
110 } adl_buffer_opaque_t;
111
112 #define adl_buffer(b) ((adl_buffer_opaque_t *) (b)->opaque)
113
114 #endif /* __vnet_adl_h__ */