2 * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
21 #include "dynamic-string.h"
29 VLOG_DEFINE_THIS_MODULE(coverage);
31 /* The coverage counters. */
32 #if USE_LINKER_SECTIONS
33 extern struct coverage_counter *__start_coverage[];
34 extern struct coverage_counter *__stop_coverage[];
35 #define coverage_counters __start_coverage
36 #define n_coverage_counters (__stop_coverage - __start_coverage)
37 #else /* !USE_LINKER_SECTIONS */
38 #define COVERAGE_COUNTER(COUNTER) \
39 DECLARE_EXTERN_PER_THREAD_DATA(unsigned int, \
41 DEFINE_EXTERN_PER_THREAD_DATA(counter_##COUNTER, 0); \
42 static unsigned int COUNTER##_count(void) \
44 unsigned int *countp = counter_##COUNTER##_get(); \
45 unsigned int count = *countp; \
49 extern struct coverage_counter counter_##COUNTER; \
50 struct coverage_counter counter_##COUNTER \
51 = { #COUNTER, COUNTER##_count, 0 };
52 #include "coverage.def"
53 #undef COVERAGE_COUNTER
55 extern struct coverage_counter *coverage_counters[];
56 struct coverage_counter *coverage_counters[] = {
57 #define COVERAGE_COUNTER(NAME) &counter_##NAME,
58 #include "coverage.def"
59 #undef COVERAGE_COUNTER
61 #define n_coverage_counters ARRAY_SIZE(coverage_counters)
62 #endif /* !USE_LINKER_SECTIONS */
64 static struct ovs_mutex coverage_mutex = OVS_MUTEX_INITIALIZER;
66 static long long int coverage_run_time = LLONG_MIN;
68 /* Index counter used to compute the moving average array's index. */
69 static unsigned int idx_count = 0;
71 static void coverage_read(struct svec *);
72 static unsigned int coverage_array_sum(const unsigned int *arr,
73 const unsigned int len);
76 coverage_unixctl_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
77 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
83 coverage_read(&lines);
84 reply = svec_join(&lines, "\n", "\n");
85 unixctl_command_reply(conn, reply);
93 unixctl_command_register("coverage/show", "", 0, 0,
94 coverage_unixctl_show, NULL);
97 /* Sorts coverage counters in descending order by total, within equal
98 * totals alphabetically by name. */
100 compare_coverage_counters(const void *a_, const void *b_)
102 const struct coverage_counter *const *ap = a_;
103 const struct coverage_counter *const *bp = b_;
104 const struct coverage_counter *a = *ap;
105 const struct coverage_counter *b = *bp;
106 if (a->total != b->total) {
107 return a->total < b->total ? 1 : -1;
109 return strcmp(a->name, b->name);
116 struct coverage_counter **c;
120 /* Sort coverage counters into groups with equal totals. */
121 c = xmalloc(n_coverage_counters * sizeof *c);
122 ovs_mutex_lock(&coverage_mutex);
123 for (i = 0; i < n_coverage_counters; i++) {
124 c[i] = coverage_counters[i];
126 ovs_mutex_unlock(&coverage_mutex);
127 qsort(c, n_coverage_counters, sizeof *c, compare_coverage_counters);
129 /* Hash the names in each group along with the rank. */
131 for (i = 0; i < n_coverage_counters; ) {
138 hash = hash_int(i, hash);
139 for (j = i; j < n_coverage_counters; j++) {
140 if (c[j]->total != c[i]->total) {
143 hash = hash_string(c[j]->name, hash);
150 return hash_int(n_groups, hash);
154 coverage_hit(uint32_t hash)
156 enum { HIT_BITS = 1024, BITS_PER_WORD = 32 };
157 static uint32_t hit[HIT_BITS / BITS_PER_WORD];
158 BUILD_ASSERT_DECL(IS_POW2(HIT_BITS));
160 static long long int next_clear = LLONG_MIN;
162 unsigned int bit_index = hash & (HIT_BITS - 1);
163 unsigned int word_index = bit_index / BITS_PER_WORD;
164 unsigned int word_mask = 1u << (bit_index % BITS_PER_WORD);
166 /* Expire coverage hash suppression once a day. */
167 if (time_msec() >= next_clear) {
168 memset(hit, 0, sizeof hit);
169 next_clear = time_msec() + 60 * 60 * 24 * 1000LL;
172 if (hit[word_index] & word_mask) {
175 hit[word_index] |= word_mask;
180 /* Logs the coverage counters, unless a similar set of events has already been
183 * This function logs at log level VLL_INFO. Use care before adjusting this
184 * level, because depending on its configuration, syslogd can write changes
185 * synchronously, which can cause the coverage messages to take several seconds
190 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 3);
192 if (!VLOG_DROP_INFO(&rl)) {
193 uint32_t hash = coverage_hash();
194 if (coverage_hit(hash)) {
195 VLOG_INFO("Skipping details of duplicate event coverage for "
196 "hash=%08"PRIx32, hash);
203 coverage_read(&lines);
204 SVEC_FOR_EACH (i, line, &lines) {
205 VLOG_INFO("%s", line);
207 svec_destroy(&lines);
212 /* Adds coverage counter information to 'lines'. */
214 coverage_read(struct svec *lines)
216 struct coverage_counter **c = coverage_counters;
217 unsigned long long int *totals;
222 hash = coverage_hash();
225 svec_add_nocopy(lines,
226 xasprintf("Event coverage, avg rate over last: %d "
227 "seconds, last minute, last hour, "
229 COVERAGE_RUN_INTERVAL/1000, hash));
231 totals = xmalloc(n_coverage_counters * sizeof *totals);
232 ovs_mutex_lock(&coverage_mutex);
233 for (i = 0; i < n_coverage_counters; i++) {
234 totals[i] = c[i]->total;
236 ovs_mutex_unlock(&coverage_mutex);
238 for (i = 0; i < n_coverage_counters; i++) {
240 /* Shows the averaged per-second rates for the last
241 * COVERAGE_RUN_INTERVAL interval, the last minute and
243 svec_add_nocopy(lines,
244 xasprintf("%-24s %5.1f/sec %9.3f/sec "
245 "%13.4f/sec total: %llu",
247 (c[i]->min[(idx_count - 1) % MIN_AVG_LEN]
248 * 1000.0 / COVERAGE_RUN_INTERVAL),
249 coverage_array_sum(c[i]->min, MIN_AVG_LEN) / 60.0,
250 coverage_array_sum(c[i]->hr, HR_AVG_LEN) / 3600.0,
257 svec_add_nocopy(lines, xasprintf("%zu events never hit", n_never_hit));
266 ovs_mutex_lock(&coverage_mutex);
267 for (i = 0; i < n_coverage_counters; i++) {
268 struct coverage_counter *c = coverage_counters[i];
269 c->total += c->count();
271 ovs_mutex_unlock(&coverage_mutex);
274 /* Runs approximately every COVERAGE_RUN_INTERVAL amount of time to update the
275 * coverage counters' 'min' and 'hr' array. 'min' array is for cumulating
276 * per second counts into per minute count. 'hr' array is for cumulating per
277 * minute counts into per hour count. Every thread may call this function. */
281 /* Defines the moving average array index variables. */
282 static unsigned int min_idx, hr_idx;
283 struct coverage_counter **c = coverage_counters;
286 ovs_mutex_lock(&coverage_mutex);
288 /* Initialize the coverage_run_time. */
289 if (coverage_run_time == LLONG_MIN) {
290 coverage_run_time = now + COVERAGE_RUN_INTERVAL;
293 if (now >= coverage_run_time) {
295 /* Computes the number of COVERAGE_RUN_INTERVAL slots, since
296 * it is possible that the actual run interval is multiple of
297 * COVERAGE_RUN_INTERVAL. */
298 int slots = (now - coverage_run_time) / COVERAGE_RUN_INTERVAL + 1;
300 for (i = 0; i < n_coverage_counters; i++) {
301 unsigned int count, portion;
302 unsigned int m_idx = min_idx;
303 unsigned int h_idx = hr_idx;
304 unsigned int idx = idx_count;
306 /* Computes the differences between the current total and the one
307 * recorded in last invocation of coverage_run(). */
308 count = c[i]->total - c[i]->last_total;
309 c[i]->last_total = c[i]->total;
310 /* The count over the time interval is evenly distributed
311 * among slots by calculating the portion. */
312 portion = count / slots;
314 for (j = 0; j < slots; j++) {
315 /* Updates the index variables. */
316 /* The m_idx is increased from 0 to MIN_AVG_LEN - 1. Every
317 * time the m_idx finishes a cycle (a cycle is one minute),
318 * the h_idx is incremented by 1. */
319 m_idx = idx % MIN_AVG_LEN;
320 h_idx = idx / MIN_AVG_LEN;
322 c[i]->min[m_idx] = portion + (j == (slots - 1)
323 ? count % slots : 0);
324 c[i]->hr[h_idx] = m_idx == 0
326 : (c[i]->hr[h_idx] + c[i]->min[m_idx]);
327 /* This is to guarantee that h_idx ranges from 0 to 59. */
328 idx = (idx + 1) % (MIN_AVG_LEN * HR_AVG_LEN);
332 /* Updates the global index variables. */
333 idx_count = (idx_count + slots) % (MIN_AVG_LEN * HR_AVG_LEN);
334 min_idx = idx_count % MIN_AVG_LEN;
335 hr_idx = idx_count / MIN_AVG_LEN;
336 /* Updates the run time. */
337 coverage_run_time = now + COVERAGE_RUN_INTERVAL;
339 ovs_mutex_unlock(&coverage_mutex);
343 coverage_array_sum(const unsigned int *arr, const unsigned int len)
345 unsigned int sum = 0;
348 ovs_mutex_lock(&coverage_mutex);
349 for (i = 0; i < len; i++) {
352 ovs_mutex_unlock(&coverage_mutex);