]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
97d06609 CL |
2 | #ifndef MM_SLAB_H |
3 | #define MM_SLAB_H | |
4 | /* | |
5 | * Internal slab definitions | |
6 | */ | |
d5d2c02a | 7 | void __init kmem_cache_init(void); |
97d06609 | 8 | |
6801be4f PZ |
9 | #ifdef CONFIG_64BIT |
10 | # ifdef system_has_cmpxchg128 | |
11 | # define system_has_freelist_aba() system_has_cmpxchg128() | |
12 | # define try_cmpxchg_freelist try_cmpxchg128 | |
13 | # endif | |
14 | #define this_cpu_try_cmpxchg_freelist this_cpu_try_cmpxchg128 | |
15 | typedef u128 freelist_full_t; | |
16 | #else /* CONFIG_64BIT */ | |
17 | # ifdef system_has_cmpxchg64 | |
18 | # define system_has_freelist_aba() system_has_cmpxchg64() | |
19 | # define try_cmpxchg_freelist try_cmpxchg64 | |
20 | # endif | |
21 | #define this_cpu_try_cmpxchg_freelist this_cpu_try_cmpxchg64 | |
22 | typedef u64 freelist_full_t; | |
23 | #endif /* CONFIG_64BIT */ | |
24 | ||
25 | #if defined(system_has_freelist_aba) && !defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE) | |
26 | #undef system_has_freelist_aba | |
27 | #endif | |
28 | ||
29 | /* | |
30 | * Freelist pointer and counter to cmpxchg together, avoids the typical ABA | |
31 | * problems with cmpxchg of just a pointer. | |
32 | */ | |
33 | typedef union { | |
34 | struct { | |
35 | void *freelist; | |
36 | unsigned long counter; | |
37 | }; | |
38 | freelist_full_t full; | |
39 | } freelist_aba_t; | |
40 | ||
d122019b MWO |
41 | /* Reuses the bits in struct page */ |
42 | struct slab { | |
43 | unsigned long __page_flags; | |
401fb12c VB |
44 | |
45 | #if defined(CONFIG_SLAB) | |
46 | ||
130d4df5 | 47 | struct kmem_cache *slab_cache; |
d122019b | 48 | union { |
130d4df5 VB |
49 | struct { |
50 | struct list_head slab_list; | |
51 | void *freelist; /* array of free object indexes */ | |
52 | void *s_mem; /* first object */ | |
53 | }; | |
401fb12c VB |
54 | struct rcu_head rcu_head; |
55 | }; | |
401fb12c VB |
56 | unsigned int active; |
57 | ||
58 | #elif defined(CONFIG_SLUB) | |
59 | ||
401fb12c | 60 | struct kmem_cache *slab_cache; |
d122019b | 61 | union { |
401fb12c | 62 | struct { |
130d4df5 VB |
63 | union { |
64 | struct list_head slab_list; | |
65 | #ifdef CONFIG_SLUB_CPU_PARTIAL | |
66 | struct { | |
67 | struct slab *next; | |
68 | int slabs; /* Nr of slabs left */ | |
69 | }; | |
70 | #endif | |
71 | }; | |
72 | /* Double-word boundary */ | |
130d4df5 | 73 | union { |
130d4df5 | 74 | struct { |
6801be4f PZ |
75 | void *freelist; /* first free object */ |
76 | union { | |
77 | unsigned long counters; | |
78 | struct { | |
79 | unsigned inuse:16; | |
80 | unsigned objects:15; | |
81 | unsigned frozen:1; | |
82 | }; | |
83 | }; | |
130d4df5 | 84 | }; |
6801be4f PZ |
85 | #ifdef system_has_freelist_aba |
86 | freelist_aba_t freelist_counter; | |
87 | #endif | |
130d4df5 | 88 | }; |
d122019b | 89 | }; |
130d4df5 | 90 | struct rcu_head rcu_head; |
d122019b | 91 | }; |
401fb12c VB |
92 | unsigned int __unused; |
93 | ||
401fb12c VB |
94 | #else |
95 | #error "Unexpected slab allocator configured" | |
96 | #endif | |
d122019b | 97 | |
d122019b MWO |
98 | atomic_t __page_refcount; |
99 | #ifdef CONFIG_MEMCG | |
100 | unsigned long memcg_data; | |
101 | #endif | |
102 | }; | |
103 | ||
104 | #define SLAB_MATCH(pg, sl) \ | |
105 | static_assert(offsetof(struct page, pg) == offsetof(struct slab, sl)) | |
106 | SLAB_MATCH(flags, __page_flags); | |
130d4df5 | 107 | SLAB_MATCH(compound_head, slab_cache); /* Ensure bit 0 is clear */ |
d122019b MWO |
108 | SLAB_MATCH(_refcount, __page_refcount); |
109 | #ifdef CONFIG_MEMCG | |
110 | SLAB_MATCH(memcg_data, memcg_data); | |
111 | #endif | |
112 | #undef SLAB_MATCH | |
113 | static_assert(sizeof(struct slab) <= sizeof(struct page)); | |
6801be4f PZ |
114 | #if defined(system_has_freelist_aba) && defined(CONFIG_SLUB) |
115 | static_assert(IS_ALIGNED(offsetof(struct slab, freelist), sizeof(freelist_aba_t))); | |
130d4df5 | 116 | #endif |
d122019b MWO |
117 | |
118 | /** | |
119 | * folio_slab - Converts from folio to slab. | |
120 | * @folio: The folio. | |
121 | * | |
122 | * Currently struct slab is a different representation of a folio where | |
123 | * folio_test_slab() is true. | |
124 | * | |
125 | * Return: The slab which contains this folio. | |
126 | */ | |
127 | #define folio_slab(folio) (_Generic((folio), \ | |
128 | const struct folio *: (const struct slab *)(folio), \ | |
129 | struct folio *: (struct slab *)(folio))) | |
130 | ||
131 | /** | |
132 | * slab_folio - The folio allocated for a slab | |
133 | * @slab: The slab. | |
134 | * | |
135 | * Slabs are allocated as folios that contain the individual objects and are | |
136 | * using some fields in the first struct page of the folio - those fields are | |
137 | * now accessed by struct slab. It is occasionally necessary to convert back to | |
138 | * a folio in order to communicate with the rest of the mm. Please use this | |
139 | * helper function instead of casting yourself, as the implementation may change | |
140 | * in the future. | |
141 | */ | |
142 | #define slab_folio(s) (_Generic((s), \ | |
143 | const struct slab *: (const struct folio *)s, \ | |
144 | struct slab *: (struct folio *)s)) | |
145 | ||
146 | /** | |
147 | * page_slab - Converts from first struct page to slab. | |
148 | * @p: The first (either head of compound or single) page of slab. | |
149 | * | |
150 | * A temporary wrapper to convert struct page to struct slab in situations where | |
151 | * we know the page is the compound head, or single order-0 page. | |
152 | * | |
153 | * Long-term ideally everything would work with struct slab directly or go | |
154 | * through folio to struct slab. | |
155 | * | |
156 | * Return: The slab which contains this page | |
157 | */ | |
158 | #define page_slab(p) (_Generic((p), \ | |
159 | const struct page *: (const struct slab *)(p), \ | |
160 | struct page *: (struct slab *)(p))) | |
161 | ||
162 | /** | |
163 | * slab_page - The first struct page allocated for a slab | |
164 | * @slab: The slab. | |
165 | * | |
166 | * A convenience wrapper for converting slab to the first struct page of the | |
167 | * underlying folio, to communicate with code not yet converted to folio or | |
168 | * struct slab. | |
169 | */ | |
170 | #define slab_page(s) folio_page(slab_folio(s), 0) | |
171 | ||
172 | /* | |
173 | * If network-based swap is enabled, sl*b must keep track of whether pages | |
174 | * were allocated from pfmemalloc reserves. | |
175 | */ | |
176 | static inline bool slab_test_pfmemalloc(const struct slab *slab) | |
177 | { | |
178 | return folio_test_active((struct folio *)slab_folio(slab)); | |
179 | } | |
180 | ||
181 | static inline void slab_set_pfmemalloc(struct slab *slab) | |
182 | { | |
183 | folio_set_active(slab_folio(slab)); | |
184 | } | |
185 | ||
186 | static inline void slab_clear_pfmemalloc(struct slab *slab) | |
187 | { | |
188 | folio_clear_active(slab_folio(slab)); | |
189 | } | |
190 | ||
191 | static inline void __slab_clear_pfmemalloc(struct slab *slab) | |
192 | { | |
193 | __folio_clear_active(slab_folio(slab)); | |
194 | } | |
195 | ||
196 | static inline void *slab_address(const struct slab *slab) | |
197 | { | |
198 | return folio_address(slab_folio(slab)); | |
199 | } | |
200 | ||
201 | static inline int slab_nid(const struct slab *slab) | |
202 | { | |
203 | return folio_nid(slab_folio(slab)); | |
204 | } | |
205 | ||
206 | static inline pg_data_t *slab_pgdat(const struct slab *slab) | |
207 | { | |
208 | return folio_pgdat(slab_folio(slab)); | |
209 | } | |
210 | ||
211 | static inline struct slab *virt_to_slab(const void *addr) | |
212 | { | |
213 | struct folio *folio = virt_to_folio(addr); | |
214 | ||
215 | if (!folio_test_slab(folio)) | |
216 | return NULL; | |
217 | ||
218 | return folio_slab(folio); | |
219 | } | |
220 | ||
221 | static inline int slab_order(const struct slab *slab) | |
222 | { | |
223 | return folio_order((struct folio *)slab_folio(slab)); | |
224 | } | |
225 | ||
226 | static inline size_t slab_size(const struct slab *slab) | |
227 | { | |
228 | return PAGE_SIZE << slab_order(slab); | |
229 | } | |
230 | ||
07f361b2 JK |
231 | #ifdef CONFIG_SLAB |
232 | #include <linux/slab_def.h> | |
233 | #endif | |
234 | ||
235 | #ifdef CONFIG_SLUB | |
236 | #include <linux/slub_def.h> | |
237 | #endif | |
238 | ||
239 | #include <linux/memcontrol.h> | |
11c7aec2 | 240 | #include <linux/fault-inject.h> |
11c7aec2 JDB |
241 | #include <linux/kasan.h> |
242 | #include <linux/kmemleak.h> | |
7c00fce9 | 243 | #include <linux/random.h> |
d92a8cfc | 244 | #include <linux/sched/mm.h> |
88f2ef73 | 245 | #include <linux/list_lru.h> |
07f361b2 | 246 | |
97d06609 CL |
247 | /* |
248 | * State of the slab allocator. | |
249 | * | |
250 | * This is used to describe the states of the allocator during bootup. | |
251 | * Allocators use this to gradually bootstrap themselves. Most allocators | |
252 | * have the problem that the structures used for managing slab caches are | |
253 | * allocated from slab caches themselves. | |
254 | */ | |
255 | enum slab_state { | |
256 | DOWN, /* No slab functionality yet */ | |
257 | PARTIAL, /* SLUB: kmem_cache_node available */ | |
ce8eb6c4 | 258 | PARTIAL_NODE, /* SLAB: kmalloc size for node struct available */ |
97d06609 CL |
259 | UP, /* Slab caches usable but not all extras yet */ |
260 | FULL /* Everything is working */ | |
261 | }; | |
262 | ||
263 | extern enum slab_state slab_state; | |
264 | ||
18004c5d CL |
265 | /* The slab cache mutex protects the management structures during changes */ |
266 | extern struct mutex slab_mutex; | |
9b030cb8 CL |
267 | |
268 | /* The list of all slab caches on the system */ | |
18004c5d CL |
269 | extern struct list_head slab_caches; |
270 | ||
9b030cb8 CL |
271 | /* The slab cache that manages slab cache information */ |
272 | extern struct kmem_cache *kmem_cache; | |
273 | ||
af3b5f87 VB |
274 | /* A table of kmalloc cache names and sizes */ |
275 | extern const struct kmalloc_info_struct { | |
cb5d9fb3 | 276 | const char *name[NR_KMALLOC_TYPES]; |
55de8b9c | 277 | unsigned int size; |
af3b5f87 VB |
278 | } kmalloc_info[]; |
279 | ||
f97d5f63 | 280 | /* Kmalloc array related functions */ |
34cc6990 | 281 | void setup_kmalloc_cache_index_table(void); |
d50112ed | 282 | void create_kmalloc_caches(slab_flags_t); |
2c59dd65 CL |
283 | |
284 | /* Find the kmalloc slab corresponding for a certain size */ | |
285 | struct kmem_cache *kmalloc_slab(size_t, gfp_t); | |
ed4cd17e HY |
286 | |
287 | void *__kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, | |
288 | int node, size_t orig_size, | |
289 | unsigned long caller); | |
290 | void __kmem_cache_free(struct kmem_cache *s, void *x, unsigned long caller); | |
f97d5f63 | 291 | |
44405099 | 292 | gfp_t kmalloc_fix_flags(gfp_t flags); |
f97d5f63 | 293 | |
9b030cb8 | 294 | /* Functions provided by the slab allocators */ |
d50112ed | 295 | int __kmem_cache_create(struct kmem_cache *, slab_flags_t flags); |
97d06609 | 296 | |
0c474d31 CM |
297 | void __init new_kmalloc_cache(int idx, enum kmalloc_cache_type type, |
298 | slab_flags_t flags); | |
45530c44 | 299 | extern void create_boot_cache(struct kmem_cache *, const char *name, |
361d575e AD |
300 | unsigned int size, slab_flags_t flags, |
301 | unsigned int useroffset, unsigned int usersize); | |
45530c44 | 302 | |
423c929c | 303 | int slab_unmergeable(struct kmem_cache *s); |
f4957d5b | 304 | struct kmem_cache *find_mergeable(unsigned size, unsigned align, |
d50112ed | 305 | slab_flags_t flags, const char *name, void (*ctor)(void *)); |
2633d7a0 | 306 | struct kmem_cache * |
f4957d5b | 307 | __kmem_cache_alias(const char *name, unsigned int size, unsigned int align, |
d50112ed | 308 | slab_flags_t flags, void (*ctor)(void *)); |
423c929c | 309 | |
0293d1fd | 310 | slab_flags_t kmem_cache_flags(unsigned int object_size, |
37540008 | 311 | slab_flags_t flags, const char *name); |
cbb79694 | 312 | |
bb944290 FT |
313 | static inline bool is_kmalloc_cache(struct kmem_cache *s) |
314 | { | |
bb944290 | 315 | return (s->flags & SLAB_KMALLOC); |
bb944290 | 316 | } |
cbb79694 | 317 | |
d8843922 | 318 | /* Legal flag mask for kmem_cache_create(), for various configurations */ |
6d6ea1e9 NB |
319 | #define SLAB_CORE_FLAGS (SLAB_HWCACHE_ALIGN | SLAB_CACHE_DMA | \ |
320 | SLAB_CACHE_DMA32 | SLAB_PANIC | \ | |
5f0d5a3a | 321 | SLAB_TYPESAFE_BY_RCU | SLAB_DEBUG_OBJECTS ) |
d8843922 GC |
322 | |
323 | #if defined(CONFIG_DEBUG_SLAB) | |
324 | #define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER) | |
325 | #elif defined(CONFIG_SLUB_DEBUG) | |
326 | #define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \ | |
becfda68 | 327 | SLAB_TRACE | SLAB_CONSISTENCY_CHECKS) |
d8843922 GC |
328 | #else |
329 | #define SLAB_DEBUG_FLAGS (0) | |
330 | #endif | |
331 | ||
332 | #if defined(CONFIG_SLAB) | |
333 | #define SLAB_CACHE_FLAGS (SLAB_MEM_SPREAD | SLAB_NOLEAKTRACE | \ | |
230e9fc2 | 334 | SLAB_RECLAIM_ACCOUNT | SLAB_TEMPORARY | \ |
d0bf7d57 | 335 | SLAB_ACCOUNT | SLAB_NO_MERGE) |
d8843922 GC |
336 | #elif defined(CONFIG_SLUB) |
337 | #define SLAB_CACHE_FLAGS (SLAB_NOLEAKTRACE | SLAB_RECLAIM_ACCOUNT | \ | |
6cd6d33c | 338 | SLAB_TEMPORARY | SLAB_ACCOUNT | \ |
d0bf7d57 | 339 | SLAB_NO_USER_FLAGS | SLAB_KMALLOC | SLAB_NO_MERGE) |
d8843922 | 340 | #else |
34dbc3aa | 341 | #define SLAB_CACHE_FLAGS (SLAB_NOLEAKTRACE) |
d8843922 GC |
342 | #endif |
343 | ||
e70954fd | 344 | /* Common flags available with current configuration */ |
d8843922 GC |
345 | #define CACHE_CREATE_MASK (SLAB_CORE_FLAGS | SLAB_DEBUG_FLAGS | SLAB_CACHE_FLAGS) |
346 | ||
e70954fd TG |
347 | /* Common flags permitted for kmem_cache_create */ |
348 | #define SLAB_FLAGS_PERMITTED (SLAB_CORE_FLAGS | \ | |
349 | SLAB_RED_ZONE | \ | |
350 | SLAB_POISON | \ | |
351 | SLAB_STORE_USER | \ | |
352 | SLAB_TRACE | \ | |
353 | SLAB_CONSISTENCY_CHECKS | \ | |
354 | SLAB_MEM_SPREAD | \ | |
355 | SLAB_NOLEAKTRACE | \ | |
356 | SLAB_RECLAIM_ACCOUNT | \ | |
357 | SLAB_TEMPORARY | \ | |
a285909f | 358 | SLAB_ACCOUNT | \ |
6cd6d33c | 359 | SLAB_KMALLOC | \ |
d0bf7d57 | 360 | SLAB_NO_MERGE | \ |
a285909f | 361 | SLAB_NO_USER_FLAGS) |
e70954fd | 362 | |
f9e13c0a | 363 | bool __kmem_cache_empty(struct kmem_cache *); |
945cf2b6 | 364 | int __kmem_cache_shutdown(struct kmem_cache *); |
52b4b950 | 365 | void __kmem_cache_release(struct kmem_cache *); |
c9fc5864 | 366 | int __kmem_cache_shrink(struct kmem_cache *); |
41a21285 | 367 | void slab_kmem_cache_release(struct kmem_cache *); |
945cf2b6 | 368 | |
b7454ad3 GC |
369 | struct seq_file; |
370 | struct file; | |
b7454ad3 | 371 | |
0d7561c6 GC |
372 | struct slabinfo { |
373 | unsigned long active_objs; | |
374 | unsigned long num_objs; | |
375 | unsigned long active_slabs; | |
376 | unsigned long num_slabs; | |
377 | unsigned long shared_avail; | |
378 | unsigned int limit; | |
379 | unsigned int batchcount; | |
380 | unsigned int shared; | |
381 | unsigned int objects_per_slab; | |
382 | unsigned int cache_order; | |
383 | }; | |
384 | ||
385 | void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo); | |
386 | void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *s); | |
b7454ad3 GC |
387 | ssize_t slabinfo_write(struct file *file, const char __user *buffer, |
388 | size_t count, loff_t *ppos); | |
ba6c496e | 389 | |
1a984c4e | 390 | static inline enum node_stat_item cache_vmstat_idx(struct kmem_cache *s) |
6cea1d56 RG |
391 | { |
392 | return (s->flags & SLAB_RECLAIM_ACCOUNT) ? | |
d42f3245 | 393 | NR_SLAB_RECLAIMABLE_B : NR_SLAB_UNRECLAIMABLE_B; |
6cea1d56 RG |
394 | } |
395 | ||
e42f174e VB |
396 | #ifdef CONFIG_SLUB_DEBUG |
397 | #ifdef CONFIG_SLUB_DEBUG_ON | |
398 | DECLARE_STATIC_KEY_TRUE(slub_debug_enabled); | |
399 | #else | |
400 | DECLARE_STATIC_KEY_FALSE(slub_debug_enabled); | |
401 | #endif | |
402 | extern void print_tracking(struct kmem_cache *s, void *object); | |
1f9f78b1 | 403 | long validate_slab_cache(struct kmem_cache *s); |
0d4a062a ME |
404 | static inline bool __slub_debug_enabled(void) |
405 | { | |
406 | return static_branch_unlikely(&slub_debug_enabled); | |
407 | } | |
e42f174e VB |
408 | #else |
409 | static inline void print_tracking(struct kmem_cache *s, void *object) | |
410 | { | |
411 | } | |
0d4a062a ME |
412 | static inline bool __slub_debug_enabled(void) |
413 | { | |
414 | return false; | |
415 | } | |
e42f174e VB |
416 | #endif |
417 | ||
418 | /* | |
419 | * Returns true if any of the specified slub_debug flags is enabled for the | |
420 | * cache. Use only for flags parsed by setup_slub_debug() as it also enables | |
421 | * the static key. | |
422 | */ | |
423 | static inline bool kmem_cache_debug_flags(struct kmem_cache *s, slab_flags_t flags) | |
424 | { | |
0d4a062a ME |
425 | if (IS_ENABLED(CONFIG_SLUB_DEBUG)) |
426 | VM_WARN_ON_ONCE(!(flags & SLAB_DEBUG_FLAGS)); | |
427 | if (__slub_debug_enabled()) | |
e42f174e | 428 | return s->flags & flags; |
e42f174e VB |
429 | return false; |
430 | } | |
431 | ||
84c07d11 | 432 | #ifdef CONFIG_MEMCG_KMEM |
4b5f8d9a VB |
433 | /* |
434 | * slab_objcgs - get the object cgroups vector associated with a slab | |
435 | * @slab: a pointer to the slab struct | |
436 | * | |
437 | * Returns a pointer to the object cgroups vector associated with the slab, | |
438 | * or NULL if no such vector has been associated yet. | |
439 | */ | |
440 | static inline struct obj_cgroup **slab_objcgs(struct slab *slab) | |
441 | { | |
442 | unsigned long memcg_data = READ_ONCE(slab->memcg_data); | |
443 | ||
444 | VM_BUG_ON_PAGE(memcg_data && !(memcg_data & MEMCG_DATA_OBJCGS), | |
445 | slab_page(slab)); | |
446 | VM_BUG_ON_PAGE(memcg_data & MEMCG_DATA_KMEM, slab_page(slab)); | |
447 | ||
448 | return (struct obj_cgroup **)(memcg_data & ~MEMCG_DATA_FLAGS_MASK); | |
449 | } | |
450 | ||
451 | int memcg_alloc_slab_cgroups(struct slab *slab, struct kmem_cache *s, | |
452 | gfp_t gfp, bool new_slab); | |
fdbcb2a6 WL |
453 | void mod_objcg_state(struct obj_cgroup *objcg, struct pglist_data *pgdat, |
454 | enum node_stat_item idx, int nr); | |
286e04b8 | 455 | |
4b5f8d9a | 456 | static inline void memcg_free_slab_cgroups(struct slab *slab) |
286e04b8 | 457 | { |
4b5f8d9a VB |
458 | kfree(slab_objcgs(slab)); |
459 | slab->memcg_data = 0; | |
286e04b8 RG |
460 | } |
461 | ||
f2fe7b09 RG |
462 | static inline size_t obj_full_size(struct kmem_cache *s) |
463 | { | |
464 | /* | |
465 | * For each accounted object there is an extra space which is used | |
466 | * to store obj_cgroup membership. Charge it too. | |
467 | */ | |
468 | return s->size + sizeof(struct obj_cgroup *); | |
469 | } | |
470 | ||
becaba65 RG |
471 | /* |
472 | * Returns false if the allocation should fail. | |
473 | */ | |
474 | static inline bool memcg_slab_pre_alloc_hook(struct kmem_cache *s, | |
88f2ef73 | 475 | struct list_lru *lru, |
becaba65 RG |
476 | struct obj_cgroup **objcgp, |
477 | size_t objects, gfp_t flags) | |
f2fe7b09 | 478 | { |
9855609b RG |
479 | struct obj_cgroup *objcg; |
480 | ||
f7a449f7 | 481 | if (!memcg_kmem_online()) |
becaba65 RG |
482 | return true; |
483 | ||
484 | if (!(flags & __GFP_ACCOUNT) && !(s->flags & SLAB_ACCOUNT)) | |
485 | return true; | |
486 | ||
9855609b RG |
487 | objcg = get_obj_cgroup_from_current(); |
488 | if (!objcg) | |
becaba65 | 489 | return true; |
9855609b | 490 | |
88f2ef73 MS |
491 | if (lru) { |
492 | int ret; | |
493 | struct mem_cgroup *memcg; | |
494 | ||
495 | memcg = get_mem_cgroup_from_objcg(objcg); | |
496 | ret = memcg_list_lru_alloc(memcg, lru, flags); | |
497 | css_put(&memcg->css); | |
498 | ||
499 | if (ret) | |
500 | goto out; | |
f2fe7b09 RG |
501 | } |
502 | ||
88f2ef73 MS |
503 | if (obj_cgroup_charge(objcg, flags, objects * obj_full_size(s))) |
504 | goto out; | |
505 | ||
becaba65 RG |
506 | *objcgp = objcg; |
507 | return true; | |
88f2ef73 MS |
508 | out: |
509 | obj_cgroup_put(objcg); | |
510 | return false; | |
f2fe7b09 RG |
511 | } |
512 | ||
964d4bd3 RG |
513 | static inline void memcg_slab_post_alloc_hook(struct kmem_cache *s, |
514 | struct obj_cgroup *objcg, | |
10befea9 RG |
515 | gfp_t flags, size_t size, |
516 | void **p) | |
964d4bd3 | 517 | { |
4b5f8d9a | 518 | struct slab *slab; |
964d4bd3 RG |
519 | unsigned long off; |
520 | size_t i; | |
521 | ||
f7a449f7 | 522 | if (!memcg_kmem_online() || !objcg) |
10befea9 RG |
523 | return; |
524 | ||
964d4bd3 RG |
525 | for (i = 0; i < size; i++) { |
526 | if (likely(p[i])) { | |
4b5f8d9a | 527 | slab = virt_to_slab(p[i]); |
10befea9 | 528 | |
4b5f8d9a VB |
529 | if (!slab_objcgs(slab) && |
530 | memcg_alloc_slab_cgroups(slab, s, flags, | |
2e9bd483 | 531 | false)) { |
10befea9 RG |
532 | obj_cgroup_uncharge(objcg, obj_full_size(s)); |
533 | continue; | |
534 | } | |
535 | ||
4b5f8d9a | 536 | off = obj_to_index(s, slab, p[i]); |
964d4bd3 | 537 | obj_cgroup_get(objcg); |
4b5f8d9a VB |
538 | slab_objcgs(slab)[off] = objcg; |
539 | mod_objcg_state(objcg, slab_pgdat(slab), | |
f2fe7b09 RG |
540 | cache_vmstat_idx(s), obj_full_size(s)); |
541 | } else { | |
542 | obj_cgroup_uncharge(objcg, obj_full_size(s)); | |
964d4bd3 RG |
543 | } |
544 | } | |
545 | obj_cgroup_put(objcg); | |
964d4bd3 RG |
546 | } |
547 | ||
b77d5b1b | 548 | static inline void memcg_slab_free_hook(struct kmem_cache *s, struct slab *slab, |
d1b2cf6c | 549 | void **p, int objects) |
964d4bd3 | 550 | { |
270c6a71 | 551 | struct obj_cgroup **objcgs; |
d1b2cf6c | 552 | int i; |
964d4bd3 | 553 | |
f7a449f7 | 554 | if (!memcg_kmem_online()) |
10befea9 RG |
555 | return; |
556 | ||
b77d5b1b MS |
557 | objcgs = slab_objcgs(slab); |
558 | if (!objcgs) | |
559 | return; | |
f2fe7b09 | 560 | |
b77d5b1b MS |
561 | for (i = 0; i < objects; i++) { |
562 | struct obj_cgroup *objcg; | |
563 | unsigned int off; | |
10befea9 | 564 | |
4b5f8d9a | 565 | off = obj_to_index(s, slab, p[i]); |
270c6a71 | 566 | objcg = objcgs[off]; |
d1b2cf6c BR |
567 | if (!objcg) |
568 | continue; | |
f2fe7b09 | 569 | |
270c6a71 | 570 | objcgs[off] = NULL; |
d1b2cf6c | 571 | obj_cgroup_uncharge(objcg, obj_full_size(s)); |
4b5f8d9a | 572 | mod_objcg_state(objcg, slab_pgdat(slab), cache_vmstat_idx(s), |
d1b2cf6c BR |
573 | -obj_full_size(s)); |
574 | obj_cgroup_put(objcg); | |
575 | } | |
964d4bd3 RG |
576 | } |
577 | ||
84c07d11 | 578 | #else /* CONFIG_MEMCG_KMEM */ |
4b5f8d9a VB |
579 | static inline struct obj_cgroup **slab_objcgs(struct slab *slab) |
580 | { | |
581 | return NULL; | |
582 | } | |
583 | ||
9855609b | 584 | static inline struct mem_cgroup *memcg_from_slab_obj(void *ptr) |
4d96ba35 RG |
585 | { |
586 | return NULL; | |
587 | } | |
588 | ||
4b5f8d9a | 589 | static inline int memcg_alloc_slab_cgroups(struct slab *slab, |
2e9bd483 | 590 | struct kmem_cache *s, gfp_t gfp, |
4b5f8d9a | 591 | bool new_slab) |
286e04b8 RG |
592 | { |
593 | return 0; | |
594 | } | |
595 | ||
4b5f8d9a | 596 | static inline void memcg_free_slab_cgroups(struct slab *slab) |
286e04b8 RG |
597 | { |
598 | } | |
599 | ||
becaba65 | 600 | static inline bool memcg_slab_pre_alloc_hook(struct kmem_cache *s, |
88f2ef73 | 601 | struct list_lru *lru, |
becaba65 RG |
602 | struct obj_cgroup **objcgp, |
603 | size_t objects, gfp_t flags) | |
f2fe7b09 | 604 | { |
becaba65 | 605 | return true; |
f2fe7b09 RG |
606 | } |
607 | ||
964d4bd3 RG |
608 | static inline void memcg_slab_post_alloc_hook(struct kmem_cache *s, |
609 | struct obj_cgroup *objcg, | |
10befea9 RG |
610 | gfp_t flags, size_t size, |
611 | void **p) | |
964d4bd3 RG |
612 | { |
613 | } | |
614 | ||
b77d5b1b | 615 | static inline void memcg_slab_free_hook(struct kmem_cache *s, struct slab *slab, |
d1b2cf6c | 616 | void **p, int objects) |
964d4bd3 RG |
617 | { |
618 | } | |
84c07d11 | 619 | #endif /* CONFIG_MEMCG_KMEM */ |
b9ce5ef4 | 620 | |
a64b5378 KC |
621 | static inline struct kmem_cache *virt_to_cache(const void *obj) |
622 | { | |
82c1775d | 623 | struct slab *slab; |
a64b5378 | 624 | |
82c1775d MWO |
625 | slab = virt_to_slab(obj); |
626 | if (WARN_ONCE(!slab, "%s: Object is not a Slab page!\n", | |
a64b5378 KC |
627 | __func__)) |
628 | return NULL; | |
82c1775d | 629 | return slab->slab_cache; |
a64b5378 KC |
630 | } |
631 | ||
b918653b MWO |
632 | static __always_inline void account_slab(struct slab *slab, int order, |
633 | struct kmem_cache *s, gfp_t gfp) | |
6cea1d56 | 634 | { |
f7a449f7 | 635 | if (memcg_kmem_online() && (s->flags & SLAB_ACCOUNT)) |
4b5f8d9a | 636 | memcg_alloc_slab_cgroups(slab, s, gfp, true); |
2e9bd483 | 637 | |
b918653b | 638 | mod_node_page_state(slab_pgdat(slab), cache_vmstat_idx(s), |
f2fe7b09 | 639 | PAGE_SIZE << order); |
6cea1d56 RG |
640 | } |
641 | ||
b918653b MWO |
642 | static __always_inline void unaccount_slab(struct slab *slab, int order, |
643 | struct kmem_cache *s) | |
6cea1d56 | 644 | { |
f7a449f7 | 645 | if (memcg_kmem_online()) |
4b5f8d9a | 646 | memcg_free_slab_cgroups(slab); |
9855609b | 647 | |
b918653b | 648 | mod_node_page_state(slab_pgdat(slab), cache_vmstat_idx(s), |
f2fe7b09 | 649 | -(PAGE_SIZE << order)); |
6cea1d56 RG |
650 | } |
651 | ||
e42f174e VB |
652 | static inline struct kmem_cache *cache_from_obj(struct kmem_cache *s, void *x) |
653 | { | |
654 | struct kmem_cache *cachep; | |
655 | ||
656 | if (!IS_ENABLED(CONFIG_SLAB_FREELIST_HARDENED) && | |
e42f174e VB |
657 | !kmem_cache_debug_flags(s, SLAB_CONSISTENCY_CHECKS)) |
658 | return s; | |
659 | ||
660 | cachep = virt_to_cache(x); | |
10befea9 | 661 | if (WARN(cachep && cachep != s, |
e42f174e VB |
662 | "%s: Wrong slab cache. %s but object is from %s\n", |
663 | __func__, s->name, cachep->name)) | |
664 | print_tracking(cachep, x); | |
665 | return cachep; | |
666 | } | |
d6a71648 HY |
667 | |
668 | void free_large_kmalloc(struct folio *folio, void *object); | |
669 | ||
8dfa9d55 HY |
670 | size_t __ksize(const void *objp); |
671 | ||
11c7aec2 JDB |
672 | static inline size_t slab_ksize(const struct kmem_cache *s) |
673 | { | |
674 | #ifndef CONFIG_SLUB | |
675 | return s->object_size; | |
676 | ||
677 | #else /* CONFIG_SLUB */ | |
678 | # ifdef CONFIG_SLUB_DEBUG | |
679 | /* | |
680 | * Debugging requires use of the padding between object | |
681 | * and whatever may come after it. | |
682 | */ | |
683 | if (s->flags & (SLAB_RED_ZONE | SLAB_POISON)) | |
684 | return s->object_size; | |
685 | # endif | |
80a9201a AP |
686 | if (s->flags & SLAB_KASAN) |
687 | return s->object_size; | |
11c7aec2 JDB |
688 | /* |
689 | * If we have the need to store the freelist pointer | |
690 | * back there or track user information then we can | |
691 | * only use the space before that information. | |
692 | */ | |
5f0d5a3a | 693 | if (s->flags & (SLAB_TYPESAFE_BY_RCU | SLAB_STORE_USER)) |
11c7aec2 JDB |
694 | return s->inuse; |
695 | /* | |
696 | * Else we can use all the padding etc for the allocation | |
697 | */ | |
698 | return s->size; | |
699 | #endif | |
700 | } | |
701 | ||
702 | static inline struct kmem_cache *slab_pre_alloc_hook(struct kmem_cache *s, | |
88f2ef73 | 703 | struct list_lru *lru, |
964d4bd3 RG |
704 | struct obj_cgroup **objcgp, |
705 | size_t size, gfp_t flags) | |
11c7aec2 JDB |
706 | { |
707 | flags &= gfp_allowed_mask; | |
d92a8cfc | 708 | |
95d6c701 | 709 | might_alloc(flags); |
11c7aec2 | 710 | |
fab9963a | 711 | if (should_failslab(s, flags)) |
11c7aec2 JDB |
712 | return NULL; |
713 | ||
88f2ef73 | 714 | if (!memcg_slab_pre_alloc_hook(s, lru, objcgp, size, flags)) |
becaba65 | 715 | return NULL; |
45264778 VD |
716 | |
717 | return s; | |
11c7aec2 JDB |
718 | } |
719 | ||
964d4bd3 | 720 | static inline void slab_post_alloc_hook(struct kmem_cache *s, |
da844b78 | 721 | struct obj_cgroup *objcg, gfp_t flags, |
9ce67395 FT |
722 | size_t size, void **p, bool init, |
723 | unsigned int orig_size) | |
11c7aec2 | 724 | { |
9ce67395 | 725 | unsigned int zero_size = s->object_size; |
fdb54d96 | 726 | bool kasan_init = init; |
11c7aec2 JDB |
727 | size_t i; |
728 | ||
729 | flags &= gfp_allowed_mask; | |
da844b78 | 730 | |
9ce67395 FT |
731 | /* |
732 | * For kmalloc object, the allocated memory size(object_size) is likely | |
733 | * larger than the requested size(orig_size). If redzone check is | |
734 | * enabled for the extra space, don't zero it, as it will be redzoned | |
735 | * soon. The redzone operation for this extra space could be seen as a | |
736 | * replacement of current poisoning under certain debug option, and | |
737 | * won't break other sanity checks. | |
738 | */ | |
739 | if (kmem_cache_debug_flags(s, SLAB_STORE_USER | SLAB_RED_ZONE) && | |
740 | (s->flags & SLAB_KMALLOC)) | |
741 | zero_size = orig_size; | |
742 | ||
fdb54d96 AK |
743 | /* |
744 | * When slub_debug is enabled, avoid memory initialization integrated | |
745 | * into KASAN and instead zero out the memory via the memset below with | |
746 | * the proper size. Otherwise, KASAN might overwrite SLUB redzones and | |
747 | * cause false-positive reports. This does not lead to a performance | |
748 | * penalty on production builds, as slub_debug is not intended to be | |
749 | * enabled there. | |
750 | */ | |
751 | if (__slub_debug_enabled()) | |
752 | kasan_init = false; | |
753 | ||
da844b78 AK |
754 | /* |
755 | * As memory initialization might be integrated into KASAN, | |
756 | * kasan_slab_alloc and initialization memset must be | |
757 | * kept together to avoid discrepancies in behavior. | |
758 | * | |
759 | * As p[i] might get tagged, memset and kmemleak hook come after KASAN. | |
760 | */ | |
11c7aec2 | 761 | for (i = 0; i < size; i++) { |
fdb54d96 AK |
762 | p[i] = kasan_slab_alloc(s, p[i], flags, kasan_init); |
763 | if (p[i] && init && (!kasan_init || !kasan_has_integrated_init())) | |
9ce67395 | 764 | memset(p[i], 0, zero_size); |
53128245 | 765 | kmemleak_alloc_recursive(p[i], s->object_size, 1, |
11c7aec2 | 766 | s->flags, flags); |
68ef169a | 767 | kmsan_slab_alloc(s, p[i], flags); |
11c7aec2 | 768 | } |
45264778 | 769 | |
becaba65 | 770 | memcg_slab_post_alloc_hook(s, objcg, flags, size, p); |
11c7aec2 JDB |
771 | } |
772 | ||
ca34956b CL |
773 | /* |
774 | * The slab lists for all objects. | |
775 | */ | |
776 | struct kmem_cache_node { | |
ca34956b | 777 | #ifdef CONFIG_SLAB |
b539ce9f | 778 | raw_spinlock_t list_lock; |
ca34956b CL |
779 | struct list_head slabs_partial; /* partial list first, better asm code */ |
780 | struct list_head slabs_full; | |
781 | struct list_head slabs_free; | |
bf00bd34 DR |
782 | unsigned long total_slabs; /* length of all slab lists */ |
783 | unsigned long free_slabs; /* length of free slab list only */ | |
ca34956b CL |
784 | unsigned long free_objects; |
785 | unsigned int free_limit; | |
786 | unsigned int colour_next; /* Per-node cache coloring */ | |
787 | struct array_cache *shared; /* shared per node */ | |
c8522a3a | 788 | struct alien_cache **alien; /* on other nodes */ |
ca34956b CL |
789 | unsigned long next_reap; /* updated without locking */ |
790 | int free_touched; /* updated without locking */ | |
791 | #endif | |
792 | ||
793 | #ifdef CONFIG_SLUB | |
b539ce9f | 794 | spinlock_t list_lock; |
ca34956b CL |
795 | unsigned long nr_partial; |
796 | struct list_head partial; | |
797 | #ifdef CONFIG_SLUB_DEBUG | |
798 | atomic_long_t nr_slabs; | |
799 | atomic_long_t total_objects; | |
800 | struct list_head full; | |
801 | #endif | |
802 | #endif | |
803 | ||
804 | }; | |
e25839f6 | 805 | |
44c5356f CL |
806 | static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node) |
807 | { | |
808 | return s->node[node]; | |
809 | } | |
810 | ||
811 | /* | |
812 | * Iterator over all nodes. The body will be executed for each node that has | |
813 | * a kmem_cache_node structure allocated (which is true for all online nodes) | |
814 | */ | |
815 | #define for_each_kmem_cache_node(__s, __node, __n) \ | |
9163582c MP |
816 | for (__node = 0; __node < nr_node_ids; __node++) \ |
817 | if ((__n = get_node(__s, __node))) | |
44c5356f | 818 | |
44c5356f | 819 | |
852d8be0 YS |
820 | #if defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG) |
821 | void dump_unreclaimable_slab(void); | |
822 | #else | |
823 | static inline void dump_unreclaimable_slab(void) | |
824 | { | |
825 | } | |
826 | #endif | |
827 | ||
55834c59 AP |
828 | void ___cache_free(struct kmem_cache *cache, void *x, unsigned long addr); |
829 | ||
7c00fce9 TG |
830 | #ifdef CONFIG_SLAB_FREELIST_RANDOM |
831 | int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count, | |
832 | gfp_t gfp); | |
833 | void cache_random_seq_destroy(struct kmem_cache *cachep); | |
834 | #else | |
835 | static inline int cache_random_seq_create(struct kmem_cache *cachep, | |
836 | unsigned int count, gfp_t gfp) | |
837 | { | |
838 | return 0; | |
839 | } | |
840 | static inline void cache_random_seq_destroy(struct kmem_cache *cachep) { } | |
841 | #endif /* CONFIG_SLAB_FREELIST_RANDOM */ | |
842 | ||
6471384a AP |
843 | static inline bool slab_want_init_on_alloc(gfp_t flags, struct kmem_cache *c) |
844 | { | |
51cba1eb KC |
845 | if (static_branch_maybe(CONFIG_INIT_ON_ALLOC_DEFAULT_ON, |
846 | &init_on_alloc)) { | |
6471384a AP |
847 | if (c->ctor) |
848 | return false; | |
849 | if (c->flags & (SLAB_TYPESAFE_BY_RCU | SLAB_POISON)) | |
850 | return flags & __GFP_ZERO; | |
851 | return true; | |
852 | } | |
853 | return flags & __GFP_ZERO; | |
854 | } | |
855 | ||
856 | static inline bool slab_want_init_on_free(struct kmem_cache *c) | |
857 | { | |
51cba1eb KC |
858 | if (static_branch_maybe(CONFIG_INIT_ON_FREE_DEFAULT_ON, |
859 | &init_on_free)) | |
6471384a AP |
860 | return !(c->ctor || |
861 | (c->flags & (SLAB_TYPESAFE_BY_RCU | SLAB_POISON))); | |
862 | return false; | |
863 | } | |
864 | ||
64dd6849 FM |
865 | #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_SLUB_DEBUG) |
866 | void debugfs_slab_release(struct kmem_cache *); | |
867 | #else | |
868 | static inline void debugfs_slab_release(struct kmem_cache *s) { } | |
869 | #endif | |
870 | ||
5bb1bb35 | 871 | #ifdef CONFIG_PRINTK |
8e7f37f2 PM |
872 | #define KS_ADDRS_COUNT 16 |
873 | struct kmem_obj_info { | |
874 | void *kp_ptr; | |
7213230a | 875 | struct slab *kp_slab; |
8e7f37f2 PM |
876 | void *kp_objp; |
877 | unsigned long kp_data_offset; | |
878 | struct kmem_cache *kp_slab_cache; | |
879 | void *kp_ret; | |
880 | void *kp_stack[KS_ADDRS_COUNT]; | |
e548eaa1 | 881 | void *kp_free_stack[KS_ADDRS_COUNT]; |
8e7f37f2 | 882 | }; |
2dfe63e6 | 883 | void __kmem_obj_info(struct kmem_obj_info *kpp, void *object, struct slab *slab); |
5bb1bb35 | 884 | #endif |
8e7f37f2 | 885 | |
0b3eb091 MWO |
886 | void __check_heap_object(const void *ptr, unsigned long n, |
887 | const struct slab *slab, bool to_user); | |
0b3eb091 | 888 | |
946fa0db FT |
889 | #ifdef CONFIG_SLUB_DEBUG |
890 | void skip_orig_size_check(struct kmem_cache *s, const void *object); | |
891 | #endif | |
892 | ||
5240ab40 | 893 | #endif /* MM_SLAB_H */ |