Commit a45d872f authored by 4ast's avatar 4ast Committed by GitHub

Merge pull request #897 from brendangregg/master

statsnoop: refactor
parents 1655fcd3 f4ce31a0
...@@ -25,7 +25,8 @@ CONFIG_BPF and bcc. ...@@ -25,7 +25,8 @@ CONFIG_BPF and bcc.
Print usage message. Print usage message.
.TP .TP
\-t \-t
Include a timestamp column. Include a timestamp column: in seconds since the first event, with decimal
places.
.TP .TP
\-x \-x
Only print failed stats. Only print failed stats.
......
...@@ -44,16 +44,12 @@ bpf_text = """ ...@@ -44,16 +44,12 @@ bpf_text = """
#include <linux/sched.h> #include <linux/sched.h>
struct val_t { struct val_t {
u32 pid;
u64 ts;
char comm[TASK_COMM_LEN];
const char *fname; const char *fname;
}; };
struct data_t { struct data_t {
u32 pid; u32 pid;
u64 ts; u64 ts_ns;
u64 delta;
int ret; int ret;
char comm[TASK_COMM_LEN]; char comm[TASK_COMM_LEN];
char fname[NAME_MAX]; char fname[NAME_MAX];
...@@ -69,12 +65,8 @@ int trace_entry(struct pt_regs *ctx, const char __user *filename) ...@@ -69,12 +65,8 @@ int trace_entry(struct pt_regs *ctx, const char __user *filename)
u32 pid = bpf_get_current_pid_tgid(); u32 pid = bpf_get_current_pid_tgid();
FILTER FILTER
if (bpf_get_current_comm(&val.comm, sizeof(val.comm)) == 0) { val.fname = filename;
val.pid = bpf_get_current_pid_tgid(); infotmp.update(&pid, &val);
val.ts = bpf_ktime_get_ns();
val.fname = filename;
infotmp.update(&pid, &val);
}
return 0; return 0;
}; };
...@@ -83,20 +75,17 @@ int trace_return(struct pt_regs *ctx) ...@@ -83,20 +75,17 @@ int trace_return(struct pt_regs *ctx)
{ {
u32 pid = bpf_get_current_pid_tgid(); u32 pid = bpf_get_current_pid_tgid();
struct val_t *valp; struct val_t *valp;
struct data_t data = {};
u64 tsp = bpf_ktime_get_ns();
valp = infotmp.lookup(&pid); valp = infotmp.lookup(&pid);
if (valp == 0) { if (valp == 0) {
// missed entry // missed entry
return 0; return 0;
} }
bpf_probe_read(&data.comm, sizeof(data.comm), valp->comm);
struct data_t data = {.pid = pid};
bpf_probe_read(&data.fname, sizeof(data.fname), (void *)valp->fname); bpf_probe_read(&data.fname, sizeof(data.fname), (void *)valp->fname);
data.pid = valp->pid; bpf_get_current_comm(&data.comm, sizeof(data.comm));
data.delta = tsp - valp->ts; data.ts_ns = bpf_ktime_get_ns();
data.ts = tsp / 1000;
data.ret = PT_REGS_RC(ctx); data.ret = PT_REGS_RC(ctx);
events.perf_submit(ctx, &data, sizeof(data)); events.perf_submit(ctx, &data, sizeof(data));
...@@ -129,8 +118,7 @@ NAME_MAX = 255 # linux/limits.h ...@@ -129,8 +118,7 @@ NAME_MAX = 255 # linux/limits.h
class Data(ct.Structure): class Data(ct.Structure):
_fields_ = [ _fields_ = [
("pid", ct.c_ulonglong), ("pid", ct.c_ulonglong),
("ts", ct.c_ulonglong), ("ts_ns", ct.c_ulonglong),
("delta", ct.c_ulonglong),
("ret", ct.c_int), ("ret", ct.c_int),
("comm", ct.c_char * TASK_COMM_LEN), ("comm", ct.c_char * TASK_COMM_LEN),
("fname", ct.c_char * NAME_MAX) ("fname", ct.c_char * NAME_MAX)
...@@ -162,25 +150,14 @@ def print_event(cpu, data, size): ...@@ -162,25 +150,14 @@ def print_event(cpu, data, size):
err = - event.ret err = - event.ret
if start_ts == 0: if start_ts == 0:
prev_ts = start_ts start_ts = event.ts_ns
if start_ts == 1:
delta = float(delta) + (event.ts - prev_ts)
if (args.failed and (event.ret >= 0)):
start_ts = 1
prev_ts = event.ts
return
if args.timestamp: if args.timestamp:
print("%-14.9f" % (delta / 1000000), end="") print("%-14.9f" % (float(event.ts_ns - start_ts) / 1000000000), end="")
print("%-6d %-16s %4d %3d %s" % (event.pid, event.comm, print("%-6d %-16s %4d %3d %s" % (event.pid, event.comm,
fd_s, err, event.fname)) fd_s, err, event.fname))
prev_ts = event.ts
start_ts = 1
# loop with callback to print_event # loop with callback to print_event
b["events"].open_perf_buffer(print_event) b["events"].open_perf_buffer(print_event)
while 1: while 1:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment