1 /* SPDX-License-Identifier: GPL-2.0 */
5 #ifndef _LINUX_ALLOC_TAG_H
6 #define _LINUX_ALLOC_TAG_H
9 #include <linux/codetag.h>
10 #include <linux/container_of.h>
11 #include <linux/preempt.h>
12 #include <asm/percpu.h>
13 #include <linux/cpumask.h>
14 #include <linux/smp.h>
15 #include <linux/static_key.h>
16 #include <linux/irqflags.h>
18 struct alloc_tag_counters {
24 * An instance of this structure is created in a special ELF section at every
25 * allocation callsite. At runtime, the special section is treated as
26 * an array of these. Embedded codetag utilizes codetag framework.
30 struct alloc_tag_counters __percpu *counters;
33 #ifdef CONFIG_MEM_ALLOC_PROFILING_DEBUG
35 #define CODETAG_EMPTY ((void *)1)
37 static inline bool is_codetag_empty(union codetag_ref *ref)
39 return ref->ct == CODETAG_EMPTY;
42 static inline void set_codetag_empty(union codetag_ref *ref)
45 ref->ct = CODETAG_EMPTY;
48 #else /* CONFIG_MEM_ALLOC_PROFILING_DEBUG */
50 static inline bool is_codetag_empty(union codetag_ref *ref) { return false; }
51 static inline void set_codetag_empty(union codetag_ref *ref) {}
53 #endif /* CONFIG_MEM_ALLOC_PROFILING_DEBUG */
55 #ifdef CONFIG_MEM_ALLOC_PROFILING
57 struct codetag_bytes {
62 size_t alloc_tag_top_users(struct codetag_bytes *tags, size_t count, bool can_sleep);
64 static inline struct alloc_tag *ct_to_alloc_tag(struct codetag *ct)
66 return container_of(ct, struct alloc_tag, ct);
69 #ifdef ARCH_NEEDS_WEAK_PER_CPU
71 * When percpu variables are required to be defined as weak, static percpu
72 * variables can't be used inside a function (see comments for DECLARE_PER_CPU_SECTION).
73 * Instead we will accound all module allocations to a single counter.
75 DECLARE_PER_CPU(struct alloc_tag_counters, _shared_alloc_tag);
77 #define DEFINE_ALLOC_TAG(_alloc_tag) \
78 static struct alloc_tag _alloc_tag __used __aligned(8) \
79 __section("alloc_tags") = { \
80 .ct = CODE_TAG_INIT, \
81 .counters = &_shared_alloc_tag };
83 #else /* ARCH_NEEDS_WEAK_PER_CPU */
85 #define DEFINE_ALLOC_TAG(_alloc_tag) \
86 static DEFINE_PER_CPU(struct alloc_tag_counters, _alloc_tag_cntr); \
87 static struct alloc_tag _alloc_tag __used __aligned(8) \
88 __section("alloc_tags") = { \
89 .ct = CODE_TAG_INIT, \
90 .counters = &_alloc_tag_cntr };
92 #endif /* ARCH_NEEDS_WEAK_PER_CPU */
94 DECLARE_STATIC_KEY_MAYBE(CONFIG_MEM_ALLOC_PROFILING_ENABLED_BY_DEFAULT,
95 mem_alloc_profiling_key);
97 static inline bool mem_alloc_profiling_enabled(void)
99 return static_branch_maybe(CONFIG_MEM_ALLOC_PROFILING_ENABLED_BY_DEFAULT,
100 &mem_alloc_profiling_key);
103 static inline struct alloc_tag_counters alloc_tag_read(struct alloc_tag *tag)
105 struct alloc_tag_counters v = { 0, 0 };
106 struct alloc_tag_counters *counter;
109 for_each_possible_cpu(cpu) {
110 counter = per_cpu_ptr(tag->counters, cpu);
111 v.bytes += counter->bytes;
112 v.calls += counter->calls;
118 #ifdef CONFIG_MEM_ALLOC_PROFILING_DEBUG
119 static inline void alloc_tag_add_check(union codetag_ref *ref, struct alloc_tag *tag)
121 WARN_ONCE(ref && ref->ct,
122 "alloc_tag was not cleared (got tag for %s:%u)\n",
123 ref->ct->filename, ref->ct->lineno);
125 WARN_ONCE(!tag, "current->alloc_tag not set");
128 static inline void alloc_tag_sub_check(union codetag_ref *ref)
130 WARN_ONCE(ref && !ref->ct, "alloc_tag was not set\n");
133 static inline void alloc_tag_add_check(union codetag_ref *ref, struct alloc_tag *tag) {}
134 static inline void alloc_tag_sub_check(union codetag_ref *ref) {}
137 /* Caller should verify both ref and tag to be valid */
138 static inline void __alloc_tag_ref_set(union codetag_ref *ref, struct alloc_tag *tag)
142 * We need in increment the call counter every time we have a new
143 * allocation or when we split a large allocation into smaller ones.
144 * Each new reference for every sub-allocation needs to increment call
145 * counter because when we free each part the counter will be decremented.
147 this_cpu_inc(tag->counters->calls);
150 static inline void alloc_tag_ref_set(union codetag_ref *ref, struct alloc_tag *tag)
152 alloc_tag_add_check(ref, tag);
156 __alloc_tag_ref_set(ref, tag);
159 static inline void alloc_tag_add(union codetag_ref *ref, struct alloc_tag *tag, size_t bytes)
161 alloc_tag_add_check(ref, tag);
165 __alloc_tag_ref_set(ref, tag);
166 this_cpu_add(tag->counters->bytes, bytes);
169 static inline void alloc_tag_sub(union codetag_ref *ref, size_t bytes)
171 struct alloc_tag *tag;
173 alloc_tag_sub_check(ref);
174 if (!ref || !ref->ct)
177 if (is_codetag_empty(ref)) {
182 tag = ct_to_alloc_tag(ref->ct);
184 this_cpu_sub(tag->counters->bytes, bytes);
185 this_cpu_dec(tag->counters->calls);
190 #define alloc_tag_record(p) ((p) = current->alloc_tag)
192 #else /* CONFIG_MEM_ALLOC_PROFILING */
194 #define DEFINE_ALLOC_TAG(_alloc_tag)
195 static inline bool mem_alloc_profiling_enabled(void) { return false; }
196 static inline void alloc_tag_add(union codetag_ref *ref, struct alloc_tag *tag,
198 static inline void alloc_tag_sub(union codetag_ref *ref, size_t bytes) {}
199 #define alloc_tag_record(p) do {} while (0)
201 #endif /* CONFIG_MEM_ALLOC_PROFILING */
203 #define alloc_hooks_tag(_tag, _do_alloc) \
205 struct alloc_tag * __maybe_unused _old = alloc_tag_save(_tag); \
206 typeof(_do_alloc) _res = _do_alloc; \
207 alloc_tag_restore(_tag, _old); \
211 #define alloc_hooks(_do_alloc) \
213 DEFINE_ALLOC_TAG(_alloc_tag); \
214 alloc_hooks_tag(&_alloc_tag, _do_alloc); \
217 #endif /* _LINUX_ALLOC_TAG_H */