Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 1 | #!/usr/bin/python |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 2 | # @lint-avoid-python-3-compatibility-imports |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 3 | # |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 4 | # opensnoop Trace open() syscalls. |
| 5 | # For Linux, uses BCC, eBPF. Embedded C. |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 6 | # |
Paul Chaignon | 702de38 | 2018-01-28 13:41:35 +0100 | [diff] [blame] | 7 | # USAGE: opensnoop [-h] [-T] [-x] [-p PID] [-d DURATION] [-t TID] [-n NAME] |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 8 | # |
| 9 | # Copyright (c) 2015 Brendan Gregg. |
| 10 | # Licensed under the Apache License, Version 2.0 (the "License") |
| 11 | # |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 12 | # 17-Sep-2015 Brendan Gregg Created this. |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 13 | # 29-Apr-2016 Allan McAleavy Updated for BPF_PERF_OUTPUT. |
| 14 | # 08-Oct-2016 Dina Goldshtein Support filtering by PID and TID. |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 15 | # 28-Dec-2018 Tim Douglas Print flags argument, enable filtering |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 16 | # 06-Jan-2019 Takuma Kume Support filtering by UID |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 17 | |
| 18 | from __future__ import print_function |
Gary Lin | 40fd669 | 2018-02-12 16:51:14 +0800 | [diff] [blame] | 19 | from bcc import ArgString, BPF |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 20 | import argparse |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 21 | import ctypes as ct |
Paul Chaignon | 702de38 | 2018-01-28 13:41:35 +0100 | [diff] [blame] | 22 | from datetime import datetime, timedelta |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 23 | import os |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 24 | |
| 25 | # arguments |
| 26 | examples = """examples: |
| 27 | ./opensnoop # trace all open() syscalls |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 28 | ./opensnoop -T # include timestamps |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 29 | ./opensnoop -U # include UID |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 30 | ./opensnoop -x # only show failed opens |
| 31 | ./opensnoop -p 181 # only trace PID 181 |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 32 | ./opensnoop -t 123 # only trace TID 123 |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 33 | ./opensnoop -u 1000 # only trace UID 1000 |
Paul Chaignon | 702de38 | 2018-01-28 13:41:35 +0100 | [diff] [blame] | 34 | ./opensnoop -d 10 # trace for 10 seconds only |
KarimAllah Ahmed | 765dfe2 | 2016-09-10 12:01:07 +0200 | [diff] [blame] | 35 | ./opensnoop -n main # only print process names containing "main" |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 36 | ./opensnoop -e # show extended fields |
| 37 | ./opensnoop -f O_WRONLY -f O_RDWR # only print calls for writing |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 38 | """ |
| 39 | parser = argparse.ArgumentParser( |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 40 | description="Trace open() syscalls", |
| 41 | formatter_class=argparse.RawDescriptionHelpFormatter, |
| 42 | epilog=examples) |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 43 | parser.add_argument("-T", "--timestamp", action="store_true", |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 44 | help="include timestamp on output") |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 45 | parser.add_argument("-U", "--print-uid", action="store_true", |
| 46 | help="print UID column") |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 47 | parser.add_argument("-x", "--failed", action="store_true", |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 48 | help="only show failed opens") |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 49 | parser.add_argument("-p", "--pid", |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 50 | help="trace this PID only") |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 51 | parser.add_argument("-t", "--tid", |
| 52 | help="trace this TID only") |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 53 | parser.add_argument("-u", "--uid", |
| 54 | help="trace this UID only") |
Paul Chaignon | 702de38 | 2018-01-28 13:41:35 +0100 | [diff] [blame] | 55 | parser.add_argument("-d", "--duration", |
| 56 | help="total duration of trace in seconds") |
KarimAllah Ahmed | 765dfe2 | 2016-09-10 12:01:07 +0200 | [diff] [blame] | 57 | parser.add_argument("-n", "--name", |
Gary Lin | 40fd669 | 2018-02-12 16:51:14 +0800 | [diff] [blame] | 58 | type=ArgString, |
KarimAllah Ahmed | 765dfe2 | 2016-09-10 12:01:07 +0200 | [diff] [blame] | 59 | help="only print process names containing this name") |
Nathan Scott | cf0792f | 2018-02-02 16:56:50 +1100 | [diff] [blame] | 60 | parser.add_argument("--ebpf", action="store_true", |
| 61 | help=argparse.SUPPRESS) |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 62 | parser.add_argument("-e", "--extended_fields", action="store_true", |
| 63 | help="show extended fields") |
| 64 | parser.add_argument("-f", "--flag_filter", action="append", |
| 65 | help="filter on flags argument (e.g., O_WRONLY)") |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 66 | args = parser.parse_args() |
| 67 | debug = 0 |
Paul Chaignon | 702de38 | 2018-01-28 13:41:35 +0100 | [diff] [blame] | 68 | if args.duration: |
| 69 | args.duration = timedelta(seconds=int(args.duration)) |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 70 | flag_filter_mask = 0 |
| 71 | for flag in args.flag_filter or []: |
| 72 | if not flag.startswith('O_'): |
| 73 | exit("Bad flag: %s" % flag) |
| 74 | try: |
| 75 | flag_filter_mask |= getattr(os, flag) |
| 76 | except AttributeError: |
| 77 | exit("Bad flag: %s" % flag) |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 78 | |
| 79 | # define BPF program |
| 80 | bpf_text = """ |
| 81 | #include <uapi/linux/ptrace.h> |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 82 | #include <uapi/linux/limits.h> |
| 83 | #include <linux/sched.h> |
| 84 | |
| 85 | struct val_t { |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 86 | u64 id; |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 87 | char comm[TASK_COMM_LEN]; |
| 88 | const char *fname; |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 89 | int flags; // EXTENDED_STRUCT_MEMBER |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | struct data_t { |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 93 | u64 id; |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 94 | u64 ts; |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 95 | u32 uid; |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 96 | int ret; |
| 97 | char comm[TASK_COMM_LEN]; |
| 98 | char fname[NAME_MAX]; |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 99 | int flags; // EXTENDED_STRUCT_MEMBER |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 100 | }; |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 101 | |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 102 | BPF_HASH(infotmp, u64, struct val_t); |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 103 | BPF_PERF_OUTPUT(events); |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 104 | |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 105 | int trace_entry(struct pt_regs *ctx, int dfd, const char __user *filename, int flags) |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 106 | { |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 107 | struct val_t val = {}; |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 108 | u64 id = bpf_get_current_pid_tgid(); |
| 109 | u32 pid = id >> 32; // PID is higher part |
| 110 | u32 tid = id; // Cast and get the lower part |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 111 | u32 uid = bpf_get_current_uid_gid(); |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 112 | |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 113 | PID_TID_FILTER |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 114 | UID_FILTER |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 115 | FLAGS_FILTER |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 116 | if (bpf_get_current_comm(&val.comm, sizeof(val.comm)) == 0) { |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 117 | val.id = id; |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 118 | val.fname = filename; |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 119 | val.flags = flags; // EXTENDED_STRUCT_MEMBER |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 120 | infotmp.update(&id, &val); |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 121 | } |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 122 | |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 123 | return 0; |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 124 | }; |
| 125 | |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 126 | int trace_return(struct pt_regs *ctx) |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 127 | { |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 128 | u64 id = bpf_get_current_pid_tgid(); |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 129 | struct val_t *valp; |
| 130 | struct data_t data = {}; |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 131 | |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 132 | u64 tsp = bpf_ktime_get_ns(); |
| 133 | |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 134 | valp = infotmp.lookup(&id); |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 135 | if (valp == 0) { |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 136 | // missed entry |
| 137 | return 0; |
| 138 | } |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 139 | bpf_probe_read(&data.comm, sizeof(data.comm), valp->comm); |
| 140 | bpf_probe_read(&data.fname, sizeof(data.fname), (void *)valp->fname); |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 141 | data.id = valp->id; |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 142 | data.ts = tsp / 1000; |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 143 | data.uid = bpf_get_current_uid_gid(); |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 144 | data.flags = valp->flags; // EXTENDED_STRUCT_MEMBER |
Naveen N. Rao | 4afa96a | 2016-05-03 14:54:21 +0530 | [diff] [blame] | 145 | data.ret = PT_REGS_RC(ctx); |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 146 | |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 147 | events.perf_submit(ctx, &data, sizeof(data)); |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 148 | infotmp.delete(&id); |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 149 | |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 150 | return 0; |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 151 | } |
| 152 | """ |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 153 | if args.tid: # TID trumps PID |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 154 | bpf_text = bpf_text.replace('PID_TID_FILTER', |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 155 | 'if (tid != %s) { return 0; }' % args.tid) |
| 156 | elif args.pid: |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 157 | bpf_text = bpf_text.replace('PID_TID_FILTER', |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 158 | 'if (pid != %s) { return 0; }' % args.pid) |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 159 | else: |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 160 | bpf_text = bpf_text.replace('PID_TID_FILTER', '') |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 161 | if args.uid: |
| 162 | bpf_text = bpf_text.replace('UID_FILTER', |
| 163 | 'if (uid != %s) { return 0; }' % args.uid) |
| 164 | else: |
| 165 | bpf_text = bpf_text.replace('UID_FILTER', '') |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 166 | if args.flag_filter: |
| 167 | bpf_text = bpf_text.replace('FLAGS_FILTER', |
| 168 | 'if (!(flags & %d)) { return 0; }' % flag_filter_mask) |
| 169 | else: |
| 170 | bpf_text = bpf_text.replace('FLAGS_FILTER', '') |
| 171 | if not (args.extended_fields or args.flag_filter): |
| 172 | bpf_text = '\n'.join(x for x in bpf_text.split('\n') |
| 173 | if 'EXTENDED_STRUCT_MEMBER' not in x) |
Nathan Scott | cf0792f | 2018-02-02 16:56:50 +1100 | [diff] [blame] | 174 | if debug or args.ebpf: |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 175 | print(bpf_text) |
Nathan Scott | cf0792f | 2018-02-02 16:56:50 +1100 | [diff] [blame] | 176 | if args.ebpf: |
| 177 | exit() |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 178 | |
| 179 | # initialize BPF |
| 180 | b = BPF(text=bpf_text) |
Joel Fernandes | 9af548f | 2018-01-07 11:59:09 -0800 | [diff] [blame] | 181 | b.attach_kprobe(event="do_sys_open", fn_name="trace_entry") |
| 182 | b.attach_kretprobe(event="do_sys_open", fn_name="trace_return") |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 183 | |
| 184 | TASK_COMM_LEN = 16 # linux/sched.h |
| 185 | NAME_MAX = 255 # linux/limits.h |
| 186 | |
| 187 | class Data(ct.Structure): |
| 188 | _fields_ = [ |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 189 | ("id", ct.c_ulonglong), |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 190 | ("ts", ct.c_ulonglong), |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 191 | ("uid", ct.c_uint32), |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 192 | ("ret", ct.c_int), |
| 193 | ("comm", ct.c_char * TASK_COMM_LEN), |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 194 | ("fname", ct.c_char * NAME_MAX), |
| 195 | ("flags", ct.c_int), |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 196 | ] |
| 197 | |
KarimAllah Ahmed | a17d1e8 | 2016-09-10 12:00:32 +0200 | [diff] [blame] | 198 | initial_ts = 0 |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 199 | |
| 200 | # header |
| 201 | if args.timestamp: |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 202 | print("%-14s" % ("TIME(s)"), end="") |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 203 | if args.print_uid: |
| 204 | print("%-6s" % ("UID"), end="") |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 205 | print("%-6s %-16s %4s %3s " % |
| 206 | ("TID" if args.tid else "PID", "COMM", "FD", "ERR"), end="") |
| 207 | if args.extended_fields: |
| 208 | print("%-9s" % ("FLAGS"), end="") |
| 209 | print("PATH") |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 210 | |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 211 | # process event |
| 212 | def print_event(cpu, data, size): |
| 213 | event = ct.cast(data, ct.POINTER(Data)).contents |
KarimAllah Ahmed | a17d1e8 | 2016-09-10 12:00:32 +0200 | [diff] [blame] | 214 | global initial_ts |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 215 | |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 216 | # split return value into FD and errno columns |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 217 | if event.ret >= 0: |
| 218 | fd_s = event.ret |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 219 | err = 0 |
| 220 | else: |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 221 | fd_s = -1 |
| 222 | err = - event.ret |
Brendan Gregg | bedd150 | 2015-09-17 21:52:52 -0700 | [diff] [blame] | 223 | |
KarimAllah Ahmed | a17d1e8 | 2016-09-10 12:00:32 +0200 | [diff] [blame] | 224 | if not initial_ts: |
| 225 | initial_ts = event.ts |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 226 | |
KarimAllah Ahmed | a17d1e8 | 2016-09-10 12:00:32 +0200 | [diff] [blame] | 227 | if args.failed and (event.ret >= 0): |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 228 | return |
| 229 | |
Gary Lin | 40fd669 | 2018-02-12 16:51:14 +0800 | [diff] [blame] | 230 | if args.name and bytes(args.name) not in event.comm: |
KarimAllah Ahmed | 765dfe2 | 2016-09-10 12:01:07 +0200 | [diff] [blame] | 231 | return |
| 232 | |
Alexei Starovoitov | bdf0773 | 2016-01-14 10:09:20 -0800 | [diff] [blame] | 233 | if args.timestamp: |
KarimAllah Ahmed | a17d1e8 | 2016-09-10 12:00:32 +0200 | [diff] [blame] | 234 | delta = event.ts - initial_ts |
| 235 | print("%-14.9f" % (float(delta) / 1000000), end="") |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 236 | |
takumakume | f899037 | 2019-01-02 17:12:14 +0900 | [diff] [blame^] | 237 | if args.print_uid: |
| 238 | print("%-6d" % event.uid, end="") |
| 239 | |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 240 | print("%-6d %-16s %4d %3d " % |
Dina Goldshtein | 99a3bc8 | 2016-10-10 21:37:36 +0300 | [diff] [blame] | 241 | (event.id & 0xffffffff if args.tid else event.id >> 32, |
Tim Douglas | d3583a8 | 2018-12-30 13:18:54 -0500 | [diff] [blame] | 242 | event.comm.decode('utf-8', 'replace'), fd_s, err), end="") |
| 243 | |
| 244 | if args.extended_fields: |
| 245 | print("%08o " % event.flags, end="") |
| 246 | |
| 247 | print(event.fname.decode('utf-8', 'replace')) |
mcaleavya | 3c446c7 | 2016-04-29 13:38:51 +0100 | [diff] [blame] | 248 | |
| 249 | # loop with callback to print_event |
Mark Drayton | 5f5687e | 2017-02-20 18:13:03 +0000 | [diff] [blame] | 250 | b["events"].open_perf_buffer(print_event, page_cnt=64) |
Paul Chaignon | 702de38 | 2018-01-28 13:41:35 +0100 | [diff] [blame] | 251 | start_time = datetime.now() |
| 252 | while not args.duration or datetime.now() - start_time < args.duration: |
Jerome Marchand | 5167127 | 2018-12-19 01:57:24 +0100 | [diff] [blame] | 253 | try: |
| 254 | b.perf_buffer_poll() |
| 255 | except KeyboardInterrupt: |
| 256 | exit() |