Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 1 | ================ |
| 2 | bpftool-prog |
| 3 | ================ |
| 4 | ------------------------------------------------------------------------------- |
| 5 | tool for inspection and simple manipulation of eBPF progs |
| 6 | ------------------------------------------------------------------------------- |
| 7 | |
| 8 | :Manual section: 8 |
| 9 | |
| 10 | SYNOPSIS |
| 11 | ======== |
| 12 | |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 13 | **bpftool** [*OPTIONS*] **prog** *COMMAND* |
| 14 | |
Prashant Bhole | c541b73 | 2017-11-08 13:55:49 +0900 | [diff] [blame] | 15 | *OPTIONS* := { { **-j** | **--json** } [{ **-p** | **--pretty** }] | { **-f** | **--bpffs** } } |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 16 | |
| 17 | *COMMANDS* := |
Stanislav Fomichev | 7738099 | 2018-11-09 08:21:44 -0800 | [diff] [blame] | 18 | { **show** | **list** | **dump xlated** | **dump jited** | **pin** | **load** |
| 19 | | **loadall** | **help** } |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 20 | |
Prashant Bhole | a5f2d08 | 2019-02-06 10:47:23 +0900 | [diff] [blame] | 21 | PROG COMMANDS |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 22 | ============= |
| 23 | |
Jakub Kicinski | 6ebe6db | 2018-01-02 14:48:36 -0800 | [diff] [blame] | 24 | | **bpftool** **prog { show | list }** [*PROG*] |
Martin KaFai Lau | b053b43 | 2018-12-07 16:42:32 -0800 | [diff] [blame] | 25 | | **bpftool** **prog dump xlated** *PROG* [{**file** *FILE* | **opcodes** | **visual** | **linum**}] |
| 26 | | **bpftool** **prog dump jited** *PROG* [{**file** *FILE* | **opcodes** | **linum**}] |
Quentin Monnet | 47ff7ac | 2017-10-23 09:24:15 -0700 | [diff] [blame] | 27 | | **bpftool** **prog pin** *PROG* *FILE* |
Quentin Monnet | 9a48788 | 2019-04-12 14:29:36 +0100 | [diff] [blame] | 28 | | **bpftool** **prog { load | loadall }** *OBJ* *PATH* [**type** *TYPE*] [**map** {**idx** *IDX* | **name** *NAME*} *MAP*] [**dev** *NAME*] [**pinmaps** *MAP_DIR*] |
Quentin Monnet | 30da46b | 2018-12-05 10:28:24 +0000 | [diff] [blame] | 29 | | **bpftool** **prog attach** *PROG* *ATTACH_TYPE* [*MAP*] |
| 30 | | **bpftool** **prog detach** *PROG* *ATTACH_TYPE* [*MAP*] |
| 31 | | **bpftool** **prog tracelog** |
Quentin Monnet | 47ff7ac | 2017-10-23 09:24:15 -0700 | [diff] [blame] | 32 | | **bpftool** **prog help** |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 33 | | |
Jakub Kicinski | 3ff5a4d | 2018-07-10 14:43:07 -0700 | [diff] [blame] | 34 | | *MAP* := { **id** *MAP_ID* | **pinned** *FILE* } |
Quentin Monnet | 47ff7ac | 2017-10-23 09:24:15 -0700 | [diff] [blame] | 35 | | *PROG* := { **id** *PROG_ID* | **pinned** *FILE* | **tag** *PROG_TAG* } |
Jakub Kicinski | 49f2cba | 2018-07-10 14:43:00 -0700 | [diff] [blame] | 36 | | *TYPE* := { |
| 37 | | **socket** | **kprobe** | **kretprobe** | **classifier** | **action** | |
| 38 | | **tracepoint** | **raw_tracepoint** | **xdp** | **perf_event** | **cgroup/skb** | |
| 39 | | **cgroup/sock** | **cgroup/dev** | **lwt_in** | **lwt_out** | **lwt_xmit** | |
| 40 | | **lwt_seg6local** | **sockops** | **sk_skb** | **sk_msg** | **lirc_mode2** | |
| 41 | | **cgroup/bind4** | **cgroup/bind6** | **cgroup/post_bind4** | **cgroup/post_bind6** | |
Andrey Ignatov | f25377e | 2019-04-16 13:13:47 -0700 | [diff] [blame] | 42 | | **cgroup/connect4** | **cgroup/connect6** | **cgroup/sendmsg4** | **cgroup/sendmsg6** | |
| 43 | | **cgroup/sysctl** |
Jakub Kicinski | 49f2cba | 2018-07-10 14:43:00 -0700 | [diff] [blame] | 44 | | } |
Stanislav Fomichev | 092f089 | 2018-11-09 08:21:46 -0800 | [diff] [blame] | 45 | | *ATTACH_TYPE* := { |
Alban Crequy | a5d9265 | 2019-02-19 15:13:32 +0100 | [diff] [blame] | 46 | | **msg_verdict** | **stream_verdict** | **stream_parser** | **flow_dissector** |
Stanislav Fomichev | 092f089 | 2018-11-09 08:21:46 -0800 | [diff] [blame] | 47 | | } |
Jakub Kicinski | 49f2cba | 2018-07-10 14:43:00 -0700 | [diff] [blame] | 48 | |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 49 | |
| 50 | DESCRIPTION |
| 51 | =========== |
Jakub Kicinski | 6ebe6db | 2018-01-02 14:48:36 -0800 | [diff] [blame] | 52 | **bpftool prog { show | list }** [*PROG*] |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 53 | Show information about loaded programs. If *PROG* is |
| 54 | specified show information only about given program, otherwise |
| 55 | list all programs currently loaded on the system. |
| 56 | |
| 57 | Output will start with program ID followed by program type and |
| 58 | zero or more named attributes (depending on kernel version). |
| 59 | |
Quentin Monnet | 25df480 | 2019-04-12 14:29:38 +0100 | [diff] [blame] | 60 | Since Linux 5.1 the kernel can collect statistics on BPF |
| 61 | programs (such as the total time spent running the program, |
| 62 | and the number of times it was run). If available, bpftool |
| 63 | shows such statistics. However, the kernel does not collect |
| 64 | them by defaults, as it slightly impacts performance on each |
| 65 | program run. Activation or deactivation of the feature is |
| 66 | performed via the **kernel.bpf_stats_enabled** sysctl knob. |
| 67 | |
Martin KaFai Lau | b053b43 | 2018-12-07 16:42:32 -0800 | [diff] [blame] | 68 | **bpftool prog dump xlated** *PROG* [{ **file** *FILE* | **opcodes** | **visual** | **linum** }] |
Jiong Wang | b6c1ced | 2018-03-01 18:01:22 -0800 | [diff] [blame] | 69 | Dump eBPF instructions of the program from the kernel. By |
| 70 | default, eBPF will be disassembled and printed to standard |
| 71 | output in human-readable format. In this case, **opcodes** |
| 72 | controls if raw opcodes should be printed as well. |
Jakub Kicinski | c9c3599 | 2017-10-09 10:30:13 -0700 | [diff] [blame] | 73 | |
Jiong Wang | b6c1ced | 2018-03-01 18:01:22 -0800 | [diff] [blame] | 74 | If **file** is specified, the binary image will instead be |
| 75 | written to *FILE*. |
| 76 | |
| 77 | If **visual** is specified, control flow graph (CFG) will be |
| 78 | built instead, and eBPF instructions will be presented with |
| 79 | CFG in DOT format, on standard output. |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 80 | |
Martin KaFai Lau | b053b43 | 2018-12-07 16:42:32 -0800 | [diff] [blame] | 81 | If the prog has line_info available, the source line will |
| 82 | be displayed by default. If **linum** is specified, |
| 83 | the filename, line number and line column will also be |
| 84 | displayed on top of the source line. |
Martin KaFai Lau | 10a5ce9 | 2018-12-10 10:53:24 -0800 | [diff] [blame] | 85 | |
Martin KaFai Lau | b053b43 | 2018-12-07 16:42:32 -0800 | [diff] [blame] | 86 | **bpftool prog dump jited** *PROG* [{ **file** *FILE* | **opcodes** | **linum** }] |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 87 | Dump jited image (host machine code) of the program. |
| 88 | If *FILE* is specified image will be written to a file, |
| 89 | otherwise it will be disassembled and printed to stdout. |
| 90 | |
| 91 | **opcodes** controls if raw opcodes will be printed. |
| 92 | |
Martin KaFai Lau | b053b43 | 2018-12-07 16:42:32 -0800 | [diff] [blame] | 93 | If the prog has line_info available, the source line will |
| 94 | be displayed by default. If **linum** is specified, |
| 95 | the filename, line number and line column will also be |
| 96 | displayed on top of the source line. |
Martin KaFai Lau | 10a5ce9 | 2018-12-10 10:53:24 -0800 | [diff] [blame] | 97 | |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 98 | **bpftool prog pin** *PROG* *FILE* |
| 99 | Pin program *PROG* as *FILE*. |
| 100 | |
Quentin Monnet | 882731e | 2018-10-20 23:01:48 +0100 | [diff] [blame] | 101 | Note: *FILE* must be located in *bpffs* mount. It must not |
| 102 | contain a dot character ('.'), which is reserved for future |
| 103 | extensions of *bpffs*. |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 104 | |
Stanislav Fomichev | 3767a94 | 2018-11-09 08:21:45 -0800 | [diff] [blame] | 105 | **bpftool prog { load | loadall }** *OBJ* *PATH* [**type** *TYPE*] [**map** {**idx** *IDX* | **name** *NAME*} *MAP*] [**dev** *NAME*] [**pinmaps** *MAP_DIR*] |
Stanislav Fomichev | 7738099 | 2018-11-09 08:21:44 -0800 | [diff] [blame] | 106 | Load bpf program(s) from binary *OBJ* and pin as *PATH*. |
| 107 | **bpftool prog load** pins only the first program from the |
| 108 | *OBJ* as *PATH*. **bpftool prog loadall** pins all programs |
| 109 | from the *OBJ* under *PATH* directory. |
Jakub Kicinski | 49f2cba | 2018-07-10 14:43:00 -0700 | [diff] [blame] | 110 | **type** is optional, if not specified program type will be |
| 111 | inferred from section names. |
Jakub Kicinski | 3ff5a4d | 2018-07-10 14:43:07 -0700 | [diff] [blame] | 112 | By default bpftool will create new maps as declared in the ELF |
| 113 | object being loaded. **map** parameter allows for the reuse |
| 114 | of existing maps. It can be specified multiple times, each |
| 115 | time for a different map. *IDX* refers to index of the map |
| 116 | to be replaced in the ELF file counting from 0, while *NAME* |
| 117 | allows to replace a map by name. *MAP* specifies the map to |
| 118 | use, referring to it by **id** or through a **pinned** file. |
Jakub Kicinski | ba6dd67 | 2018-07-10 14:42:58 -0700 | [diff] [blame] | 119 | If **dev** *NAME* is specified program will be loaded onto |
| 120 | given networking device (offload). |
Stanislav Fomichev | 3767a94 | 2018-11-09 08:21:45 -0800 | [diff] [blame] | 121 | Optional **pinmaps** argument can be provided to pin all |
| 122 | maps under *MAP_DIR* directory. |
Roman Gushchin | 49a086c | 2017-12-13 15:18:53 +0000 | [diff] [blame] | 123 | |
Stanislav Fomichev | 7738099 | 2018-11-09 08:21:44 -0800 | [diff] [blame] | 124 | Note: *PATH* must be located in *bpffs* mount. It must not |
Quentin Monnet | 882731e | 2018-10-20 23:01:48 +0100 | [diff] [blame] | 125 | contain a dot character ('.'), which is reserved for future |
| 126 | extensions of *bpffs*. |
Roman Gushchin | 49a086c | 2017-12-13 15:18:53 +0000 | [diff] [blame] | 127 | |
Stanislav Fomichev | 092f089 | 2018-11-09 08:21:46 -0800 | [diff] [blame] | 128 | **bpftool prog attach** *PROG* *ATTACH_TYPE* [*MAP*] |
| 129 | Attach bpf program *PROG* (with type specified by |
| 130 | *ATTACH_TYPE*). Most *ATTACH_TYPEs* require a *MAP* |
| 131 | parameter, with the exception of *flow_dissector* which is |
| 132 | attached to current networking name space. |
John Fastabend | b7d3826 | 2018-10-15 11:19:50 -0700 | [diff] [blame] | 133 | |
Stanislav Fomichev | 092f089 | 2018-11-09 08:21:46 -0800 | [diff] [blame] | 134 | **bpftool prog detach** *PROG* *ATTACH_TYPE* [*MAP*] |
| 135 | Detach bpf program *PROG* (with type specified by |
| 136 | *ATTACH_TYPE*). Most *ATTACH_TYPEs* require a *MAP* |
| 137 | parameter, with the exception of *flow_dissector* which is |
| 138 | detached from the current networking name space. |
John Fastabend | b7d3826 | 2018-10-15 11:19:50 -0700 | [diff] [blame] | 139 | |
Quentin Monnet | 30da46b | 2018-12-05 10:28:24 +0000 | [diff] [blame] | 140 | **bpftool prog tracelog** |
| 141 | Dump the trace pipe of the system to the console (stdout). |
| 142 | Hit <Ctrl+C> to stop printing. BPF programs can write to this |
| 143 | trace pipe at runtime with the **bpf_trace_printk()** helper. |
| 144 | This should be used only for debugging purposes. For |
| 145 | streaming data from BPF programs to user space, one can use |
| 146 | perf events (see also **bpftool-map**\ (8)). |
| 147 | |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 148 | **bpftool prog help** |
| 149 | Print short help message. |
| 150 | |
Quentin Monnet | a2bc2e5 | 2017-10-23 09:24:06 -0700 | [diff] [blame] | 151 | OPTIONS |
| 152 | ======= |
| 153 | -h, --help |
| 154 | Print short generic help message (similar to **bpftool help**). |
| 155 | |
Quentin Monnet | 88b3eed | 2019-04-12 14:29:37 +0100 | [diff] [blame] | 156 | -V, --version |
Quentin Monnet | a2bc2e5 | 2017-10-23 09:24:06 -0700 | [diff] [blame] | 157 | Print version number (similar to **bpftool version**). |
| 158 | |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 159 | -j, --json |
| 160 | Generate JSON output. For commands that cannot produce JSON, this |
| 161 | option has no effect. |
| 162 | |
| 163 | -p, --pretty |
| 164 | Generate human-readable JSON output. Implies **-j**. |
| 165 | |
Prashant Bhole | c541b73 | 2017-11-08 13:55:49 +0900 | [diff] [blame] | 166 | -f, --bpffs |
Quentin Monnet | a8bfd2b | 2018-11-08 11:52:26 +0000 | [diff] [blame] | 167 | When showing BPF programs, show file names of pinned |
| 168 | programs. |
Prashant Bhole | c541b73 | 2017-11-08 13:55:49 +0900 | [diff] [blame] | 169 | |
Quentin Monnet | bc6cd66 | 2018-12-14 13:55:57 +0000 | [diff] [blame] | 170 | -m, --mapcompat |
| 171 | Allow loading maps with unknown map definitions. |
| 172 | |
Quentin Monnet | 3322130 | 2018-12-18 10:13:19 +0000 | [diff] [blame] | 173 | -n, --nomount |
| 174 | Do not automatically attempt to mount any virtual file system |
| 175 | (such as tracefs or BPF virtual file system) when necessary. |
| 176 | |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 177 | EXAMPLES |
| 178 | ======== |
| 179 | **# bpftool prog show** |
Quentin Monnet | 32870ba | 2018-12-14 13:55:58 +0000 | [diff] [blame] | 180 | |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 181 | :: |
| 182 | |
Alexei Starovoitov | 88ad472 | 2019-02-25 14:28:42 -0800 | [diff] [blame] | 183 | 10: xdp name some_prog tag 005a3d2123620c8b gpl run_time_ns 81632 run_cnt 10 |
Quentin Monnet | 32870ba | 2018-12-14 13:55:58 +0000 | [diff] [blame] | 184 | loaded_at 2017-09-29T20:11:00+0000 uid 0 |
| 185 | xlated 528B jited 370B memlock 4096B map_ids 10 |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 186 | |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 187 | **# bpftool --json --pretty prog show** |
| 188 | |
| 189 | :: |
| 190 | |
Quentin Monnet | 32870ba | 2018-12-14 13:55:58 +0000 | [diff] [blame] | 191 | [{ |
| 192 | "id": 10, |
| 193 | "type": "xdp", |
| 194 | "tag": "005a3d2123620c8b", |
| 195 | "gpl_compatible": true, |
Alexei Starovoitov | 88ad472 | 2019-02-25 14:28:42 -0800 | [diff] [blame] | 196 | "run_time_ns": 81632, |
| 197 | "run_cnt": 10, |
Quentin Monnet | 32870ba | 2018-12-14 13:55:58 +0000 | [diff] [blame] | 198 | "loaded_at": 1506715860, |
| 199 | "uid": 0, |
| 200 | "bytes_xlated": 528, |
| 201 | "jited": true, |
| 202 | "bytes_jited": 370, |
| 203 | "bytes_memlock": 4096, |
| 204 | "map_ids": [10 |
| 205 | ] |
| 206 | } |
| 207 | ] |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 208 | |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 209 | | |
| 210 | | **# bpftool prog dump xlated id 10 file /tmp/t** |
| 211 | | **# ls -l /tmp/t** |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 212 | |
| 213 | :: |
| 214 | |
Quentin Monnet | 32870ba | 2018-12-14 13:55:58 +0000 | [diff] [blame] | 215 | -rw------- 1 root root 560 Jul 22 01:42 /tmp/t |
| 216 | |
| 217 | **# bpftool prog dump jited tag 005a3d2123620c8b** |
| 218 | |
| 219 | :: |
| 220 | |
| 221 | 0: push %rbp |
| 222 | 1: mov %rsp,%rbp |
| 223 | 2: sub $0x228,%rsp |
| 224 | 3: sub $0x28,%rbp |
| 225 | 4: mov %rbx,0x0(%rbp) |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 226 | |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 227 | | |
| 228 | | **# mount -t bpf none /sys/fs/bpf/** |
| 229 | | **# bpftool prog pin id 10 /sys/fs/bpf/prog** |
Roman Gushchin | 49a086c | 2017-12-13 15:18:53 +0000 | [diff] [blame] | 230 | | **# bpftool prog load ./my_prog.o /sys/fs/bpf/prog2** |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 231 | | **# ls -l /sys/fs/bpf/** |
Quentin Monnet | 0641c3c | 2017-10-23 09:24:16 -0700 | [diff] [blame] | 232 | |
| 233 | :: |
| 234 | |
Quentin Monnet | 32870ba | 2018-12-14 13:55:58 +0000 | [diff] [blame] | 235 | -rw------- 1 root root 0 Jul 22 01:43 prog |
| 236 | -rw------- 1 root root 0 Jul 22 01:44 prog2 |
| 237 | |
| 238 | **# bpftool prog dump jited pinned /sys/fs/bpf/prog opcodes** |
| 239 | |
| 240 | :: |
| 241 | |
| 242 | 0: push %rbp |
| 243 | 55 |
| 244 | 1: mov %rsp,%rbp |
| 245 | 48 89 e5 |
| 246 | 4: sub $0x228,%rsp |
| 247 | 48 81 ec 28 02 00 00 |
| 248 | b: sub $0x28,%rbp |
| 249 | 48 83 ed 28 |
| 250 | f: mov %rbx,0x0(%rbp) |
| 251 | 48 89 5d 00 |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 252 | |
Jakub Kicinski | 3ff5a4d | 2018-07-10 14:43:07 -0700 | [diff] [blame] | 253 | | |
| 254 | | **# bpftool prog load xdp1_kern.o /sys/fs/bpf/xdp1 type xdp map name rxcnt id 7** |
| 255 | | **# bpftool prog show pinned /sys/fs/bpf/xdp1** |
Quentin Monnet | 32870ba | 2018-12-14 13:55:58 +0000 | [diff] [blame] | 256 | |
| 257 | :: |
| 258 | |
| 259 | 9: xdp name xdp_prog1 tag 539ec6ce11b52f98 gpl |
| 260 | loaded_at 2018-06-25T16:17:31-0700 uid 0 |
| 261 | xlated 488B jited 336B memlock 4096B map_ids 7 |
| 262 | |
| 263 | **# rm /sys/fs/bpf/xdp1** |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 264 | |
| 265 | SEE ALSO |
| 266 | ======== |
Quentin Monnet | f98e46a | 2018-11-08 11:52:28 +0000 | [diff] [blame] | 267 | **bpf**\ (2), |
| 268 | **bpf-helpers**\ (7), |
| 269 | **bpftool**\ (8), |
| 270 | **bpftool-map**\ (8), |
| 271 | **bpftool-cgroup**\ (8), |
Quentin Monnet | 49eb7ab | 2019-01-17 15:27:50 +0000 | [diff] [blame] | 272 | **bpftool-feature**\ (8), |
Quentin Monnet | f98e46a | 2018-11-08 11:52:28 +0000 | [diff] [blame] | 273 | **bpftool-net**\ (8), |
Andrii Nakryiko | ca25333 | 2019-04-25 15:30:09 -0700 | [diff] [blame] | 274 | **bpftool-perf**\ (8), |
| 275 | **bpftool-btf**\ (8) |