FD.io VPP  v16.12-rc0-308-g931be3a
Vector Packet Processing
init.c
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  * ethernet_init.c: ethernet initialization
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 #include <vlib/vlib.h>
41 #include <vnet/ethernet/ethernet.h>
42 #include <vnet/ip/ip.h> // for feature registration
43 
44 /* Global main structure. */
46 
47 static void
48 add_type (ethernet_main_t * em, ethernet_type_t type, char *type_name)
49 {
51  u32 i;
52 
53  vec_add2 (em->type_infos, ti, 1);
54  i = ti - em->type_infos;
55 
56  ti->name = type_name;
57  ti->type = type;
58  ti->next_index = ti->node_index = ~0;
59 
60  hash_set (em->type_info_by_type, type, i);
61  hash_set_mem (em->type_info_by_name, ti->name, i);
62 }
63 
64 static char *feature_start_nodes[] = {
65  "adj-l2-midchain",
66 };
67 
68 /* Built-in ip4 tx feature path definition */
69 /* *INDENT-OFF* */
70 VNET_ETHERNET_TX_FEATURE_INIT (ethernet_tx_drop, static) =
71 {
72  .node_name = "error-drop",
73  .runs_before = 0, /* not before any other features */
74  .feature_index = &ethernet_main.ethernet_tx_feature_drop,
75 };
76 /* *INDENT-ON* */
77 
78 static clib_error_t *
80 {
82  &ethernet_main.feature_config_mains[VNET_IP_TX_FEAT];
83  vnet_config_main_t *vcm = &cm->config_main;
84 
85  return (vnet_feature_arc_init (vm, vcm,
88  ethernet_main.next_feature[VNET_IP_TX_FEAT],
89  &ethernet_main.feature_nodes
90  [VNET_IP_TX_FEAT]));
91 }
92 
93 static clib_error_t *
95 {
97  clib_error_t *error;
98 
99  /*
100  * Set up the L2 path now, or we'll wipe out the L2 ARP
101  * registration set up by ethernet_arp_init.
102  */
103  if ((error = vlib_call_init_function (vm, l2_init)))
104  return error;
105 
106  em->vlib_main = vm;
107 
108  em->type_info_by_name = hash_create_string (0, sizeof (uword));
109  em->type_info_by_type = hash_create (0, sizeof (uword));
110 
111 #define ethernet_type(n,s) add_type (em, ETHERNET_TYPE_##s, #s);
112 #include "types.def"
113 #undef ethernet_type
114 
115  if ((error = vlib_call_init_function (vm, llc_init)))
116  return error;
117  if ((error = vlib_call_init_function (vm, ethernet_input_init)))
118  return error;
119 
120  return (ethernet_feature_init (vm));
121 }
122 
124 
127 {
129  return &ethernet_main;
130 }
131 
132 /*
133  * fd.io coding-style-patch-verification: ON
134  *
135  * Local Variables:
136  * eval: (c-set-style "gnu")
137  * End:
138  */
vnet_config_main_t config_main
Definition: feature.h:55
vnet_feature_config_main_t feature_config_mains[VNET_N_IP_FEAT]
per-interface features
Definition: ethernet.h:267
static clib_error_t * ethernet_input_init(vlib_main_t *vm)
Definition: node.c:1152
#define hash_set(h, key, value)
Definition: hash.h:254
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:343
static char * feature_start_nodes[]
Definition: init.c:64
vlib_main_t * vlib_main
Definition: ethernet.h:230
bad routing header type(not 4)") sr_error (NO_MORE_SEGMENTS
ethernet_type_t
Definition: packet.h:43
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:521
#define hash_set_mem(h, key, value)
Definition: hash.h:274
uword * type_info_by_name
Definition: ethernet.h:248
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
#define vlib_call_init_function(vm, x)
Definition: init.h:161
vnet_feature_registration_t * next_feature[VNET_N_IP_FEAT]
Feature path configuration lists.
Definition: ethernet.h:270
#define hash_create_string(elts, value_bytes)
Definition: hash.h:652
ethernet_main_t ethernet_main
Definition: init.c:45
clib_error_t * vnet_feature_arc_init(vlib_main_t *vm, vnet_config_main_t *vcm, char **feature_start_nodes, int num_feature_start_nodes, vnet_feature_registration_t *first_reg, char ***feature_nodes)
Initialize a feature graph arc.
Definition: registration.c:127
static clib_error_t * ethernet_init(vlib_main_t *vm)
Definition: init.c:94
#define ARRAY_LEN(x)
Definition: clib.h:59
#define hash_create(elts, value_bytes)
Definition: hash.h:658
unsigned int u32
Definition: types.h:88
ethernet_type_t type
Definition: ethernet.h:139
VNET_ETHERNET_TX_FEATURE_INIT(ethernet_tx_drop, static)
char ** feature_nodes[VNET_N_IP_FEAT]
Save results for show command.
Definition: ethernet.h:273
static clib_error_t * llc_init(vlib_main_t *vm)
Definition: llc.c:211
clib_error_t * l2_init(vlib_main_t *vm)
Definition: l2_input.c:1144
u64 uword
Definition: types.h:112
u32 ethernet_tx_feature_drop
feature node indicies
Definition: ethernet.h:276
uword * type_info_by_type
Definition: ethernet.h:248
ethernet_main_t * ethernet_get_main(vlib_main_t *vm)
Definition: init.c:126
static void add_type(ethernet_main_t *em, ethernet_type_t type, char *type_name)
Definition: init.c:48
static clib_error_t * ethernet_feature_init(vlib_main_t *vm)
Definition: init.c:79
ethernet_type_info_t * type_infos
Definition: ethernet.h:245