blob: d16864293c00721f33ea6b945f4dbaaa9e0cce25 [file] [log] [blame]
Alexei Starovoitov249b8122014-12-01 15:06:37 -08001#include <stdio.h>
2#include <sys/types.h>
3#include <sys/stat.h>
4#include <fcntl.h>
5#include <libelf.h>
6#include <gelf.h>
7#include <errno.h>
8#include <unistd.h>
9#include <string.h>
10#include <stdbool.h>
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070011#include <stdlib.h>
Alexei Starovoitov249b8122014-12-01 15:06:37 -080012#include <linux/bpf.h>
13#include <linux/filter.h>
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070014#include <linux/perf_event.h>
15#include <sys/syscall.h>
16#include <sys/ioctl.h>
17#include <sys/mman.h>
18#include <poll.h>
Alexei Starovoitov5bacd782015-05-19 16:59:05 -070019#include <ctype.h>
Alexei Starovoitov249b8122014-12-01 15:06:37 -080020#include "libbpf.h"
21#include "bpf_helpers.h"
22#include "bpf_load.h"
23
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070024#define DEBUGFS "/sys/kernel/debug/tracing/"
25
Alexei Starovoitov249b8122014-12-01 15:06:37 -080026static char license[128];
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070027static int kern_version;
Alexei Starovoitov249b8122014-12-01 15:06:37 -080028static bool processed_sec[128];
29int map_fd[MAX_MAPS];
30int prog_fd[MAX_PROGS];
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070031int event_fd[MAX_PROGS];
Alexei Starovoitov249b8122014-12-01 15:06:37 -080032int prog_cnt;
Alexei Starovoitov5bacd782015-05-19 16:59:05 -070033int prog_array_fd = -1;
34
35static int populate_prog_array(const char *event, int prog_fd)
36{
37 int ind = atoi(event), err;
38
39 err = bpf_update_elem(prog_array_fd, &ind, &prog_fd, BPF_ANY);
40 if (err < 0) {
41 printf("failed to store prog_fd in prog_array\n");
42 return -1;
43 }
44 return 0;
45}
Alexei Starovoitov249b8122014-12-01 15:06:37 -080046
47static int load_and_attach(const char *event, struct bpf_insn *prog, int size)
48{
Alexei Starovoitov249b8122014-12-01 15:06:37 -080049 bool is_socket = strncmp(event, "socket", 6) == 0;
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070050 bool is_kprobe = strncmp(event, "kprobe/", 7) == 0;
51 bool is_kretprobe = strncmp(event, "kretprobe/", 10) == 0;
52 enum bpf_prog_type prog_type;
53 char buf[256];
54 int fd, efd, err, id;
55 struct perf_event_attr attr = {};
Alexei Starovoitov249b8122014-12-01 15:06:37 -080056
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070057 attr.type = PERF_TYPE_TRACEPOINT;
58 attr.sample_type = PERF_SAMPLE_RAW;
59 attr.sample_period = 1;
60 attr.wakeup_events = 1;
61
62 if (is_socket) {
63 prog_type = BPF_PROG_TYPE_SOCKET_FILTER;
64 } else if (is_kprobe || is_kretprobe) {
65 prog_type = BPF_PROG_TYPE_KPROBE;
66 } else {
67 printf("Unknown event '%s'\n", event);
Alexei Starovoitov249b8122014-12-01 15:06:37 -080068 return -1;
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070069 }
Alexei Starovoitov249b8122014-12-01 15:06:37 -080070
Alexei Starovoitov5bacd782015-05-19 16:59:05 -070071 fd = bpf_prog_load(prog_type, prog, size, license, kern_version);
72 if (fd < 0) {
73 printf("bpf_prog_load() err=%d\n%s", errno, bpf_log_buf);
74 return -1;
75 }
76
77 prog_fd[prog_cnt++] = fd;
78
79 if (is_socket) {
80 event += 6;
81 if (*event != '/')
82 return 0;
83 event++;
84 if (!isdigit(*event)) {
85 printf("invalid prog number\n");
86 return -1;
87 }
88 return populate_prog_array(event, fd);
89 }
90
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070091 if (is_kprobe || is_kretprobe) {
92 if (is_kprobe)
93 event += 7;
94 else
95 event += 10;
96
Alexei Starovoitov5bacd782015-05-19 16:59:05 -070097 if (*event == 0) {
98 printf("event name cannot be empty\n");
99 return -1;
100 }
101
102 if (isdigit(*event))
103 return populate_prog_array(event, fd);
104
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700105 snprintf(buf, sizeof(buf),
106 "echo '%c:%s %s' >> /sys/kernel/debug/tracing/kprobe_events",
107 is_kprobe ? 'p' : 'r', event, event);
108 err = system(buf);
109 if (err < 0) {
110 printf("failed to create kprobe '%s' error '%s'\n",
111 event, strerror(errno));
112 return -1;
113 }
114 }
115
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700116 strcpy(buf, DEBUGFS);
117 strcat(buf, "events/kprobes/");
118 strcat(buf, event);
119 strcat(buf, "/id");
120
121 efd = open(buf, O_RDONLY, 0);
122 if (efd < 0) {
123 printf("failed to open event %s\n", event);
124 return -1;
125 }
126
127 err = read(efd, buf, sizeof(buf));
128 if (err < 0 || err >= sizeof(buf)) {
129 printf("read from '%s' failed '%s'\n", event, strerror(errno));
130 return -1;
131 }
132
133 close(efd);
134
135 buf[err] = 0;
136 id = atoi(buf);
137 attr.config = id;
138
139 efd = perf_event_open(&attr, -1/*pid*/, 0/*cpu*/, -1/*group_fd*/, 0);
140 if (efd < 0) {
141 printf("event %d fd %d err %s\n", id, efd, strerror(errno));
142 return -1;
143 }
144 event_fd[prog_cnt - 1] = efd;
145 ioctl(efd, PERF_EVENT_IOC_ENABLE, 0);
146 ioctl(efd, PERF_EVENT_IOC_SET_BPF, fd);
147
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800148 return 0;
149}
150
151static int load_maps(struct bpf_map_def *maps, int len)
152{
153 int i;
154
155 for (i = 0; i < len / sizeof(struct bpf_map_def); i++) {
156
157 map_fd[i] = bpf_create_map(maps[i].type,
158 maps[i].key_size,
159 maps[i].value_size,
160 maps[i].max_entries);
Alexei Starovoitov618ec9a72016-03-07 21:57:18 -0800161 if (map_fd[i] < 0) {
162 printf("failed to create a map: %d %s\n",
163 errno, strerror(errno));
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800164 return 1;
Alexei Starovoitov618ec9a72016-03-07 21:57:18 -0800165 }
Alexei Starovoitov5bacd782015-05-19 16:59:05 -0700166
167 if (maps[i].type == BPF_MAP_TYPE_PROG_ARRAY)
168 prog_array_fd = map_fd[i];
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800169 }
170 return 0;
171}
172
173static int get_sec(Elf *elf, int i, GElf_Ehdr *ehdr, char **shname,
174 GElf_Shdr *shdr, Elf_Data **data)
175{
176 Elf_Scn *scn;
177
178 scn = elf_getscn(elf, i);
179 if (!scn)
180 return 1;
181
182 if (gelf_getshdr(scn, shdr) != shdr)
183 return 2;
184
185 *shname = elf_strptr(elf, ehdr->e_shstrndx, shdr->sh_name);
186 if (!*shname || !shdr->sh_size)
187 return 3;
188
189 *data = elf_getdata(scn, 0);
190 if (!*data || elf_getdata(scn, *data) != NULL)
191 return 4;
192
193 return 0;
194}
195
196static int parse_relo_and_apply(Elf_Data *data, Elf_Data *symbols,
197 GElf_Shdr *shdr, struct bpf_insn *insn)
198{
199 int i, nrels;
200
201 nrels = shdr->sh_size / shdr->sh_entsize;
202
203 for (i = 0; i < nrels; i++) {
204 GElf_Sym sym;
205 GElf_Rel rel;
206 unsigned int insn_idx;
207
208 gelf_getrel(data, i, &rel);
209
210 insn_idx = rel.r_offset / sizeof(struct bpf_insn);
211
212 gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &sym);
213
214 if (insn[insn_idx].code != (BPF_LD | BPF_IMM | BPF_DW)) {
215 printf("invalid relo for insn[%d].code 0x%x\n",
216 insn_idx, insn[insn_idx].code);
217 return 1;
218 }
219 insn[insn_idx].src_reg = BPF_PSEUDO_MAP_FD;
220 insn[insn_idx].imm = map_fd[sym.st_value / sizeof(struct bpf_map_def)];
221 }
222
223 return 0;
224}
225
226int load_bpf_file(char *path)
227{
228 int fd, i;
229 Elf *elf;
230 GElf_Ehdr ehdr;
231 GElf_Shdr shdr, shdr_prog;
232 Elf_Data *data, *data_prog, *symbols = NULL;
233 char *shname, *shname_prog;
234
235 if (elf_version(EV_CURRENT) == EV_NONE)
236 return 1;
237
238 fd = open(path, O_RDONLY, 0);
239 if (fd < 0)
240 return 1;
241
242 elf = elf_begin(fd, ELF_C_READ, NULL);
243
244 if (!elf)
245 return 1;
246
247 if (gelf_getehdr(elf, &ehdr) != &ehdr)
248 return 1;
249
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700250 /* clear all kprobes */
251 i = system("echo \"\" > /sys/kernel/debug/tracing/kprobe_events");
252
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800253 /* scan over all elf sections to get license and map info */
254 for (i = 1; i < ehdr.e_shnum; i++) {
255
256 if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
257 continue;
258
259 if (0) /* helpful for llvm debugging */
260 printf("section %d:%s data %p size %zd link %d flags %d\n",
261 i, shname, data->d_buf, data->d_size,
262 shdr.sh_link, (int) shdr.sh_flags);
263
264 if (strcmp(shname, "license") == 0) {
265 processed_sec[i] = true;
266 memcpy(license, data->d_buf, data->d_size);
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700267 } else if (strcmp(shname, "version") == 0) {
268 processed_sec[i] = true;
269 if (data->d_size != sizeof(int)) {
270 printf("invalid size of version section %zd\n",
271 data->d_size);
272 return 1;
273 }
274 memcpy(&kern_version, data->d_buf, sizeof(int));
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800275 } else if (strcmp(shname, "maps") == 0) {
276 processed_sec[i] = true;
277 if (load_maps(data->d_buf, data->d_size))
278 return 1;
279 } else if (shdr.sh_type == SHT_SYMTAB) {
280 symbols = data;
281 }
282 }
283
284 /* load programs that need map fixup (relocations) */
285 for (i = 1; i < ehdr.e_shnum; i++) {
286
287 if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
288 continue;
289 if (shdr.sh_type == SHT_REL) {
290 struct bpf_insn *insns;
291
292 if (get_sec(elf, shdr.sh_info, &ehdr, &shname_prog,
293 &shdr_prog, &data_prog))
294 continue;
295
296 insns = (struct bpf_insn *) data_prog->d_buf;
297
298 processed_sec[shdr.sh_info] = true;
299 processed_sec[i] = true;
300
301 if (parse_relo_and_apply(data, symbols, &shdr, insns))
302 continue;
303
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700304 if (memcmp(shname_prog, "kprobe/", 7) == 0 ||
305 memcmp(shname_prog, "kretprobe/", 10) == 0 ||
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800306 memcmp(shname_prog, "socket", 6) == 0)
307 load_and_attach(shname_prog, insns, data_prog->d_size);
308 }
309 }
310
311 /* load programs that don't use maps */
312 for (i = 1; i < ehdr.e_shnum; i++) {
313
314 if (processed_sec[i])
315 continue;
316
317 if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
318 continue;
319
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700320 if (memcmp(shname, "kprobe/", 7) == 0 ||
321 memcmp(shname, "kretprobe/", 10) == 0 ||
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800322 memcmp(shname, "socket", 6) == 0)
323 load_and_attach(shname, data->d_buf, data->d_size);
324 }
325
326 close(fd);
327 return 0;
328}
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700329
330void read_trace_pipe(void)
331{
332 int trace_fd;
333
334 trace_fd = open(DEBUGFS "trace_pipe", O_RDONLY, 0);
335 if (trace_fd < 0)
336 return;
337
338 while (1) {
339 static char buf[4096];
340 ssize_t sz;
341
342 sz = read(trace_fd, buf, sizeof(buf));
343 if (sz > 0) {
344 buf[sz] = 0;
345 puts(buf);
346 }
347 }
348}
Alexei Starovoitov3622e7e2016-03-07 21:57:19 -0800349
350#define MAX_SYMS 300000
351static struct ksym syms[MAX_SYMS];
352static int sym_cnt;
353
354static int ksym_cmp(const void *p1, const void *p2)
355{
356 return ((struct ksym *)p1)->addr - ((struct ksym *)p2)->addr;
357}
358
359int load_kallsyms(void)
360{
361 FILE *f = fopen("/proc/kallsyms", "r");
362 char func[256], buf[256];
363 char symbol;
364 void *addr;
365 int i = 0;
366
367 if (!f)
368 return -ENOENT;
369
370 while (!feof(f)) {
371 if (!fgets(buf, sizeof(buf), f))
372 break;
373 if (sscanf(buf, "%p %c %s", &addr, &symbol, func) != 3)
374 break;
375 if (!addr)
376 continue;
377 syms[i].addr = (long) addr;
378 syms[i].name = strdup(func);
379 i++;
380 }
381 sym_cnt = i;
382 qsort(syms, sym_cnt, sizeof(struct ksym), ksym_cmp);
383 return 0;
384}
385
386struct ksym *ksym_search(long key)
387{
388 int start = 0, end = sym_cnt;
389 int result;
390
391 while (start < end) {
392 size_t mid = start + (end - start) / 2;
393
394 result = key - syms[mid].addr;
395 if (result < 0)
396 end = mid;
397 else if (result > 0)
398 start = mid + 1;
399 else
400 return &syms[mid];
401 }
402
403 if (start >= 1 && syms[start - 1].addr < key &&
404 key < syms[start].addr)
405 /* valid ksym */
406 return &syms[start - 1];
407
408 /* out of range. return _stext */
409 return &syms[0];
410}