1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2016 Facebook
5 #include <linux/jhash.h>
6 #include <linux/filter.h>
7 #include <linux/kernel.h>
8 #include <linux/stacktrace.h>
9 #include <linux/perf_event.h>
10 #include <linux/btf_ids.h>
11 #include <linux/buildid.h>
12 #include "percpu_freelist.h"
13 #include "mmap_unlock_work.h"
15 #define STACK_CREATE_FLAG_MASK \
16 (BPF_F_NUMA_NODE | BPF_F_RDONLY | BPF_F_WRONLY | \
19 struct stack_map_bucket {
20 struct pcpu_freelist_node fnode;
26 struct bpf_stack_map {
29 struct pcpu_freelist freelist;
31 struct stack_map_bucket *buckets[];
34 static inline bool stack_map_use_build_id(struct bpf_map *map)
36 return (map->map_flags & BPF_F_STACK_BUILD_ID);
39 static inline int stack_map_data_size(struct bpf_map *map)
41 return stack_map_use_build_id(map) ?
42 sizeof(struct bpf_stack_build_id) : sizeof(u64);
45 static int prealloc_elems_and_freelist(struct bpf_stack_map *smap)
47 u64 elem_size = sizeof(struct stack_map_bucket) +
48 (u64)smap->map.value_size;
51 smap->elems = bpf_map_area_alloc(elem_size * smap->map.max_entries,
56 err = pcpu_freelist_init(&smap->freelist);
60 pcpu_freelist_populate(&smap->freelist, smap->elems, elem_size,
61 smap->map.max_entries);
65 bpf_map_area_free(smap->elems);
69 /* Called from syscall */
70 static struct bpf_map *stack_map_alloc(union bpf_attr *attr)
72 u32 value_size = attr->value_size;
73 struct bpf_stack_map *smap;
77 if (attr->map_flags & ~STACK_CREATE_FLAG_MASK)
78 return ERR_PTR(-EINVAL);
80 /* check sanity of attributes */
81 if (attr->max_entries == 0 || attr->key_size != 4 ||
82 value_size < 8 || value_size % 8)
83 return ERR_PTR(-EINVAL);
85 BUILD_BUG_ON(sizeof(struct bpf_stack_build_id) % sizeof(u64));
86 if (attr->map_flags & BPF_F_STACK_BUILD_ID) {
87 if (value_size % sizeof(struct bpf_stack_build_id) ||
88 value_size / sizeof(struct bpf_stack_build_id)
89 > sysctl_perf_event_max_stack)
90 return ERR_PTR(-EINVAL);
91 } else if (value_size / 8 > sysctl_perf_event_max_stack)
92 return ERR_PTR(-EINVAL);
94 /* hash table size must be power of 2 */
95 n_buckets = roundup_pow_of_two(attr->max_entries);
97 return ERR_PTR(-E2BIG);
99 cost = n_buckets * sizeof(struct stack_map_bucket *) + sizeof(*smap);
100 smap = bpf_map_area_alloc(cost, bpf_map_attr_numa_node(attr));
102 return ERR_PTR(-ENOMEM);
104 bpf_map_init_from_attr(&smap->map, attr);
105 smap->n_buckets = n_buckets;
107 err = get_callchain_buffers(sysctl_perf_event_max_stack);
111 err = prealloc_elems_and_freelist(smap);
118 put_callchain_buffers();
120 bpf_map_area_free(smap);
124 static void stack_map_get_build_id_offset(struct bpf_stack_build_id *id_offs,
125 u64 *ips, u32 trace_nr, bool user)
128 struct mmap_unlock_irq_work *work = NULL;
129 bool irq_work_busy = bpf_mmap_unlock_get_irq_work(&work);
130 struct vm_area_struct *vma, *prev_vma = NULL;
131 const char *prev_build_id;
133 /* If the irq_work is in use, fall back to report ips. Same
134 * fallback is used for kernel stack (!user) on a stackmap with
137 if (!user || !current || !current->mm || irq_work_busy ||
138 !mmap_read_trylock(current->mm)) {
139 /* cannot access current->mm, fall back to ips */
140 for (i = 0; i < trace_nr; i++) {
141 id_offs[i].status = BPF_STACK_BUILD_ID_IP;
142 id_offs[i].ip = ips[i];
143 memset(id_offs[i].build_id, 0, BUILD_ID_SIZE_MAX);
148 for (i = 0; i < trace_nr; i++) {
149 if (range_in_vma(prev_vma, ips[i], ips[i])) {
151 memcpy(id_offs[i].build_id, prev_build_id,
155 vma = find_vma(current->mm, ips[i]);
156 if (!vma || build_id_parse(vma, id_offs[i].build_id, NULL)) {
157 /* per entry fall back to ips */
158 id_offs[i].status = BPF_STACK_BUILD_ID_IP;
159 id_offs[i].ip = ips[i];
160 memset(id_offs[i].build_id, 0, BUILD_ID_SIZE_MAX);
164 id_offs[i].offset = (vma->vm_pgoff << PAGE_SHIFT) + ips[i]
166 id_offs[i].status = BPF_STACK_BUILD_ID_VALID;
168 prev_build_id = id_offs[i].build_id;
170 bpf_mmap_unlock_mm(work, current->mm);
173 static struct perf_callchain_entry *
174 get_callchain_entry_for_task(struct task_struct *task, u32 max_depth)
176 #ifdef CONFIG_STACKTRACE
177 struct perf_callchain_entry *entry;
180 entry = get_callchain_entry(&rctx);
185 entry->nr = stack_trace_save_tsk(task, (unsigned long *)entry->ip,
188 /* stack_trace_save_tsk() works on unsigned long array, while
189 * perf_callchain_entry uses u64 array. For 32-bit systems, it is
190 * necessary to fix this mismatch.
192 if (__BITS_PER_LONG != 64) {
193 unsigned long *from = (unsigned long *) entry->ip;
197 /* copy data from the end to avoid using extra buffer */
198 for (i = entry->nr - 1; i >= 0; i--)
199 to[i] = (u64)(from[i]);
202 put_callchain_entry(rctx);
205 #else /* CONFIG_STACKTRACE */
210 static long __bpf_get_stackid(struct bpf_map *map,
211 struct perf_callchain_entry *trace, u64 flags)
213 struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
214 struct stack_map_bucket *bucket, *new_bucket, *old_bucket;
215 u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
216 u32 hash, id, trace_nr, trace_len;
217 bool user = flags & BPF_F_USER_STACK;
221 if (trace->nr <= skip)
222 /* skipping more than usable stack trace */
225 trace_nr = trace->nr - skip;
226 trace_len = trace_nr * sizeof(u64);
227 ips = trace->ip + skip;
228 hash = jhash2((u32 *)ips, trace_len / sizeof(u32), 0);
229 id = hash & (smap->n_buckets - 1);
230 bucket = READ_ONCE(smap->buckets[id]);
232 hash_matches = bucket && bucket->hash == hash;
234 if (hash_matches && flags & BPF_F_FAST_STACK_CMP)
237 if (stack_map_use_build_id(map)) {
238 /* for build_id+offset, pop a bucket before slow cmp */
239 new_bucket = (struct stack_map_bucket *)
240 pcpu_freelist_pop(&smap->freelist);
241 if (unlikely(!new_bucket))
243 new_bucket->nr = trace_nr;
244 stack_map_get_build_id_offset(
245 (struct bpf_stack_build_id *)new_bucket->data,
246 ips, trace_nr, user);
247 trace_len = trace_nr * sizeof(struct bpf_stack_build_id);
248 if (hash_matches && bucket->nr == trace_nr &&
249 memcmp(bucket->data, new_bucket->data, trace_len) == 0) {
250 pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
253 if (bucket && !(flags & BPF_F_REUSE_STACKID)) {
254 pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
258 if (hash_matches && bucket->nr == trace_nr &&
259 memcmp(bucket->data, ips, trace_len) == 0)
261 if (bucket && !(flags & BPF_F_REUSE_STACKID))
264 new_bucket = (struct stack_map_bucket *)
265 pcpu_freelist_pop(&smap->freelist);
266 if (unlikely(!new_bucket))
268 memcpy(new_bucket->data, ips, trace_len);
271 new_bucket->hash = hash;
272 new_bucket->nr = trace_nr;
274 old_bucket = xchg(&smap->buckets[id], new_bucket);
276 pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
280 BPF_CALL_3(bpf_get_stackid, struct pt_regs *, regs, struct bpf_map *, map,
283 u32 max_depth = map->value_size / stack_map_data_size(map);
284 u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
285 bool user = flags & BPF_F_USER_STACK;
286 struct perf_callchain_entry *trace;
289 if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
290 BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID)))
294 if (max_depth > sysctl_perf_event_max_stack)
295 max_depth = sysctl_perf_event_max_stack;
297 trace = get_perf_callchain(regs, 0, kernel, user, max_depth,
300 if (unlikely(!trace))
301 /* couldn't fetch the stack trace */
304 return __bpf_get_stackid(map, trace, flags);
307 const struct bpf_func_proto bpf_get_stackid_proto = {
308 .func = bpf_get_stackid,
310 .ret_type = RET_INTEGER,
311 .arg1_type = ARG_PTR_TO_CTX,
312 .arg2_type = ARG_CONST_MAP_PTR,
313 .arg3_type = ARG_ANYTHING,
316 static __u64 count_kernel_ip(struct perf_callchain_entry *trace)
320 while (nr_kernel < trace->nr) {
321 if (trace->ip[nr_kernel] == PERF_CONTEXT_USER)
328 BPF_CALL_3(bpf_get_stackid_pe, struct bpf_perf_event_data_kern *, ctx,
329 struct bpf_map *, map, u64, flags)
331 struct perf_event *event = ctx->event;
332 struct perf_callchain_entry *trace;
337 /* perf_sample_data doesn't have callchain, use bpf_get_stackid */
338 if (!(event->attr.sample_type & PERF_SAMPLE_CALLCHAIN))
339 return bpf_get_stackid((unsigned long)(ctx->regs),
340 (unsigned long) map, flags, 0, 0);
342 if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
343 BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID)))
346 user = flags & BPF_F_USER_STACK;
349 trace = ctx->data->callchain;
350 if (unlikely(!trace))
353 nr_kernel = count_kernel_ip(trace);
356 __u64 nr = trace->nr;
358 trace->nr = nr_kernel;
359 ret = __bpf_get_stackid(map, trace, flags);
364 u64 skip = flags & BPF_F_SKIP_FIELD_MASK;
367 if (skip > BPF_F_SKIP_FIELD_MASK)
370 flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip;
371 ret = __bpf_get_stackid(map, trace, flags);
376 const struct bpf_func_proto bpf_get_stackid_proto_pe = {
377 .func = bpf_get_stackid_pe,
379 .ret_type = RET_INTEGER,
380 .arg1_type = ARG_PTR_TO_CTX,
381 .arg2_type = ARG_CONST_MAP_PTR,
382 .arg3_type = ARG_ANYTHING,
385 static long __bpf_get_stack(struct pt_regs *regs, struct task_struct *task,
386 struct perf_callchain_entry *trace_in,
387 void *buf, u32 size, u64 flags)
389 u32 trace_nr, copy_len, elem_size, num_elem, max_depth;
390 bool user_build_id = flags & BPF_F_USER_BUILD_ID;
391 bool crosstask = task && task != current;
392 u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
393 bool user = flags & BPF_F_USER_STACK;
394 struct perf_callchain_entry *trace;
399 if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
400 BPF_F_USER_BUILD_ID)))
402 if (kernel && user_build_id)
405 elem_size = (user && user_build_id) ? sizeof(struct bpf_stack_build_id)
407 if (unlikely(size % elem_size))
410 /* cannot get valid user stack for task without user_mode regs */
411 if (task && user && !user_mode(regs))
414 /* get_perf_callchain does not support crosstask user stack walking
415 * but returns an empty stack instead of NULL.
417 if (crosstask && user) {
422 num_elem = size / elem_size;
423 max_depth = num_elem + skip;
424 if (sysctl_perf_event_max_stack < max_depth)
425 max_depth = sysctl_perf_event_max_stack;
429 else if (kernel && task)
430 trace = get_callchain_entry_for_task(task, max_depth);
432 trace = get_perf_callchain(regs, 0, kernel, user, max_depth,
434 if (unlikely(!trace))
437 if (trace->nr < skip)
440 trace_nr = trace->nr - skip;
441 trace_nr = (trace_nr <= num_elem) ? trace_nr : num_elem;
442 copy_len = trace_nr * elem_size;
444 ips = trace->ip + skip;
445 if (user && user_build_id)
446 stack_map_get_build_id_offset(buf, ips, trace_nr, user);
448 memcpy(buf, ips, copy_len);
451 memset(buf + copy_len, 0, size - copy_len);
457 memset(buf, 0, size);
461 BPF_CALL_4(bpf_get_stack, struct pt_regs *, regs, void *, buf, u32, size,
464 return __bpf_get_stack(regs, NULL, NULL, buf, size, flags);
467 const struct bpf_func_proto bpf_get_stack_proto = {
468 .func = bpf_get_stack,
470 .ret_type = RET_INTEGER,
471 .arg1_type = ARG_PTR_TO_CTX,
472 .arg2_type = ARG_PTR_TO_UNINIT_MEM,
473 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
474 .arg4_type = ARG_ANYTHING,
477 BPF_CALL_4(bpf_get_task_stack, struct task_struct *, task, void *, buf,
478 u32, size, u64, flags)
480 struct pt_regs *regs;
483 if (!try_get_task_stack(task))
486 regs = task_pt_regs(task);
488 res = __bpf_get_stack(regs, task, NULL, buf, size, flags);
489 put_task_stack(task);
494 const struct bpf_func_proto bpf_get_task_stack_proto = {
495 .func = bpf_get_task_stack,
497 .ret_type = RET_INTEGER,
498 .arg1_type = ARG_PTR_TO_BTF_ID,
499 .arg1_btf_id = &btf_tracing_ids[BTF_TRACING_TYPE_TASK],
500 .arg2_type = ARG_PTR_TO_UNINIT_MEM,
501 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
502 .arg4_type = ARG_ANYTHING,
505 BPF_CALL_4(bpf_get_stack_pe, struct bpf_perf_event_data_kern *, ctx,
506 void *, buf, u32, size, u64, flags)
508 struct pt_regs *regs = (struct pt_regs *)(ctx->regs);
509 struct perf_event *event = ctx->event;
510 struct perf_callchain_entry *trace;
515 if (!(event->attr.sample_type & PERF_SAMPLE_CALLCHAIN))
516 return __bpf_get_stack(regs, NULL, NULL, buf, size, flags);
518 if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
519 BPF_F_USER_BUILD_ID)))
522 user = flags & BPF_F_USER_STACK;
526 trace = ctx->data->callchain;
527 if (unlikely(!trace))
530 nr_kernel = count_kernel_ip(trace);
533 __u64 nr = trace->nr;
535 trace->nr = nr_kernel;
536 err = __bpf_get_stack(regs, NULL, trace, buf, size, flags);
541 u64 skip = flags & BPF_F_SKIP_FIELD_MASK;
544 if (skip > BPF_F_SKIP_FIELD_MASK)
547 flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip;
548 err = __bpf_get_stack(regs, NULL, trace, buf, size, flags);
553 memset(buf, 0, size);
558 const struct bpf_func_proto bpf_get_stack_proto_pe = {
559 .func = bpf_get_stack_pe,
561 .ret_type = RET_INTEGER,
562 .arg1_type = ARG_PTR_TO_CTX,
563 .arg2_type = ARG_PTR_TO_UNINIT_MEM,
564 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
565 .arg4_type = ARG_ANYTHING,
568 /* Called from eBPF program */
569 static void *stack_map_lookup_elem(struct bpf_map *map, void *key)
571 return ERR_PTR(-EOPNOTSUPP);
574 /* Called from syscall */
575 int bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
577 struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
578 struct stack_map_bucket *bucket, *old_bucket;
579 u32 id = *(u32 *)key, trace_len;
581 if (unlikely(id >= smap->n_buckets))
584 bucket = xchg(&smap->buckets[id], NULL);
588 trace_len = bucket->nr * stack_map_data_size(map);
589 memcpy(value, bucket->data, trace_len);
590 memset(value + trace_len, 0, map->value_size - trace_len);
592 old_bucket = xchg(&smap->buckets[id], bucket);
594 pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
598 static int stack_map_get_next_key(struct bpf_map *map, void *key,
601 struct bpf_stack_map *smap = container_of(map,
602 struct bpf_stack_map, map);
605 WARN_ON_ONCE(!rcu_read_lock_held());
611 if (id >= smap->n_buckets || !smap->buckets[id])
617 while (id < smap->n_buckets && !smap->buckets[id])
620 if (id >= smap->n_buckets)
623 *(u32 *)next_key = id;
627 static long stack_map_update_elem(struct bpf_map *map, void *key, void *value,
633 /* Called from syscall or from eBPF program */
634 static long stack_map_delete_elem(struct bpf_map *map, void *key)
636 struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
637 struct stack_map_bucket *old_bucket;
638 u32 id = *(u32 *)key;
640 if (unlikely(id >= smap->n_buckets))
643 old_bucket = xchg(&smap->buckets[id], NULL);
645 pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
652 /* Called when map->refcnt goes to zero, either from workqueue or from syscall */
653 static void stack_map_free(struct bpf_map *map)
655 struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
657 bpf_map_area_free(smap->elems);
658 pcpu_freelist_destroy(&smap->freelist);
659 bpf_map_area_free(smap);
660 put_callchain_buffers();
663 static u64 stack_map_mem_usage(const struct bpf_map *map)
665 struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
666 u64 value_size = map->value_size;
667 u64 n_buckets = smap->n_buckets;
668 u64 enties = map->max_entries;
669 u64 usage = sizeof(*smap);
671 usage += n_buckets * sizeof(struct stack_map_bucket *);
672 usage += enties * (sizeof(struct stack_map_bucket) + value_size);
676 BTF_ID_LIST_SINGLE(stack_trace_map_btf_ids, struct, bpf_stack_map)
677 const struct bpf_map_ops stack_trace_map_ops = {
678 .map_meta_equal = bpf_map_meta_equal,
679 .map_alloc = stack_map_alloc,
680 .map_free = stack_map_free,
681 .map_get_next_key = stack_map_get_next_key,
682 .map_lookup_elem = stack_map_lookup_elem,
683 .map_update_elem = stack_map_update_elem,
684 .map_delete_elem = stack_map_delete_elem,
685 .map_check_btf = map_check_no_btf,
686 .map_mem_usage = stack_map_mem_usage,
687 .map_btf_id = &stack_trace_map_btf_ids[0],