blob: ee380bebbde527cfb1a9b225c14a5bcfa24ce21e [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 Marion8973b072022-03-01 15:51:18 +010021#include <vlib/stats/stats.h>
Damjan Marion22311502016-10-28 20:30:15 +020022
Damjan Marionb3bb1012017-02-28 21:55:28 +010023vnet_device_main_t vnet_device_main;
24
Damjan Marion51327ac2016-11-09 11:59:42 +010025static uword
26device_input_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
27 vlib_frame_t * frame)
28{
29 return 0;
30}
31
Damjan Marion51327ac2016-11-09 11:59:42 +010032VLIB_REGISTER_NODE (device_input_node) = {
33 .function = device_input_fn,
34 .name = "device-input",
Mohammed Hawarib85b0df2021-01-08 17:19:09 +010035 .runtime_data_bytes = sizeof (vnet_hw_if_rx_node_runtime_t),
Damjan Marion51327ac2016-11-09 11:59:42 +010036 .type = VLIB_NODE_TYPE_INPUT,
37 .state = VLIB_NODE_STATE_DISABLED,
38 .n_next_nodes = VNET_DEVICE_INPUT_N_NEXT_NODES,
39 .next_nodes = VNET_DEVICE_INPUT_NEXT_NODES,
40};
41
Dave Barach9f6186e2016-11-08 12:12:12 -050042VNET_FEATURE_ARC_INIT (device_input, static) =
43{
Damjan Marion22311502016-10-28 20:30:15 +020044 .arc_name = "device-input",
Damjan Marion51327ac2016-11-09 11:59:42 +010045 .start_nodes = VNET_FEATURES ("device-input"),
Dave Baracha25def72018-11-26 11:04:45 -050046 .last_in_arc = "ethernet-input",
Damjan Marion8b3191e2016-11-09 19:54:20 +010047 .arc_index_ptr = &feature_main.device_input_feature_arc_index,
Damjan Marion22311502016-10-28 20:30:15 +020048};
49
50VNET_FEATURE_INIT (l2_patch, static) = {
51 .arc_name = "device-input",
52 .node_name = "l2-patch",
53 .runs_before = VNET_FEATURES ("ethernet-input"),
54};
55
56VNET_FEATURE_INIT (worker_handoff, static) = {
57 .arc_name = "device-input",
58 .node_name = "worker-handoff",
59 .runs_before = VNET_FEATURES ("ethernet-input"),
60};
61
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010062VNET_FEATURE_INIT (span_input, static) = {
63 .arc_name = "device-input",
64 .node_name = "span-input",
65 .runs_before = VNET_FEATURES ("ethernet-input"),
66};
67
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020068VNET_FEATURE_INIT (p2p_ethernet_node, static) = {
69 .arc_name = "device-input",
70 .node_name = "p2p-ethernet-input",
71 .runs_before = VNET_FEATURES ("ethernet-input"),
72};
73
Damjan Marion22311502016-10-28 20:30:15 +020074VNET_FEATURE_INIT (ethernet_input, static) = {
75 .arc_name = "device-input",
76 .node_name = "ethernet-input",
77 .runs_before = 0, /* not before any other features */
78};
Damjan Marion22311502016-10-28 20:30:15 +020079
Damjan Marion8973b072022-03-01 15:51:18 +010080static void
81input_rate_collector_fn (vlib_stats_collector_data_t *d)
82{
83 vlib_stats_segment_t *sm = vlib_stats_get_segment ();
84 vlib_stats_entry_t *e2 = sm->directory_vector + d->private_data;
85 static u64 last_input_packets = 0;
86 f64 dt, now;
87
88 now = vlib_time_now (vlib_get_main ());
89 u64 input_packets = vnet_get_aggregate_rx_packets ();
90
91 dt = now - e2->value;
92 d->entry->value = (f64) (input_packets - last_input_packets) / dt;
93 last_input_packets = input_packets;
94 e2->value = now;
95}
96
Damjan Marionb3bb1012017-02-28 21:55:28 +010097static clib_error_t *
98vnet_device_init (vlib_main_t * vm)
99{
100 vnet_device_main_t *vdm = &vnet_device_main;
101 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marioneb743fa2017-03-20 16:34:15 +0100102 vlib_thread_registration_t *tr;
Damjan Marion8973b072022-03-01 15:51:18 +0100103 vlib_stats_collector_reg_t reg = {};
Damjan Marioneb743fa2017-03-20 16:34:15 +0100104 uword *p;
Damjan Marionb3bb1012017-02-28 21:55:28 +0100105
106 vec_validate_aligned (vdm->workers, tm->n_vlib_mains - 1,
107 CLIB_CACHE_LINE_BYTES);
Damjan Marioneb743fa2017-03-20 16:34:15 +0100108
109 p = hash_get_mem (tm->thread_registrations_by_name, "workers");
110 tr = p ? (vlib_thread_registration_t *) p[0] : 0;
111 if (tr && tr->count > 0)
112 {
Damjan Marion586afd72017-04-05 19:18:20 +0200113 vdm->first_worker_thread_index = tr->first_index;
114 vdm->next_worker_thread_index = tr->first_index;
115 vdm->last_worker_thread_index = tr->first_index + tr->count - 1;
Damjan Marioneb743fa2017-03-20 16:34:15 +0100116 }
Damjan Marion8973b072022-03-01 15:51:18 +0100117
118 reg.private_data = vlib_stats_add_timestamp ("/sys/last_update");
119 reg.entry_index = vlib_stats_add_gauge ("/sys/input_rate");
120 reg.collect_fn = input_rate_collector_fn;
121 vlib_stats_register_collector_fn (&reg);
122
Damjan Marionb3bb1012017-02-28 21:55:28 +0100123 return 0;
124}
125
126VLIB_INIT_FUNCTION (vnet_device_init);
Damjan Marioneb743fa2017-03-20 16:34:15 +0100127
Damjan Marion22311502016-10-28 20:30:15 +0200128/*
129 * fd.io coding-style-patch-verification: ON
130 *
131 * Local Variables:
132 * eval: (c-set-style "gnu")
133 * End:
134 */