blob: 9f14d02909f5f841202f74f95e49a8f471b4868b [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.c: 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#include <vlib/vlib.h>
Damjan Marion8973b072022-03-01 15:51:18 +010041#include <vlib/stats/stats.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070042
Dave Barach9b8ffd92016-07-08 08:13:45 -040043void
44vlib_clear_simple_counters (vlib_simple_counter_main_t * cm)
Ed Warnickecb9cada2015-12-08 15:45:58 -070045{
Neale Ranns1bd01092017-03-15 15:41:17 -040046 counter_t *my_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -070047 uword i, j;
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
Neale Ranns1bd01092017-03-15 15:41:17 -040049 for (i = 0; i < vec_len (cm->counters); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -070050 {
Neale Ranns1bd01092017-03-15 15:41:17 -040051 my_counters = cm->counters[i];
Dave Barach9b8ffd92016-07-08 08:13:45 -040052
Neale Ranns1bd01092017-03-15 15:41:17 -040053 for (j = 0; j < vec_len (my_counters); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -040054 {
Neale Ranns1bd01092017-03-15 15:41:17 -040055 my_counters[j] = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -040056 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070057 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070058}
59
Dave Barach9b8ffd92016-07-08 08:13:45 -040060void
61vlib_clear_combined_counters (vlib_combined_counter_main_t * cm)
Ed Warnickecb9cada2015-12-08 15:45:58 -070062{
Neale Ranns1bd01092017-03-15 15:41:17 -040063 vlib_counter_t *my_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -070064 uword i, j;
Ed Warnickecb9cada2015-12-08 15:45:58 -070065
Neale Ranns1bd01092017-03-15 15:41:17 -040066 for (i = 0; i < vec_len (cm->counters); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 {
Neale Ranns1bd01092017-03-15 15:41:17 -040068 my_counters = cm->counters[i];
Dave Barach9b8ffd92016-07-08 08:13:45 -040069
Neale Ranns1bd01092017-03-15 15:41:17 -040070 for (j = 0; j < vec_len (my_counters); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -040071 {
Neale Ranns1bd01092017-03-15 15:41:17 -040072 my_counters[j].packets = 0;
73 my_counters[j].bytes = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -040074 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070075 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070076}
77
Dave Barach9b8ffd92016-07-08 08:13:45 -040078void
79vlib_validate_simple_counter (vlib_simple_counter_main_t * cm, u32 index)
Damjan Marioncfb2d802016-02-06 00:54:12 +010080{
Dave Barach9b8ffd92016-07-08 08:13:45 -040081 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion58fd4812022-03-14 13:04:38 +010082 char *name = cm->stat_segment_name ? cm->stat_segment_name : cm->name;
Damjan Marioncfb2d802016-02-06 00:54:12 +010083
Damjan Marion58fd4812022-03-14 13:04:38 +010084 if (name == 0)
85 {
86 if (cm->counters == 0)
87 cm->stats_entry_index = ~0;
88 vec_validate (cm->counters, tm->n_vlib_mains - 1);
89 for (int i = 0; i < tm->n_vlib_mains; i++)
Miklos Tirpak38fae312021-01-12 15:14:02 +010090 vec_validate_aligned (cm->counters[i], index, CLIB_CACHE_LINE_BYTES);
Damjan Marion58fd4812022-03-14 13:04:38 +010091 return;
92 }
Dave Barach048a4e52018-06-01 18:52:25 -040093
Damjan Marion58fd4812022-03-14 13:04:38 +010094 if (cm->counters == 0)
95 cm->stats_entry_index = vlib_stats_add_counter_vector ("%s", name);
96
97 vlib_stats_validate (cm->stats_entry_index, tm->n_vlib_mains - 1, index);
98 cm->counters = vlib_stats_get_entry_data_pointer (cm->stats_entry_index);
Damjan Marioncfb2d802016-02-06 00:54:12 +010099}
100
Dave Barach9b8ffd92016-07-08 08:13:45 -0400101void
Ole Troana568a192020-04-21 17:54:41 +0200102vlib_free_simple_counter (vlib_simple_counter_main_t * cm)
103{
Damjan Marion58fd4812022-03-14 13:04:38 +0100104 if (cm->stats_entry_index == ~0)
105 {
106 for (int i = 0; i < vec_len (cm->counters); i++)
107 vec_free (cm->counters[i]);
108 vec_free (cm->counters);
109 }
110 else
Neale Ranns80c0ae22022-10-13 05:39:11 +0000111 {
112 vlib_stats_remove_entry (cm->stats_entry_index);
113 cm->counters = NULL;
114 }
Ole Troana568a192020-04-21 17:54:41 +0200115}
116
117void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400118vlib_validate_combined_counter (vlib_combined_counter_main_t * cm, u32 index)
Damjan Marioncfb2d802016-02-06 00:54:12 +0100119{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400120 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion58fd4812022-03-14 13:04:38 +0100121 char *name = cm->stat_segment_name ? cm->stat_segment_name : cm->name;
Damjan Marioncfb2d802016-02-06 00:54:12 +0100122
Damjan Marion58fd4812022-03-14 13:04:38 +0100123 if (name == 0)
124 {
125 if (cm->counters == 0)
126 cm->stats_entry_index = ~0;
127 vec_validate (cm->counters, tm->n_vlib_mains - 1);
128 for (int i = 0; i < tm->n_vlib_mains; i++)
Miklos Tirpak38fae312021-01-12 15:14:02 +0100129 vec_validate_aligned (cm->counters[i], index, CLIB_CACHE_LINE_BYTES);
Damjan Marion58fd4812022-03-14 13:04:38 +0100130 return;
131 }
Dave Barach048a4e52018-06-01 18:52:25 -0400132
Damjan Marion58fd4812022-03-14 13:04:38 +0100133 if (cm->counters == 0)
134 cm->stats_entry_index = vlib_stats_add_counter_pair_vector ("%s", name);
135
136 vlib_stats_validate (cm->stats_entry_index, tm->n_vlib_mains - 1, index);
137 cm->counters = vlib_stats_get_entry_data_pointer (cm->stats_entry_index);
Neale Ranns1bd01092017-03-15 15:41:17 -0400138}
139
Dave Barach8341f762020-06-03 08:05:15 -0400140int
141 vlib_validate_combined_counter_will_expand
142 (vlib_combined_counter_main_t * cm, u32 index)
143{
144 vlib_thread_main_t *tm = vlib_get_thread_main ();
145 int i;
Damjan Marion8973b072022-03-01 15:51:18 +0100146 void *oldheap = vlib_stats_set_heap ();
Dave Barach8341f762020-06-03 08:05:15 -0400147
148 /* Possibly once in recorded history */
149 if (PREDICT_FALSE (vec_len (cm->counters) == 0))
150 {
Miklos Tirpak38fae312021-01-12 15:14:02 +0100151 clib_mem_set_heap (oldheap);
Dave Barach8341f762020-06-03 08:05:15 -0400152 return 1;
153 }
154
155 for (i = 0; i < tm->n_vlib_mains; i++)
156 {
157 /* Trivially OK, and proves that index >= vec_len(...) */
158 if (index < vec_len (cm->counters[i]))
159 continue;
Miklos Tirpake700df82021-01-13 10:00:38 +0100160 if (vec_resize_will_expand (cm->counters[i],
161 index - vec_len (cm->counters[i]) +
162 1 /* length_increment */))
Dave Barach8341f762020-06-03 08:05:15 -0400163 {
Miklos Tirpak38fae312021-01-12 15:14:02 +0100164 clib_mem_set_heap (oldheap);
Dave Barach8341f762020-06-03 08:05:15 -0400165 return 1;
166 }
167 }
Miklos Tirpak38fae312021-01-12 15:14:02 +0100168 clib_mem_set_heap (oldheap);
Dave Barach8341f762020-06-03 08:05:15 -0400169 return 0;
170}
171
Ole Troana568a192020-04-21 17:54:41 +0200172void
173vlib_free_combined_counter (vlib_combined_counter_main_t * cm)
174{
Damjan Marion58fd4812022-03-14 13:04:38 +0100175 if (cm->stats_entry_index == ~0)
176 {
177 for (int i = 0; i < vec_len (cm->counters); i++)
178 vec_free (cm->counters[i]);
179 vec_free (cm->counters);
180 }
181 else
Neale Ranns80c0ae22022-10-13 05:39:11 +0000182 {
183 vlib_stats_remove_entry (cm->stats_entry_index);
184 cm->counters = NULL;
185 }
Ole Troana568a192020-04-21 17:54:41 +0200186}
187
Neale Ranns1bd01092017-03-15 15:41:17 -0400188u32
189vlib_combined_counter_n_counters (const vlib_combined_counter_main_t * cm)
190{
191 ASSERT (cm->counters);
192 return (vec_len (cm->counters[0]));
193}
194
195u32
196vlib_simple_counter_n_counters (const vlib_simple_counter_main_t * cm)
197{
198 ASSERT (cm->counters);
199 return (vec_len (cm->counters[0]));
Damjan Marioncfb2d802016-02-06 00:54:12 +0100200}
201
Dave Barach9b8ffd92016-07-08 08:13:45 -0400202/*
203 * fd.io coding-style-patch-verification: ON
204 *
205 * Local Variables:
206 * eval: (c-set-style "gnu")
207 * End:
208 */