mirror of
https://github.com/openvswitch/ovs
synced 2025-09-05 16:55:42 +00:00
The protocol used by ovs-appctl has a long-standing bug that there is no way to distinguish "ovs-appctl a b c" from "ovs-appctl 'a b c'". This isn't a big deal because none of the current commands really want to accept arguments that include spaces, but it's kind of a silly limitation. At the same time, the internal API is awkward because every user is stuck doing its own argument parsing, which is no fun. This commit fixes both problems, by adding shell-like quoting to the protocol and modifying the internal API from one that passes a string to one that passes in an array of pre-parsed strings. Command implementations may now specify how many arguments they expect. This simplifies some command implementations significantly. Signed-off-by: Ben Pfaff <blp@nicira.com>
204 lines
5.6 KiB
C
204 lines
5.6 KiB
C
/*
|
|
* Copyright (c) 2009, 2010, 2011 Nicira Networks.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at:
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include "coverage.h"
|
|
#include <inttypes.h>
|
|
#include <stdlib.h>
|
|
#include "dynamic-string.h"
|
|
#include "hash.h"
|
|
#include "unixctl.h"
|
|
#include "util.h"
|
|
#include "vlog.h"
|
|
|
|
VLOG_DEFINE_THIS_MODULE(coverage);
|
|
|
|
/* The coverage counters. */
|
|
#if USE_LINKER_SECTIONS
|
|
extern struct coverage_counter *__start_coverage[];
|
|
extern struct coverage_counter *__stop_coverage[];
|
|
#define coverage_counters __start_coverage
|
|
#define n_coverage_counters (__stop_coverage - __start_coverage)
|
|
#else /* !USE_LINKER_SECTIONS */
|
|
#define COVERAGE_COUNTER(NAME) COVERAGE_DEFINE__(NAME);
|
|
#include "coverage.def"
|
|
#undef COVERAGE_COUNTER
|
|
|
|
struct coverage_counter *coverage_counters[] = {
|
|
#define COVERAGE_COUNTER(NAME) &counter_##NAME,
|
|
#include "coverage.def"
|
|
#undef COVERAGE_COUNTER
|
|
};
|
|
#define n_coverage_counters ARRAY_SIZE(coverage_counters)
|
|
#endif /* !USE_LINKER_SECTIONS */
|
|
|
|
static unsigned int epoch;
|
|
|
|
static void
|
|
coverage_unixctl_log(struct unixctl_conn *conn, int argc OVS_UNUSED,
|
|
const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
|
|
{
|
|
coverage_log(VLL_WARN, false);
|
|
unixctl_command_reply(conn, 200, NULL);
|
|
}
|
|
|
|
void
|
|
coverage_init(void)
|
|
{
|
|
unixctl_command_register("coverage/log", "", 0, 0,
|
|
coverage_unixctl_log, NULL);
|
|
}
|
|
|
|
/* Sorts coverage counters in descending order by count, within equal counts
|
|
* alphabetically by name. */
|
|
static int
|
|
compare_coverage_counters(const void *a_, const void *b_)
|
|
{
|
|
const struct coverage_counter *const *ap = a_;
|
|
const struct coverage_counter *const *bp = b_;
|
|
const struct coverage_counter *a = *ap;
|
|
const struct coverage_counter *b = *bp;
|
|
if (a->count != b->count) {
|
|
return a->count < b->count ? 1 : -1;
|
|
} else {
|
|
return strcmp(a->name, b->name);
|
|
}
|
|
}
|
|
|
|
static uint32_t
|
|
coverage_hash(void)
|
|
{
|
|
struct coverage_counter **c;
|
|
uint32_t hash = 0;
|
|
int n_groups, i;
|
|
|
|
/* Sort coverage counters into groups with equal counts. */
|
|
c = xmalloc(n_coverage_counters * sizeof *c);
|
|
for (i = 0; i < n_coverage_counters; i++) {
|
|
c[i] = coverage_counters[i];
|
|
}
|
|
qsort(c, n_coverage_counters, sizeof *c, compare_coverage_counters);
|
|
|
|
/* Hash the names in each group along with the rank. */
|
|
n_groups = 0;
|
|
for (i = 0; i < n_coverage_counters; ) {
|
|
int j;
|
|
|
|
if (!c[i]->count) {
|
|
break;
|
|
}
|
|
n_groups++;
|
|
hash = hash_int(i, hash);
|
|
for (j = i; j < n_coverage_counters; j++) {
|
|
if (c[j]->count != c[i]->count) {
|
|
break;
|
|
}
|
|
hash = hash_string(c[j]->name, hash);
|
|
}
|
|
i = j;
|
|
}
|
|
|
|
free(c);
|
|
|
|
return hash_int(n_groups, hash);
|
|
}
|
|
|
|
static bool
|
|
coverage_hit(uint32_t hash)
|
|
{
|
|
enum { HIT_BITS = 1024, BITS_PER_WORD = 32 };
|
|
static uint32_t hit[HIT_BITS / BITS_PER_WORD];
|
|
BUILD_ASSERT_DECL(IS_POW2(HIT_BITS));
|
|
|
|
unsigned int bit_index = hash & (HIT_BITS - 1);
|
|
unsigned int word_index = bit_index / BITS_PER_WORD;
|
|
unsigned int word_mask = 1u << (bit_index % BITS_PER_WORD);
|
|
|
|
if (hit[word_index] & word_mask) {
|
|
return true;
|
|
} else {
|
|
hit[word_index] |= word_mask;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
static void
|
|
coverage_log_counter(enum vlog_level level, const struct coverage_counter *c)
|
|
{
|
|
VLOG(level, "%-24s %5u / %9llu", c->name, c->count, c->count + c->total);
|
|
}
|
|
|
|
/* Logs the coverage counters at the given vlog 'level'. If
|
|
* 'suppress_dups' is true, then duplicate events are not displayed.
|
|
* Care should be taken in the value used for 'level'. Depending on the
|
|
* configuration, syslog can write changes synchronously, which can
|
|
* cause the coverage messages to take several seconds to write. */
|
|
void
|
|
coverage_log(enum vlog_level level, bool suppress_dups)
|
|
{
|
|
size_t n_never_hit;
|
|
uint32_t hash;
|
|
size_t i;
|
|
|
|
if (!vlog_is_enabled(THIS_MODULE, level)) {
|
|
return;
|
|
}
|
|
|
|
hash = coverage_hash();
|
|
if (suppress_dups) {
|
|
if (coverage_hit(hash)) {
|
|
VLOG(level, "Skipping details of duplicate event coverage for "
|
|
"hash=%08"PRIx32" in epoch %u", hash, epoch);
|
|
return;
|
|
}
|
|
}
|
|
|
|
n_never_hit = 0;
|
|
VLOG(level, "Event coverage (epoch %u/entire run), hash=%08"PRIx32":",
|
|
epoch, hash);
|
|
for (i = 0; i < n_coverage_counters; i++) {
|
|
struct coverage_counter *c = coverage_counters[i];
|
|
if (c->count) {
|
|
coverage_log_counter(level, c);
|
|
}
|
|
}
|
|
for (i = 0; i < n_coverage_counters; i++) {
|
|
struct coverage_counter *c = coverage_counters[i];
|
|
if (!c->count) {
|
|
if (c->total) {
|
|
coverage_log_counter(level, c);
|
|
} else {
|
|
n_never_hit++;
|
|
}
|
|
}
|
|
}
|
|
VLOG(level, "%zu events never hit", n_never_hit);
|
|
}
|
|
|
|
/* Advances to the next epoch of coverage, resetting all the counters to 0. */
|
|
void
|
|
coverage_clear(void)
|
|
{
|
|
size_t i;
|
|
|
|
epoch++;
|
|
for (i = 0; i < n_coverage_counters; i++) {
|
|
struct coverage_counter *c = coverage_counters[i];
|
|
c->total += c->count;
|
|
c->count = 0;
|
|
}
|
|
}
|