blob: 80164599ca5d1921d2c4b8f773f2a7c8b019cce7 [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 | \
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -080042 SLAB_TRACE | SLAB_TYPESAFE_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.
Joonsoo Kim423c9292014-10-09 15:26:22 -070050 */
Kees Cook7660a6f2017-07-06 15:36:40 -070051static bool slab_nomerge = !IS_ENABLED(CONFIG_SLAB_MERGE_DEFAULT);
Joonsoo Kim423c9292014-10-09 15:26:22 -070052
53static int __init setup_slab_nomerge(char *str)
54{
Kees Cook7660a6f2017-07-06 15:36:40 -070055 slab_nomerge = true;
Joonsoo Kim423c9292014-10-09 15:26:22 -070056 return 1;
57}
58
59#ifdef CONFIG_SLUB
60__setup_param("slub_nomerge", slub_nomerge, setup_slab_nomerge, 0);
61#endif
62
63__setup("slab_nomerge", setup_slab_nomerge);
64
65/*
Joonsoo Kim07f361b2014-10-09 15:26:00 -070066 * Determine the size of a slab object
67 */
68unsigned int kmem_cache_size(struct kmem_cache *s)
69{
70 return s->object_size;
71}
72EXPORT_SYMBOL(kmem_cache_size);
73
Shuah Khan77be4b12012-08-16 00:09:46 -070074#ifdef CONFIG_DEBUG_VM
Vladimir Davydov794b1242014-04-07 15:39:26 -070075static int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -070076{
77 struct kmem_cache *s = NULL;
78
79 if (!name || in_interrupt() || size < sizeof(void *) ||
80 size > KMALLOC_MAX_SIZE) {
81 pr_err("kmem_cache_create(%s) integrity check failed\n", name);
82 return -EINVAL;
83 }
84
85 list_for_each_entry(s, &slab_caches, list) {
86 char tmp;
87 int res;
88
89 /*
90 * This happens when the module gets unloaded and doesn't
91 * destroy its slab cache and no-one else reuses the vmalloc
92 * area of the module. Print a warning.
93 */
94 res = probe_kernel_address(s->name, tmp);
95 if (res) {
96 pr_err("Slab cache with size %d has lost its name\n",
97 s->object_size);
98 continue;
99 }
Shuah Khan77be4b12012-08-16 00:09:46 -0700100 }
101
102 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
103 return 0;
104}
105#else
Vladimir Davydov794b1242014-04-07 15:39:26 -0700106static inline int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -0700107{
108 return 0;
109}
110#endif
111
Christoph Lameter484748f2015-09-04 15:45:34 -0700112void __kmem_cache_free_bulk(struct kmem_cache *s, size_t nr, void **p)
113{
114 size_t i;
115
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -0700116 for (i = 0; i < nr; i++) {
117 if (s)
118 kmem_cache_free(s, p[i]);
119 else
120 kfree(p[i]);
121 }
Christoph Lameter484748f2015-09-04 15:45:34 -0700122}
123
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800124int __kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t nr,
Christoph Lameter484748f2015-09-04 15:45:34 -0700125 void **p)
126{
127 size_t i;
128
129 for (i = 0; i < nr; i++) {
130 void *x = p[i] = kmem_cache_alloc(s, flags);
131 if (!x) {
132 __kmem_cache_free_bulk(s, i, p);
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800133 return 0;
Christoph Lameter484748f2015-09-04 15:45:34 -0700134 }
135 }
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800136 return i;
Christoph Lameter484748f2015-09-04 15:45:34 -0700137}
138
Johannes Weiner127424c2016-01-20 15:02:32 -0800139#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Tejun Heo510ded32017-02-22 15:41:24 -0800140
141LIST_HEAD(slab_root_caches);
142
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800143void slab_init_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700144{
Tejun Heo9eeadc82017-02-22 15:41:17 -0800145 s->memcg_params.root_cache = NULL;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800146 RCU_INIT_POINTER(s->memcg_params.memcg_caches, NULL);
Tejun Heo9eeadc82017-02-22 15:41:17 -0800147 INIT_LIST_HEAD(&s->memcg_params.children);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800148}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700149
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800150static int init_memcg_params(struct kmem_cache *s,
151 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
152{
153 struct memcg_cache_array *arr;
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700154
Tejun Heo9eeadc82017-02-22 15:41:17 -0800155 if (root_cache) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800156 s->memcg_params.root_cache = root_cache;
Tejun Heo9eeadc82017-02-22 15:41:17 -0800157 s->memcg_params.memcg = memcg;
158 INIT_LIST_HEAD(&s->memcg_params.children_node);
Tejun Heobc2791f2017-02-22 15:41:21 -0800159 INIT_LIST_HEAD(&s->memcg_params.kmem_caches_node);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800160 return 0;
161 }
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700162
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800163 slab_init_memcg_params(s);
164
165 if (!memcg_nr_cache_ids)
166 return 0;
167
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700168 arr = kvzalloc(sizeof(struct memcg_cache_array) +
169 memcg_nr_cache_ids * sizeof(void *),
170 GFP_KERNEL);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800171 if (!arr)
172 return -ENOMEM;
173
174 RCU_INIT_POINTER(s->memcg_params.memcg_caches, arr);
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700175 return 0;
176}
177
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800178static void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700179{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800180 if (is_root_cache(s))
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700181 kvfree(rcu_access_pointer(s->memcg_params.memcg_caches));
182}
183
184static void free_memcg_params(struct rcu_head *rcu)
185{
186 struct memcg_cache_array *old;
187
188 old = container_of(rcu, struct memcg_cache_array, rcu);
189 kvfree(old);
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700190}
191
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800192static int update_memcg_params(struct kmem_cache *s, int new_array_size)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700193{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800194 struct memcg_cache_array *old, *new;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700195
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700196 new = kvzalloc(sizeof(struct memcg_cache_array) +
197 new_array_size * sizeof(void *), GFP_KERNEL);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800198 if (!new)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700199 return -ENOMEM;
200
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800201 old = rcu_dereference_protected(s->memcg_params.memcg_caches,
202 lockdep_is_held(&slab_mutex));
203 if (old)
204 memcpy(new->entries, old->entries,
205 memcg_nr_cache_ids * sizeof(void *));
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700206
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800207 rcu_assign_pointer(s->memcg_params.memcg_caches, new);
208 if (old)
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700209 call_rcu(&old->rcu, free_memcg_params);
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700210 return 0;
211}
212
Glauber Costa55007d82012-12-18 14:22:38 -0800213int memcg_update_all_caches(int num_memcgs)
214{
215 struct kmem_cache *s;
216 int ret = 0;
Glauber Costa55007d82012-12-18 14:22:38 -0800217
Vladimir Davydov05257a12015-02-12 14:59:01 -0800218 mutex_lock(&slab_mutex);
Tejun Heo510ded32017-02-22 15:41:24 -0800219 list_for_each_entry(s, &slab_root_caches, root_caches_node) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800220 ret = update_memcg_params(s, num_memcgs);
Glauber Costa55007d82012-12-18 14:22:38 -0800221 /*
Glauber Costa55007d82012-12-18 14:22:38 -0800222 * Instead of freeing the memory, we'll just leave the caches
223 * up to this point in an updated state.
224 */
225 if (ret)
Vladimir Davydov05257a12015-02-12 14:59:01 -0800226 break;
Glauber Costa55007d82012-12-18 14:22:38 -0800227 }
Glauber Costa55007d82012-12-18 14:22:38 -0800228 mutex_unlock(&slab_mutex);
229 return ret;
230}
Tejun Heo657dc2f2017-02-22 15:41:14 -0800231
Tejun Heo510ded32017-02-22 15:41:24 -0800232void memcg_link_cache(struct kmem_cache *s)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800233{
Tejun Heo510ded32017-02-22 15:41:24 -0800234 if (is_root_cache(s)) {
235 list_add(&s->root_caches_node, &slab_root_caches);
236 } else {
237 list_add(&s->memcg_params.children_node,
238 &s->memcg_params.root_cache->memcg_params.children);
239 list_add(&s->memcg_params.kmem_caches_node,
240 &s->memcg_params.memcg->kmem_caches);
241 }
242}
243
244static void memcg_unlink_cache(struct kmem_cache *s)
245{
246 if (is_root_cache(s)) {
247 list_del(&s->root_caches_node);
248 } else {
249 list_del(&s->memcg_params.children_node);
250 list_del(&s->memcg_params.kmem_caches_node);
251 }
Tejun Heo657dc2f2017-02-22 15:41:14 -0800252}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700253#else
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800254static inline int init_memcg_params(struct kmem_cache *s,
255 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700256{
257 return 0;
258}
259
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800260static inline void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700261{
262}
Tejun Heo657dc2f2017-02-22 15:41:14 -0800263
Tejun Heo510ded32017-02-22 15:41:24 -0800264static inline void memcg_unlink_cache(struct kmem_cache *s)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800265{
266}
Johannes Weiner127424c2016-01-20 15:02:32 -0800267#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Glauber Costa55007d82012-12-18 14:22:38 -0800268
Christoph Lameter039363f2012-07-06 15:25:10 -0500269/*
Joonsoo Kim423c9292014-10-09 15:26:22 -0700270 * Find a mergeable slab cache
271 */
272int slab_unmergeable(struct kmem_cache *s)
273{
274 if (slab_nomerge || (s->flags & SLAB_NEVER_MERGE))
275 return 1;
276
277 if (!is_root_cache(s))
278 return 1;
279
280 if (s->ctor)
281 return 1;
282
283 /*
284 * We may have set a slab to be unmergeable during bootstrap.
285 */
286 if (s->refcount < 0)
287 return 1;
288
289 return 0;
290}
291
292struct kmem_cache *find_mergeable(size_t size, size_t align,
293 unsigned long flags, const char *name, void (*ctor)(void *))
294{
295 struct kmem_cache *s;
296
Grygorii Maistrenkoc6e28892017-02-22 15:40:59 -0800297 if (slab_nomerge)
Joonsoo Kim423c9292014-10-09 15:26:22 -0700298 return NULL;
299
300 if (ctor)
301 return NULL;
302
303 size = ALIGN(size, sizeof(void *));
304 align = calculate_alignment(flags, align, size);
305 size = ALIGN(size, align);
306 flags = kmem_cache_flags(size, flags, name, NULL);
307
Grygorii Maistrenkoc6e28892017-02-22 15:40:59 -0800308 if (flags & SLAB_NEVER_MERGE)
309 return NULL;
310
Tejun Heo510ded32017-02-22 15:41:24 -0800311 list_for_each_entry_reverse(s, &slab_root_caches, root_caches_node) {
Joonsoo Kim423c9292014-10-09 15:26:22 -0700312 if (slab_unmergeable(s))
313 continue;
314
315 if (size > s->size)
316 continue;
317
318 if ((flags & SLAB_MERGE_SAME) != (s->flags & SLAB_MERGE_SAME))
319 continue;
320 /*
321 * Check if alignment is compatible.
322 * Courtesy of Adrian Drzewiecki
323 */
324 if ((s->size & ~(align - 1)) != s->size)
325 continue;
326
327 if (s->size - size >= sizeof(void *))
328 continue;
329
Joonsoo Kim95069ac82014-11-13 15:19:25 -0800330 if (IS_ENABLED(CONFIG_SLAB) && align &&
331 (align > s->align || s->align % align))
332 continue;
333
Joonsoo Kim423c9292014-10-09 15:26:22 -0700334 return s;
335 }
336 return NULL;
337}
338
339/*
Christoph Lameter45906852012-11-28 16:23:16 +0000340 * Figure out what the alignment of the objects will be given a set of
341 * flags, a user specified alignment and the size of the objects.
342 */
343unsigned long calculate_alignment(unsigned long flags,
344 unsigned long align, unsigned long size)
345{
346 /*
347 * If the user wants hardware cache aligned objects then follow that
348 * suggestion if the object is sufficiently large.
349 *
350 * The hardware cache alignment cannot override the specified
351 * alignment though. If that is greater then use it.
352 */
353 if (flags & SLAB_HWCACHE_ALIGN) {
354 unsigned long ralign = cache_line_size();
355 while (size <= ralign / 2)
356 ralign /= 2;
357 align = max(align, ralign);
358 }
359
360 if (align < ARCH_SLAB_MINALIGN)
361 align = ARCH_SLAB_MINALIGN;
362
363 return ALIGN(align, sizeof(void *));
364}
365
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800366static struct kmem_cache *create_cache(const char *name,
367 size_t object_size, size_t size, size_t align,
368 unsigned long flags, void (*ctor)(void *),
369 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700370{
371 struct kmem_cache *s;
372 int err;
373
374 err = -ENOMEM;
375 s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL);
376 if (!s)
377 goto out;
378
379 s->name = name;
380 s->object_size = object_size;
381 s->size = size;
382 s->align = align;
383 s->ctor = ctor;
384
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800385 err = init_memcg_params(s, memcg, root_cache);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700386 if (err)
387 goto out_free_cache;
388
389 err = __kmem_cache_create(s, flags);
390 if (err)
391 goto out_free_cache;
392
393 s->refcount = 1;
394 list_add(&s->list, &slab_caches);
Tejun Heo510ded32017-02-22 15:41:24 -0800395 memcg_link_cache(s);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700396out:
397 if (err)
398 return ERR_PTR(err);
399 return s;
400
401out_free_cache:
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800402 destroy_memcg_params(s);
Vaishali Thakkar7c4da062015-02-10 14:09:40 -0800403 kmem_cache_free(kmem_cache, s);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700404 goto out;
405}
Christoph Lameter45906852012-11-28 16:23:16 +0000406
407/*
Christoph Lameter039363f2012-07-06 15:25:10 -0500408 * kmem_cache_create - Create a cache.
409 * @name: A string which is used in /proc/slabinfo to identify this cache.
410 * @size: The size of objects to be created in this cache.
411 * @align: The required alignment for the objects.
412 * @flags: SLAB flags
413 * @ctor: A constructor for the objects.
414 *
415 * Returns a ptr to the cache on success, NULL on failure.
416 * Cannot be called within a interrupt, but can be interrupted.
417 * The @ctor is run when new pages are allocated by the cache.
418 *
419 * The flags are
420 *
421 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
422 * to catch references to uninitialised memory.
423 *
424 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
425 * for buffer overruns.
426 *
427 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
428 * cacheline. This can be beneficial if you're counting cycles as closely
429 * as davem.
430 */
Glauber Costa2633d7a2012-12-18 14:22:34 -0800431struct kmem_cache *
Vladimir Davydov794b1242014-04-07 15:39:26 -0700432kmem_cache_create(const char *name, size_t size, size_t align,
433 unsigned long flags, void (*ctor)(void *))
Christoph Lameter039363f2012-07-06 15:25:10 -0500434{
Alexandru Moise40911a72015-11-05 18:45:43 -0800435 struct kmem_cache *s = NULL;
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800436 const char *cache_name;
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800437 int err;
Christoph Lameter039363f2012-07-06 15:25:10 -0500438
Pekka Enbergb9205362012-08-16 10:12:18 +0300439 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700440 get_online_mems();
Vladimir Davydov05257a12015-02-12 14:59:01 -0800441 memcg_get_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700442
Pekka Enbergb9205362012-08-16 10:12:18 +0300443 mutex_lock(&slab_mutex);
Christoph Lameter686d5502012-09-05 00:20:33 +0000444
Vladimir Davydov794b1242014-04-07 15:39:26 -0700445 err = kmem_cache_sanity_check(name, size);
Andrew Morton3aa24f52014-10-09 15:25:58 -0700446 if (err) {
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800447 goto out_unlock;
Andrew Morton3aa24f52014-10-09 15:25:58 -0700448 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000449
Thomas Garniere70954f2016-12-12 16:41:38 -0800450 /* Refuse requests with allocator specific flags */
451 if (flags & ~SLAB_FLAGS_PERMITTED) {
452 err = -EINVAL;
453 goto out_unlock;
454 }
455
Glauber Costad8843922012-10-17 15:36:51 +0400456 /*
457 * Some allocators will constraint the set of valid flags to a subset
458 * of all flags. We expect them to define CACHE_CREATE_MASK in this
459 * case, and we'll just provide them with a sanitized version of the
460 * passed flags.
461 */
462 flags &= CACHE_CREATE_MASK;
Christoph Lameter686d5502012-09-05 00:20:33 +0000463
Vladimir Davydov794b1242014-04-07 15:39:26 -0700464 s = __kmem_cache_alias(name, size, align, flags, ctor);
465 if (s)
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800466 goto out_unlock;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800467
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800468 cache_name = kstrdup_const(name, GFP_KERNEL);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700469 if (!cache_name) {
470 err = -ENOMEM;
471 goto out_unlock;
472 }
Glauber Costa2633d7a2012-12-18 14:22:34 -0800473
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800474 s = create_cache(cache_name, size, size,
475 calculate_alignment(flags, align, size),
476 flags, ctor, NULL, NULL);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700477 if (IS_ERR(s)) {
478 err = PTR_ERR(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800479 kfree_const(cache_name);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700480 }
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800481
482out_unlock:
Christoph Lameter20cea962012-07-06 15:25:13 -0500483 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700484
Vladimir Davydov05257a12015-02-12 14:59:01 -0800485 memcg_put_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700486 put_online_mems();
Christoph Lameter20cea962012-07-06 15:25:13 -0500487 put_online_cpus();
488
Dave Jonesba3253c2014-01-29 14:05:48 -0800489 if (err) {
Christoph Lameter686d5502012-09-05 00:20:33 +0000490 if (flags & SLAB_PANIC)
491 panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n",
492 name, err);
493 else {
Joe Perches11705322016-03-17 14:19:50 -0700494 pr_warn("kmem_cache_create(%s) failed with error %d\n",
Christoph Lameter686d5502012-09-05 00:20:33 +0000495 name, err);
496 dump_stack();
497 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000498 return NULL;
499 }
Christoph Lameter039363f2012-07-06 15:25:10 -0500500 return s;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800501}
Christoph Lameter039363f2012-07-06 15:25:10 -0500502EXPORT_SYMBOL(kmem_cache_create);
Christoph Lameter97d06602012-07-06 15:25:11 -0500503
Tejun Heo657dc2f2017-02-22 15:41:14 -0800504static void slab_caches_to_rcu_destroy_workfn(struct work_struct *work)
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800505{
Tejun Heo657dc2f2017-02-22 15:41:14 -0800506 LIST_HEAD(to_destroy);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800507 struct kmem_cache *s, *s2;
508
Tejun Heo657dc2f2017-02-22 15:41:14 -0800509 /*
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -0800510 * On destruction, SLAB_TYPESAFE_BY_RCU kmem_caches are put on the
Tejun Heo657dc2f2017-02-22 15:41:14 -0800511 * @slab_caches_to_rcu_destroy list. The slab pages are freed
512 * through RCU and and the associated kmem_cache are dereferenced
513 * while freeing the pages, so the kmem_caches should be freed only
514 * after the pending RCU operations are finished. As rcu_barrier()
515 * is a pretty slow operation, we batch all pending destructions
516 * asynchronously.
517 */
518 mutex_lock(&slab_mutex);
519 list_splice_init(&slab_caches_to_rcu_destroy, &to_destroy);
520 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800521
Tejun Heo657dc2f2017-02-22 15:41:14 -0800522 if (list_empty(&to_destroy))
523 return;
524
525 rcu_barrier();
526
527 list_for_each_entry_safe(s, s2, &to_destroy, list) {
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800528#ifdef SLAB_SUPPORTS_SYSFS
Tejun Heobf5eb3d2017-02-22 15:41:11 -0800529 sysfs_slab_release(s);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800530#else
531 slab_kmem_cache_release(s);
532#endif
533 }
534}
535
Tejun Heo657dc2f2017-02-22 15:41:14 -0800536static int shutdown_cache(struct kmem_cache *s)
537{
Greg Thelenf9fa1d92017-02-24 15:00:05 -0800538 /* free asan quarantined objects */
539 kasan_cache_shutdown(s);
540
Tejun Heo657dc2f2017-02-22 15:41:14 -0800541 if (__kmem_cache_shutdown(s) != 0)
542 return -EBUSY;
543
Tejun Heo510ded32017-02-22 15:41:24 -0800544 memcg_unlink_cache(s);
Tejun Heo657dc2f2017-02-22 15:41:14 -0800545 list_del(&s->list);
Tejun Heo657dc2f2017-02-22 15:41:14 -0800546
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -0800547 if (s->flags & SLAB_TYPESAFE_BY_RCU) {
Tejun Heo657dc2f2017-02-22 15:41:14 -0800548 list_add_tail(&s->list, &slab_caches_to_rcu_destroy);
549 schedule_work(&slab_caches_to_rcu_destroy_work);
550 } else {
551#ifdef SLAB_SUPPORTS_SYSFS
552 sysfs_slab_release(s);
553#else
554 slab_kmem_cache_release(s);
555#endif
556 }
557
558 return 0;
559}
560
Johannes Weiner127424c2016-01-20 15:02:32 -0800561#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700562/*
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700563 * memcg_create_kmem_cache - Create a cache for a memory cgroup.
Vladimir Davydov794b1242014-04-07 15:39:26 -0700564 * @memcg: The memory cgroup the new cache is for.
565 * @root_cache: The parent of the new cache.
566 *
567 * This function attempts to create a kmem cache that will serve allocation
568 * requests going from @memcg to @root_cache. The new cache inherits properties
569 * from its parent.
570 */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800571void memcg_create_kmem_cache(struct mem_cgroup *memcg,
572 struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700573{
Vladimir Davydov3e0350a2015-02-10 14:11:44 -0800574 static char memcg_name_buf[NAME_MAX + 1]; /* protected by slab_mutex */
Michal Hocko33398cf2015-09-08 15:01:02 -0700575 struct cgroup_subsys_state *css = &memcg->css;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800576 struct memcg_cache_array *arr;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700577 struct kmem_cache *s = NULL;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700578 char *cache_name;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800579 int idx;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700580
581 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700582 get_online_mems();
583
Vladimir Davydov794b1242014-04-07 15:39:26 -0700584 mutex_lock(&slab_mutex);
585
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800586 /*
Johannes Weiner567e9ab2016-01-20 15:02:24 -0800587 * The memory cgroup could have been offlined while the cache
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800588 * creation work was pending.
589 */
Vladimir Davydovb6ecd2d2016-03-17 14:18:33 -0700590 if (memcg->kmem_state != KMEM_ONLINE)
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800591 goto out_unlock;
592
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800593 idx = memcg_cache_id(memcg);
594 arr = rcu_dereference_protected(root_cache->memcg_params.memcg_caches,
595 lockdep_is_held(&slab_mutex));
596
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800597 /*
598 * Since per-memcg caches are created asynchronously on first
599 * allocation (see memcg_kmem_get_cache()), several threads can try to
600 * create the same cache, but only one of them may succeed.
601 */
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800602 if (arr->entries[idx])
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800603 goto out_unlock;
604
Vladimir Davydovf1008362015-02-12 14:59:29 -0800605 cgroup_name(css->cgroup, memcg_name_buf, sizeof(memcg_name_buf));
Johannes Weiner73f576c2016-07-20 15:44:57 -0700606 cache_name = kasprintf(GFP_KERNEL, "%s(%llu:%s)", root_cache->name,
607 css->serial_nr, memcg_name_buf);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700608 if (!cache_name)
609 goto out_unlock;
610
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800611 s = create_cache(cache_name, root_cache->object_size,
612 root_cache->size, root_cache->align,
Greg Thelenf773e362016-11-10 10:46:41 -0800613 root_cache->flags & CACHE_CREATE_MASK,
614 root_cache->ctor, memcg, root_cache);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800615 /*
616 * If we could not create a memcg cache, do not complain, because
617 * that's not critical at all as we can always proceed with the root
618 * cache.
619 */
Vladimir Davydovbd673142014-06-04 16:07:40 -0700620 if (IS_ERR(s)) {
Vladimir Davydov794b1242014-04-07 15:39:26 -0700621 kfree(cache_name);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800622 goto out_unlock;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700623 }
Vladimir Davydov794b1242014-04-07 15:39:26 -0700624
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800625 /*
626 * Since readers won't lock (see cache_from_memcg_idx()), we need a
627 * barrier here to ensure nobody will see the kmem_cache partially
628 * initialized.
629 */
630 smp_wmb();
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800631 arr->entries[idx] = s;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800632
Vladimir Davydov794b1242014-04-07 15:39:26 -0700633out_unlock:
634 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700635
636 put_online_mems();
Vladimir Davydov794b1242014-04-07 15:39:26 -0700637 put_online_cpus();
638}
Vladimir Davydovb8529902014-04-07 15:39:28 -0700639
Tejun Heo01fb58b2017-02-22 15:41:30 -0800640static void kmemcg_deactivate_workfn(struct work_struct *work)
641{
642 struct kmem_cache *s = container_of(work, struct kmem_cache,
643 memcg_params.deact_work);
644
645 get_online_cpus();
646 get_online_mems();
647
648 mutex_lock(&slab_mutex);
649
650 s->memcg_params.deact_fn(s);
651
652 mutex_unlock(&slab_mutex);
653
654 put_online_mems();
655 put_online_cpus();
656
657 /* done, put the ref from slab_deactivate_memcg_cache_rcu_sched() */
658 css_put(&s->memcg_params.memcg->css);
659}
660
661static void kmemcg_deactivate_rcufn(struct rcu_head *head)
662{
663 struct kmem_cache *s = container_of(head, struct kmem_cache,
664 memcg_params.deact_rcu_head);
665
666 /*
667 * We need to grab blocking locks. Bounce to ->deact_work. The
668 * work item shares the space with the RCU head and can't be
669 * initialized eariler.
670 */
671 INIT_WORK(&s->memcg_params.deact_work, kmemcg_deactivate_workfn);
Tejun Heo17cc4df2017-02-22 15:41:36 -0800672 queue_work(memcg_kmem_cache_wq, &s->memcg_params.deact_work);
Tejun Heo01fb58b2017-02-22 15:41:30 -0800673}
674
675/**
676 * slab_deactivate_memcg_cache_rcu_sched - schedule deactivation after a
677 * sched RCU grace period
678 * @s: target kmem_cache
679 * @deact_fn: deactivation function to call
680 *
681 * Schedule @deact_fn to be invoked with online cpus, mems and slab_mutex
682 * held after a sched RCU grace period. The slab is guaranteed to stay
683 * alive until @deact_fn is finished. This is to be used from
684 * __kmemcg_cache_deactivate().
685 */
686void slab_deactivate_memcg_cache_rcu_sched(struct kmem_cache *s,
687 void (*deact_fn)(struct kmem_cache *))
688{
689 if (WARN_ON_ONCE(is_root_cache(s)) ||
690 WARN_ON_ONCE(s->memcg_params.deact_fn))
691 return;
692
693 /* pin memcg so that @s doesn't get destroyed in the middle */
694 css_get(&s->memcg_params.memcg->css);
695
696 s->memcg_params.deact_fn = deact_fn;
697 call_rcu_sched(&s->memcg_params.deact_rcu_head, kmemcg_deactivate_rcufn);
698}
699
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800700void memcg_deactivate_kmem_caches(struct mem_cgroup *memcg)
701{
702 int idx;
703 struct memcg_cache_array *arr;
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800704 struct kmem_cache *s, *c;
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800705
706 idx = memcg_cache_id(memcg);
707
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800708 get_online_cpus();
709 get_online_mems();
710
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800711 mutex_lock(&slab_mutex);
Tejun Heo510ded32017-02-22 15:41:24 -0800712 list_for_each_entry(s, &slab_root_caches, root_caches_node) {
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800713 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
714 lockdep_is_held(&slab_mutex));
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800715 c = arr->entries[idx];
716 if (!c)
717 continue;
718
Tejun Heoc9fc5862017-02-22 15:41:27 -0800719 __kmemcg_cache_deactivate(c);
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800720 arr->entries[idx] = NULL;
721 }
722 mutex_unlock(&slab_mutex);
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800723
724 put_online_mems();
725 put_online_cpus();
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800726}
727
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800728void memcg_destroy_kmem_caches(struct mem_cgroup *memcg)
Vladimir Davydovb8529902014-04-07 15:39:28 -0700729{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800730 struct kmem_cache *s, *s2;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700731
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800732 get_online_cpus();
733 get_online_mems();
Vladimir Davydovb8529902014-04-07 15:39:28 -0700734
Vladimir Davydovb8529902014-04-07 15:39:28 -0700735 mutex_lock(&slab_mutex);
Tejun Heobc2791f2017-02-22 15:41:21 -0800736 list_for_each_entry_safe(s, s2, &memcg->kmem_caches,
737 memcg_params.kmem_caches_node) {
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800738 /*
739 * The cgroup is about to be freed and therefore has no charges
740 * left. Hence, all its caches must be empty by now.
741 */
Tejun Heo657dc2f2017-02-22 15:41:14 -0800742 BUG_ON(shutdown_cache(s));
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800743 }
744 mutex_unlock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700745
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800746 put_online_mems();
747 put_online_cpus();
Vladimir Davydovb8529902014-04-07 15:39:28 -0700748}
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800749
Tejun Heo657dc2f2017-02-22 15:41:14 -0800750static int shutdown_memcg_caches(struct kmem_cache *s)
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800751{
752 struct memcg_cache_array *arr;
753 struct kmem_cache *c, *c2;
754 LIST_HEAD(busy);
755 int i;
756
757 BUG_ON(!is_root_cache(s));
758
759 /*
760 * First, shutdown active caches, i.e. caches that belong to online
761 * memory cgroups.
762 */
763 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
764 lockdep_is_held(&slab_mutex));
765 for_each_memcg_cache_index(i) {
766 c = arr->entries[i];
767 if (!c)
768 continue;
Tejun Heo657dc2f2017-02-22 15:41:14 -0800769 if (shutdown_cache(c))
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800770 /*
771 * The cache still has objects. Move it to a temporary
772 * list so as not to try to destroy it for a second
773 * time while iterating over inactive caches below.
774 */
Tejun Heo9eeadc82017-02-22 15:41:17 -0800775 list_move(&c->memcg_params.children_node, &busy);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800776 else
777 /*
778 * The cache is empty and will be destroyed soon. Clear
779 * the pointer to it in the memcg_caches array so that
780 * it will never be accessed even if the root cache
781 * stays alive.
782 */
783 arr->entries[i] = NULL;
784 }
785
786 /*
787 * Second, shutdown all caches left from memory cgroups that are now
788 * offline.
789 */
Tejun Heo9eeadc82017-02-22 15:41:17 -0800790 list_for_each_entry_safe(c, c2, &s->memcg_params.children,
791 memcg_params.children_node)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800792 shutdown_cache(c);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800793
Tejun Heo9eeadc82017-02-22 15:41:17 -0800794 list_splice(&busy, &s->memcg_params.children);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800795
796 /*
797 * A cache being destroyed must be empty. In particular, this means
798 * that all per memcg caches attached to it must be empty too.
799 */
Tejun Heo9eeadc82017-02-22 15:41:17 -0800800 if (!list_empty(&s->memcg_params.children))
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800801 return -EBUSY;
802 return 0;
803}
804#else
Tejun Heo657dc2f2017-02-22 15:41:14 -0800805static inline int shutdown_memcg_caches(struct kmem_cache *s)
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800806{
807 return 0;
808}
Johannes Weiner127424c2016-01-20 15:02:32 -0800809#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Vladimir Davydov794b1242014-04-07 15:39:26 -0700810
Christoph Lameter41a21282014-05-06 12:50:08 -0700811void slab_kmem_cache_release(struct kmem_cache *s)
812{
Dmitry Safonov52b4b952016-02-17 13:11:37 -0800813 __kmem_cache_release(s);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800814 destroy_memcg_params(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800815 kfree_const(s->name);
Christoph Lameter41a21282014-05-06 12:50:08 -0700816 kmem_cache_free(kmem_cache, s);
817}
818
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000819void kmem_cache_destroy(struct kmem_cache *s)
820{
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800821 int err;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800822
Sergey Senozhatsky3942d292015-09-08 15:00:50 -0700823 if (unlikely(!s))
824 return;
825
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000826 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700827 get_online_mems();
828
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000829 mutex_lock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700830
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000831 s->refcount--;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700832 if (s->refcount)
833 goto out_unlock;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000834
Tejun Heo657dc2f2017-02-22 15:41:14 -0800835 err = shutdown_memcg_caches(s);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800836 if (!err)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800837 err = shutdown_cache(s);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700838
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800839 if (err) {
Joe Perches756a0252016-03-17 14:19:47 -0700840 pr_err("kmem_cache_destroy %s: Slab cache still has objects\n",
841 s->name);
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800842 dump_stack();
843 }
Vladimir Davydovb8529902014-04-07 15:39:28 -0700844out_unlock:
845 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800846
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700847 put_online_mems();
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000848 put_online_cpus();
849}
850EXPORT_SYMBOL(kmem_cache_destroy);
851
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700852/**
853 * kmem_cache_shrink - Shrink a cache.
854 * @cachep: The cache to shrink.
855 *
856 * Releases as many slabs as possible for a cache.
857 * To help debugging, a zero exit status indicates all slabs were released.
858 */
859int kmem_cache_shrink(struct kmem_cache *cachep)
860{
861 int ret;
862
863 get_online_cpus();
864 get_online_mems();
Alexander Potapenko55834c52016-05-20 16:59:11 -0700865 kasan_cache_shrink(cachep);
Tejun Heoc9fc5862017-02-22 15:41:27 -0800866 ret = __kmem_cache_shrink(cachep);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700867 put_online_mems();
868 put_online_cpus();
869 return ret;
870}
871EXPORT_SYMBOL(kmem_cache_shrink);
872
Denis Kirjanovfda90122015-11-05 18:44:59 -0800873bool slab_is_available(void)
Christoph Lameter97d06602012-07-06 15:25:11 -0500874{
875 return slab_state >= UP;
876}
Glauber Costab7454ad2012-10-19 18:20:25 +0400877
Christoph Lameter45530c42012-11-28 16:23:07 +0000878#ifndef CONFIG_SLOB
879/* Create a cache during boot when no slab services are available yet */
880void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t size,
881 unsigned long flags)
882{
883 int err;
884
885 s->name = name;
886 s->size = s->object_size = size;
Christoph Lameter45906852012-11-28 16:23:16 +0000887 s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800888
889 slab_init_memcg_params(s);
890
Christoph Lameter45530c42012-11-28 16:23:07 +0000891 err = __kmem_cache_create(s, flags);
892
893 if (err)
Christoph Lameter31ba7342013-01-10 19:00:53 +0000894 panic("Creation of kmalloc slab %s size=%zu failed. Reason %d\n",
Christoph Lameter45530c42012-11-28 16:23:07 +0000895 name, size, err);
896
897 s->refcount = -1; /* Exempt from merging for now */
898}
899
900struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size,
901 unsigned long flags)
902{
903 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
904
905 if (!s)
906 panic("Out of memory when creating slab %s\n", name);
907
908 create_boot_cache(s, name, size, flags);
909 list_add(&s->list, &slab_caches);
Tejun Heo510ded32017-02-22 15:41:24 -0800910 memcg_link_cache(s);
Christoph Lameter45530c42012-11-28 16:23:07 +0000911 s->refcount = 1;
912 return s;
913}
914
Christoph Lameter9425c582013-01-10 19:12:17 +0000915struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
916EXPORT_SYMBOL(kmalloc_caches);
917
918#ifdef CONFIG_ZONE_DMA
919struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1];
920EXPORT_SYMBOL(kmalloc_dma_caches);
921#endif
922
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000923/*
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000924 * Conversion table for small slabs sizes / 8 to the index in the
925 * kmalloc array. This is necessary for slabs < 192 since we have non power
926 * of two cache sizes there. The size of larger slabs can be determined using
927 * fls.
928 */
929static s8 size_index[24] = {
930 3, /* 8 */
931 4, /* 16 */
932 5, /* 24 */
933 5, /* 32 */
934 6, /* 40 */
935 6, /* 48 */
936 6, /* 56 */
937 6, /* 64 */
938 1, /* 72 */
939 1, /* 80 */
940 1, /* 88 */
941 1, /* 96 */
942 7, /* 104 */
943 7, /* 112 */
944 7, /* 120 */
945 7, /* 128 */
946 2, /* 136 */
947 2, /* 144 */
948 2, /* 152 */
949 2, /* 160 */
950 2, /* 168 */
951 2, /* 176 */
952 2, /* 184 */
953 2 /* 192 */
954};
955
956static inline int size_index_elem(size_t bytes)
957{
958 return (bytes - 1) / 8;
959}
960
961/*
962 * Find the kmem_cache structure that serves a given size of
963 * allocation
964 */
965struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags)
966{
967 int index;
968
Joonsoo Kim9de1bc82013-08-02 11:02:42 +0900969 if (unlikely(size > KMALLOC_MAX_SIZE)) {
Sasha Levin907985f2013-06-10 15:18:00 -0400970 WARN_ON_ONCE(!(flags & __GFP_NOWARN));
Christoph Lameter6286ae92013-05-03 15:43:18 +0000971 return NULL;
Sasha Levin907985f2013-06-10 15:18:00 -0400972 }
Christoph Lameter6286ae92013-05-03 15:43:18 +0000973
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000974 if (size <= 192) {
975 if (!size)
976 return ZERO_SIZE_PTR;
977
978 index = size_index[size_index_elem(size)];
979 } else
980 index = fls(size - 1);
981
982#ifdef CONFIG_ZONE_DMA
Joonsoo Kimb1e05412013-02-04 23:46:46 +0900983 if (unlikely((flags & GFP_DMA)))
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000984 return kmalloc_dma_caches[index];
985
986#endif
987 return kmalloc_caches[index];
988}
989
990/*
Gavin Guo4066c332015-06-24 16:55:54 -0700991 * kmalloc_info[] is to make slub_debug=,kmalloc-xx option work at boot time.
992 * kmalloc_index() supports up to 2^26=64MB, so the final entry of the table is
993 * kmalloc-67108864.
994 */
Vlastimil Babkaaf3b5f82017-02-22 15:41:05 -0800995const struct kmalloc_info_struct kmalloc_info[] __initconst = {
Gavin Guo4066c332015-06-24 16:55:54 -0700996 {NULL, 0}, {"kmalloc-96", 96},
997 {"kmalloc-192", 192}, {"kmalloc-8", 8},
998 {"kmalloc-16", 16}, {"kmalloc-32", 32},
999 {"kmalloc-64", 64}, {"kmalloc-128", 128},
1000 {"kmalloc-256", 256}, {"kmalloc-512", 512},
1001 {"kmalloc-1024", 1024}, {"kmalloc-2048", 2048},
1002 {"kmalloc-4096", 4096}, {"kmalloc-8192", 8192},
1003 {"kmalloc-16384", 16384}, {"kmalloc-32768", 32768},
1004 {"kmalloc-65536", 65536}, {"kmalloc-131072", 131072},
1005 {"kmalloc-262144", 262144}, {"kmalloc-524288", 524288},
1006 {"kmalloc-1048576", 1048576}, {"kmalloc-2097152", 2097152},
1007 {"kmalloc-4194304", 4194304}, {"kmalloc-8388608", 8388608},
1008 {"kmalloc-16777216", 16777216}, {"kmalloc-33554432", 33554432},
1009 {"kmalloc-67108864", 67108864}
1010};
1011
1012/*
Daniel Sanders34cc6992015-06-24 16:55:57 -07001013 * Patch up the size_index table if we have strange large alignment
1014 * requirements for the kmalloc array. This is only the case for
1015 * MIPS it seems. The standard arches will not generate any code here.
1016 *
1017 * Largest permitted alignment is 256 bytes due to the way we
1018 * handle the index determination for the smaller caches.
1019 *
1020 * Make sure that nothing crazy happens if someone starts tinkering
1021 * around with ARCH_KMALLOC_MINALIGN
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001022 */
Daniel Sanders34cc6992015-06-24 16:55:57 -07001023void __init setup_kmalloc_cache_index_table(void)
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001024{
1025 int i;
1026
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001027 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
1028 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
1029
1030 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
1031 int elem = size_index_elem(i);
1032
1033 if (elem >= ARRAY_SIZE(size_index))
1034 break;
1035 size_index[elem] = KMALLOC_SHIFT_LOW;
1036 }
1037
1038 if (KMALLOC_MIN_SIZE >= 64) {
1039 /*
1040 * The 96 byte size cache is not used if the alignment
1041 * is 64 byte.
1042 */
1043 for (i = 64 + 8; i <= 96; i += 8)
1044 size_index[size_index_elem(i)] = 7;
1045
1046 }
1047
1048 if (KMALLOC_MIN_SIZE >= 128) {
1049 /*
1050 * The 192 byte sized cache is not used if the alignment
1051 * is 128 byte. Redirect kmalloc to use the 256 byte cache
1052 * instead.
1053 */
1054 for (i = 128 + 8; i <= 192; i += 8)
1055 size_index[size_index_elem(i)] = 8;
1056 }
Daniel Sanders34cc6992015-06-24 16:55:57 -07001057}
1058
Christoph Lameterae6f2462015-06-30 09:01:11 -05001059static void __init new_kmalloc_cache(int idx, unsigned long flags)
Christoph Lametera9730fc2015-06-29 09:28:08 -05001060{
1061 kmalloc_caches[idx] = create_kmalloc_cache(kmalloc_info[idx].name,
1062 kmalloc_info[idx].size, flags);
1063}
1064
Daniel Sanders34cc6992015-06-24 16:55:57 -07001065/*
1066 * Create the kmalloc array. Some of the regular kmalloc arrays
1067 * may already have been created because they were needed to
1068 * enable allocations for slab creation.
1069 */
1070void __init create_kmalloc_caches(unsigned long flags)
1071{
1072 int i;
1073
Christoph Lametera9730fc2015-06-29 09:28:08 -05001074 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
1075 if (!kmalloc_caches[i])
1076 new_kmalloc_cache(i, flags);
Chris Mason956e46e2013-05-08 15:56:28 -04001077
1078 /*
Christoph Lametera9730fc2015-06-29 09:28:08 -05001079 * Caches that are not of the two-to-the-power-of size.
1080 * These have to be created immediately after the
1081 * earlier power of two caches
Chris Mason956e46e2013-05-08 15:56:28 -04001082 */
Christoph Lametera9730fc2015-06-29 09:28:08 -05001083 if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[1] && i == 6)
1084 new_kmalloc_cache(1, flags);
1085 if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[2] && i == 7)
1086 new_kmalloc_cache(2, flags);
Christoph Lameter8a965b32013-05-03 18:04:18 +00001087 }
1088
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001089 /* Kmalloc array is now usable */
1090 slab_state = UP;
1091
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001092#ifdef CONFIG_ZONE_DMA
1093 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
1094 struct kmem_cache *s = kmalloc_caches[i];
1095
1096 if (s) {
1097 int size = kmalloc_size(i);
1098 char *n = kasprintf(GFP_NOWAIT,
1099 "dma-kmalloc-%d", size);
1100
1101 BUG_ON(!n);
1102 kmalloc_dma_caches[i] = create_kmalloc_cache(n,
1103 size, SLAB_CACHE_DMA | flags);
1104 }
1105 }
1106#endif
1107}
Christoph Lameter45530c42012-11-28 16:23:07 +00001108#endif /* !CONFIG_SLOB */
1109
Vladimir Davydovcea371f2014-06-04 16:07:04 -07001110/*
1111 * To avoid unnecessary overhead, we pass through large allocation requests
1112 * directly to the page allocator. We use __GFP_COMP, because we will need to
1113 * know the allocation order to free the pages properly in kfree.
1114 */
Vladimir Davydov52383432014-06-04 16:06:39 -07001115void *kmalloc_order(size_t size, gfp_t flags, unsigned int order)
1116{
1117 void *ret;
1118 struct page *page;
1119
1120 flags |= __GFP_COMP;
Vladimir Davydov49491482016-07-26 15:24:24 -07001121 page = alloc_pages(flags, order);
Vladimir Davydov52383432014-06-04 16:06:39 -07001122 ret = page ? page_address(page) : NULL;
1123 kmemleak_alloc(ret, size, 1, flags);
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07001124 kasan_kmalloc_large(ret, size, flags);
Vladimir Davydov52383432014-06-04 16:06:39 -07001125 return ret;
1126}
1127EXPORT_SYMBOL(kmalloc_order);
1128
Christoph Lameterf1b6eb62013-09-04 16:35:34 +00001129#ifdef CONFIG_TRACING
1130void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
1131{
1132 void *ret = kmalloc_order(size, flags, order);
1133 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
1134 return ret;
1135}
1136EXPORT_SYMBOL(kmalloc_order_trace);
1137#endif
Christoph Lameter45530c42012-11-28 16:23:07 +00001138
Thomas Garnier7c00fce2016-07-26 15:21:56 -07001139#ifdef CONFIG_SLAB_FREELIST_RANDOM
1140/* Randomize a generic freelist */
1141static void freelist_randomize(struct rnd_state *state, unsigned int *list,
1142 size_t count)
1143{
1144 size_t i;
1145 unsigned int rand;
1146
1147 for (i = 0; i < count; i++)
1148 list[i] = i;
1149
1150 /* Fisher-Yates shuffle */
1151 for (i = count - 1; i > 0; i--) {
1152 rand = prandom_u32_state(state);
1153 rand %= (i + 1);
1154 swap(list[i], list[rand]);
1155 }
1156}
1157
1158/* Create a random sequence per cache */
1159int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count,
1160 gfp_t gfp)
1161{
1162 struct rnd_state state;
1163
1164 if (count < 2 || cachep->random_seq)
1165 return 0;
1166
1167 cachep->random_seq = kcalloc(count, sizeof(unsigned int), gfp);
1168 if (!cachep->random_seq)
1169 return -ENOMEM;
1170
1171 /* Get best entropy at this stage of boot */
1172 prandom_seed_state(&state, get_random_long());
1173
1174 freelist_randomize(&state, cachep->random_seq, count);
1175 return 0;
1176}
1177
1178/* Destroy the per-cache random freelist sequence */
1179void cache_random_seq_destroy(struct kmem_cache *cachep)
1180{
1181 kfree(cachep->random_seq);
1182 cachep->random_seq = NULL;
1183}
1184#endif /* CONFIG_SLAB_FREELIST_RANDOM */
1185
Glauber Costab7454ad2012-10-19 18:20:25 +04001186#ifdef CONFIG_SLABINFO
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001187
1188#ifdef CONFIG_SLAB
1189#define SLABINFO_RIGHTS (S_IWUSR | S_IRUSR)
1190#else
1191#define SLABINFO_RIGHTS S_IRUSR
1192#endif
1193
Vladimir Davydovb0475012014-12-10 15:44:19 -08001194static void print_slabinfo_header(struct seq_file *m)
Glauber Costabcee6e22012-10-19 18:20:26 +04001195{
1196 /*
1197 * Output format version, so at least we can change it
1198 * without _too_ many complaints.
1199 */
1200#ifdef CONFIG_DEBUG_SLAB
1201 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
1202#else
1203 seq_puts(m, "slabinfo - version: 2.1\n");
1204#endif
Joe Perches756a0252016-03-17 14:19:47 -07001205 seq_puts(m, "# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab>");
Glauber Costabcee6e22012-10-19 18:20:26 +04001206 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
1207 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
1208#ifdef CONFIG_DEBUG_SLAB
Joe Perches756a0252016-03-17 14:19:47 -07001209 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> <error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Glauber Costabcee6e22012-10-19 18:20:26 +04001210 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
1211#endif
1212 seq_putc(m, '\n');
1213}
1214
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001215void *slab_start(struct seq_file *m, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +04001216{
Glauber Costab7454ad2012-10-19 18:20:25 +04001217 mutex_lock(&slab_mutex);
Tejun Heo510ded32017-02-22 15:41:24 -08001218 return seq_list_start(&slab_root_caches, *pos);
Glauber Costab7454ad2012-10-19 18:20:25 +04001219}
1220
Wanpeng Li276a2432013-07-08 08:08:28 +08001221void *slab_next(struct seq_file *m, void *p, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +04001222{
Tejun Heo510ded32017-02-22 15:41:24 -08001223 return seq_list_next(p, &slab_root_caches, pos);
Glauber Costab7454ad2012-10-19 18:20:25 +04001224}
1225
Wanpeng Li276a2432013-07-08 08:08:28 +08001226void slab_stop(struct seq_file *m, void *p)
Glauber Costab7454ad2012-10-19 18:20:25 +04001227{
1228 mutex_unlock(&slab_mutex);
1229}
1230
Glauber Costa749c5412012-12-18 14:23:01 -08001231static void
1232memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
Glauber Costab7454ad2012-10-19 18:20:25 +04001233{
Glauber Costa749c5412012-12-18 14:23:01 -08001234 struct kmem_cache *c;
1235 struct slabinfo sinfo;
Glauber Costa749c5412012-12-18 14:23:01 -08001236
1237 if (!is_root_cache(s))
1238 return;
1239
Vladimir Davydov426589f2015-02-12 14:59:23 -08001240 for_each_memcg_cache(c, s) {
Glauber Costa749c5412012-12-18 14:23:01 -08001241 memset(&sinfo, 0, sizeof(sinfo));
1242 get_slabinfo(c, &sinfo);
1243
1244 info->active_slabs += sinfo.active_slabs;
1245 info->num_slabs += sinfo.num_slabs;
1246 info->shared_avail += sinfo.shared_avail;
1247 info->active_objs += sinfo.active_objs;
1248 info->num_objs += sinfo.num_objs;
1249 }
1250}
1251
Vladimir Davydovb0475012014-12-10 15:44:19 -08001252static void cache_show(struct kmem_cache *s, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08001253{
Glauber Costa0d7561c2012-10-19 18:20:27 +04001254 struct slabinfo sinfo;
1255
1256 memset(&sinfo, 0, sizeof(sinfo));
1257 get_slabinfo(s, &sinfo);
1258
Glauber Costa749c5412012-12-18 14:23:01 -08001259 memcg_accumulate_slabinfo(s, &sinfo);
1260
Glauber Costa0d7561c2012-10-19 18:20:27 +04001261 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Glauber Costa749c5412012-12-18 14:23:01 -08001262 cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size,
Glauber Costa0d7561c2012-10-19 18:20:27 +04001263 sinfo.objects_per_slab, (1 << sinfo.cache_order));
1264
1265 seq_printf(m, " : tunables %4u %4u %4u",
1266 sinfo.limit, sinfo.batchcount, sinfo.shared);
1267 seq_printf(m, " : slabdata %6lu %6lu %6lu",
1268 sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
1269 slabinfo_show_stats(m, s);
1270 seq_putc(m, '\n');
Glauber Costab7454ad2012-10-19 18:20:25 +04001271}
1272
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001273static int slab_show(struct seq_file *m, void *p)
Glauber Costa749c5412012-12-18 14:23:01 -08001274{
Tejun Heo510ded32017-02-22 15:41:24 -08001275 struct kmem_cache *s = list_entry(p, struct kmem_cache, root_caches_node);
Glauber Costa749c5412012-12-18 14:23:01 -08001276
Tejun Heo510ded32017-02-22 15:41:24 -08001277 if (p == slab_root_caches.next)
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001278 print_slabinfo_header(m);
Tejun Heo510ded32017-02-22 15:41:24 -08001279 cache_show(s, m);
Vladimir Davydovb0475012014-12-10 15:44:19 -08001280 return 0;
Glauber Costa749c5412012-12-18 14:23:01 -08001281}
1282
Johannes Weiner127424c2016-01-20 15:02:32 -08001283#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Tejun Heobc2791f2017-02-22 15:41:21 -08001284void *memcg_slab_start(struct seq_file *m, loff_t *pos)
Vladimir Davydovb0475012014-12-10 15:44:19 -08001285{
Vladimir Davydovb0475012014-12-10 15:44:19 -08001286 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1287
Tejun Heobc2791f2017-02-22 15:41:21 -08001288 mutex_lock(&slab_mutex);
1289 return seq_list_start(&memcg->kmem_caches, *pos);
1290}
1291
1292void *memcg_slab_next(struct seq_file *m, void *p, loff_t *pos)
1293{
1294 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1295
1296 return seq_list_next(p, &memcg->kmem_caches, pos);
1297}
1298
1299void memcg_slab_stop(struct seq_file *m, void *p)
1300{
1301 mutex_unlock(&slab_mutex);
1302}
1303
1304int memcg_slab_show(struct seq_file *m, void *p)
1305{
1306 struct kmem_cache *s = list_entry(p, struct kmem_cache,
1307 memcg_params.kmem_caches_node);
1308 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1309
1310 if (p == memcg->kmem_caches.next)
Vladimir Davydovb0475012014-12-10 15:44:19 -08001311 print_slabinfo_header(m);
Tejun Heobc2791f2017-02-22 15:41:21 -08001312 cache_show(s, m);
Vladimir Davydovb0475012014-12-10 15:44:19 -08001313 return 0;
1314}
1315#endif
1316
Glauber Costab7454ad2012-10-19 18:20:25 +04001317/*
1318 * slabinfo_op - iterator that generates /proc/slabinfo
1319 *
1320 * Output layout:
1321 * cache-name
1322 * num-active-objs
1323 * total-objs
1324 * object size
1325 * num-active-slabs
1326 * total-slabs
1327 * num-pages-per-slab
1328 * + further values on SMP and with statistics enabled
1329 */
1330static const struct seq_operations slabinfo_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001331 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08001332 .next = slab_next,
1333 .stop = slab_stop,
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001334 .show = slab_show,
Glauber Costab7454ad2012-10-19 18:20:25 +04001335};
1336
1337static int slabinfo_open(struct inode *inode, struct file *file)
1338{
1339 return seq_open(file, &slabinfo_op);
1340}
1341
1342static const struct file_operations proc_slabinfo_operations = {
1343 .open = slabinfo_open,
1344 .read = seq_read,
1345 .write = slabinfo_write,
1346 .llseek = seq_lseek,
1347 .release = seq_release,
1348};
1349
1350static int __init slab_proc_init(void)
1351{
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001352 proc_create("slabinfo", SLABINFO_RIGHTS, NULL,
1353 &proc_slabinfo_operations);
Glauber Costab7454ad2012-10-19 18:20:25 +04001354 return 0;
1355}
1356module_init(slab_proc_init);
1357#endif /* CONFIG_SLABINFO */
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001358
1359static __always_inline void *__do_krealloc(const void *p, size_t new_size,
1360 gfp_t flags)
1361{
1362 void *ret;
1363 size_t ks = 0;
1364
1365 if (p)
1366 ks = ksize(p);
1367
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001368 if (ks >= new_size) {
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07001369 kasan_krealloc((void *)p, new_size, flags);
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001370 return (void *)p;
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001371 }
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001372
1373 ret = kmalloc_track_caller(new_size, flags);
1374 if (ret && p)
1375 memcpy(ret, p, ks);
1376
1377 return ret;
1378}
1379
1380/**
1381 * __krealloc - like krealloc() but don't free @p.
1382 * @p: object to reallocate memory for.
1383 * @new_size: how many bytes of memory are required.
1384 * @flags: the type of memory to allocate.
1385 *
1386 * This function is like krealloc() except it never frees the originally
1387 * allocated buffer. Use this if you don't want to free the buffer immediately
1388 * like, for example, with RCU.
1389 */
1390void *__krealloc(const void *p, size_t new_size, gfp_t flags)
1391{
1392 if (unlikely(!new_size))
1393 return ZERO_SIZE_PTR;
1394
1395 return __do_krealloc(p, new_size, flags);
1396
1397}
1398EXPORT_SYMBOL(__krealloc);
1399
1400/**
1401 * krealloc - reallocate memory. The contents will remain unchanged.
1402 * @p: object to reallocate memory for.
1403 * @new_size: how many bytes of memory are required.
1404 * @flags: the type of memory to allocate.
1405 *
1406 * The contents of the object pointed to are preserved up to the
1407 * lesser of the new and old sizes. If @p is %NULL, krealloc()
1408 * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a
1409 * %NULL pointer, the object pointed to is freed.
1410 */
1411void *krealloc(const void *p, size_t new_size, gfp_t flags)
1412{
1413 void *ret;
1414
1415 if (unlikely(!new_size)) {
1416 kfree(p);
1417 return ZERO_SIZE_PTR;
1418 }
1419
1420 ret = __do_krealloc(p, new_size, flags);
1421 if (ret && p != ret)
1422 kfree(p);
1423
1424 return ret;
1425}
1426EXPORT_SYMBOL(krealloc);
1427
1428/**
1429 * kzfree - like kfree but zero memory
1430 * @p: object to free memory of
1431 *
1432 * The memory of the object @p points to is zeroed before freed.
1433 * If @p is %NULL, kzfree() does nothing.
1434 *
1435 * Note: this function zeroes the whole allocated buffer which can be a good
1436 * deal bigger than the requested buffer size passed to kmalloc(). So be
1437 * careful when using this function in performance sensitive code.
1438 */
1439void kzfree(const void *p)
1440{
1441 size_t ks;
1442 void *mem = (void *)p;
1443
1444 if (unlikely(ZERO_OR_NULL_PTR(mem)))
1445 return;
1446 ks = ksize(mem);
1447 memset(mem, 0, ks);
1448 kfree(mem);
1449}
1450EXPORT_SYMBOL(kzfree);
1451
1452/* Tracepoints definitions. */
1453EXPORT_TRACEPOINT_SYMBOL(kmalloc);
1454EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc);
1455EXPORT_TRACEPOINT_SYMBOL(kmalloc_node);
1456EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc_node);
1457EXPORT_TRACEPOINT_SYMBOL(kfree);
1458EXPORT_TRACEPOINT_SYMBOL(kmem_cache_free);