blob: 3921e1ec0e67eefee69eb3f521fb66652e187a1a [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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>
Neale Ranns5e575b12016-10-03 09:40:25 +010042#include <vnet/ip/ip.h> // for feature registration
Ed Warnickecb9cada2015-12-08 15:45:58 -070043
44/* Global main structure. */
45ethernet_main_t ethernet_main;
46
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070047static void
48add_type (ethernet_main_t * em, ethernet_type_t type, char *type_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -070049{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070050 ethernet_type_info_t *ti;
Ed Warnickecb9cada2015-12-08 15:45:58 -070051 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
Neale Ranns5e575b12016-10-03 09:40:25 +010064/* Built-in ip4 tx feature path definition */
Damjan Marion8b3191e2016-11-09 19:54:20 +010065VNET_FEATURE_ARC_INIT (ethernet_output, static) =
Neale Ranns5e575b12016-10-03 09:40:25 +010066{
Damjan Marion8b3191e2016-11-09 19:54:20 +010067 .arc_name = "ethernet-output",
Dave Baracha25def72018-11-26 11:04:45 -050068 .last_in_arc = "error-drop",
Damjan Marion8b3191e2016-11-09 19:54:20 +010069 .start_nodes = VNET_FEATURES ("adj-l2-midchain"),
70 .arc_index_ptr = &ethernet_main.output_feature_arc_index,
71};
72
73VNET_FEATURE_INIT (ethernet_tx_drop, static) =
74{
75 .arc_name = "ethernet-output",
Neale Ranns5e575b12016-10-03 09:40:25 +010076 .node_name = "error-drop",
77 .runs_before = 0, /* not before any other features */
Neale Ranns5e575b12016-10-03 09:40:25 +010078};
Neale Ranns5e575b12016-10-03 09:40:25 +010079
80static clib_error_t *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070081ethernet_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -070082{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070083 ethernet_main_t *em = &ethernet_main;
Dave Barach1f49ed62016-02-24 11:29:06 -050084
Ed Warnickecb9cada2015-12-08 15:45:58 -070085 em->vlib_main = vm;
86
87 em->type_info_by_name = hash_create_string (0, sizeof (uword));
88 em->type_info_by_type = hash_create (0, sizeof (uword));
Dave Barach5fa45252020-02-26 10:27:08 -050089 /*
90 * System default ethernet interface MTU, configure via ethernet_config in
91 * interface.c if desired.
92 */
93 em->default_mtu = 9000;
Ed Warnickecb9cada2015-12-08 15:45:58 -070094
95#define ethernet_type(n,s) add_type (em, ETHERNET_TYPE_##s, #s);
96#include "types.def"
97#undef ethernet_type
98
Dave Barachf8d50682019-05-14 18:01:44 -040099 /*
100 * ethernet_input_init is effectively part of this function.
101 * Simply ensuring that it happens after we set up the hash tables
102 * is not sufficient.
103 */
104 ethernet_input_init (vm, em);
Damjan Marion8b3191e2016-11-09 19:54:20 +0100105 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106}
107
Dave Barachf8d50682019-05-14 18:01:44 -0400108VLIB_INIT_FUNCTION (ethernet_init) =
109{
110 /*
111 * Set up the L2 path before ethernet_init, or we'll wipe out the L2 ARP
112 * registration set up by ethernet_arp_init.
113 */
114 .init_order = VLIB_INITS("l2_init",
115 "ethernet_init",
116 "llc_init",
117 "vnet_feature_init"),
118};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700120ethernet_main_t *
121ethernet_get_main (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 return &ethernet_main;
124}
125
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700126/*
127 * fd.io coding-style-patch-verification: ON
128 *
129 * Local Variables:
130 * eval: (c-set-style "gnu")
131 * End:
132 */