blob: cd4386ebdca7b0c1c5242822d76aac5bb0efc62e [file] [log] [blame]
Damjan Marion22311502016-10-28 20:30:15 +02001/*
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
Damjan Marion7dc41462016-11-15 19:47:58 +010016#include <vnet/vnet.h>
Damjan Marion51327ac2016-11-09 11:59:42 +010017#include <vnet/devices/devices.h>
Damjan Marion22311502016-10-28 20:30:15 +020018#include <vnet/feature/feature.h>
Damjan Marion7dc41462016-11-15 19:47:58 +010019#include <vnet/ip/ip.h>
20#include <vnet/ethernet/ethernet.h>
Damjan Marion22311502016-10-28 20:30:15 +020021
Damjan Marion51327ac2016-11-09 11:59:42 +010022static uword
23device_input_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
24 vlib_frame_t * frame)
25{
26 return 0;
27}
28
Damjan Marion22311502016-10-28 20:30:15 +020029/* *INDENT-OFF* */
Damjan Marion51327ac2016-11-09 11:59:42 +010030VLIB_REGISTER_NODE (device_input_node) = {
31 .function = device_input_fn,
32 .name = "device-input",
33 .type = VLIB_NODE_TYPE_INPUT,
34 .state = VLIB_NODE_STATE_DISABLED,
35 .n_next_nodes = VNET_DEVICE_INPUT_N_NEXT_NODES,
36 .next_nodes = VNET_DEVICE_INPUT_NEXT_NODES,
37};
38
Damjan Marion7dc41462016-11-15 19:47:58 +010039/* Table defines how much we need to advance current data pointer
40 in the buffer if we shortcut to l3 nodes */
41
42const u32 __attribute__((aligned (CLIB_CACHE_LINE_BYTES)))
43device_input_next_node_advance[((VNET_DEVICE_INPUT_N_NEXT_NODES /
44 CLIB_CACHE_LINE_BYTES) +1) * CLIB_CACHE_LINE_BYTES] =
45{
46 [VNET_DEVICE_INPUT_NEXT_IP4_INPUT] = sizeof (ethernet_header_t),
Sergio Gonzalez Monroy767b2f52016-12-20 15:20:32 +000047 [VNET_DEVICE_INPUT_NEXT_IP4_NCS_INPUT] = sizeof (ethernet_header_t),
Damjan Marion7dc41462016-11-15 19:47:58 +010048 [VNET_DEVICE_INPUT_NEXT_IP6_INPUT] = sizeof (ethernet_header_t),
49 [VNET_DEVICE_INPUT_NEXT_MPLS_INPUT] = sizeof (ethernet_header_t),
50};
51
Dave Barach9f6186e2016-11-08 12:12:12 -050052VNET_FEATURE_ARC_INIT (device_input, static) =
53{
Damjan Marion22311502016-10-28 20:30:15 +020054 .arc_name = "device-input",
Damjan Marion51327ac2016-11-09 11:59:42 +010055 .start_nodes = VNET_FEATURES ("device-input"),
Damjan Marion21da6ce2016-11-28 18:21:59 +010056 .end_node = "ethernet-input",
Damjan Marion8b3191e2016-11-09 19:54:20 +010057 .arc_index_ptr = &feature_main.device_input_feature_arc_index,
Damjan Marion22311502016-10-28 20:30:15 +020058};
59
60VNET_FEATURE_INIT (l2_patch, static) = {
61 .arc_name = "device-input",
62 .node_name = "l2-patch",
63 .runs_before = VNET_FEATURES ("ethernet-input"),
64};
65
66VNET_FEATURE_INIT (worker_handoff, static) = {
67 .arc_name = "device-input",
68 .node_name = "worker-handoff",
69 .runs_before = VNET_FEATURES ("ethernet-input"),
70};
71
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010072VNET_FEATURE_INIT (span_input, static) = {
73 .arc_name = "device-input",
74 .node_name = "span-input",
75 .runs_before = VNET_FEATURES ("ethernet-input"),
76};
77
Damjan Marion22311502016-10-28 20:30:15 +020078VNET_FEATURE_INIT (ethernet_input, static) = {
79 .arc_name = "device-input",
80 .node_name = "ethernet-input",
81 .runs_before = 0, /* not before any other features */
82};
83/* *INDENT-ON* */
84
85/*
86 * fd.io coding-style-patch-verification: ON
87 *
88 * Local Variables:
89 * eval: (c-set-style "gnu")
90 * End:
91 */