Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 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 Marion | 8973b07 | 2022-03-01 15:51:18 +0100 | [diff] [blame] | 41 | #include <vlib/stats/stats.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 42 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 43 | void |
| 44 | vlib_clear_simple_counters (vlib_simple_counter_main_t * cm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | { |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 46 | counter_t *my_counters; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 47 | uword i, j; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 49 | for (i = 0; i < vec_len (cm->counters); i++) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 50 | { |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 51 | my_counters = cm->counters[i]; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 52 | |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 53 | for (j = 0; j < vec_len (my_counters); j++) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 54 | { |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 55 | my_counters[j] = 0; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 56 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 60 | void |
| 61 | vlib_clear_combined_counters (vlib_combined_counter_main_t * cm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | { |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 63 | vlib_counter_t *my_counters; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | uword i, j; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 65 | |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 66 | for (i = 0; i < vec_len (cm->counters); i++) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 67 | { |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 68 | my_counters = cm->counters[i]; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 69 | |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 70 | for (j = 0; j < vec_len (my_counters); j++) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 71 | { |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 72 | my_counters[j].packets = 0; |
| 73 | my_counters[j].bytes = 0; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 74 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 75 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 76 | } |
| 77 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 78 | void |
| 79 | vlib_validate_simple_counter (vlib_simple_counter_main_t * cm, u32 index) |
Damjan Marion | cfb2d80 | 2016-02-06 00:54:12 +0100 | [diff] [blame] | 80 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 81 | vlib_thread_main_t *tm = vlib_get_thread_main (); |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 82 | char *name = cm->stat_segment_name ? cm->stat_segment_name : cm->name; |
Damjan Marion | cfb2d80 | 2016-02-06 00:54:12 +0100 | [diff] [blame] | 83 | |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 84 | 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 Tirpak | 38fae31 | 2021-01-12 15:14:02 +0100 | [diff] [blame] | 90 | vec_validate_aligned (cm->counters[i], index, CLIB_CACHE_LINE_BYTES); |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 91 | return; |
| 92 | } |
Dave Barach | 048a4e5 | 2018-06-01 18:52:25 -0400 | [diff] [blame] | 93 | |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 94 | 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 Marion | cfb2d80 | 2016-02-06 00:54:12 +0100 | [diff] [blame] | 99 | } |
| 100 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 101 | void |
Ole Troan | a568a19 | 2020-04-21 17:54:41 +0200 | [diff] [blame] | 102 | vlib_free_simple_counter (vlib_simple_counter_main_t * cm) |
| 103 | { |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 104 | 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 Ranns | 80c0ae2 | 2022-10-13 05:39:11 +0000 | [diff] [blame] | 111 | { |
| 112 | vlib_stats_remove_entry (cm->stats_entry_index); |
| 113 | cm->counters = NULL; |
| 114 | } |
Ole Troan | a568a19 | 2020-04-21 17:54:41 +0200 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | void |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 118 | vlib_validate_combined_counter (vlib_combined_counter_main_t * cm, u32 index) |
Damjan Marion | cfb2d80 | 2016-02-06 00:54:12 +0100 | [diff] [blame] | 119 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 120 | vlib_thread_main_t *tm = vlib_get_thread_main (); |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 121 | char *name = cm->stat_segment_name ? cm->stat_segment_name : cm->name; |
Damjan Marion | cfb2d80 | 2016-02-06 00:54:12 +0100 | [diff] [blame] | 122 | |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 123 | 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 Tirpak | 38fae31 | 2021-01-12 15:14:02 +0100 | [diff] [blame] | 129 | vec_validate_aligned (cm->counters[i], index, CLIB_CACHE_LINE_BYTES); |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 130 | return; |
| 131 | } |
Dave Barach | 048a4e5 | 2018-06-01 18:52:25 -0400 | [diff] [blame] | 132 | |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 133 | 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 Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 138 | } |
| 139 | |
Dave Barach | 8341f76 | 2020-06-03 08:05:15 -0400 | [diff] [blame] | 140 | int |
| 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 Marion | 8973b07 | 2022-03-01 15:51:18 +0100 | [diff] [blame] | 146 | void *oldheap = vlib_stats_set_heap (); |
Dave Barach | 8341f76 | 2020-06-03 08:05:15 -0400 | [diff] [blame] | 147 | |
| 148 | /* Possibly once in recorded history */ |
| 149 | if (PREDICT_FALSE (vec_len (cm->counters) == 0)) |
| 150 | { |
Miklos Tirpak | 38fae31 | 2021-01-12 15:14:02 +0100 | [diff] [blame] | 151 | clib_mem_set_heap (oldheap); |
Dave Barach | 8341f76 | 2020-06-03 08:05:15 -0400 | [diff] [blame] | 152 | 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 Tirpak | e700df8 | 2021-01-13 10:00:38 +0100 | [diff] [blame] | 160 | if (vec_resize_will_expand (cm->counters[i], |
| 161 | index - vec_len (cm->counters[i]) + |
| 162 | 1 /* length_increment */)) |
Dave Barach | 8341f76 | 2020-06-03 08:05:15 -0400 | [diff] [blame] | 163 | { |
Miklos Tirpak | 38fae31 | 2021-01-12 15:14:02 +0100 | [diff] [blame] | 164 | clib_mem_set_heap (oldheap); |
Dave Barach | 8341f76 | 2020-06-03 08:05:15 -0400 | [diff] [blame] | 165 | return 1; |
| 166 | } |
| 167 | } |
Miklos Tirpak | 38fae31 | 2021-01-12 15:14:02 +0100 | [diff] [blame] | 168 | clib_mem_set_heap (oldheap); |
Dave Barach | 8341f76 | 2020-06-03 08:05:15 -0400 | [diff] [blame] | 169 | return 0; |
| 170 | } |
| 171 | |
Ole Troan | a568a19 | 2020-04-21 17:54:41 +0200 | [diff] [blame] | 172 | void |
| 173 | vlib_free_combined_counter (vlib_combined_counter_main_t * cm) |
| 174 | { |
Damjan Marion | 58fd481 | 2022-03-14 13:04:38 +0100 | [diff] [blame] | 175 | 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 Ranns | 80c0ae2 | 2022-10-13 05:39:11 +0000 | [diff] [blame] | 182 | { |
| 183 | vlib_stats_remove_entry (cm->stats_entry_index); |
| 184 | cm->counters = NULL; |
| 185 | } |
Ole Troan | a568a19 | 2020-04-21 17:54:41 +0200 | [diff] [blame] | 186 | } |
| 187 | |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 188 | u32 |
| 189 | vlib_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 | |
| 195 | u32 |
| 196 | vlib_simple_counter_n_counters (const vlib_simple_counter_main_t * cm) |
| 197 | { |
| 198 | ASSERT (cm->counters); |
| 199 | return (vec_len (cm->counters[0])); |
Damjan Marion | cfb2d80 | 2016-02-06 00:54:12 +0100 | [diff] [blame] | 200 | } |
| 201 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 202 | /* |
| 203 | * fd.io coding-style-patch-verification: ON |
| 204 | * |
| 205 | * Local Variables: |
| 206 | * eval: (c-set-style "gnu") |
| 207 | * End: |
| 208 | */ |