FD.io VPP  v21.06-3-gbb25fbf28
Vector Packet Processing
config.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 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  * config.h: feature configuration
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #ifndef included_vnet_config_h
41 #define included_vnet_config_h
42 
43 #include <vlib/vlib.h>
44 #include <vppinfra/heap.h>
45 
46 typedef struct
47 {
48  /* Features are prioritized by index. Smaller indices get
49  performed first. */
51 
52  /* VLIB node which performs feature. */
54 
55  /* Next index relative to previous node or main node. */
57 
58  /* Opaque per feature configuration data. */
61 
62 always_inline void
64 {
65  vec_free (f->feature_config);
66 }
67 
68 typedef struct
69 {
70  /* Sorted vector of features for this configuration. */
72 
73  /* Config string as vector for hashing. */
75 
76  /* Config string including all next indices and feature data as a vector. */
77  u32 config_string_heap_index, config_string_heap_handle;
78 
79  /* Index in main pool. */
81 
82  /* Number of interfaces/traffic classes that reference this config. */
85 
86 typedef struct
87 {
88  /* Pool of configs. Index 0 is always null config and is never deleted. */
90 
91  /* Hash table mapping vector config string to config pool index. */
93 
94  /* Global heap of configuration data. */
96 
97  /* Node index which starts/ends feature processing. */
98  u32 *start_node_indices, *end_node_indices_by_user_index,
100 
101  /* Interior feature processing nodes (not including start and end nodes). */
103 
104  /* vnet_config pool index by user index */
106 
107  /* Temporary vector for holding config strings. Used to avoid continually
108  allocating vectors. */
111 
112 always_inline void
114 {
116  vec_foreach (f, c->features) vnet_config_feature_free (f);
117  vec_free (c->features);
118  heap_dealloc (cm->config_string_heap, c->config_string_heap_handle);
119  vec_free (c->config_string_vector);
120 }
121 
122 always_inline void *
124  u32 * config_index, u32 * next_index, u32 n_data_bytes)
125 {
126  u32 i, n, *d;
127 
128  i = *config_index;
129 
130  d = heap_elt_at_index (cm->config_string_heap, i);
131 
132  n = round_pow2 (n_data_bytes, sizeof (d[0])) / sizeof (d[0]);
133 
134  /* Last 32 bits are next index. */
135  *next_index = d[n];
136 
137  /* Advance config index to next config. */
138  *config_index = (i + n + 1);
139 
140  /* Return config data to user for this feature. */
141  return (void *) d;
142 }
143 
146  char *start_node_names[],
147  int n_start_node_names,
148  char *feature_node_names[], int n_feature_node_names);
149 
150 void vnet_config_del (vnet_config_main_t * cm, u32 config_id);
151 
152 /* Calls to add/delete features from configurations. */
155  u32 config_id,
156  u32 feature_index,
157  void *feature_config,
158  u32 n_feature_config_bytes);
159 
162  u32 config_id,
163  u32 feature_index,
164  void *feature_config,
165  u32 n_feature_config_bytes);
166 
169  u32 config_string_heap_index,
170  u32 end_node_index);
171 
174  u32 config_index, u8 * s);
175 
176 #endif /* included_vnet_config_h */
177 
178 /*
179  * fd.io coding-style-patch-verification: ON
180  *
181  * Local Variables:
182  * eval: (c-set-style "gnu")
183  * End:
184  */
vlib.h
vnet_config_feature_t::feature_index
u32 feature_index
Definition: config.h:50
vnet_config_main_t::default_end_node_index
u32 default_end_node_index
Definition: config.h:99
vnet_config_main_t::node_index_by_feature_index
u32 * node_index_by_feature_index
Definition: config.h:102
next_index
nat44_ei_hairpin_src_next_t next_index
Definition: nat44_ei_hairpinning.c:412
vnet_config_feature_t::node_index
u32 node_index
Definition: config.h:53
f
vlib_frame_t * f
Definition: interface_output.c:1080
vnet_config_del_feature
u32 vnet_config_del_feature(vlib_main_t *vm, vnet_config_main_t *cm, u32 config_id, u32 feature_index, void *feature_config, u32 n_feature_config_bytes)
Definition: config.c:376
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
vnet_config_feature_t::feature_config
u32 * feature_config
Definition: config.h:59
vnet_config_add_feature
u32 vnet_config_add_feature(vlib_main_t *vm, vnet_config_main_t *cm, u32 config_id, u32 feature_index, void *feature_config, u32 n_feature_config_bytes)
Definition: config.c:307
vnet_config_t::features
vnet_config_feature_t * features
Definition: config.h:71
vnet_config_t::config_string_vector
u32 * config_string_vector
Definition: config.h:74
round_pow2
static uword round_pow2(uword x, uword pow2)
Definition: clib.h:279
vnet_config_t
Definition: config.h:68
vnet_config_format_features
u8 * vnet_config_format_features(vlib_main_t *vm, vnet_config_main_t *cm, u32 config_index, u8 *s)
c
svmdb_client_t * c
Definition: vpp_get_metrics.c:48
uword
u64 uword
Definition: types.h:112
vnet_config_init
void vnet_config_init(vlib_main_t *vm, vnet_config_main_t *cm, char *start_node_names[], int n_start_node_names, char *feature_node_names[], int n_feature_node_names)
Definition: config.c:168
vnet_config_modify_end_node
u32 vnet_config_modify_end_node(vlib_main_t *vm, vnet_config_main_t *cm, u32 config_string_heap_index, u32 end_node_index)
Definition: config.c:253
i
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:261
vnet_config_main_t::config_pool_index_by_user_index
u32 * config_pool_index_by_user_index
Definition: config.h:105
cm
vnet_feature_config_main_t * cm
Definition: nat44_ei_hairpinning.c:591
vnet_config_main_t::start_node_indices
u32 * start_node_indices
Definition: config.h:98
vnet_config_t::reference_count
u32 reference_count
Definition: config.h:83
vnet_config_feature_free
static void vnet_config_feature_free(vnet_config_feature_t *f)
Definition: config.h:63
heap_dealloc
__clib_export void heap_dealloc(void *v, uword handle)
Definition: heap.c:500
vnet_config_main_t::config_string_temp
u32 * config_string_temp
Definition: config.h:109
vec_free
#define vec_free(V)
Free vector's memory (no header).
Definition: vec.h:395
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
vnet_config_main_t
Definition: config.h:86
config_index
u32 config_index
Definition: interface_output.c:402
heap_elt_at_index
#define heap_elt_at_index(v, index)
Definition: heap.h:296
vnet_config_del
void vnet_config_del(vnet_config_main_t *cm, u32 config_id)
Definition: config.c:245
vnet_config_main_t::config_string_heap
u32 * config_string_heap
Definition: config.h:95
u32
unsigned int u32
Definition: types.h:88
vnet_config_feature_t::next_index
u32 next_index
Definition: config.h:56
vnet_config_t::index
u32 index
Definition: config.h:80
vec_foreach
#define vec_foreach(var, vec)
Vector iterator.
Definition: vec_bootstrap.h:213
vnet_config_main_t::config_string_hash
uword * config_string_hash
Definition: config.h:92
vnet_config_feature_t
Definition: config.h:46
vlib_main_t
Definition: main.h:102
u8
unsigned char u8
Definition: types.h:56
vnet_get_config_data
static void * vnet_get_config_data(vnet_config_main_t *cm, u32 *config_index, u32 *next_index, u32 n_data_bytes)
Definition: config.h:123
vnet_config_free
static void vnet_config_free(vnet_config_main_t *cm, vnet_config_t *c)
Definition: config.h:113
heap.h
vnet_config_main_t::config_pool
vnet_config_t * config_pool
Definition: config.h:89
vnet_config_t::config_string_heap_index
u32 config_string_heap_index
Definition: config.h:77