Linux Audio

Check our new training course

Loading...
v4.17
 
  1/* Copyright (c) 2016 Facebook
  2 *
  3 * This program is free software; you can redistribute it and/or
  4 * modify it under the terms of version 2 of the GNU General Public
  5 * License as published by the Free Software Foundation.
  6 */
  7#include <linux/bpf.h>
  8#include <linux/jhash.h>
  9#include <linux/filter.h>
 
 10#include <linux/stacktrace.h>
 11#include <linux/perf_event.h>
 12#include <linux/elf.h>
 13#include <linux/pagemap.h>
 14#include "percpu_freelist.h"
 
 15
 16#define STACK_CREATE_FLAG_MASK					\
 17	(BPF_F_NUMA_NODE | BPF_F_RDONLY | BPF_F_WRONLY |	\
 18	 BPF_F_STACK_BUILD_ID)
 19
 20struct stack_map_bucket {
 21	struct pcpu_freelist_node fnode;
 22	u32 hash;
 23	u32 nr;
 24	u64 data[];
 25};
 26
 27struct bpf_stack_map {
 28	struct bpf_map map;
 29	void *elems;
 30	struct pcpu_freelist freelist;
 31	u32 n_buckets;
 32	struct stack_map_bucket *buckets[];
 33};
 34
 35static inline bool stack_map_use_build_id(struct bpf_map *map)
 36{
 37	return (map->map_flags & BPF_F_STACK_BUILD_ID);
 38}
 39
 40static inline int stack_map_data_size(struct bpf_map *map)
 41{
 42	return stack_map_use_build_id(map) ?
 43		sizeof(struct bpf_stack_build_id) : sizeof(u64);
 44}
 45
 46static int prealloc_elems_and_freelist(struct bpf_stack_map *smap)
 47{
 48	u32 elem_size = sizeof(struct stack_map_bucket) + 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 (!capable(CAP_SYS_ADMIN))
 78		return ERR_PTR(-EPERM);
 79
 80	if (attr->map_flags & ~STACK_CREATE_FLAG_MASK)
 81		return ERR_PTR(-EINVAL);
 82
 83	/* check sanity of attributes */
 84	if (attr->max_entries == 0 || attr->key_size != 4 ||
 85	    value_size < 8 || value_size % 8)
 86		return ERR_PTR(-EINVAL);
 87
 88	BUILD_BUG_ON(sizeof(struct bpf_stack_build_id) % sizeof(u64));
 89	if (attr->map_flags & BPF_F_STACK_BUILD_ID) {
 90		if (value_size % sizeof(struct bpf_stack_build_id) ||
 91		    value_size / sizeof(struct bpf_stack_build_id)
 92		    > sysctl_perf_event_max_stack)
 93			return ERR_PTR(-EINVAL);
 94	} else if (value_size / 8 > sysctl_perf_event_max_stack)
 95		return ERR_PTR(-EINVAL);
 96
 97	/* hash table size must be power of 2 */
 
 
 
 
 
 98	n_buckets = roundup_pow_of_two(attr->max_entries);
 99
100	cost = n_buckets * sizeof(struct stack_map_bucket *) + sizeof(*smap);
101	if (cost >= U32_MAX - PAGE_SIZE)
102		return ERR_PTR(-E2BIG);
103
104	smap = bpf_map_area_alloc(cost, bpf_map_attr_numa_node(attr));
105	if (!smap)
106		return ERR_PTR(-ENOMEM);
107
108	err = -E2BIG;
109	cost += n_buckets * (value_size + sizeof(struct stack_map_bucket));
110	if (cost >= U32_MAX - PAGE_SIZE)
111		goto free_smap;
112
113	bpf_map_init_from_attr(&smap->map, attr);
114	smap->map.value_size = value_size;
115	smap->n_buckets = n_buckets;
116	smap->map.pages = round_up(cost, PAGE_SIZE) >> PAGE_SHIFT;
117
118	err = bpf_map_precharge_memlock(smap->map.pages);
119	if (err)
120		goto free_smap;
121
122	err = get_callchain_buffers(sysctl_perf_event_max_stack);
123	if (err)
124		goto free_smap;
125
126	err = prealloc_elems_and_freelist(smap);
127	if (err)
128		goto put_buffers;
129
130	return &smap->map;
131
132put_buffers:
133	put_callchain_buffers();
134free_smap:
135	bpf_map_area_free(smap);
136	return ERR_PTR(err);
137}
138
139#define BPF_BUILD_ID 3
140/*
141 * Parse build id from the note segment. This logic can be shared between
142 * 32-bit and 64-bit system, because Elf32_Nhdr and Elf64_Nhdr are
143 * identical.
144 */
145static inline int stack_map_parse_build_id(void *page_addr,
146					   unsigned char *build_id,
147					   void *note_start,
148					   Elf32_Word note_size)
149{
150	Elf32_Word note_offs = 0, new_offs;
151
152	/* check for overflow */
153	if (note_start < page_addr || note_start + note_size < note_start)
154		return -EINVAL;
155
156	/* only supports note that fits in the first page */
157	if (note_start + note_size > page_addr + PAGE_SIZE)
158		return -EINVAL;
159
160	while (note_offs + sizeof(Elf32_Nhdr) < note_size) {
161		Elf32_Nhdr *nhdr = (Elf32_Nhdr *)(note_start + note_offs);
162
163		if (nhdr->n_type == BPF_BUILD_ID &&
164		    nhdr->n_namesz == sizeof("GNU") &&
165		    nhdr->n_descsz == BPF_BUILD_ID_SIZE) {
166			memcpy(build_id,
167			       note_start + note_offs +
168			       ALIGN(sizeof("GNU"), 4) + sizeof(Elf32_Nhdr),
169			       BPF_BUILD_ID_SIZE);
170			return 0;
171		}
172		new_offs = note_offs + sizeof(Elf32_Nhdr) +
173			ALIGN(nhdr->n_namesz, 4) + ALIGN(nhdr->n_descsz, 4);
174		if (new_offs <= note_offs)  /* overflow */
175			break;
176		note_offs = new_offs;
177	}
178	return -EINVAL;
179}
180
181/* Parse build ID from 32-bit ELF */
182static int stack_map_get_build_id_32(void *page_addr,
183				     unsigned char *build_id)
184{
185	Elf32_Ehdr *ehdr = (Elf32_Ehdr *)page_addr;
186	Elf32_Phdr *phdr;
187	int i;
188
189	/* only supports phdr that fits in one page */
190	if (ehdr->e_phnum >
191	    (PAGE_SIZE - sizeof(Elf32_Ehdr)) / sizeof(Elf32_Phdr))
192		return -EINVAL;
193
194	phdr = (Elf32_Phdr *)(page_addr + sizeof(Elf32_Ehdr));
195
196	for (i = 0; i < ehdr->e_phnum; ++i)
197		if (phdr[i].p_type == PT_NOTE)
198			return stack_map_parse_build_id(page_addr, build_id,
199					page_addr + phdr[i].p_offset,
200					phdr[i].p_filesz);
201	return -EINVAL;
202}
203
204/* Parse build ID from 64-bit ELF */
205static int stack_map_get_build_id_64(void *page_addr,
206				     unsigned char *build_id)
207{
208	Elf64_Ehdr *ehdr = (Elf64_Ehdr *)page_addr;
209	Elf64_Phdr *phdr;
210	int i;
211
212	/* only supports phdr that fits in one page */
213	if (ehdr->e_phnum >
214	    (PAGE_SIZE - sizeof(Elf64_Ehdr)) / sizeof(Elf64_Phdr))
215		return -EINVAL;
216
217	phdr = (Elf64_Phdr *)(page_addr + sizeof(Elf64_Ehdr));
218
219	for (i = 0; i < ehdr->e_phnum; ++i)
220		if (phdr[i].p_type == PT_NOTE)
221			return stack_map_parse_build_id(page_addr, build_id,
222					page_addr + phdr[i].p_offset,
223					phdr[i].p_filesz);
224	return -EINVAL;
225}
226
227/* Parse build ID of ELF file mapped to vma */
228static int stack_map_get_build_id(struct vm_area_struct *vma,
229				  unsigned char *build_id)
230{
231	Elf32_Ehdr *ehdr;
232	struct page *page;
233	void *page_addr;
234	int ret;
235
236	/* only works for page backed storage  */
237	if (!vma->vm_file)
238		return -EINVAL;
239
240	page = find_get_page(vma->vm_file->f_mapping, 0);
241	if (!page)
242		return -EFAULT;	/* page not mapped */
243
244	ret = -EINVAL;
245	page_addr = page_address(page);
246	ehdr = (Elf32_Ehdr *)page_addr;
247
248	/* compare magic x7f "ELF" */
249	if (memcmp(ehdr->e_ident, ELFMAG, SELFMAG) != 0)
250		goto out;
251
252	/* only support executable file and shared object file */
253	if (ehdr->e_type != ET_EXEC && ehdr->e_type != ET_DYN)
254		goto out;
255
256	if (ehdr->e_ident[EI_CLASS] == ELFCLASS32)
257		ret = stack_map_get_build_id_32(page_addr, build_id);
258	else if (ehdr->e_ident[EI_CLASS] == ELFCLASS64)
259		ret = stack_map_get_build_id_64(page_addr, build_id);
260out:
261	put_page(page);
262	return ret;
263}
264
265static void stack_map_get_build_id_offset(struct bpf_map *map,
266					  struct stack_map_bucket *bucket,
267					  u64 *ips, u32 trace_nr, bool user)
268{
269	int i;
270	struct vm_area_struct *vma;
271	struct bpf_stack_build_id *id_offs;
272
273	bucket->nr = trace_nr;
274	id_offs = (struct bpf_stack_build_id *)bucket->data;
275
276	/*
277	 * We cannot do up_read() in nmi context, so build_id lookup is
278	 * only supported for non-nmi events. If at some point, it is
279	 * possible to run find_vma() without taking the semaphore, we
280	 * would like to allow build_id lookup in nmi context.
281	 *
282	 * Same fallback is used for kernel stack (!user) on a stackmap
283	 * with build_id.
284	 */
285	if (!user || !current || !current->mm || in_nmi() ||
286	    down_read_trylock(&current->mm->mmap_sem) == 0) {
287		/* cannot access current->mm, fall back to ips */
288		for (i = 0; i < trace_nr; i++) {
289			id_offs[i].status = BPF_STACK_BUILD_ID_IP;
290			id_offs[i].ip = ips[i];
 
291		}
292		return;
293	}
294
295	for (i = 0; i < trace_nr; i++) {
 
 
 
 
 
 
296		vma = find_vma(current->mm, ips[i]);
297		if (!vma || stack_map_get_build_id(vma, id_offs[i].build_id)) {
298			/* per entry fall back to ips */
299			id_offs[i].status = BPF_STACK_BUILD_ID_IP;
300			id_offs[i].ip = ips[i];
 
301			continue;
302		}
 
303		id_offs[i].offset = (vma->vm_pgoff << PAGE_SHIFT) + ips[i]
304			- vma->vm_start;
305		id_offs[i].status = BPF_STACK_BUILD_ID_VALID;
 
 
306	}
307	up_read(&current->mm->mmap_sem);
308}
309
310BPF_CALL_3(bpf_get_stackid, struct pt_regs *, regs, struct bpf_map *, map,
311	   u64, flags)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312{
313	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
314	struct perf_callchain_entry *trace;
315	struct stack_map_bucket *bucket, *new_bucket, *old_bucket;
316	u32 max_depth = map->value_size / stack_map_data_size(map);
317	/* stack_map_alloc() checks that max_depth <= sysctl_perf_event_max_stack */
318	u32 init_nr = sysctl_perf_event_max_stack - max_depth;
319	u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
320	u32 hash, id, trace_nr, trace_len;
321	bool user = flags & BPF_F_USER_STACK;
322	bool kernel = !user;
323	u64 *ips;
324	bool hash_matches;
325
326	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
327			       BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID)))
328		return -EINVAL;
329
330	trace = get_perf_callchain(regs, init_nr, kernel, user,
331				   sysctl_perf_event_max_stack, false, false);
332
333	if (unlikely(!trace))
334		/* couldn't fetch the stack trace */
335		return -EFAULT;
336
337	/* get_perf_callchain() guarantees that trace->nr >= init_nr
338	 * and trace-nr <= sysctl_perf_event_max_stack, so trace_nr <= max_depth
339	 */
340	trace_nr = trace->nr - init_nr;
341
342	if (trace_nr <= skip)
343		/* skipping more than usable stack trace */
344		return -EFAULT;
345
346	trace_nr -= skip;
347	trace_len = trace_nr * sizeof(u64);
348	ips = trace->ip + skip + init_nr;
349	hash = jhash2((u32 *)ips, trace_len / sizeof(u32), 0);
350	id = hash & (smap->n_buckets - 1);
351	bucket = READ_ONCE(smap->buckets[id]);
352
353	hash_matches = bucket && bucket->hash == hash;
354	/* fast cmp */
355	if (hash_matches && flags & BPF_F_FAST_STACK_CMP)
356		return id;
357
358	if (stack_map_use_build_id(map)) {
359		/* for build_id+offset, pop a bucket before slow cmp */
360		new_bucket = (struct stack_map_bucket *)
361			pcpu_freelist_pop(&smap->freelist);
362		if (unlikely(!new_bucket))
363			return -ENOMEM;
364		stack_map_get_build_id_offset(map, new_bucket, ips,
365					      trace_nr, user);
 
 
366		trace_len = trace_nr * sizeof(struct bpf_stack_build_id);
367		if (hash_matches && bucket->nr == trace_nr &&
368		    memcmp(bucket->data, new_bucket->data, trace_len) == 0) {
369			pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
370			return id;
371		}
372		if (bucket && !(flags & BPF_F_REUSE_STACKID)) {
373			pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
374			return -EEXIST;
375		}
376	} else {
377		if (hash_matches && bucket->nr == trace_nr &&
378		    memcmp(bucket->data, ips, trace_len) == 0)
379			return id;
380		if (bucket && !(flags & BPF_F_REUSE_STACKID))
381			return -EEXIST;
382
383		new_bucket = (struct stack_map_bucket *)
384			pcpu_freelist_pop(&smap->freelist);
385		if (unlikely(!new_bucket))
386			return -ENOMEM;
387		memcpy(new_bucket->data, ips, trace_len);
388	}
389
390	new_bucket->hash = hash;
391	new_bucket->nr = trace_nr;
392
393	old_bucket = xchg(&smap->buckets[id], new_bucket);
394	if (old_bucket)
395		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
396	return id;
397}
398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
399const struct bpf_func_proto bpf_get_stackid_proto = {
400	.func		= bpf_get_stackid,
401	.gpl_only	= true,
402	.ret_type	= RET_INTEGER,
403	.arg1_type	= ARG_PTR_TO_CTX,
404	.arg2_type	= ARG_CONST_MAP_PTR,
405	.arg3_type	= ARG_ANYTHING,
406};
407
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
408/* Called from eBPF program */
409static void *stack_map_lookup_elem(struct bpf_map *map, void *key)
410{
411	return NULL;
412}
413
414/* Called from syscall */
415int bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
416{
417	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
418	struct stack_map_bucket *bucket, *old_bucket;
419	u32 id = *(u32 *)key, trace_len;
420
421	if (unlikely(id >= smap->n_buckets))
422		return -ENOENT;
423
424	bucket = xchg(&smap->buckets[id], NULL);
425	if (!bucket)
426		return -ENOENT;
427
428	trace_len = bucket->nr * stack_map_data_size(map);
429	memcpy(value, bucket->data, trace_len);
430	memset(value + trace_len, 0, map->value_size - trace_len);
431
432	old_bucket = xchg(&smap->buckets[id], bucket);
433	if (old_bucket)
434		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
435	return 0;
436}
437
438static int stack_map_get_next_key(struct bpf_map *map, void *key,
439				  void *next_key)
440{
441	struct bpf_stack_map *smap = container_of(map,
442						  struct bpf_stack_map, map);
443	u32 id;
444
445	WARN_ON_ONCE(!rcu_read_lock_held());
446
447	if (!key) {
448		id = 0;
449	} else {
450		id = *(u32 *)key;
451		if (id >= smap->n_buckets || !smap->buckets[id])
452			id = 0;
453		else
454			id++;
455	}
456
457	while (id < smap->n_buckets && !smap->buckets[id])
458		id++;
459
460	if (id >= smap->n_buckets)
461		return -ENOENT;
462
463	*(u32 *)next_key = id;
464	return 0;
465}
466
467static int stack_map_update_elem(struct bpf_map *map, void *key, void *value,
468				 u64 map_flags)
469{
470	return -EINVAL;
471}
472
473/* Called from syscall or from eBPF program */
474static int stack_map_delete_elem(struct bpf_map *map, void *key)
475{
476	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
477	struct stack_map_bucket *old_bucket;
478	u32 id = *(u32 *)key;
479
480	if (unlikely(id >= smap->n_buckets))
481		return -E2BIG;
482
483	old_bucket = xchg(&smap->buckets[id], NULL);
484	if (old_bucket) {
485		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
486		return 0;
487	} else {
488		return -ENOENT;
489	}
490}
491
492/* Called when map->refcnt goes to zero, either from workqueue or from syscall */
493static void stack_map_free(struct bpf_map *map)
494{
495	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
496
497	/* wait for bpf programs to complete before freeing stack map */
498	synchronize_rcu();
499
500	bpf_map_area_free(smap->elems);
501	pcpu_freelist_destroy(&smap->freelist);
502	bpf_map_area_free(smap);
503	put_callchain_buffers();
504}
505
506const struct bpf_map_ops stack_map_ops = {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507	.map_alloc = stack_map_alloc,
508	.map_free = stack_map_free,
509	.map_get_next_key = stack_map_get_next_key,
510	.map_lookup_elem = stack_map_lookup_elem,
511	.map_update_elem = stack_map_update_elem,
512	.map_delete_elem = stack_map_delete_elem,
 
 
 
513};
v6.9.4
  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 void stack_map_get_build_id_offset(struct bpf_stack_build_id *id_offs,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128					  u64 *ips, u32 trace_nr, bool user)
129{
130	int i;
131	struct mmap_unlock_irq_work *work = NULL;
132	bool irq_work_busy = bpf_mmap_unlock_get_irq_work(&work);
133	struct vm_area_struct *vma, *prev_vma = NULL;
134	const char *prev_build_id;
135
136	/* If the irq_work is in use, fall back to report ips. Same
137	 * fallback is used for kernel stack (!user) on a stackmap with
138	 * build_id.
 
 
 
 
 
 
139	 */
140	if (!user || !current || !current->mm || irq_work_busy ||
141	    !mmap_read_trylock(current->mm)) {
142		/* cannot access current->mm, fall back to ips */
143		for (i = 0; i < trace_nr; i++) {
144			id_offs[i].status = BPF_STACK_BUILD_ID_IP;
145			id_offs[i].ip = ips[i];
146			memset(id_offs[i].build_id, 0, BUILD_ID_SIZE_MAX);
147		}
148		return;
149	}
150
151	for (i = 0; i < trace_nr; i++) {
152		if (range_in_vma(prev_vma, ips[i], ips[i])) {
153			vma = prev_vma;
154			memcpy(id_offs[i].build_id, prev_build_id,
155			       BUILD_ID_SIZE_MAX);
156			goto build_id_valid;
157		}
158		vma = find_vma(current->mm, ips[i]);
159		if (!vma || build_id_parse(vma, id_offs[i].build_id, NULL)) {
160			/* per entry fall back to ips */
161			id_offs[i].status = BPF_STACK_BUILD_ID_IP;
162			id_offs[i].ip = ips[i];
163			memset(id_offs[i].build_id, 0, BUILD_ID_SIZE_MAX);
164			continue;
165		}
166build_id_valid:
167		id_offs[i].offset = (vma->vm_pgoff << PAGE_SHIFT) + ips[i]
168			- vma->vm_start;
169		id_offs[i].status = BPF_STACK_BUILD_ID_VALID;
170		prev_vma = vma;
171		prev_build_id = id_offs[i].build_id;
172	}
173	bpf_mmap_unlock_mm(work, current->mm);
174}
175
176static struct perf_callchain_entry *
177get_callchain_entry_for_task(struct task_struct *task, u32 max_depth)
178{
179#ifdef CONFIG_STACKTRACE
180	struct perf_callchain_entry *entry;
181	int rctx;
182
183	entry = get_callchain_entry(&rctx);
184
185	if (!entry)
186		return NULL;
187
188	entry->nr = stack_trace_save_tsk(task, (unsigned long *)entry->ip,
189					 max_depth, 0);
190
191	/* stack_trace_save_tsk() works on unsigned long array, while
192	 * perf_callchain_entry uses u64 array. For 32-bit systems, it is
193	 * necessary to fix this mismatch.
194	 */
195	if (__BITS_PER_LONG != 64) {
196		unsigned long *from = (unsigned long *) entry->ip;
197		u64 *to = entry->ip;
198		int i;
199
200		/* copy data from the end to avoid using extra buffer */
201		for (i = entry->nr - 1; i >= 0; i--)
202			to[i] = (u64)(from[i]);
203	}
204
205	put_callchain_entry(rctx);
206
207	return entry;
208#else /* CONFIG_STACKTRACE */
209	return NULL;
210#endif
211}
212
213static long __bpf_get_stackid(struct bpf_map *map,
214			      struct perf_callchain_entry *trace, u64 flags)
215{
216	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
 
217	struct stack_map_bucket *bucket, *new_bucket, *old_bucket;
 
 
 
218	u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
219	u32 hash, id, trace_nr, trace_len;
220	bool user = flags & BPF_F_USER_STACK;
 
221	u64 *ips;
222	bool hash_matches;
223
224	if (trace->nr <= skip)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
225		/* skipping more than usable stack trace */
226		return -EFAULT;
227
228	trace_nr = trace->nr - skip;
229	trace_len = trace_nr * sizeof(u64);
230	ips = trace->ip + skip;
231	hash = jhash2((u32 *)ips, trace_len / sizeof(u32), 0);
232	id = hash & (smap->n_buckets - 1);
233	bucket = READ_ONCE(smap->buckets[id]);
234
235	hash_matches = bucket && bucket->hash == hash;
236	/* fast cmp */
237	if (hash_matches && flags & BPF_F_FAST_STACK_CMP)
238		return id;
239
240	if (stack_map_use_build_id(map)) {
241		/* for build_id+offset, pop a bucket before slow cmp */
242		new_bucket = (struct stack_map_bucket *)
243			pcpu_freelist_pop(&smap->freelist);
244		if (unlikely(!new_bucket))
245			return -ENOMEM;
246		new_bucket->nr = trace_nr;
247		stack_map_get_build_id_offset(
248			(struct bpf_stack_build_id *)new_bucket->data,
249			ips, trace_nr, user);
250		trace_len = trace_nr * sizeof(struct bpf_stack_build_id);
251		if (hash_matches && bucket->nr == trace_nr &&
252		    memcmp(bucket->data, new_bucket->data, trace_len) == 0) {
253			pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
254			return id;
255		}
256		if (bucket && !(flags & BPF_F_REUSE_STACKID)) {
257			pcpu_freelist_push(&smap->freelist, &new_bucket->fnode);
258			return -EEXIST;
259		}
260	} else {
261		if (hash_matches && bucket->nr == trace_nr &&
262		    memcmp(bucket->data, ips, trace_len) == 0)
263			return id;
264		if (bucket && !(flags & BPF_F_REUSE_STACKID))
265			return -EEXIST;
266
267		new_bucket = (struct stack_map_bucket *)
268			pcpu_freelist_pop(&smap->freelist);
269		if (unlikely(!new_bucket))
270			return -ENOMEM;
271		memcpy(new_bucket->data, ips, trace_len);
272	}
273
274	new_bucket->hash = hash;
275	new_bucket->nr = trace_nr;
276
277	old_bucket = xchg(&smap->buckets[id], new_bucket);
278	if (old_bucket)
279		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
280	return id;
281}
282
283BPF_CALL_3(bpf_get_stackid, struct pt_regs *, regs, struct bpf_map *, map,
284	   u64, flags)
285{
286	u32 max_depth = map->value_size / stack_map_data_size(map);
287	u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
288	bool user = flags & BPF_F_USER_STACK;
289	struct perf_callchain_entry *trace;
290	bool kernel = !user;
291
292	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
293			       BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID)))
294		return -EINVAL;
295
296	max_depth += skip;
297	if (max_depth > sysctl_perf_event_max_stack)
298		max_depth = sysctl_perf_event_max_stack;
299
300	trace = get_perf_callchain(regs, 0, kernel, user, max_depth,
301				   false, false);
302
303	if (unlikely(!trace))
304		/* couldn't fetch the stack trace */
305		return -EFAULT;
306
307	return __bpf_get_stackid(map, trace, flags);
308}
309
310const struct bpf_func_proto bpf_get_stackid_proto = {
311	.func		= bpf_get_stackid,
312	.gpl_only	= true,
313	.ret_type	= RET_INTEGER,
314	.arg1_type	= ARG_PTR_TO_CTX,
315	.arg2_type	= ARG_CONST_MAP_PTR,
316	.arg3_type	= ARG_ANYTHING,
317};
318
319static __u64 count_kernel_ip(struct perf_callchain_entry *trace)
320{
321	__u64 nr_kernel = 0;
322
323	while (nr_kernel < trace->nr) {
324		if (trace->ip[nr_kernel] == PERF_CONTEXT_USER)
325			break;
326		nr_kernel++;
327	}
328	return nr_kernel;
329}
330
331BPF_CALL_3(bpf_get_stackid_pe, struct bpf_perf_event_data_kern *, ctx,
332	   struct bpf_map *, map, u64, flags)
333{
334	struct perf_event *event = ctx->event;
335	struct perf_callchain_entry *trace;
336	bool kernel, user;
337	__u64 nr_kernel;
338	int ret;
339
340	/* perf_sample_data doesn't have callchain, use bpf_get_stackid */
341	if (!(event->attr.sample_type & PERF_SAMPLE_CALLCHAIN))
342		return bpf_get_stackid((unsigned long)(ctx->regs),
343				       (unsigned long) map, flags, 0, 0);
344
345	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
346			       BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID)))
347		return -EINVAL;
348
349	user = flags & BPF_F_USER_STACK;
350	kernel = !user;
351
352	trace = ctx->data->callchain;
353	if (unlikely(!trace))
354		return -EFAULT;
355
356	nr_kernel = count_kernel_ip(trace);
357
358	if (kernel) {
359		__u64 nr = trace->nr;
360
361		trace->nr = nr_kernel;
362		ret = __bpf_get_stackid(map, trace, flags);
363
364		/* restore nr */
365		trace->nr = nr;
366	} else { /* user */
367		u64 skip = flags & BPF_F_SKIP_FIELD_MASK;
368
369		skip += nr_kernel;
370		if (skip > BPF_F_SKIP_FIELD_MASK)
371			return -EFAULT;
372
373		flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip;
374		ret = __bpf_get_stackid(map, trace, flags);
375	}
376	return ret;
377}
378
379const struct bpf_func_proto bpf_get_stackid_proto_pe = {
380	.func		= bpf_get_stackid_pe,
381	.gpl_only	= false,
382	.ret_type	= RET_INTEGER,
383	.arg1_type	= ARG_PTR_TO_CTX,
384	.arg2_type	= ARG_CONST_MAP_PTR,
385	.arg3_type	= ARG_ANYTHING,
386};
387
388static long __bpf_get_stack(struct pt_regs *regs, struct task_struct *task,
389			    struct perf_callchain_entry *trace_in,
390			    void *buf, u32 size, u64 flags)
391{
392	u32 trace_nr, copy_len, elem_size, num_elem, max_depth;
393	bool user_build_id = flags & BPF_F_USER_BUILD_ID;
394	bool crosstask = task && task != current;
395	u32 skip = flags & BPF_F_SKIP_FIELD_MASK;
396	bool user = flags & BPF_F_USER_STACK;
397	struct perf_callchain_entry *trace;
398	bool kernel = !user;
399	int err = -EINVAL;
400	u64 *ips;
401
402	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
403			       BPF_F_USER_BUILD_ID)))
404		goto clear;
405	if (kernel && user_build_id)
406		goto clear;
407
408	elem_size = (user && user_build_id) ? sizeof(struct bpf_stack_build_id)
409					    : sizeof(u64);
410	if (unlikely(size % elem_size))
411		goto clear;
412
413	/* cannot get valid user stack for task without user_mode regs */
414	if (task && user && !user_mode(regs))
415		goto err_fault;
416
417	/* get_perf_callchain does not support crosstask user stack walking
418	 * but returns an empty stack instead of NULL.
419	 */
420	if (crosstask && user) {
421		err = -EOPNOTSUPP;
422		goto clear;
423	}
424
425	num_elem = size / elem_size;
426	max_depth = num_elem + skip;
427	if (sysctl_perf_event_max_stack < max_depth)
428		max_depth = sysctl_perf_event_max_stack;
429
430	if (trace_in)
431		trace = trace_in;
432	else if (kernel && task)
433		trace = get_callchain_entry_for_task(task, max_depth);
434	else
435		trace = get_perf_callchain(regs, 0, kernel, user, max_depth,
436					   crosstask, false);
437	if (unlikely(!trace))
438		goto err_fault;
439
440	if (trace->nr < skip)
441		goto err_fault;
442
443	trace_nr = trace->nr - skip;
444	trace_nr = (trace_nr <= num_elem) ? trace_nr : num_elem;
445	copy_len = trace_nr * elem_size;
446
447	ips = trace->ip + skip;
448	if (user && user_build_id)
449		stack_map_get_build_id_offset(buf, ips, trace_nr, user);
450	else
451		memcpy(buf, ips, copy_len);
452
453	if (size > copy_len)
454		memset(buf + copy_len, 0, size - copy_len);
455	return copy_len;
456
457err_fault:
458	err = -EFAULT;
459clear:
460	memset(buf, 0, size);
461	return err;
462}
463
464BPF_CALL_4(bpf_get_stack, struct pt_regs *, regs, void *, buf, u32, size,
465	   u64, flags)
466{
467	return __bpf_get_stack(regs, NULL, NULL, buf, size, flags);
468}
469
470const struct bpf_func_proto bpf_get_stack_proto = {
471	.func		= bpf_get_stack,
472	.gpl_only	= true,
473	.ret_type	= RET_INTEGER,
474	.arg1_type	= ARG_PTR_TO_CTX,
475	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
476	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
477	.arg4_type	= ARG_ANYTHING,
478};
479
480BPF_CALL_4(bpf_get_task_stack, struct task_struct *, task, void *, buf,
481	   u32, size, u64, flags)
482{
483	struct pt_regs *regs;
484	long res = -EINVAL;
485
486	if (!try_get_task_stack(task))
487		return -EFAULT;
488
489	regs = task_pt_regs(task);
490	if (regs)
491		res = __bpf_get_stack(regs, task, NULL, buf, size, flags);
492	put_task_stack(task);
493
494	return res;
495}
496
497const struct bpf_func_proto bpf_get_task_stack_proto = {
498	.func		= bpf_get_task_stack,
499	.gpl_only	= false,
500	.ret_type	= RET_INTEGER,
501	.arg1_type	= ARG_PTR_TO_BTF_ID,
502	.arg1_btf_id	= &btf_tracing_ids[BTF_TRACING_TYPE_TASK],
503	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
504	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
505	.arg4_type	= ARG_ANYTHING,
506};
507
508BPF_CALL_4(bpf_get_stack_pe, struct bpf_perf_event_data_kern *, ctx,
509	   void *, buf, u32, size, u64, flags)
510{
511	struct pt_regs *regs = (struct pt_regs *)(ctx->regs);
512	struct perf_event *event = ctx->event;
513	struct perf_callchain_entry *trace;
514	bool kernel, user;
515	int err = -EINVAL;
516	__u64 nr_kernel;
517
518	if (!(event->attr.sample_type & PERF_SAMPLE_CALLCHAIN))
519		return __bpf_get_stack(regs, NULL, NULL, buf, size, flags);
520
521	if (unlikely(flags & ~(BPF_F_SKIP_FIELD_MASK | BPF_F_USER_STACK |
522			       BPF_F_USER_BUILD_ID)))
523		goto clear;
524
525	user = flags & BPF_F_USER_STACK;
526	kernel = !user;
527
528	err = -EFAULT;
529	trace = ctx->data->callchain;
530	if (unlikely(!trace))
531		goto clear;
532
533	nr_kernel = count_kernel_ip(trace);
534
535	if (kernel) {
536		__u64 nr = trace->nr;
537
538		trace->nr = nr_kernel;
539		err = __bpf_get_stack(regs, NULL, trace, buf, size, flags);
540
541		/* restore nr */
542		trace->nr = nr;
543	} else { /* user */
544		u64 skip = flags & BPF_F_SKIP_FIELD_MASK;
545
546		skip += nr_kernel;
547		if (skip > BPF_F_SKIP_FIELD_MASK)
548			goto clear;
549
550		flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip;
551		err = __bpf_get_stack(regs, NULL, trace, buf, size, flags);
552	}
553	return err;
554
555clear:
556	memset(buf, 0, size);
557	return err;
558
559}
560
561const struct bpf_func_proto bpf_get_stack_proto_pe = {
562	.func		= bpf_get_stack_pe,
563	.gpl_only	= true,
564	.ret_type	= RET_INTEGER,
565	.arg1_type	= ARG_PTR_TO_CTX,
566	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
567	.arg3_type	= ARG_CONST_SIZE_OR_ZERO,
568	.arg4_type	= ARG_ANYTHING,
569};
570
571/* Called from eBPF program */
572static void *stack_map_lookup_elem(struct bpf_map *map, void *key)
573{
574	return ERR_PTR(-EOPNOTSUPP);
575}
576
577/* Called from syscall */
578int bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
579{
580	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
581	struct stack_map_bucket *bucket, *old_bucket;
582	u32 id = *(u32 *)key, trace_len;
583
584	if (unlikely(id >= smap->n_buckets))
585		return -ENOENT;
586
587	bucket = xchg(&smap->buckets[id], NULL);
588	if (!bucket)
589		return -ENOENT;
590
591	trace_len = bucket->nr * stack_map_data_size(map);
592	memcpy(value, bucket->data, trace_len);
593	memset(value + trace_len, 0, map->value_size - trace_len);
594
595	old_bucket = xchg(&smap->buckets[id], bucket);
596	if (old_bucket)
597		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
598	return 0;
599}
600
601static int stack_map_get_next_key(struct bpf_map *map, void *key,
602				  void *next_key)
603{
604	struct bpf_stack_map *smap = container_of(map,
605						  struct bpf_stack_map, map);
606	u32 id;
607
608	WARN_ON_ONCE(!rcu_read_lock_held());
609
610	if (!key) {
611		id = 0;
612	} else {
613		id = *(u32 *)key;
614		if (id >= smap->n_buckets || !smap->buckets[id])
615			id = 0;
616		else
617			id++;
618	}
619
620	while (id < smap->n_buckets && !smap->buckets[id])
621		id++;
622
623	if (id >= smap->n_buckets)
624		return -ENOENT;
625
626	*(u32 *)next_key = id;
627	return 0;
628}
629
630static long stack_map_update_elem(struct bpf_map *map, void *key, void *value,
631				  u64 map_flags)
632{
633	return -EINVAL;
634}
635
636/* Called from syscall or from eBPF program */
637static long stack_map_delete_elem(struct bpf_map *map, void *key)
638{
639	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
640	struct stack_map_bucket *old_bucket;
641	u32 id = *(u32 *)key;
642
643	if (unlikely(id >= smap->n_buckets))
644		return -E2BIG;
645
646	old_bucket = xchg(&smap->buckets[id], NULL);
647	if (old_bucket) {
648		pcpu_freelist_push(&smap->freelist, &old_bucket->fnode);
649		return 0;
650	} else {
651		return -ENOENT;
652	}
653}
654
655/* Called when map->refcnt goes to zero, either from workqueue or from syscall */
656static void stack_map_free(struct bpf_map *map)
657{
658	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
659
 
 
 
660	bpf_map_area_free(smap->elems);
661	pcpu_freelist_destroy(&smap->freelist);
662	bpf_map_area_free(smap);
663	put_callchain_buffers();
664}
665
666static u64 stack_map_mem_usage(const struct bpf_map *map)
667{
668	struct bpf_stack_map *smap = container_of(map, struct bpf_stack_map, map);
669	u64 value_size = map->value_size;
670	u64 n_buckets = smap->n_buckets;
671	u64 enties = map->max_entries;
672	u64 usage = sizeof(*smap);
673
674	usage += n_buckets * sizeof(struct stack_map_bucket *);
675	usage += enties * (sizeof(struct stack_map_bucket) + value_size);
676	return usage;
677}
678
679BTF_ID_LIST_SINGLE(stack_trace_map_btf_ids, struct, bpf_stack_map)
680const struct bpf_map_ops stack_trace_map_ops = {
681	.map_meta_equal = bpf_map_meta_equal,
682	.map_alloc = stack_map_alloc,
683	.map_free = stack_map_free,
684	.map_get_next_key = stack_map_get_next_key,
685	.map_lookup_elem = stack_map_lookup_elem,
686	.map_update_elem = stack_map_update_elem,
687	.map_delete_elem = stack_map_delete_elem,
688	.map_check_btf = map_check_no_btf,
689	.map_mem_usage = stack_map_mem_usage,
690	.map_btf_id = &stack_trace_map_btf_ids[0],
691};