blob: 6491c3a418053870ae600830f82fa7f72e16a58d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christoph Lameter039363f2012-07-06 15:25:10 -05002/*
3 * Slab allocator functions that are independent of the allocator strategy
4 *
5 * (C) 2012 Christoph Lameter <cl@linux.com>
6 */
7#include <linux/slab.h>
8
9#include <linux/mm.h>
10#include <linux/poison.h>
11#include <linux/interrupt.h>
12#include <linux/memory.h>
Alexey Dobriyan1c99ba22018-04-05 16:20:11 -070013#include <linux/cache.h>
Christoph Lameter039363f2012-07-06 15:25:10 -050014#include <linux/compiler.h>
15#include <linux/module.h>
Christoph Lameter20cea962012-07-06 15:25:13 -050016#include <linux/cpu.h>
17#include <linux/uaccess.h>
Glauber Costab7454ad2012-10-19 18:20:25 +040018#include <linux/seq_file.h>
19#include <linux/proc_fs.h>
Waiman Longfcf8a1e2019-07-11 20:56:38 -070020#include <linux/debugfs.h>
Christoph Lameter039363f2012-07-06 15:25:10 -050021#include <asm/cacheflush.h>
22#include <asm/tlbflush.h>
23#include <asm/page.h>
Glauber Costa2633d7a2012-12-18 14:22:34 -080024#include <linux/memcontrol.h>
Andrey Ryabinin928cec92014-08-06 16:04:44 -070025
26#define CREATE_TRACE_POINTS
Christoph Lameterf1b6eb62013-09-04 16:35:34 +000027#include <trace/events/kmem.h>
Christoph Lameter039363f2012-07-06 15:25:10 -050028
Christoph Lameter97d06602012-07-06 15:25:11 -050029#include "slab.h"
30
31enum slab_state slab_state;
Christoph Lameter18004c52012-07-06 15:25:12 -050032LIST_HEAD(slab_caches);
33DEFINE_MUTEX(slab_mutex);
Christoph Lameter9b030cb2012-09-05 00:20:33 +000034struct kmem_cache *kmem_cache;
Christoph Lameter97d06602012-07-06 15:25:11 -050035
Kees Cook2d891fb2017-11-30 13:04:32 -080036#ifdef CONFIG_HARDENED_USERCOPY
37bool usercopy_fallback __ro_after_init =
38 IS_ENABLED(CONFIG_HARDENED_USERCOPY_FALLBACK);
39module_param(usercopy_fallback, bool, 0400);
40MODULE_PARM_DESC(usercopy_fallback,
41 "WARN instead of reject usercopy whitelist violations");
42#endif
43
Tejun Heo657dc2f2017-02-22 15:41:14 -080044static LIST_HEAD(slab_caches_to_rcu_destroy);
45static void slab_caches_to_rcu_destroy_workfn(struct work_struct *work);
46static DECLARE_WORK(slab_caches_to_rcu_destroy_work,
47 slab_caches_to_rcu_destroy_workfn);
48
Joonsoo Kim07f361b2014-10-09 15:26:00 -070049/*
Joonsoo Kim423c9292014-10-09 15:26:22 -070050 * Set of flags that will prevent slab merging
51 */
52#define SLAB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -080053 SLAB_TRACE | SLAB_TYPESAFE_BY_RCU | SLAB_NOLEAKTRACE | \
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070054 SLAB_FAILSLAB | SLAB_KASAN)
Joonsoo Kim423c9292014-10-09 15:26:22 -070055
Vladimir Davydov230e9fc2016-01-14 15:18:15 -080056#define SLAB_MERGE_SAME (SLAB_RECLAIM_ACCOUNT | SLAB_CACHE_DMA | \
Nicolas Boichat6d6ea1e2019-03-28 20:43:42 -070057 SLAB_CACHE_DMA32 | SLAB_ACCOUNT)
Joonsoo Kim423c9292014-10-09 15:26:22 -070058
59/*
60 * Merge control. If this is set then no merging of slab caches will occur.
Joonsoo Kim423c9292014-10-09 15:26:22 -070061 */
Kees Cook7660a6f2017-07-06 15:36:40 -070062static bool slab_nomerge = !IS_ENABLED(CONFIG_SLAB_MERGE_DEFAULT);
Joonsoo Kim423c9292014-10-09 15:26:22 -070063
64static int __init setup_slab_nomerge(char *str)
65{
Kees Cook7660a6f2017-07-06 15:36:40 -070066 slab_nomerge = true;
Joonsoo Kim423c9292014-10-09 15:26:22 -070067 return 1;
68}
69
70#ifdef CONFIG_SLUB
71__setup_param("slub_nomerge", slub_nomerge, setup_slab_nomerge, 0);
72#endif
73
74__setup("slab_nomerge", setup_slab_nomerge);
75
76/*
Joonsoo Kim07f361b2014-10-09 15:26:00 -070077 * Determine the size of a slab object
78 */
79unsigned int kmem_cache_size(struct kmem_cache *s)
80{
81 return s->object_size;
82}
83EXPORT_SYMBOL(kmem_cache_size);
84
Shuah Khan77be4b12012-08-16 00:09:46 -070085#ifdef CONFIG_DEBUG_VM
Alexey Dobriyanf4957d52018-04-05 16:20:37 -070086static int kmem_cache_sanity_check(const char *name, unsigned int size)
Shuah Khan77be4b12012-08-16 00:09:46 -070087{
Shuah Khan77be4b12012-08-16 00:09:46 -070088 if (!name || in_interrupt() || size < sizeof(void *) ||
89 size > KMALLOC_MAX_SIZE) {
90 pr_err("kmem_cache_create(%s) integrity check failed\n", name);
91 return -EINVAL;
92 }
93
Shuah Khan77be4b12012-08-16 00:09:46 -070094 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
95 return 0;
96}
97#else
Alexey Dobriyanf4957d52018-04-05 16:20:37 -070098static inline int kmem_cache_sanity_check(const char *name, unsigned int size)
Shuah Khan77be4b12012-08-16 00:09:46 -070099{
100 return 0;
101}
102#endif
103
Christoph Lameter484748f2015-09-04 15:45:34 -0700104void __kmem_cache_free_bulk(struct kmem_cache *s, size_t nr, void **p)
105{
106 size_t i;
107
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -0700108 for (i = 0; i < nr; i++) {
109 if (s)
110 kmem_cache_free(s, p[i]);
111 else
112 kfree(p[i]);
113 }
Christoph Lameter484748f2015-09-04 15:45:34 -0700114}
115
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800116int __kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t nr,
Christoph Lameter484748f2015-09-04 15:45:34 -0700117 void **p)
118{
119 size_t i;
120
121 for (i = 0; i < nr; i++) {
122 void *x = p[i] = kmem_cache_alloc(s, flags);
123 if (!x) {
124 __kmem_cache_free_bulk(s, i, p);
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800125 return 0;
Christoph Lameter484748f2015-09-04 15:45:34 -0700126 }
127 }
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -0800128 return i;
Christoph Lameter484748f2015-09-04 15:45:34 -0700129}
130
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700131#ifdef CONFIG_MEMCG_KMEM
Tejun Heo510ded32017-02-22 15:41:24 -0800132
133LIST_HEAD(slab_root_caches);
Roman Gushchin63b02ef2019-07-11 20:56:24 -0700134static DEFINE_SPINLOCK(memcg_kmem_wq_lock);
Tejun Heo510ded32017-02-22 15:41:24 -0800135
Roman Gushchinf0a3a242019-07-11 20:56:27 -0700136static void kmemcg_cache_shutdown(struct percpu_ref *percpu_ref);
137
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800138void slab_init_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700139{
Tejun Heo9eeadc82017-02-22 15:41:17 -0800140 s->memcg_params.root_cache = NULL;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800141 RCU_INIT_POINTER(s->memcg_params.memcg_caches, NULL);
Tejun Heo9eeadc82017-02-22 15:41:17 -0800142 INIT_LIST_HEAD(&s->memcg_params.children);
Shakeel Butt92ee3832018-06-14 15:26:27 -0700143 s->memcg_params.dying = false;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800144}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700145
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800146static int init_memcg_params(struct kmem_cache *s,
Roman Gushchinc03914b2019-07-11 20:56:02 -0700147 struct kmem_cache *root_cache)
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800148{
149 struct memcg_cache_array *arr;
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700150
Tejun Heo9eeadc82017-02-22 15:41:17 -0800151 if (root_cache) {
Roman Gushchinf0a3a242019-07-11 20:56:27 -0700152 int ret = percpu_ref_init(&s->memcg_params.refcnt,
153 kmemcg_cache_shutdown,
154 0, GFP_KERNEL);
155 if (ret)
156 return ret;
157
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800158 s->memcg_params.root_cache = root_cache;
Tejun Heo9eeadc82017-02-22 15:41:17 -0800159 INIT_LIST_HEAD(&s->memcg_params.children_node);
Tejun Heobc2791f2017-02-22 15:41:21 -0800160 INIT_LIST_HEAD(&s->memcg_params.kmem_caches_node);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800161 return 0;
162 }
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700163
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800164 slab_init_memcg_params(s);
165
166 if (!memcg_nr_cache_ids)
167 return 0;
168
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700169 arr = kvzalloc(sizeof(struct memcg_cache_array) +
170 memcg_nr_cache_ids * sizeof(void *),
171 GFP_KERNEL);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800172 if (!arr)
173 return -ENOMEM;
174
175 RCU_INIT_POINTER(s->memcg_params.memcg_caches, arr);
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700176 return 0;
177}
178
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800179static void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700180{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800181 if (is_root_cache(s))
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700182 kvfree(rcu_access_pointer(s->memcg_params.memcg_caches));
Roman Gushchinf0a3a242019-07-11 20:56:27 -0700183 else
184 percpu_ref_exit(&s->memcg_params.refcnt);
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700185}
186
187static void free_memcg_params(struct rcu_head *rcu)
188{
189 struct memcg_cache_array *old;
190
191 old = container_of(rcu, struct memcg_cache_array, rcu);
192 kvfree(old);
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700193}
194
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800195static int update_memcg_params(struct kmem_cache *s, int new_array_size)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700196{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800197 struct memcg_cache_array *old, *new;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700198
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700199 new = kvzalloc(sizeof(struct memcg_cache_array) +
200 new_array_size * sizeof(void *), GFP_KERNEL);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800201 if (!new)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700202 return -ENOMEM;
203
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800204 old = rcu_dereference_protected(s->memcg_params.memcg_caches,
205 lockdep_is_held(&slab_mutex));
206 if (old)
207 memcpy(new->entries, old->entries,
208 memcg_nr_cache_ids * sizeof(void *));
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700209
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800210 rcu_assign_pointer(s->memcg_params.memcg_caches, new);
211 if (old)
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700212 call_rcu(&old->rcu, free_memcg_params);
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700213 return 0;
214}
215
Glauber Costa55007d82012-12-18 14:22:38 -0800216int memcg_update_all_caches(int num_memcgs)
217{
218 struct kmem_cache *s;
219 int ret = 0;
Glauber Costa55007d82012-12-18 14:22:38 -0800220
Vladimir Davydov05257a12015-02-12 14:59:01 -0800221 mutex_lock(&slab_mutex);
Tejun Heo510ded32017-02-22 15:41:24 -0800222 list_for_each_entry(s, &slab_root_caches, root_caches_node) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800223 ret = update_memcg_params(s, num_memcgs);
Glauber Costa55007d82012-12-18 14:22:38 -0800224 /*
Glauber Costa55007d82012-12-18 14:22:38 -0800225 * Instead of freeing the memory, we'll just leave the caches
226 * up to this point in an updated state.
227 */
228 if (ret)
Vladimir Davydov05257a12015-02-12 14:59:01 -0800229 break;
Glauber Costa55007d82012-12-18 14:22:38 -0800230 }
Glauber Costa55007d82012-12-18 14:22:38 -0800231 mutex_unlock(&slab_mutex);
232 return ret;
233}
Tejun Heo657dc2f2017-02-22 15:41:14 -0800234
Roman Gushchinc03914b2019-07-11 20:56:02 -0700235void memcg_link_cache(struct kmem_cache *s, struct mem_cgroup *memcg)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800236{
Tejun Heo510ded32017-02-22 15:41:24 -0800237 if (is_root_cache(s)) {
238 list_add(&s->root_caches_node, &slab_root_caches);
239 } else {
Roman Gushchinf0a3a242019-07-11 20:56:27 -0700240 css_get(&memcg->css);
Roman Gushchinc03914b2019-07-11 20:56:02 -0700241 s->memcg_params.memcg = memcg;
Tejun Heo510ded32017-02-22 15:41:24 -0800242 list_add(&s->memcg_params.children_node,
243 &s->memcg_params.root_cache->memcg_params.children);
244 list_add(&s->memcg_params.kmem_caches_node,
245 &s->memcg_params.memcg->kmem_caches);
246 }
247}
248
249static void memcg_unlink_cache(struct kmem_cache *s)
250{
251 if (is_root_cache(s)) {
252 list_del(&s->root_caches_node);
253 } else {
254 list_del(&s->memcg_params.children_node);
255 list_del(&s->memcg_params.kmem_caches_node);
Roman Gushchinfb2f2b02019-07-11 20:56:34 -0700256 mem_cgroup_put(s->memcg_params.memcg);
257 WRITE_ONCE(s->memcg_params.memcg, NULL);
Tejun Heo510ded32017-02-22 15:41:24 -0800258 }
Tejun Heo657dc2f2017-02-22 15:41:14 -0800259}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700260#else
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800261static inline int init_memcg_params(struct kmem_cache *s,
Roman Gushchinc03914b2019-07-11 20:56:02 -0700262 struct kmem_cache *root_cache)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700263{
264 return 0;
265}
266
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800267static inline void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700268{
269}
Tejun Heo657dc2f2017-02-22 15:41:14 -0800270
Tejun Heo510ded32017-02-22 15:41:24 -0800271static inline void memcg_unlink_cache(struct kmem_cache *s)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800272{
273}
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700274#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa55007d82012-12-18 14:22:38 -0800275
Christoph Lameter039363f2012-07-06 15:25:10 -0500276/*
Byongho Lee692ae742018-01-31 16:15:36 -0800277 * Figure out what the alignment of the objects will be given a set of
278 * flags, a user specified alignment and the size of the objects.
279 */
Alexey Dobriyanf4957d52018-04-05 16:20:37 -0700280static unsigned int calculate_alignment(slab_flags_t flags,
281 unsigned int align, unsigned int size)
Byongho Lee692ae742018-01-31 16:15:36 -0800282{
283 /*
284 * If the user wants hardware cache aligned objects then follow that
285 * suggestion if the object is sufficiently large.
286 *
287 * The hardware cache alignment cannot override the specified
288 * alignment though. If that is greater then use it.
289 */
290 if (flags & SLAB_HWCACHE_ALIGN) {
Alexey Dobriyanf4957d52018-04-05 16:20:37 -0700291 unsigned int ralign;
Byongho Lee692ae742018-01-31 16:15:36 -0800292
293 ralign = cache_line_size();
294 while (size <= ralign / 2)
295 ralign /= 2;
296 align = max(align, ralign);
297 }
298
299 if (align < ARCH_SLAB_MINALIGN)
300 align = ARCH_SLAB_MINALIGN;
301
302 return ALIGN(align, sizeof(void *));
303}
304
305/*
Joonsoo Kim423c9292014-10-09 15:26:22 -0700306 * Find a mergeable slab cache
307 */
308int slab_unmergeable(struct kmem_cache *s)
309{
310 if (slab_nomerge || (s->flags & SLAB_NEVER_MERGE))
311 return 1;
312
313 if (!is_root_cache(s))
314 return 1;
315
316 if (s->ctor)
317 return 1;
318
David Windsor8eb82842017-06-10 22:50:28 -0400319 if (s->usersize)
320 return 1;
321
Joonsoo Kim423c9292014-10-09 15:26:22 -0700322 /*
323 * We may have set a slab to be unmergeable during bootstrap.
324 */
325 if (s->refcount < 0)
326 return 1;
327
328 return 0;
329}
330
Alexey Dobriyanf4957d52018-04-05 16:20:37 -0700331struct kmem_cache *find_mergeable(unsigned int size, unsigned int align,
Alexey Dobriyand50112e2017-11-15 17:32:18 -0800332 slab_flags_t flags, const char *name, void (*ctor)(void *))
Joonsoo Kim423c9292014-10-09 15:26:22 -0700333{
334 struct kmem_cache *s;
335
Grygorii Maistrenkoc6e28892017-02-22 15:40:59 -0800336 if (slab_nomerge)
Joonsoo Kim423c9292014-10-09 15:26:22 -0700337 return NULL;
338
339 if (ctor)
340 return NULL;
341
342 size = ALIGN(size, sizeof(void *));
343 align = calculate_alignment(flags, align, size);
344 size = ALIGN(size, align);
345 flags = kmem_cache_flags(size, flags, name, NULL);
346
Grygorii Maistrenkoc6e28892017-02-22 15:40:59 -0800347 if (flags & SLAB_NEVER_MERGE)
348 return NULL;
349
Tejun Heo510ded32017-02-22 15:41:24 -0800350 list_for_each_entry_reverse(s, &slab_root_caches, root_caches_node) {
Joonsoo Kim423c9292014-10-09 15:26:22 -0700351 if (slab_unmergeable(s))
352 continue;
353
354 if (size > s->size)
355 continue;
356
357 if ((flags & SLAB_MERGE_SAME) != (s->flags & SLAB_MERGE_SAME))
358 continue;
359 /*
360 * Check if alignment is compatible.
361 * Courtesy of Adrian Drzewiecki
362 */
363 if ((s->size & ~(align - 1)) != s->size)
364 continue;
365
366 if (s->size - size >= sizeof(void *))
367 continue;
368
Joonsoo Kim95069ac82014-11-13 15:19:25 -0800369 if (IS_ENABLED(CONFIG_SLAB) && align &&
370 (align > s->align || s->align % align))
371 continue;
372
Joonsoo Kim423c9292014-10-09 15:26:22 -0700373 return s;
374 }
375 return NULL;
376}
377
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800378static struct kmem_cache *create_cache(const char *name,
Shakeel Butt613a5eb2018-04-05 16:21:50 -0700379 unsigned int object_size, unsigned int align,
Alexey Dobriyan7bbdb812018-04-05 16:21:31 -0700380 slab_flags_t flags, unsigned int useroffset,
381 unsigned int usersize, void (*ctor)(void *),
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800382 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700383{
384 struct kmem_cache *s;
385 int err;
386
David Windsor8eb82842017-06-10 22:50:28 -0400387 if (WARN_ON(useroffset + usersize > object_size))
388 useroffset = usersize = 0;
389
Vladimir Davydov794b1242014-04-07 15:39:26 -0700390 err = -ENOMEM;
391 s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL);
392 if (!s)
393 goto out;
394
395 s->name = name;
Shakeel Butt613a5eb2018-04-05 16:21:50 -0700396 s->size = s->object_size = object_size;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700397 s->align = align;
398 s->ctor = ctor;
David Windsor8eb82842017-06-10 22:50:28 -0400399 s->useroffset = useroffset;
400 s->usersize = usersize;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700401
Roman Gushchinc03914b2019-07-11 20:56:02 -0700402 err = init_memcg_params(s, root_cache);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700403 if (err)
404 goto out_free_cache;
405
406 err = __kmem_cache_create(s, flags);
407 if (err)
408 goto out_free_cache;
409
410 s->refcount = 1;
411 list_add(&s->list, &slab_caches);
Roman Gushchinc03914b2019-07-11 20:56:02 -0700412 memcg_link_cache(s, memcg);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700413out:
414 if (err)
415 return ERR_PTR(err);
416 return s;
417
418out_free_cache:
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800419 destroy_memcg_params(s);
Vaishali Thakkar7c4da062015-02-10 14:09:40 -0800420 kmem_cache_free(kmem_cache, s);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700421 goto out;
422}
Christoph Lameter45906852012-11-28 16:23:16 +0000423
Mike Rapoportf4969902018-12-06 23:13:00 +0200424/**
425 * kmem_cache_create_usercopy - Create a cache with a region suitable
426 * for copying to userspace
Christoph Lameter039363f2012-07-06 15:25:10 -0500427 * @name: A string which is used in /proc/slabinfo to identify this cache.
428 * @size: The size of objects to be created in this cache.
429 * @align: The required alignment for the objects.
430 * @flags: SLAB flags
David Windsor8eb82842017-06-10 22:50:28 -0400431 * @useroffset: Usercopy region offset
432 * @usersize: Usercopy region size
Christoph Lameter039363f2012-07-06 15:25:10 -0500433 * @ctor: A constructor for the objects.
434 *
Christoph Lameter039363f2012-07-06 15:25:10 -0500435 * Cannot be called within a interrupt, but can be interrupted.
436 * The @ctor is run when new pages are allocated by the cache.
437 *
438 * The flags are
439 *
440 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
441 * to catch references to uninitialised memory.
442 *
Mike Rapoportf4969902018-12-06 23:13:00 +0200443 * %SLAB_RED_ZONE - Insert `Red` zones around the allocated memory to check
Christoph Lameter039363f2012-07-06 15:25:10 -0500444 * for buffer overruns.
445 *
446 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
447 * cacheline. This can be beneficial if you're counting cycles as closely
448 * as davem.
Mike Rapoportf4969902018-12-06 23:13:00 +0200449 *
450 * Return: a pointer to the cache on success, NULL on failure.
Christoph Lameter039363f2012-07-06 15:25:10 -0500451 */
Glauber Costa2633d7a2012-12-18 14:22:34 -0800452struct kmem_cache *
Alexey Dobriyanf4957d52018-04-05 16:20:37 -0700453kmem_cache_create_usercopy(const char *name,
454 unsigned int size, unsigned int align,
Alexey Dobriyan7bbdb812018-04-05 16:21:31 -0700455 slab_flags_t flags,
456 unsigned int useroffset, unsigned int usersize,
David Windsor8eb82842017-06-10 22:50:28 -0400457 void (*ctor)(void *))
Christoph Lameter039363f2012-07-06 15:25:10 -0500458{
Alexandru Moise40911a72015-11-05 18:45:43 -0800459 struct kmem_cache *s = NULL;
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800460 const char *cache_name;
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800461 int err;
Christoph Lameter039363f2012-07-06 15:25:10 -0500462
Pekka Enbergb9205362012-08-16 10:12:18 +0300463 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700464 get_online_mems();
Vladimir Davydov05257a12015-02-12 14:59:01 -0800465 memcg_get_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700466
Pekka Enbergb9205362012-08-16 10:12:18 +0300467 mutex_lock(&slab_mutex);
Christoph Lameter686d5502012-09-05 00:20:33 +0000468
Vladimir Davydov794b1242014-04-07 15:39:26 -0700469 err = kmem_cache_sanity_check(name, size);
Andrew Morton3aa24f52014-10-09 15:25:58 -0700470 if (err) {
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800471 goto out_unlock;
Andrew Morton3aa24f52014-10-09 15:25:58 -0700472 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000473
Thomas Garniere70954f2016-12-12 16:41:38 -0800474 /* Refuse requests with allocator specific flags */
475 if (flags & ~SLAB_FLAGS_PERMITTED) {
476 err = -EINVAL;
477 goto out_unlock;
478 }
479
Glauber Costad8843922012-10-17 15:36:51 +0400480 /*
481 * Some allocators will constraint the set of valid flags to a subset
482 * of all flags. We expect them to define CACHE_CREATE_MASK in this
483 * case, and we'll just provide them with a sanitized version of the
484 * passed flags.
485 */
486 flags &= CACHE_CREATE_MASK;
Christoph Lameter686d5502012-09-05 00:20:33 +0000487
David Windsor8eb82842017-06-10 22:50:28 -0400488 /* Fail closed on bad usersize of useroffset values. */
489 if (WARN_ON(!usersize && useroffset) ||
490 WARN_ON(size < usersize || size - usersize < useroffset))
491 usersize = useroffset = 0;
492
493 if (!usersize)
494 s = __kmem_cache_alias(name, size, align, flags, ctor);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700495 if (s)
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800496 goto out_unlock;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800497
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800498 cache_name = kstrdup_const(name, GFP_KERNEL);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700499 if (!cache_name) {
500 err = -ENOMEM;
501 goto out_unlock;
502 }
Glauber Costa2633d7a2012-12-18 14:22:34 -0800503
Shakeel Butt613a5eb2018-04-05 16:21:50 -0700504 s = create_cache(cache_name, size,
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800505 calculate_alignment(flags, align, size),
David Windsor8eb82842017-06-10 22:50:28 -0400506 flags, useroffset, usersize, ctor, NULL, NULL);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700507 if (IS_ERR(s)) {
508 err = PTR_ERR(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800509 kfree_const(cache_name);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700510 }
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800511
512out_unlock:
Christoph Lameter20cea962012-07-06 15:25:13 -0500513 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700514
Vladimir Davydov05257a12015-02-12 14:59:01 -0800515 memcg_put_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700516 put_online_mems();
Christoph Lameter20cea962012-07-06 15:25:13 -0500517 put_online_cpus();
518
Dave Jonesba3253c2014-01-29 14:05:48 -0800519 if (err) {
Christoph Lameter686d5502012-09-05 00:20:33 +0000520 if (flags & SLAB_PANIC)
521 panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n",
522 name, err);
523 else {
Joe Perches11705322016-03-17 14:19:50 -0700524 pr_warn("kmem_cache_create(%s) failed with error %d\n",
Christoph Lameter686d5502012-09-05 00:20:33 +0000525 name, err);
526 dump_stack();
527 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000528 return NULL;
529 }
Christoph Lameter039363f2012-07-06 15:25:10 -0500530 return s;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800531}
David Windsor8eb82842017-06-10 22:50:28 -0400532EXPORT_SYMBOL(kmem_cache_create_usercopy);
533
Mike Rapoportf4969902018-12-06 23:13:00 +0200534/**
535 * kmem_cache_create - Create a cache.
536 * @name: A string which is used in /proc/slabinfo to identify this cache.
537 * @size: The size of objects to be created in this cache.
538 * @align: The required alignment for the objects.
539 * @flags: SLAB flags
540 * @ctor: A constructor for the objects.
541 *
542 * Cannot be called within a interrupt, but can be interrupted.
543 * The @ctor is run when new pages are allocated by the cache.
544 *
545 * The flags are
546 *
547 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
548 * to catch references to uninitialised memory.
549 *
550 * %SLAB_RED_ZONE - Insert `Red` zones around the allocated memory to check
551 * for buffer overruns.
552 *
553 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
554 * cacheline. This can be beneficial if you're counting cycles as closely
555 * as davem.
556 *
557 * Return: a pointer to the cache on success, NULL on failure.
558 */
David Windsor8eb82842017-06-10 22:50:28 -0400559struct kmem_cache *
Alexey Dobriyanf4957d52018-04-05 16:20:37 -0700560kmem_cache_create(const char *name, unsigned int size, unsigned int align,
David Windsor8eb82842017-06-10 22:50:28 -0400561 slab_flags_t flags, void (*ctor)(void *))
562{
Kees Cook6d07d1c2017-06-14 16:12:04 -0700563 return kmem_cache_create_usercopy(name, size, align, flags, 0, 0,
David Windsor8eb82842017-06-10 22:50:28 -0400564 ctor);
565}
Christoph Lameter039363f2012-07-06 15:25:10 -0500566EXPORT_SYMBOL(kmem_cache_create);
Christoph Lameter97d06602012-07-06 15:25:11 -0500567
Tejun Heo657dc2f2017-02-22 15:41:14 -0800568static void slab_caches_to_rcu_destroy_workfn(struct work_struct *work)
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800569{
Tejun Heo657dc2f2017-02-22 15:41:14 -0800570 LIST_HEAD(to_destroy);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800571 struct kmem_cache *s, *s2;
572
Tejun Heo657dc2f2017-02-22 15:41:14 -0800573 /*
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -0800574 * On destruction, SLAB_TYPESAFE_BY_RCU kmem_caches are put on the
Tejun Heo657dc2f2017-02-22 15:41:14 -0800575 * @slab_caches_to_rcu_destroy list. The slab pages are freed
576 * through RCU and and the associated kmem_cache are dereferenced
577 * while freeing the pages, so the kmem_caches should be freed only
578 * after the pending RCU operations are finished. As rcu_barrier()
579 * is a pretty slow operation, we batch all pending destructions
580 * asynchronously.
581 */
582 mutex_lock(&slab_mutex);
583 list_splice_init(&slab_caches_to_rcu_destroy, &to_destroy);
584 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800585
Tejun Heo657dc2f2017-02-22 15:41:14 -0800586 if (list_empty(&to_destroy))
587 return;
588
589 rcu_barrier();
590
591 list_for_each_entry_safe(s, s2, &to_destroy, list) {
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800592#ifdef SLAB_SUPPORTS_SYSFS
Tejun Heobf5eb3d2017-02-22 15:41:11 -0800593 sysfs_slab_release(s);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800594#else
595 slab_kmem_cache_release(s);
596#endif
597 }
598}
599
Tejun Heo657dc2f2017-02-22 15:41:14 -0800600static int shutdown_cache(struct kmem_cache *s)
601{
Greg Thelenf9fa1d92017-02-24 15:00:05 -0800602 /* free asan quarantined objects */
603 kasan_cache_shutdown(s);
604
Tejun Heo657dc2f2017-02-22 15:41:14 -0800605 if (__kmem_cache_shutdown(s) != 0)
606 return -EBUSY;
607
Tejun Heo510ded32017-02-22 15:41:24 -0800608 memcg_unlink_cache(s);
Tejun Heo657dc2f2017-02-22 15:41:14 -0800609 list_del(&s->list);
Tejun Heo657dc2f2017-02-22 15:41:14 -0800610
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -0800611 if (s->flags & SLAB_TYPESAFE_BY_RCU) {
Mikulas Patockad50d82f2018-06-27 23:26:09 -0700612#ifdef SLAB_SUPPORTS_SYSFS
613 sysfs_slab_unlink(s);
614#endif
Tejun Heo657dc2f2017-02-22 15:41:14 -0800615 list_add_tail(&s->list, &slab_caches_to_rcu_destroy);
616 schedule_work(&slab_caches_to_rcu_destroy_work);
617 } else {
618#ifdef SLAB_SUPPORTS_SYSFS
Mikulas Patockad50d82f2018-06-27 23:26:09 -0700619 sysfs_slab_unlink(s);
Tejun Heo657dc2f2017-02-22 15:41:14 -0800620 sysfs_slab_release(s);
621#else
622 slab_kmem_cache_release(s);
623#endif
624 }
625
626 return 0;
627}
628
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700629#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydov794b1242014-04-07 15:39:26 -0700630/*
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700631 * memcg_create_kmem_cache - Create a cache for a memory cgroup.
Vladimir Davydov794b1242014-04-07 15:39:26 -0700632 * @memcg: The memory cgroup the new cache is for.
633 * @root_cache: The parent of the new cache.
634 *
635 * This function attempts to create a kmem cache that will serve allocation
636 * requests going from @memcg to @root_cache. The new cache inherits properties
637 * from its parent.
638 */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800639void memcg_create_kmem_cache(struct mem_cgroup *memcg,
640 struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700641{
Vladimir Davydov3e0350a2015-02-10 14:11:44 -0800642 static char memcg_name_buf[NAME_MAX + 1]; /* protected by slab_mutex */
Michal Hocko33398cf2015-09-08 15:01:02 -0700643 struct cgroup_subsys_state *css = &memcg->css;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800644 struct memcg_cache_array *arr;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700645 struct kmem_cache *s = NULL;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700646 char *cache_name;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800647 int idx;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700648
649 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700650 get_online_mems();
651
Vladimir Davydov794b1242014-04-07 15:39:26 -0700652 mutex_lock(&slab_mutex);
653
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800654 /*
Johannes Weiner567e9ab2016-01-20 15:02:24 -0800655 * The memory cgroup could have been offlined while the cache
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800656 * creation work was pending.
657 */
Roman Gushchin57033292019-07-11 20:56:20 -0700658 if (memcg->kmem_state != KMEM_ONLINE)
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800659 goto out_unlock;
660
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800661 idx = memcg_cache_id(memcg);
662 arr = rcu_dereference_protected(root_cache->memcg_params.memcg_caches,
663 lockdep_is_held(&slab_mutex));
664
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800665 /*
666 * Since per-memcg caches are created asynchronously on first
667 * allocation (see memcg_kmem_get_cache()), several threads can try to
668 * create the same cache, but only one of them may succeed.
669 */
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800670 if (arr->entries[idx])
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800671 goto out_unlock;
672
Vladimir Davydovf1008362015-02-12 14:59:29 -0800673 cgroup_name(css->cgroup, memcg_name_buf, sizeof(memcg_name_buf));
Johannes Weiner73f576c2016-07-20 15:44:57 -0700674 cache_name = kasprintf(GFP_KERNEL, "%s(%llu:%s)", root_cache->name,
675 css->serial_nr, memcg_name_buf);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700676 if (!cache_name)
677 goto out_unlock;
678
Vladimir Davydovc9a77a72015-11-05 18:45:08 -0800679 s = create_cache(cache_name, root_cache->object_size,
Shakeel Butt613a5eb2018-04-05 16:21:50 -0700680 root_cache->align,
Greg Thelenf773e362016-11-10 10:46:41 -0800681 root_cache->flags & CACHE_CREATE_MASK,
David Windsor8eb82842017-06-10 22:50:28 -0400682 root_cache->useroffset, root_cache->usersize,
Greg Thelenf773e362016-11-10 10:46:41 -0800683 root_cache->ctor, memcg, root_cache);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800684 /*
685 * If we could not create a memcg cache, do not complain, because
686 * that's not critical at all as we can always proceed with the root
687 * cache.
688 */
Vladimir Davydovbd673142014-06-04 16:07:40 -0700689 if (IS_ERR(s)) {
Vladimir Davydov794b1242014-04-07 15:39:26 -0700690 kfree(cache_name);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800691 goto out_unlock;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700692 }
Vladimir Davydov794b1242014-04-07 15:39:26 -0700693
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800694 /*
Roman Gushchinf0a3a242019-07-11 20:56:27 -0700695 * Since readers won't lock (see memcg_kmem_get_cache()), we need a
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800696 * barrier here to ensure nobody will see the kmem_cache partially
697 * initialized.
698 */
699 smp_wmb();
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800700 arr->entries[idx] = s;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800701
Vladimir Davydov794b1242014-04-07 15:39:26 -0700702out_unlock:
703 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700704
705 put_online_mems();
Vladimir Davydov794b1242014-04-07 15:39:26 -0700706 put_online_cpus();
707}
Vladimir Davydovb8529902014-04-07 15:39:28 -0700708
Roman Gushchin0b14e8a2019-07-11 20:56:06 -0700709static void kmemcg_workfn(struct work_struct *work)
Tejun Heo01fb58b2017-02-22 15:41:30 -0800710{
711 struct kmem_cache *s = container_of(work, struct kmem_cache,
Roman Gushchin0b14e8a2019-07-11 20:56:06 -0700712 memcg_params.work);
Tejun Heo01fb58b2017-02-22 15:41:30 -0800713
714 get_online_cpus();
715 get_online_mems();
716
717 mutex_lock(&slab_mutex);
Roman Gushchin0b14e8a2019-07-11 20:56:06 -0700718 s->memcg_params.work_fn(s);
Tejun Heo01fb58b2017-02-22 15:41:30 -0800719 mutex_unlock(&slab_mutex);
720
721 put_online_mems();
722 put_online_cpus();
Tejun Heo01fb58b2017-02-22 15:41:30 -0800723}
724
Roman Gushchin0b14e8a2019-07-11 20:56:06 -0700725static void kmemcg_rcufn(struct rcu_head *head)
Tejun Heo01fb58b2017-02-22 15:41:30 -0800726{
727 struct kmem_cache *s = container_of(head, struct kmem_cache,
Roman Gushchin0b14e8a2019-07-11 20:56:06 -0700728 memcg_params.rcu_head);
Tejun Heo01fb58b2017-02-22 15:41:30 -0800729
730 /*
Roman Gushchin0b14e8a2019-07-11 20:56:06 -0700731 * We need to grab blocking locks. Bounce to ->work. The
Tejun Heo01fb58b2017-02-22 15:41:30 -0800732 * work item shares the space with the RCU head and can't be
733 * initialized eariler.
734 */
Roman Gushchin0b14e8a2019-07-11 20:56:06 -0700735 INIT_WORK(&s->memcg_params.work, kmemcg_workfn);
736 queue_work(memcg_kmem_cache_wq, &s->memcg_params.work);
Tejun Heo01fb58b2017-02-22 15:41:30 -0800737}
738
Roman Gushchinf0a3a242019-07-11 20:56:27 -0700739static void kmemcg_cache_shutdown_fn(struct kmem_cache *s)
740{
741 WARN_ON(shutdown_cache(s));
742}
743
744static void kmemcg_cache_shutdown(struct percpu_ref *percpu_ref)
745{
746 struct kmem_cache *s = container_of(percpu_ref, struct kmem_cache,
747 memcg_params.refcnt);
748 unsigned long flags;
749
750 spin_lock_irqsave(&memcg_kmem_wq_lock, flags);
751 if (s->memcg_params.root_cache->memcg_params.dying)
752 goto unlock;
753
754 s->memcg_params.work_fn = kmemcg_cache_shutdown_fn;
755 INIT_WORK(&s->memcg_params.work, kmemcg_workfn);
756 queue_work(memcg_kmem_cache_wq, &s->memcg_params.work);
757
758unlock:
759 spin_unlock_irqrestore(&memcg_kmem_wq_lock, flags);
760}
761
762static void kmemcg_cache_deactivate_after_rcu(struct kmem_cache *s)
763{
764 __kmemcg_cache_deactivate_after_rcu(s);
765 percpu_ref_kill(&s->memcg_params.refcnt);
766}
767
Roman Gushchin43486692019-07-11 20:56:09 -0700768static void kmemcg_cache_deactivate(struct kmem_cache *s)
Tejun Heo01fb58b2017-02-22 15:41:30 -0800769{
Roman Gushchinf0a3a242019-07-11 20:56:27 -0700770 if (WARN_ON_ONCE(is_root_cache(s)))
Tejun Heo01fb58b2017-02-22 15:41:30 -0800771 return;
772
Roman Gushchin43486692019-07-11 20:56:09 -0700773 __kmemcg_cache_deactivate(s);
Waiman Longfcf8a1e2019-07-11 20:56:38 -0700774 s->flags |= SLAB_DEACTIVATED;
Roman Gushchin43486692019-07-11 20:56:09 -0700775
Roman Gushchin63b02ef2019-07-11 20:56:24 -0700776 /*
777 * memcg_kmem_wq_lock is used to synchronize memcg_params.dying
778 * flag and make sure that no new kmem_cache deactivation tasks
779 * are queued (see flush_memcg_workqueue() ).
780 */
781 spin_lock_irq(&memcg_kmem_wq_lock);
Shakeel Butt92ee3832018-06-14 15:26:27 -0700782 if (s->memcg_params.root_cache->memcg_params.dying)
Roman Gushchin63b02ef2019-07-11 20:56:24 -0700783 goto unlock;
Shakeel Butt92ee3832018-06-14 15:26:27 -0700784
Roman Gushchinf0a3a242019-07-11 20:56:27 -0700785 s->memcg_params.work_fn = kmemcg_cache_deactivate_after_rcu;
Roman Gushchin0b14e8a2019-07-11 20:56:06 -0700786 call_rcu(&s->memcg_params.rcu_head, kmemcg_rcufn);
Roman Gushchin63b02ef2019-07-11 20:56:24 -0700787unlock:
788 spin_unlock_irq(&memcg_kmem_wq_lock);
Tejun Heo01fb58b2017-02-22 15:41:30 -0800789}
790
Roman Gushchinfb2f2b02019-07-11 20:56:34 -0700791void memcg_deactivate_kmem_caches(struct mem_cgroup *memcg,
792 struct mem_cgroup *parent)
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800793{
794 int idx;
795 struct memcg_cache_array *arr;
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800796 struct kmem_cache *s, *c;
Roman Gushchinfb2f2b02019-07-11 20:56:34 -0700797 unsigned int nr_reparented;
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800798
799 idx = memcg_cache_id(memcg);
800
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800801 get_online_cpus();
802 get_online_mems();
803
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800804 mutex_lock(&slab_mutex);
Tejun Heo510ded32017-02-22 15:41:24 -0800805 list_for_each_entry(s, &slab_root_caches, root_caches_node) {
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800806 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
807 lockdep_is_held(&slab_mutex));
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800808 c = arr->entries[idx];
809 if (!c)
810 continue;
811
Roman Gushchin43486692019-07-11 20:56:09 -0700812 kmemcg_cache_deactivate(c);
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800813 arr->entries[idx] = NULL;
814 }
Roman Gushchinfb2f2b02019-07-11 20:56:34 -0700815 nr_reparented = 0;
816 list_for_each_entry(s, &memcg->kmem_caches,
817 memcg_params.kmem_caches_node) {
818 WRITE_ONCE(s->memcg_params.memcg, parent);
819 css_put(&memcg->css);
820 nr_reparented++;
821 }
822 if (nr_reparented) {
823 list_splice_init(&memcg->kmem_caches,
824 &parent->kmem_caches);
825 css_get_many(&parent->css, nr_reparented);
826 }
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800827 mutex_unlock(&slab_mutex);
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800828
829 put_online_mems();
830 put_online_cpus();
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800831}
832
Tejun Heo657dc2f2017-02-22 15:41:14 -0800833static int shutdown_memcg_caches(struct kmem_cache *s)
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800834{
835 struct memcg_cache_array *arr;
836 struct kmem_cache *c, *c2;
837 LIST_HEAD(busy);
838 int i;
839
840 BUG_ON(!is_root_cache(s));
841
842 /*
843 * First, shutdown active caches, i.e. caches that belong to online
844 * memory cgroups.
845 */
846 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
847 lockdep_is_held(&slab_mutex));
848 for_each_memcg_cache_index(i) {
849 c = arr->entries[i];
850 if (!c)
851 continue;
Tejun Heo657dc2f2017-02-22 15:41:14 -0800852 if (shutdown_cache(c))
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800853 /*
854 * The cache still has objects. Move it to a temporary
855 * list so as not to try to destroy it for a second
856 * time while iterating over inactive caches below.
857 */
Tejun Heo9eeadc82017-02-22 15:41:17 -0800858 list_move(&c->memcg_params.children_node, &busy);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800859 else
860 /*
861 * The cache is empty and will be destroyed soon. Clear
862 * the pointer to it in the memcg_caches array so that
863 * it will never be accessed even if the root cache
864 * stays alive.
865 */
866 arr->entries[i] = NULL;
867 }
868
869 /*
870 * Second, shutdown all caches left from memory cgroups that are now
871 * offline.
872 */
Tejun Heo9eeadc82017-02-22 15:41:17 -0800873 list_for_each_entry_safe(c, c2, &s->memcg_params.children,
874 memcg_params.children_node)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800875 shutdown_cache(c);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800876
Tejun Heo9eeadc82017-02-22 15:41:17 -0800877 list_splice(&busy, &s->memcg_params.children);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800878
879 /*
880 * A cache being destroyed must be empty. In particular, this means
881 * that all per memcg caches attached to it must be empty too.
882 */
Tejun Heo9eeadc82017-02-22 15:41:17 -0800883 if (!list_empty(&s->memcg_params.children))
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800884 return -EBUSY;
885 return 0;
886}
Shakeel Butt92ee3832018-06-14 15:26:27 -0700887
888static void flush_memcg_workqueue(struct kmem_cache *s)
889{
Roman Gushchin63b02ef2019-07-11 20:56:24 -0700890 spin_lock_irq(&memcg_kmem_wq_lock);
Shakeel Butt92ee3832018-06-14 15:26:27 -0700891 s->memcg_params.dying = true;
Roman Gushchin63b02ef2019-07-11 20:56:24 -0700892 spin_unlock_irq(&memcg_kmem_wq_lock);
Shakeel Butt92ee3832018-06-14 15:26:27 -0700893
894 /*
Roman Gushchin43486692019-07-11 20:56:09 -0700895 * SLAB and SLUB deactivate the kmem_caches through call_rcu. Make
Shakeel Butt92ee3832018-06-14 15:26:27 -0700896 * sure all registered rcu callbacks have been invoked.
897 */
Roman Gushchin43486692019-07-11 20:56:09 -0700898 rcu_barrier();
Shakeel Butt92ee3832018-06-14 15:26:27 -0700899
900 /*
901 * SLAB and SLUB create memcg kmem_caches through workqueue and SLUB
902 * deactivates the memcg kmem_caches through workqueue. Make sure all
903 * previous workitems on workqueue are processed.
904 */
905 flush_workqueue(memcg_kmem_cache_wq);
906}
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800907#else
Tejun Heo657dc2f2017-02-22 15:41:14 -0800908static inline int shutdown_memcg_caches(struct kmem_cache *s)
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800909{
910 return 0;
911}
Shakeel Butt92ee3832018-06-14 15:26:27 -0700912
913static inline void flush_memcg_workqueue(struct kmem_cache *s)
914{
915}
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700916#endif /* CONFIG_MEMCG_KMEM */
Vladimir Davydov794b1242014-04-07 15:39:26 -0700917
Christoph Lameter41a21282014-05-06 12:50:08 -0700918void slab_kmem_cache_release(struct kmem_cache *s)
919{
Dmitry Safonov52b4b952016-02-17 13:11:37 -0800920 __kmem_cache_release(s);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800921 destroy_memcg_params(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800922 kfree_const(s->name);
Christoph Lameter41a21282014-05-06 12:50:08 -0700923 kmem_cache_free(kmem_cache, s);
924}
925
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000926void kmem_cache_destroy(struct kmem_cache *s)
927{
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800928 int err;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800929
Sergey Senozhatsky3942d292015-09-08 15:00:50 -0700930 if (unlikely(!s))
931 return;
932
Shakeel Butt92ee3832018-06-14 15:26:27 -0700933 flush_memcg_workqueue(s);
934
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000935 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700936 get_online_mems();
937
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000938 mutex_lock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700939
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000940 s->refcount--;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700941 if (s->refcount)
942 goto out_unlock;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000943
Tejun Heo657dc2f2017-02-22 15:41:14 -0800944 err = shutdown_memcg_caches(s);
Vladimir Davydovd60fdcc2015-11-05 18:45:11 -0800945 if (!err)
Tejun Heo657dc2f2017-02-22 15:41:14 -0800946 err = shutdown_cache(s);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700947
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800948 if (err) {
Joe Perches756a0252016-03-17 14:19:47 -0700949 pr_err("kmem_cache_destroy %s: Slab cache still has objects\n",
950 s->name);
Vladimir Davydovcd918c52015-11-05 18:45:14 -0800951 dump_stack();
952 }
Vladimir Davydovb8529902014-04-07 15:39:28 -0700953out_unlock:
954 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800955
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700956 put_online_mems();
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000957 put_online_cpus();
958}
959EXPORT_SYMBOL(kmem_cache_destroy);
960
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700961/**
962 * kmem_cache_shrink - Shrink a cache.
963 * @cachep: The cache to shrink.
964 *
965 * Releases as many slabs as possible for a cache.
966 * To help debugging, a zero exit status indicates all slabs were released.
Mike Rapoporta862f682019-03-05 15:48:42 -0800967 *
968 * Return: %0 if all slabs were released, non-zero otherwise
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700969 */
970int kmem_cache_shrink(struct kmem_cache *cachep)
971{
972 int ret;
973
974 get_online_cpus();
975 get_online_mems();
Alexander Potapenko55834c52016-05-20 16:59:11 -0700976 kasan_cache_shrink(cachep);
Tejun Heoc9fc5862017-02-22 15:41:27 -0800977 ret = __kmem_cache_shrink(cachep);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700978 put_online_mems();
979 put_online_cpus();
980 return ret;
981}
982EXPORT_SYMBOL(kmem_cache_shrink);
983
Waiman Long04f768a2019-09-23 15:33:46 -0700984/**
985 * kmem_cache_shrink_all - shrink a cache and all memcg caches for root cache
986 * @s: The cache pointer
987 */
988void kmem_cache_shrink_all(struct kmem_cache *s)
989{
990 struct kmem_cache *c;
991
992 if (!IS_ENABLED(CONFIG_MEMCG_KMEM) || !is_root_cache(s)) {
993 kmem_cache_shrink(s);
994 return;
995 }
996
997 get_online_cpus();
998 get_online_mems();
999 kasan_cache_shrink(s);
1000 __kmem_cache_shrink(s);
1001
1002 /*
1003 * We have to take the slab_mutex to protect from the memcg list
1004 * modification.
1005 */
1006 mutex_lock(&slab_mutex);
1007 for_each_memcg_cache(c, s) {
1008 /*
1009 * Don't need to shrink deactivated memcg caches.
1010 */
1011 if (s->flags & SLAB_DEACTIVATED)
1012 continue;
1013 kasan_cache_shrink(c);
1014 __kmem_cache_shrink(c);
1015 }
1016 mutex_unlock(&slab_mutex);
1017 put_online_mems();
1018 put_online_cpus();
1019}
1020
Denis Kirjanovfda90122015-11-05 18:44:59 -08001021bool slab_is_available(void)
Christoph Lameter97d06602012-07-06 15:25:11 -05001022{
1023 return slab_state >= UP;
1024}
Glauber Costab7454ad2012-10-19 18:20:25 +04001025
Christoph Lameter45530c42012-11-28 16:23:07 +00001026#ifndef CONFIG_SLOB
1027/* Create a cache during boot when no slab services are available yet */
Alexey Dobriyan361d5752018-04-05 16:20:33 -07001028void __init create_boot_cache(struct kmem_cache *s, const char *name,
1029 unsigned int size, slab_flags_t flags,
1030 unsigned int useroffset, unsigned int usersize)
Christoph Lameter45530c42012-11-28 16:23:07 +00001031{
1032 int err;
1033
1034 s->name = name;
1035 s->size = s->object_size = size;
Christoph Lameter45906852012-11-28 16:23:16 +00001036 s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size);
David Windsor8eb82842017-06-10 22:50:28 -04001037 s->useroffset = useroffset;
1038 s->usersize = usersize;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08001039
1040 slab_init_memcg_params(s);
1041
Christoph Lameter45530c42012-11-28 16:23:07 +00001042 err = __kmem_cache_create(s, flags);
1043
1044 if (err)
Alexey Dobriyan361d5752018-04-05 16:20:33 -07001045 panic("Creation of kmalloc slab %s size=%u failed. Reason %d\n",
Christoph Lameter45530c42012-11-28 16:23:07 +00001046 name, size, err);
1047
1048 s->refcount = -1; /* Exempt from merging for now */
1049}
1050
Alexey Dobriyan55de8b92018-04-05 16:20:29 -07001051struct kmem_cache *__init create_kmalloc_cache(const char *name,
1052 unsigned int size, slab_flags_t flags,
1053 unsigned int useroffset, unsigned int usersize)
Christoph Lameter45530c42012-11-28 16:23:07 +00001054{
1055 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
1056
1057 if (!s)
1058 panic("Out of memory when creating slab %s\n", name);
1059
David Windsor6c0c21a2017-06-10 22:50:47 -04001060 create_boot_cache(s, name, size, flags, useroffset, usersize);
Christoph Lameter45530c42012-11-28 16:23:07 +00001061 list_add(&s->list, &slab_caches);
Roman Gushchinc03914b2019-07-11 20:56:02 -07001062 memcg_link_cache(s, NULL);
Christoph Lameter45530c42012-11-28 16:23:07 +00001063 s->refcount = 1;
1064 return s;
1065}
1066
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07001067struct kmem_cache *
Arnd Bergmanna07057d2019-07-16 16:25:57 -07001068kmalloc_caches[NR_KMALLOC_TYPES][KMALLOC_SHIFT_HIGH + 1] __ro_after_init =
1069{ /* initialization for https://bugs.llvm.org/show_bug.cgi?id=42570 */ };
Christoph Lameter9425c582013-01-10 19:12:17 +00001070EXPORT_SYMBOL(kmalloc_caches);
1071
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001072/*
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001073 * Conversion table for small slabs sizes / 8 to the index in the
1074 * kmalloc array. This is necessary for slabs < 192 since we have non power
1075 * of two cache sizes there. The size of larger slabs can be determined using
1076 * fls.
1077 */
Alexey Dobriyand5f86652018-04-05 16:20:40 -07001078static u8 size_index[24] __ro_after_init = {
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001079 3, /* 8 */
1080 4, /* 16 */
1081 5, /* 24 */
1082 5, /* 32 */
1083 6, /* 40 */
1084 6, /* 48 */
1085 6, /* 56 */
1086 6, /* 64 */
1087 1, /* 72 */
1088 1, /* 80 */
1089 1, /* 88 */
1090 1, /* 96 */
1091 7, /* 104 */
1092 7, /* 112 */
1093 7, /* 120 */
1094 7, /* 128 */
1095 2, /* 136 */
1096 2, /* 144 */
1097 2, /* 152 */
1098 2, /* 160 */
1099 2, /* 168 */
1100 2, /* 176 */
1101 2, /* 184 */
1102 2 /* 192 */
1103};
1104
Alexey Dobriyanac914d02018-04-05 16:20:44 -07001105static inline unsigned int size_index_elem(unsigned int bytes)
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001106{
1107 return (bytes - 1) / 8;
1108}
1109
1110/*
1111 * Find the kmem_cache structure that serves a given size of
1112 * allocation
1113 */
1114struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags)
1115{
Alexey Dobriyand5f86652018-04-05 16:20:40 -07001116 unsigned int index;
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001117
1118 if (size <= 192) {
1119 if (!size)
1120 return ZERO_SIZE_PTR;
1121
1122 index = size_index[size_index_elem(size)];
Dmitry Vyukov61448472018-10-26 15:03:12 -07001123 } else {
Yangtao Li221d7da2018-12-28 00:33:01 -08001124 if (WARN_ON_ONCE(size > KMALLOC_MAX_CACHE_SIZE))
Dmitry Vyukov61448472018-10-26 15:03:12 -07001125 return NULL;
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001126 index = fls(size - 1);
Dmitry Vyukov61448472018-10-26 15:03:12 -07001127 }
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001128
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07001129 return kmalloc_caches[kmalloc_type(flags)][index];
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001130}
1131
1132/*
Gavin Guo4066c332015-06-24 16:55:54 -07001133 * kmalloc_info[] is to make slub_debug=,kmalloc-xx option work at boot time.
1134 * kmalloc_index() supports up to 2^26=64MB, so the final entry of the table is
1135 * kmalloc-67108864.
1136 */
Vlastimil Babkaaf3b5f82017-02-22 15:41:05 -08001137const struct kmalloc_info_struct kmalloc_info[] __initconst = {
Gavin Guo4066c332015-06-24 16:55:54 -07001138 {NULL, 0}, {"kmalloc-96", 96},
1139 {"kmalloc-192", 192}, {"kmalloc-8", 8},
1140 {"kmalloc-16", 16}, {"kmalloc-32", 32},
1141 {"kmalloc-64", 64}, {"kmalloc-128", 128},
1142 {"kmalloc-256", 256}, {"kmalloc-512", 512},
Vlastimil Babkaf0d77872018-10-26 15:05:55 -07001143 {"kmalloc-1k", 1024}, {"kmalloc-2k", 2048},
1144 {"kmalloc-4k", 4096}, {"kmalloc-8k", 8192},
1145 {"kmalloc-16k", 16384}, {"kmalloc-32k", 32768},
1146 {"kmalloc-64k", 65536}, {"kmalloc-128k", 131072},
1147 {"kmalloc-256k", 262144}, {"kmalloc-512k", 524288},
1148 {"kmalloc-1M", 1048576}, {"kmalloc-2M", 2097152},
1149 {"kmalloc-4M", 4194304}, {"kmalloc-8M", 8388608},
1150 {"kmalloc-16M", 16777216}, {"kmalloc-32M", 33554432},
1151 {"kmalloc-64M", 67108864}
Gavin Guo4066c332015-06-24 16:55:54 -07001152};
1153
1154/*
Daniel Sanders34cc6992015-06-24 16:55:57 -07001155 * Patch up the size_index table if we have strange large alignment
1156 * requirements for the kmalloc array. This is only the case for
1157 * MIPS it seems. The standard arches will not generate any code here.
1158 *
1159 * Largest permitted alignment is 256 bytes due to the way we
1160 * handle the index determination for the smaller caches.
1161 *
1162 * Make sure that nothing crazy happens if someone starts tinkering
1163 * around with ARCH_KMALLOC_MINALIGN
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001164 */
Daniel Sanders34cc6992015-06-24 16:55:57 -07001165void __init setup_kmalloc_cache_index_table(void)
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001166{
Alexey Dobriyanac914d02018-04-05 16:20:44 -07001167 unsigned int i;
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001168
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001169 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
1170 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
1171
1172 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
Alexey Dobriyanac914d02018-04-05 16:20:44 -07001173 unsigned int elem = size_index_elem(i);
Christoph Lameter2c59dd62013-01-10 19:14:19 +00001174
1175 if (elem >= ARRAY_SIZE(size_index))
1176 break;
1177 size_index[elem] = KMALLOC_SHIFT_LOW;
1178 }
1179
1180 if (KMALLOC_MIN_SIZE >= 64) {
1181 /*
1182 * The 96 byte size cache is not used if the alignment
1183 * is 64 byte.
1184 */
1185 for (i = 64 + 8; i <= 96; i += 8)
1186 size_index[size_index_elem(i)] = 7;
1187
1188 }
1189
1190 if (KMALLOC_MIN_SIZE >= 128) {
1191 /*
1192 * The 192 byte sized cache is not used if the alignment
1193 * is 128 byte. Redirect kmalloc to use the 256 byte cache
1194 * instead.
1195 */
1196 for (i = 128 + 8; i <= 192; i += 8)
1197 size_index[size_index_elem(i)] = 8;
1198 }
Daniel Sanders34cc6992015-06-24 16:55:57 -07001199}
1200
Vlastimil Babkaf0d77872018-10-26 15:05:55 -07001201static const char *
1202kmalloc_cache_name(const char *prefix, unsigned int size)
1203{
1204
1205 static const char units[3] = "\0kM";
1206 int idx = 0;
1207
1208 while (size >= 1024 && (size % 1024 == 0)) {
1209 size /= 1024;
1210 idx++;
1211 }
1212
1213 return kasprintf(GFP_NOWAIT, "%s-%u%c", prefix, size, units[idx]);
1214}
1215
Vlastimil Babka12915232018-10-26 15:05:38 -07001216static void __init
1217new_kmalloc_cache(int idx, int type, slab_flags_t flags)
Christoph Lametera9730fc2015-06-29 09:28:08 -05001218{
Vlastimil Babka12915232018-10-26 15:05:38 -07001219 const char *name;
1220
1221 if (type == KMALLOC_RECLAIM) {
1222 flags |= SLAB_RECLAIM_ACCOUNT;
Vlastimil Babkaf0d77872018-10-26 15:05:55 -07001223 name = kmalloc_cache_name("kmalloc-rcl",
Vlastimil Babka12915232018-10-26 15:05:38 -07001224 kmalloc_info[idx].size);
1225 BUG_ON(!name);
1226 } else {
1227 name = kmalloc_info[idx].name;
1228 }
1229
1230 kmalloc_caches[type][idx] = create_kmalloc_cache(name,
David Windsor6c0c21a2017-06-10 22:50:47 -04001231 kmalloc_info[idx].size, flags, 0,
1232 kmalloc_info[idx].size);
Christoph Lametera9730fc2015-06-29 09:28:08 -05001233}
1234
Daniel Sanders34cc6992015-06-24 16:55:57 -07001235/*
1236 * Create the kmalloc array. Some of the regular kmalloc arrays
1237 * may already have been created because they were needed to
1238 * enable allocations for slab creation.
1239 */
Alexey Dobriyand50112e2017-11-15 17:32:18 -08001240void __init create_kmalloc_caches(slab_flags_t flags)
Daniel Sanders34cc6992015-06-24 16:55:57 -07001241{
Vlastimil Babka12915232018-10-26 15:05:38 -07001242 int i, type;
Daniel Sanders34cc6992015-06-24 16:55:57 -07001243
Vlastimil Babka12915232018-10-26 15:05:38 -07001244 for (type = KMALLOC_NORMAL; type <= KMALLOC_RECLAIM; type++) {
1245 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
1246 if (!kmalloc_caches[type][i])
1247 new_kmalloc_cache(i, type, flags);
Chris Mason956e46e2013-05-08 15:56:28 -04001248
Vlastimil Babka12915232018-10-26 15:05:38 -07001249 /*
1250 * Caches that are not of the two-to-the-power-of size.
1251 * These have to be created immediately after the
1252 * earlier power of two caches
1253 */
1254 if (KMALLOC_MIN_SIZE <= 32 && i == 6 &&
1255 !kmalloc_caches[type][1])
1256 new_kmalloc_cache(1, type, flags);
1257 if (KMALLOC_MIN_SIZE <= 64 && i == 7 &&
1258 !kmalloc_caches[type][2])
1259 new_kmalloc_cache(2, type, flags);
1260 }
Christoph Lameter8a965b32013-05-03 18:04:18 +00001261 }
1262
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001263 /* Kmalloc array is now usable */
1264 slab_state = UP;
1265
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001266#ifdef CONFIG_ZONE_DMA
1267 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07001268 struct kmem_cache *s = kmalloc_caches[KMALLOC_NORMAL][i];
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001269
1270 if (s) {
Alexey Dobriyan0be70322018-04-05 16:20:26 -07001271 unsigned int size = kmalloc_size(i);
Vlastimil Babkaf0d77872018-10-26 15:05:55 -07001272 const char *n = kmalloc_cache_name("dma-kmalloc", size);
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001273
1274 BUG_ON(!n);
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07001275 kmalloc_caches[KMALLOC_DMA][i] = create_kmalloc_cache(
1276 n, size, SLAB_CACHE_DMA | flags, 0, 0);
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001277 }
1278 }
1279#endif
1280}
Christoph Lameter45530c42012-11-28 16:23:07 +00001281#endif /* !CONFIG_SLOB */
1282
Vladimir Davydovcea371f2014-06-04 16:07:04 -07001283/*
1284 * To avoid unnecessary overhead, we pass through large allocation requests
1285 * directly to the page allocator. We use __GFP_COMP, because we will need to
1286 * know the allocation order to free the pages properly in kfree.
1287 */
Vladimir Davydov52383432014-06-04 16:06:39 -07001288void *kmalloc_order(size_t size, gfp_t flags, unsigned int order)
1289{
1290 void *ret;
1291 struct page *page;
1292
1293 flags |= __GFP_COMP;
Vladimir Davydov49491482016-07-26 15:24:24 -07001294 page = alloc_pages(flags, order);
Vladimir Davydov52383432014-06-04 16:06:39 -07001295 ret = page ? page_address(page) : NULL;
Andrey Konovalov01165232018-12-28 00:29:37 -08001296 ret = kasan_kmalloc_large(ret, size, flags);
Andrey Konovalova2f77572019-02-20 22:19:16 -08001297 /* As ret might get tagged, call kmemleak hook after KASAN. */
Andrey Konovalov53128242019-02-20 22:19:11 -08001298 kmemleak_alloc(ret, size, 1, flags);
Vladimir Davydov52383432014-06-04 16:06:39 -07001299 return ret;
1300}
1301EXPORT_SYMBOL(kmalloc_order);
1302
Christoph Lameterf1b6eb62013-09-04 16:35:34 +00001303#ifdef CONFIG_TRACING
1304void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
1305{
1306 void *ret = kmalloc_order(size, flags, order);
1307 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
1308 return ret;
1309}
1310EXPORT_SYMBOL(kmalloc_order_trace);
1311#endif
Christoph Lameter45530c42012-11-28 16:23:07 +00001312
Thomas Garnier7c00fce2016-07-26 15:21:56 -07001313#ifdef CONFIG_SLAB_FREELIST_RANDOM
1314/* Randomize a generic freelist */
1315static void freelist_randomize(struct rnd_state *state, unsigned int *list,
Alexey Dobriyan302d55d2018-04-05 16:21:46 -07001316 unsigned int count)
Thomas Garnier7c00fce2016-07-26 15:21:56 -07001317{
Thomas Garnier7c00fce2016-07-26 15:21:56 -07001318 unsigned int rand;
Alexey Dobriyan302d55d2018-04-05 16:21:46 -07001319 unsigned int i;
Thomas Garnier7c00fce2016-07-26 15:21:56 -07001320
1321 for (i = 0; i < count; i++)
1322 list[i] = i;
1323
1324 /* Fisher-Yates shuffle */
1325 for (i = count - 1; i > 0; i--) {
1326 rand = prandom_u32_state(state);
1327 rand %= (i + 1);
1328 swap(list[i], list[rand]);
1329 }
1330}
1331
1332/* Create a random sequence per cache */
1333int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count,
1334 gfp_t gfp)
1335{
1336 struct rnd_state state;
1337
1338 if (count < 2 || cachep->random_seq)
1339 return 0;
1340
1341 cachep->random_seq = kcalloc(count, sizeof(unsigned int), gfp);
1342 if (!cachep->random_seq)
1343 return -ENOMEM;
1344
1345 /* Get best entropy at this stage of boot */
1346 prandom_seed_state(&state, get_random_long());
1347
1348 freelist_randomize(&state, cachep->random_seq, count);
1349 return 0;
1350}
1351
1352/* Destroy the per-cache random freelist sequence */
1353void cache_random_seq_destroy(struct kmem_cache *cachep)
1354{
1355 kfree(cachep->random_seq);
1356 cachep->random_seq = NULL;
1357}
1358#endif /* CONFIG_SLAB_FREELIST_RANDOM */
1359
Yang Shi5b365772017-11-15 17:32:03 -08001360#if defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG)
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001361#ifdef CONFIG_SLAB
Joe Perches0825a6f2018-06-14 15:27:58 -07001362#define SLABINFO_RIGHTS (0600)
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001363#else
Joe Perches0825a6f2018-06-14 15:27:58 -07001364#define SLABINFO_RIGHTS (0400)
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001365#endif
1366
Vladimir Davydovb0475012014-12-10 15:44:19 -08001367static void print_slabinfo_header(struct seq_file *m)
Glauber Costabcee6e22012-10-19 18:20:26 +04001368{
1369 /*
1370 * Output format version, so at least we can change it
1371 * without _too_ many complaints.
1372 */
1373#ifdef CONFIG_DEBUG_SLAB
1374 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
1375#else
1376 seq_puts(m, "slabinfo - version: 2.1\n");
1377#endif
Joe Perches756a0252016-03-17 14:19:47 -07001378 seq_puts(m, "# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab>");
Glauber Costabcee6e22012-10-19 18:20:26 +04001379 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
1380 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
1381#ifdef CONFIG_DEBUG_SLAB
Joe Perches756a0252016-03-17 14:19:47 -07001382 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> <error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Glauber Costabcee6e22012-10-19 18:20:26 +04001383 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
1384#endif
1385 seq_putc(m, '\n');
1386}
1387
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001388void *slab_start(struct seq_file *m, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +04001389{
Glauber Costab7454ad2012-10-19 18:20:25 +04001390 mutex_lock(&slab_mutex);
Tejun Heo510ded32017-02-22 15:41:24 -08001391 return seq_list_start(&slab_root_caches, *pos);
Glauber Costab7454ad2012-10-19 18:20:25 +04001392}
1393
Wanpeng Li276a2432013-07-08 08:08:28 +08001394void *slab_next(struct seq_file *m, void *p, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +04001395{
Tejun Heo510ded32017-02-22 15:41:24 -08001396 return seq_list_next(p, &slab_root_caches, pos);
Glauber Costab7454ad2012-10-19 18:20:25 +04001397}
1398
Wanpeng Li276a2432013-07-08 08:08:28 +08001399void slab_stop(struct seq_file *m, void *p)
Glauber Costab7454ad2012-10-19 18:20:25 +04001400{
1401 mutex_unlock(&slab_mutex);
1402}
1403
Glauber Costa749c5412012-12-18 14:23:01 -08001404static void
1405memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
Glauber Costab7454ad2012-10-19 18:20:25 +04001406{
Glauber Costa749c5412012-12-18 14:23:01 -08001407 struct kmem_cache *c;
1408 struct slabinfo sinfo;
Glauber Costa749c5412012-12-18 14:23:01 -08001409
1410 if (!is_root_cache(s))
1411 return;
1412
Vladimir Davydov426589f2015-02-12 14:59:23 -08001413 for_each_memcg_cache(c, s) {
Glauber Costa749c5412012-12-18 14:23:01 -08001414 memset(&sinfo, 0, sizeof(sinfo));
1415 get_slabinfo(c, &sinfo);
1416
1417 info->active_slabs += sinfo.active_slabs;
1418 info->num_slabs += sinfo.num_slabs;
1419 info->shared_avail += sinfo.shared_avail;
1420 info->active_objs += sinfo.active_objs;
1421 info->num_objs += sinfo.num_objs;
1422 }
1423}
1424
Vladimir Davydovb0475012014-12-10 15:44:19 -08001425static void cache_show(struct kmem_cache *s, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08001426{
Glauber Costa0d7561c2012-10-19 18:20:27 +04001427 struct slabinfo sinfo;
1428
1429 memset(&sinfo, 0, sizeof(sinfo));
1430 get_slabinfo(s, &sinfo);
1431
Glauber Costa749c5412012-12-18 14:23:01 -08001432 memcg_accumulate_slabinfo(s, &sinfo);
1433
Glauber Costa0d7561c2012-10-19 18:20:27 +04001434 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Glauber Costa749c5412012-12-18 14:23:01 -08001435 cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size,
Glauber Costa0d7561c2012-10-19 18:20:27 +04001436 sinfo.objects_per_slab, (1 << sinfo.cache_order));
1437
1438 seq_printf(m, " : tunables %4u %4u %4u",
1439 sinfo.limit, sinfo.batchcount, sinfo.shared);
1440 seq_printf(m, " : slabdata %6lu %6lu %6lu",
1441 sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
1442 slabinfo_show_stats(m, s);
1443 seq_putc(m, '\n');
Glauber Costab7454ad2012-10-19 18:20:25 +04001444}
1445
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001446static int slab_show(struct seq_file *m, void *p)
Glauber Costa749c5412012-12-18 14:23:01 -08001447{
Tejun Heo510ded32017-02-22 15:41:24 -08001448 struct kmem_cache *s = list_entry(p, struct kmem_cache, root_caches_node);
Glauber Costa749c5412012-12-18 14:23:01 -08001449
Tejun Heo510ded32017-02-22 15:41:24 -08001450 if (p == slab_root_caches.next)
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001451 print_slabinfo_header(m);
Tejun Heo510ded32017-02-22 15:41:24 -08001452 cache_show(s, m);
Vladimir Davydovb0475012014-12-10 15:44:19 -08001453 return 0;
Glauber Costa749c5412012-12-18 14:23:01 -08001454}
1455
Yang Shi852d8be2017-11-15 17:32:07 -08001456void dump_unreclaimable_slab(void)
1457{
1458 struct kmem_cache *s, *s2;
1459 struct slabinfo sinfo;
1460
1461 /*
1462 * Here acquiring slab_mutex is risky since we don't prefer to get
1463 * sleep in oom path. But, without mutex hold, it may introduce a
1464 * risk of crash.
1465 * Use mutex_trylock to protect the list traverse, dump nothing
1466 * without acquiring the mutex.
1467 */
1468 if (!mutex_trylock(&slab_mutex)) {
1469 pr_warn("excessive unreclaimable slab but cannot dump stats\n");
1470 return;
1471 }
1472
1473 pr_info("Unreclaimable slab info:\n");
1474 pr_info("Name Used Total\n");
1475
1476 list_for_each_entry_safe(s, s2, &slab_caches, list) {
1477 if (!is_root_cache(s) || (s->flags & SLAB_RECLAIM_ACCOUNT))
1478 continue;
1479
1480 get_slabinfo(s, &sinfo);
1481
1482 if (sinfo.num_objs > 0)
1483 pr_info("%-17s %10luKB %10luKB\n", cache_name(s),
1484 (sinfo.active_objs * s->size) / 1024,
1485 (sinfo.num_objs * s->size) / 1024);
1486 }
1487 mutex_unlock(&slab_mutex);
1488}
1489
Yang Shi5b365772017-11-15 17:32:03 -08001490#if defined(CONFIG_MEMCG)
Tejun Heobc2791f2017-02-22 15:41:21 -08001491void *memcg_slab_start(struct seq_file *m, loff_t *pos)
Vladimir Davydovb0475012014-12-10 15:44:19 -08001492{
Chris Downaa9694b2019-03-05 15:45:52 -08001493 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
Vladimir Davydovb0475012014-12-10 15:44:19 -08001494
Tejun Heobc2791f2017-02-22 15:41:21 -08001495 mutex_lock(&slab_mutex);
1496 return seq_list_start(&memcg->kmem_caches, *pos);
1497}
1498
1499void *memcg_slab_next(struct seq_file *m, void *p, loff_t *pos)
1500{
Chris Downaa9694b2019-03-05 15:45:52 -08001501 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
Tejun Heobc2791f2017-02-22 15:41:21 -08001502
1503 return seq_list_next(p, &memcg->kmem_caches, pos);
1504}
1505
1506void memcg_slab_stop(struct seq_file *m, void *p)
1507{
1508 mutex_unlock(&slab_mutex);
1509}
1510
1511int memcg_slab_show(struct seq_file *m, void *p)
1512{
1513 struct kmem_cache *s = list_entry(p, struct kmem_cache,
1514 memcg_params.kmem_caches_node);
Chris Downaa9694b2019-03-05 15:45:52 -08001515 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
Tejun Heobc2791f2017-02-22 15:41:21 -08001516
1517 if (p == memcg->kmem_caches.next)
Vladimir Davydovb0475012014-12-10 15:44:19 -08001518 print_slabinfo_header(m);
Tejun Heobc2791f2017-02-22 15:41:21 -08001519 cache_show(s, m);
Vladimir Davydovb0475012014-12-10 15:44:19 -08001520 return 0;
1521}
1522#endif
1523
Glauber Costab7454ad2012-10-19 18:20:25 +04001524/*
1525 * slabinfo_op - iterator that generates /proc/slabinfo
1526 *
1527 * Output layout:
1528 * cache-name
1529 * num-active-objs
1530 * total-objs
1531 * object size
1532 * num-active-slabs
1533 * total-slabs
1534 * num-pages-per-slab
1535 * + further values on SMP and with statistics enabled
1536 */
1537static const struct seq_operations slabinfo_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001538 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08001539 .next = slab_next,
1540 .stop = slab_stop,
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001541 .show = slab_show,
Glauber Costab7454ad2012-10-19 18:20:25 +04001542};
1543
1544static int slabinfo_open(struct inode *inode, struct file *file)
1545{
1546 return seq_open(file, &slabinfo_op);
1547}
1548
1549static const struct file_operations proc_slabinfo_operations = {
1550 .open = slabinfo_open,
1551 .read = seq_read,
1552 .write = slabinfo_write,
1553 .llseek = seq_lseek,
1554 .release = seq_release,
1555};
1556
1557static int __init slab_proc_init(void)
1558{
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001559 proc_create("slabinfo", SLABINFO_RIGHTS, NULL,
1560 &proc_slabinfo_operations);
Glauber Costab7454ad2012-10-19 18:20:25 +04001561 return 0;
1562}
1563module_init(slab_proc_init);
Waiman Longfcf8a1e2019-07-11 20:56:38 -07001564
1565#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_MEMCG_KMEM)
1566/*
1567 * Display information about kmem caches that have child memcg caches.
1568 */
1569static int memcg_slabinfo_show(struct seq_file *m, void *unused)
1570{
1571 struct kmem_cache *s, *c;
1572 struct slabinfo sinfo;
1573
1574 mutex_lock(&slab_mutex);
1575 seq_puts(m, "# <name> <css_id[:dead|deact]> <active_objs> <num_objs>");
1576 seq_puts(m, " <active_slabs> <num_slabs>\n");
1577 list_for_each_entry(s, &slab_root_caches, root_caches_node) {
1578 /*
1579 * Skip kmem caches that don't have any memcg children.
1580 */
1581 if (list_empty(&s->memcg_params.children))
1582 continue;
1583
1584 memset(&sinfo, 0, sizeof(sinfo));
1585 get_slabinfo(s, &sinfo);
1586 seq_printf(m, "%-17s root %6lu %6lu %6lu %6lu\n",
1587 cache_name(s), sinfo.active_objs, sinfo.num_objs,
1588 sinfo.active_slabs, sinfo.num_slabs);
1589
1590 for_each_memcg_cache(c, s) {
1591 struct cgroup_subsys_state *css;
1592 char *status = "";
1593
1594 css = &c->memcg_params.memcg->css;
1595 if (!(css->flags & CSS_ONLINE))
1596 status = ":dead";
1597 else if (c->flags & SLAB_DEACTIVATED)
1598 status = ":deact";
1599
1600 memset(&sinfo, 0, sizeof(sinfo));
1601 get_slabinfo(c, &sinfo);
1602 seq_printf(m, "%-17s %4d%-6s %6lu %6lu %6lu %6lu\n",
1603 cache_name(c), css->id, status,
1604 sinfo.active_objs, sinfo.num_objs,
1605 sinfo.active_slabs, sinfo.num_slabs);
1606 }
1607 }
1608 mutex_unlock(&slab_mutex);
1609 return 0;
1610}
1611DEFINE_SHOW_ATTRIBUTE(memcg_slabinfo);
1612
1613static int __init memcg_slabinfo_init(void)
1614{
1615 debugfs_create_file("memcg_slabinfo", S_IFREG | S_IRUGO,
1616 NULL, NULL, &memcg_slabinfo_fops);
1617 return 0;
1618}
1619
1620late_initcall(memcg_slabinfo_init);
1621#endif /* CONFIG_DEBUG_FS && CONFIG_MEMCG_KMEM */
Yang Shi5b365772017-11-15 17:32:03 -08001622#endif /* CONFIG_SLAB || CONFIG_SLUB_DEBUG */
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001623
1624static __always_inline void *__do_krealloc(const void *p, size_t new_size,
1625 gfp_t flags)
1626{
1627 void *ret;
1628 size_t ks = 0;
1629
1630 if (p)
1631 ks = ksize(p);
1632
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001633 if (ks >= new_size) {
Andrey Konovalov01165232018-12-28 00:29:37 -08001634 p = kasan_krealloc((void *)p, new_size, flags);
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001635 return (void *)p;
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001636 }
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001637
1638 ret = kmalloc_track_caller(new_size, flags);
1639 if (ret && p)
1640 memcpy(ret, p, ks);
1641
1642 return ret;
1643}
1644
1645/**
1646 * __krealloc - like krealloc() but don't free @p.
1647 * @p: object to reallocate memory for.
1648 * @new_size: how many bytes of memory are required.
1649 * @flags: the type of memory to allocate.
1650 *
1651 * This function is like krealloc() except it never frees the originally
1652 * allocated buffer. Use this if you don't want to free the buffer immediately
1653 * like, for example, with RCU.
Mike Rapoporta862f682019-03-05 15:48:42 -08001654 *
1655 * Return: pointer to the allocated memory or %NULL in case of error
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001656 */
1657void *__krealloc(const void *p, size_t new_size, gfp_t flags)
1658{
1659 if (unlikely(!new_size))
1660 return ZERO_SIZE_PTR;
1661
1662 return __do_krealloc(p, new_size, flags);
1663
1664}
1665EXPORT_SYMBOL(__krealloc);
1666
1667/**
1668 * krealloc - reallocate memory. The contents will remain unchanged.
1669 * @p: object to reallocate memory for.
1670 * @new_size: how many bytes of memory are required.
1671 * @flags: the type of memory to allocate.
1672 *
1673 * The contents of the object pointed to are preserved up to the
1674 * lesser of the new and old sizes. If @p is %NULL, krealloc()
1675 * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a
1676 * %NULL pointer, the object pointed to is freed.
Mike Rapoporta862f682019-03-05 15:48:42 -08001677 *
1678 * Return: pointer to the allocated memory or %NULL in case of error
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001679 */
1680void *krealloc(const void *p, size_t new_size, gfp_t flags)
1681{
1682 void *ret;
1683
1684 if (unlikely(!new_size)) {
1685 kfree(p);
1686 return ZERO_SIZE_PTR;
1687 }
1688
1689 ret = __do_krealloc(p, new_size, flags);
Andrey Konovalov772a2fa2018-12-28 00:30:35 -08001690 if (ret && kasan_reset_tag(p) != kasan_reset_tag(ret))
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001691 kfree(p);
1692
1693 return ret;
1694}
1695EXPORT_SYMBOL(krealloc);
1696
1697/**
1698 * kzfree - like kfree but zero memory
1699 * @p: object to free memory of
1700 *
1701 * The memory of the object @p points to is zeroed before freed.
1702 * If @p is %NULL, kzfree() does nothing.
1703 *
1704 * Note: this function zeroes the whole allocated buffer which can be a good
1705 * deal bigger than the requested buffer size passed to kmalloc(). So be
1706 * careful when using this function in performance sensitive code.
1707 */
1708void kzfree(const void *p)
1709{
1710 size_t ks;
1711 void *mem = (void *)p;
1712
1713 if (unlikely(ZERO_OR_NULL_PTR(mem)))
1714 return;
1715 ks = ksize(mem);
1716 memset(mem, 0, ks);
1717 kfree(mem);
1718}
1719EXPORT_SYMBOL(kzfree);
1720
Marco Elver10d1f8c2019-07-11 20:54:14 -07001721/**
1722 * ksize - get the actual amount of memory allocated for a given object
1723 * @objp: Pointer to the object
1724 *
1725 * kmalloc may internally round up allocations and return more memory
1726 * than requested. ksize() can be used to determine the actual amount of
1727 * memory allocated. The caller may use this additional memory, even though
1728 * a smaller amount of memory was initially specified with the kmalloc call.
1729 * The caller must guarantee that objp points to a valid object previously
1730 * allocated with either kmalloc() or kmem_cache_alloc(). The object
1731 * must not be freed during the duration of the call.
1732 *
1733 * Return: size of the actual memory used by @objp in bytes
1734 */
1735size_t ksize(const void *objp)
1736{
Marco Elver0d4ca4c2019-07-11 20:54:18 -07001737 size_t size;
1738
1739 if (WARN_ON_ONCE(!objp))
1740 return 0;
1741 /*
1742 * We need to check that the pointed to object is valid, and only then
1743 * unpoison the shadow memory below. We use __kasan_check_read(), to
1744 * generate a more useful report at the time ksize() is called (rather
1745 * than later where behaviour is undefined due to potential
1746 * use-after-free or double-free).
1747 *
1748 * If the pointed to memory is invalid we return 0, to avoid users of
1749 * ksize() writing to and potentially corrupting the memory region.
1750 *
1751 * We want to perform the check before __ksize(), to avoid potentially
1752 * crashing in __ksize() due to accessing invalid metadata.
1753 */
1754 if (unlikely(objp == ZERO_SIZE_PTR) || !__kasan_check_read(objp, 1))
1755 return 0;
1756
1757 size = __ksize(objp);
Marco Elver10d1f8c2019-07-11 20:54:14 -07001758 /*
1759 * We assume that ksize callers could use whole allocated area,
1760 * so we need to unpoison this area.
1761 */
1762 kasan_unpoison_shadow(objp, size);
1763 return size;
1764}
1765EXPORT_SYMBOL(ksize);
1766
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001767/* Tracepoints definitions. */
1768EXPORT_TRACEPOINT_SYMBOL(kmalloc);
1769EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc);
1770EXPORT_TRACEPOINT_SYMBOL(kmalloc_node);
1771EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc_node);
1772EXPORT_TRACEPOINT_SYMBOL(kfree);
1773EXPORT_TRACEPOINT_SYMBOL(kmem_cache_free);
Howard McLauchlan4f6923fb2018-04-05 16:23:57 -07001774
1775int should_failslab(struct kmem_cache *s, gfp_t gfpflags)
1776{
1777 if (__should_failslab(s, gfpflags))
1778 return -ENOMEM;
1779 return 0;
1780}
1781ALLOW_ERROR_INJECTION(should_failslab, ERRNO);