]> git.ipfire.org Git - thirdparty/linux.git/blame - mm/slab_common.c
usercopy: Allow strict enforcement of whitelists
[thirdparty/linux.git] / mm / slab_common.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
039363f3
CL
2/*
3 * Slab allocator functions that are independent of the allocator strategy
4 *
5 * (C) 2012 Christoph Lameter <cl@linux.com>
6 */
7#include <linux/slab.h>
8
9#include <linux/mm.h>
10#include <linux/poison.h>
11#include <linux/interrupt.h>
12#include <linux/memory.h>
13#include <linux/compiler.h>
14#include <linux/module.h>
20cea968
CL
15#include <linux/cpu.h>
16#include <linux/uaccess.h>
b7454ad3
GC
17#include <linux/seq_file.h>
18#include <linux/proc_fs.h>
039363f3
CL
19#include <asm/cacheflush.h>
20#include <asm/tlbflush.h>
21#include <asm/page.h>
2633d7a0 22#include <linux/memcontrol.h>
928cec9c
AR
23
24#define CREATE_TRACE_POINTS
f1b6eb6e 25#include <trace/events/kmem.h>
039363f3 26
97d06609
CL
27#include "slab.h"
28
29enum slab_state slab_state;
18004c5d
CL
30LIST_HEAD(slab_caches);
31DEFINE_MUTEX(slab_mutex);
9b030cb8 32struct kmem_cache *kmem_cache;
97d06609 33
2d891fbc
KC
34#ifdef CONFIG_HARDENED_USERCOPY
35bool usercopy_fallback __ro_after_init =
36 IS_ENABLED(CONFIG_HARDENED_USERCOPY_FALLBACK);
37module_param(usercopy_fallback, bool, 0400);
38MODULE_PARM_DESC(usercopy_fallback,
39 "WARN instead of reject usercopy whitelist violations");
40#endif
41
657dc2f9
TH
42static LIST_HEAD(slab_caches_to_rcu_destroy);
43static void slab_caches_to_rcu_destroy_workfn(struct work_struct *work);
44static DECLARE_WORK(slab_caches_to_rcu_destroy_work,
45 slab_caches_to_rcu_destroy_workfn);
46
423c929c
JK
47/*
48 * Set of flags that will prevent slab merging
49 */
50#define SLAB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
5f0d5a3a 51 SLAB_TRACE | SLAB_TYPESAFE_BY_RCU | SLAB_NOLEAKTRACE | \
7ed2f9e6 52 SLAB_FAILSLAB | SLAB_KASAN)
423c929c 53
230e9fc2 54#define SLAB_MERGE_SAME (SLAB_RECLAIM_ACCOUNT | SLAB_CACHE_DMA | \
75f296d9 55 SLAB_ACCOUNT)
423c929c
JK
56
57/*
58 * Merge control. If this is set then no merging of slab caches will occur.
423c929c 59 */
7660a6fd 60static bool slab_nomerge = !IS_ENABLED(CONFIG_SLAB_MERGE_DEFAULT);
423c929c
JK
61
62static int __init setup_slab_nomerge(char *str)
63{
7660a6fd 64 slab_nomerge = true;
423c929c
JK
65 return 1;
66}
67
68#ifdef CONFIG_SLUB
69__setup_param("slub_nomerge", slub_nomerge, setup_slab_nomerge, 0);
70#endif
71
72__setup("slab_nomerge", setup_slab_nomerge);
73
07f361b2
JK
74/*
75 * Determine the size of a slab object
76 */
77unsigned int kmem_cache_size(struct kmem_cache *s)
78{
79 return s->object_size;
80}
81EXPORT_SYMBOL(kmem_cache_size);
82
77be4b13 83#ifdef CONFIG_DEBUG_VM
794b1248 84static int kmem_cache_sanity_check(const char *name, size_t size)
039363f3
CL
85{
86 struct kmem_cache *s = NULL;
87
039363f3
CL
88 if (!name || in_interrupt() || size < sizeof(void *) ||
89 size > KMALLOC_MAX_SIZE) {
77be4b13
SK
90 pr_err("kmem_cache_create(%s) integrity check failed\n", name);
91 return -EINVAL;
039363f3 92 }
b920536a 93
20cea968
CL
94 list_for_each_entry(s, &slab_caches, list) {
95 char tmp;
96 int res;
97
98 /*
99 * This happens when the module gets unloaded and doesn't
100 * destroy its slab cache and no-one else reuses the vmalloc
101 * area of the module. Print a warning.
102 */
103 res = probe_kernel_address(s->name, tmp);
104 if (res) {
77be4b13 105 pr_err("Slab cache with size %d has lost its name\n",
20cea968
CL
106 s->object_size);
107 continue;
108 }
20cea968
CL
109 }
110
111 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
77be4b13
SK
112 return 0;
113}
114#else
794b1248 115static inline int kmem_cache_sanity_check(const char *name, size_t size)
77be4b13
SK
116{
117 return 0;
118}
20cea968
CL
119#endif
120
484748f0
CL
121void __kmem_cache_free_bulk(struct kmem_cache *s, size_t nr, void **p)
122{
123 size_t i;
124
ca257195
JDB
125 for (i = 0; i < nr; i++) {
126 if (s)
127 kmem_cache_free(s, p[i]);
128 else
129 kfree(p[i]);
130 }
484748f0
CL
131}
132
865762a8 133int __kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t nr,
484748f0
CL
134 void **p)
135{
136 size_t i;
137
138 for (i = 0; i < nr; i++) {
139 void *x = p[i] = kmem_cache_alloc(s, flags);
140 if (!x) {
141 __kmem_cache_free_bulk(s, i, p);
865762a8 142 return 0;
484748f0
CL
143 }
144 }
865762a8 145 return i;
484748f0
CL
146}
147
127424c8 148#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
510ded33
TH
149
150LIST_HEAD(slab_root_caches);
151
f7ce3190 152void slab_init_memcg_params(struct kmem_cache *s)
33a690c4 153{
9eeadc8b 154 s->memcg_params.root_cache = NULL;
f7ce3190 155 RCU_INIT_POINTER(s->memcg_params.memcg_caches, NULL);
9eeadc8b 156 INIT_LIST_HEAD(&s->memcg_params.children);
f7ce3190
VD
157}
158
159static int init_memcg_params(struct kmem_cache *s,
160 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
161{
162 struct memcg_cache_array *arr;
33a690c4 163
9eeadc8b 164 if (root_cache) {
f7ce3190 165 s->memcg_params.root_cache = root_cache;
9eeadc8b
TH
166 s->memcg_params.memcg = memcg;
167 INIT_LIST_HEAD(&s->memcg_params.children_node);
bc2791f8 168 INIT_LIST_HEAD(&s->memcg_params.kmem_caches_node);
33a690c4 169 return 0;
f7ce3190 170 }
33a690c4 171
f7ce3190 172 slab_init_memcg_params(s);
33a690c4 173
f7ce3190
VD
174 if (!memcg_nr_cache_ids)
175 return 0;
33a690c4 176
f80c7dab
JW
177 arr = kvzalloc(sizeof(struct memcg_cache_array) +
178 memcg_nr_cache_ids * sizeof(void *),
179 GFP_KERNEL);
f7ce3190
VD
180 if (!arr)
181 return -ENOMEM;
33a690c4 182
f7ce3190 183 RCU_INIT_POINTER(s->memcg_params.memcg_caches, arr);
33a690c4
VD
184 return 0;
185}
186
f7ce3190 187static void destroy_memcg_params(struct kmem_cache *s)
33a690c4 188{
f7ce3190 189 if (is_root_cache(s))
f80c7dab
JW
190 kvfree(rcu_access_pointer(s->memcg_params.memcg_caches));
191}
192
193static void free_memcg_params(struct rcu_head *rcu)
194{
195 struct memcg_cache_array *old;
196
197 old = container_of(rcu, struct memcg_cache_array, rcu);
198 kvfree(old);
33a690c4
VD
199}
200
f7ce3190 201static int update_memcg_params(struct kmem_cache *s, int new_array_size)
6f817f4c 202{
f7ce3190 203 struct memcg_cache_array *old, *new;
6f817f4c 204
f80c7dab
JW
205 new = kvzalloc(sizeof(struct memcg_cache_array) +
206 new_array_size * sizeof(void *), GFP_KERNEL);
f7ce3190 207 if (!new)
6f817f4c
VD
208 return -ENOMEM;
209
f7ce3190
VD
210 old = rcu_dereference_protected(s->memcg_params.memcg_caches,
211 lockdep_is_held(&slab_mutex));
212 if (old)
213 memcpy(new->entries, old->entries,
214 memcg_nr_cache_ids * sizeof(void *));
6f817f4c 215
f7ce3190
VD
216 rcu_assign_pointer(s->memcg_params.memcg_caches, new);
217 if (old)
f80c7dab 218 call_rcu(&old->rcu, free_memcg_params);
6f817f4c
VD
219 return 0;
220}
221
55007d84
GC
222int memcg_update_all_caches(int num_memcgs)
223{
224 struct kmem_cache *s;
225 int ret = 0;
55007d84 226
05257a1a 227 mutex_lock(&slab_mutex);
510ded33 228 list_for_each_entry(s, &slab_root_caches, root_caches_node) {
f7ce3190 229 ret = update_memcg_params(s, num_memcgs);
55007d84 230 /*
55007d84
GC
231 * Instead of freeing the memory, we'll just leave the caches
232 * up to this point in an updated state.
233 */
234 if (ret)
05257a1a 235 break;
55007d84 236 }
55007d84
GC
237 mutex_unlock(&slab_mutex);
238 return ret;
239}
657dc2f9 240
510ded33 241void memcg_link_cache(struct kmem_cache *s)
657dc2f9 242{
510ded33
TH
243 if (is_root_cache(s)) {
244 list_add(&s->root_caches_node, &slab_root_caches);
245 } else {
246 list_add(&s->memcg_params.children_node,
247 &s->memcg_params.root_cache->memcg_params.children);
248 list_add(&s->memcg_params.kmem_caches_node,
249 &s->memcg_params.memcg->kmem_caches);
250 }
251}
252
253static void memcg_unlink_cache(struct kmem_cache *s)
254{
255 if (is_root_cache(s)) {
256 list_del(&s->root_caches_node);
257 } else {
258 list_del(&s->memcg_params.children_node);
259 list_del(&s->memcg_params.kmem_caches_node);
260 }
657dc2f9 261}
33a690c4 262#else
f7ce3190
VD
263static inline int init_memcg_params(struct kmem_cache *s,
264 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
33a690c4
VD
265{
266 return 0;
267}
268
f7ce3190 269static inline void destroy_memcg_params(struct kmem_cache *s)
33a690c4
VD
270{
271}
657dc2f9 272
510ded33 273static inline void memcg_unlink_cache(struct kmem_cache *s)
657dc2f9
TH
274{
275}
127424c8 276#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
55007d84 277
423c929c
JK
278/*
279 * Find a mergeable slab cache
280 */
281int slab_unmergeable(struct kmem_cache *s)
282{
283 if (slab_nomerge || (s->flags & SLAB_NEVER_MERGE))
284 return 1;
285
286 if (!is_root_cache(s))
287 return 1;
288
289 if (s->ctor)
290 return 1;
291
8eb8284b
DW
292 if (s->usersize)
293 return 1;
294
423c929c
JK
295 /*
296 * We may have set a slab to be unmergeable during bootstrap.
297 */
298 if (s->refcount < 0)
299 return 1;
300
301 return 0;
302}
303
304struct kmem_cache *find_mergeable(size_t size, size_t align,
d50112ed 305 slab_flags_t flags, const char *name, void (*ctor)(void *))
423c929c
JK
306{
307 struct kmem_cache *s;
308
c6e28895 309 if (slab_nomerge)
423c929c
JK
310 return NULL;
311
312 if (ctor)
313 return NULL;
314
315 size = ALIGN(size, sizeof(void *));
316 align = calculate_alignment(flags, align, size);
317 size = ALIGN(size, align);
318 flags = kmem_cache_flags(size, flags, name, NULL);
319
c6e28895
GM
320 if (flags & SLAB_NEVER_MERGE)
321 return NULL;
322
510ded33 323 list_for_each_entry_reverse(s, &slab_root_caches, root_caches_node) {
423c929c
JK
324 if (slab_unmergeable(s))
325 continue;
326
327 if (size > s->size)
328 continue;
329
330 if ((flags & SLAB_MERGE_SAME) != (s->flags & SLAB_MERGE_SAME))
331 continue;
332 /*
333 * Check if alignment is compatible.
334 * Courtesy of Adrian Drzewiecki
335 */
336 if ((s->size & ~(align - 1)) != s->size)
337 continue;
338
339 if (s->size - size >= sizeof(void *))
340 continue;
341
95069ac8
JK
342 if (IS_ENABLED(CONFIG_SLAB) && align &&
343 (align > s->align || s->align % align))
344 continue;
345
423c929c
JK
346 return s;
347 }
348 return NULL;
349}
350
45906855
CL
351/*
352 * Figure out what the alignment of the objects will be given a set of
353 * flags, a user specified alignment and the size of the objects.
354 */
d50112ed 355unsigned long calculate_alignment(slab_flags_t flags,
45906855
CL
356 unsigned long align, unsigned long size)
357{
358 /*
359 * If the user wants hardware cache aligned objects then follow that
360 * suggestion if the object is sufficiently large.
361 *
362 * The hardware cache alignment cannot override the specified
363 * alignment though. If that is greater then use it.
364 */
365 if (flags & SLAB_HWCACHE_ALIGN) {
366 unsigned long ralign = cache_line_size();
367 while (size <= ralign / 2)
368 ralign /= 2;
369 align = max(align, ralign);
370 }
371
372 if (align < ARCH_SLAB_MINALIGN)
373 align = ARCH_SLAB_MINALIGN;
374
375 return ALIGN(align, sizeof(void *));
376}
377
c9a77a79
VD
378static struct kmem_cache *create_cache(const char *name,
379 size_t object_size, size_t size, size_t align,
8eb8284b
DW
380 slab_flags_t flags, size_t useroffset,
381 size_t usersize, void (*ctor)(void *),
c9a77a79 382 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
794b1248
VD
383{
384 struct kmem_cache *s;
385 int err;
386
8eb8284b
DW
387 if (WARN_ON(useroffset + usersize > object_size))
388 useroffset = usersize = 0;
389
794b1248
VD
390 err = -ENOMEM;
391 s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL);
392 if (!s)
393 goto out;
394
395 s->name = name;
396 s->object_size = object_size;
397 s->size = size;
398 s->align = align;
399 s->ctor = ctor;
8eb8284b
DW
400 s->useroffset = useroffset;
401 s->usersize = usersize;
794b1248 402
f7ce3190 403 err = init_memcg_params(s, memcg, root_cache);
794b1248
VD
404 if (err)
405 goto out_free_cache;
406
407 err = __kmem_cache_create(s, flags);
408 if (err)
409 goto out_free_cache;
410
411 s->refcount = 1;
412 list_add(&s->list, &slab_caches);
510ded33 413 memcg_link_cache(s);
794b1248
VD
414out:
415 if (err)
416 return ERR_PTR(err);
417 return s;
418
419out_free_cache:
f7ce3190 420 destroy_memcg_params(s);
7c4da061 421 kmem_cache_free(kmem_cache, s);
794b1248
VD
422 goto out;
423}
45906855 424
77be4b13 425/*
8eb8284b 426 * kmem_cache_create_usercopy - Create a cache.
77be4b13
SK
427 * @name: A string which is used in /proc/slabinfo to identify this cache.
428 * @size: The size of objects to be created in this cache.
429 * @align: The required alignment for the objects.
430 * @flags: SLAB flags
8eb8284b
DW
431 * @useroffset: Usercopy region offset
432 * @usersize: Usercopy region size
77be4b13
SK
433 * @ctor: A constructor for the objects.
434 *
435 * Returns a ptr to the cache on success, NULL on failure.
436 * Cannot be called within a interrupt, but can be interrupted.
437 * The @ctor is run when new pages are allocated by the cache.
438 *
439 * The flags are
440 *
441 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
442 * to catch references to uninitialised memory.
443 *
444 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
445 * for buffer overruns.
446 *
447 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
448 * cacheline. This can be beneficial if you're counting cycles as closely
449 * as davem.
450 */
2633d7a0 451struct kmem_cache *
8eb8284b
DW
452kmem_cache_create_usercopy(const char *name, size_t size, size_t align,
453 slab_flags_t flags, size_t useroffset, size_t usersize,
454 void (*ctor)(void *))
77be4b13 455{
40911a79 456 struct kmem_cache *s = NULL;
3dec16ea 457 const char *cache_name;
3965fc36 458 int err;
039363f3 459
77be4b13 460 get_online_cpus();
03afc0e2 461 get_online_mems();
05257a1a 462 memcg_get_cache_ids();
03afc0e2 463
77be4b13 464 mutex_lock(&slab_mutex);
686d550d 465
794b1248 466 err = kmem_cache_sanity_check(name, size);
3aa24f51 467 if (err) {
3965fc36 468 goto out_unlock;
3aa24f51 469 }
686d550d 470
e70954fd
TG
471 /* Refuse requests with allocator specific flags */
472 if (flags & ~SLAB_FLAGS_PERMITTED) {
473 err = -EINVAL;
474 goto out_unlock;
475 }
476
d8843922
GC
477 /*
478 * Some allocators will constraint the set of valid flags to a subset
479 * of all flags. We expect them to define CACHE_CREATE_MASK in this
480 * case, and we'll just provide them with a sanitized version of the
481 * passed flags.
482 */
483 flags &= CACHE_CREATE_MASK;
686d550d 484
8eb8284b
DW
485 /* Fail closed on bad usersize of useroffset values. */
486 if (WARN_ON(!usersize && useroffset) ||
487 WARN_ON(size < usersize || size - usersize < useroffset))
488 usersize = useroffset = 0;
489
490 if (!usersize)
491 s = __kmem_cache_alias(name, size, align, flags, ctor);
794b1248 492 if (s)
3965fc36 493 goto out_unlock;
2633d7a0 494
3dec16ea 495 cache_name = kstrdup_const(name, GFP_KERNEL);
794b1248
VD
496 if (!cache_name) {
497 err = -ENOMEM;
498 goto out_unlock;
499 }
7c9adf5a 500
c9a77a79
VD
501 s = create_cache(cache_name, size, size,
502 calculate_alignment(flags, align, size),
8eb8284b 503 flags, useroffset, usersize, ctor, NULL, NULL);
794b1248
VD
504 if (IS_ERR(s)) {
505 err = PTR_ERR(s);
3dec16ea 506 kfree_const(cache_name);
794b1248 507 }
3965fc36
VD
508
509out_unlock:
20cea968 510 mutex_unlock(&slab_mutex);
03afc0e2 511
05257a1a 512 memcg_put_cache_ids();
03afc0e2 513 put_online_mems();
20cea968
CL
514 put_online_cpus();
515
ba3253c7 516 if (err) {
686d550d
CL
517 if (flags & SLAB_PANIC)
518 panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n",
519 name, err);
520 else {
1170532b 521 pr_warn("kmem_cache_create(%s) failed with error %d\n",
686d550d
CL
522 name, err);
523 dump_stack();
524 }
686d550d
CL
525 return NULL;
526 }
039363f3
CL
527 return s;
528}
8eb8284b
DW
529EXPORT_SYMBOL(kmem_cache_create_usercopy);
530
531struct kmem_cache *
532kmem_cache_create(const char *name, size_t size, size_t align,
533 slab_flags_t flags, void (*ctor)(void *))
534{
535 return kmem_cache_create_usercopy(name, size, align, flags, 0, size,
536 ctor);
537}
794b1248 538EXPORT_SYMBOL(kmem_cache_create);
2633d7a0 539
657dc2f9 540static void slab_caches_to_rcu_destroy_workfn(struct work_struct *work)
d5b3cf71 541{
657dc2f9
TH
542 LIST_HEAD(to_destroy);
543 struct kmem_cache *s, *s2;
d5b3cf71 544
657dc2f9 545 /*
5f0d5a3a 546 * On destruction, SLAB_TYPESAFE_BY_RCU kmem_caches are put on the
657dc2f9
TH
547 * @slab_caches_to_rcu_destroy list. The slab pages are freed
548 * through RCU and and the associated kmem_cache are dereferenced
549 * while freeing the pages, so the kmem_caches should be freed only
550 * after the pending RCU operations are finished. As rcu_barrier()
551 * is a pretty slow operation, we batch all pending destructions
552 * asynchronously.
553 */
554 mutex_lock(&slab_mutex);
555 list_splice_init(&slab_caches_to_rcu_destroy, &to_destroy);
556 mutex_unlock(&slab_mutex);
d5b3cf71 557
657dc2f9
TH
558 if (list_empty(&to_destroy))
559 return;
560
561 rcu_barrier();
562
563 list_for_each_entry_safe(s, s2, &to_destroy, list) {
564#ifdef SLAB_SUPPORTS_SYSFS
565 sysfs_slab_release(s);
566#else
567 slab_kmem_cache_release(s);
568#endif
569 }
d5b3cf71
VD
570}
571
657dc2f9 572static int shutdown_cache(struct kmem_cache *s)
d5b3cf71 573{
f9fa1d91
GT
574 /* free asan quarantined objects */
575 kasan_cache_shutdown(s);
576
657dc2f9
TH
577 if (__kmem_cache_shutdown(s) != 0)
578 return -EBUSY;
d5b3cf71 579
510ded33 580 memcg_unlink_cache(s);
657dc2f9 581 list_del(&s->list);
d5b3cf71 582
5f0d5a3a 583 if (s->flags & SLAB_TYPESAFE_BY_RCU) {
657dc2f9
TH
584 list_add_tail(&s->list, &slab_caches_to_rcu_destroy);
585 schedule_work(&slab_caches_to_rcu_destroy_work);
586 } else {
d5b3cf71 587#ifdef SLAB_SUPPORTS_SYSFS
bf5eb3de 588 sysfs_slab_release(s);
d5b3cf71
VD
589#else
590 slab_kmem_cache_release(s);
591#endif
592 }
657dc2f9
TH
593
594 return 0;
d5b3cf71
VD
595}
596
127424c8 597#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
794b1248 598/*
776ed0f0 599 * memcg_create_kmem_cache - Create a cache for a memory cgroup.
794b1248
VD
600 * @memcg: The memory cgroup the new cache is for.
601 * @root_cache: The parent of the new cache.
602 *
603 * This function attempts to create a kmem cache that will serve allocation
604 * requests going from @memcg to @root_cache. The new cache inherits properties
605 * from its parent.
606 */
d5b3cf71
VD
607void memcg_create_kmem_cache(struct mem_cgroup *memcg,
608 struct kmem_cache *root_cache)
2633d7a0 609{
3e0350a3 610 static char memcg_name_buf[NAME_MAX + 1]; /* protected by slab_mutex */
33398cf2 611 struct cgroup_subsys_state *css = &memcg->css;
f7ce3190 612 struct memcg_cache_array *arr;
bd673145 613 struct kmem_cache *s = NULL;
794b1248 614 char *cache_name;
f7ce3190 615 int idx;
794b1248
VD
616
617 get_online_cpus();
03afc0e2
VD
618 get_online_mems();
619
794b1248
VD
620 mutex_lock(&slab_mutex);
621
2a4db7eb 622 /*
567e9ab2 623 * The memory cgroup could have been offlined while the cache
2a4db7eb
VD
624 * creation work was pending.
625 */
b6ecd2de 626 if (memcg->kmem_state != KMEM_ONLINE)
2a4db7eb
VD
627 goto out_unlock;
628
f7ce3190
VD
629 idx = memcg_cache_id(memcg);
630 arr = rcu_dereference_protected(root_cache->memcg_params.memcg_caches,
631 lockdep_is_held(&slab_mutex));
632
d5b3cf71
VD
633 /*
634 * Since per-memcg caches are created asynchronously on first
635 * allocation (see memcg_kmem_get_cache()), several threads can try to
636 * create the same cache, but only one of them may succeed.
637 */
f7ce3190 638 if (arr->entries[idx])
d5b3cf71
VD
639 goto out_unlock;
640
f1008365 641 cgroup_name(css->cgroup, memcg_name_buf, sizeof(memcg_name_buf));
73f576c0
JW
642 cache_name = kasprintf(GFP_KERNEL, "%s(%llu:%s)", root_cache->name,
643 css->serial_nr, memcg_name_buf);
794b1248
VD
644 if (!cache_name)
645 goto out_unlock;
646
c9a77a79
VD
647 s = create_cache(cache_name, root_cache->object_size,
648 root_cache->size, root_cache->align,
f773e36d 649 root_cache->flags & CACHE_CREATE_MASK,
8eb8284b 650 root_cache->useroffset, root_cache->usersize,
f773e36d 651 root_cache->ctor, memcg, root_cache);
d5b3cf71
VD
652 /*
653 * If we could not create a memcg cache, do not complain, because
654 * that's not critical at all as we can always proceed with the root
655 * cache.
656 */
bd673145 657 if (IS_ERR(s)) {
794b1248 658 kfree(cache_name);
d5b3cf71 659 goto out_unlock;
bd673145 660 }
794b1248 661
d5b3cf71
VD
662 /*
663 * Since readers won't lock (see cache_from_memcg_idx()), we need a
664 * barrier here to ensure nobody will see the kmem_cache partially
665 * initialized.
666 */
667 smp_wmb();
f7ce3190 668 arr->entries[idx] = s;
d5b3cf71 669
794b1248
VD
670out_unlock:
671 mutex_unlock(&slab_mutex);
03afc0e2
VD
672
673 put_online_mems();
794b1248 674 put_online_cpus();
2633d7a0 675}
b8529907 676
01fb58bc
TH
677static void kmemcg_deactivate_workfn(struct work_struct *work)
678{
679 struct kmem_cache *s = container_of(work, struct kmem_cache,
680 memcg_params.deact_work);
681
682 get_online_cpus();
683 get_online_mems();
684
685 mutex_lock(&slab_mutex);
686
687 s->memcg_params.deact_fn(s);
688
689 mutex_unlock(&slab_mutex);
690
691 put_online_mems();
692 put_online_cpus();
693
694 /* done, put the ref from slab_deactivate_memcg_cache_rcu_sched() */
695 css_put(&s->memcg_params.memcg->css);
696}
697
698static void kmemcg_deactivate_rcufn(struct rcu_head *head)
699{
700 struct kmem_cache *s = container_of(head, struct kmem_cache,
701 memcg_params.deact_rcu_head);
702
703 /*
704 * We need to grab blocking locks. Bounce to ->deact_work. The
705 * work item shares the space with the RCU head and can't be
706 * initialized eariler.
707 */
708 INIT_WORK(&s->memcg_params.deact_work, kmemcg_deactivate_workfn);
17cc4dfe 709 queue_work(memcg_kmem_cache_wq, &s->memcg_params.deact_work);
01fb58bc
TH
710}
711
712/**
713 * slab_deactivate_memcg_cache_rcu_sched - schedule deactivation after a
714 * sched RCU grace period
715 * @s: target kmem_cache
716 * @deact_fn: deactivation function to call
717 *
718 * Schedule @deact_fn to be invoked with online cpus, mems and slab_mutex
719 * held after a sched RCU grace period. The slab is guaranteed to stay
720 * alive until @deact_fn is finished. This is to be used from
721 * __kmemcg_cache_deactivate().
722 */
723void slab_deactivate_memcg_cache_rcu_sched(struct kmem_cache *s,
724 void (*deact_fn)(struct kmem_cache *))
725{
726 if (WARN_ON_ONCE(is_root_cache(s)) ||
727 WARN_ON_ONCE(s->memcg_params.deact_fn))
728 return;
729
730 /* pin memcg so that @s doesn't get destroyed in the middle */
731 css_get(&s->memcg_params.memcg->css);
732
733 s->memcg_params.deact_fn = deact_fn;
734 call_rcu_sched(&s->memcg_params.deact_rcu_head, kmemcg_deactivate_rcufn);
735}
736
2a4db7eb
VD
737void memcg_deactivate_kmem_caches(struct mem_cgroup *memcg)
738{
739 int idx;
740 struct memcg_cache_array *arr;
d6e0b7fa 741 struct kmem_cache *s, *c;
2a4db7eb
VD
742
743 idx = memcg_cache_id(memcg);
744
d6e0b7fa
VD
745 get_online_cpus();
746 get_online_mems();
747
2a4db7eb 748 mutex_lock(&slab_mutex);
510ded33 749 list_for_each_entry(s, &slab_root_caches, root_caches_node) {
2a4db7eb
VD
750 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
751 lockdep_is_held(&slab_mutex));
d6e0b7fa
VD
752 c = arr->entries[idx];
753 if (!c)
754 continue;
755
c9fc5864 756 __kmemcg_cache_deactivate(c);
2a4db7eb
VD
757 arr->entries[idx] = NULL;
758 }
759 mutex_unlock(&slab_mutex);
d6e0b7fa
VD
760
761 put_online_mems();
762 put_online_cpus();
2a4db7eb
VD
763}
764
d5b3cf71 765void memcg_destroy_kmem_caches(struct mem_cgroup *memcg)
b8529907 766{
d5b3cf71 767 struct kmem_cache *s, *s2;
b8529907 768
d5b3cf71
VD
769 get_online_cpus();
770 get_online_mems();
b8529907 771
b8529907 772 mutex_lock(&slab_mutex);
bc2791f8
TH
773 list_for_each_entry_safe(s, s2, &memcg->kmem_caches,
774 memcg_params.kmem_caches_node) {
d5b3cf71
VD
775 /*
776 * The cgroup is about to be freed and therefore has no charges
777 * left. Hence, all its caches must be empty by now.
778 */
657dc2f9 779 BUG_ON(shutdown_cache(s));
d5b3cf71
VD
780 }
781 mutex_unlock(&slab_mutex);
b8529907 782
d5b3cf71
VD
783 put_online_mems();
784 put_online_cpus();
b8529907 785}
d60fdcc9 786
657dc2f9 787static int shutdown_memcg_caches(struct kmem_cache *s)
d60fdcc9
VD
788{
789 struct memcg_cache_array *arr;
790 struct kmem_cache *c, *c2;
791 LIST_HEAD(busy);
792 int i;
793
794 BUG_ON(!is_root_cache(s));
795
796 /*
797 * First, shutdown active caches, i.e. caches that belong to online
798 * memory cgroups.
799 */
800 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
801 lockdep_is_held(&slab_mutex));
802 for_each_memcg_cache_index(i) {
803 c = arr->entries[i];
804 if (!c)
805 continue;
657dc2f9 806 if (shutdown_cache(c))
d60fdcc9
VD
807 /*
808 * The cache still has objects. Move it to a temporary
809 * list so as not to try to destroy it for a second
810 * time while iterating over inactive caches below.
811 */
9eeadc8b 812 list_move(&c->memcg_params.children_node, &busy);
d60fdcc9
VD
813 else
814 /*
815 * The cache is empty and will be destroyed soon. Clear
816 * the pointer to it in the memcg_caches array so that
817 * it will never be accessed even if the root cache
818 * stays alive.
819 */
820 arr->entries[i] = NULL;
821 }
822
823 /*
824 * Second, shutdown all caches left from memory cgroups that are now
825 * offline.
826 */
9eeadc8b
TH
827 list_for_each_entry_safe(c, c2, &s->memcg_params.children,
828 memcg_params.children_node)
657dc2f9 829 shutdown_cache(c);
d60fdcc9 830
9eeadc8b 831 list_splice(&busy, &s->memcg_params.children);
d60fdcc9
VD
832
833 /*
834 * A cache being destroyed must be empty. In particular, this means
835 * that all per memcg caches attached to it must be empty too.
836 */
9eeadc8b 837 if (!list_empty(&s->memcg_params.children))
d60fdcc9
VD
838 return -EBUSY;
839 return 0;
840}
841#else
657dc2f9 842static inline int shutdown_memcg_caches(struct kmem_cache *s)
d60fdcc9
VD
843{
844 return 0;
845}
127424c8 846#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
97d06609 847
41a21285
CL
848void slab_kmem_cache_release(struct kmem_cache *s)
849{
52b4b950 850 __kmem_cache_release(s);
f7ce3190 851 destroy_memcg_params(s);
3dec16ea 852 kfree_const(s->name);
41a21285
CL
853 kmem_cache_free(kmem_cache, s);
854}
855
945cf2b6
CL
856void kmem_cache_destroy(struct kmem_cache *s)
857{
d60fdcc9 858 int err;
d5b3cf71 859
3942d299
SS
860 if (unlikely(!s))
861 return;
862
945cf2b6 863 get_online_cpus();
03afc0e2
VD
864 get_online_mems();
865
945cf2b6 866 mutex_lock(&slab_mutex);
b8529907 867
945cf2b6 868 s->refcount--;
b8529907
VD
869 if (s->refcount)
870 goto out_unlock;
871
657dc2f9 872 err = shutdown_memcg_caches(s);
d60fdcc9 873 if (!err)
657dc2f9 874 err = shutdown_cache(s);
b8529907 875
cd918c55 876 if (err) {
756a025f
JP
877 pr_err("kmem_cache_destroy %s: Slab cache still has objects\n",
878 s->name);
cd918c55
VD
879 dump_stack();
880 }
b8529907
VD
881out_unlock:
882 mutex_unlock(&slab_mutex);
d5b3cf71 883
03afc0e2 884 put_online_mems();
945cf2b6
CL
885 put_online_cpus();
886}
887EXPORT_SYMBOL(kmem_cache_destroy);
888
03afc0e2
VD
889/**
890 * kmem_cache_shrink - Shrink a cache.
891 * @cachep: The cache to shrink.
892 *
893 * Releases as many slabs as possible for a cache.
894 * To help debugging, a zero exit status indicates all slabs were released.
895 */
896int kmem_cache_shrink(struct kmem_cache *cachep)
897{
898 int ret;
899
900 get_online_cpus();
901 get_online_mems();
55834c59 902 kasan_cache_shrink(cachep);
c9fc5864 903 ret = __kmem_cache_shrink(cachep);
03afc0e2
VD
904 put_online_mems();
905 put_online_cpus();
906 return ret;
907}
908EXPORT_SYMBOL(kmem_cache_shrink);
909
fda90124 910bool slab_is_available(void)
97d06609
CL
911{
912 return slab_state >= UP;
913}
b7454ad3 914
45530c44
CL
915#ifndef CONFIG_SLOB
916/* Create a cache during boot when no slab services are available yet */
917void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t size,
8eb8284b 918 slab_flags_t flags, size_t useroffset, size_t usersize)
45530c44
CL
919{
920 int err;
921
922 s->name = name;
923 s->size = s->object_size = size;
45906855 924 s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size);
8eb8284b
DW
925 s->useroffset = useroffset;
926 s->usersize = usersize;
f7ce3190
VD
927
928 slab_init_memcg_params(s);
929
45530c44
CL
930 err = __kmem_cache_create(s, flags);
931
932 if (err)
31ba7346 933 panic("Creation of kmalloc slab %s size=%zu failed. Reason %d\n",
45530c44
CL
934 name, size, err);
935
936 s->refcount = -1; /* Exempt from merging for now */
937}
938
939struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size,
d50112ed 940 slab_flags_t flags)
45530c44
CL
941{
942 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
943
944 if (!s)
945 panic("Out of memory when creating slab %s\n", name);
946
8eb8284b 947 create_boot_cache(s, name, size, flags, 0, size);
45530c44 948 list_add(&s->list, &slab_caches);
510ded33 949 memcg_link_cache(s);
45530c44
CL
950 s->refcount = 1;
951 return s;
952}
953
9425c58e
CL
954struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
955EXPORT_SYMBOL(kmalloc_caches);
956
957#ifdef CONFIG_ZONE_DMA
958struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1];
959EXPORT_SYMBOL(kmalloc_dma_caches);
960#endif
961
2c59dd65
CL
962/*
963 * Conversion table for small slabs sizes / 8 to the index in the
964 * kmalloc array. This is necessary for slabs < 192 since we have non power
965 * of two cache sizes there. The size of larger slabs can be determined using
966 * fls.
967 */
968static s8 size_index[24] = {
969 3, /* 8 */
970 4, /* 16 */
971 5, /* 24 */
972 5, /* 32 */
973 6, /* 40 */
974 6, /* 48 */
975 6, /* 56 */
976 6, /* 64 */
977 1, /* 72 */
978 1, /* 80 */
979 1, /* 88 */
980 1, /* 96 */
981 7, /* 104 */
982 7, /* 112 */
983 7, /* 120 */
984 7, /* 128 */
985 2, /* 136 */
986 2, /* 144 */
987 2, /* 152 */
988 2, /* 160 */
989 2, /* 168 */
990 2, /* 176 */
991 2, /* 184 */
992 2 /* 192 */
993};
994
995static inline int size_index_elem(size_t bytes)
996{
997 return (bytes - 1) / 8;
998}
999
1000/*
1001 * Find the kmem_cache structure that serves a given size of
1002 * allocation
1003 */
1004struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags)
1005{
1006 int index;
1007
9de1bc87 1008 if (unlikely(size > KMALLOC_MAX_SIZE)) {
907985f4 1009 WARN_ON_ONCE(!(flags & __GFP_NOWARN));
6286ae97 1010 return NULL;
907985f4 1011 }
6286ae97 1012
2c59dd65
CL
1013 if (size <= 192) {
1014 if (!size)
1015 return ZERO_SIZE_PTR;
1016
1017 index = size_index[size_index_elem(size)];
1018 } else
1019 index = fls(size - 1);
1020
1021#ifdef CONFIG_ZONE_DMA
b1e05416 1022 if (unlikely((flags & GFP_DMA)))
2c59dd65
CL
1023 return kmalloc_dma_caches[index];
1024
1025#endif
1026 return kmalloc_caches[index];
1027}
1028
4066c33d
GG
1029/*
1030 * kmalloc_info[] is to make slub_debug=,kmalloc-xx option work at boot time.
1031 * kmalloc_index() supports up to 2^26=64MB, so the final entry of the table is
1032 * kmalloc-67108864.
1033 */
af3b5f87 1034const struct kmalloc_info_struct kmalloc_info[] __initconst = {
4066c33d
GG
1035 {NULL, 0}, {"kmalloc-96", 96},
1036 {"kmalloc-192", 192}, {"kmalloc-8", 8},
1037 {"kmalloc-16", 16}, {"kmalloc-32", 32},
1038 {"kmalloc-64", 64}, {"kmalloc-128", 128},
1039 {"kmalloc-256", 256}, {"kmalloc-512", 512},
1040 {"kmalloc-1024", 1024}, {"kmalloc-2048", 2048},
1041 {"kmalloc-4096", 4096}, {"kmalloc-8192", 8192},
1042 {"kmalloc-16384", 16384}, {"kmalloc-32768", 32768},
1043 {"kmalloc-65536", 65536}, {"kmalloc-131072", 131072},
1044 {"kmalloc-262144", 262144}, {"kmalloc-524288", 524288},
1045 {"kmalloc-1048576", 1048576}, {"kmalloc-2097152", 2097152},
1046 {"kmalloc-4194304", 4194304}, {"kmalloc-8388608", 8388608},
1047 {"kmalloc-16777216", 16777216}, {"kmalloc-33554432", 33554432},
1048 {"kmalloc-67108864", 67108864}
1049};
1050
f97d5f63 1051/*
34cc6990
DS
1052 * Patch up the size_index table if we have strange large alignment
1053 * requirements for the kmalloc array. This is only the case for
1054 * MIPS it seems. The standard arches will not generate any code here.
1055 *
1056 * Largest permitted alignment is 256 bytes due to the way we
1057 * handle the index determination for the smaller caches.
1058 *
1059 * Make sure that nothing crazy happens if someone starts tinkering
1060 * around with ARCH_KMALLOC_MINALIGN
f97d5f63 1061 */
34cc6990 1062void __init setup_kmalloc_cache_index_table(void)
f97d5f63
CL
1063{
1064 int i;
1065
2c59dd65
CL
1066 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
1067 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
1068
1069 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
1070 int elem = size_index_elem(i);
1071
1072 if (elem >= ARRAY_SIZE(size_index))
1073 break;
1074 size_index[elem] = KMALLOC_SHIFT_LOW;
1075 }
1076
1077 if (KMALLOC_MIN_SIZE >= 64) {
1078 /*
1079 * The 96 byte size cache is not used if the alignment
1080 * is 64 byte.
1081 */
1082 for (i = 64 + 8; i <= 96; i += 8)
1083 size_index[size_index_elem(i)] = 7;
1084
1085 }
1086
1087 if (KMALLOC_MIN_SIZE >= 128) {
1088 /*
1089 * The 192 byte sized cache is not used if the alignment
1090 * is 128 byte. Redirect kmalloc to use the 256 byte cache
1091 * instead.
1092 */
1093 for (i = 128 + 8; i <= 192; i += 8)
1094 size_index[size_index_elem(i)] = 8;
1095 }
34cc6990
DS
1096}
1097
d50112ed 1098static void __init new_kmalloc_cache(int idx, slab_flags_t flags)
a9730fca
CL
1099{
1100 kmalloc_caches[idx] = create_kmalloc_cache(kmalloc_info[idx].name,
1101 kmalloc_info[idx].size, flags);
1102}
1103
34cc6990
DS
1104/*
1105 * Create the kmalloc array. Some of the regular kmalloc arrays
1106 * may already have been created because they were needed to
1107 * enable allocations for slab creation.
1108 */
d50112ed 1109void __init create_kmalloc_caches(slab_flags_t flags)
34cc6990
DS
1110{
1111 int i;
1112
a9730fca
CL
1113 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
1114 if (!kmalloc_caches[i])
1115 new_kmalloc_cache(i, flags);
f97d5f63 1116
956e46ef 1117 /*
a9730fca
CL
1118 * Caches that are not of the two-to-the-power-of size.
1119 * These have to be created immediately after the
1120 * earlier power of two caches
956e46ef 1121 */
a9730fca
CL
1122 if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[1] && i == 6)
1123 new_kmalloc_cache(1, flags);
1124 if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[2] && i == 7)
1125 new_kmalloc_cache(2, flags);
8a965b3b
CL
1126 }
1127
f97d5f63
CL
1128 /* Kmalloc array is now usable */
1129 slab_state = UP;
1130
f97d5f63
CL
1131#ifdef CONFIG_ZONE_DMA
1132 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
1133 struct kmem_cache *s = kmalloc_caches[i];
1134
1135 if (s) {
1136 int size = kmalloc_size(i);
1137 char *n = kasprintf(GFP_NOWAIT,
1138 "dma-kmalloc-%d", size);
1139
1140 BUG_ON(!n);
1141 kmalloc_dma_caches[i] = create_kmalloc_cache(n,
1142 size, SLAB_CACHE_DMA | flags);
1143 }
1144 }
1145#endif
1146}
45530c44
CL
1147#endif /* !CONFIG_SLOB */
1148
cea371f4
VD
1149/*
1150 * To avoid unnecessary overhead, we pass through large allocation requests
1151 * directly to the page allocator. We use __GFP_COMP, because we will need to
1152 * know the allocation order to free the pages properly in kfree.
1153 */
52383431
VD
1154void *kmalloc_order(size_t size, gfp_t flags, unsigned int order)
1155{
1156 void *ret;
1157 struct page *page;
1158
1159 flags |= __GFP_COMP;
4949148a 1160 page = alloc_pages(flags, order);
52383431
VD
1161 ret = page ? page_address(page) : NULL;
1162 kmemleak_alloc(ret, size, 1, flags);
505f5dcb 1163 kasan_kmalloc_large(ret, size, flags);
52383431
VD
1164 return ret;
1165}
1166EXPORT_SYMBOL(kmalloc_order);
1167
f1b6eb6e
CL
1168#ifdef CONFIG_TRACING
1169void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
1170{
1171 void *ret = kmalloc_order(size, flags, order);
1172 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
1173 return ret;
1174}
1175EXPORT_SYMBOL(kmalloc_order_trace);
1176#endif
45530c44 1177
7c00fce9
TG
1178#ifdef CONFIG_SLAB_FREELIST_RANDOM
1179/* Randomize a generic freelist */
1180static void freelist_randomize(struct rnd_state *state, unsigned int *list,
1181 size_t count)
1182{
1183 size_t i;
1184 unsigned int rand;
1185
1186 for (i = 0; i < count; i++)
1187 list[i] = i;
1188
1189 /* Fisher-Yates shuffle */
1190 for (i = count - 1; i > 0; i--) {
1191 rand = prandom_u32_state(state);
1192 rand %= (i + 1);
1193 swap(list[i], list[rand]);
1194 }
1195}
1196
1197/* Create a random sequence per cache */
1198int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count,
1199 gfp_t gfp)
1200{
1201 struct rnd_state state;
1202
1203 if (count < 2 || cachep->random_seq)
1204 return 0;
1205
1206 cachep->random_seq = kcalloc(count, sizeof(unsigned int), gfp);
1207 if (!cachep->random_seq)
1208 return -ENOMEM;
1209
1210 /* Get best entropy at this stage of boot */
1211 prandom_seed_state(&state, get_random_long());
1212
1213 freelist_randomize(&state, cachep->random_seq, count);
1214 return 0;
1215}
1216
1217/* Destroy the per-cache random freelist sequence */
1218void cache_random_seq_destroy(struct kmem_cache *cachep)
1219{
1220 kfree(cachep->random_seq);
1221 cachep->random_seq = NULL;
1222}
1223#endif /* CONFIG_SLAB_FREELIST_RANDOM */
1224
5b365771 1225#if defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG)
e9b4db2b
WL
1226#ifdef CONFIG_SLAB
1227#define SLABINFO_RIGHTS (S_IWUSR | S_IRUSR)
1228#else
1229#define SLABINFO_RIGHTS S_IRUSR
1230#endif
1231
b047501c 1232static void print_slabinfo_header(struct seq_file *m)
bcee6e2a
GC
1233{
1234 /*
1235 * Output format version, so at least we can change it
1236 * without _too_ many complaints.
1237 */
1238#ifdef CONFIG_DEBUG_SLAB
1239 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
1240#else
1241 seq_puts(m, "slabinfo - version: 2.1\n");
1242#endif
756a025f 1243 seq_puts(m, "# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab>");
bcee6e2a
GC
1244 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
1245 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
1246#ifdef CONFIG_DEBUG_SLAB
756a025f 1247 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> <error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
bcee6e2a
GC
1248 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
1249#endif
1250 seq_putc(m, '\n');
1251}
1252
1df3b26f 1253void *slab_start(struct seq_file *m, loff_t *pos)
b7454ad3 1254{
b7454ad3 1255 mutex_lock(&slab_mutex);
510ded33 1256 return seq_list_start(&slab_root_caches, *pos);
b7454ad3
GC
1257}
1258
276a2439 1259void *slab_next(struct seq_file *m, void *p, loff_t *pos)
b7454ad3 1260{
510ded33 1261 return seq_list_next(p, &slab_root_caches, pos);
b7454ad3
GC
1262}
1263
276a2439 1264void slab_stop(struct seq_file *m, void *p)
b7454ad3
GC
1265{
1266 mutex_unlock(&slab_mutex);
1267}
1268
749c5415
GC
1269static void
1270memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
1271{
1272 struct kmem_cache *c;
1273 struct slabinfo sinfo;
749c5415
GC
1274
1275 if (!is_root_cache(s))
1276 return;
1277
426589f5 1278 for_each_memcg_cache(c, s) {
749c5415
GC
1279 memset(&sinfo, 0, sizeof(sinfo));
1280 get_slabinfo(c, &sinfo);
1281
1282 info->active_slabs += sinfo.active_slabs;
1283 info->num_slabs += sinfo.num_slabs;
1284 info->shared_avail += sinfo.shared_avail;
1285 info->active_objs += sinfo.active_objs;
1286 info->num_objs += sinfo.num_objs;
1287 }
1288}
1289
b047501c 1290static void cache_show(struct kmem_cache *s, struct seq_file *m)
b7454ad3 1291{
0d7561c6
GC
1292 struct slabinfo sinfo;
1293
1294 memset(&sinfo, 0, sizeof(sinfo));
1295 get_slabinfo(s, &sinfo);
1296
749c5415
GC
1297 memcg_accumulate_slabinfo(s, &sinfo);
1298
0d7561c6 1299 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
749c5415 1300 cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size,
0d7561c6
GC
1301 sinfo.objects_per_slab, (1 << sinfo.cache_order));
1302
1303 seq_printf(m, " : tunables %4u %4u %4u",
1304 sinfo.limit, sinfo.batchcount, sinfo.shared);
1305 seq_printf(m, " : slabdata %6lu %6lu %6lu",
1306 sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
1307 slabinfo_show_stats(m, s);
1308 seq_putc(m, '\n');
b7454ad3
GC
1309}
1310
1df3b26f 1311static int slab_show(struct seq_file *m, void *p)
749c5415 1312{
510ded33 1313 struct kmem_cache *s = list_entry(p, struct kmem_cache, root_caches_node);
749c5415 1314
510ded33 1315 if (p == slab_root_caches.next)
1df3b26f 1316 print_slabinfo_header(m);
510ded33 1317 cache_show(s, m);
b047501c
VD
1318 return 0;
1319}
1320
852d8be0
YS
1321void dump_unreclaimable_slab(void)
1322{
1323 struct kmem_cache *s, *s2;
1324 struct slabinfo sinfo;
1325
1326 /*
1327 * Here acquiring slab_mutex is risky since we don't prefer to get
1328 * sleep in oom path. But, without mutex hold, it may introduce a
1329 * risk of crash.
1330 * Use mutex_trylock to protect the list traverse, dump nothing
1331 * without acquiring the mutex.
1332 */
1333 if (!mutex_trylock(&slab_mutex)) {
1334 pr_warn("excessive unreclaimable slab but cannot dump stats\n");
1335 return;
1336 }
1337
1338 pr_info("Unreclaimable slab info:\n");
1339 pr_info("Name Used Total\n");
1340
1341 list_for_each_entry_safe(s, s2, &slab_caches, list) {
1342 if (!is_root_cache(s) || (s->flags & SLAB_RECLAIM_ACCOUNT))
1343 continue;
1344
1345 get_slabinfo(s, &sinfo);
1346
1347 if (sinfo.num_objs > 0)
1348 pr_info("%-17s %10luKB %10luKB\n", cache_name(s),
1349 (sinfo.active_objs * s->size) / 1024,
1350 (sinfo.num_objs * s->size) / 1024);
1351 }
1352 mutex_unlock(&slab_mutex);
1353}
1354
5b365771 1355#if defined(CONFIG_MEMCG)
bc2791f8
TH
1356void *memcg_slab_start(struct seq_file *m, loff_t *pos)
1357{
1358 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1359
1360 mutex_lock(&slab_mutex);
1361 return seq_list_start(&memcg->kmem_caches, *pos);
1362}
1363
1364void *memcg_slab_next(struct seq_file *m, void *p, loff_t *pos)
1365{
1366 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1367
1368 return seq_list_next(p, &memcg->kmem_caches, pos);
1369}
1370
1371void memcg_slab_stop(struct seq_file *m, void *p)
1372{
1373 mutex_unlock(&slab_mutex);
1374}
1375
b047501c
VD
1376int memcg_slab_show(struct seq_file *m, void *p)
1377{
bc2791f8
TH
1378 struct kmem_cache *s = list_entry(p, struct kmem_cache,
1379 memcg_params.kmem_caches_node);
b047501c
VD
1380 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1381
bc2791f8 1382 if (p == memcg->kmem_caches.next)
b047501c 1383 print_slabinfo_header(m);
bc2791f8 1384 cache_show(s, m);
b047501c 1385 return 0;
749c5415 1386}
b047501c 1387#endif
749c5415 1388
b7454ad3
GC
1389/*
1390 * slabinfo_op - iterator that generates /proc/slabinfo
1391 *
1392 * Output layout:
1393 * cache-name
1394 * num-active-objs
1395 * total-objs
1396 * object size
1397 * num-active-slabs
1398 * total-slabs
1399 * num-pages-per-slab
1400 * + further values on SMP and with statistics enabled
1401 */
1402static const struct seq_operations slabinfo_op = {
1df3b26f 1403 .start = slab_start,
276a2439
WL
1404 .next = slab_next,
1405 .stop = slab_stop,
1df3b26f 1406 .show = slab_show,
b7454ad3
GC
1407};
1408
1409static int slabinfo_open(struct inode *inode, struct file *file)
1410{
1411 return seq_open(file, &slabinfo_op);
1412}
1413
1414static const struct file_operations proc_slabinfo_operations = {
1415 .open = slabinfo_open,
1416 .read = seq_read,
1417 .write = slabinfo_write,
1418 .llseek = seq_lseek,
1419 .release = seq_release,
1420};
1421
1422static int __init slab_proc_init(void)
1423{
e9b4db2b
WL
1424 proc_create("slabinfo", SLABINFO_RIGHTS, NULL,
1425 &proc_slabinfo_operations);
b7454ad3
GC
1426 return 0;
1427}
1428module_init(slab_proc_init);
5b365771 1429#endif /* CONFIG_SLAB || CONFIG_SLUB_DEBUG */
928cec9c
AR
1430
1431static __always_inline void *__do_krealloc(const void *p, size_t new_size,
1432 gfp_t flags)
1433{
1434 void *ret;
1435 size_t ks = 0;
1436
1437 if (p)
1438 ks = ksize(p);
1439
0316bec2 1440 if (ks >= new_size) {
505f5dcb 1441 kasan_krealloc((void *)p, new_size, flags);
928cec9c 1442 return (void *)p;
0316bec2 1443 }
928cec9c
AR
1444
1445 ret = kmalloc_track_caller(new_size, flags);
1446 if (ret && p)
1447 memcpy(ret, p, ks);
1448
1449 return ret;
1450}
1451
1452/**
1453 * __krealloc - like krealloc() but don't free @p.
1454 * @p: object to reallocate memory for.
1455 * @new_size: how many bytes of memory are required.
1456 * @flags: the type of memory to allocate.
1457 *
1458 * This function is like krealloc() except it never frees the originally
1459 * allocated buffer. Use this if you don't want to free the buffer immediately
1460 * like, for example, with RCU.
1461 */
1462void *__krealloc(const void *p, size_t new_size, gfp_t flags)
1463{
1464 if (unlikely(!new_size))
1465 return ZERO_SIZE_PTR;
1466
1467 return __do_krealloc(p, new_size, flags);
1468
1469}
1470EXPORT_SYMBOL(__krealloc);
1471
1472/**
1473 * krealloc - reallocate memory. The contents will remain unchanged.
1474 * @p: object to reallocate memory for.
1475 * @new_size: how many bytes of memory are required.
1476 * @flags: the type of memory to allocate.
1477 *
1478 * The contents of the object pointed to are preserved up to the
1479 * lesser of the new and old sizes. If @p is %NULL, krealloc()
1480 * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a
1481 * %NULL pointer, the object pointed to is freed.
1482 */
1483void *krealloc(const void *p, size_t new_size, gfp_t flags)
1484{
1485 void *ret;
1486
1487 if (unlikely(!new_size)) {
1488 kfree(p);
1489 return ZERO_SIZE_PTR;
1490 }
1491
1492 ret = __do_krealloc(p, new_size, flags);
1493 if (ret && p != ret)
1494 kfree(p);
1495
1496 return ret;
1497}
1498EXPORT_SYMBOL(krealloc);
1499
1500/**
1501 * kzfree - like kfree but zero memory
1502 * @p: object to free memory of
1503 *
1504 * The memory of the object @p points to is zeroed before freed.
1505 * If @p is %NULL, kzfree() does nothing.
1506 *
1507 * Note: this function zeroes the whole allocated buffer which can be a good
1508 * deal bigger than the requested buffer size passed to kmalloc(). So be
1509 * careful when using this function in performance sensitive code.
1510 */
1511void kzfree(const void *p)
1512{
1513 size_t ks;
1514 void *mem = (void *)p;
1515
1516 if (unlikely(ZERO_OR_NULL_PTR(mem)))
1517 return;
1518 ks = ksize(mem);
1519 memset(mem, 0, ks);
1520 kfree(mem);
1521}
1522EXPORT_SYMBOL(kzfree);
1523
1524/* Tracepoints definitions. */
1525EXPORT_TRACEPOINT_SYMBOL(kmalloc);
1526EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc);
1527EXPORT_TRACEPOINT_SYMBOL(kmalloc_node);
1528EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc_node);
1529EXPORT_TRACEPOINT_SYMBOL(kfree);
1530EXPORT_TRACEPOINT_SYMBOL(kmem_cache_free);