blob: c3bbeddaeaaf8ca72a8106ed1be5d3ade39666bb [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
Tejun Heo657dc2f2017-02-22 15:41:14 -080033static LIST_HEAD(slab_caches_to_rcu_destroy);
34static void slab_caches_to_rcu_destroy_workfn(struct work_struct *work);
35static DECLARE_WORK(slab_caches_to_rcu_destroy_work,
36 slab_caches_to_rcu_destroy_workfn);
37
Joonsoo Kim07f361b2014-10-09 15:26:00 -070038/*
Joonsoo Kim423c9292014-10-09 15:26:22 -070039 * Set of flags that will prevent slab merging
40 */
41#define SLAB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
42 SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE | \
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070043 SLAB_FAILSLAB | SLAB_KASAN)
Joonsoo Kim423c9292014-10-09 15:26:22 -070044
Vladimir Davydov230e9fc2016-01-14 15:18:15 -080045#define SLAB_MERGE_SAME (SLAB_RECLAIM_ACCOUNT | SLAB_CACHE_DMA | \
46 SLAB_NOTRACK | SLAB_ACCOUNT)
Joonsoo Kim423c9292014-10-09 15:26:22 -070047
48/*
49 * Merge control. If this is set then no merging of slab caches will occur.
50 * (Could be removed. This was introduced to pacify the merge skeptics.)
51 */
52static int slab_nomerge;
53
54static int __init setup_slab_nomerge(char *str)
55{
56 slab_nomerge = 1;
57 return 1;
58}
59
60#ifdef CONFIG_SLUB
61__setup_param("slub_nomerge", slub_nomerge, setup_slab_nomerge, 0);
62#endif
63
64__setup("slab_nomerge", setup_slab_nomerge);
65
66/*
Joonsoo Kim07f361b2014-10-09 15:26:00 -070067 * Determine the size of a slab object
68 */
69unsigned int kmem_cache_size(struct kmem_cache *s)
70{
71 return s->object_size;
72}
73EXPORT_SYMBOL(kmem_cache_size);
74
Shuah Khan77be4b12012-08-16 00:09:46 -070075#ifdef CONFIG_DEBUG_VM
Vladimir Davydov794b1242014-04-07 15:39:26 -070076static int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -070077{
78 struct kmem_cache *s = NULL;
79
80 if (!name || in_interrupt() || size < sizeof(void *) ||
81 size > KMALLOC_MAX_SIZE) {
82 pr_err("kmem_cache_create(%s) integrity check failed\n", name);
83 return -EINVAL;
84 }
85
86 list_for_each_entry(s, &slab_caches, list) {
87 char tmp;
88 int res;
89
90 /*
91 * This happens when the module gets unloaded and doesn't
92 * destroy its slab cache and no-one else reuses the vmalloc
93 * area of the module. Print a warning.
94 */
95 res = probe_kernel_address(s->name, tmp);
96 if (res) {
97 pr_err("Slab cache with size %d has lost its name\n",
98 s->object_size);
99 continue;
100 }
Shuah Khan77be4b12012-08-16 00:09:46 -0700101 }
102
103 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
104 return 0;
105}
106#else
Vladimir Davydov794b1242014-04-07 15:39:26 -0700107static inline int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -0700108{
109 return 0;
110}
111#endif
112
Christoph Lameter484748f2015-09-04 15:45:34 -0700113void __kmem_cache_free_bulk(struct kmem_cache *s, size_t nr, void **p)
114{
115 size_t i;
116
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -0700117 for (i = 0; i < nr; i++) {
118 if (s)
119 kmem_cache_free(s, p[i]);
120 else
121 kfree(p[i]);
122 }
Christoph Lameter484748f2015-09-04 15:45:34 -0700123}
124
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800125int __kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t nr,
Christoph Lameter484748f2015-09-04 15:45:34 -0700126 void **p)
127{
128 size_t i;
129
130 for (i = 0; i < nr; i++) {
131 void *x = p[i] = kmem_cache_alloc(s, flags);
132 if (!x) {
133 __kmem_cache_free_bulk(s, i, p);
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800134 return 0;
Christoph Lameter484748f2015-09-04 15:45:34 -0700135 }
136 }
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800137 return i;
Christoph Lameter484748f2015-09-04 15:45:34 -0700138}
139
Johannes Weiner127424c2016-01-20 15:02:32 -0800140#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800141void slab_init_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700142{
Tejun Heo9eeadc82017-02-22 15:41:17 -0800143 s->memcg_params.root_cache = NULL;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800144 RCU_INIT_POINTER(s->memcg_params.memcg_caches, NULL);
Tejun Heo9eeadc82017-02-22 15:41:17 -0800145 INIT_LIST_HEAD(&s->memcg_params.children);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800146}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700147
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800148static int init_memcg_params(struct kmem_cache *s,
149 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
150{
151 struct memcg_cache_array *arr;
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700152
Tejun Heo9eeadc82017-02-22 15:41:17 -0800153 if (root_cache) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800154 s->memcg_params.root_cache = root_cache;
Tejun Heo9eeadc82017-02-22 15:41:17 -0800155 s->memcg_params.memcg = memcg;
156 INIT_LIST_HEAD(&s->memcg_params.children_node);
Tejun Heobc2791f2017-02-22 15:41:21 -0800157 INIT_LIST_HEAD(&s->memcg_params.kmem_caches_node);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800158 return 0;
159 }
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700160
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800161 slab_init_memcg_params(s);
162
163 if (!memcg_nr_cache_ids)
164 return 0;
165
166 arr = kzalloc(sizeof(struct memcg_cache_array) +
167 memcg_nr_cache_ids * sizeof(void *),
168 GFP_KERNEL);
169 if (!arr)
170 return -ENOMEM;
171
172 RCU_INIT_POINTER(s->memcg_params.memcg_caches, arr);
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700173 return 0;
174}
175
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800176static void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700177{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800178 if (is_root_cache(s))
179 kfree(rcu_access_pointer(s->memcg_params.memcg_caches));
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700180}
181
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800182static int update_memcg_params(struct kmem_cache *s, int new_array_size)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700183{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800184 struct memcg_cache_array *old, *new;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700185
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800186 if (!is_root_cache(s))
187 return 0;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700188
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800189 new = kzalloc(sizeof(struct memcg_cache_array) +
190 new_array_size * sizeof(void *), GFP_KERNEL);
191 if (!new)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700192 return -ENOMEM;
193
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800194 old = rcu_dereference_protected(s->memcg_params.memcg_caches,
195 lockdep_is_held(&slab_mutex));
196 if (old)
197 memcpy(new->entries, old->entries,
198 memcg_nr_cache_ids * sizeof(void *));
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700199
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800200 rcu_assign_pointer(s->memcg_params.memcg_caches, new);
201 if (old)
202 kfree_rcu(old, rcu);
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700203 return 0;
204}
205
Glauber Costa55007d82012-12-18 14:22:38 -0800206int memcg_update_all_caches(int num_memcgs)
207{
208 struct kmem_cache *s;
209 int ret = 0;
Glauber Costa55007d82012-12-18 14:22:38 -0800210
Vladimir Davydov05257a12015-02-12 14:59:01 -0800211 mutex_lock(&slab_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -0800212 list_for_each_entry(s, &slab_caches, list) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800213 ret = update_memcg_params(s, num_memcgs);
Glauber Costa55007d82012-12-18 14:22:38 -0800214 /*
Glauber Costa55007d82012-12-18 14:22:38 -0800215 * Instead of freeing the memory, we'll just leave the caches
216 * up to this point in an updated state.
217 */
218 if (ret)
Vladimir Davydov05257a12015-02-12 14:59:01 -0800219 break;
Glauber Costa55007d82012-12-18 14:22:38 -0800220 }
Glauber Costa55007d82012-12-18 14:22:38 -0800221 mutex_unlock(&slab_mutex);
222 return ret;
223}
Tejun Heo657dc2f2017-02-22 15:41:14 -0800224
225static void unlink_memcg_cache(struct kmem_cache *s)
226{
Tejun Heo9eeadc82017-02-22 15:41:17 -0800227 list_del(&s->memcg_params.children_node);
Tejun Heobc2791f2017-02-22 15:41:21 -0800228 list_del(&s->memcg_params.kmem_caches_node);
Tejun Heo657dc2f2017-02-22 15:41:14 -0800229}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700230#else
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800231static inline int init_memcg_params(struct kmem_cache *s,
232 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700233{
234 return 0;
235}
236
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800237static inline void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700238{
239}
Tejun Heo657dc2f2017-02-22 15:41:14 -0800240
241static inline void unlink_memcg_cache(struct kmem_cache *s)
242{
243}
Johannes Weiner127424c2016-01-20 15:02:32 -0800244#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Glauber Costa55007d82012-12-18 14:22:38 -0800245
Christoph Lameter039363f2012-07-06 15:25:10 -0500246/*
Joonsoo Kim423c9292014-10-09 15:26:22 -0700247 * Find a mergeable slab cache
248 */
249int slab_unmergeable(struct kmem_cache *s)
250{
251 if (slab_nomerge || (s->flags & SLAB_NEVER_MERGE))
252 return 1;
253
254 if (!is_root_cache(s))
255 return 1;
256
257 if (s->ctor)
258 return 1;
259
260 /*
261 * We may have set a slab to be unmergeable during bootstrap.
262 */
263 if (s->refcount < 0)
264 return 1;
265
266 return 0;
267}
268
269struct kmem_cache *find_mergeable(size_t size, size_t align,
270 unsigned long flags, const char *name, void (*ctor)(void *))
271{
272 struct kmem_cache *s;
273
Grygorii Maistrenkoc6e28892017-02-22 15:40:59 -0800274 if (slab_nomerge)
Joonsoo Kim423c9292014-10-09 15:26:22 -0700275 return NULL;
276
277 if (ctor)
278 return NULL;
279
280 size = ALIGN(size, sizeof(void *));
281 align = calculate_alignment(flags, align, size);
282 size = ALIGN(size, align);
283 flags = kmem_cache_flags(size, flags, name, NULL);
284
Grygorii Maistrenkoc6e28892017-02-22 15:40:59 -0800285 if (flags & SLAB_NEVER_MERGE)
286 return NULL;
287
Joonsoo Kim54362052014-12-10 15:42:18 -0800288 list_for_each_entry_reverse(s, &slab_caches, list) {
Joonsoo Kim423c9292014-10-09 15:26:22 -0700289 if (slab_unmergeable(s))
290 continue;
291
292 if (size > s->size)
293 continue;
294
295 if ((flags & SLAB_MERGE_SAME) != (s->flags & SLAB_MERGE_SAME))
296 continue;
297 /*
298 * Check if alignment is compatible.
299 * Courtesy of Adrian Drzewiecki
300 */
301 if ((s->size & ~(align - 1)) != s->size)
302 continue;
303
304 if (s->size - size >= sizeof(void *))
305 continue;
306
Joonsoo Kim95069ac82014-11-13 15:19:25 -0800307 if (IS_ENABLED(CONFIG_SLAB) && align &&
308 (align > s->align || s->align % align))
309 continue;
310
Joonsoo Kim423c9292014-10-09 15:26:22 -0700311 return s;
312 }
313 return NULL;
314}
315
316/*
Christoph Lameter45906852012-11-28 16:23:16 +0000317 * Figure out what the alignment of the objects will be given a set of
318 * flags, a user specified alignment and the size of the objects.
319 */
320unsigned long calculate_alignment(unsigned long flags,
321 unsigned long align, unsigned long size)
322{
323 /*
324 * If the user wants hardware cache aligned objects then follow that
325 * suggestion if the object is sufficiently large.
326 *
327 * The hardware cache alignment cannot override the specified
328 * alignment though. If that is greater then use it.
329 */
330 if (flags & SLAB_HWCACHE_ALIGN) {
331 unsigned long ralign = cache_line_size();
332 while (size <= ralign / 2)
333 ralign /= 2;
334 align = max(align, ralign);
335 }
336
337 if (align < ARCH_SLAB_MINALIGN)
338 align = ARCH_SLAB_MINALIGN;
339
340 return ALIGN(align, sizeof(void *));
341}
342
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800343static struct kmem_cache *create_cache(const char *name,
344 size_t object_size, size_t size, size_t align,
345 unsigned long flags, void (*ctor)(void *),
346 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700347{
348 struct kmem_cache *s;
349 int err;
350
351 err = -ENOMEM;
352 s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL);
353 if (!s)
354 goto out;
355
356 s->name = name;
357 s->object_size = object_size;
358 s->size = size;
359 s->align = align;
360 s->ctor = ctor;
361
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800362 err = init_memcg_params(s, memcg, root_cache);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700363 if (err)
364 goto out_free_cache;
365
366 err = __kmem_cache_create(s, flags);
367 if (err)
368 goto out_free_cache;
369
370 s->refcount = 1;
371 list_add(&s->list, &slab_caches);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700372out:
373 if (err)
374 return ERR_PTR(err);
375 return s;
376
377out_free_cache:
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800378 destroy_memcg_params(s);
Vaishali Thakkar7c4da062015-02-10 14:09:40 -0800379 kmem_cache_free(kmem_cache, s);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700380 goto out;
381}
Christoph Lameter45906852012-11-28 16:23:16 +0000382
383/*
Christoph Lameter039363f2012-07-06 15:25:10 -0500384 * kmem_cache_create - Create a cache.
385 * @name: A string which is used in /proc/slabinfo to identify this cache.
386 * @size: The size of objects to be created in this cache.
387 * @align: The required alignment for the objects.
388 * @flags: SLAB flags
389 * @ctor: A constructor for the objects.
390 *
391 * Returns a ptr to the cache on success, NULL on failure.
392 * Cannot be called within a interrupt, but can be interrupted.
393 * The @ctor is run when new pages are allocated by the cache.
394 *
395 * The flags are
396 *
397 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
398 * to catch references to uninitialised memory.
399 *
400 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
401 * for buffer overruns.
402 *
403 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
404 * cacheline. This can be beneficial if you're counting cycles as closely
405 * as davem.
406 */
Glauber Costa2633d7a2012-12-18 14:22:34 -0800407struct kmem_cache *
Vladimir Davydov794b1242014-04-07 15:39:26 -0700408kmem_cache_create(const char *name, size_t size, size_t align,
409 unsigned long flags, void (*ctor)(void *))
Christoph Lameter039363f2012-07-06 15:25:10 -0500410{
Alexandru Moise40911a72015-11-05 18:45:43 -0800411 struct kmem_cache *s = NULL;
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800412 const char *cache_name;
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800413 int err;
Christoph Lameter039363f2012-07-06 15:25:10 -0500414
Pekka Enbergb9205362012-08-16 10:12:18 +0300415 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700416 get_online_mems();
Vladimir Davydov05257a12015-02-12 14:59:01 -0800417 memcg_get_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700418
Pekka Enbergb9205362012-08-16 10:12:18 +0300419 mutex_lock(&slab_mutex);
Christoph Lameter686d5502012-09-05 00:20:33 +0000420
Vladimir Davydov794b1242014-04-07 15:39:26 -0700421 err = kmem_cache_sanity_check(name, size);
Andrew Morton3aa24f52014-10-09 15:25:58 -0700422 if (err) {
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800423 goto out_unlock;
Andrew Morton3aa24f52014-10-09 15:25:58 -0700424 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000425
Thomas Garniere70954f2016-12-12 16:41:38 -0800426 /* Refuse requests with allocator specific flags */
427 if (flags & ~SLAB_FLAGS_PERMITTED) {
428 err = -EINVAL;
429 goto out_unlock;
430 }
431
Glauber Costad8843922012-10-17 15:36:51 +0400432 /*
433 * Some allocators will constraint the set of valid flags to a subset
434 * of all flags. We expect them to define CACHE_CREATE_MASK in this
435 * case, and we'll just provide them with a sanitized version of the
436 * passed flags.
437 */
438 flags &= CACHE_CREATE_MASK;
Christoph Lameter686d5502012-09-05 00:20:33 +0000439
Vladimir Davydov794b1242014-04-07 15:39:26 -0700440 s = __kmem_cache_alias(name, size, align, flags, ctor);
441 if (s)
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800442 goto out_unlock;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800443
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800444 cache_name = kstrdup_const(name, GFP_KERNEL);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700445 if (!cache_name) {
446 err = -ENOMEM;
447 goto out_unlock;
448 }
Glauber Costa2633d7a2012-12-18 14:22:34 -0800449
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800450 s = create_cache(cache_name, size, size,
451 calculate_alignment(flags, align, size),
452 flags, ctor, NULL, NULL);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700453 if (IS_ERR(s)) {
454 err = PTR_ERR(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800455 kfree_const(cache_name);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700456 }
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800457
458out_unlock:
Christoph Lameter20cea962012-07-06 15:25:13 -0500459 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700460
Vladimir Davydov05257a12015-02-12 14:59:01 -0800461 memcg_put_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700462 put_online_mems();
Christoph Lameter20cea962012-07-06 15:25:13 -0500463 put_online_cpus();
464
Dave Jonesba3253c2014-01-29 14:05:48 -0800465 if (err) {
Christoph Lameter686d5502012-09-05 00:20:33 +0000466 if (flags & SLAB_PANIC)
467 panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n",
468 name, err);
469 else {
Joe Perches11705322016-03-17 14:19:50 -0700470 pr_warn("kmem_cache_create(%s) failed with error %d\n",
Christoph Lameter686d5502012-09-05 00:20:33 +0000471 name, err);
472 dump_stack();
473 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000474 return NULL;
475 }
Christoph Lameter039363f2012-07-06 15:25:10 -0500476 return s;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800477}
Christoph Lameter039363f2012-07-06 15:25:10 -0500478EXPORT_SYMBOL(kmem_cache_create);
Christoph Lameter97d06602012-07-06 15:25:11 -0500479
Tejun Heo657dc2f2017-02-22 15:41:14 -0800480static void slab_caches_to_rcu_destroy_workfn(struct work_struct *work)
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800481{
Tejun Heo657dc2f2017-02-22 15:41:14 -0800482 LIST_HEAD(to_destroy);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800483 struct kmem_cache *s, *s2;
484
Tejun Heo657dc2f2017-02-22 15:41:14 -0800485 /*
486 * On destruction, SLAB_DESTROY_BY_RCU kmem_caches are put on the
487 * @slab_caches_to_rcu_destroy list. The slab pages are freed
488 * through RCU and and the associated kmem_cache are dereferenced
489 * while freeing the pages, so the kmem_caches should be freed only
490 * after the pending RCU operations are finished. As rcu_barrier()
491 * is a pretty slow operation, we batch all pending destructions
492 * asynchronously.
493 */
494 mutex_lock(&slab_mutex);
495 list_splice_init(&slab_caches_to_rcu_destroy, &to_destroy);
496 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800497
Tejun Heo657dc2f2017-02-22 15:41:14 -0800498 if (list_empty(&to_destroy))
499 return;
500
501 rcu_barrier();
502
503 list_for_each_entry_safe(s, s2, &to_destroy, list) {
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800504#ifdef SLAB_SUPPORTS_SYSFS
Tejun Heobf5eb3d2017-02-22 15:41:11 -0800505 sysfs_slab_release(s);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800506#else
507 slab_kmem_cache_release(s);
508#endif
509 }
510}
511
Tejun Heo657dc2f2017-02-22 15:41:14 -0800512static int shutdown_cache(struct kmem_cache *s)
513{
514 if (__kmem_cache_shutdown(s) != 0)
515 return -EBUSY;
516
517 list_del(&s->list);
518 if (!is_root_cache(s))
519 unlink_memcg_cache(s);
520
521 if (s->flags & SLAB_DESTROY_BY_RCU) {
522 list_add_tail(&s->list, &slab_caches_to_rcu_destroy);
523 schedule_work(&slab_caches_to_rcu_destroy_work);
524 } else {
525#ifdef SLAB_SUPPORTS_SYSFS
526 sysfs_slab_release(s);
527#else
528 slab_kmem_cache_release(s);
529#endif
530 }
531
532 return 0;
533}
534
Johannes Weiner127424c2016-01-20 15:02:32 -0800535#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700536/*
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700537 * memcg_create_kmem_cache - Create a cache for a memory cgroup.
Vladimir Davydov794b1242014-04-07 15:39:26 -0700538 * @memcg: The memory cgroup the new cache is for.
539 * @root_cache: The parent of the new cache.
540 *
541 * This function attempts to create a kmem cache that will serve allocation
542 * requests going from @memcg to @root_cache. The new cache inherits properties
543 * from its parent.
544 */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800545void memcg_create_kmem_cache(struct mem_cgroup *memcg,
546 struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700547{
Vladimir Davydov3e0350a2015-02-10 14:11:44 -0800548 static char memcg_name_buf[NAME_MAX + 1]; /* protected by slab_mutex */
Michal Hocko33398cf2015-09-08 15:01:02 -0700549 struct cgroup_subsys_state *css = &memcg->css;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800550 struct memcg_cache_array *arr;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700551 struct kmem_cache *s = NULL;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700552 char *cache_name;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800553 int idx;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700554
555 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700556 get_online_mems();
557
Vladimir Davydov794b1242014-04-07 15:39:26 -0700558 mutex_lock(&slab_mutex);
559
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800560 /*
Johannes Weiner567e9ab2016-01-20 15:02:24 -0800561 * The memory cgroup could have been offlined while the cache
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800562 * creation work was pending.
563 */
Vladimir Davydovb6ecd2d2016-03-17 14:18:33 -0700564 if (memcg->kmem_state != KMEM_ONLINE)
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800565 goto out_unlock;
566
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800567 idx = memcg_cache_id(memcg);
568 arr = rcu_dereference_protected(root_cache->memcg_params.memcg_caches,
569 lockdep_is_held(&slab_mutex));
570
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800571 /*
572 * Since per-memcg caches are created asynchronously on first
573 * allocation (see memcg_kmem_get_cache()), several threads can try to
574 * create the same cache, but only one of them may succeed.
575 */
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800576 if (arr->entries[idx])
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800577 goto out_unlock;
578
Vladimir Davydovf1008362015-02-12 14:59:29 -0800579 cgroup_name(css->cgroup, memcg_name_buf, sizeof(memcg_name_buf));
Johannes Weiner73f576c2016-07-20 15:44:57 -0700580 cache_name = kasprintf(GFP_KERNEL, "%s(%llu:%s)", root_cache->name,
581 css->serial_nr, memcg_name_buf);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700582 if (!cache_name)
583 goto out_unlock;
584
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800585 s = create_cache(cache_name, root_cache->object_size,
586 root_cache->size, root_cache->align,
Greg Thelenf773e362016-11-10 10:46:41 -0800587 root_cache->flags & CACHE_CREATE_MASK,
588 root_cache->ctor, memcg, root_cache);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800589 /*
590 * If we could not create a memcg cache, do not complain, because
591 * that's not critical at all as we can always proceed with the root
592 * cache.
593 */
Vladimir Davydovbd673142014-06-04 16:07:40 -0700594 if (IS_ERR(s)) {
Vladimir Davydov794b1242014-04-07 15:39:26 -0700595 kfree(cache_name);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800596 goto out_unlock;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700597 }
Vladimir Davydov794b1242014-04-07 15:39:26 -0700598
Tejun Heo9eeadc82017-02-22 15:41:17 -0800599 list_add(&s->memcg_params.children_node,
600 &root_cache->memcg_params.children);
Tejun Heobc2791f2017-02-22 15:41:21 -0800601 list_add(&s->memcg_params.kmem_caches_node, &memcg->kmem_caches);
Vladimir Davydov426589f2015-02-12 14:59:23 -0800602
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800603 /*
604 * Since readers won't lock (see cache_from_memcg_idx()), we need a
605 * barrier here to ensure nobody will see the kmem_cache partially
606 * initialized.
607 */
608 smp_wmb();
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800609 arr->entries[idx] = s;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800610
Vladimir Davydov794b1242014-04-07 15:39:26 -0700611out_unlock:
612 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700613
614 put_online_mems();
Vladimir Davydov794b1242014-04-07 15:39:26 -0700615 put_online_cpus();
616}
Vladimir Davydovb8529902014-04-07 15:39:28 -0700617
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800618void memcg_deactivate_kmem_caches(struct mem_cgroup *memcg)
619{
620 int idx;
621 struct memcg_cache_array *arr;
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800622 struct kmem_cache *s, *c;
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800623
624 idx = memcg_cache_id(memcg);
625
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800626 get_online_cpus();
627 get_online_mems();
628
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800629 mutex_lock(&slab_mutex);
630 list_for_each_entry(s, &slab_caches, list) {
631 if (!is_root_cache(s))
632 continue;
633
634 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
635 lockdep_is_held(&slab_mutex));
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800636 c = arr->entries[idx];
637 if (!c)
638 continue;
639
Tejun Heo290b6a52017-02-22 15:41:08 -0800640 __kmem_cache_shrink(c, true);
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800641 arr->entries[idx] = NULL;
642 }
643 mutex_unlock(&slab_mutex);
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800644
645 put_online_mems();
646 put_online_cpus();
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800647}
648
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800649void memcg_destroy_kmem_caches(struct mem_cgroup *memcg)
Vladimir Davydovb8529902014-04-07 15:39:28 -0700650{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800651 struct kmem_cache *s, *s2;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700652
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800653 get_online_cpus();
654 get_online_mems();
Vladimir Davydovb8529902014-04-07 15:39:28 -0700655
Vladimir Davydovb8529902014-04-07 15:39:28 -0700656 mutex_lock(&slab_mutex);
Tejun Heobc2791f2017-02-22 15:41:21 -0800657 list_for_each_entry_safe(s, s2, &memcg->kmem_caches,
658 memcg_params.kmem_caches_node) {
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800659 /*
660 * The cgroup is about to be freed and therefore has no charges
661 * left. Hence, all its caches must be empty by now.
662 */
Tejun Heo657dc2f2017-02-22 15:41:14 -0800663 BUG_ON(shutdown_cache(s));
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800664 }
665 mutex_unlock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700666
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800667 put_online_mems();
668 put_online_cpus();
Vladimir Davydovb8529902014-04-07 15:39:28 -0700669}
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800670
Tejun Heo657dc2f2017-02-22 15:41:14 -0800671static int shutdown_memcg_caches(struct kmem_cache *s)
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800672{
673 struct memcg_cache_array *arr;
674 struct kmem_cache *c, *c2;
675 LIST_HEAD(busy);
676 int i;
677
678 BUG_ON(!is_root_cache(s));
679
680 /*
681 * First, shutdown active caches, i.e. caches that belong to online
682 * memory cgroups.
683 */
684 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
685 lockdep_is_held(&slab_mutex));
686 for_each_memcg_cache_index(i) {
687 c = arr->entries[i];
688 if (!c)
689 continue;
Tejun Heo657dc2f2017-02-22 15:41:14 -0800690 if (shutdown_cache(c))
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800691 /*
692 * The cache still has objects. Move it to a temporary
693 * list so as not to try to destroy it for a second
694 * time while iterating over inactive caches below.
695 */
Tejun Heo9eeadc82017-02-22 15:41:17 -0800696 list_move(&c->memcg_params.children_node, &busy);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800697 else
698 /*
699 * The cache is empty and will be destroyed soon. Clear
700 * the pointer to it in the memcg_caches array so that
701 * it will never be accessed even if the root cache
702 * stays alive.
703 */
704 arr->entries[i] = NULL;
705 }
706
707 /*
708 * Second, shutdown all caches left from memory cgroups that are now
709 * offline.
710 */
Tejun Heo9eeadc82017-02-22 15:41:17 -0800711 list_for_each_entry_safe(c, c2, &s->memcg_params.children,
712 memcg_params.children_node)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800713 shutdown_cache(c);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800714
Tejun Heo9eeadc82017-02-22 15:41:17 -0800715 list_splice(&busy, &s->memcg_params.children);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800716
717 /*
718 * A cache being destroyed must be empty. In particular, this means
719 * that all per memcg caches attached to it must be empty too.
720 */
Tejun Heo9eeadc82017-02-22 15:41:17 -0800721 if (!list_empty(&s->memcg_params.children))
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800722 return -EBUSY;
723 return 0;
724}
725#else
Tejun Heo657dc2f2017-02-22 15:41:14 -0800726static inline int shutdown_memcg_caches(struct kmem_cache *s)
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800727{
728 return 0;
729}
Johannes Weiner127424c2016-01-20 15:02:32 -0800730#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Vladimir Davydov794b1242014-04-07 15:39:26 -0700731
Christoph Lameter41a21282014-05-06 12:50:08 -0700732void slab_kmem_cache_release(struct kmem_cache *s)
733{
Dmitry Safonov52b4b952016-02-17 13:11:37 -0800734 __kmem_cache_release(s);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800735 destroy_memcg_params(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800736 kfree_const(s->name);
Christoph Lameter41a21282014-05-06 12:50:08 -0700737 kmem_cache_free(kmem_cache, s);
738}
739
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000740void kmem_cache_destroy(struct kmem_cache *s)
741{
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800742 int err;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800743
Sergey Senozhatsky3942d292015-09-08 15:00:50 -0700744 if (unlikely(!s))
745 return;
746
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000747 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700748 get_online_mems();
749
Alexander Potapenko55834c52016-05-20 16:59:11 -0700750 kasan_cache_destroy(s);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000751 mutex_lock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700752
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000753 s->refcount--;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700754 if (s->refcount)
755 goto out_unlock;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000756
Tejun Heo657dc2f2017-02-22 15:41:14 -0800757 err = shutdown_memcg_caches(s);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800758 if (!err)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800759 err = shutdown_cache(s);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700760
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800761 if (err) {
Joe Perches756a0252016-03-17 14:19:47 -0700762 pr_err("kmem_cache_destroy %s: Slab cache still has objects\n",
763 s->name);
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800764 dump_stack();
765 }
Vladimir Davydovb8529902014-04-07 15:39:28 -0700766out_unlock:
767 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800768
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700769 put_online_mems();
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000770 put_online_cpus();
771}
772EXPORT_SYMBOL(kmem_cache_destroy);
773
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700774/**
775 * kmem_cache_shrink - Shrink a cache.
776 * @cachep: The cache to shrink.
777 *
778 * Releases as many slabs as possible for a cache.
779 * To help debugging, a zero exit status indicates all slabs were released.
780 */
781int kmem_cache_shrink(struct kmem_cache *cachep)
782{
783 int ret;
784
785 get_online_cpus();
786 get_online_mems();
Alexander Potapenko55834c52016-05-20 16:59:11 -0700787 kasan_cache_shrink(cachep);
Tejun Heo290b6a52017-02-22 15:41:08 -0800788 ret = __kmem_cache_shrink(cachep, false);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700789 put_online_mems();
790 put_online_cpus();
791 return ret;
792}
793EXPORT_SYMBOL(kmem_cache_shrink);
794
Denis Kirjanovfda90122015-11-05 18:44:59 -0800795bool slab_is_available(void)
Christoph Lameter97d06602012-07-06 15:25:11 -0500796{
797 return slab_state >= UP;
798}
Glauber Costab7454ad2012-10-19 18:20:25 +0400799
Christoph Lameter45530c42012-11-28 16:23:07 +0000800#ifndef CONFIG_SLOB
801/* Create a cache during boot when no slab services are available yet */
802void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t size,
803 unsigned long flags)
804{
805 int err;
806
807 s->name = name;
808 s->size = s->object_size = size;
Christoph Lameter45906852012-11-28 16:23:16 +0000809 s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800810
811 slab_init_memcg_params(s);
812
Christoph Lameter45530c42012-11-28 16:23:07 +0000813 err = __kmem_cache_create(s, flags);
814
815 if (err)
Christoph Lameter31ba7342013-01-10 19:00:53 +0000816 panic("Creation of kmalloc slab %s size=%zu failed. Reason %d\n",
Christoph Lameter45530c42012-11-28 16:23:07 +0000817 name, size, err);
818
819 s->refcount = -1; /* Exempt from merging for now */
820}
821
822struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size,
823 unsigned long flags)
824{
825 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
826
827 if (!s)
828 panic("Out of memory when creating slab %s\n", name);
829
830 create_boot_cache(s, name, size, flags);
831 list_add(&s->list, &slab_caches);
832 s->refcount = 1;
833 return s;
834}
835
Christoph Lameter9425c582013-01-10 19:12:17 +0000836struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
837EXPORT_SYMBOL(kmalloc_caches);
838
839#ifdef CONFIG_ZONE_DMA
840struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1];
841EXPORT_SYMBOL(kmalloc_dma_caches);
842#endif
843
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000844/*
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000845 * Conversion table for small slabs sizes / 8 to the index in the
846 * kmalloc array. This is necessary for slabs < 192 since we have non power
847 * of two cache sizes there. The size of larger slabs can be determined using
848 * fls.
849 */
850static s8 size_index[24] = {
851 3, /* 8 */
852 4, /* 16 */
853 5, /* 24 */
854 5, /* 32 */
855 6, /* 40 */
856 6, /* 48 */
857 6, /* 56 */
858 6, /* 64 */
859 1, /* 72 */
860 1, /* 80 */
861 1, /* 88 */
862 1, /* 96 */
863 7, /* 104 */
864 7, /* 112 */
865 7, /* 120 */
866 7, /* 128 */
867 2, /* 136 */
868 2, /* 144 */
869 2, /* 152 */
870 2, /* 160 */
871 2, /* 168 */
872 2, /* 176 */
873 2, /* 184 */
874 2 /* 192 */
875};
876
877static inline int size_index_elem(size_t bytes)
878{
879 return (bytes - 1) / 8;
880}
881
882/*
883 * Find the kmem_cache structure that serves a given size of
884 * allocation
885 */
886struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags)
887{
888 int index;
889
Joonsoo Kim9de1bc82013-08-02 11:02:42 +0900890 if (unlikely(size > KMALLOC_MAX_SIZE)) {
Sasha Levin907985f2013-06-10 15:18:00 -0400891 WARN_ON_ONCE(!(flags & __GFP_NOWARN));
Christoph Lameter6286ae92013-05-03 15:43:18 +0000892 return NULL;
Sasha Levin907985f2013-06-10 15:18:00 -0400893 }
Christoph Lameter6286ae92013-05-03 15:43:18 +0000894
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000895 if (size <= 192) {
896 if (!size)
897 return ZERO_SIZE_PTR;
898
899 index = size_index[size_index_elem(size)];
900 } else
901 index = fls(size - 1);
902
903#ifdef CONFIG_ZONE_DMA
Joonsoo Kimb1e05412013-02-04 23:46:46 +0900904 if (unlikely((flags & GFP_DMA)))
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000905 return kmalloc_dma_caches[index];
906
907#endif
908 return kmalloc_caches[index];
909}
910
911/*
Gavin Guo4066c332015-06-24 16:55:54 -0700912 * kmalloc_info[] is to make slub_debug=,kmalloc-xx option work at boot time.
913 * kmalloc_index() supports up to 2^26=64MB, so the final entry of the table is
914 * kmalloc-67108864.
915 */
Vlastimil Babkaaf3b5f82017-02-22 15:41:05 -0800916const struct kmalloc_info_struct kmalloc_info[] __initconst = {
Gavin Guo4066c332015-06-24 16:55:54 -0700917 {NULL, 0}, {"kmalloc-96", 96},
918 {"kmalloc-192", 192}, {"kmalloc-8", 8},
919 {"kmalloc-16", 16}, {"kmalloc-32", 32},
920 {"kmalloc-64", 64}, {"kmalloc-128", 128},
921 {"kmalloc-256", 256}, {"kmalloc-512", 512},
922 {"kmalloc-1024", 1024}, {"kmalloc-2048", 2048},
923 {"kmalloc-4096", 4096}, {"kmalloc-8192", 8192},
924 {"kmalloc-16384", 16384}, {"kmalloc-32768", 32768},
925 {"kmalloc-65536", 65536}, {"kmalloc-131072", 131072},
926 {"kmalloc-262144", 262144}, {"kmalloc-524288", 524288},
927 {"kmalloc-1048576", 1048576}, {"kmalloc-2097152", 2097152},
928 {"kmalloc-4194304", 4194304}, {"kmalloc-8388608", 8388608},
929 {"kmalloc-16777216", 16777216}, {"kmalloc-33554432", 33554432},
930 {"kmalloc-67108864", 67108864}
931};
932
933/*
Daniel Sanders34cc6992015-06-24 16:55:57 -0700934 * Patch up the size_index table if we have strange large alignment
935 * requirements for the kmalloc array. This is only the case for
936 * MIPS it seems. The standard arches will not generate any code here.
937 *
938 * Largest permitted alignment is 256 bytes due to the way we
939 * handle the index determination for the smaller caches.
940 *
941 * Make sure that nothing crazy happens if someone starts tinkering
942 * around with ARCH_KMALLOC_MINALIGN
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000943 */
Daniel Sanders34cc6992015-06-24 16:55:57 -0700944void __init setup_kmalloc_cache_index_table(void)
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000945{
946 int i;
947
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000948 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
949 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
950
951 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
952 int elem = size_index_elem(i);
953
954 if (elem >= ARRAY_SIZE(size_index))
955 break;
956 size_index[elem] = KMALLOC_SHIFT_LOW;
957 }
958
959 if (KMALLOC_MIN_SIZE >= 64) {
960 /*
961 * The 96 byte size cache is not used if the alignment
962 * is 64 byte.
963 */
964 for (i = 64 + 8; i <= 96; i += 8)
965 size_index[size_index_elem(i)] = 7;
966
967 }
968
969 if (KMALLOC_MIN_SIZE >= 128) {
970 /*
971 * The 192 byte sized cache is not used if the alignment
972 * is 128 byte. Redirect kmalloc to use the 256 byte cache
973 * instead.
974 */
975 for (i = 128 + 8; i <= 192; i += 8)
976 size_index[size_index_elem(i)] = 8;
977 }
Daniel Sanders34cc6992015-06-24 16:55:57 -0700978}
979
Christoph Lameterae6f2462015-06-30 09:01:11 -0500980static void __init new_kmalloc_cache(int idx, unsigned long flags)
Christoph Lametera9730fc2015-06-29 09:28:08 -0500981{
982 kmalloc_caches[idx] = create_kmalloc_cache(kmalloc_info[idx].name,
983 kmalloc_info[idx].size, flags);
984}
985
Daniel Sanders34cc6992015-06-24 16:55:57 -0700986/*
987 * Create the kmalloc array. Some of the regular kmalloc arrays
988 * may already have been created because they were needed to
989 * enable allocations for slab creation.
990 */
991void __init create_kmalloc_caches(unsigned long flags)
992{
993 int i;
994
Christoph Lametera9730fc2015-06-29 09:28:08 -0500995 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
996 if (!kmalloc_caches[i])
997 new_kmalloc_cache(i, flags);
Chris Mason956e46e2013-05-08 15:56:28 -0400998
999 /*
Christoph Lametera9730fc2015-06-29 09:28:08 -05001000 * Caches that are not of the two-to-the-power-of size.
1001 * These have to be created immediately after the
1002 * earlier power of two caches
Chris Mason956e46e2013-05-08 15:56:28 -04001003 */
Christoph Lametera9730fc2015-06-29 09:28:08 -05001004 if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[1] && i == 6)
1005 new_kmalloc_cache(1, flags);
1006 if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[2] && i == 7)
1007 new_kmalloc_cache(2, flags);
Christoph Lameter8a965b32013-05-03 18:04:18 +00001008 }
1009
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001010 /* Kmalloc array is now usable */
1011 slab_state = UP;
1012
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001013#ifdef CONFIG_ZONE_DMA
1014 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
1015 struct kmem_cache *s = kmalloc_caches[i];
1016
1017 if (s) {
1018 int size = kmalloc_size(i);
1019 char *n = kasprintf(GFP_NOWAIT,
1020 "dma-kmalloc-%d", size);
1021
1022 BUG_ON(!n);
1023 kmalloc_dma_caches[i] = create_kmalloc_cache(n,
1024 size, SLAB_CACHE_DMA | flags);
1025 }
1026 }
1027#endif
1028}
Christoph Lameter45530c42012-11-28 16:23:07 +00001029#endif /* !CONFIG_SLOB */
1030
Vladimir Davydovcea371f2014-06-04 16:07:04 -07001031/*
1032 * To avoid unnecessary overhead, we pass through large allocation requests
1033 * directly to the page allocator. We use __GFP_COMP, because we will need to
1034 * know the allocation order to free the pages properly in kfree.
1035 */
Vladimir Davydov52383432014-06-04 16:06:39 -07001036void *kmalloc_order(size_t size, gfp_t flags, unsigned int order)
1037{
1038 void *ret;
1039 struct page *page;
1040
1041 flags |= __GFP_COMP;
Vladimir Davydov49491482016-07-26 15:24:24 -07001042 page = alloc_pages(flags, order);
Vladimir Davydov52383432014-06-04 16:06:39 -07001043 ret = page ? page_address(page) : NULL;
1044 kmemleak_alloc(ret, size, 1, flags);
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07001045 kasan_kmalloc_large(ret, size, flags);
Vladimir Davydov52383432014-06-04 16:06:39 -07001046 return ret;
1047}
1048EXPORT_SYMBOL(kmalloc_order);
1049
Christoph Lameterf1b6eb62013-09-04 16:35:34 +00001050#ifdef CONFIG_TRACING
1051void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
1052{
1053 void *ret = kmalloc_order(size, flags, order);
1054 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
1055 return ret;
1056}
1057EXPORT_SYMBOL(kmalloc_order_trace);
1058#endif
Christoph Lameter45530c42012-11-28 16:23:07 +00001059
Thomas Garnier7c00fce2016-07-26 15:21:56 -07001060#ifdef CONFIG_SLAB_FREELIST_RANDOM
1061/* Randomize a generic freelist */
1062static void freelist_randomize(struct rnd_state *state, unsigned int *list,
1063 size_t count)
1064{
1065 size_t i;
1066 unsigned int rand;
1067
1068 for (i = 0; i < count; i++)
1069 list[i] = i;
1070
1071 /* Fisher-Yates shuffle */
1072 for (i = count - 1; i > 0; i--) {
1073 rand = prandom_u32_state(state);
1074 rand %= (i + 1);
1075 swap(list[i], list[rand]);
1076 }
1077}
1078
1079/* Create a random sequence per cache */
1080int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count,
1081 gfp_t gfp)
1082{
1083 struct rnd_state state;
1084
1085 if (count < 2 || cachep->random_seq)
1086 return 0;
1087
1088 cachep->random_seq = kcalloc(count, sizeof(unsigned int), gfp);
1089 if (!cachep->random_seq)
1090 return -ENOMEM;
1091
1092 /* Get best entropy at this stage of boot */
1093 prandom_seed_state(&state, get_random_long());
1094
1095 freelist_randomize(&state, cachep->random_seq, count);
1096 return 0;
1097}
1098
1099/* Destroy the per-cache random freelist sequence */
1100void cache_random_seq_destroy(struct kmem_cache *cachep)
1101{
1102 kfree(cachep->random_seq);
1103 cachep->random_seq = NULL;
1104}
1105#endif /* CONFIG_SLAB_FREELIST_RANDOM */
1106
Glauber Costab7454ad2012-10-19 18:20:25 +04001107#ifdef CONFIG_SLABINFO
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001108
1109#ifdef CONFIG_SLAB
1110#define SLABINFO_RIGHTS (S_IWUSR | S_IRUSR)
1111#else
1112#define SLABINFO_RIGHTS S_IRUSR
1113#endif
1114
Vladimir Davydovb0475012014-12-10 15:44:19 -08001115static void print_slabinfo_header(struct seq_file *m)
Glauber Costabcee6e22012-10-19 18:20:26 +04001116{
1117 /*
1118 * Output format version, so at least we can change it
1119 * without _too_ many complaints.
1120 */
1121#ifdef CONFIG_DEBUG_SLAB
1122 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
1123#else
1124 seq_puts(m, "slabinfo - version: 2.1\n");
1125#endif
Joe Perches756a0252016-03-17 14:19:47 -07001126 seq_puts(m, "# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab>");
Glauber Costabcee6e22012-10-19 18:20:26 +04001127 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
1128 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
1129#ifdef CONFIG_DEBUG_SLAB
Joe Perches756a0252016-03-17 14:19:47 -07001130 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> <error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Glauber Costabcee6e22012-10-19 18:20:26 +04001131 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
1132#endif
1133 seq_putc(m, '\n');
1134}
1135
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001136void *slab_start(struct seq_file *m, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +04001137{
Glauber Costab7454ad2012-10-19 18:20:25 +04001138 mutex_lock(&slab_mutex);
Glauber Costab7454ad2012-10-19 18:20:25 +04001139 return seq_list_start(&slab_caches, *pos);
1140}
1141
Wanpeng Li276a2432013-07-08 08:08:28 +08001142void *slab_next(struct seq_file *m, void *p, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +04001143{
1144 return seq_list_next(p, &slab_caches, pos);
1145}
1146
Wanpeng Li276a2432013-07-08 08:08:28 +08001147void slab_stop(struct seq_file *m, void *p)
Glauber Costab7454ad2012-10-19 18:20:25 +04001148{
1149 mutex_unlock(&slab_mutex);
1150}
1151
Glauber Costa749c5412012-12-18 14:23:01 -08001152static void
1153memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
Glauber Costab7454ad2012-10-19 18:20:25 +04001154{
Glauber Costa749c5412012-12-18 14:23:01 -08001155 struct kmem_cache *c;
1156 struct slabinfo sinfo;
Glauber Costa749c5412012-12-18 14:23:01 -08001157
1158 if (!is_root_cache(s))
1159 return;
1160
Vladimir Davydov426589f2015-02-12 14:59:23 -08001161 for_each_memcg_cache(c, s) {
Glauber Costa749c5412012-12-18 14:23:01 -08001162 memset(&sinfo, 0, sizeof(sinfo));
1163 get_slabinfo(c, &sinfo);
1164
1165 info->active_slabs += sinfo.active_slabs;
1166 info->num_slabs += sinfo.num_slabs;
1167 info->shared_avail += sinfo.shared_avail;
1168 info->active_objs += sinfo.active_objs;
1169 info->num_objs += sinfo.num_objs;
1170 }
1171}
1172
Vladimir Davydovb0475012014-12-10 15:44:19 -08001173static void cache_show(struct kmem_cache *s, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08001174{
Glauber Costa0d7561c2012-10-19 18:20:27 +04001175 struct slabinfo sinfo;
1176
1177 memset(&sinfo, 0, sizeof(sinfo));
1178 get_slabinfo(s, &sinfo);
1179
Glauber Costa749c5412012-12-18 14:23:01 -08001180 memcg_accumulate_slabinfo(s, &sinfo);
1181
Glauber Costa0d7561c2012-10-19 18:20:27 +04001182 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Glauber Costa749c5412012-12-18 14:23:01 -08001183 cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size,
Glauber Costa0d7561c2012-10-19 18:20:27 +04001184 sinfo.objects_per_slab, (1 << sinfo.cache_order));
1185
1186 seq_printf(m, " : tunables %4u %4u %4u",
1187 sinfo.limit, sinfo.batchcount, sinfo.shared);
1188 seq_printf(m, " : slabdata %6lu %6lu %6lu",
1189 sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
1190 slabinfo_show_stats(m, s);
1191 seq_putc(m, '\n');
Glauber Costab7454ad2012-10-19 18:20:25 +04001192}
1193
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001194static int slab_show(struct seq_file *m, void *p)
Glauber Costa749c5412012-12-18 14:23:01 -08001195{
1196 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
1197
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001198 if (p == slab_caches.next)
1199 print_slabinfo_header(m);
Vladimir Davydovb0475012014-12-10 15:44:19 -08001200 if (is_root_cache(s))
1201 cache_show(s, m);
1202 return 0;
Glauber Costa749c5412012-12-18 14:23:01 -08001203}
1204
Johannes Weiner127424c2016-01-20 15:02:32 -08001205#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Tejun Heobc2791f2017-02-22 15:41:21 -08001206void *memcg_slab_start(struct seq_file *m, loff_t *pos)
Vladimir Davydovb0475012014-12-10 15:44:19 -08001207{
Vladimir Davydovb0475012014-12-10 15:44:19 -08001208 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1209
Tejun Heobc2791f2017-02-22 15:41:21 -08001210 mutex_lock(&slab_mutex);
1211 return seq_list_start(&memcg->kmem_caches, *pos);
1212}
1213
1214void *memcg_slab_next(struct seq_file *m, void *p, loff_t *pos)
1215{
1216 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1217
1218 return seq_list_next(p, &memcg->kmem_caches, pos);
1219}
1220
1221void memcg_slab_stop(struct seq_file *m, void *p)
1222{
1223 mutex_unlock(&slab_mutex);
1224}
1225
1226int memcg_slab_show(struct seq_file *m, void *p)
1227{
1228 struct kmem_cache *s = list_entry(p, struct kmem_cache,
1229 memcg_params.kmem_caches_node);
1230 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1231
1232 if (p == memcg->kmem_caches.next)
Vladimir Davydovb0475012014-12-10 15:44:19 -08001233 print_slabinfo_header(m);
Tejun Heobc2791f2017-02-22 15:41:21 -08001234 cache_show(s, m);
Vladimir Davydovb0475012014-12-10 15:44:19 -08001235 return 0;
1236}
1237#endif
1238
Glauber Costab7454ad2012-10-19 18:20:25 +04001239/*
1240 * slabinfo_op - iterator that generates /proc/slabinfo
1241 *
1242 * Output layout:
1243 * cache-name
1244 * num-active-objs
1245 * total-objs
1246 * object size
1247 * num-active-slabs
1248 * total-slabs
1249 * num-pages-per-slab
1250 * + further values on SMP and with statistics enabled
1251 */
1252static const struct seq_operations slabinfo_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001253 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08001254 .next = slab_next,
1255 .stop = slab_stop,
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001256 .show = slab_show,
Glauber Costab7454ad2012-10-19 18:20:25 +04001257};
1258
1259static int slabinfo_open(struct inode *inode, struct file *file)
1260{
1261 return seq_open(file, &slabinfo_op);
1262}
1263
1264static const struct file_operations proc_slabinfo_operations = {
1265 .open = slabinfo_open,
1266 .read = seq_read,
1267 .write = slabinfo_write,
1268 .llseek = seq_lseek,
1269 .release = seq_release,
1270};
1271
1272static int __init slab_proc_init(void)
1273{
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001274 proc_create("slabinfo", SLABINFO_RIGHTS, NULL,
1275 &proc_slabinfo_operations);
Glauber Costab7454ad2012-10-19 18:20:25 +04001276 return 0;
1277}
1278module_init(slab_proc_init);
1279#endif /* CONFIG_SLABINFO */
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001280
1281static __always_inline void *__do_krealloc(const void *p, size_t new_size,
1282 gfp_t flags)
1283{
1284 void *ret;
1285 size_t ks = 0;
1286
1287 if (p)
1288 ks = ksize(p);
1289
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001290 if (ks >= new_size) {
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07001291 kasan_krealloc((void *)p, new_size, flags);
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001292 return (void *)p;
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001293 }
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001294
1295 ret = kmalloc_track_caller(new_size, flags);
1296 if (ret && p)
1297 memcpy(ret, p, ks);
1298
1299 return ret;
1300}
1301
1302/**
1303 * __krealloc - like krealloc() but don't free @p.
1304 * @p: object to reallocate memory for.
1305 * @new_size: how many bytes of memory are required.
1306 * @flags: the type of memory to allocate.
1307 *
1308 * This function is like krealloc() except it never frees the originally
1309 * allocated buffer. Use this if you don't want to free the buffer immediately
1310 * like, for example, with RCU.
1311 */
1312void *__krealloc(const void *p, size_t new_size, gfp_t flags)
1313{
1314 if (unlikely(!new_size))
1315 return ZERO_SIZE_PTR;
1316
1317 return __do_krealloc(p, new_size, flags);
1318
1319}
1320EXPORT_SYMBOL(__krealloc);
1321
1322/**
1323 * krealloc - reallocate memory. The contents will remain unchanged.
1324 * @p: object to reallocate memory for.
1325 * @new_size: how many bytes of memory are required.
1326 * @flags: the type of memory to allocate.
1327 *
1328 * The contents of the object pointed to are preserved up to the
1329 * lesser of the new and old sizes. If @p is %NULL, krealloc()
1330 * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a
1331 * %NULL pointer, the object pointed to is freed.
1332 */
1333void *krealloc(const void *p, size_t new_size, gfp_t flags)
1334{
1335 void *ret;
1336
1337 if (unlikely(!new_size)) {
1338 kfree(p);
1339 return ZERO_SIZE_PTR;
1340 }
1341
1342 ret = __do_krealloc(p, new_size, flags);
1343 if (ret && p != ret)
1344 kfree(p);
1345
1346 return ret;
1347}
1348EXPORT_SYMBOL(krealloc);
1349
1350/**
1351 * kzfree - like kfree but zero memory
1352 * @p: object to free memory of
1353 *
1354 * The memory of the object @p points to is zeroed before freed.
1355 * If @p is %NULL, kzfree() does nothing.
1356 *
1357 * Note: this function zeroes the whole allocated buffer which can be a good
1358 * deal bigger than the requested buffer size passed to kmalloc(). So be
1359 * careful when using this function in performance sensitive code.
1360 */
1361void kzfree(const void *p)
1362{
1363 size_t ks;
1364 void *mem = (void *)p;
1365
1366 if (unlikely(ZERO_OR_NULL_PTR(mem)))
1367 return;
1368 ks = ksize(mem);
1369 memset(mem, 0, ks);
1370 kfree(mem);
1371}
1372EXPORT_SYMBOL(kzfree);
1373
1374/* Tracepoints definitions. */
1375EXPORT_TRACEPOINT_SYMBOL(kmalloc);
1376EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc);
1377EXPORT_TRACEPOINT_SYMBOL(kmalloc_node);
1378EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc_node);
1379EXPORT_TRACEPOINT_SYMBOL(kfree);
1380EXPORT_TRACEPOINT_SYMBOL(kmem_cache_free);