Skip to content

Commit

Permalink
selftests/bpf: add more stats into veristat
Browse files Browse the repository at this point in the history
Extend veristat to collect and print more stats, namely:
- program size in instructions
- jited program size
- program type
- attach type
- stack depth

Signed-off-by: Mykyta Yatsenko <[email protected]>
  • Loading branch information
mykyta5 authored and Kernel Patches Daemon committed Dec 5, 2024
1 parent 2dde120 commit 312bd88
Showing 1 changed file with 46 additions and 5 deletions.
51 changes: 46 additions & 5 deletions tools/testing/selftests/bpf/veristat.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,14 @@ enum stat_id {
FILE_NAME,
PROG_NAME,

SIZE,
JITED_SIZE,
STACK,
PROG_TYPE,
ATTACH_TYPE,

ALL_STATS_CNT,
NUM_STATS_CNT = FILE_NAME - VERDICT,
NUM_STATS_CNT = ATTACH_TYPE - VERDICT + 1,
};

/* In comparison mode each stat can specify up to four different values:
Expand Down Expand Up @@ -640,19 +646,22 @@ static int append_filter_file(const char *path)
}

static const struct stat_specs default_output_spec = {
.spec_cnt = 7,
.spec_cnt = 12,
.ids = {
FILE_NAME, PROG_NAME, VERDICT, DURATION,
TOTAL_INSNS, TOTAL_STATES, PEAK_STATES,
TOTAL_INSNS, TOTAL_STATES, PEAK_STATES, SIZE,
JITED_SIZE, PROG_TYPE, ATTACH_TYPE, STACK,
},
};

static const struct stat_specs default_csv_output_spec = {
.spec_cnt = 9,
.spec_cnt = 14,
.ids = {
FILE_NAME, PROG_NAME, VERDICT, DURATION,
TOTAL_INSNS, TOTAL_STATES, PEAK_STATES,
MAX_STATES_PER_INSN, MARK_READ_MAX_LEN,
SIZE, JITED_SIZE, PROG_TYPE, ATTACH_TYPE,
STACK,
},
};

Expand Down Expand Up @@ -688,6 +697,11 @@ static struct stat_def {
[PEAK_STATES] = { "Peak states", {"peak_states"}, },
[MAX_STATES_PER_INSN] = { "Max states per insn", {"max_states_per_insn"}, },
[MARK_READ_MAX_LEN] = { "Max mark read length", {"max_mark_read_len", "mark_read"}, },
[SIZE] = { "Prog size", {"prog_size", "size"}, },
[JITED_SIZE] = { "Jited size", {"jited_size"}, },
[STACK] = {"Stack depth", {"stack_depth", "stack"}, },
[PROG_TYPE] = { "Program type", {"program_type", "prog_type"}, },
[ATTACH_TYPE] = { "Attach type", {"attach_type", }, },
};

static bool parse_stat_id_var(const char *name, size_t len, int *id,
Expand Down Expand Up @@ -853,13 +867,16 @@ static int parse_verif_log(char * const buf, size_t buf_sz, struct verif_stats *

if (1 == sscanf(cur, "verification time %ld usec\n", &s->stats[DURATION]))
continue;
if (6 == sscanf(cur, "processed %ld insns (limit %*d) max_states_per_insn %ld total_states %ld peak_states %ld mark_read %ld",
if (5 == sscanf(cur, "processed %ld insns (limit %*d) max_states_per_insn %ld total_states %ld peak_states %ld mark_read %ld",
&s->stats[TOTAL_INSNS],
&s->stats[MAX_STATES_PER_INSN],
&s->stats[TOTAL_STATES],
&s->stats[PEAK_STATES],
&s->stats[MARK_READ_MAX_LEN]))
continue;

if (1 == sscanf(cur, "stack depth %ld", &s->stats[STACK]))
continue;
}

return 0;
Expand Down Expand Up @@ -1146,8 +1163,11 @@ static int process_prog(const char *filename, struct bpf_object *obj, struct bpf
char *buf;
int buf_sz, log_level;
struct verif_stats *stats;
struct bpf_prog_info info = {};
__u32 info_len = sizeof(info);
int err = 0;
void *tmp;
int fd;

if (!should_process_file_prog(base_filename, bpf_program__name(prog))) {
env.progs_skipped++;
Expand Down Expand Up @@ -1196,6 +1216,13 @@ static int process_prog(const char *filename, struct bpf_object *obj, struct bpf
stats->file_name = strdup(base_filename);
stats->prog_name = strdup(bpf_program__name(prog));
stats->stats[VERDICT] = err == 0; /* 1 - success, 0 - failure */
stats->stats[SIZE] = bpf_program__insn_cnt(prog);
stats->stats[PROG_TYPE] = bpf_program__type(prog);
stats->stats[ATTACH_TYPE] = bpf_program__expected_attach_type(prog);
fd = bpf_program__fd(prog);
if (fd > 0 && bpf_prog_get_info_by_fd(fd, &info, &info_len) == 0)
stats->stats[JITED_SIZE] = info.jited_prog_len;

parse_verif_log(buf, buf_sz, stats);

if (env.verbose) {
Expand Down Expand Up @@ -1309,6 +1336,11 @@ static int cmp_stat(const struct verif_stats *s1, const struct verif_stats *s2,
case PROG_NAME:
cmp = strcmp(s1->prog_name, s2->prog_name);
break;
case ATTACH_TYPE:
case PROG_TYPE:
case SIZE:
case JITED_SIZE:
case STACK:
case VERDICT:
case DURATION:
case TOTAL_INSNS:
Expand Down Expand Up @@ -1523,12 +1555,21 @@ static void prepare_value(const struct verif_stats *s, enum stat_id id,
else
*str = s->stats[VERDICT] ? "success" : "failure";
break;
case ATTACH_TYPE:
*str = s ? libbpf_bpf_attach_type_str(s->stats[ATTACH_TYPE]) ? : "N/A" : "N/A";
break;
case PROG_TYPE:
*str = s ? libbpf_bpf_prog_type_str(s->stats[PROG_TYPE]) ? : "N/A" : "N/A";
break;
case DURATION:
case TOTAL_INSNS:
case TOTAL_STATES:
case PEAK_STATES:
case MAX_STATES_PER_INSN:
case MARK_READ_MAX_LEN:
case STACK:
case SIZE:
case JITED_SIZE:
*val = s ? s->stats[id] : 0;
break;
default:
Expand Down

0 comments on commit 312bd88

Please sign in to comment.