blob: bb1aeb98b6dad6d4655fb8b4558d2794401b2e2e [file] [log] [blame]
Jakub Kicinskiff69c212017-10-04 20:10:05 -07001================
2bpftool-prog
3================
4-------------------------------------------------------------------------------
5tool for inspection and simple manipulation of eBPF progs
6-------------------------------------------------------------------------------
7
8:Manual section: 8
9
10SYNOPSIS
11========
12
Quentin Monnet0641c3c2017-10-23 09:24:16 -070013 **bpftool** [*OPTIONS*] **prog** *COMMAND*
14
Prashant Bholec541b732017-11-08 13:55:49 +090015 *OPTIONS* := { { **-j** | **--json** } [{ **-p** | **--pretty** }] | { **-f** | **--bpffs** } }
Quentin Monnet0641c3c2017-10-23 09:24:16 -070016
17 *COMMANDS* :=
Stanislav Fomichev77380992018-11-09 08:21:44 -080018 { **show** | **list** | **dump xlated** | **dump jited** | **pin** | **load**
19 | **loadall** | **help** }
Quentin Monnet0641c3c2017-10-23 09:24:16 -070020
21MAP COMMANDS
22=============
23
Jakub Kicinski6ebe6db2018-01-02 14:48:36 -080024| **bpftool** **prog { show | list }** [*PROG*]
Martin KaFai Laub053b432018-12-07 16:42:32 -080025| **bpftool** **prog dump xlated** *PROG* [{**file** *FILE* | **opcodes** | **visual** | **linum**}]
26| **bpftool** **prog dump jited** *PROG* [{**file** *FILE* | **opcodes** | **linum**}]
Quentin Monnet47ff7ac2017-10-23 09:24:15 -070027| **bpftool** **prog pin** *PROG* *FILE*
Stanislav Fomichev77380992018-11-09 08:21:44 -080028| **bpftool** **prog { load | loadall }** *OBJ* *PATH* [**type** *TYPE*] [**map** {**idx** *IDX* | **name** *NAME*} *MAP*] [**dev** *NAME*]
Quentin Monnet30da46b2018-12-05 10:28:24 +000029| **bpftool** **prog attach** *PROG* *ATTACH_TYPE* [*MAP*]
30| **bpftool** **prog detach** *PROG* *ATTACH_TYPE* [*MAP*]
31| **bpftool** **prog tracelog**
Quentin Monnet47ff7ac2017-10-23 09:24:15 -070032| **bpftool** **prog help**
Jakub Kicinskiff69c212017-10-04 20:10:05 -070033|
Jakub Kicinski3ff5a4d2018-07-10 14:43:07 -070034| *MAP* := { **id** *MAP_ID* | **pinned** *FILE* }
Quentin Monnet47ff7ac2017-10-23 09:24:15 -070035| *PROG* := { **id** *PROG_ID* | **pinned** *FILE* | **tag** *PROG_TAG* }
Jakub Kicinski49f2cba2018-07-10 14:43:00 -070036| *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** |
42| **cgroup/connect4** | **cgroup/connect6** | **cgroup/sendmsg4** | **cgroup/sendmsg6**
43| }
Stanislav Fomichev092f0892018-11-09 08:21:46 -080044| *ATTACH_TYPE* := {
45| **msg_verdict** | **skb_verdict** | **skb_parse** | **flow_dissector**
46| }
Jakub Kicinski49f2cba2018-07-10 14:43:00 -070047
Jakub Kicinskiff69c212017-10-04 20:10:05 -070048
49DESCRIPTION
50===========
Jakub Kicinski6ebe6db2018-01-02 14:48:36 -080051 **bpftool prog { show | list }** [*PROG*]
Jakub Kicinskiff69c212017-10-04 20:10:05 -070052 Show information about loaded programs. If *PROG* is
53 specified show information only about given program, otherwise
54 list all programs currently loaded on the system.
55
56 Output will start with program ID followed by program type and
57 zero or more named attributes (depending on kernel version).
58
Martin KaFai Laub053b432018-12-07 16:42:32 -080059 **bpftool prog dump xlated** *PROG* [{ **file** *FILE* | **opcodes** | **visual** | **linum** }]
Jiong Wangb6c1ced2018-03-01 18:01:22 -080060 Dump eBPF instructions of the program from the kernel. By
61 default, eBPF will be disassembled and printed to standard
62 output in human-readable format. In this case, **opcodes**
63 controls if raw opcodes should be printed as well.
Jakub Kicinskic9c35992017-10-09 10:30:13 -070064
Jiong Wangb6c1ced2018-03-01 18:01:22 -080065 If **file** is specified, the binary image will instead be
66 written to *FILE*.
67
68 If **visual** is specified, control flow graph (CFG) will be
69 built instead, and eBPF instructions will be presented with
70 CFG in DOT format, on standard output.
Jakub Kicinskiff69c212017-10-04 20:10:05 -070071
Martin KaFai Laub053b432018-12-07 16:42:32 -080072 If the prog has line_info available, the source line will
73 be displayed by default. If **linum** is specified,
74 the filename, line number and line column will also be
75 displayed on top of the source line.
Martin KaFai Lau10a5ce92018-12-10 10:53:24 -080076
Martin KaFai Laub053b432018-12-07 16:42:32 -080077 **bpftool prog dump jited** *PROG* [{ **file** *FILE* | **opcodes** | **linum** }]
Jakub Kicinskiff69c212017-10-04 20:10:05 -070078 Dump jited image (host machine code) of the program.
79 If *FILE* is specified image will be written to a file,
80 otherwise it will be disassembled and printed to stdout.
81
82 **opcodes** controls if raw opcodes will be printed.
83
Martin KaFai Laub053b432018-12-07 16:42:32 -080084 If the prog has line_info available, the source line will
85 be displayed by default. If **linum** is specified,
86 the filename, line number and line column will also be
87 displayed on top of the source line.
Martin KaFai Lau10a5ce92018-12-10 10:53:24 -080088
Jakub Kicinskiff69c212017-10-04 20:10:05 -070089 **bpftool prog pin** *PROG* *FILE*
90 Pin program *PROG* as *FILE*.
91
Quentin Monnet882731e2018-10-20 23:01:48 +010092 Note: *FILE* must be located in *bpffs* mount. It must not
93 contain a dot character ('.'), which is reserved for future
94 extensions of *bpffs*.
Jakub Kicinskiff69c212017-10-04 20:10:05 -070095
Stanislav Fomichev3767a942018-11-09 08:21:45 -080096 **bpftool prog { load | loadall }** *OBJ* *PATH* [**type** *TYPE*] [**map** {**idx** *IDX* | **name** *NAME*} *MAP*] [**dev** *NAME*] [**pinmaps** *MAP_DIR*]
Stanislav Fomichev77380992018-11-09 08:21:44 -080097 Load bpf program(s) from binary *OBJ* and pin as *PATH*.
98 **bpftool prog load** pins only the first program from the
99 *OBJ* as *PATH*. **bpftool prog loadall** pins all programs
100 from the *OBJ* under *PATH* directory.
Jakub Kicinski49f2cba2018-07-10 14:43:00 -0700101 **type** is optional, if not specified program type will be
102 inferred from section names.
Jakub Kicinski3ff5a4d2018-07-10 14:43:07 -0700103 By default bpftool will create new maps as declared in the ELF
104 object being loaded. **map** parameter allows for the reuse
105 of existing maps. It can be specified multiple times, each
106 time for a different map. *IDX* refers to index of the map
107 to be replaced in the ELF file counting from 0, while *NAME*
108 allows to replace a map by name. *MAP* specifies the map to
109 use, referring to it by **id** or through a **pinned** file.
Jakub Kicinskiba6dd672018-07-10 14:42:58 -0700110 If **dev** *NAME* is specified program will be loaded onto
111 given networking device (offload).
Stanislav Fomichev3767a942018-11-09 08:21:45 -0800112 Optional **pinmaps** argument can be provided to pin all
113 maps under *MAP_DIR* directory.
Roman Gushchin49a086c2017-12-13 15:18:53 +0000114
Stanislav Fomichev77380992018-11-09 08:21:44 -0800115 Note: *PATH* must be located in *bpffs* mount. It must not
Quentin Monnet882731e2018-10-20 23:01:48 +0100116 contain a dot character ('.'), which is reserved for future
117 extensions of *bpffs*.
Roman Gushchin49a086c2017-12-13 15:18:53 +0000118
Stanislav Fomichev092f0892018-11-09 08:21:46 -0800119 **bpftool prog attach** *PROG* *ATTACH_TYPE* [*MAP*]
120 Attach bpf program *PROG* (with type specified by
121 *ATTACH_TYPE*). Most *ATTACH_TYPEs* require a *MAP*
122 parameter, with the exception of *flow_dissector* which is
123 attached to current networking name space.
John Fastabendb7d38262018-10-15 11:19:50 -0700124
Stanislav Fomichev092f0892018-11-09 08:21:46 -0800125 **bpftool prog detach** *PROG* *ATTACH_TYPE* [*MAP*]
126 Detach bpf program *PROG* (with type specified by
127 *ATTACH_TYPE*). Most *ATTACH_TYPEs* require a *MAP*
128 parameter, with the exception of *flow_dissector* which is
129 detached from the current networking name space.
John Fastabendb7d38262018-10-15 11:19:50 -0700130
Quentin Monnet30da46b2018-12-05 10:28:24 +0000131 **bpftool prog tracelog**
132 Dump the trace pipe of the system to the console (stdout).
133 Hit <Ctrl+C> to stop printing. BPF programs can write to this
134 trace pipe at runtime with the **bpf_trace_printk()** helper.
135 This should be used only for debugging purposes. For
136 streaming data from BPF programs to user space, one can use
137 perf events (see also **bpftool-map**\ (8)).
138
Jakub Kicinskiff69c212017-10-04 20:10:05 -0700139 **bpftool prog help**
140 Print short help message.
141
Quentin Monneta2bc2e52017-10-23 09:24:06 -0700142OPTIONS
143=======
144 -h, --help
145 Print short generic help message (similar to **bpftool help**).
146
147 -v, --version
148 Print version number (similar to **bpftool version**).
149
Quentin Monnet0641c3c2017-10-23 09:24:16 -0700150 -j, --json
151 Generate JSON output. For commands that cannot produce JSON, this
152 option has no effect.
153
154 -p, --pretty
155 Generate human-readable JSON output. Implies **-j**.
156
Prashant Bholec541b732017-11-08 13:55:49 +0900157 -f, --bpffs
Quentin Monneta8bfd2b2018-11-08 11:52:26 +0000158 When showing BPF programs, show file names of pinned
159 programs.
Prashant Bholec541b732017-11-08 13:55:49 +0900160
Jakub Kicinskiff69c212017-10-04 20:10:05 -0700161EXAMPLES
162========
163**# bpftool prog show**
164::
165
Jiri Olsa9b984a22018-04-26 10:18:01 +0200166 10: xdp name some_prog tag 005a3d2123620c8b gpl
Jakub Kicinskiff69c212017-10-04 20:10:05 -0700167 loaded_at Sep 29/20:11 uid 0
168 xlated 528B jited 370B memlock 4096B map_ids 10
169
Quentin Monnet0641c3c2017-10-23 09:24:16 -0700170**# bpftool --json --pretty prog show**
171
172::
173
174 {
175 "programs": [{
176 "id": 10,
177 "type": "xdp",
178 "tag": "005a3d2123620c8b",
Jiri Olsa9b984a22018-04-26 10:18:01 +0200179 "gpl_compatible": true,
Quentin Monnet0641c3c2017-10-23 09:24:16 -0700180 "loaded_at": "Sep 29/20:11",
181 "uid": 0,
182 "bytes_xlated": 528,
183 "jited": true,
184 "bytes_jited": 370,
185 "bytes_memlock": 4096,
186 "map_ids": [10
187 ]
188 }
189 ]
190 }
191
Jakub Kicinskiff69c212017-10-04 20:10:05 -0700192|
193| **# bpftool prog dump xlated id 10 file /tmp/t**
194| **# ls -l /tmp/t**
195| -rw------- 1 root root 560 Jul 22 01:42 /tmp/t
196
Quentin Monnet0641c3c2017-10-23 09:24:16 -0700197**# bpftool prog dum jited tag 005a3d2123620c8b**
Jakub Kicinskiff69c212017-10-04 20:10:05 -0700198
199::
200
201 push %rbp
202 mov %rsp,%rbp
203 sub $0x228,%rsp
204 sub $0x28,%rbp
205 mov %rbx,0x0(%rbp)
206
Quentin Monnet0641c3c2017-10-23 09:24:16 -0700207|
208| **# mount -t bpf none /sys/fs/bpf/**
209| **# bpftool prog pin id 10 /sys/fs/bpf/prog**
Roman Gushchin49a086c2017-12-13 15:18:53 +0000210| **# bpftool prog load ./my_prog.o /sys/fs/bpf/prog2**
Quentin Monnet0641c3c2017-10-23 09:24:16 -0700211| **# ls -l /sys/fs/bpf/**
212| -rw------- 1 root root 0 Jul 22 01:43 prog
Roman Gushchin49a086c2017-12-13 15:18:53 +0000213| -rw------- 1 root root 0 Jul 22 01:44 prog2
Quentin Monnet0641c3c2017-10-23 09:24:16 -0700214
215**# bpftool prog dum jited pinned /sys/fs/bpf/prog opcodes**
216
217::
218
219 push %rbp
220 55
221 mov %rsp,%rbp
222 48 89 e5
223 sub $0x228,%rsp
224 48 81 ec 28 02 00 00
225 sub $0x28,%rbp
226 48 83 ed 28
227 mov %rbx,0x0(%rbp)
228 48 89 5d 00
Jakub Kicinskiff69c212017-10-04 20:10:05 -0700229
Jakub Kicinski3ff5a4d2018-07-10 14:43:07 -0700230|
231| **# bpftool prog load xdp1_kern.o /sys/fs/bpf/xdp1 type xdp map name rxcnt id 7**
232| **# bpftool prog show pinned /sys/fs/bpf/xdp1**
233| 9: xdp name xdp_prog1 tag 539ec6ce11b52f98 gpl
234| loaded_at 2018-06-25T16:17:31-0700 uid 0
235| xlated 488B jited 336B memlock 4096B map_ids 7
236| **# rm /sys/fs/bpf/xdp1**
237|
Jakub Kicinskiff69c212017-10-04 20:10:05 -0700238
239SEE ALSO
240========
Quentin Monnetf98e46a2018-11-08 11:52:28 +0000241 **bpf**\ (2),
242 **bpf-helpers**\ (7),
243 **bpftool**\ (8),
244 **bpftool-map**\ (8),
245 **bpftool-cgroup**\ (8),
246 **bpftool-net**\ (8),
247 **bpftool-perf**\ (8)