blob: 1577d113fac5bbfc6d396ccbca92c8d32593e538 [file] [log] [blame]
Christoph Lameter039363f2012-07-06 15:25:10 -05001/*
2 * Slab allocator functions that are independent of the allocator strategy
3 *
4 * (C) 2012 Christoph Lameter <cl@linux.com>
5 */
6#include <linux/slab.h>
7
8#include <linux/mm.h>
9#include <linux/poison.h>
10#include <linux/interrupt.h>
11#include <linux/memory.h>
12#include <linux/compiler.h>
13#include <linux/module.h>
Christoph Lameter20cea962012-07-06 15:25:13 -050014#include <linux/cpu.h>
15#include <linux/uaccess.h>
Glauber Costab7454ad2012-10-19 18:20:25 +040016#include <linux/seq_file.h>
17#include <linux/proc_fs.h>
Christoph Lameter039363f2012-07-06 15:25:10 -050018#include <asm/cacheflush.h>
19#include <asm/tlbflush.h>
20#include <asm/page.h>
Glauber Costa2633d7a2012-12-18 14:22:34 -080021#include <linux/memcontrol.h>
Andrey Ryabinin928cec92014-08-06 16:04:44 -070022
23#define CREATE_TRACE_POINTS
Christoph Lameterf1b6eb62013-09-04 16:35:34 +000024#include <trace/events/kmem.h>
Christoph Lameter039363f2012-07-06 15:25:10 -050025
Christoph Lameter97d06602012-07-06 15:25:11 -050026#include "slab.h"
27
28enum slab_state slab_state;
Christoph Lameter18004c52012-07-06 15:25:12 -050029LIST_HEAD(slab_caches);
30DEFINE_MUTEX(slab_mutex);
Christoph Lameter9b030cb2012-09-05 00:20:33 +000031struct kmem_cache *kmem_cache;
Christoph Lameter97d06602012-07-06 15:25:11 -050032
Joonsoo Kim07f361b2014-10-09 15:26:00 -070033/*
Joonsoo Kim423c9292014-10-09 15:26:22 -070034 * Set of flags that will prevent slab merging
35 */
36#define SLAB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
37 SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE | \
SamarV-121b5757112020-09-21 05:47:44 +000038 SLAB_FAILSLAB | SLAB_KASAN)
Joonsoo Kim423c9292014-10-09 15:26:22 -070039
Konstantin Khlebnikov3e810ae2015-08-06 15:46:36 -070040#define SLAB_MERGE_SAME (SLAB_RECLAIM_ACCOUNT | SLAB_CACHE_DMA | SLAB_NOTRACK)
Joonsoo Kim423c9292014-10-09 15:26:22 -070041
42/*
43 * Merge control. If this is set then no merging of slab caches will occur.
44 * (Could be removed. This was introduced to pacify the merge skeptics.)
45 */
46static int slab_nomerge;
47
48static int __init setup_slab_nomerge(char *str)
49{
50 slab_nomerge = 1;
51 return 1;
52}
53
54#ifdef CONFIG_SLUB
55__setup_param("slub_nomerge", slub_nomerge, setup_slab_nomerge, 0);
56#endif
57
58__setup("slab_nomerge", setup_slab_nomerge);
59
60/*
Joonsoo Kim07f361b2014-10-09 15:26:00 -070061 * Determine the size of a slab object
62 */
63unsigned int kmem_cache_size(struct kmem_cache *s)
64{
65 return s->object_size;
66}
67EXPORT_SYMBOL(kmem_cache_size);
68
Shuah Khan77be4b12012-08-16 00:09:46 -070069#ifdef CONFIG_DEBUG_VM
Vladimir Davydov794b1242014-04-07 15:39:26 -070070static int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -070071{
72 struct kmem_cache *s = NULL;
73
74 if (!name || in_interrupt() || size < sizeof(void *) ||
75 size > KMALLOC_MAX_SIZE) {
76 pr_err("kmem_cache_create(%s) integrity check failed\n", name);
77 return -EINVAL;
78 }
79
80 list_for_each_entry(s, &slab_caches, list) {
81 char tmp;
82 int res;
83
84 /*
85 * This happens when the module gets unloaded and doesn't
86 * destroy its slab cache and no-one else reuses the vmalloc
87 * area of the module. Print a warning.
88 */
89 res = probe_kernel_address(s->name, tmp);
90 if (res) {
91 pr_err("Slab cache with size %d has lost its name\n",
92 s->object_size);
93 continue;
94 }
Shuah Khan77be4b12012-08-16 00:09:46 -070095 }
96
97 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
98 return 0;
99}
100#else
Vladimir Davydov794b1242014-04-07 15:39:26 -0700101static inline int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -0700102{
103 return 0;
104}
105#endif
106
Christoph Lameter484748f2015-09-04 15:45:34 -0700107void __kmem_cache_free_bulk(struct kmem_cache *s, size_t nr, void **p)
108{
109 size_t i;
110
111 for (i = 0; i < nr; i++)
112 kmem_cache_free(s, p[i]);
113}
114
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800115int __kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t nr,
Christoph Lameter484748f2015-09-04 15:45:34 -0700116 void **p)
117{
118 size_t i;
119
120 for (i = 0; i < nr; i++) {
121 void *x = p[i] = kmem_cache_alloc(s, flags);
122 if (!x) {
123 __kmem_cache_free_bulk(s, i, p);
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800124 return 0;
Christoph Lameter484748f2015-09-04 15:45:34 -0700125 }
126 }
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800127 return i;
Christoph Lameter484748f2015-09-04 15:45:34 -0700128}
129
Glauber Costa55007d82012-12-18 14:22:38 -0800130#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800131void slab_init_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700132{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800133 s->memcg_params.is_root_cache = true;
Vladimir Davydov426589f2015-02-12 14:59:23 -0800134 INIT_LIST_HEAD(&s->memcg_params.list);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800135 RCU_INIT_POINTER(s->memcg_params.memcg_caches, NULL);
136}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700137
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800138static int init_memcg_params(struct kmem_cache *s,
139 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
140{
141 struct memcg_cache_array *arr;
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700142
143 if (memcg) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800144 s->memcg_params.is_root_cache = false;
145 s->memcg_params.memcg = memcg;
146 s->memcg_params.root_cache = root_cache;
147 return 0;
148 }
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700149
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800150 slab_init_memcg_params(s);
151
152 if (!memcg_nr_cache_ids)
153 return 0;
154
155 arr = kzalloc(sizeof(struct memcg_cache_array) +
156 memcg_nr_cache_ids * sizeof(void *),
157 GFP_KERNEL);
158 if (!arr)
159 return -ENOMEM;
160
161 RCU_INIT_POINTER(s->memcg_params.memcg_caches, arr);
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700162 return 0;
163}
164
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800165static void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700166{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800167 if (is_root_cache(s))
168 kfree(rcu_access_pointer(s->memcg_params.memcg_caches));
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700169}
170
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800171static int update_memcg_params(struct kmem_cache *s, int new_array_size)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700172{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800173 struct memcg_cache_array *old, *new;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700174
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800175 if (!is_root_cache(s))
176 return 0;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700177
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800178 new = kzalloc(sizeof(struct memcg_cache_array) +
179 new_array_size * sizeof(void *), GFP_KERNEL);
180 if (!new)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700181 return -ENOMEM;
182
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800183 old = rcu_dereference_protected(s->memcg_params.memcg_caches,
184 lockdep_is_held(&slab_mutex));
185 if (old)
186 memcpy(new->entries, old->entries,
187 memcg_nr_cache_ids * sizeof(void *));
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700188
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800189 rcu_assign_pointer(s->memcg_params.memcg_caches, new);
190 if (old)
191 kfree_rcu(old, rcu);
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700192 return 0;
193}
194
Glauber Costa55007d82012-12-18 14:22:38 -0800195int memcg_update_all_caches(int num_memcgs)
196{
197 struct kmem_cache *s;
198 int ret = 0;
Glauber Costa55007d82012-12-18 14:22:38 -0800199
Vladimir Davydov05257a12015-02-12 14:59:01 -0800200 mutex_lock(&slab_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -0800201 list_for_each_entry(s, &slab_caches, list) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800202 ret = update_memcg_params(s, num_memcgs);
Glauber Costa55007d82012-12-18 14:22:38 -0800203 /*
Glauber Costa55007d82012-12-18 14:22:38 -0800204 * Instead of freeing the memory, we'll just leave the caches
205 * up to this point in an updated state.
206 */
207 if (ret)
Vladimir Davydov05257a12015-02-12 14:59:01 -0800208 break;
Glauber Costa55007d82012-12-18 14:22:38 -0800209 }
Glauber Costa55007d82012-12-18 14:22:38 -0800210 mutex_unlock(&slab_mutex);
211 return ret;
212}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700213#else
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800214static inline int init_memcg_params(struct kmem_cache *s,
215 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700216{
217 return 0;
218}
219
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800220static inline void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700221{
222}
223#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa55007d82012-12-18 14:22:38 -0800224
Christoph Lameter039363f2012-07-06 15:25:10 -0500225/*
Joonsoo Kim423c9292014-10-09 15:26:22 -0700226 * Find a mergeable slab cache
227 */
228int slab_unmergeable(struct kmem_cache *s)
229{
230 if (slab_nomerge || (s->flags & SLAB_NEVER_MERGE))
231 return 1;
232
233 if (!is_root_cache(s))
234 return 1;
235
236 if (s->ctor)
237 return 1;
238
239 /*
240 * We may have set a slab to be unmergeable during bootstrap.
241 */
242 if (s->refcount < 0)
243 return 1;
244
245 return 0;
246}
247
248struct kmem_cache *find_mergeable(size_t size, size_t align,
249 unsigned long flags, const char *name, void (*ctor)(void *))
250{
251 struct kmem_cache *s;
252
Grygorii Maistrenko9ac38e32017-02-22 15:40:59 -0800253 if (slab_nomerge)
Joonsoo Kim423c9292014-10-09 15:26:22 -0700254 return NULL;
255
256 if (ctor)
257 return NULL;
258
259 size = ALIGN(size, sizeof(void *));
260 align = calculate_alignment(flags, align, size);
261 size = ALIGN(size, align);
262 flags = kmem_cache_flags(size, flags, name, NULL);
263
Grygorii Maistrenko9ac38e32017-02-22 15:40:59 -0800264 if (flags & SLAB_NEVER_MERGE)
265 return NULL;
266
Joonsoo Kim54362052014-12-10 15:42:18 -0800267 list_for_each_entry_reverse(s, &slab_caches, list) {
Joonsoo Kim423c9292014-10-09 15:26:22 -0700268 if (slab_unmergeable(s))
269 continue;
270
271 if (size > s->size)
272 continue;
273
274 if ((flags & SLAB_MERGE_SAME) != (s->flags & SLAB_MERGE_SAME))
275 continue;
276 /*
277 * Check if alignment is compatible.
278 * Courtesy of Adrian Drzewiecki
279 */
280 if ((s->size & ~(align - 1)) != s->size)
281 continue;
282
283 if (s->size - size >= sizeof(void *))
284 continue;
285
Joonsoo Kim95069ac82014-11-13 15:19:25 -0800286 if (IS_ENABLED(CONFIG_SLAB) && align &&
287 (align > s->align || s->align % align))
288 continue;
289
Joonsoo Kim423c9292014-10-09 15:26:22 -0700290 return s;
291 }
292 return NULL;
293}
294
295/*
Christoph Lameter45906852012-11-28 16:23:16 +0000296 * Figure out what the alignment of the objects will be given a set of
297 * flags, a user specified alignment and the size of the objects.
298 */
299unsigned long calculate_alignment(unsigned long flags,
300 unsigned long align, unsigned long size)
301{
302 /*
303 * If the user wants hardware cache aligned objects then follow that
304 * suggestion if the object is sufficiently large.
305 *
306 * The hardware cache alignment cannot override the specified
307 * alignment though. If that is greater then use it.
308 */
309 if (flags & SLAB_HWCACHE_ALIGN) {
310 unsigned long ralign = cache_line_size();
311 while (size <= ralign / 2)
312 ralign /= 2;
313 align = max(align, ralign);
314 }
315
316 if (align < ARCH_SLAB_MINALIGN)
317 align = ARCH_SLAB_MINALIGN;
318
319 return ALIGN(align, sizeof(void *));
320}
321
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800322static struct kmem_cache *create_cache(const char *name,
323 size_t object_size, size_t size, size_t align,
324 unsigned long flags, void (*ctor)(void *),
325 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700326{
327 struct kmem_cache *s;
328 int err;
329
330 err = -ENOMEM;
331 s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL);
332 if (!s)
333 goto out;
334
335 s->name = name;
336 s->object_size = object_size;
337 s->size = size;
338 s->align = align;
339 s->ctor = ctor;
340
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800341 err = init_memcg_params(s, memcg, root_cache);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700342 if (err)
343 goto out_free_cache;
344
345 err = __kmem_cache_create(s, flags);
346 if (err)
347 goto out_free_cache;
348
349 s->refcount = 1;
350 list_add(&s->list, &slab_caches);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700351out:
352 if (err)
353 return ERR_PTR(err);
354 return s;
355
356out_free_cache:
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800357 destroy_memcg_params(s);
Vaishali Thakkar7c4da062015-02-10 14:09:40 -0800358 kmem_cache_free(kmem_cache, s);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700359 goto out;
360}
Christoph Lameter45906852012-11-28 16:23:16 +0000361
362/*
Christoph Lameter039363f2012-07-06 15:25:10 -0500363 * kmem_cache_create - Create a cache.
364 * @name: A string which is used in /proc/slabinfo to identify this cache.
365 * @size: The size of objects to be created in this cache.
366 * @align: The required alignment for the objects.
367 * @flags: SLAB flags
368 * @ctor: A constructor for the objects.
369 *
370 * Returns a ptr to the cache on success, NULL on failure.
371 * Cannot be called within a interrupt, but can be interrupted.
372 * The @ctor is run when new pages are allocated by the cache.
373 *
374 * The flags are
375 *
376 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
377 * to catch references to uninitialised memory.
378 *
379 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
380 * for buffer overruns.
381 *
382 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
383 * cacheline. This can be beneficial if you're counting cycles as closely
384 * as davem.
385 */
Glauber Costa2633d7a2012-12-18 14:22:34 -0800386struct kmem_cache *
Vladimir Davydov794b1242014-04-07 15:39:26 -0700387kmem_cache_create(const char *name, size_t size, size_t align,
388 unsigned long flags, void (*ctor)(void *))
Christoph Lameter039363f2012-07-06 15:25:10 -0500389{
Alexandru Moise40911a72015-11-05 18:45:43 -0800390 struct kmem_cache *s = NULL;
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800391 const char *cache_name;
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800392 int err;
Christoph Lameter039363f2012-07-06 15:25:10 -0500393
Pekka Enbergb9205362012-08-16 10:12:18 +0300394 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700395 get_online_mems();
Vladimir Davydov05257a12015-02-12 14:59:01 -0800396 memcg_get_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700397
Pekka Enbergb9205362012-08-16 10:12:18 +0300398 mutex_lock(&slab_mutex);
Christoph Lameter686d5502012-09-05 00:20:33 +0000399
Vladimir Davydov794b1242014-04-07 15:39:26 -0700400 err = kmem_cache_sanity_check(name, size);
Andrew Morton3aa24f52014-10-09 15:25:58 -0700401 if (err) {
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800402 goto out_unlock;
Andrew Morton3aa24f52014-10-09 15:25:58 -0700403 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000404
Glauber Costad8843922012-10-17 15:36:51 +0400405 /*
406 * Some allocators will constraint the set of valid flags to a subset
407 * of all flags. We expect them to define CACHE_CREATE_MASK in this
408 * case, and we'll just provide them with a sanitized version of the
409 * passed flags.
410 */
411 flags &= CACHE_CREATE_MASK;
Christoph Lameter686d5502012-09-05 00:20:33 +0000412
Vladimir Davydov794b1242014-04-07 15:39:26 -0700413 s = __kmem_cache_alias(name, size, align, flags, ctor);
414 if (s)
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800415 goto out_unlock;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800416
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800417 cache_name = kstrdup_const(name, GFP_KERNEL);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700418 if (!cache_name) {
419 err = -ENOMEM;
420 goto out_unlock;
421 }
Glauber Costa2633d7a2012-12-18 14:22:34 -0800422
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800423 s = create_cache(cache_name, size, size,
424 calculate_alignment(flags, align, size),
425 flags, ctor, NULL, NULL);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700426 if (IS_ERR(s)) {
427 err = PTR_ERR(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800428 kfree_const(cache_name);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700429 }
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800430
431out_unlock:
Christoph Lameter20cea962012-07-06 15:25:13 -0500432 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700433
Vladimir Davydov05257a12015-02-12 14:59:01 -0800434 memcg_put_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700435 put_online_mems();
Christoph Lameter20cea962012-07-06 15:25:13 -0500436 put_online_cpus();
437
Dave Jonesba3253c2014-01-29 14:05:48 -0800438 if (err) {
Christoph Lameter686d5502012-09-05 00:20:33 +0000439 if (flags & SLAB_PANIC)
440 panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n",
441 name, err);
442 else {
443 printk(KERN_WARNING "kmem_cache_create(%s) failed with error %d",
444 name, err);
445 dump_stack();
446 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000447 return NULL;
448 }
Christoph Lameter039363f2012-07-06 15:25:10 -0500449 return s;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800450}
Christoph Lameter039363f2012-07-06 15:25:10 -0500451EXPORT_SYMBOL(kmem_cache_create);
Christoph Lameter97d06602012-07-06 15:25:11 -0500452
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800453static int shutdown_cache(struct kmem_cache *s,
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800454 struct list_head *release, bool *need_rcu_barrier)
455{
SamarV-121b5757112020-09-21 05:47:44 +0000456 /* free asan quarantined objects */
457 kasan_cache_shutdown(s);
458
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800459 if (__kmem_cache_shutdown(s) != 0)
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800460 return -EBUSY;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800461
462 if (s->flags & SLAB_DESTROY_BY_RCU)
463 *need_rcu_barrier = true;
464
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800465 list_move(&s->list, release);
466 return 0;
467}
468
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800469static void release_caches(struct list_head *release, bool need_rcu_barrier)
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800470{
471 struct kmem_cache *s, *s2;
472
473 if (need_rcu_barrier)
474 rcu_barrier();
475
476 list_for_each_entry_safe(s, s2, release, list) {
477#ifdef SLAB_SUPPORTS_SYSFS
478 sysfs_slab_remove(s);
479#else
480 slab_kmem_cache_release(s);
481#endif
482 }
483}
484
Vladimir Davydov794b1242014-04-07 15:39:26 -0700485#ifdef CONFIG_MEMCG_KMEM
486/*
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700487 * memcg_create_kmem_cache - Create a cache for a memory cgroup.
Vladimir Davydov794b1242014-04-07 15:39:26 -0700488 * @memcg: The memory cgroup the new cache is for.
489 * @root_cache: The parent of the new cache.
490 *
491 * This function attempts to create a kmem cache that will serve allocation
492 * requests going from @memcg to @root_cache. The new cache inherits properties
493 * from its parent.
494 */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800495void memcg_create_kmem_cache(struct mem_cgroup *memcg,
496 struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700497{
Vladimir Davydov3e0350a2015-02-10 14:11:44 -0800498 static char memcg_name_buf[NAME_MAX + 1]; /* protected by slab_mutex */
Michal Hocko33398cf2015-09-08 15:01:02 -0700499 struct cgroup_subsys_state *css = &memcg->css;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800500 struct memcg_cache_array *arr;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700501 struct kmem_cache *s = NULL;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700502 char *cache_name;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800503 int idx;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700504
505 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700506 get_online_mems();
507
Vladimir Davydov794b1242014-04-07 15:39:26 -0700508 mutex_lock(&slab_mutex);
509
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800510 /*
511 * The memory cgroup could have been deactivated while the cache
512 * creation work was pending.
513 */
514 if (!memcg_kmem_is_active(memcg))
515 goto out_unlock;
516
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800517 idx = memcg_cache_id(memcg);
518 arr = rcu_dereference_protected(root_cache->memcg_params.memcg_caches,
519 lockdep_is_held(&slab_mutex));
520
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800521 /*
522 * Since per-memcg caches are created asynchronously on first
523 * allocation (see memcg_kmem_get_cache()), several threads can try to
524 * create the same cache, but only one of them may succeed.
525 */
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800526 if (arr->entries[idx])
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800527 goto out_unlock;
528
Vladimir Davydovf1008362015-02-12 14:59:29 -0800529 cgroup_name(css->cgroup, memcg_name_buf, sizeof(memcg_name_buf));
Johannes Weiner8627c772016-07-20 15:44:57 -0700530 cache_name = kasprintf(GFP_KERNEL, "%s(%llu:%s)", root_cache->name,
531 css->serial_nr, memcg_name_buf);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700532 if (!cache_name)
533 goto out_unlock;
534
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800535 s = create_cache(cache_name, root_cache->object_size,
536 root_cache->size, root_cache->align,
537 root_cache->flags, root_cache->ctor,
538 memcg, root_cache);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800539 /*
540 * If we could not create a memcg cache, do not complain, because
541 * that's not critical at all as we can always proceed with the root
542 * cache.
543 */
Vladimir Davydovbd673142014-06-04 16:07:40 -0700544 if (IS_ERR(s)) {
Vladimir Davydov794b1242014-04-07 15:39:26 -0700545 kfree(cache_name);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800546 goto out_unlock;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700547 }
Vladimir Davydov794b1242014-04-07 15:39:26 -0700548
Vladimir Davydov426589f2015-02-12 14:59:23 -0800549 list_add(&s->memcg_params.list, &root_cache->memcg_params.list);
550
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800551 /*
552 * Since readers won't lock (see cache_from_memcg_idx()), we need a
553 * barrier here to ensure nobody will see the kmem_cache partially
554 * initialized.
555 */
556 smp_wmb();
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800557 arr->entries[idx] = s;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800558
Vladimir Davydov794b1242014-04-07 15:39:26 -0700559out_unlock:
560 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700561
562 put_online_mems();
Vladimir Davydov794b1242014-04-07 15:39:26 -0700563 put_online_cpus();
564}
Vladimir Davydovb8529902014-04-07 15:39:28 -0700565
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800566void memcg_deactivate_kmem_caches(struct mem_cgroup *memcg)
567{
568 int idx;
569 struct memcg_cache_array *arr;
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800570 struct kmem_cache *s, *c;
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800571
572 idx = memcg_cache_id(memcg);
573
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800574 get_online_cpus();
575 get_online_mems();
576
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800577 mutex_lock(&slab_mutex);
578 list_for_each_entry(s, &slab_caches, list) {
579 if (!is_root_cache(s))
580 continue;
581
582 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
583 lockdep_is_held(&slab_mutex));
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800584 c = arr->entries[idx];
585 if (!c)
586 continue;
587
588 __kmem_cache_shrink(c, true);
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800589 arr->entries[idx] = NULL;
590 }
591 mutex_unlock(&slab_mutex);
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800592
593 put_online_mems();
594 put_online_cpus();
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800595}
596
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800597static int __shutdown_memcg_cache(struct kmem_cache *s,
598 struct list_head *release, bool *need_rcu_barrier)
599{
600 BUG_ON(is_root_cache(s));
601
602 if (shutdown_cache(s, release, need_rcu_barrier))
603 return -EBUSY;
604
605 list_del(&s->memcg_params.list);
606 return 0;
607}
608
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800609void memcg_destroy_kmem_caches(struct mem_cgroup *memcg)
Vladimir Davydovb8529902014-04-07 15:39:28 -0700610{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800611 LIST_HEAD(release);
612 bool need_rcu_barrier = false;
613 struct kmem_cache *s, *s2;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700614
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800615 get_online_cpus();
616 get_online_mems();
Vladimir Davydovb8529902014-04-07 15:39:28 -0700617
Vladimir Davydovb8529902014-04-07 15:39:28 -0700618 mutex_lock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800619 list_for_each_entry_safe(s, s2, &slab_caches, list) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800620 if (is_root_cache(s) || s->memcg_params.memcg != memcg)
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800621 continue;
622 /*
623 * The cgroup is about to be freed and therefore has no charges
624 * left. Hence, all its caches must be empty by now.
625 */
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800626 BUG_ON(__shutdown_memcg_cache(s, &release, &need_rcu_barrier));
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800627 }
628 mutex_unlock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700629
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800630 put_online_mems();
631 put_online_cpus();
632
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800633 release_caches(&release, need_rcu_barrier);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700634}
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800635
636static int shutdown_memcg_caches(struct kmem_cache *s,
637 struct list_head *release, bool *need_rcu_barrier)
638{
639 struct memcg_cache_array *arr;
640 struct kmem_cache *c, *c2;
641 LIST_HEAD(busy);
642 int i;
643
644 BUG_ON(!is_root_cache(s));
645
646 /*
647 * First, shutdown active caches, i.e. caches that belong to online
648 * memory cgroups.
649 */
650 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
651 lockdep_is_held(&slab_mutex));
652 for_each_memcg_cache_index(i) {
653 c = arr->entries[i];
654 if (!c)
655 continue;
656 if (__shutdown_memcg_cache(c, release, need_rcu_barrier))
657 /*
658 * The cache still has objects. Move it to a temporary
659 * list so as not to try to destroy it for a second
660 * time while iterating over inactive caches below.
661 */
662 list_move(&c->memcg_params.list, &busy);
663 else
664 /*
665 * The cache is empty and will be destroyed soon. Clear
666 * the pointer to it in the memcg_caches array so that
667 * it will never be accessed even if the root cache
668 * stays alive.
669 */
670 arr->entries[i] = NULL;
671 }
672
673 /*
674 * Second, shutdown all caches left from memory cgroups that are now
675 * offline.
676 */
677 list_for_each_entry_safe(c, c2, &s->memcg_params.list,
678 memcg_params.list)
679 __shutdown_memcg_cache(c, release, need_rcu_barrier);
680
681 list_splice(&busy, &s->memcg_params.list);
682
683 /*
684 * A cache being destroyed must be empty. In particular, this means
685 * that all per memcg caches attached to it must be empty too.
686 */
687 if (!list_empty(&s->memcg_params.list))
688 return -EBUSY;
689 return 0;
690}
691#else
692static inline int shutdown_memcg_caches(struct kmem_cache *s,
693 struct list_head *release, bool *need_rcu_barrier)
694{
695 return 0;
696}
Vladimir Davydov794b1242014-04-07 15:39:26 -0700697#endif /* CONFIG_MEMCG_KMEM */
698
Christoph Lameter41a21282014-05-06 12:50:08 -0700699void slab_kmem_cache_release(struct kmem_cache *s)
700{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800701 destroy_memcg_params(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800702 kfree_const(s->name);
Christoph Lameter41a21282014-05-06 12:50:08 -0700703 kmem_cache_free(kmem_cache, s);
704}
705
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000706void kmem_cache_destroy(struct kmem_cache *s)
707{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800708 LIST_HEAD(release);
709 bool need_rcu_barrier = false;
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800710 int err;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800711
Sergey Senozhatsky3942d292015-09-08 15:00:50 -0700712 if (unlikely(!s))
713 return;
714
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000715 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700716 get_online_mems();
717
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000718 mutex_lock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700719
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000720 s->refcount--;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700721 if (s->refcount)
722 goto out_unlock;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000723
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800724 err = shutdown_memcg_caches(s, &release, &need_rcu_barrier);
725 if (!err)
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800726 err = shutdown_cache(s, &release, &need_rcu_barrier);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700727
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800728 if (err) {
SamarV-121b5757112020-09-21 05:47:44 +0000729 pr_err("kmem_cache_destroy %s: Slab cache still has objects\n",
730 s->name);
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800731 dump_stack();
732 }
Vladimir Davydovb8529902014-04-07 15:39:28 -0700733out_unlock:
734 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800735
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700736 put_online_mems();
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000737 put_online_cpus();
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800738
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800739 release_caches(&release, need_rcu_barrier);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000740}
741EXPORT_SYMBOL(kmem_cache_destroy);
742
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700743/**
744 * kmem_cache_shrink - Shrink a cache.
745 * @cachep: The cache to shrink.
746 *
747 * Releases as many slabs as possible for a cache.
748 * To help debugging, a zero exit status indicates all slabs were released.
749 */
750int kmem_cache_shrink(struct kmem_cache *cachep)
751{
752 int ret;
753
754 get_online_cpus();
755 get_online_mems();
SamarV-121b5757112020-09-21 05:47:44 +0000756 kasan_cache_shrink(cachep);
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800757 ret = __kmem_cache_shrink(cachep, false);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700758 put_online_mems();
759 put_online_cpus();
760 return ret;
761}
762EXPORT_SYMBOL(kmem_cache_shrink);
763
Denis Kirjanovfda90122015-11-05 18:44:59 -0800764bool slab_is_available(void)
Christoph Lameter97d06602012-07-06 15:25:11 -0500765{
766 return slab_state >= UP;
767}
Glauber Costab7454ad2012-10-19 18:20:25 +0400768
Christoph Lameter45530c42012-11-28 16:23:07 +0000769#ifndef CONFIG_SLOB
770/* Create a cache during boot when no slab services are available yet */
771void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t size,
772 unsigned long flags)
773{
774 int err;
775
776 s->name = name;
777 s->size = s->object_size = size;
Christoph Lameter45906852012-11-28 16:23:16 +0000778 s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800779
780 slab_init_memcg_params(s);
781
Christoph Lameter45530c42012-11-28 16:23:07 +0000782 err = __kmem_cache_create(s, flags);
783
784 if (err)
Christoph Lameter31ba7342013-01-10 19:00:53 +0000785 panic("Creation of kmalloc slab %s size=%zu failed. Reason %d\n",
Christoph Lameter45530c42012-11-28 16:23:07 +0000786 name, size, err);
787
788 s->refcount = -1; /* Exempt from merging for now */
789}
790
791struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size,
792 unsigned long flags)
793{
794 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
795
796 if (!s)
797 panic("Out of memory when creating slab %s\n", name);
798
799 create_boot_cache(s, name, size, flags);
800 list_add(&s->list, &slab_caches);
801 s->refcount = 1;
802 return s;
803}
804
Christoph Lameter9425c582013-01-10 19:12:17 +0000805struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
806EXPORT_SYMBOL(kmalloc_caches);
807
808#ifdef CONFIG_ZONE_DMA
809struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1];
810EXPORT_SYMBOL(kmalloc_dma_caches);
811#endif
812
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000813/*
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000814 * Conversion table for small slabs sizes / 8 to the index in the
815 * kmalloc array. This is necessary for slabs < 192 since we have non power
816 * of two cache sizes there. The size of larger slabs can be determined using
817 * fls.
818 */
819static s8 size_index[24] = {
820 3, /* 8 */
821 4, /* 16 */
822 5, /* 24 */
823 5, /* 32 */
824 6, /* 40 */
825 6, /* 48 */
826 6, /* 56 */
827 6, /* 64 */
828 1, /* 72 */
829 1, /* 80 */
830 1, /* 88 */
831 1, /* 96 */
832 7, /* 104 */
833 7, /* 112 */
834 7, /* 120 */
835 7, /* 128 */
836 2, /* 136 */
837 2, /* 144 */
838 2, /* 152 */
839 2, /* 160 */
840 2, /* 168 */
841 2, /* 176 */
842 2, /* 184 */
843 2 /* 192 */
844};
845
846static inline int size_index_elem(size_t bytes)
847{
848 return (bytes - 1) / 8;
849}
850
851/*
852 * Find the kmem_cache structure that serves a given size of
853 * allocation
854 */
855struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags)
856{
857 int index;
858
Joonsoo Kim9de1bc82013-08-02 11:02:42 +0900859 if (unlikely(size > KMALLOC_MAX_SIZE)) {
Sasha Levin907985f2013-06-10 15:18:00 -0400860 WARN_ON_ONCE(!(flags & __GFP_NOWARN));
Christoph Lameter6286ae92013-05-03 15:43:18 +0000861 return NULL;
Sasha Levin907985f2013-06-10 15:18:00 -0400862 }
Christoph Lameter6286ae92013-05-03 15:43:18 +0000863
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000864 if (size <= 192) {
865 if (!size)
866 return ZERO_SIZE_PTR;
867
868 index = size_index[size_index_elem(size)];
869 } else
870 index = fls(size - 1);
871
872#ifdef CONFIG_ZONE_DMA
Joonsoo Kimb1e05412013-02-04 23:46:46 +0900873 if (unlikely((flags & GFP_DMA)))
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000874 return kmalloc_dma_caches[index];
875
876#endif
877 return kmalloc_caches[index];
878}
879
880/*
Gavin Guo4066c332015-06-24 16:55:54 -0700881 * kmalloc_info[] is to make slub_debug=,kmalloc-xx option work at boot time.
882 * kmalloc_index() supports up to 2^26=64MB, so the final entry of the table is
883 * kmalloc-67108864.
884 */
885static struct {
886 const char *name;
887 unsigned long size;
888} const kmalloc_info[] __initconst = {
889 {NULL, 0}, {"kmalloc-96", 96},
890 {"kmalloc-192", 192}, {"kmalloc-8", 8},
891 {"kmalloc-16", 16}, {"kmalloc-32", 32},
892 {"kmalloc-64", 64}, {"kmalloc-128", 128},
893 {"kmalloc-256", 256}, {"kmalloc-512", 512},
894 {"kmalloc-1024", 1024}, {"kmalloc-2048", 2048},
895 {"kmalloc-4096", 4096}, {"kmalloc-8192", 8192},
896 {"kmalloc-16384", 16384}, {"kmalloc-32768", 32768},
897 {"kmalloc-65536", 65536}, {"kmalloc-131072", 131072},
898 {"kmalloc-262144", 262144}, {"kmalloc-524288", 524288},
899 {"kmalloc-1048576", 1048576}, {"kmalloc-2097152", 2097152},
900 {"kmalloc-4194304", 4194304}, {"kmalloc-8388608", 8388608},
901 {"kmalloc-16777216", 16777216}, {"kmalloc-33554432", 33554432},
902 {"kmalloc-67108864", 67108864}
903};
904
905/*
Daniel Sanders34cc6992015-06-24 16:55:57 -0700906 * Patch up the size_index table if we have strange large alignment
907 * requirements for the kmalloc array. This is only the case for
908 * MIPS it seems. The standard arches will not generate any code here.
909 *
910 * Largest permitted alignment is 256 bytes due to the way we
911 * handle the index determination for the smaller caches.
912 *
913 * Make sure that nothing crazy happens if someone starts tinkering
914 * around with ARCH_KMALLOC_MINALIGN
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000915 */
Daniel Sanders34cc6992015-06-24 16:55:57 -0700916void __init setup_kmalloc_cache_index_table(void)
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000917{
918 int i;
919
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000920 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
921 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
922
923 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
924 int elem = size_index_elem(i);
925
926 if (elem >= ARRAY_SIZE(size_index))
927 break;
928 size_index[elem] = KMALLOC_SHIFT_LOW;
929 }
930
931 if (KMALLOC_MIN_SIZE >= 64) {
932 /*
933 * The 96 byte size cache is not used if the alignment
934 * is 64 byte.
935 */
936 for (i = 64 + 8; i <= 96; i += 8)
937 size_index[size_index_elem(i)] = 7;
938
939 }
940
941 if (KMALLOC_MIN_SIZE >= 128) {
942 /*
943 * The 192 byte sized cache is not used if the alignment
944 * is 128 byte. Redirect kmalloc to use the 256 byte cache
945 * instead.
946 */
947 for (i = 128 + 8; i <= 192; i += 8)
948 size_index[size_index_elem(i)] = 8;
949 }
Daniel Sanders34cc6992015-06-24 16:55:57 -0700950}
951
Christoph Lameterae6f2462015-06-30 09:01:11 -0500952static void __init new_kmalloc_cache(int idx, unsigned long flags)
Christoph Lametera9730fc2015-06-29 09:28:08 -0500953{
954 kmalloc_caches[idx] = create_kmalloc_cache(kmalloc_info[idx].name,
955 kmalloc_info[idx].size, flags);
956}
957
Daniel Sanders34cc6992015-06-24 16:55:57 -0700958/*
959 * Create the kmalloc array. Some of the regular kmalloc arrays
960 * may already have been created because they were needed to
961 * enable allocations for slab creation.
962 */
963void __init create_kmalloc_caches(unsigned long flags)
964{
965 int i;
966
Christoph Lametera9730fc2015-06-29 09:28:08 -0500967 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
968 if (!kmalloc_caches[i])
969 new_kmalloc_cache(i, flags);
Chris Mason956e46e2013-05-08 15:56:28 -0400970
971 /*
Christoph Lametera9730fc2015-06-29 09:28:08 -0500972 * Caches that are not of the two-to-the-power-of size.
973 * These have to be created immediately after the
974 * earlier power of two caches
Chris Mason956e46e2013-05-08 15:56:28 -0400975 */
Christoph Lametera9730fc2015-06-29 09:28:08 -0500976 if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[1] && i == 6)
977 new_kmalloc_cache(1, flags);
978 if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[2] && i == 7)
979 new_kmalloc_cache(2, flags);
Christoph Lameter8a965b32013-05-03 18:04:18 +0000980 }
981
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000982 /* Kmalloc array is now usable */
983 slab_state = UP;
984
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000985#ifdef CONFIG_ZONE_DMA
986 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
987 struct kmem_cache *s = kmalloc_caches[i];
988
989 if (s) {
990 int size = kmalloc_size(i);
991 char *n = kasprintf(GFP_NOWAIT,
992 "dma-kmalloc-%d", size);
993
994 BUG_ON(!n);
995 kmalloc_dma_caches[i] = create_kmalloc_cache(n,
996 size, SLAB_CACHE_DMA | flags);
997 }
998 }
999#endif
1000}
Christoph Lameter45530c42012-11-28 16:23:07 +00001001#endif /* !CONFIG_SLOB */
1002
Vladimir Davydovcea371f2014-06-04 16:07:04 -07001003/*
1004 * To avoid unnecessary overhead, we pass through large allocation requests
1005 * directly to the page allocator. We use __GFP_COMP, because we will need to
1006 * know the allocation order to free the pages properly in kfree.
1007 */
Vladimir Davydov52383432014-06-04 16:06:39 -07001008void *kmalloc_order(size_t size, gfp_t flags, unsigned int order)
1009{
1010 void *ret;
1011 struct page *page;
1012
1013 flags |= __GFP_COMP;
1014 page = alloc_kmem_pages(flags, order);
1015 ret = page ? page_address(page) : NULL;
1016 kmemleak_alloc(ret, size, 1, flags);
SamarV-121b5757112020-09-21 05:47:44 +00001017 kasan_kmalloc_large(ret, size, flags);
Vladimir Davydov52383432014-06-04 16:06:39 -07001018 return ret;
1019}
1020EXPORT_SYMBOL(kmalloc_order);
1021
Christoph Lameterf1b6eb62013-09-04 16:35:34 +00001022#ifdef CONFIG_TRACING
1023void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
1024{
1025 void *ret = kmalloc_order(size, flags, order);
1026 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
1027 return ret;
1028}
1029EXPORT_SYMBOL(kmalloc_order_trace);
1030#endif
Christoph Lameter45530c42012-11-28 16:23:07 +00001031
Glauber Costab7454ad2012-10-19 18:20:25 +04001032#ifdef CONFIG_SLABINFO
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001033
1034#ifdef CONFIG_SLAB
1035#define SLABINFO_RIGHTS (S_IWUSR | S_IRUSR)
1036#else
1037#define SLABINFO_RIGHTS S_IRUSR
1038#endif
1039
Vladimir Davydovb0475012014-12-10 15:44:19 -08001040static void print_slabinfo_header(struct seq_file *m)
Glauber Costabcee6e22012-10-19 18:20:26 +04001041{
1042 /*
1043 * Output format version, so at least we can change it
1044 * without _too_ many complaints.
1045 */
1046#ifdef CONFIG_DEBUG_SLAB
1047 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
1048#else
1049 seq_puts(m, "slabinfo - version: 2.1\n");
1050#endif
SamarV-121b5757112020-09-21 05:47:44 +00001051 seq_puts(m, "# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab>");
Glauber Costabcee6e22012-10-19 18:20:26 +04001052 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
1053 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
1054#ifdef CONFIG_DEBUG_SLAB
SamarV-121b5757112020-09-21 05:47:44 +00001055 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> <error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Glauber Costabcee6e22012-10-19 18:20:26 +04001056 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
1057#endif
1058 seq_putc(m, '\n');
1059}
1060
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001061void *slab_start(struct seq_file *m, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +04001062{
Glauber Costab7454ad2012-10-19 18:20:25 +04001063 mutex_lock(&slab_mutex);
Glauber Costab7454ad2012-10-19 18:20:25 +04001064 return seq_list_start(&slab_caches, *pos);
1065}
1066
Wanpeng Li276a2432013-07-08 08:08:28 +08001067void *slab_next(struct seq_file *m, void *p, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +04001068{
1069 return seq_list_next(p, &slab_caches, pos);
1070}
1071
Wanpeng Li276a2432013-07-08 08:08:28 +08001072void slab_stop(struct seq_file *m, void *p)
Glauber Costab7454ad2012-10-19 18:20:25 +04001073{
1074 mutex_unlock(&slab_mutex);
1075}
1076
Glauber Costa749c5412012-12-18 14:23:01 -08001077static void
1078memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
Glauber Costab7454ad2012-10-19 18:20:25 +04001079{
Glauber Costa749c5412012-12-18 14:23:01 -08001080 struct kmem_cache *c;
1081 struct slabinfo sinfo;
Glauber Costa749c5412012-12-18 14:23:01 -08001082
1083 if (!is_root_cache(s))
1084 return;
1085
Vladimir Davydov426589f2015-02-12 14:59:23 -08001086 for_each_memcg_cache(c, s) {
Glauber Costa749c5412012-12-18 14:23:01 -08001087 memset(&sinfo, 0, sizeof(sinfo));
1088 get_slabinfo(c, &sinfo);
1089
1090 info->active_slabs += sinfo.active_slabs;
1091 info->num_slabs += sinfo.num_slabs;
1092 info->shared_avail += sinfo.shared_avail;
1093 info->active_objs += sinfo.active_objs;
1094 info->num_objs += sinfo.num_objs;
1095 }
1096}
1097
Vladimir Davydovb0475012014-12-10 15:44:19 -08001098static void cache_show(struct kmem_cache *s, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08001099{
Glauber Costa0d7561c2012-10-19 18:20:27 +04001100 struct slabinfo sinfo;
1101
1102 memset(&sinfo, 0, sizeof(sinfo));
1103 get_slabinfo(s, &sinfo);
1104
Glauber Costa749c5412012-12-18 14:23:01 -08001105 memcg_accumulate_slabinfo(s, &sinfo);
1106
Glauber Costa0d7561c2012-10-19 18:20:27 +04001107 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Glauber Costa749c5412012-12-18 14:23:01 -08001108 cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size,
Glauber Costa0d7561c2012-10-19 18:20:27 +04001109 sinfo.objects_per_slab, (1 << sinfo.cache_order));
1110
1111 seq_printf(m, " : tunables %4u %4u %4u",
1112 sinfo.limit, sinfo.batchcount, sinfo.shared);
1113 seq_printf(m, " : slabdata %6lu %6lu %6lu",
1114 sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
1115 slabinfo_show_stats(m, s);
1116 seq_putc(m, '\n');
Glauber Costab7454ad2012-10-19 18:20:25 +04001117}
1118
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001119static int slab_show(struct seq_file *m, void *p)
Glauber Costa749c5412012-12-18 14:23:01 -08001120{
1121 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
1122
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001123 if (p == slab_caches.next)
1124 print_slabinfo_header(m);
Vladimir Davydovb0475012014-12-10 15:44:19 -08001125 if (is_root_cache(s))
1126 cache_show(s, m);
1127 return 0;
Glauber Costa749c5412012-12-18 14:23:01 -08001128}
1129
Vladimir Davydovb0475012014-12-10 15:44:19 -08001130#ifdef CONFIG_MEMCG_KMEM
1131int memcg_slab_show(struct seq_file *m, void *p)
1132{
1133 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
1134 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1135
1136 if (p == slab_caches.next)
1137 print_slabinfo_header(m);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08001138 if (!is_root_cache(s) && s->memcg_params.memcg == memcg)
Vladimir Davydovb0475012014-12-10 15:44:19 -08001139 cache_show(s, m);
1140 return 0;
1141}
1142#endif
1143
Glauber Costab7454ad2012-10-19 18:20:25 +04001144/*
1145 * slabinfo_op - iterator that generates /proc/slabinfo
1146 *
1147 * Output layout:
1148 * cache-name
1149 * num-active-objs
1150 * total-objs
1151 * object size
1152 * num-active-slabs
1153 * total-slabs
1154 * num-pages-per-slab
1155 * + further values on SMP and with statistics enabled
1156 */
1157static const struct seq_operations slabinfo_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001158 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08001159 .next = slab_next,
1160 .stop = slab_stop,
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001161 .show = slab_show,
Glauber Costab7454ad2012-10-19 18:20:25 +04001162};
1163
1164static int slabinfo_open(struct inode *inode, struct file *file)
1165{
1166 return seq_open(file, &slabinfo_op);
1167}
1168
1169static const struct file_operations proc_slabinfo_operations = {
1170 .open = slabinfo_open,
1171 .read = seq_read,
1172 .write = slabinfo_write,
1173 .llseek = seq_lseek,
1174 .release = seq_release,
1175};
1176
1177static int __init slab_proc_init(void)
1178{
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001179 proc_create("slabinfo", SLABINFO_RIGHTS, NULL,
1180 &proc_slabinfo_operations);
Glauber Costab7454ad2012-10-19 18:20:25 +04001181 return 0;
1182}
1183module_init(slab_proc_init);
1184#endif /* CONFIG_SLABINFO */
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001185
1186static __always_inline void *__do_krealloc(const void *p, size_t new_size,
1187 gfp_t flags)
1188{
1189 void *ret;
1190 size_t ks = 0;
1191
1192 if (p)
1193 ks = ksize(p);
1194
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001195 if (ks >= new_size) {
SamarV-121b5757112020-09-21 05:47:44 +00001196 kasan_krealloc((void *)p, new_size, flags);
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001197 return (void *)p;
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001198 }
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001199
1200 ret = kmalloc_track_caller(new_size, flags);
1201 if (ret && p)
1202 memcpy(ret, p, ks);
1203
1204 return ret;
1205}
1206
1207/**
1208 * __krealloc - like krealloc() but don't free @p.
1209 * @p: object to reallocate memory for.
1210 * @new_size: how many bytes of memory are required.
1211 * @flags: the type of memory to allocate.
1212 *
1213 * This function is like krealloc() except it never frees the originally
1214 * allocated buffer. Use this if you don't want to free the buffer immediately
1215 * like, for example, with RCU.
1216 */
1217void *__krealloc(const void *p, size_t new_size, gfp_t flags)
1218{
1219 if (unlikely(!new_size))
1220 return ZERO_SIZE_PTR;
1221
1222 return __do_krealloc(p, new_size, flags);
1223
1224}
1225EXPORT_SYMBOL(__krealloc);
1226
1227/**
1228 * krealloc - reallocate memory. The contents will remain unchanged.
1229 * @p: object to reallocate memory for.
1230 * @new_size: how many bytes of memory are required.
1231 * @flags: the type of memory to allocate.
1232 *
1233 * The contents of the object pointed to are preserved up to the
1234 * lesser of the new and old sizes. If @p is %NULL, krealloc()
1235 * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a
1236 * %NULL pointer, the object pointed to is freed.
1237 */
1238void *krealloc(const void *p, size_t new_size, gfp_t flags)
1239{
1240 void *ret;
1241
1242 if (unlikely(!new_size)) {
1243 kfree(p);
1244 return ZERO_SIZE_PTR;
1245 }
1246
1247 ret = __do_krealloc(p, new_size, flags);
1248 if (ret && p != ret)
1249 kfree(p);
1250
1251 return ret;
1252}
1253EXPORT_SYMBOL(krealloc);
1254
1255/**
1256 * kzfree - like kfree but zero memory
1257 * @p: object to free memory of
1258 *
1259 * The memory of the object @p points to is zeroed before freed.
1260 * If @p is %NULL, kzfree() does nothing.
1261 *
1262 * Note: this function zeroes the whole allocated buffer which can be a good
1263 * deal bigger than the requested buffer size passed to kmalloc(). So be
1264 * careful when using this function in performance sensitive code.
1265 */
1266void kzfree(const void *p)
1267{
1268 size_t ks;
1269 void *mem = (void *)p;
1270
1271 if (unlikely(ZERO_OR_NULL_PTR(mem)))
1272 return;
1273 ks = ksize(mem);
1274 memset(mem, 0, ks);
1275 kfree(mem);
1276}
1277EXPORT_SYMBOL(kzfree);
1278
1279/* Tracepoints definitions. */
1280EXPORT_TRACEPOINT_SYMBOL(kmalloc);
1281EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc);
1282EXPORT_TRACEPOINT_SYMBOL(kmalloc_node);
1283EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc_node);
1284EXPORT_TRACEPOINT_SYMBOL(kfree);
1285EXPORT_TRACEPOINT_SYMBOL(kmem_cache_free);