Linux Audio

Check our new training course

Loading...
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0-only
  2/* Copyright (c) 2016 Facebook
  3 */
  4#include <linux/bpf.h>
  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/irq_work.h>
 11#include <linux/btf_ids.h>
 12#include <linux/buildid.h>
 13#include "percpu_freelist.h"
 
 14
 15#define STACK_CREATE_FLAG_MASK					\
 16	(BPF_F_NUMA_NODE | BPF_F_RDONLY | BPF_F_WRONLY |	\
 17	 BPF_F_STACK_BUILD_ID)
 18
 19struct stack_map_bucket {
 20	struct pcpu_freelist_node fnode;
 21	u32 hash;
 22	u32 nr;
 23	u64 data[];
 24};
 25
 26struct bpf_stack_map {
 27	struct bpf_map map;
 28	void *elems;
 29	struct pcpu_freelist freelist;
 30	u32 n_buckets;
 31	struct stack_map_bucket *buckets[];
 32};
 33
 34/* irq_work to run up_read() for build_id lookup in nmi context */
 35struct stack_map_irq_work {
 36	struct irq_work irq_work;
 37	struct mm_struct *mm;
 38};
 39
 40static void do_up_read(struct irq_work *entry)
 41{
 42	struct stack_map_irq_work *work;
 43
 44	if (WARN_ON_ONCE(IS_ENABLED(CONFIG_PREEMPT_RT)))
 45		return;
 46
 47	work = container_of(entry, struct stack_map_irq_work, irq_work);
 48	mmap_read_unlock_non_owner(work->mm);
 49}
 50
 51static DEFINE_PER_CPU(struct stack_map_irq_work, up_read_work);
 52
 53static inline bool stack_map_use_build_id(struct bpf_map *map)
 54{
 55	return (map->map_flags & BPF_F_STACK_BUILD_ID);
 56}
 57
 58static inline int stack_map_data_size(struct bpf_map *map)
 59{
 60	return stack_map_use_build_id(map) ?
 61		sizeof(struct bpf_stack_build_id) : sizeof(u64);
 62}
 63
 64static int prealloc_elems_and_freelist(struct bpf_stack_map *smap)
 65{
 66	u64 elem_size = sizeof(struct stack_map_bucket) +
 67			(u64)smap->map.value_size;
 68	int err;
 69
 70	smap->elems = bpf_map_area_alloc(elem_size * smap->map.max_entries,
 71					 smap->map.numa_node);
 72	if (!smap->elems)
 73		return -ENOMEM;
 74
 75	err = pcpu_freelist_init(&smap->freelist);
 76	if (err)
 77		goto free_elems;
 78
 79	pcpu_freelist_populate(&smap->freelist, smap->elems, elem_size,
 80			       smap->map.max_entries);
 81	return 0;
 82
 83free_elems:
 84	bpf_map_area_free(smap->elems);
 85	return err;
 86}
 87
 88/* Called from syscall */
 89static struct bpf_map *stack_map_alloc(union bpf_attr *attr)
 90{
 91	u32 value_size = attr->value_size;
 92	struct bpf_stack_map *smap;
 93	u64 cost, n_buckets;
 94	int err;
 95
 96	if (!bpf_capable())
 97		return ERR_PTR(-EPERM);
 98
 99	if (attr->map_flags & ~STACK_CREATE_FLAG_MASK)
100		return ERR_PTR(-EINVAL);
101
102	/* check sanity of attributes */
103	if (attr->max_entries == 0 || attr->key_size != 4 ||
104	    value_size < 8 || value_size % 8)
105		return ERR_PTR(-EINVAL);
106
107	BUILD_BUG_ON(sizeof(struct bpf_stack_build_id) % sizeof(u64));
108	if (attr->map_flags & BPF_F_STACK_BUILD_ID) {
109		if (value_size % sizeof(struct bpf_stack_build_id) ||
110		    value_size / sizeof(struct bpf_stack_build_id)
111		    > sysctl_perf_event_max_stack)
112			return ERR_PTR(-EINVAL);
113	} else if (value_size / 8 > sysctl_perf_event_max_stack)
114		return ERR_PTR(-EINVAL);
115
116	/* hash table size must be power of 2 */
117	n_buckets = roundup_pow_of_two(attr->max_entries);
118	if (!n_buckets)
 
119		return ERR_PTR(-E2BIG);
120
 
 
121	cost = n_buckets * sizeof(struct stack_map_bucket *) + sizeof(*smap);
122	cost += n_buckets * (value_size + sizeof(struct stack_map_bucket));
123	smap = bpf_map_area_alloc(cost, bpf_map_attr_numa_node(attr));
124	if (!smap)
125		return ERR_PTR(-ENOMEM);
126
127	bpf_map_init_from_attr(&smap->map, attr);
128	smap->map.value_size = value_size;
129	smap->n_buckets = n_buckets;
130
131	err = get_callchain_buffers(sysctl_perf_event_max_stack);
132	if (err)
133		goto free_smap;
134
135	err = prealloc_elems_and_freelist(smap);
136	if (err)
137		goto put_buffers;
138
139	return &smap->map;
140
141put_buffers:
142	put_callchain_buffers();
143free_smap:
144	bpf_map_area_free(smap);
145	return ERR_PTR(err);
146}
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148static void stack_map_get_build_id_offset(struct bpf_stack_build_id *id_offs,
149					  u64 *ips, u32 trace_nr, bool user)
150{
151	int i;
152	struct vm_area_struct *vma;
153	bool irq_work_busy = false;
154	struct stack_map_irq_work *work = NULL;
155
156	if (irqs_disabled()) {
157		if (!IS_ENABLED(CONFIG_PREEMPT_RT)) {
158			work = this_cpu_ptr(&up_read_work);
159			if (irq_work_is_busy(&work->irq_work)) {
160				/* cannot queue more up_read, fallback */
161				irq_work_busy = true;
162			}
163		} else {
164			/*
165			 * PREEMPT_RT does not allow to trylock mmap sem in
166			 * interrupt disabled context. Force the fallback code.
167			 */
168			irq_work_busy = true;
169		}
170	}
171
172	/*
173	 * We cannot do up_read() when the irq is disabled, because of
174	 * risk to deadlock with rq_lock. To do build_id lookup when the
175	 * irqs are disabled, we need to run up_read() in irq_work. We use
176	 * a percpu variable to do the irq_work. If the irq_work is
177	 * already used by another lookup, we fall back to report ips.
178	 *
179	 * Same fallback is used for kernel stack (!user) on a stackmap
180	 * with build_id.
181	 */
182	if (!user || !current || !current->mm || irq_work_busy ||
183	    !mmap_read_trylock_non_owner(current->mm)) {
184		/* cannot access current->mm, fall back to ips */
185		for (i = 0; i < trace_nr; i++) {
186			id_offs[i].status = BPF_STACK_BUILD_ID_IP;
187			id_offs[i].ip = ips[i];
188			memset(id_offs[i].build_id, 0, BUILD_ID_SIZE_MAX);
189		}
190		return;
191	}
192
193	for (i = 0; i < trace_nr; i++) {
194		vma = find_vma(current->mm, ips[i]);
195		if (!vma || build_id_parse(vma, id_offs[i].build_id, NULL)) {
 
 
 
 
 
 
 
196			/* per entry fall back to ips */
197			id_offs[i].status = BPF_STACK_BUILD_ID_IP;
198			id_offs[i].ip = ips[i];
199			memset(id_offs[i].build_id, 0, BUILD_ID_SIZE_MAX);
200			continue;
201		}
202		id_offs[i].offset = (vma->vm_pgoff << PAGE_SHIFT) + ips[i]
203			- vma->vm_start;
204		id_offs[i].status = BPF_STACK_BUILD_ID_VALID;
 
 
205	}
206
207	if (!work) {
208		mmap_read_unlock_non_owner(current->mm);
209	} else {
210		work->mm = current->mm;
211		irq_work_queue(&work->irq_work);
212	}
213}
214
215static struct perf_callchain_entry *
216get_callchain_entry_for_task(struct task_struct *task, u32 init_nr)
217{
218#ifdef CONFIG_STACKTRACE
219	struct perf_callchain_entry *entry;
220	int rctx;
221
222	entry = get_callchain_entry(&rctx);
223
224	if (!entry)
225		return NULL;
226
227	entry->nr = init_nr +
228		stack_trace_save_tsk(task, (unsigned long *)(entry->ip + init_nr),
229				     sysctl_perf_event_max_stack - init_nr, 0);
230
231	/* stack_trace_save_tsk() works on unsigned long array, while
232	 * perf_callchain_entry uses u64 array. For 32-bit systems, it is
233	 * necessary to fix this mismatch.
234	 */
235	if (__BITS_PER_LONG != 64) {
236		unsigned long *from = (unsigned long *) entry->ip;
237		u64 *to = entry->ip;
238		int i;
239
240		/* copy data from the end to avoid using extra buffer */
241		for (i = entry->nr - 1; i >= (int)init_nr; i--)
242			to[i] = (u64)(from[i]);
243	}
244
245	put_callchain_entry(rctx);
246
247	return entry;
248#else /* CONFIG_STACKTRACE */
249	return NULL;
250#endif
251}
252
253static long __bpf_get_stackid(struct bpf_map *map,
254			      struct perf_callchain_entry *trace, u64 flags)
255{
256	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
257	struct stack_map_bucket *bucket, *new_bucket, *old_bucket;
258	u32 max_depth = map->value_size / stack_map_data_size(map);
259	/* stack_map_alloc() checks that max_depth <= sysctl_perf_event_max_stack */
260	u32 init_nr = sysctl_perf_event_max_stack - max_depth;
261	u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
262	u32 hash, id, trace_nr, trace_len;
263	bool user = flags & BPF_F_USER_STACK;
264	u64 *ips;
265	bool hash_matches;
266
267	/* get_perf_callchain() guarantees that trace->nr >= init_nr
268	 * and trace-nr <= sysctl_perf_event_max_stack, so trace_nr <= max_depth
269	 */
270	trace_nr = trace->nr - init_nr;
271
272	if (trace_nr <= skip)
273		/* skipping more than usable stack trace */
274		return -EFAULT;
275
276	trace_nr -= skip;
277	trace_len = trace_nr * sizeof(u64);
278	ips = trace->ip + skip + init_nr;
279	hash = jhash2((u32 *)ips, trace_len / sizeof(u32), 0);
280	id = hash & (smap->n_buckets - 1);
281	bucket = READ_ONCE(smap->buckets[id]);
282
283	hash_matches = bucket && bucket->hash == hash;
284	/* fast cmp */
285	if (hash_matches && flags & BPF_F_FAST_STACK_CMP)
286		return id;
287
288	if (stack_map_use_build_id(map)) {
 
 
289		/* for build_id+offset, pop a bucket before slow cmp */
290		new_bucket = (struct stack_map_bucket *)
291			pcpu_freelist_pop(&smap->freelist);
292		if (unlikely(!new_bucket))
293			return -ENOMEM;
294		new_bucket->nr = trace_nr;
295		stack_map_get_build_id_offset(
296			(struct bpf_stack_build_id *)new_bucket->data,
297			ips, trace_nr, user);
 
298		trace_len = trace_nr * sizeof(struct bpf_stack_build_id);
299		if (hash_matches && bucket->nr == trace_nr &&
300		    memcmp(bucket->data, new_bucket->data, trace_len) == 0) {
301			pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
302			return id;
303		}
304		if (bucket && !(flags & BPF_F_REUSE_STACKID)) {
305			pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
306			return -EEXIST;
307		}
308	} else {
309		if (hash_matches && bucket->nr == trace_nr &&
310		    memcmp(bucket->data, ips, trace_len) == 0)
311			return id;
312		if (bucket && !(flags & BPF_F_REUSE_STACKID))
313			return -EEXIST;
314
315		new_bucket = (struct stack_map_bucket *)
316			pcpu_freelist_pop(&smap->freelist);
317		if (unlikely(!new_bucket))
318			return -ENOMEM;
319		memcpy(new_bucket->data, ips, trace_len);
320	}
321
322	new_bucket->hash = hash;
323	new_bucket->nr = trace_nr;
324
325	old_bucket = xchg(&smap->buckets[id], new_bucket);
326	if (old_bucket)
327		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
328	return id;
329}
330
331BPF_CALL_3(bpf_get_stackid, struct pt_regs *, regs, struct bpf_map *, map,
332	   u64, flags)
333{
334	u32 max_depth = map->value_size / stack_map_data_size(map);
335	/* stack_map_alloc() checks that max_depth <= sysctl_perf_event_max_stack */
336	u32 init_nr = sysctl_perf_event_max_stack - max_depth;
337	bool user = flags & BPF_F_USER_STACK;
338	struct perf_callchain_entry *trace;
339	bool kernel = !user;
340
341	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
342			       BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID)))
343		return -EINVAL;
344
345	trace = get_perf_callchain(regs, init_nr, kernel, user,
346				   sysctl_perf_event_max_stack, false, false);
 
 
 
 
347
348	if (unlikely(!trace))
349		/* couldn't fetch the stack trace */
350		return -EFAULT;
351
352	return __bpf_get_stackid(map, trace, flags);
353}
354
355const struct bpf_func_proto bpf_get_stackid_proto = {
356	.func		= bpf_get_stackid,
357	.gpl_only	= true,
358	.ret_type	= RET_INTEGER,
359	.arg1_type	= ARG_PTR_TO_CTX,
360	.arg2_type	= ARG_CONST_MAP_PTR,
361	.arg3_type	= ARG_ANYTHING,
362};
363
364static __u64 count_kernel_ip(struct perf_callchain_entry *trace)
365{
366	__u64 nr_kernel = 0;
367
368	while (nr_kernel < trace->nr) {
369		if (trace->ip[nr_kernel] == PERF_CONTEXT_USER)
370			break;
371		nr_kernel++;
372	}
373	return nr_kernel;
374}
375
376BPF_CALL_3(bpf_get_stackid_pe, struct bpf_perf_event_data_kern *, ctx,
377	   struct bpf_map *, map, u64, flags)
378{
379	struct perf_event *event = ctx->event;
380	struct perf_callchain_entry *trace;
381	bool kernel, user;
382	__u64 nr_kernel;
383	int ret;
384
385	/* perf_sample_data doesn't have callchain, use bpf_get_stackid */
386	if (!(event->attr.sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
387		return bpf_get_stackid((unsigned long)(ctx->regs),
388				       (unsigned long) map, flags, 0, 0);
389
390	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
391			       BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID)))
392		return -EINVAL;
393
394	user = flags & BPF_F_USER_STACK;
395	kernel = !user;
396
397	trace = ctx->data->callchain;
398	if (unlikely(!trace))
399		return -EFAULT;
400
401	nr_kernel = count_kernel_ip(trace);
402
403	if (kernel) {
404		__u64 nr = trace->nr;
405
406		trace->nr = nr_kernel;
407		ret = __bpf_get_stackid(map, trace, flags);
408
409		/* restore nr */
410		trace->nr = nr;
411	} else { /* user */
412		u64 skip = flags & BPF_F_SKIP_FIELD_MASK;
413
414		skip += nr_kernel;
415		if (skip > BPF_F_SKIP_FIELD_MASK)
416			return -EFAULT;
417
418		flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip;
419		ret = __bpf_get_stackid(map, trace, flags);
420	}
421	return ret;
422}
423
424const struct bpf_func_proto bpf_get_stackid_proto_pe = {
425	.func		= bpf_get_stackid_pe,
426	.gpl_only	= false,
427	.ret_type	= RET_INTEGER,
428	.arg1_type	= ARG_PTR_TO_CTX,
429	.arg2_type	= ARG_CONST_MAP_PTR,
430	.arg3_type	= ARG_ANYTHING,
431};
432
433static long __bpf_get_stack(struct pt_regs *regs, struct task_struct *task,
434			    struct perf_callchain_entry *trace_in,
435			    void *buf, u32 size, u64 flags)
436{
437	u32 init_nr, trace_nr, copy_len, elem_size, num_elem;
438	bool user_build_id = flags & BPF_F_USER_BUILD_ID;
 
439	u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
440	bool user = flags & BPF_F_USER_STACK;
441	struct perf_callchain_entry *trace;
442	bool kernel = !user;
443	int err = -EINVAL;
444	u64 *ips;
445
446	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
447			       BPF_F_USER_BUILD_ID)))
448		goto clear;
449	if (kernel && user_build_id)
450		goto clear;
451
452	elem_size = (user && user_build_id) ? sizeof(struct bpf_stack_build_id)
453					    : sizeof(u64);
454	if (unlikely(size % elem_size))
455		goto clear;
456
457	/* cannot get valid user stack for task without user_mode regs */
458	if (task && user && !user_mode(regs))
459		goto err_fault;
460
 
 
 
 
 
 
 
 
461	num_elem = size / elem_size;
462	if (sysctl_perf_event_max_stack < num_elem)
463		init_nr = 0;
464	else
465		init_nr = sysctl_perf_event_max_stack - num_elem;
 
 
466
467	if (trace_in)
468		trace = trace_in;
469	else if (kernel && task)
470		trace = get_callchain_entry_for_task(task, init_nr);
471	else
472		trace = get_perf_callchain(regs, init_nr, kernel, user,
473					   sysctl_perf_event_max_stack,
474					   false, false);
475	if (unlikely(!trace))
476		goto err_fault;
477
478	trace_nr = trace->nr - init_nr;
479	if (trace_nr < skip)
 
480		goto err_fault;
 
481
482	trace_nr -= skip;
483	trace_nr = (trace_nr <= num_elem) ? trace_nr : num_elem;
484	copy_len = trace_nr * elem_size;
485	ips = trace->ip + skip + init_nr;
486	if (user && user_build_id)
487		stack_map_get_build_id_offset(buf, ips, trace_nr, user);
488	else
 
 
 
 
 
489		memcpy(buf, ips, copy_len);
 
 
 
 
 
 
 
 
490
491	if (size > copy_len)
492		memset(buf + copy_len, 0, size - copy_len);
493	return copy_len;
494
495err_fault:
496	err = -EFAULT;
497clear:
498	memset(buf, 0, size);
499	return err;
500}
501
502BPF_CALL_4(bpf_get_stack, struct pt_regs *, regs, void *, buf, u32, size,
503	   u64, flags)
504{
505	return __bpf_get_stack(regs, NULL, NULL, buf, size, flags);
506}
507
508const struct bpf_func_proto bpf_get_stack_proto = {
509	.func		= bpf_get_stack,
510	.gpl_only	= true,
511	.ret_type	= RET_INTEGER,
512	.arg1_type	= ARG_PTR_TO_CTX,
513	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
514	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
515	.arg4_type	= ARG_ANYTHING,
516};
517
518BPF_CALL_4(bpf_get_task_stack, struct task_struct *, task, void *, buf,
519	   u32, size, u64, flags)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520{
521	struct pt_regs *regs;
522	long res;
523
524	if (!try_get_task_stack(task))
525		return -EFAULT;
526
527	regs = task_pt_regs(task);
528	res = __bpf_get_stack(regs, task, NULL, buf, size, flags);
 
529	put_task_stack(task);
530
531	return res;
532}
533
534BTF_ID_LIST_SINGLE(bpf_get_task_stack_btf_ids, struct, task_struct)
 
 
 
 
535
536const struct bpf_func_proto bpf_get_task_stack_proto = {
537	.func		= bpf_get_task_stack,
538	.gpl_only	= false,
539	.ret_type	= RET_INTEGER,
540	.arg1_type	= ARG_PTR_TO_BTF_ID,
541	.arg1_btf_id	= &bpf_get_task_stack_btf_ids[0],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
542	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
543	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
544	.arg4_type	= ARG_ANYTHING,
545};
546
547BPF_CALL_4(bpf_get_stack_pe, struct bpf_perf_event_data_kern *, ctx,
548	   void *, buf, u32, size, u64, flags)
549{
550	struct pt_regs *regs = (struct pt_regs *)(ctx->regs);
551	struct perf_event *event = ctx->event;
552	struct perf_callchain_entry *trace;
553	bool kernel, user;
554	int err = -EINVAL;
555	__u64 nr_kernel;
556
557	if (!(event->attr.sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
558		return __bpf_get_stack(regs, NULL, NULL, buf, size, flags);
559
560	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
561			       BPF_F_USER_BUILD_ID)))
562		goto clear;
563
564	user = flags & BPF_F_USER_STACK;
565	kernel = !user;
566
567	err = -EFAULT;
568	trace = ctx->data->callchain;
569	if (unlikely(!trace))
570		goto clear;
571
572	nr_kernel = count_kernel_ip(trace);
573
574	if (kernel) {
575		__u64 nr = trace->nr;
576
577		trace->nr = nr_kernel;
578		err = __bpf_get_stack(regs, NULL, trace, buf, size, flags);
579
580		/* restore nr */
581		trace->nr = nr;
582	} else { /* user */
583		u64 skip = flags & BPF_F_SKIP_FIELD_MASK;
584
585		skip += nr_kernel;
586		if (skip > BPF_F_SKIP_FIELD_MASK)
587			goto clear;
588
589		flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip;
590		err = __bpf_get_stack(regs, NULL, trace, buf, size, flags);
591	}
592	return err;
593
594clear:
595	memset(buf, 0, size);
596	return err;
597
598}
599
600const struct bpf_func_proto bpf_get_stack_proto_pe = {
601	.func		= bpf_get_stack_pe,
602	.gpl_only	= true,
603	.ret_type	= RET_INTEGER,
604	.arg1_type	= ARG_PTR_TO_CTX,
605	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
606	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
607	.arg4_type	= ARG_ANYTHING,
608};
609
610/* Called from eBPF program */
611static void *stack_map_lookup_elem(struct bpf_map *map, void *key)
612{
613	return ERR_PTR(-EOPNOTSUPP);
614}
615
616/* Called from syscall */
617int bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
618{
619	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
620	struct stack_map_bucket *bucket, *old_bucket;
621	u32 id = *(u32 *)key, trace_len;
622
623	if (unlikely(id >= smap->n_buckets))
624		return -ENOENT;
625
626	bucket = xchg(&smap->buckets[id], NULL);
627	if (!bucket)
628		return -ENOENT;
629
630	trace_len = bucket->nr * stack_map_data_size(map);
631	memcpy(value, bucket->data, trace_len);
632	memset(value + trace_len, 0, map->value_size - trace_len);
633
634	old_bucket = xchg(&smap->buckets[id], bucket);
635	if (old_bucket)
636		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
637	return 0;
638}
639
640static int stack_map_get_next_key(struct bpf_map *map, void *key,
641				  void *next_key)
642{
643	struct bpf_stack_map *smap = container_of(map,
644						  struct bpf_stack_map, map);
645	u32 id;
646
647	WARN_ON_ONCE(!rcu_read_lock_held());
648
649	if (!key) {
650		id = 0;
651	} else {
652		id = *(u32 *)key;
653		if (id >= smap->n_buckets || !smap->buckets[id])
654			id = 0;
655		else
656			id++;
657	}
658
659	while (id < smap->n_buckets && !smap->buckets[id])
660		id++;
661
662	if (id >= smap->n_buckets)
663		return -ENOENT;
664
665	*(u32 *)next_key = id;
666	return 0;
667}
668
669static int stack_map_update_elem(struct bpf_map *map, void *key, void *value,
670				 u64 map_flags)
671{
672	return -EINVAL;
673}
674
675/* Called from syscall or from eBPF program */
676static int stack_map_delete_elem(struct bpf_map *map, void *key)
677{
678	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
679	struct stack_map_bucket *old_bucket;
680	u32 id = *(u32 *)key;
681
682	if (unlikely(id >= smap->n_buckets))
683		return -E2BIG;
684
685	old_bucket = xchg(&smap->buckets[id], NULL);
686	if (old_bucket) {
687		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
688		return 0;
689	} else {
690		return -ENOENT;
691	}
692}
693
694/* Called when map->refcnt goes to zero, either from workqueue or from syscall */
695static void stack_map_free(struct bpf_map *map)
696{
697	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
698
699	bpf_map_area_free(smap->elems);
700	pcpu_freelist_destroy(&smap->freelist);
701	bpf_map_area_free(smap);
702	put_callchain_buffers();
703}
704
705static int stack_trace_map_btf_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
706const struct bpf_map_ops stack_trace_map_ops = {
707	.map_meta_equal = bpf_map_meta_equal,
708	.map_alloc = stack_map_alloc,
709	.map_free = stack_map_free,
710	.map_get_next_key = stack_map_get_next_key,
711	.map_lookup_elem = stack_map_lookup_elem,
712	.map_update_elem = stack_map_update_elem,
713	.map_delete_elem = stack_map_delete_elem,
714	.map_check_btf = map_check_no_btf,
715	.map_btf_name = "bpf_stack_map",
716	.map_btf_id = &stack_trace_map_btf_id,
717};
718
719static int __init stack_map_init(void)
720{
721	int cpu;
722	struct stack_map_irq_work *work;
723
724	for_each_possible_cpu(cpu) {
725		work = per_cpu_ptr(&up_read_work, cpu);
726		init_irq_work(&work->irq_work, do_up_read);
727	}
728	return 0;
729}
730subsys_initcall(stack_map_init);
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/* Copyright (c) 2016 Facebook
  3 */
  4#include <linux/bpf.h>
  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"
 14
 15#define STACK_CREATE_FLAG_MASK					\
 16	(BPF_F_NUMA_NODE | BPF_F_RDONLY | BPF_F_WRONLY |	\
 17	 BPF_F_STACK_BUILD_ID)
 18
 19struct stack_map_bucket {
 20	struct pcpu_freelist_node fnode;
 21	u32 hash;
 22	u32 nr;
 23	u64 data[];
 24};
 25
 26struct bpf_stack_map {
 27	struct bpf_map map;
 28	void *elems;
 29	struct pcpu_freelist freelist;
 30	u32 n_buckets;
 31	struct stack_map_bucket *buckets[] __counted_by(n_buckets);
 32};
 33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 34static inline bool stack_map_use_build_id(struct bpf_map *map)
 35{
 36	return (map->map_flags & BPF_F_STACK_BUILD_ID);
 37}
 38
 39static inline int stack_map_data_size(struct bpf_map *map)
 40{
 41	return stack_map_use_build_id(map) ?
 42		sizeof(struct bpf_stack_build_id) : sizeof(u64);
 43}
 44
 45static int prealloc_elems_and_freelist(struct bpf_stack_map *smap)
 46{
 47	u64 elem_size = sizeof(struct stack_map_bucket) +
 48			(u64)smap->map.value_size;
 49	int err;
 50
 51	smap->elems = bpf_map_area_alloc(elem_size * smap->map.max_entries,
 52					 smap->map.numa_node);
 53	if (!smap->elems)
 54		return -ENOMEM;
 55
 56	err = pcpu_freelist_init(&smap->freelist);
 57	if (err)
 58		goto free_elems;
 59
 60	pcpu_freelist_populate(&smap->freelist, smap->elems, elem_size,
 61			       smap->map.max_entries);
 62	return 0;
 63
 64free_elems:
 65	bpf_map_area_free(smap->elems);
 66	return err;
 67}
 68
 69/* Called from syscall */
 70static struct bpf_map *stack_map_alloc(union bpf_attr *attr)
 71{
 72	u32 value_size = attr->value_size;
 73	struct bpf_stack_map *smap;
 74	u64 cost, n_buckets;
 75	int err;
 76
 
 
 
 77	if (attr->map_flags & ~STACK_CREATE_FLAG_MASK)
 78		return ERR_PTR(-EINVAL);
 79
 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);
 84
 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);
 93
 94	/* hash table size must be power of 2; roundup_pow_of_two() can overflow
 95	 * into UB on 32-bit arches, so check that first
 96	 */
 97	if (attr->max_entries > 1UL << 31)
 98		return ERR_PTR(-E2BIG);
 99
100	n_buckets = roundup_pow_of_two(attr->max_entries);
101
102	cost = n_buckets * sizeof(struct stack_map_bucket *) + sizeof(*smap);
 
103	smap = bpf_map_area_alloc(cost, bpf_map_attr_numa_node(attr));
104	if (!smap)
105		return ERR_PTR(-ENOMEM);
106
107	bpf_map_init_from_attr(&smap->map, attr);
 
108	smap->n_buckets = n_buckets;
109
110	err = get_callchain_buffers(sysctl_perf_event_max_stack);
111	if (err)
112		goto free_smap;
113
114	err = prealloc_elems_and_freelist(smap);
115	if (err)
116		goto put_buffers;
117
118	return &smap->map;
119
120put_buffers:
121	put_callchain_buffers();
122free_smap:
123	bpf_map_area_free(smap);
124	return ERR_PTR(err);
125}
126
127static int fetch_build_id(struct vm_area_struct *vma, unsigned char *build_id, bool may_fault)
128{
129	return may_fault ? build_id_parse(vma, build_id, NULL)
130			 : build_id_parse_nofault(vma, build_id, NULL);
131}
132
133/*
134 * Expects all id_offs[i].ip values to be set to correct initial IPs.
135 * They will be subsequently:
136 *   - either adjusted in place to a file offset, if build ID fetching
137 *     succeeds; in this case id_offs[i].build_id is set to correct build ID,
138 *     and id_offs[i].status is set to BPF_STACK_BUILD_ID_VALID;
139 *   - or IP will be kept intact, if build ID fetching failed; in this case
140 *     id_offs[i].build_id is zeroed out and id_offs[i].status is set to
141 *     BPF_STACK_BUILD_ID_IP.
142 */
143static void stack_map_get_build_id_offset(struct bpf_stack_build_id *id_offs,
144					  u32 trace_nr, bool user, bool may_fault)
145{
146	int i;
147	struct mmap_unlock_irq_work *work = NULL;
148	bool irq_work_busy = bpf_mmap_unlock_get_irq_work(&work);
149	struct vm_area_struct *vma, *prev_vma = NULL;
150	const char *prev_build_id;
151
152	/* If the irq_work is in use, fall back to report ips. Same
153	 * fallback is used for kernel stack (!user) on a stackmap with
154	 * build_id.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155	 */
156	if (!user || !current || !current->mm || irq_work_busy ||
157	    !mmap_read_trylock(current->mm)) {
158		/* cannot access current->mm, fall back to ips */
159		for (i = 0; i < trace_nr; i++) {
160			id_offs[i].status = BPF_STACK_BUILD_ID_IP;
 
161			memset(id_offs[i].build_id, 0, BUILD_ID_SIZE_MAX);
162		}
163		return;
164	}
165
166	for (i = 0; i < trace_nr; i++) {
167		u64 ip = READ_ONCE(id_offs[i].ip);
168
169		if (range_in_vma(prev_vma, ip, ip)) {
170			vma = prev_vma;
171			memcpy(id_offs[i].build_id, prev_build_id, BUILD_ID_SIZE_MAX);
172			goto build_id_valid;
173		}
174		vma = find_vma(current->mm, ip);
175		if (!vma || fetch_build_id(vma, id_offs[i].build_id, may_fault)) {
176			/* per entry fall back to ips */
177			id_offs[i].status = BPF_STACK_BUILD_ID_IP;
 
178			memset(id_offs[i].build_id, 0, BUILD_ID_SIZE_MAX);
179			continue;
180		}
181build_id_valid:
182		id_offs[i].offset = (vma->vm_pgoff << PAGE_SHIFT) + ip - vma->vm_start;
183		id_offs[i].status = BPF_STACK_BUILD_ID_VALID;
184		prev_vma = vma;
185		prev_build_id = id_offs[i].build_id;
186	}
187	bpf_mmap_unlock_mm(work, current->mm);
 
 
 
 
 
 
188}
189
190static struct perf_callchain_entry *
191get_callchain_entry_for_task(struct task_struct *task, u32 max_depth)
192{
193#ifdef CONFIG_STACKTRACE
194	struct perf_callchain_entry *entry;
195	int rctx;
196
197	entry = get_callchain_entry(&rctx);
198
199	if (!entry)
200		return NULL;
201
202	entry->nr = stack_trace_save_tsk(task, (unsigned long *)entry->ip,
203					 max_depth, 0);
 
204
205	/* stack_trace_save_tsk() works on unsigned long array, while
206	 * perf_callchain_entry uses u64 array. For 32-bit systems, it is
207	 * necessary to fix this mismatch.
208	 */
209	if (__BITS_PER_LONG != 64) {
210		unsigned long *from = (unsigned long *) entry->ip;
211		u64 *to = entry->ip;
212		int i;
213
214		/* copy data from the end to avoid using extra buffer */
215		for (i = entry->nr - 1; i >= 0; i--)
216			to[i] = (u64)(from[i]);
217	}
218
219	put_callchain_entry(rctx);
220
221	return entry;
222#else /* CONFIG_STACKTRACE */
223	return NULL;
224#endif
225}
226
227static long __bpf_get_stackid(struct bpf_map *map,
228			      struct perf_callchain_entry *trace, u64 flags)
229{
230	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
231	struct stack_map_bucket *bucket, *new_bucket, *old_bucket;
 
 
 
232	u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
233	u32 hash, id, trace_nr, trace_len, i;
234	bool user = flags & BPF_F_USER_STACK;
235	u64 *ips;
236	bool hash_matches;
237
238	if (trace->nr <= skip)
 
 
 
 
 
239		/* skipping more than usable stack trace */
240		return -EFAULT;
241
242	trace_nr = trace->nr - skip;
243	trace_len = trace_nr * sizeof(u64);
244	ips = trace->ip + skip;
245	hash = jhash2((u32 *)ips, trace_len / sizeof(u32), 0);
246	id = hash & (smap->n_buckets - 1);
247	bucket = READ_ONCE(smap->buckets[id]);
248
249	hash_matches = bucket && bucket->hash == hash;
250	/* fast cmp */
251	if (hash_matches && flags & BPF_F_FAST_STACK_CMP)
252		return id;
253
254	if (stack_map_use_build_id(map)) {
255		struct bpf_stack_build_id *id_offs;
256
257		/* for build_id+offset, pop a bucket before slow cmp */
258		new_bucket = (struct stack_map_bucket *)
259			pcpu_freelist_pop(&smap->freelist);
260		if (unlikely(!new_bucket))
261			return -ENOMEM;
262		new_bucket->nr = trace_nr;
263		id_offs = (struct bpf_stack_build_id *)new_bucket->data;
264		for (i = 0; i < trace_nr; i++)
265			id_offs[i].ip = ips[i];
266		stack_map_get_build_id_offset(id_offs, trace_nr, user, false /* !may_fault */);
267		trace_len = trace_nr * sizeof(struct bpf_stack_build_id);
268		if (hash_matches && bucket->nr == trace_nr &&
269		    memcmp(bucket->data, new_bucket->data, trace_len) == 0) {
270			pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
271			return id;
272		}
273		if (bucket && !(flags & BPF_F_REUSE_STACKID)) {
274			pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
275			return -EEXIST;
276		}
277	} else {
278		if (hash_matches && bucket->nr == trace_nr &&
279		    memcmp(bucket->data, ips, trace_len) == 0)
280			return id;
281		if (bucket && !(flags & BPF_F_REUSE_STACKID))
282			return -EEXIST;
283
284		new_bucket = (struct stack_map_bucket *)
285			pcpu_freelist_pop(&smap->freelist);
286		if (unlikely(!new_bucket))
287			return -ENOMEM;
288		memcpy(new_bucket->data, ips, trace_len);
289	}
290
291	new_bucket->hash = hash;
292	new_bucket->nr = trace_nr;
293
294	old_bucket = xchg(&smap->buckets[id], new_bucket);
295	if (old_bucket)
296		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
297	return id;
298}
299
300BPF_CALL_3(bpf_get_stackid, struct pt_regs *, regs, struct bpf_map *, map,
301	   u64, flags)
302{
303	u32 max_depth = map->value_size / stack_map_data_size(map);
304	u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
 
305	bool user = flags & BPF_F_USER_STACK;
306	struct perf_callchain_entry *trace;
307	bool kernel = !user;
308
309	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
310			       BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID)))
311		return -EINVAL;
312
313	max_depth += skip;
314	if (max_depth > sysctl_perf_event_max_stack)
315		max_depth = sysctl_perf_event_max_stack;
316
317	trace = get_perf_callchain(regs, 0, kernel, user, max_depth,
318				   false, false);
319
320	if (unlikely(!trace))
321		/* couldn't fetch the stack trace */
322		return -EFAULT;
323
324	return __bpf_get_stackid(map, trace, flags);
325}
326
327const struct bpf_func_proto bpf_get_stackid_proto = {
328	.func		= bpf_get_stackid,
329	.gpl_only	= true,
330	.ret_type	= RET_INTEGER,
331	.arg1_type	= ARG_PTR_TO_CTX,
332	.arg2_type	= ARG_CONST_MAP_PTR,
333	.arg3_type	= ARG_ANYTHING,
334};
335
336static __u64 count_kernel_ip(struct perf_callchain_entry *trace)
337{
338	__u64 nr_kernel = 0;
339
340	while (nr_kernel < trace->nr) {
341		if (trace->ip[nr_kernel] == PERF_CONTEXT_USER)
342			break;
343		nr_kernel++;
344	}
345	return nr_kernel;
346}
347
348BPF_CALL_3(bpf_get_stackid_pe, struct bpf_perf_event_data_kern *, ctx,
349	   struct bpf_map *, map, u64, flags)
350{
351	struct perf_event *event = ctx->event;
352	struct perf_callchain_entry *trace;
353	bool kernel, user;
354	__u64 nr_kernel;
355	int ret;
356
357	/* perf_sample_data doesn't have callchain, use bpf_get_stackid */
358	if (!(event->attr.sample_type & PERF_SAMPLE_CALLCHAIN))
359		return bpf_get_stackid((unsigned long)(ctx->regs),
360				       (unsigned long) map, flags, 0, 0);
361
362	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
363			       BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID)))
364		return -EINVAL;
365
366	user = flags & BPF_F_USER_STACK;
367	kernel = !user;
368
369	trace = ctx->data->callchain;
370	if (unlikely(!trace))
371		return -EFAULT;
372
373	nr_kernel = count_kernel_ip(trace);
374
375	if (kernel) {
376		__u64 nr = trace->nr;
377
378		trace->nr = nr_kernel;
379		ret = __bpf_get_stackid(map, trace, flags);
380
381		/* restore nr */
382		trace->nr = nr;
383	} else { /* user */
384		u64 skip = flags & BPF_F_SKIP_FIELD_MASK;
385
386		skip += nr_kernel;
387		if (skip > BPF_F_SKIP_FIELD_MASK)
388			return -EFAULT;
389
390		flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip;
391		ret = __bpf_get_stackid(map, trace, flags);
392	}
393	return ret;
394}
395
396const struct bpf_func_proto bpf_get_stackid_proto_pe = {
397	.func		= bpf_get_stackid_pe,
398	.gpl_only	= false,
399	.ret_type	= RET_INTEGER,
400	.arg1_type	= ARG_PTR_TO_CTX,
401	.arg2_type	= ARG_CONST_MAP_PTR,
402	.arg3_type	= ARG_ANYTHING,
403};
404
405static long __bpf_get_stack(struct pt_regs *regs, struct task_struct *task,
406			    struct perf_callchain_entry *trace_in,
407			    void *buf, u32 size, u64 flags, bool may_fault)
408{
409	u32 trace_nr, copy_len, elem_size, num_elem, max_depth;
410	bool user_build_id = flags & BPF_F_USER_BUILD_ID;
411	bool crosstask = task && task != current;
412	u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
413	bool user = flags & BPF_F_USER_STACK;
414	struct perf_callchain_entry *trace;
415	bool kernel = !user;
416	int err = -EINVAL;
417	u64 *ips;
418
419	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
420			       BPF_F_USER_BUILD_ID)))
421		goto clear;
422	if (kernel && user_build_id)
423		goto clear;
424
425	elem_size = user_build_id ? sizeof(struct bpf_stack_build_id) : sizeof(u64);
 
426	if (unlikely(size % elem_size))
427		goto clear;
428
429	/* cannot get valid user stack for task without user_mode regs */
430	if (task && user && !user_mode(regs))
431		goto err_fault;
432
433	/* get_perf_callchain does not support crosstask user stack walking
434	 * but returns an empty stack instead of NULL.
435	 */
436	if (crosstask && user) {
437		err = -EOPNOTSUPP;
438		goto clear;
439	}
440
441	num_elem = size / elem_size;
442	max_depth = num_elem + skip;
443	if (sysctl_perf_event_max_stack < max_depth)
444		max_depth = sysctl_perf_event_max_stack;
445
446	if (may_fault)
447		rcu_read_lock(); /* need RCU for perf's callchain below */
448
449	if (trace_in)
450		trace = trace_in;
451	else if (kernel && task)
452		trace = get_callchain_entry_for_task(task, max_depth);
453	else
454		trace = get_perf_callchain(regs, 0, kernel, user, max_depth,
455					   crosstask, false);
 
 
 
456
457	if (unlikely(!trace) || trace->nr < skip) {
458		if (may_fault)
459			rcu_read_unlock();
460		goto err_fault;
461	}
462
463	trace_nr = trace->nr - skip;
464	trace_nr = (trace_nr <= num_elem) ? trace_nr : num_elem;
465	copy_len = trace_nr * elem_size;
466
467	ips = trace->ip + skip;
468	if (user_build_id) {
469		struct bpf_stack_build_id *id_offs = buf;
470		u32 i;
471
472		for (i = 0; i < trace_nr; i++)
473			id_offs[i].ip = ips[i];
474	} else {
475		memcpy(buf, ips, copy_len);
476	}
477
478	/* trace/ips should not be dereferenced after this point */
479	if (may_fault)
480		rcu_read_unlock();
481
482	if (user_build_id)
483		stack_map_get_build_id_offset(buf, trace_nr, user, may_fault);
484
485	if (size > copy_len)
486		memset(buf + copy_len, 0, size - copy_len);
487	return copy_len;
488
489err_fault:
490	err = -EFAULT;
491clear:
492	memset(buf, 0, size);
493	return err;
494}
495
496BPF_CALL_4(bpf_get_stack, struct pt_regs *, regs, void *, buf, u32, size,
497	   u64, flags)
498{
499	return __bpf_get_stack(regs, NULL, NULL, buf, size, flags, false /* !may_fault */);
500}
501
502const struct bpf_func_proto bpf_get_stack_proto = {
503	.func		= bpf_get_stack,
504	.gpl_only	= true,
505	.ret_type	= RET_INTEGER,
506	.arg1_type	= ARG_PTR_TO_CTX,
507	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
508	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
509	.arg4_type	= ARG_ANYTHING,
510};
511
512BPF_CALL_4(bpf_get_stack_sleepable, struct pt_regs *, regs, void *, buf, u32, size,
513	   u64, flags)
514{
515	return __bpf_get_stack(regs, NULL, NULL, buf, size, flags, true /* may_fault */);
516}
517
518const struct bpf_func_proto bpf_get_stack_sleepable_proto = {
519	.func		= bpf_get_stack_sleepable,
520	.gpl_only	= true,
521	.ret_type	= RET_INTEGER,
522	.arg1_type	= ARG_PTR_TO_CTX,
523	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
524	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
525	.arg4_type	= ARG_ANYTHING,
526};
527
528static long __bpf_get_task_stack(struct task_struct *task, void *buf, u32 size,
529				 u64 flags, bool may_fault)
530{
531	struct pt_regs *regs;
532	long res = -EINVAL;
533
534	if (!try_get_task_stack(task))
535		return -EFAULT;
536
537	regs = task_pt_regs(task);
538	if (regs)
539		res = __bpf_get_stack(regs, task, NULL, buf, size, flags, may_fault);
540	put_task_stack(task);
541
542	return res;
543}
544
545BPF_CALL_4(bpf_get_task_stack, struct task_struct *, task, void *, buf,
546	   u32, size, u64, flags)
547{
548	return __bpf_get_task_stack(task, buf, size, flags, false /* !may_fault */);
549}
550
551const struct bpf_func_proto bpf_get_task_stack_proto = {
552	.func		= bpf_get_task_stack,
553	.gpl_only	= false,
554	.ret_type	= RET_INTEGER,
555	.arg1_type	= ARG_PTR_TO_BTF_ID,
556	.arg1_btf_id	= &btf_tracing_ids[BTF_TRACING_TYPE_TASK],
557	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
558	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
559	.arg4_type	= ARG_ANYTHING,
560};
561
562BPF_CALL_4(bpf_get_task_stack_sleepable, struct task_struct *, task, void *, buf,
563	   u32, size, u64, flags)
564{
565	return __bpf_get_task_stack(task, buf, size, flags, true /* !may_fault */);
566}
567
568const struct bpf_func_proto bpf_get_task_stack_sleepable_proto = {
569	.func		= bpf_get_task_stack_sleepable,
570	.gpl_only	= false,
571	.ret_type	= RET_INTEGER,
572	.arg1_type	= ARG_PTR_TO_BTF_ID,
573	.arg1_btf_id	= &btf_tracing_ids[BTF_TRACING_TYPE_TASK],
574	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
575	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
576	.arg4_type	= ARG_ANYTHING,
577};
578
579BPF_CALL_4(bpf_get_stack_pe, struct bpf_perf_event_data_kern *, ctx,
580	   void *, buf, u32, size, u64, flags)
581{
582	struct pt_regs *regs = (struct pt_regs *)(ctx->regs);
583	struct perf_event *event = ctx->event;
584	struct perf_callchain_entry *trace;
585	bool kernel, user;
586	int err = -EINVAL;
587	__u64 nr_kernel;
588
589	if (!(event->attr.sample_type & PERF_SAMPLE_CALLCHAIN))
590		return __bpf_get_stack(regs, NULL, NULL, buf, size, flags, false /* !may_fault */);
591
592	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
593			       BPF_F_USER_BUILD_ID)))
594		goto clear;
595
596	user = flags & BPF_F_USER_STACK;
597	kernel = !user;
598
599	err = -EFAULT;
600	trace = ctx->data->callchain;
601	if (unlikely(!trace))
602		goto clear;
603
604	nr_kernel = count_kernel_ip(trace);
605
606	if (kernel) {
607		__u64 nr = trace->nr;
608
609		trace->nr = nr_kernel;
610		err = __bpf_get_stack(regs, NULL, trace, buf, size, flags, false /* !may_fault */);
611
612		/* restore nr */
613		trace->nr = nr;
614	} else { /* user */
615		u64 skip = flags & BPF_F_SKIP_FIELD_MASK;
616
617		skip += nr_kernel;
618		if (skip > BPF_F_SKIP_FIELD_MASK)
619			goto clear;
620
621		flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip;
622		err = __bpf_get_stack(regs, NULL, trace, buf, size, flags, false /* !may_fault */);
623	}
624	return err;
625
626clear:
627	memset(buf, 0, size);
628	return err;
629
630}
631
632const struct bpf_func_proto bpf_get_stack_proto_pe = {
633	.func		= bpf_get_stack_pe,
634	.gpl_only	= true,
635	.ret_type	= RET_INTEGER,
636	.arg1_type	= ARG_PTR_TO_CTX,
637	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
638	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
639	.arg4_type	= ARG_ANYTHING,
640};
641
642/* Called from eBPF program */
643static void *stack_map_lookup_elem(struct bpf_map *map, void *key)
644{
645	return ERR_PTR(-EOPNOTSUPP);
646}
647
648/* Called from syscall */
649int bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
650{
651	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
652	struct stack_map_bucket *bucket, *old_bucket;
653	u32 id = *(u32 *)key, trace_len;
654
655	if (unlikely(id >= smap->n_buckets))
656		return -ENOENT;
657
658	bucket = xchg(&smap->buckets[id], NULL);
659	if (!bucket)
660		return -ENOENT;
661
662	trace_len = bucket->nr * stack_map_data_size(map);
663	memcpy(value, bucket->data, trace_len);
664	memset(value + trace_len, 0, map->value_size - trace_len);
665
666	old_bucket = xchg(&smap->buckets[id], bucket);
667	if (old_bucket)
668		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
669	return 0;
670}
671
672static int stack_map_get_next_key(struct bpf_map *map, void *key,
673				  void *next_key)
674{
675	struct bpf_stack_map *smap = container_of(map,
676						  struct bpf_stack_map, map);
677	u32 id;
678
679	WARN_ON_ONCE(!rcu_read_lock_held());
680
681	if (!key) {
682		id = 0;
683	} else {
684		id = *(u32 *)key;
685		if (id >= smap->n_buckets || !smap->buckets[id])
686			id = 0;
687		else
688			id++;
689	}
690
691	while (id < smap->n_buckets && !smap->buckets[id])
692		id++;
693
694	if (id >= smap->n_buckets)
695		return -ENOENT;
696
697	*(u32 *)next_key = id;
698	return 0;
699}
700
701static long stack_map_update_elem(struct bpf_map *map, void *key, void *value,
702				  u64 map_flags)
703{
704	return -EINVAL;
705}
706
707/* Called from syscall or from eBPF program */
708static long stack_map_delete_elem(struct bpf_map *map, void *key)
709{
710	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
711	struct stack_map_bucket *old_bucket;
712	u32 id = *(u32 *)key;
713
714	if (unlikely(id >= smap->n_buckets))
715		return -E2BIG;
716
717	old_bucket = xchg(&smap->buckets[id], NULL);
718	if (old_bucket) {
719		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
720		return 0;
721	} else {
722		return -ENOENT;
723	}
724}
725
726/* Called when map->refcnt goes to zero, either from workqueue or from syscall */
727static void stack_map_free(struct bpf_map *map)
728{
729	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
730
731	bpf_map_area_free(smap->elems);
732	pcpu_freelist_destroy(&smap->freelist);
733	bpf_map_area_free(smap);
734	put_callchain_buffers();
735}
736
737static u64 stack_map_mem_usage(const struct bpf_map *map)
738{
739	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
740	u64 value_size = map->value_size;
741	u64 n_buckets = smap->n_buckets;
742	u64 enties = map->max_entries;
743	u64 usage = sizeof(*smap);
744
745	usage += n_buckets * sizeof(struct stack_map_bucket *);
746	usage += enties * (sizeof(struct stack_map_bucket) + value_size);
747	return usage;
748}
749
750BTF_ID_LIST_SINGLE(stack_trace_map_btf_ids, struct, bpf_stack_map)
751const struct bpf_map_ops stack_trace_map_ops = {
752	.map_meta_equal = bpf_map_meta_equal,
753	.map_alloc = stack_map_alloc,
754	.map_free = stack_map_free,
755	.map_get_next_key = stack_map_get_next_key,
756	.map_lookup_elem = stack_map_lookup_elem,
757	.map_update_elem = stack_map_update_elem,
758	.map_delete_elem = stack_map_delete_elem,
759	.map_check_btf = map_check_no_btf,
760	.map_mem_usage = stack_map_mem_usage,
761	.map_btf_id = &stack_trace_map_btf_ids[0],
762};