blob: 092bd00c8793d45ee2b2c13fc8504ff7c4c019ad [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 * counter.h: simple and packet/byte counters
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_vlib_counter_h
41#define included_vlib_counter_h
42
Ole Troan58492a82018-09-04 13:19:12 +020043#include <vlib/counter_types.h>
44
Dave Barach63539202016-08-11 17:21:02 -040045/** \file
46
47 Optimized thread-safe counters.
48
Neale Ranns1bd01092017-03-15 15:41:17 -040049 Each vlib_[simple|combined]_counter_main_t consists of a per-thread
50 vector of per-object counters.
Dave Barach63539202016-08-11 17:21:02 -040051
Neale Ranns1bd01092017-03-15 15:41:17 -040052 The idea is to drastically eliminate atomic operations.
Dave Barach63539202016-08-11 17:21:02 -040053*/
54
55/** A collection of simple counters */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Dave Barach9b8ffd92016-07-08 08:13:45 -040057typedef struct
58{
Neale Ranns1bd01092017-03-15 15:41:17 -040059 counter_t **counters; /**< Per-thread u64 non-atomic counters */
60 counter_t *value_at_last_serialize; /**< Values as of last serialize. */
Dave Barach63539202016-08-11 17:21:02 -040061 u32 last_incremental_serialize_index; /**< Last counter index
62 serialized incrementally. */
Ed Warnickecb9cada2015-12-08 15:45:58 -070063
Dave Barach63539202016-08-11 17:21:02 -040064 char *name; /**< The counter collection's name. */
Dave Barach048a4e52018-06-01 18:52:25 -040065 char *stat_segment_name; /**< Name in stat segment directory */
Ed Warnickecb9cada2015-12-08 15:45:58 -070066} vlib_simple_counter_main_t;
67
Neale Ranns1bd01092017-03-15 15:41:17 -040068/** The number of counters (not the number of per-thread counters) */
69u32 vlib_simple_counter_n_counters (const vlib_simple_counter_main_t * cm);
70
Dave Barach63539202016-08-11 17:21:02 -040071/** Increment a simple counter
72 @param cm - (vlib_simple_counter_main_t *) simple counter main pointer
Damjan Marion586afd72017-04-05 19:18:20 +020073 @param thread_index - (u32) the current cpu index
Dave Barach63539202016-08-11 17:21:02 -040074 @param index - (u32) index of the counter to increment
Neale Ranns1bd01092017-03-15 15:41:17 -040075 @param increment - (u64) quantitiy to add to the counter
Dave Barach63539202016-08-11 17:21:02 -040076*/
Ed Warnickecb9cada2015-12-08 15:45:58 -070077always_inline void
78vlib_increment_simple_counter (vlib_simple_counter_main_t * cm,
Damjan Marion586afd72017-04-05 19:18:20 +020079 u32 thread_index, u32 index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -070080{
Neale Ranns1bd01092017-03-15 15:41:17 -040081 counter_t *my_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
Damjan Marion586afd72017-04-05 19:18:20 +020083 my_counters = cm->counters[thread_index];
Neale Ranns1bd01092017-03-15 15:41:17 -040084 my_counters[index] += increment;
Ed Warnickecb9cada2015-12-08 15:45:58 -070085}
86
Matus Fabianb0055c82018-12-17 05:29:28 -080087/** Set a simple counter
88 @param cm - (vlib_simple_counter_main_t *) simple counter main pointer
89 @param thread_index - (u32) the current cpu index
90 @param index - (u32) index of the counter to increment
91 @param value - (u64) quantitiy to set to the counter
92*/
93always_inline void
94vlib_set_simple_counter (vlib_simple_counter_main_t * cm,
95 u32 thread_index, u32 index, u64 value)
96{
97 counter_t *my_counters;
98
99 my_counters = cm->counters[thread_index];
100 my_counters[index] = value;
101}
102
Dave Barach63539202016-08-11 17:21:02 -0400103/** Get the value of a simple counter
Neale Ranns1bd01092017-03-15 15:41:17 -0400104 Scrapes the entire set of per-thread counters. Innacurate unless
Dave Barach63539202016-08-11 17:21:02 -0400105 worker threads which might increment the counter are
106 barrier-synchronized
107
108 @param cm - (vlib_simple_counter_main_t *) simple counter main pointer
109 @param index - (u32) index of the counter to fetch
110 @returns - (u64) current counter value
111*/
Neale Ranns1bd01092017-03-15 15:41:17 -0400112always_inline counter_t
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113vlib_get_simple_counter (vlib_simple_counter_main_t * cm, u32 index)
114{
Neale Ranns1bd01092017-03-15 15:41:17 -0400115 counter_t *my_counters;
116 counter_t v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 int i;
118
Neale Ranns1bd01092017-03-15 15:41:17 -0400119 ASSERT (index < vlib_simple_counter_n_counters (cm));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
121 v = 0;
122
Neale Ranns1bd01092017-03-15 15:41:17 -0400123 for (i = 0; i < vec_len (cm->counters); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 {
Neale Ranns1bd01092017-03-15 15:41:17 -0400125 my_counters = cm->counters[i];
126 v += my_counters[index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127 }
128
129 return v;
130}
131
Dave Barach63539202016-08-11 17:21:02 -0400132/** Clear a simple counter
133 Clears the set of per-thread u16 counters, and the u64 counter
134
135 @param cm - (vlib_simple_counter_main_t *) simple counter main pointer
136 @param index - (u32) index of the counter to clear
137*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138always_inline void
139vlib_zero_simple_counter (vlib_simple_counter_main_t * cm, u32 index)
140{
Neale Ranns1bd01092017-03-15 15:41:17 -0400141 counter_t *my_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 int i;
143
Neale Ranns1bd01092017-03-15 15:41:17 -0400144 ASSERT (index < vlib_simple_counter_n_counters (cm));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145
Neale Ranns1bd01092017-03-15 15:41:17 -0400146 for (i = 0; i < vec_len (cm->counters); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147 {
Neale Ranns1bd01092017-03-15 15:41:17 -0400148 my_counters = cm->counters[i];
149 my_counters[index] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151}
152
Dave Barach63539202016-08-11 17:21:02 -0400153/** Add two combined counters, results in the first counter
Chris Luked4024f52016-09-06 09:32:36 -0400154 @param [in,out] a - (vlib_counter_t *) dst counter
Dave Barach63539202016-08-11 17:21:02 -0400155 @param b - (vlib_counter_t *) src counter
156*/
157
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158always_inline void
159vlib_counter_add (vlib_counter_t * a, vlib_counter_t * b)
160{
161 a->packets += b->packets;
162 a->bytes += b->bytes;
163}
164
Dave Barach63539202016-08-11 17:21:02 -0400165/** Subtract combined counters, results in the first counter
Chris Luked4024f52016-09-06 09:32:36 -0400166 @param [in,out] a - (vlib_counter_t *) dst counter
Dave Barach63539202016-08-11 17:21:02 -0400167 @param b - (vlib_counter_t *) src counter
168*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169always_inline void
170vlib_counter_sub (vlib_counter_t * a, vlib_counter_t * b)
171{
172 ASSERT (a->packets >= b->packets);
173 ASSERT (a->bytes >= b->bytes);
174 a->packets -= b->packets;
175 a->bytes -= b->bytes;
176}
177
Dave Barach63539202016-08-11 17:21:02 -0400178/** Clear a combined counter
179 @param a - (vlib_counter_t *) counter to clear
180*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181always_inline void
182vlib_counter_zero (vlib_counter_t * a)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400183{
184 a->packets = a->bytes = 0;
185}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
Dave Barach63539202016-08-11 17:21:02 -0400187/** A collection of combined counters */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400188typedef struct
189{
Neale Ranns1bd01092017-03-15 15:41:17 -0400190 vlib_counter_t **counters; /**< Per-thread u64 non-atomic counter pairs */
Dave Barach63539202016-08-11 17:21:02 -0400191 vlib_counter_t *value_at_last_serialize; /**< Counter values as of last serialize. */
192 u32 last_incremental_serialize_index; /**< Last counter index serialized incrementally. */
193 char *name; /**< The counter collection's name. */
Dave Barach048a4e52018-06-01 18:52:25 -0400194 char *stat_segment_name; /**< Name in stat segment directory */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195} vlib_combined_counter_main_t;
196
Neale Ranns1bd01092017-03-15 15:41:17 -0400197/** The number of counters (not the number of per-thread counters) */
198u32 vlib_combined_counter_n_counters (const vlib_combined_counter_main_t *
199 cm);
200
Dave Barach63539202016-08-11 17:21:02 -0400201/** Clear a collection of simple counters
202 @param cm - (vlib_simple_counter_main_t *) collection to clear
203*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204void vlib_clear_simple_counters (vlib_simple_counter_main_t * cm);
Dave Barach63539202016-08-11 17:21:02 -0400205
206/** Clear a collection of combined counters
207 @param cm - (vlib_combined_counter_main_t *) collection to clear
208*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209void vlib_clear_combined_counters (vlib_combined_counter_main_t * cm);
210
Dave Barach63539202016-08-11 17:21:02 -0400211/** Increment a combined counter
212 @param cm - (vlib_combined_counter_main_t *) comined counter main pointer
Damjan Marion586afd72017-04-05 19:18:20 +0200213 @param thread_index - (u32) the current cpu index
Dave Barach63539202016-08-11 17:21:02 -0400214 @param index - (u32) index of the counter to increment
Neale Ranns1bd01092017-03-15 15:41:17 -0400215 @param packet_increment - (u64) number of packets to add to the counter
216 @param byte_increment - (u64) number of bytes to add to the counter
Dave Barach63539202016-08-11 17:21:02 -0400217*/
218
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219always_inline void
220vlib_increment_combined_counter (vlib_combined_counter_main_t * cm,
Damjan Marion586afd72017-04-05 19:18:20 +0200221 u32 thread_index,
Neale Ranns1bd01092017-03-15 15:41:17 -0400222 u32 index, u64 n_packets, u64 n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223{
Neale Ranns1bd01092017-03-15 15:41:17 -0400224 vlib_counter_t *my_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
Neale Ranns1bd01092017-03-15 15:41:17 -0400226 /* Use this CPU's counter array */
Damjan Marion586afd72017-04-05 19:18:20 +0200227 my_counters = cm->counters[thread_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228
Neale Ranns1bd01092017-03-15 15:41:17 -0400229 my_counters[index].packets += n_packets;
230 my_counters[index].bytes += n_bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231}
232
Neale Ranns1bd01092017-03-15 15:41:17 -0400233/** Pre-fetch a per-thread combined counter for the given object index */
234always_inline void
235vlib_prefetch_combined_counter (const vlib_combined_counter_main_t * cm,
Damjan Marion586afd72017-04-05 19:18:20 +0200236 u32 thread_index, u32 index)
Neale Ranns1bd01092017-03-15 15:41:17 -0400237{
238 vlib_counter_t *cpu_counters;
239
240 /*
241 * This CPU's index is assumed to already be in cache
242 */
Damjan Marion586afd72017-04-05 19:18:20 +0200243 cpu_counters = cm->counters[thread_index];
Neale Ranns1bd01092017-03-15 15:41:17 -0400244 CLIB_PREFETCH (cpu_counters + index, CLIB_CACHE_LINE_BYTES, STORE);
Neale Ranns044183f2017-01-24 01:34:25 -0800245}
246
247
Dave Barach63539202016-08-11 17:21:02 -0400248/** Get the value of a combined counter, never called in the speed path
Neale Ranns1bd01092017-03-15 15:41:17 -0400249 Scrapes the entire set of per-thread counters. Innacurate unless
Dave Barach63539202016-08-11 17:21:02 -0400250 worker threads which might increment the counter are
251 barrier-synchronized
252
253 @param cm - (vlib_combined_counter_main_t *) combined counter main pointer
254 @param index - (u32) index of the combined counter to fetch
255 @param result [out] - (vlib_counter_t *) result stored here
256*/
257
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258static inline void
Neale Ranns1bd01092017-03-15 15:41:17 -0400259vlib_get_combined_counter (const vlib_combined_counter_main_t * cm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400260 u32 index, vlib_counter_t * result)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261{
Neale Ranns1bd01092017-03-15 15:41:17 -0400262 vlib_counter_t *my_counters, *counter;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263 int i;
264
265 result->packets = 0;
266 result->bytes = 0;
267
Neale Ranns1bd01092017-03-15 15:41:17 -0400268 for (i = 0; i < vec_len (cm->counters); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 {
Neale Ranns1bd01092017-03-15 15:41:17 -0400270 my_counters = cm->counters[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271
Neale Ranns1bd01092017-03-15 15:41:17 -0400272 counter = vec_elt_at_index (my_counters, index);
273 result->packets += counter->packets;
274 result->bytes += counter->bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276}
277
Dave Barach63539202016-08-11 17:21:02 -0400278/** Clear a combined counter
Neale Ranns1bd01092017-03-15 15:41:17 -0400279 Clears the set of per-thread counters.
Dave Barach63539202016-08-11 17:21:02 -0400280
281 @param cm - (vlib_combined_counter_main_t *) combined counter main pointer
282 @param index - (u32) index of the counter to clear
283*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400285vlib_zero_combined_counter (vlib_combined_counter_main_t * cm, u32 index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286{
Neale Ranns1bd01092017-03-15 15:41:17 -0400287 vlib_counter_t *my_counters, *counter;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 int i;
289
Neale Ranns1bd01092017-03-15 15:41:17 -0400290 for (i = 0; i < vec_len (cm->counters); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291 {
Neale Ranns1bd01092017-03-15 15:41:17 -0400292 my_counters = cm->counters[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293
Neale Ranns1bd01092017-03-15 15:41:17 -0400294 counter = vec_elt_at_index (my_counters, index);
295 counter->packets = 0;
296 counter->bytes = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298}
299
Dave Barach63539202016-08-11 17:21:02 -0400300/** validate a simple counter
301 @param cm - (vlib_simple_counter_main_t *) pointer to the counter collection
302 @param index - (u32) index of the counter to validate
303*/
304
Dave Barach9b8ffd92016-07-08 08:13:45 -0400305void vlib_validate_simple_counter (vlib_simple_counter_main_t * cm,
306 u32 index);
Dave Barach63539202016-08-11 17:21:02 -0400307/** validate a combined counter
308 @param cm - (vlib_combined_counter_main_t *) pointer to the counter
309 collection
310 @param index - (u32) index of the counter to validate
311*/
312
Dave Barach9b8ffd92016-07-08 08:13:45 -0400313void vlib_validate_combined_counter (vlib_combined_counter_main_t * cm,
314 u32 index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315
Dave Barach63539202016-08-11 17:21:02 -0400316/** Obtain the number of simple or combined counters allocated.
317 A macro which reduces to to vec_len(cm->maxi), the answer in either
318 case.
319
320 @param cm - (vlib_simple_counter_main_t) or
321 (vlib_combined_counter_main_t) the counter collection to interrogate
322 @returns vec_len(cm->maxi)
323*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324#define vlib_counter_len(cm) vec_len((cm)->maxi)
325
Dave Barach9b8ffd92016-07-08 08:13:45 -0400326serialize_function_t serialize_vlib_simple_counter_main,
327 unserialize_vlib_simple_counter_main;
328serialize_function_t serialize_vlib_combined_counter_main,
329 unserialize_vlib_combined_counter_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330
331#endif /* included_vlib_counter_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332
333/*
334 * fd.io coding-style-patch-verification: ON
335 *
336 * Local Variables:
337 * eval: (c-set-style "gnu")
338 * End:
339 */