blob: b7095884fd93fa957fa25f40e2bc8c4c6cf1efa8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/mm/slab.c
4 * Written by Mark Hemment, 1996/97.
5 * (markhe@nextd.demon.co.uk)
6 *
7 * kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
8 *
9 * Major cleanup, different bufctl logic, per-cpu arrays
10 * (c) 2000 Manfred Spraul
11 *
12 * Cleanup, make the head arrays unconditional, preparation for NUMA
13 * (c) 2002 Manfred Spraul
14 *
15 * An implementation of the Slab Allocator as described in outline in;
16 * UNIX Internals: The New Frontiers by Uresh Vahalia
17 * Pub: Prentice Hall ISBN 0-13-101908-2
18 * or with a little more detail in;
19 * The Slab Allocator: An Object-Caching Kernel Memory Allocator
20 * Jeff Bonwick (Sun Microsystems).
21 * Presented at: USENIX Summer 1994 Technical Conference
22 *
23 * The memory is organized in caches, one cache for each object type.
24 * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
25 * Each cache consists out of many slabs (they are small (usually one
26 * page long) and always contiguous), and each slab contains multiple
27 * initialized objects.
28 *
29 * This means, that your constructor is used only for newly allocated
Simon Arlott183ff222007-10-20 01:27:18 +020030 * slabs and you must pass objects with the same initializations to
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * kmem_cache_free.
32 *
33 * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
34 * normal). If you need a special memory type, then must create a new
35 * cache for that memory type.
36 *
37 * In order to reduce fragmentation, the slabs are sorted in 3 groups:
38 * full slabs with 0 free objects
39 * partial slabs
40 * empty slabs with no allocated objects
41 *
42 * If partial slabs exist, then new allocations come from these slabs,
43 * otherwise from empty slabs or new slabs are allocated.
44 *
45 * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
46 * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
47 *
48 * Each cache has a short per-cpu head array, most allocs
49 * and frees go into that array, and if that array overflows, then 1/2
50 * of the entries in the array are given back into the global cache.
51 * The head array is strictly LIFO and should improve the cache hit rates.
52 * On SMP, it additionally reduces the spinlock operations.
53 *
Andrew Mortona737b3e2006-03-22 00:08:11 -080054 * The c_cpuarray may not be read with enabled local interrupts -
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * it's changed with a smp_call_function().
56 *
57 * SMP synchronization:
58 * constructors and destructors are called without any locking.
Pekka Enberg343e0d72006-02-01 03:05:50 -080059 * Several members in struct kmem_cache and struct slab never change, they
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * are accessed without any locking.
61 * The per-cpu arrays are never accessed from the wrong cpu, no locking,
62 * and local interrupts are disabled so slab code is preempt-safe.
63 * The non-constant members are protected with a per-cache irq spinlock.
64 *
65 * Many thanks to Mark Hemment, who wrote another per-cpu slab patch
66 * in 2000 - many ideas in the current implementation are derived from
67 * his patch.
68 *
69 * Further notes from the original documentation:
70 *
71 * 11 April '97. Started multi-threading - markhe
Christoph Lameter18004c52012-07-06 15:25:12 -050072 * The global cache-chain is protected by the mutex 'slab_mutex'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 * The sem is only needed when accessing/extending the cache-chain, which
74 * can never happen inside an interrupt (kmem_cache_create(),
75 * kmem_cache_shrink() and kmem_cache_reap()).
76 *
77 * At present, each engine can be growing a cache. This should be blocked.
78 *
Christoph Lametere498be72005-09-09 13:03:32 -070079 * 15 March 2005. NUMA slab allocator.
80 * Shai Fultheim <shai@scalex86.org>.
81 * Shobhit Dayal <shobhit@calsoftinc.com>
82 * Alok N Kataria <alokk@calsoftinc.com>
83 * Christoph Lameter <christoph@lameter.com>
84 *
85 * Modified the slab allocator to be node aware on NUMA systems.
86 * Each node has its own list of partial, free and full slabs.
87 * All object allocations for a node occur from node specific slab lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#include <linux/slab.h>
91#include <linux/mm.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070092#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <linux/swap.h>
94#include <linux/cache.h>
95#include <linux/interrupt.h>
96#include <linux/init.h>
97#include <linux/compiler.h>
Paul Jackson101a5002006-03-24 03:16:07 -080098#include <linux/cpuset.h>
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +040099#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <linux/seq_file.h>
101#include <linux/notifier.h>
102#include <linux/kallsyms.h>
103#include <linux/cpu.h>
104#include <linux/sysctl.h>
105#include <linux/module.h>
106#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700107#include <linux/string.h>
Andrew Morton138ae662006-12-06 20:36:41 -0800108#include <linux/uaccess.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700109#include <linux/nodemask.h>
Catalin Marinasd5cff632009-06-11 13:22:40 +0100110#include <linux/kmemleak.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800111#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800112#include <linux/mutex.h>
Akinobu Mita8a8b6502006-12-08 02:39:44 -0800113#include <linux/fault-inject.h>
Ingo Molnare7eebaf2006-06-27 02:54:55 -0700114#include <linux/rtmutex.h>
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800115#include <linux/reciprocal_div.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700116#include <linux/debugobjects.h>
Pekka Enbergc175eea2008-05-09 20:35:53 +0200117#include <linux/kmemcheck.h>
David Rientjes8f9f8d92010-03-27 19:40:47 -0700118#include <linux/memory.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700119#include <linux/prefetch.h>
Ingo Molnar3f8c2452017-02-05 14:31:22 +0100120#include <linux/sched/task_stack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Mel Gorman381760e2012-07-31 16:44:30 -0700122#include <net/sock.h>
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#include <asm/cacheflush.h>
125#include <asm/tlbflush.h>
126#include <asm/page.h>
127
Steven Rostedt4dee6b62012-01-09 17:15:42 -0500128#include <trace/events/kmem.h>
129
Mel Gorman072bb0a2012-07-31 16:43:58 -0700130#include "internal.h"
131
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800132#include "slab.h"
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700135 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * 0 for faster, smaller code (especially in the critical paths).
137 *
138 * STATS - 1 to collect stats for /proc/slabinfo.
139 * 0 for faster, smaller code (especially in the critical paths).
140 *
141 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
142 */
143
144#ifdef CONFIG_DEBUG_SLAB
145#define DEBUG 1
146#define STATS 1
147#define FORCED_DEBUG 1
148#else
149#define DEBUG 0
150#define STATS 0
151#define FORCED_DEBUG 0
152#endif
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/* Shouldn't this be in a header file somewhere? */
155#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400156#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#ifndef ARCH_KMALLOC_FLAGS
159#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
160#endif
161
Joonsoo Kimf315e3f2013-12-02 17:49:41 +0900162#define FREELIST_BYTE_INDEX (((PAGE_SIZE >> BITS_PER_BYTE) \
163 <= SLAB_OBJ_MIN_SIZE) ? 1 : 0)
164
165#if FREELIST_BYTE_INDEX
166typedef unsigned char freelist_idx_t;
167#else
168typedef unsigned short freelist_idx_t;
169#endif
170
David Miller30321c72014-05-05 16:20:04 -0400171#define SLAB_OBJ_MAX_NUM ((1 << sizeof(freelist_idx_t) * BITS_PER_BYTE) - 1)
Joonsoo Kimf315e3f2013-12-02 17:49:41 +0900172
Mel Gorman072bb0a2012-07-31 16:43:58 -0700173/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * struct array_cache
175 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * Purpose:
177 * - LIFO ordering, to hand out cache-warm objects from _alloc
178 * - reduce the number of linked list operations
179 * - reduce spinlock operations
180 *
181 * The limit is stored in the per-cpu structure to reduce the data cache
182 * footprint.
183 *
184 */
185struct array_cache {
186 unsigned int avail;
187 unsigned int limit;
188 unsigned int batchcount;
189 unsigned int touched;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700190 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800191 * Must have this definition in here for the proper
192 * alignment of array_cache. Also simplifies accessing
193 * the entries.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800194 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700197struct alien_cache {
198 spinlock_t lock;
199 struct array_cache ac;
200};
201
Andrew Mortona737b3e2006-03-22 00:08:11 -0800202/*
Christoph Lametere498be72005-09-09 13:03:32 -0700203 * Need this for bootstrapping a per node allocator.
204 */
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700205#define NUM_INIT_LISTS (2 * MAX_NUMNODES)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000206static struct kmem_cache_node __initdata init_kmem_cache_node[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700207#define CACHE_CACHE 0
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700208#define SIZE_NODE (MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Christoph Lametered11d9e2006-06-30 01:55:45 -0700210static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000211 struct kmem_cache_node *n, int tofree);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700212static void free_block(struct kmem_cache *cachep, void **objpp, int len,
Joonsoo Kim97654df2014-08-06 16:04:25 -0700213 int node, struct list_head *list);
214static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300215static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000216static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700217
Joonsoo Kim76b342b2016-05-19 17:10:26 -0700218static inline void fixup_objfreelist_debug(struct kmem_cache *cachep,
219 void **list);
220static inline void fixup_slab_list(struct kmem_cache *cachep,
221 struct kmem_cache_node *n, struct page *page,
222 void **list);
Ingo Molnare0a42722006-06-23 02:03:46 -0700223static int slab_early_init = 1;
224
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000225#define INDEX_NODE kmalloc_index(sizeof(struct kmem_cache_node))
Christoph Lametere498be72005-09-09 13:03:32 -0700226
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000227static void kmem_cache_node_init(struct kmem_cache_node *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700228{
229 INIT_LIST_HEAD(&parent->slabs_full);
230 INIT_LIST_HEAD(&parent->slabs_partial);
231 INIT_LIST_HEAD(&parent->slabs_free);
David Rientjesbf00bd32016-12-12 16:41:44 -0800232 parent->total_slabs = 0;
Greg Thelenf728b0a2016-12-12 16:41:41 -0800233 parent->free_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700234 parent->shared = NULL;
235 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800236 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700237 spin_lock_init(&parent->list_lock);
238 parent->free_objects = 0;
239 parent->free_touched = 0;
240}
241
Andrew Mortona737b3e2006-03-22 00:08:11 -0800242#define MAKE_LIST(cachep, listp, slab, nodeid) \
243 do { \
244 INIT_LIST_HEAD(listp); \
Christoph Lameter18bf8542014-08-06 16:04:11 -0700245 list_splice(&get_node(cachep, nodeid)->slab, listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700246 } while (0)
247
Andrew Mortona737b3e2006-03-22 00:08:11 -0800248#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
249 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700250 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
251 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
252 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
253 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Joonsoo Kimb03a017b2016-03-15 14:54:50 -0700255#define CFLGS_OBJFREELIST_SLAB (0x40000000UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#define CFLGS_OFF_SLAB (0x80000000UL)
Joonsoo Kimb03a017b2016-03-15 14:54:50 -0700257#define OBJFREELIST_SLAB(x) ((x)->flags & CFLGS_OBJFREELIST_SLAB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
259
260#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800261/*
262 * Optimization question: fewer reaps means less probability for unnessary
263 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100265 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 * which could lock up otherwise freeable slabs.
267 */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +0800268#define REAPTIMEOUT_AC (2*HZ)
269#define REAPTIMEOUT_NODE (4*HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271#if STATS
272#define STATS_INC_ACTIVE(x) ((x)->num_active++)
273#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
274#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
275#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700276#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800277#define STATS_SET_HIGH(x) \
278 do { \
279 if ((x)->num_active > (x)->high_mark) \
280 (x)->high_mark = (x)->num_active; \
281 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define STATS_INC_ERR(x) ((x)->errors++)
283#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700284#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700285#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800286#define STATS_SET_FREEABLE(x, i) \
287 do { \
288 if ((x)->max_freeable < i) \
289 (x)->max_freeable = i; \
290 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
292#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
293#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
294#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
295#else
296#define STATS_INC_ACTIVE(x) do { } while (0)
297#define STATS_DEC_ACTIVE(x) do { } while (0)
298#define STATS_INC_ALLOCED(x) do { } while (0)
299#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700300#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#define STATS_SET_HIGH(x) do { } while (0)
302#define STATS_INC_ERR(x) do { } while (0)
303#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700304#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700305#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800306#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#define STATS_INC_ALLOCHIT(x) do { } while (0)
308#define STATS_INC_ALLOCMISS(x) do { } while (0)
309#define STATS_INC_FREEHIT(x) do { } while (0)
310#define STATS_INC_FREEMISS(x) do { } while (0)
311#endif
312
313#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Andrew Mortona737b3e2006-03-22 00:08:11 -0800315/*
316 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800318 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * the end of an object is aligned with the end of the real
320 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800321 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800323 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500324 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
325 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800326 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800328static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800330 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
David Woodhouseb46b8f12007-05-08 00:22:59 -0700333static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700336 return (unsigned long long*) (objp + obj_offset(cachep) -
337 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
David Woodhouseb46b8f12007-05-08 00:22:59 -0700340static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
343 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500344 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700345 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400346 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500347 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700348 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Pekka Enberg343e0d72006-02-01 03:05:50 -0800351static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500354 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
357#else
358
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800359#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700360#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
361#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
363
364#endif
365
Joonsoo Kim03787302014-06-23 13:22:06 -0700366#ifdef CONFIG_DEBUG_SLAB_LEAK
367
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700368static inline bool is_store_user_clean(struct kmem_cache *cachep)
Joonsoo Kim03787302014-06-23 13:22:06 -0700369{
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700370 return atomic_read(&cachep->store_user_clean) == 1;
371}
Joonsoo Kim03787302014-06-23 13:22:06 -0700372
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700373static inline void set_store_user_clean(struct kmem_cache *cachep)
374{
375 atomic_set(&cachep->store_user_clean, 1);
376}
Joonsoo Kim03787302014-06-23 13:22:06 -0700377
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700378static inline void set_store_user_dirty(struct kmem_cache *cachep)
379{
380 if (is_store_user_clean(cachep))
381 atomic_set(&cachep->store_user_clean, 0);
Joonsoo Kim03787302014-06-23 13:22:06 -0700382}
383
384#else
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700385static inline void set_store_user_dirty(struct kmem_cache *cachep) {}
Joonsoo Kim03787302014-06-23 13:22:06 -0700386
387#endif
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700390 * Do not go above this order unless 0 objects fit into the slab or
391 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
David Rientjes543585c2011-10-18 22:09:24 -0700393#define SLAB_MAX_ORDER_HI 1
394#define SLAB_MAX_ORDER_LO 0
395static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700396static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800398static inline struct kmem_cache *virt_to_cache(const void *obj)
399{
Christoph Lameterb49af682007-05-06 14:49:41 -0700400 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500401 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800402}
403
Joonsoo Kim8456a642013-10-24 10:07:49 +0900404static inline void *index_to_obj(struct kmem_cache *cache, struct page *page,
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800405 unsigned int idx)
406{
Joonsoo Kim8456a642013-10-24 10:07:49 +0900407 return page->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800408}
409
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800410/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500411 * We want to avoid an expensive divide : (offset / cache->size)
412 * Using the fact that size is a constant for a particular cache,
413 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800414 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
415 */
416static inline unsigned int obj_to_index(const struct kmem_cache *cache,
Joonsoo Kim8456a642013-10-24 10:07:49 +0900417 const struct page *page, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800418{
Joonsoo Kim8456a642013-10-24 10:07:49 +0900419 u32 offset = (obj - page->s_mem);
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800420 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800421}
422
Joonsoo Kim6fb92432016-03-15 14:54:09 -0700423#define BOOT_CPUCACHE_ENTRIES 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/* internal cache of cache description objs */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000425static struct kmem_cache kmem_cache_boot = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800426 .batchcount = 1,
427 .limit = BOOT_CPUCACHE_ENTRIES,
428 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500429 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800430 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431};
432
Tejun Heo1871e522009-10-29 22:34:13 +0900433static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Pekka Enberg343e0d72006-02-01 03:05:50 -0800435static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700437 return this_cpu_ptr(cachep->cpu_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Andrew Mortona737b3e2006-03-22 00:08:11 -0800440/*
441 * Calculate the number of objects and left-over bytes for a given buffer size.
442 */
Joonsoo Kim70f75062016-03-15 14:54:53 -0700443static unsigned int cache_estimate(unsigned long gfporder, size_t buffer_size,
444 unsigned long flags, size_t *left_over)
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800445{
Joonsoo Kim70f75062016-03-15 14:54:53 -0700446 unsigned int num;
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800447 size_t slab_size = PAGE_SIZE << gfporder;
448
449 /*
450 * The slab management structure can be either off the slab or
451 * on it. For the latter case, the memory allocated for a
452 * slab is used for:
453 *
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800454 * - @buffer_size bytes for each object
Joonsoo Kim2e6b3602016-03-15 14:54:30 -0700455 * - One freelist_idx_t for each object
456 *
457 * We don't need to consider alignment of freelist because
458 * freelist will be at the end of slab page. The objects will be
459 * at the correct alignment.
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800460 *
461 * If the slab management structure is off the slab, then the
462 * alignment will already be calculated into the size. Because
463 * the slabs are all pages aligned, the objects will be at the
464 * correct alignment when allocated.
465 */
Joonsoo Kimb03a017b2016-03-15 14:54:50 -0700466 if (flags & (CFLGS_OBJFREELIST_SLAB | CFLGS_OFF_SLAB)) {
Joonsoo Kim70f75062016-03-15 14:54:53 -0700467 num = slab_size / buffer_size;
Joonsoo Kim2e6b3602016-03-15 14:54:30 -0700468 *left_over = slab_size % buffer_size;
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800469 } else {
Joonsoo Kim70f75062016-03-15 14:54:53 -0700470 num = slab_size / (buffer_size + sizeof(freelist_idx_t));
Joonsoo Kim2e6b3602016-03-15 14:54:30 -0700471 *left_over = slab_size %
472 (buffer_size + sizeof(freelist_idx_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
Joonsoo Kim70f75062016-03-15 14:54:53 -0700474
475 return num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Christoph Lameterf28510d2012-09-11 19:49:38 +0000478#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700479#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Andrew Mortona737b3e2006-03-22 00:08:11 -0800481static void __slab_error(const char *function, struct kmem_cache *cachep,
482 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Joe Perches11705322016-03-17 14:19:50 -0700484 pr_err("slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800485 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030487 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000489#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Paul Menage3395ee02006-12-06 20:32:16 -0800491/*
492 * By default on NUMA we use alien caches to stage the freeing of
493 * objects allocated from other nodes. This causes massive memory
494 * inefficiencies when using fake NUMA setup to split memory into a
495 * large number of small nodes, so it can be disabled on the command
496 * line
497 */
498
499static int use_alien_caches __read_mostly = 1;
500static int __init noaliencache_setup(char *s)
501{
502 use_alien_caches = 0;
503 return 1;
504}
505__setup("noaliencache", noaliencache_setup);
506
David Rientjes3df1ccc2011-10-18 22:09:28 -0700507static int __init slab_max_order_setup(char *str)
508{
509 get_option(&str, &slab_max_order);
510 slab_max_order = slab_max_order < 0 ? 0 :
511 min(slab_max_order, MAX_ORDER - 1);
512 slab_max_order_set = true;
513
514 return 1;
515}
516__setup("slab_max_order=", slab_max_order_setup);
517
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800518#ifdef CONFIG_NUMA
519/*
520 * Special reaping functions for NUMA systems called from cache_reap().
521 * These take care of doing round robin flushing of alien caches (containing
522 * objects freed on different nodes from which they were allocated) and the
523 * flushing of remote pcps by calling drain_node_pages.
524 */
Tejun Heo1871e522009-10-29 22:34:13 +0900525static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800526
527static void init_reap_node(int cpu)
528{
Andrew Morton0edaf862016-05-19 17:10:58 -0700529 per_cpu(slab_reap_node, cpu) = next_node_in(cpu_to_mem(cpu),
530 node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800531}
532
533static void next_reap_node(void)
534{
Christoph Lameter909ea962010-12-08 16:22:55 +0100535 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800536
Andrew Morton0edaf862016-05-19 17:10:58 -0700537 node = next_node_in(node, node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100538 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800539}
540
541#else
542#define init_reap_node(cpu) do { } while (0)
543#define next_reap_node(void) do { } while (0)
544#endif
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/*
547 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
548 * via the workqueue/eventd.
549 * Add the CPU number into the expiration time to minimize the possibility of
550 * the CPUs getting into lockstep and contending for the global cache chain
551 * lock.
552 */
Paul Gortmaker0db06282013-06-19 14:53:51 -0400553static void start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Tejun Heo1871e522009-10-29 22:34:13 +0900555 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Tejun Heoeac03372016-09-16 15:49:34 -0400557 if (reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800558 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700559 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800560 schedule_delayed_work_on(cpu, reap_work,
561 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563}
564
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700565static void init_arraycache(struct array_cache *ac, int limit, int batch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Catalin Marinasd5cff632009-06-11 13:22:40 +0100567 /*
568 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300569 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100570 * cache the pointers are not cleared and they could be counted as
571 * valid references during a kmemleak scan. Therefore, kmemleak must
572 * not scan such objects.
573 */
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700574 kmemleak_no_scan(ac);
575 if (ac) {
576 ac->avail = 0;
577 ac->limit = limit;
578 ac->batchcount = batch;
579 ac->touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700581}
582
583static struct array_cache *alloc_arraycache(int node, int entries,
584 int batchcount, gfp_t gfp)
585{
Joonsoo Kim5e804782014-08-06 16:04:40 -0700586 size_t memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700587 struct array_cache *ac = NULL;
588
589 ac = kmalloc_node(memsize, gfp, node);
590 init_arraycache(ac, entries, batchcount);
591 return ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700594static noinline void cache_free_pfmemalloc(struct kmem_cache *cachep,
595 struct page *page, void *objp)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700596{
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700597 struct kmem_cache_node *n;
598 int page_node;
599 LIST_HEAD(list);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700600
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700601 page_node = page_to_nid(page);
602 n = get_node(cachep, page_node);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700603
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700604 spin_lock(&n->list_lock);
605 free_block(cachep, &objp, 1, page_node, &list);
606 spin_unlock(&n->list_lock);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700607
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700608 slabs_destroy(cachep, &list);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700609}
610
Christoph Lameter3ded1752006-03-25 03:06:44 -0800611/*
612 * Transfer objects in one arraycache to another.
613 * Locking must be handled by the caller.
614 *
615 * Return the number of entries transferred.
616 */
617static int transfer_objects(struct array_cache *to,
618 struct array_cache *from, unsigned int max)
619{
620 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700621 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800622
623 if (!nr)
624 return 0;
625
626 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
627 sizeof(void *) *nr);
628
629 from->avail -= nr;
630 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800631 return nr;
632}
633
Christoph Lameter765c4502006-09-27 01:50:08 -0700634#ifndef CONFIG_NUMA
635
636#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000637#define reap_alien(cachep, n) do { } while (0)
Christoph Lameter765c4502006-09-27 01:50:08 -0700638
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700639static inline struct alien_cache **alloc_alien_cache(int node,
640 int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700641{
Joonsoo Kim88881772016-05-19 17:10:05 -0700642 return NULL;
Christoph Lameter765c4502006-09-27 01:50:08 -0700643}
644
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700645static inline void free_alien_cache(struct alien_cache **ac_ptr)
Christoph Lameter765c4502006-09-27 01:50:08 -0700646{
647}
648
649static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
650{
651 return 0;
652}
653
654static inline void *alternate_node_alloc(struct kmem_cache *cachep,
655 gfp_t flags)
656{
657 return NULL;
658}
659
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800660static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700661 gfp_t flags, int nodeid)
662{
663 return NULL;
664}
665
David Rientjes4167e9b2015-04-14 15:46:55 -0700666static inline gfp_t gfp_exact_node(gfp_t flags)
667{
Mel Gorman444eb2a42016-03-17 14:19:23 -0700668 return flags & ~__GFP_NOFAIL;
David Rientjes4167e9b2015-04-14 15:46:55 -0700669}
670
Christoph Lameter765c4502006-09-27 01:50:08 -0700671#else /* CONFIG_NUMA */
672
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800673static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800674static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800675
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700676static struct alien_cache *__alloc_alien_cache(int node, int entries,
677 int batch, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700678{
Joonsoo Kim5e804782014-08-06 16:04:40 -0700679 size_t memsize = sizeof(void *) * entries + sizeof(struct alien_cache);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700680 struct alien_cache *alc = NULL;
681
682 alc = kmalloc_node(memsize, gfp, node);
683 init_arraycache(&alc->ac, entries, batch);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700684 spin_lock_init(&alc->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700685 return alc;
686}
687
688static struct alien_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
689{
690 struct alien_cache **alc_ptr;
Joonsoo Kim5e804782014-08-06 16:04:40 -0700691 size_t memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700692 int i;
693
694 if (limit > 1)
695 limit = 12;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700696 alc_ptr = kzalloc_node(memsize, gfp, node);
697 if (!alc_ptr)
698 return NULL;
699
700 for_each_node(i) {
701 if (i == node || !node_online(i))
702 continue;
703 alc_ptr[i] = __alloc_alien_cache(node, limit, 0xbaadf00d, gfp);
704 if (!alc_ptr[i]) {
705 for (i--; i >= 0; i--)
706 kfree(alc_ptr[i]);
707 kfree(alc_ptr);
708 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -0700709 }
710 }
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700711 return alc_ptr;
Christoph Lametere498be72005-09-09 13:03:32 -0700712}
713
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700714static void free_alien_cache(struct alien_cache **alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700715{
716 int i;
717
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700718 if (!alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700719 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700720 for_each_node(i)
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700721 kfree(alc_ptr[i]);
722 kfree(alc_ptr);
Christoph Lametere498be72005-09-09 13:03:32 -0700723}
724
Pekka Enberg343e0d72006-02-01 03:05:50 -0800725static void __drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kim833b7062014-08-06 16:04:33 -0700726 struct array_cache *ac, int node,
727 struct list_head *list)
Christoph Lametere498be72005-09-09 13:03:32 -0700728{
Christoph Lameter18bf8542014-08-06 16:04:11 -0700729 struct kmem_cache_node *n = get_node(cachep, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700730
731 if (ac->avail) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000732 spin_lock(&n->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -0800733 /*
734 * Stuff objects into the remote nodes shared array first.
735 * That way we could avoid the overhead of putting the objects
736 * into the free lists and getting them back later.
737 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000738 if (n->shared)
739 transfer_objects(n->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -0800740
Joonsoo Kim833b7062014-08-06 16:04:33 -0700741 free_block(cachep, ac->entry, ac->avail, node, list);
Christoph Lametere498be72005-09-09 13:03:32 -0700742 ac->avail = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000743 spin_unlock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -0700744 }
745}
746
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800747/*
748 * Called from cache_reap() to regularly drain alien caches round robin.
749 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000750static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800751{
Christoph Lameter909ea962010-12-08 16:22:55 +0100752 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800753
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000754 if (n->alien) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700755 struct alien_cache *alc = n->alien[node];
756 struct array_cache *ac;
Christoph Lametere00946f2006-03-25 03:06:45 -0800757
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700758 if (alc) {
759 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700760 if (ac->avail && spin_trylock_irq(&alc->lock)) {
Joonsoo Kim833b7062014-08-06 16:04:33 -0700761 LIST_HEAD(list);
762
763 __drain_alien_cache(cachep, ac, node, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700764 spin_unlock_irq(&alc->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700765 slabs_destroy(cachep, &list);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700766 }
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800767 }
768 }
769}
770
Andrew Mortona737b3e2006-03-22 00:08:11 -0800771static void drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700772 struct alien_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -0700773{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800774 int i = 0;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700775 struct alien_cache *alc;
Christoph Lametere498be72005-09-09 13:03:32 -0700776 struct array_cache *ac;
777 unsigned long flags;
778
779 for_each_online_node(i) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700780 alc = alien[i];
781 if (alc) {
Joonsoo Kim833b7062014-08-06 16:04:33 -0700782 LIST_HEAD(list);
783
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700784 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700785 spin_lock_irqsave(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700786 __drain_alien_cache(cachep, ac, i, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700787 spin_unlock_irqrestore(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700788 slabs_destroy(cachep, &list);
Christoph Lametere498be72005-09-09 13:03:32 -0700789 }
790 }
791}
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700792
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700793static int __cache_free_alien(struct kmem_cache *cachep, void *objp,
794 int node, int page_node)
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700795{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000796 struct kmem_cache_node *n;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700797 struct alien_cache *alien = NULL;
798 struct array_cache *ac;
Joonsoo Kim97654df2014-08-06 16:04:25 -0700799 LIST_HEAD(list);
Pekka Enberg1ca4cb22006-10-06 00:43:52 -0700800
Christoph Lameter18bf8542014-08-06 16:04:11 -0700801 n = get_node(cachep, node);
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700802 STATS_INC_NODEFREES(cachep);
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700803 if (n->alien && n->alien[page_node]) {
804 alien = n->alien[page_node];
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700805 ac = &alien->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700806 spin_lock(&alien->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700807 if (unlikely(ac->avail == ac->limit)) {
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700808 STATS_INC_ACOVERFLOW(cachep);
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700809 __drain_alien_cache(cachep, ac, page_node, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700810 }
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700811 ac->entry[ac->avail++] = objp;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700812 spin_unlock(&alien->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700813 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700814 } else {
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700815 n = get_node(cachep, page_node);
Christoph Lameter18bf8542014-08-06 16:04:11 -0700816 spin_lock(&n->list_lock);
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700817 free_block(cachep, &objp, 1, page_node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -0700818 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -0700819 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700820 }
821 return 1;
822}
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700823
824static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
825{
826 int page_node = page_to_nid(virt_to_page(objp));
827 int node = numa_mem_id();
828 /*
829 * Make sure we are not freeing a object from another node to the array
830 * cache on this cpu.
831 */
832 if (likely(node == page_node))
833 return 0;
834
835 return __cache_free_alien(cachep, objp, node, page_node);
836}
David Rientjes4167e9b2015-04-14 15:46:55 -0700837
838/*
Mel Gorman444eb2a42016-03-17 14:19:23 -0700839 * Construct gfp mask to allocate from a specific node but do not reclaim or
840 * warn about failures.
David Rientjes4167e9b2015-04-14 15:46:55 -0700841 */
842static inline gfp_t gfp_exact_node(gfp_t flags)
843{
Mel Gorman444eb2a42016-03-17 14:19:23 -0700844 return (flags | __GFP_THISNODE | __GFP_NOWARN) & ~(__GFP_RECLAIM|__GFP_NOFAIL);
David Rientjes4167e9b2015-04-14 15:46:55 -0700845}
Christoph Lametere498be72005-09-09 13:03:32 -0700846#endif
847
Joonsoo Kimded0ecf2016-05-19 17:10:11 -0700848static int init_cache_node(struct kmem_cache *cachep, int node, gfp_t gfp)
849{
850 struct kmem_cache_node *n;
851
852 /*
853 * Set up the kmem_cache_node for cpu before we can
854 * begin anything. Make sure some other cpu on this
855 * node has not already allocated this
856 */
857 n = get_node(cachep, node);
858 if (n) {
859 spin_lock_irq(&n->list_lock);
860 n->free_limit = (1 + nr_cpus_node(node)) * cachep->batchcount +
861 cachep->num;
862 spin_unlock_irq(&n->list_lock);
863
864 return 0;
865 }
866
867 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
868 if (!n)
869 return -ENOMEM;
870
871 kmem_cache_node_init(n);
872 n->next_reap = jiffies + REAPTIMEOUT_NODE +
873 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
874
875 n->free_limit =
876 (1 + nr_cpus_node(node)) * cachep->batchcount + cachep->num;
877
878 /*
879 * The kmem_cache_nodes don't come and go as CPUs
880 * come and go. slab_mutex is sufficient
881 * protection here.
882 */
883 cachep->node[node] = n;
884
885 return 0;
886}
887
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +0200888#if (defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)) || defined(CONFIG_SMP)
David Rientjes8f9f8d92010-03-27 19:40:47 -0700889/*
Christoph Lameter6a673682013-01-10 19:14:19 +0000890 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000891 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -0700892 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +0000893 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -0700894 * already in use.
895 *
Christoph Lameter18004c52012-07-06 15:25:12 -0500896 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -0700897 */
Christoph Lameter6a673682013-01-10 19:14:19 +0000898static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -0700899{
Joonsoo Kimded0ecf2016-05-19 17:10:11 -0700900 int ret;
David Rientjes8f9f8d92010-03-27 19:40:47 -0700901 struct kmem_cache *cachep;
David Rientjes8f9f8d92010-03-27 19:40:47 -0700902
Christoph Lameter18004c52012-07-06 15:25:12 -0500903 list_for_each_entry(cachep, &slab_caches, list) {
Joonsoo Kimded0ecf2016-05-19 17:10:11 -0700904 ret = init_cache_node(cachep, node, GFP_KERNEL);
905 if (ret)
906 return ret;
David Rientjes8f9f8d92010-03-27 19:40:47 -0700907 }
Joonsoo Kimded0ecf2016-05-19 17:10:11 -0700908
David Rientjes8f9f8d92010-03-27 19:40:47 -0700909 return 0;
910}
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +0200911#endif
David Rientjes8f9f8d92010-03-27 19:40:47 -0700912
Joonsoo Kimc3d332b2016-05-19 17:10:14 -0700913static int setup_kmem_cache_node(struct kmem_cache *cachep,
914 int node, gfp_t gfp, bool force_change)
915{
916 int ret = -ENOMEM;
917 struct kmem_cache_node *n;
918 struct array_cache *old_shared = NULL;
919 struct array_cache *new_shared = NULL;
920 struct alien_cache **new_alien = NULL;
921 LIST_HEAD(list);
922
923 if (use_alien_caches) {
924 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
925 if (!new_alien)
926 goto fail;
927 }
928
929 if (cachep->shared) {
930 new_shared = alloc_arraycache(node,
931 cachep->shared * cachep->batchcount, 0xbaadf00d, gfp);
932 if (!new_shared)
933 goto fail;
934 }
935
936 ret = init_cache_node(cachep, node, gfp);
937 if (ret)
938 goto fail;
939
940 n = get_node(cachep, node);
941 spin_lock_irq(&n->list_lock);
942 if (n->shared && force_change) {
943 free_block(cachep, n->shared->entry,
944 n->shared->avail, node, &list);
945 n->shared->avail = 0;
946 }
947
948 if (!n->shared || force_change) {
949 old_shared = n->shared;
950 n->shared = new_shared;
951 new_shared = NULL;
952 }
953
954 if (!n->alien) {
955 n->alien = new_alien;
956 new_alien = NULL;
957 }
958
959 spin_unlock_irq(&n->list_lock);
960 slabs_destroy(cachep, &list);
961
Joonsoo Kim801faf02016-05-19 17:10:31 -0700962 /*
963 * To protect lockless access to n->shared during irq disabled context.
964 * If n->shared isn't NULL in irq disabled context, accessing to it is
965 * guaranteed to be valid until irq is re-enabled, because it will be
966 * freed after synchronize_sched().
967 */
Joonsoo Kim86d9f482016-10-27 17:46:18 -0700968 if (old_shared && force_change)
Joonsoo Kim801faf02016-05-19 17:10:31 -0700969 synchronize_sched();
970
Joonsoo Kimc3d332b2016-05-19 17:10:14 -0700971fail:
972 kfree(old_shared);
973 kfree(new_shared);
974 free_alien_cache(new_alien);
975
976 return ret;
977}
978
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +0200979#ifdef CONFIG_SMP
980
Paul Gortmaker0db06282013-06-19 14:53:51 -0400981static void cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700983 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000984 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700985 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +1030986 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700987
Christoph Lameter18004c52012-07-06 15:25:12 -0500988 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700989 struct array_cache *nc;
990 struct array_cache *shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700991 struct alien_cache **alien;
Joonsoo Kim97654df2014-08-06 16:04:25 -0700992 LIST_HEAD(list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700993
Christoph Lameter18bf8542014-08-06 16:04:11 -0700994 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000995 if (!n)
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700996 continue;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700997
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000998 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700999
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001000 /* Free limit for this kmem_cache_node */
1001 n->free_limit -= cachep->batchcount;
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001002
1003 /* cpu is dead; no one can alloc from it. */
1004 nc = per_cpu_ptr(cachep->cpu_cache, cpu);
1005 if (nc) {
Joonsoo Kim97654df2014-08-06 16:04:25 -07001006 free_block(cachep, nc->entry, nc->avail, node, &list);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001007 nc->avail = 0;
1008 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001009
Rusty Russell58463c12009-12-17 11:43:12 -06001010 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001011 spin_unlock_irq(&n->list_lock);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001012 goto free_slab;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001013 }
1014
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001015 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001016 if (shared) {
1017 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -07001018 shared->avail, node, &list);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001019 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001020 }
1021
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001022 alien = n->alien;
1023 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001024
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001025 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001026
1027 kfree(shared);
1028 if (alien) {
1029 drain_alien_cache(cachep, alien);
1030 free_alien_cache(alien);
1031 }
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001032
1033free_slab:
Joonsoo Kim97654df2014-08-06 16:04:25 -07001034 slabs_destroy(cachep, &list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001035 }
1036 /*
1037 * In the previous loop, all the objects were freed to
1038 * the respective cache's slabs, now we can go ahead and
1039 * shrink each nodelist to its limit.
1040 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001041 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07001042 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001043 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001044 continue;
Joonsoo Kima5aa63a2016-05-19 17:10:08 -07001045 drain_freelist(cachep, n, INT_MAX);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001046 }
1047}
1048
Paul Gortmaker0db06282013-06-19 14:53:51 -04001049static int cpuup_prepare(long cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001050{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001051 struct kmem_cache *cachep;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001052 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001053 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001055 /*
1056 * We need to do this right in the beginning since
1057 * alloc_arraycache's are going to use this list.
1058 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001059 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001060 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001061 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001062 if (err < 0)
1063 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001064
1065 /*
1066 * Now we can go ahead with allocating the shared arrays and
1067 * array caches
1068 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001069 list_for_each_entry(cachep, &slab_caches, list) {
Joonsoo Kimc3d332b2016-05-19 17:10:14 -07001070 err = setup_kmem_cache_node(cachep, node, GFP_KERNEL, false);
1071 if (err)
1072 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001073 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001074
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001075 return 0;
1076bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001077 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001078 return -ENOMEM;
1079}
1080
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001081int slab_prepare_cpu(unsigned int cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001082{
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001083 int err;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001084
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001085 mutex_lock(&slab_mutex);
1086 err = cpuup_prepare(cpu);
1087 mutex_unlock(&slab_mutex);
1088 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001091/*
1092 * This is called for a failed online attempt and for a successful
1093 * offline.
1094 *
1095 * Even if all the cpus of a node are down, we don't free the
1096 * kmem_list3 of any cache. This to avoid a race between cpu_down, and
1097 * a kmalloc allocation from another cpu for memory from the node of
1098 * the cpu going down. The list3 structure is usually allocated from
1099 * kmem_cache_create() and gets destroyed at kmem_cache_destroy().
1100 */
1101int slab_dead_cpu(unsigned int cpu)
1102{
1103 mutex_lock(&slab_mutex);
1104 cpuup_canceled(cpu);
1105 mutex_unlock(&slab_mutex);
1106 return 0;
1107}
1108#endif
1109
1110static int slab_online_cpu(unsigned int cpu)
1111{
1112 start_cpu_timer(cpu);
1113 return 0;
1114}
1115
1116static int slab_offline_cpu(unsigned int cpu)
1117{
1118 /*
1119 * Shutdown cache reaper. Note that the slab_mutex is held so
1120 * that if cache_reap() is invoked it cannot do anything
1121 * expensive but will only modify reap_work and reschedule the
1122 * timer.
1123 */
1124 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
1125 /* Now the cache_reaper is guaranteed to be not running. */
1126 per_cpu(slab_reap_work, cpu).work.func = NULL;
1127 return 0;
1128}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
David Rientjes8f9f8d92010-03-27 19:40:47 -07001130#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1131/*
1132 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1133 * Returns -EBUSY if all objects cannot be drained so that the node is not
1134 * removed.
1135 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001136 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001137 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001138static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001139{
1140 struct kmem_cache *cachep;
1141 int ret = 0;
1142
Christoph Lameter18004c52012-07-06 15:25:12 -05001143 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001144 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001145
Christoph Lameter18bf8542014-08-06 16:04:11 -07001146 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001147 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001148 continue;
1149
Joonsoo Kima5aa63a2016-05-19 17:10:08 -07001150 drain_freelist(cachep, n, INT_MAX);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001151
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001152 if (!list_empty(&n->slabs_full) ||
1153 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001154 ret = -EBUSY;
1155 break;
1156 }
1157 }
1158 return ret;
1159}
1160
1161static int __meminit slab_memory_callback(struct notifier_block *self,
1162 unsigned long action, void *arg)
1163{
1164 struct memory_notify *mnb = arg;
1165 int ret = 0;
1166 int nid;
1167
1168 nid = mnb->status_change_nid;
1169 if (nid < 0)
1170 goto out;
1171
1172 switch (action) {
1173 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001174 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001175 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001176 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001177 break;
1178 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001179 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001180 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001181 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001182 break;
1183 case MEM_ONLINE:
1184 case MEM_OFFLINE:
1185 case MEM_CANCEL_ONLINE:
1186 case MEM_CANCEL_OFFLINE:
1187 break;
1188 }
1189out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001190 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001191}
1192#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1193
Christoph Lametere498be72005-09-09 13:03:32 -07001194/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001195 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001196 */
Christoph Lameter6744f082013-01-10 19:12:17 +00001197static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001198 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001199{
Christoph Lameter6744f082013-01-10 19:12:17 +00001200 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001201
Christoph Lameter6744f082013-01-10 19:12:17 +00001202 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001203 BUG_ON(!ptr);
1204
Christoph Lameter6744f082013-01-10 19:12:17 +00001205 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001206 /*
1207 * Do not assume that spinlocks can be initialized via memcpy:
1208 */
1209 spin_lock_init(&ptr->list_lock);
1210
Christoph Lametere498be72005-09-09 13:03:32 -07001211 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001212 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001213}
1214
Andrew Mortona737b3e2006-03-22 00:08:11 -08001215/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001216 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1217 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001218 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001219static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001220{
1221 int node;
1222
1223 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001224 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001225 cachep->node[node]->next_reap = jiffies +
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001226 REAPTIMEOUT_NODE +
1227 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enberg556a1692008-01-25 08:20:51 +02001228 }
1229}
1230
1231/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001232 * Initialisation. Called after the page allocator have been initialised and
1233 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 */
1235void __init kmem_cache_init(void)
1236{
Christoph Lametere498be72005-09-09 13:03:32 -07001237 int i;
1238
Joonsoo Kim68126702013-10-24 10:07:42 +09001239 BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1240 sizeof(struct rcu_head));
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001241 kmem_cache = &kmem_cache_boot;
1242
Joonsoo Kim88881772016-05-19 17:10:05 -07001243 if (!IS_ENABLED(CONFIG_NUMA) || num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001244 use_alien_caches = 0;
1245
Christoph Lameter3c583462012-11-28 16:23:01 +00001246 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001247 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 /*
1250 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001251 * page orders on machines with more than 32MB of memory if
1252 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001254 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001255 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 /* Bootstrap is tricky, because several objects are allocated
1258 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001259 * 1) initialize the kmem_cache cache: it contains the struct
1260 * kmem_cache structures of all caches, except kmem_cache itself:
1261 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001262 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001263 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001264 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001266 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001267 * An __init data area is used for the head array.
1268 * 3) Create the remaining kmalloc caches, with minimally sized
1269 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001270 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001272 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001273 * the other cache's with kmalloc allocated memory.
1274 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 */
1276
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001277 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Eric Dumazet8da34302007-05-06 14:49:29 -07001279 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001280 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001281 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001282 create_boot_cache(kmem_cache, "kmem_cache",
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001283 offsetof(struct kmem_cache, node) +
Christoph Lameter6744f082013-01-10 19:12:17 +00001284 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001285 SLAB_HWCACHE_ALIGN);
1286 list_add(&kmem_cache->list, &slab_caches);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001287 slab_state = PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Andrew Mortona737b3e2006-03-22 00:08:11 -08001289 /*
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001290 * Initialize the caches that provide memory for the kmem_cache_node
1291 * structures first. Without this, further allocations will bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001292 */
Vlastimil Babkaaf3b5f82017-02-22 15:41:05 -08001293 kmalloc_caches[INDEX_NODE] = create_kmalloc_cache(
1294 kmalloc_info[INDEX_NODE].name,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001295 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001296 slab_state = PARTIAL_NODE;
Daniel Sanders34cc6992015-06-24 16:55:57 -07001297 setup_kmalloc_cache_index_table();
Christoph Lametere498be72005-09-09 13:03:32 -07001298
Ingo Molnare0a42722006-06-23 02:03:46 -07001299 slab_early_init = 0;
1300
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001301 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001302 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001303 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Mel Gorman9c09a952008-01-24 05:49:54 -08001305 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001306 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001307
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001308 init_list(kmalloc_caches[INDEX_NODE],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001309 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001310 }
1311 }
1312
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001313 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001314}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001315
Pekka Enberg8429db52009-06-12 15:58:59 +03001316void __init kmem_cache_init_late(void)
1317{
1318 struct kmem_cache *cachep;
1319
Christoph Lameter97d06602012-07-06 15:25:11 -05001320 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001321
Pekka Enberg8429db52009-06-12 15:58:59 +03001322 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001323 mutex_lock(&slab_mutex);
1324 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001325 if (enable_cpucache(cachep, GFP_NOWAIT))
1326 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001327 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001328
Christoph Lameter97d06602012-07-06 15:25:11 -05001329 /* Done! */
1330 slab_state = FULL;
1331
David Rientjes8f9f8d92010-03-27 19:40:47 -07001332#ifdef CONFIG_NUMA
1333 /*
1334 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001335 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001336 */
1337 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1338#endif
1339
Andrew Mortona737b3e2006-03-22 00:08:11 -08001340 /*
1341 * The reap timers are started later, with a module init call: That part
1342 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 */
1344}
1345
1346static int __init cpucache_init(void)
1347{
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001348 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Andrew Mortona737b3e2006-03-22 00:08:11 -08001350 /*
1351 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 */
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001353 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "SLAB online",
1354 slab_online_cpu, slab_offline_cpu);
1355 WARN_ON(ret < 0);
Glauber Costaa164f8962012-06-21 00:59:18 +04001356
1357 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001358 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return 0;
1360}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361__initcall(cpucache_init);
1362
Rafael Aquini8bdec192012-03-09 17:27:27 -03001363static noinline void
1364slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1365{
David Rientjes9a02d692014-06-04 16:06:36 -07001366#if DEBUG
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001367 struct kmem_cache_node *n;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001368 unsigned long flags;
1369 int node;
David Rientjes9a02d692014-06-04 16:06:36 -07001370 static DEFINE_RATELIMIT_STATE(slab_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
1371 DEFAULT_RATELIMIT_BURST);
1372
1373 if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slab_oom_rs))
1374 return;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001375
Vlastimil Babka5b3810e2016-03-15 14:56:33 -07001376 pr_warn("SLAB: Unable to allocate memory on node %d, gfp=%#x(%pGg)\n",
1377 nodeid, gfpflags, &gfpflags);
1378 pr_warn(" cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001379 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001380
Christoph Lameter18bf8542014-08-06 16:04:11 -07001381 for_each_kmem_cache_node(cachep, node, n) {
David Rientjesbf00bd32016-12-12 16:41:44 -08001382 unsigned long total_slabs, free_slabs, free_objs;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001383
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001384 spin_lock_irqsave(&n->list_lock, flags);
David Rientjesbf00bd32016-12-12 16:41:44 -08001385 total_slabs = n->total_slabs;
1386 free_slabs = n->free_slabs;
1387 free_objs = n->free_objects;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001388 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001389
David Rientjesbf00bd32016-12-12 16:41:44 -08001390 pr_warn(" node %d: slabs: %ld/%ld, objs: %ld/%ld\n",
1391 node, total_slabs - free_slabs, total_slabs,
1392 (total_slabs * cachep->num) - free_objs,
1393 total_slabs * cachep->num);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001394 }
David Rientjes9a02d692014-06-04 16:06:36 -07001395#endif
Rafael Aquini8bdec192012-03-09 17:27:27 -03001396}
1397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398/*
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001399 * Interface to system's page allocator. No need to hold the
1400 * kmem_cache_node ->list_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 *
1402 * If we requested dmaable memory, we will get it. Even if we
1403 * did not request dmaable memory, we might get it, but that
1404 * would be relatively rare and ignorable.
1405 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001406static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1407 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
1409 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001410 int nr_pages;
Christoph Lameter765c4502006-09-27 01:50:08 -07001411
Glauber Costaa618e892012-06-14 16:17:21 +04001412 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001413 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1414 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001415
Vlastimil Babka96db8002015-09-08 15:03:50 -07001416 page = __alloc_pages_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001417 if (!page) {
David Rientjes9a02d692014-06-04 16:06:36 -07001418 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Vladimir Davydovf3ccb2c42015-11-05 18:49:01 -08001422 if (memcg_charge_slab(page, flags, cachep->gfporder, cachep)) {
1423 __free_pages(page, cachep->gfporder);
1424 return NULL;
1425 }
1426
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001427 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Johannes Weiner7779f212017-07-06 15:40:55 -07001429 mod_lruvec_page_state(page, NR_SLAB_RECLAIMABLE, nr_pages);
Christoph Lameter972d1a72006-09-25 23:31:51 -07001430 else
Johannes Weiner7779f212017-07-06 15:40:55 -07001431 mod_lruvec_page_state(page, NR_SLAB_UNRECLAIMABLE, nr_pages);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07001432
Joonsoo Kima57a4982013-10-24 10:07:44 +09001433 __SetPageSlab(page);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07001434 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
1435 if (sk_memalloc_socks() && page_is_pfmemalloc(page))
Joonsoo Kima57a4982013-10-24 10:07:44 +09001436 SetPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001437
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001438 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1439 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1440
1441 if (cachep->ctor)
1442 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1443 else
1444 kmemcheck_mark_unallocated_pages(page, nr_pages);
1445 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001446
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001447 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450/*
1451 * Interface to system's page release.
1452 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001453static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001455 int order = cachep->gfporder;
1456 unsigned long nr_freed = (1 << order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001458 kmemcheck_free_shadow(page, order);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001459
Christoph Lameter972d1a72006-09-25 23:31:51 -07001460 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Johannes Weiner7779f212017-07-06 15:40:55 -07001461 mod_lruvec_page_state(page, NR_SLAB_RECLAIMABLE, -nr_freed);
Christoph Lameter972d1a72006-09-25 23:31:51 -07001462 else
Johannes Weiner7779f212017-07-06 15:40:55 -07001463 mod_lruvec_page_state(page, NR_SLAB_UNRECLAIMABLE, -nr_freed);
Joonsoo Kim73293c22013-10-24 10:07:37 +09001464
Joonsoo Kima57a4982013-10-24 10:07:44 +09001465 BUG_ON(!PageSlab(page));
Joonsoo Kim73293c22013-10-24 10:07:37 +09001466 __ClearPageSlabPfmemalloc(page);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001467 __ClearPageSlab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001468 page_mapcount_reset(page);
1469 page->mapping = NULL;
Glauber Costa1f458cb2012-12-18 14:22:50 -08001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (current->reclaim_state)
1472 current->reclaim_state->reclaimed_slab += nr_freed;
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001473 memcg_uncharge_slab(page, order, cachep);
1474 __free_pages(page, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
1477static void kmem_rcu_free(struct rcu_head *head)
1478{
Joonsoo Kim68126702013-10-24 10:07:42 +09001479 struct kmem_cache *cachep;
1480 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Joonsoo Kim68126702013-10-24 10:07:42 +09001482 page = container_of(head, struct page, rcu_head);
1483 cachep = page->slab_cache;
1484
1485 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
1487
1488#if DEBUG
Joonsoo Kim40b44132016-03-15 14:54:21 -07001489static bool is_debug_pagealloc_cache(struct kmem_cache *cachep)
1490{
1491 if (debug_pagealloc_enabled() && OFF_SLAB(cachep) &&
1492 (cachep->size % PAGE_SIZE) == 0)
1493 return true;
1494
1495 return false;
1496}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001499static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001500 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001502 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001504 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001506 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return;
1508
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001509 *addr++ = 0x12345678;
1510 *addr++ = caller;
1511 *addr++ = smp_processor_id();
1512 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 {
1514 unsigned long *sptr = &caller;
1515 unsigned long svalue;
1516
1517 while (!kstack_end(sptr)) {
1518 svalue = *sptr++;
1519 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001520 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 size -= sizeof(unsigned long);
1522 if (size <= sizeof(unsigned long))
1523 break;
1524 }
1525 }
1526
1527 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001528 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
Joonsoo Kim40b44132016-03-15 14:54:21 -07001530
1531static void slab_kernel_map(struct kmem_cache *cachep, void *objp,
1532 int map, unsigned long caller)
1533{
1534 if (!is_debug_pagealloc_cache(cachep))
1535 return;
1536
1537 if (caller)
1538 store_stackinfo(cachep, objp, caller);
1539
1540 kernel_map_pages(virt_to_page(objp), cachep->size / PAGE_SIZE, map);
1541}
1542
1543#else
1544static inline void slab_kernel_map(struct kmem_cache *cachep, void *objp,
1545 int map, unsigned long caller) {}
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547#endif
1548
Pekka Enberg343e0d72006-02-01 03:05:50 -08001549static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001551 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001552 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001555 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
1558static void dump_line(char *data, int offset, int limit)
1559{
1560 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001561 unsigned char error = 0;
1562 int bad_count = 0;
1563
Joe Perches11705322016-03-17 14:19:50 -07001564 pr_err("%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001565 for (i = 0; i < limit; i++) {
1566 if (data[offset + i] != POISON_FREE) {
1567 error = data[offset + i];
1568 bad_count++;
1569 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001570 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001571 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1572 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001573
1574 if (bad_count == 1) {
1575 error ^= POISON_FREE;
1576 if (!(error & (error - 1))) {
Joe Perches11705322016-03-17 14:19:50 -07001577 pr_err("Single bit error detected. Probably bad RAM.\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001578#ifdef CONFIG_X86
Joe Perches11705322016-03-17 14:19:50 -07001579 pr_err("Run memtest86+ or a similar memory test tool.\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001580#else
Joe Perches11705322016-03-17 14:19:50 -07001581 pr_err("Run a memory test tool.\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001582#endif
1583 }
1584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586#endif
1587
1588#if DEBUG
1589
Pekka Enberg343e0d72006-02-01 03:05:50 -08001590static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 int i, size;
1593 char *realobj;
1594
1595 if (cachep->flags & SLAB_RED_ZONE) {
Joe Perches11705322016-03-17 14:19:50 -07001596 pr_err("Redzone: 0x%llx/0x%llx\n",
1597 *dbg_redzone1(cachep, objp),
1598 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600
1601 if (cachep->flags & SLAB_STORE_USER) {
Joe Perches11705322016-03-17 14:19:50 -07001602 pr_err("Last user: [<%p>](%pSR)\n",
Joe Perches071361d2012-12-12 10:19:12 -08001603 *dbg_userword(cachep, objp),
1604 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001606 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001607 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001608 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 int limit;
1610 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001611 if (i + limit > size)
1612 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 dump_line(realobj, i, limit);
1614 }
1615}
1616
Pekka Enberg343e0d72006-02-01 03:05:50 -08001617static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
1619 char *realobj;
1620 int size, i;
1621 int lines = 0;
1622
Joonsoo Kim40b44132016-03-15 14:54:21 -07001623 if (is_debug_pagealloc_cache(cachep))
1624 return;
1625
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001626 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001627 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001629 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001631 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 exp = POISON_END;
1633 if (realobj[i] != exp) {
1634 int limit;
1635 /* Mismatch ! */
1636 /* Print header */
1637 if (lines == 0) {
Joe Perches11705322016-03-17 14:19:50 -07001638 pr_err("Slab corruption (%s): %s start=%p, len=%d\n",
1639 print_tainted(), cachep->name,
1640 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 print_objinfo(cachep, objp, 0);
1642 }
1643 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001644 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001646 if (i + limit > size)
1647 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 dump_line(realobj, i, limit);
1649 i += 16;
1650 lines++;
1651 /* Limit to 5 lines */
1652 if (lines > 5)
1653 break;
1654 }
1655 }
1656 if (lines != 0) {
1657 /* Print some data about the neighboring objects, if they
1658 * exist:
1659 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001660 struct page *page = virt_to_head_page(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001661 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Joonsoo Kim8456a642013-10-24 10:07:49 +09001663 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 if (objnr) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001665 objp = index_to_obj(cachep, page, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001666 realobj = (char *)objp + obj_offset(cachep);
Joe Perches11705322016-03-17 14:19:50 -07001667 pr_err("Prev obj: start=%p, len=%d\n", realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 print_objinfo(cachep, objp, 2);
1669 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001670 if (objnr + 1 < cachep->num) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001671 objp = index_to_obj(cachep, page, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001672 realobj = (char *)objp + obj_offset(cachep);
Joe Perches11705322016-03-17 14:19:50 -07001673 pr_err("Next obj: start=%p, len=%d\n", realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 print_objinfo(cachep, objp, 2);
1675 }
1676 }
1677}
1678#endif
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09001681static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1682 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001683{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 int i;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07001685
1686 if (OBJFREELIST_SLAB(cachep) && cachep->flags & SLAB_POISON) {
1687 poison_obj(cachep, page->freelist - obj_offset(cachep),
1688 POISON_FREE);
1689 }
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001692 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 check_poison_obj(cachep, objp);
Joonsoo Kim40b44132016-03-15 14:54:21 -07001696 slab_kernel_map(cachep, objp, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698 if (cachep->flags & SLAB_RED_ZONE) {
1699 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07001700 slab_error(cachep, "start of a freed object was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07001702 slab_error(cachep, "end of a freed object was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001705}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706#else
Joonsoo Kim8456a642013-10-24 10:07:49 +09001707static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1708 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001709{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001710}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711#endif
1712
Randy Dunlap911851e2006-03-22 00:08:14 -08001713/**
1714 * slab_destroy - destroy and release all objects in a slab
1715 * @cachep: cache pointer being destroyed
Masanari Iidacb8ee1a2014-01-28 02:57:08 +09001716 * @page: page pointer being destroyed
Randy Dunlap911851e2006-03-22 00:08:14 -08001717 *
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001718 * Destroy all the objs in a slab page, and release the mem back to the system.
1719 * Before calling the slab page must have been unlinked from the cache. The
1720 * kmem_cache_node ->list_lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001721 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001722static void slab_destroy(struct kmem_cache *cachep, struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001723{
Joonsoo Kim7e007352013-10-30 19:04:01 +09001724 void *freelist;
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001725
Joonsoo Kim8456a642013-10-24 10:07:49 +09001726 freelist = page->freelist;
1727 slab_destroy_debugcheck(cachep, page);
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -08001728 if (unlikely(cachep->flags & SLAB_TYPESAFE_BY_RCU))
Kirill A. Shutemovbc4f6102015-11-06 16:29:44 -08001729 call_rcu(&page->rcu_head, kmem_rcu_free);
1730 else
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001731 kmem_freepages(cachep, page);
Joonsoo Kim68126702013-10-24 10:07:42 +09001732
1733 /*
Joonsoo Kim8456a642013-10-24 10:07:49 +09001734 * From now on, we don't use freelist
Joonsoo Kim68126702013-10-24 10:07:42 +09001735 * although actual page can be freed in rcu context
1736 */
1737 if (OFF_SLAB(cachep))
Joonsoo Kim8456a642013-10-24 10:07:49 +09001738 kmem_cache_free(cachep->freelist_cache, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
Joonsoo Kim97654df2014-08-06 16:04:25 -07001741static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list)
1742{
1743 struct page *page, *n;
1744
1745 list_for_each_entry_safe(page, n, list, lru) {
1746 list_del(&page->lru);
1747 slab_destroy(cachep, page);
1748 }
1749}
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001752 * calculate_slab_order - calculate size (page order) of slabs
1753 * @cachep: pointer to the cache that is being created
1754 * @size: size of objects to be created in this cache.
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001755 * @flags: slab allocation flags
1756 *
1757 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001758 *
1759 * This could be made much more intelligent. For now, try to avoid using
1760 * high order pages for slabs. When the gfp() functions are more friendly
1761 * towards high-order requests, this should be changed.
1762 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001763static size_t calculate_slab_order(struct kmem_cache *cachep,
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07001764 size_t size, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001765{
1766 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001767 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001768
Christoph Lameter0aa817f2007-05-16 22:11:01 -07001769 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001770 unsigned int num;
1771 size_t remainder;
1772
Joonsoo Kim70f75062016-03-15 14:54:53 -07001773 num = cache_estimate(gfporder, size, flags, &remainder);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001774 if (!num)
1775 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001776
Joonsoo Kimf315e3f2013-12-02 17:49:41 +09001777 /* Can't handle number of objects more than SLAB_OBJ_MAX_NUM */
1778 if (num > SLAB_OBJ_MAX_NUM)
1779 break;
1780
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001781 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001782 struct kmem_cache *freelist_cache;
1783 size_t freelist_size;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001784
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001785 freelist_size = num * sizeof(freelist_idx_t);
1786 freelist_cache = kmalloc_slab(freelist_size, 0u);
1787 if (!freelist_cache)
1788 continue;
1789
1790 /*
1791 * Needed to avoid possible looping condition
Joonsoo Kim76b342b2016-05-19 17:10:26 -07001792 * in cache_grow_begin()
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001793 */
1794 if (OFF_SLAB(freelist_cache))
1795 continue;
1796
1797 /* check if off slab has enough benefit */
1798 if (freelist_cache->size > cachep->size / 2)
1799 continue;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001800 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001801
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001802 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001803 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001804 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001805 left_over = remainder;
1806
1807 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001808 * A VFS-reclaimable slab tends to have most allocations
1809 * as GFP_NOFS and we really don't want to have to be allocating
1810 * higher-order pages when we are unable to shrink dcache.
1811 */
1812 if (flags & SLAB_RECLAIM_ACCOUNT)
1813 break;
1814
1815 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001816 * Large number of objects is good, but very large slabs are
1817 * currently bad for the gfp()s.
1818 */
David Rientjes543585c2011-10-18 22:09:24 -07001819 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001820 break;
1821
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001822 /*
1823 * Acceptable internal fragmentation?
1824 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001825 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001826 break;
1827 }
1828 return left_over;
1829}
1830
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001831static struct array_cache __percpu *alloc_kmem_cache_cpus(
1832 struct kmem_cache *cachep, int entries, int batchcount)
1833{
1834 int cpu;
1835 size_t size;
1836 struct array_cache __percpu *cpu_cache;
1837
1838 size = sizeof(void *) * entries + sizeof(struct array_cache);
Joonsoo Kim85c9f4b2014-10-13 15:51:01 -07001839 cpu_cache = __alloc_percpu(size, sizeof(void *));
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001840
1841 if (!cpu_cache)
1842 return NULL;
1843
1844 for_each_possible_cpu(cpu) {
1845 init_arraycache(per_cpu_ptr(cpu_cache, cpu),
1846 entries, batchcount);
1847 }
1848
1849 return cpu_cache;
1850}
1851
Fabian Frederickbd721ea2016-08-02 14:03:33 -07001852static int __ref setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001853{
Christoph Lameter97d06602012-07-06 15:25:11 -05001854 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03001855 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07001856
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001857 cachep->cpu_cache = alloc_kmem_cache_cpus(cachep, 1, 1);
1858 if (!cachep->cpu_cache)
1859 return 1;
1860
Christoph Lameter97d06602012-07-06 15:25:11 -05001861 if (slab_state == DOWN) {
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001862 /* Creation of first cache (kmem_cache). */
1863 set_up_node(kmem_cache, CACHE_CACHE);
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001864 } else if (slab_state == PARTIAL) {
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001865 /* For kmem_cache_node */
1866 set_up_node(cachep, SIZE_NODE);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001867 } else {
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001868 int node;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001869
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001870 for_each_online_node(node) {
1871 cachep->node[node] = kmalloc_node(
1872 sizeof(struct kmem_cache_node), gfp, node);
1873 BUG_ON(!cachep->node[node]);
1874 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001875 }
1876 }
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001877
Christoph Lameter6a673682013-01-10 19:14:19 +00001878 cachep->node[numa_mem_id()]->next_reap =
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001879 jiffies + REAPTIMEOUT_NODE +
1880 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001881
1882 cpu_cache_get(cachep)->avail = 0;
1883 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
1884 cpu_cache_get(cachep)->batchcount = 1;
1885 cpu_cache_get(cachep)->touched = 0;
1886 cachep->batchcount = 1;
1887 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07001888 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001889}
1890
Joonsoo Kim12220de2014-10-09 15:26:24 -07001891unsigned long kmem_cache_flags(unsigned long object_size,
1892 unsigned long flags, const char *name,
1893 void (*ctor)(void *))
1894{
1895 return flags;
1896}
1897
1898struct kmem_cache *
1899__kmem_cache_alias(const char *name, size_t size, size_t align,
1900 unsigned long flags, void (*ctor)(void *))
1901{
1902 struct kmem_cache *cachep;
1903
1904 cachep = find_mergeable(size, align, flags, name, ctor);
1905 if (cachep) {
1906 cachep->refcount++;
1907
1908 /*
1909 * Adjust the object sizes so that we clear
1910 * the complete object on kzalloc.
1911 */
1912 cachep->object_size = max_t(int, cachep->object_size, size);
1913 }
1914 return cachep;
1915}
1916
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07001917static bool set_objfreelist_slab_cache(struct kmem_cache *cachep,
1918 size_t size, unsigned long flags)
1919{
1920 size_t left;
1921
1922 cachep->num = 0;
1923
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -08001924 if (cachep->ctor || flags & SLAB_TYPESAFE_BY_RCU)
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07001925 return false;
1926
1927 left = calculate_slab_order(cachep, size,
1928 flags | CFLGS_OBJFREELIST_SLAB);
1929 if (!cachep->num)
1930 return false;
1931
1932 if (cachep->num * sizeof(freelist_idx_t) > cachep->object_size)
1933 return false;
1934
1935 cachep->colour = left / cachep->colour_off;
1936
1937 return true;
1938}
1939
Joonsoo Kim158e3192016-03-15 14:54:35 -07001940static bool set_off_slab_cache(struct kmem_cache *cachep,
1941 size_t size, unsigned long flags)
1942{
1943 size_t left;
1944
1945 cachep->num = 0;
1946
1947 /*
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001948 * Always use on-slab management when SLAB_NOLEAKTRACE
1949 * to avoid recursive calls into kmemleak.
Joonsoo Kim158e3192016-03-15 14:54:35 -07001950 */
Joonsoo Kim158e3192016-03-15 14:54:35 -07001951 if (flags & SLAB_NOLEAKTRACE)
1952 return false;
1953
1954 /*
1955 * Size is large, assume best to place the slab management obj
1956 * off-slab (should allow better packing of objs).
1957 */
1958 left = calculate_slab_order(cachep, size, flags | CFLGS_OFF_SLAB);
1959 if (!cachep->num)
1960 return false;
1961
1962 /*
1963 * If the slab has been placed off-slab, and we have enough space then
1964 * move it on-slab. This is at the expense of any extra colouring.
1965 */
1966 if (left >= cachep->num * sizeof(freelist_idx_t))
1967 return false;
1968
1969 cachep->colour = left / cachep->colour_off;
1970
1971 return true;
1972}
1973
1974static bool set_on_slab_cache(struct kmem_cache *cachep,
1975 size_t size, unsigned long flags)
1976{
1977 size_t left;
1978
1979 cachep->num = 0;
1980
1981 left = calculate_slab_order(cachep, size, flags);
1982 if (!cachep->num)
1983 return false;
1984
1985 cachep->colour = left / cachep->colour_off;
1986
1987 return true;
1988}
1989
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001990/**
Christoph Lameter039363f2012-07-06 15:25:10 -05001991 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08001992 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 *
1995 * Returns a ptr to the cache on success, NULL on failure.
1996 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09001997 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 * The flags are
2000 *
2001 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2002 * to catch references to uninitialised memory.
2003 *
2004 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2005 * for buffer overruns.
2006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2008 * cacheline. This can be beneficial if you're counting cycles as closely
2009 * as davem.
2010 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002011int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002012__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
David Rientjesd4a5fca52014-09-25 16:05:20 -07002014 size_t ralign = BYTES_PER_WORD;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002015 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002016 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002017 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020#if FORCED_DEBUG
2021 /*
2022 * Enable redzoning and last user accounting, except for caches with
2023 * large objects, if the increased size would increase the object size
2024 * above the next power of two: caches with object sizes just above a
2025 * power of two have a significant amount of internal fragmentation.
2026 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002027 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2028 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002029 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -08002030 if (!(flags & SLAB_TYPESAFE_BY_RCU))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 flags |= SLAB_POISON;
2032#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Andrew Mortona737b3e2006-03-22 00:08:11 -08002035 /*
2036 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 * unaligned accesses for some archs when redzoning is used, and makes
2038 * sure any on-slab bufctl's are also correctly aligned.
2039 */
Canjiang Lue0771952017-07-06 15:36:37 -07002040 size = ALIGN(size, BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
David Woodhouse87a927c2007-07-04 21:26:44 -04002042 if (flags & SLAB_RED_ZONE) {
2043 ralign = REDZONE_ALIGN;
2044 /* If redzoning, ensure that the second redzone is suitably
2045 * aligned, by adjusting the object size accordingly. */
Canjiang Lue0771952017-07-06 15:36:37 -07002046 size = ALIGN(size, REDZONE_ALIGN);
David Woodhouse87a927c2007-07-04 21:26:44 -04002047 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002048
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002049 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002050 if (ralign < cachep->align) {
2051 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002053 /* disable debug if necessary */
2054 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002055 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002056 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002057 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002059 cachep->align = ralign;
Joonsoo Kim158e3192016-03-15 14:54:35 -07002060 cachep->colour_off = cache_line_size();
2061 /* Offset must be a multiple of the alignment. */
2062 if (cachep->colour_off < cachep->align)
2063 cachep->colour_off = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Pekka Enberg83b519e2009-06-10 19:40:04 +03002065 if (slab_is_available())
2066 gfp = GFP_KERNEL;
2067 else
2068 gfp = GFP_NOWAIT;
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Pekka Enbergca5f9702006-09-25 23:31:25 -07002072 /*
2073 * Both debugging options require word-alignment which is calculated
2074 * into align above.
2075 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002078 cachep->obj_offset += sizeof(unsigned long long);
2079 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
2081 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002082 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002083 * the real object. But if the second red zone needs to be
2084 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002086 if (flags & SLAB_RED_ZONE)
2087 size += REDZONE_ALIGN;
2088 else
2089 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
Joonsoo Kim832a15d2016-03-15 14:54:33 -07002091#endif
2092
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002093 kasan_cache_create(cachep, &size, &flags);
2094
Joonsoo Kim832a15d2016-03-15 14:54:33 -07002095 size = ALIGN(size, cachep->align);
2096 /*
2097 * We should restrict the number of objects in a slab to implement
2098 * byte sized index. Refer comment on SLAB_OBJ_MIN_SIZE definition.
2099 */
2100 if (FREELIST_BYTE_INDEX && size < SLAB_OBJ_MIN_SIZE)
2101 size = ALIGN(SLAB_OBJ_MIN_SIZE, cachep->align);
2102
2103#if DEBUG
Joonsoo Kim03a2d2a2015-10-01 15:36:54 -07002104 /*
2105 * To activate debug pagealloc, off-slab management is necessary
2106 * requirement. In early phase of initialization, small sized slab
2107 * doesn't get initialized so it would not be possible. So, we need
2108 * to check size >= 256. It guarantees that all necessary small
2109 * sized slab is initialized in current slab initialization sequence.
2110 */
Joonsoo Kim40323272016-03-15 14:54:18 -07002111 if (debug_pagealloc_enabled() && (flags & SLAB_POISON) &&
Joonsoo Kimf3a3c322016-03-15 14:54:38 -07002112 size >= 256 && cachep->object_size > cache_line_size()) {
2113 if (size < PAGE_SIZE || size % PAGE_SIZE == 0) {
2114 size_t tmp_size = ALIGN(size, PAGE_SIZE);
2115
2116 if (set_off_slab_cache(cachep, tmp_size, flags)) {
2117 flags |= CFLGS_OFF_SLAB;
2118 cachep->obj_offset += tmp_size - size;
2119 size = tmp_size;
2120 goto done;
2121 }
2122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
2124#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002126 if (set_objfreelist_slab_cache(cachep, size, flags)) {
2127 flags |= CFLGS_OBJFREELIST_SLAB;
2128 goto done;
2129 }
2130
Joonsoo Kim158e3192016-03-15 14:54:35 -07002131 if (set_off_slab_cache(cachep, size, flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 flags |= CFLGS_OFF_SLAB;
Joonsoo Kim158e3192016-03-15 14:54:35 -07002133 goto done;
Joonsoo Kim832a15d2016-03-15 14:54:33 -07002134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Joonsoo Kim158e3192016-03-15 14:54:35 -07002136 if (set_on_slab_cache(cachep, size, flags))
2137 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Joonsoo Kim158e3192016-03-15 14:54:35 -07002139 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002140
Joonsoo Kim158e3192016-03-15 14:54:35 -07002141done:
2142 cachep->freelist_size = cachep->num * sizeof(freelist_idx_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 cachep->flags = flags;
Joonsoo Kima57a4982013-10-24 10:07:44 +09002144 cachep->allocflags = __GFP_COMP;
Yang Shia3187e42016-05-19 17:10:41 -07002145 if (flags & SLAB_CACHE_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002146 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002147 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002148 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Joonsoo Kim40b44132016-03-15 14:54:21 -07002150#if DEBUG
2151 /*
2152 * If we're going to use the generic kernel_map_pages()
2153 * poisoning, then it's going to smash the contents of
2154 * the redzone and userword anyhow, so switch them off.
2155 */
2156 if (IS_ENABLED(CONFIG_PAGE_POISONING) &&
2157 (cachep->flags & SLAB_POISON) &&
2158 is_debug_pagealloc_cache(cachep))
2159 cachep->flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2160#endif
2161
2162 if (OFF_SLAB(cachep)) {
Joonsoo Kim158e3192016-03-15 14:54:35 -07002163 cachep->freelist_cache =
2164 kmalloc_slab(cachep->freelist_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002167 err = setup_cpu_cache(cachep, gfp);
2168 if (err) {
Dmitry Safonov52b4b952016-02-17 13:11:37 -08002169 __kmem_cache_release(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002170 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002173 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176#if DEBUG
2177static void check_irq_off(void)
2178{
2179 BUG_ON(!irqs_disabled());
2180}
2181
2182static void check_irq_on(void)
2183{
2184 BUG_ON(irqs_disabled());
2185}
2186
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002187static void check_mutex_acquired(void)
2188{
2189 BUG_ON(!mutex_is_locked(&slab_mutex));
2190}
2191
Pekka Enberg343e0d72006-02-01 03:05:50 -08002192static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194#ifdef CONFIG_SMP
2195 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002196 assert_spin_locked(&get_node(cachep, numa_mem_id())->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197#endif
2198}
Christoph Lametere498be72005-09-09 13:03:32 -07002199
Pekka Enberg343e0d72006-02-01 03:05:50 -08002200static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002201{
2202#ifdef CONFIG_SMP
2203 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002204 assert_spin_locked(&get_node(cachep, node)->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002205#endif
2206}
2207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208#else
2209#define check_irq_off() do { } while(0)
2210#define check_irq_on() do { } while(0)
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002211#define check_mutex_acquired() do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002213#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214#endif
2215
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002216static void drain_array_locked(struct kmem_cache *cachep, struct array_cache *ac,
2217 int node, bool free_all, struct list_head *list)
2218{
2219 int tofree;
2220
2221 if (!ac || !ac->avail)
2222 return;
2223
2224 tofree = free_all ? ac->avail : (ac->limit + 4) / 5;
2225 if (tofree > ac->avail)
2226 tofree = (ac->avail + 1) / 2;
2227
2228 free_block(cachep, ac->entry, tofree, node, list);
2229 ac->avail -= tofree;
2230 memmove(ac->entry, &(ac->entry[tofree]), sizeof(void *) * ac->avail);
2231}
Christoph Lameteraab22072006-03-22 00:09:06 -08002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233static void do_drain(void *arg)
2234{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002235 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002237 int node = numa_mem_id();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002238 struct kmem_cache_node *n;
Joonsoo Kim97654df2014-08-06 16:04:25 -07002239 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002242 ac = cpu_cache_get(cachep);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002243 n = get_node(cachep, node);
2244 spin_lock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002245 free_block(cachep, ac->entry, ac->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002246 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002247 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 ac->avail = 0;
2249}
2250
Pekka Enberg343e0d72006-02-01 03:05:50 -08002251static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002253 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002254 int node;
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002255 LIST_HEAD(list);
Christoph Lametere498be72005-09-09 13:03:32 -07002256
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002257 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002259 for_each_kmem_cache_node(cachep, node, n)
2260 if (n->alien)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002261 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002262
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002263 for_each_kmem_cache_node(cachep, node, n) {
2264 spin_lock_irq(&n->list_lock);
2265 drain_array_locked(cachep, n->shared, node, true, &list);
2266 spin_unlock_irq(&n->list_lock);
2267
2268 slabs_destroy(cachep, &list);
2269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
2271
Christoph Lametered11d9e2006-06-30 01:55:45 -07002272/*
2273 * Remove slabs from the list of free slabs.
2274 * Specify the number of slabs to drain in tofree.
2275 *
2276 * Returns the actual number of slabs released.
2277 */
2278static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002279 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002281 struct list_head *p;
2282 int nr_freed;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002283 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Christoph Lametered11d9e2006-06-30 01:55:45 -07002285 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002286 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002288 spin_lock_irq(&n->list_lock);
2289 p = n->slabs_free.prev;
2290 if (p == &n->slabs_free) {
2291 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002292 goto out;
2293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Joonsoo Kim8456a642013-10-24 10:07:49 +09002295 page = list_entry(p, struct page, lru);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002296 list_del(&page->lru);
Greg Thelenf728b0a2016-12-12 16:41:41 -08002297 n->free_slabs--;
David Rientjesbf00bd32016-12-12 16:41:44 -08002298 n->total_slabs--;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002299 /*
2300 * Safe to drop the lock. The slab is no longer linked
2301 * to the cache.
2302 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002303 n->free_objects -= cache->num;
2304 spin_unlock_irq(&n->list_lock);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002305 slab_destroy(cache, page);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002306 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002308out:
2309 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310}
2311
Tejun Heoc9fc5862017-02-22 15:41:27 -08002312int __kmem_cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002313{
Christoph Lameter18bf8542014-08-06 16:04:11 -07002314 int ret = 0;
2315 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002316 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002317
2318 drain_cpu_caches(cachep);
2319
2320 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002321 for_each_kmem_cache_node(cachep, node, n) {
Joonsoo Kima5aa63a2016-05-19 17:10:08 -07002322 drain_freelist(cachep, n, INT_MAX);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002323
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002324 ret += !list_empty(&n->slabs_full) ||
2325 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002326 }
2327 return (ret ? 1 : 0);
2328}
2329
Tejun Heoc9fc5862017-02-22 15:41:27 -08002330#ifdef CONFIG_MEMCG
2331void __kmemcg_cache_deactivate(struct kmem_cache *cachep)
2332{
2333 __kmem_cache_shrink(cachep);
2334}
2335#endif
2336
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002337int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338{
Tejun Heoc9fc5862017-02-22 15:41:27 -08002339 return __kmem_cache_shrink(cachep);
Dmitry Safonov52b4b952016-02-17 13:11:37 -08002340}
2341
2342void __kmem_cache_release(struct kmem_cache *cachep)
2343{
Christoph Lameter12c36672012-09-04 23:38:33 +00002344 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002345 struct kmem_cache_node *n;
Christoph Lameter12c36672012-09-04 23:38:33 +00002346
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002347 cache_random_seq_destroy(cachep);
2348
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07002349 free_percpu(cachep->cpu_cache);
Christoph Lameter12c36672012-09-04 23:38:33 +00002350
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002351 /* NUMA: free the node structures */
Christoph Lameter18bf8542014-08-06 16:04:11 -07002352 for_each_kmem_cache_node(cachep, i, n) {
2353 kfree(n->shared);
2354 free_alien_cache(n->alien);
2355 kfree(n);
2356 cachep->node[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002360/*
2361 * Get the memory for a slab management obj.
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002362 *
2363 * For a slab cache when the slab descriptor is off-slab, the
2364 * slab descriptor can't come from the same cache which is being created,
2365 * Because if it is the case, that means we defer the creation of
2366 * the kmalloc_{dma,}_cache of size sizeof(slab descriptor) to this point.
2367 * And we eventually call down to __kmem_cache_create(), which
2368 * in turn looks up in the kmalloc_{dma,}_caches for the disired-size one.
2369 * This is a "chicken-and-egg" problem.
2370 *
2371 * So the off-slab slab descriptor shall come from the kmalloc_{dma,}_caches,
2372 * which are all initialized during kmem_cache_init().
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002373 */
Joonsoo Kim7e007352013-10-30 19:04:01 +09002374static void *alloc_slabmgmt(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002375 struct page *page, int colour_off,
2376 gfp_t local_flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002378 void *freelist;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002379 void *addr = page_address(page);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002380
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07002381 page->s_mem = addr + colour_off;
2382 page->active = 0;
2383
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002384 if (OBJFREELIST_SLAB(cachep))
2385 freelist = NULL;
2386 else if (OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 /* Slab management obj is off-slab. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002388 freelist = kmem_cache_alloc_node(cachep->freelist_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002389 local_flags, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002390 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 return NULL;
2392 } else {
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07002393 /* We will use last bytes at the slab for freelist */
2394 freelist = addr + (PAGE_SIZE << cachep->gfporder) -
2395 cachep->freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 }
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07002397
Joonsoo Kim8456a642013-10-24 10:07:49 +09002398 return freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399}
2400
Joonsoo Kim7cc68972014-04-18 16:24:09 +09002401static inline freelist_idx_t get_free_obj(struct page *page, unsigned int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002403 return ((freelist_idx_t *)page->freelist)[idx];
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002404}
2405
2406static inline void set_free_obj(struct page *page,
Joonsoo Kim7cc68972014-04-18 16:24:09 +09002407 unsigned int idx, freelist_idx_t val)
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002408{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002409 ((freelist_idx_t *)(page->freelist))[idx] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410}
2411
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002412static void cache_init_objs_debug(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002414#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 int i;
2416
2417 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002418 void *objp = index_to_obj(cachep, page, i);
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 if (cachep->flags & SLAB_STORE_USER)
2421 *dbg_userword(cachep, objp) = NULL;
2422
2423 if (cachep->flags & SLAB_RED_ZONE) {
2424 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2425 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2426 }
2427 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002428 * Constructors are not allowed to allocate memory from the same
2429 * cache which they are a constructor for. Otherwise, deadlock.
2430 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 */
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002432 if (cachep->ctor && !(cachep->flags & SLAB_POISON)) {
2433 kasan_unpoison_object_data(cachep,
2434 objp + obj_offset(cachep));
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002435 cachep->ctor(objp + obj_offset(cachep));
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002436 kasan_poison_object_data(
2437 cachep, objp + obj_offset(cachep));
2438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
2440 if (cachep->flags & SLAB_RED_ZONE) {
2441 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07002442 slab_error(cachep, "constructor overwrote the end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07002444 slab_error(cachep, "constructor overwrote the start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 }
Joonsoo Kim40b44132016-03-15 14:54:21 -07002446 /* need to poison the objs? */
2447 if (cachep->flags & SLAB_POISON) {
2448 poison_obj(cachep, objp, POISON_FREE);
2449 slab_kernel_map(cachep, objp, 0, 0);
2450 }
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452#endif
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002453}
2454
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002455#ifdef CONFIG_SLAB_FREELIST_RANDOM
2456/* Hold information during a freelist initialization */
2457union freelist_init_state {
2458 struct {
2459 unsigned int pos;
Thomas Garnier7c00fce2016-07-26 15:21:56 -07002460 unsigned int *list;
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002461 unsigned int count;
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002462 };
2463 struct rnd_state rnd_state;
2464};
2465
2466/*
2467 * Initialize the state based on the randomization methode available.
2468 * return true if the pre-computed list is available, false otherwize.
2469 */
2470static bool freelist_state_initialize(union freelist_init_state *state,
2471 struct kmem_cache *cachep,
2472 unsigned int count)
2473{
2474 bool ret;
2475 unsigned int rand;
2476
2477 /* Use best entropy available to define a random shift */
Thomas Garnier7c00fce2016-07-26 15:21:56 -07002478 rand = get_random_int();
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002479
2480 /* Use a random state if the pre-computed list is not available */
2481 if (!cachep->random_seq) {
2482 prandom_seed_state(&state->rnd_state, rand);
2483 ret = false;
2484 } else {
2485 state->list = cachep->random_seq;
2486 state->count = count;
John Sperbeckc4e490c2017-01-10 16:58:24 -08002487 state->pos = rand % count;
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002488 ret = true;
2489 }
2490 return ret;
2491}
2492
2493/* Get the next entry on the list and randomize it using a random shift */
2494static freelist_idx_t next_random_slot(union freelist_init_state *state)
2495{
John Sperbeckc4e490c2017-01-10 16:58:24 -08002496 if (state->pos >= state->count)
2497 state->pos = 0;
2498 return state->list[state->pos++];
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002499}
2500
Thomas Garnier7c00fce2016-07-26 15:21:56 -07002501/* Swap two freelist entries */
2502static void swap_free_obj(struct page *page, unsigned int a, unsigned int b)
2503{
2504 swap(((freelist_idx_t *)page->freelist)[a],
2505 ((freelist_idx_t *)page->freelist)[b]);
2506}
2507
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002508/*
2509 * Shuffle the freelist initialization state based on pre-computed lists.
2510 * return true if the list was successfully shuffled, false otherwise.
2511 */
2512static bool shuffle_freelist(struct kmem_cache *cachep, struct page *page)
2513{
Thomas Garnier7c00fce2016-07-26 15:21:56 -07002514 unsigned int objfreelist = 0, i, rand, count = cachep->num;
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002515 union freelist_init_state state;
2516 bool precomputed;
2517
2518 if (count < 2)
2519 return false;
2520
2521 precomputed = freelist_state_initialize(&state, cachep, count);
2522
2523 /* Take a random entry as the objfreelist */
2524 if (OBJFREELIST_SLAB(cachep)) {
2525 if (!precomputed)
2526 objfreelist = count - 1;
2527 else
2528 objfreelist = next_random_slot(&state);
2529 page->freelist = index_to_obj(cachep, page, objfreelist) +
2530 obj_offset(cachep);
2531 count--;
2532 }
2533
2534 /*
2535 * On early boot, generate the list dynamically.
2536 * Later use a pre-computed list for speed.
2537 */
2538 if (!precomputed) {
Thomas Garnier7c00fce2016-07-26 15:21:56 -07002539 for (i = 0; i < count; i++)
2540 set_free_obj(page, i, i);
2541
2542 /* Fisher-Yates shuffle */
2543 for (i = count - 1; i > 0; i--) {
2544 rand = prandom_u32_state(&state.rnd_state);
2545 rand %= (i + 1);
2546 swap_free_obj(page, i, rand);
2547 }
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002548 } else {
2549 for (i = 0; i < count; i++)
2550 set_free_obj(page, i, next_random_slot(&state));
2551 }
2552
2553 if (OBJFREELIST_SLAB(cachep))
2554 set_free_obj(page, cachep->num - 1, objfreelist);
2555
2556 return true;
2557}
2558#else
2559static inline bool shuffle_freelist(struct kmem_cache *cachep,
2560 struct page *page)
2561{
2562 return false;
2563}
2564#endif /* CONFIG_SLAB_FREELIST_RANDOM */
2565
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002566static void cache_init_objs(struct kmem_cache *cachep,
2567 struct page *page)
2568{
2569 int i;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002570 void *objp;
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002571 bool shuffled;
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002572
2573 cache_init_objs_debug(cachep, page);
2574
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002575 /* Try to randomize the freelist if enabled */
2576 shuffled = shuffle_freelist(cachep, page);
2577
2578 if (!shuffled && OBJFREELIST_SLAB(cachep)) {
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002579 page->freelist = index_to_obj(cachep, page, cachep->num - 1) +
2580 obj_offset(cachep);
2581 }
2582
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002583 for (i = 0; i < cachep->num; i++) {
Andrey Ryabininb3cbd9b2016-08-02 14:02:52 -07002584 objp = index_to_obj(cachep, page, i);
2585 kasan_init_slab_obj(cachep, objp);
2586
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002587 /* constructor could break poison info */
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002588 if (DEBUG == 0 && cachep->ctor) {
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002589 kasan_unpoison_object_data(cachep, objp);
2590 cachep->ctor(objp);
2591 kasan_poison_object_data(cachep, objp);
2592 }
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002593
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07002594 if (!shuffled)
2595 set_free_obj(page, i, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597}
2598
Joonsoo Kim260b61d2016-03-15 14:54:12 -07002599static void *slab_get_obj(struct kmem_cache *cachep, struct page *page)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002600{
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002601 void *objp;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002602
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002603 objp = index_to_obj(cachep, page, get_free_obj(page, page->active));
Joonsoo Kim8456a642013-10-24 10:07:49 +09002604 page->active++;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002605
Joonsoo Kimd31676d2016-03-15 14:54:24 -07002606#if DEBUG
2607 if (cachep->flags & SLAB_STORE_USER)
2608 set_store_user_dirty(cachep);
2609#endif
2610
Matthew Dobson78d382d2006-02-01 03:05:47 -08002611 return objp;
2612}
2613
Joonsoo Kim260b61d2016-03-15 14:54:12 -07002614static void slab_put_obj(struct kmem_cache *cachep,
2615 struct page *page, void *objp)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002616{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002617 unsigned int objnr = obj_to_index(cachep, page, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002618#if DEBUG
Joonsoo Kim16025172013-10-24 10:07:46 +09002619 unsigned int i;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002620
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002621 /* Verify double free bug */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002622 for (i = page->active; i < cachep->num; i++) {
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002623 if (get_free_obj(page, i) == objnr) {
Joe Perches11705322016-03-17 14:19:50 -07002624 pr_err("slab: double free detected in cache '%s', objp %p\n",
Joe Perches756a0252016-03-17 14:19:47 -07002625 cachep->name, objp);
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002626 BUG();
2627 }
Matthew Dobson78d382d2006-02-01 03:05:47 -08002628 }
2629#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002630 page->active--;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002631 if (!page->freelist)
2632 page->freelist = objp + obj_offset(cachep);
2633
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002634 set_free_obj(page, page->active, objnr);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002635}
2636
Pekka Enberg47768742006-06-23 02:03:07 -07002637/*
2638 * Map pages beginning at addr to the given cache and slab. This is required
2639 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002640 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002641 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002642static void slab_map_pages(struct kmem_cache *cache, struct page *page,
Joonsoo Kim7e007352013-10-30 19:04:01 +09002643 void *freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
Joonsoo Kima57a4982013-10-24 10:07:44 +09002645 page->slab_cache = cache;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002646 page->freelist = freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
2649/*
2650 * Grow (by 1) the number of slabs within a cache. This is called by
2651 * kmem_cache_alloc() when there are no active objs left in a cache.
2652 */
Joonsoo Kim76b342b2016-05-19 17:10:26 -07002653static struct page *cache_grow_begin(struct kmem_cache *cachep,
2654 gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002656 void *freelist;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002657 size_t offset;
2658 gfp_t local_flags;
Joonsoo Kim511e3a052016-05-19 17:10:23 -07002659 int page_node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002660 struct kmem_cache_node *n;
Joonsoo Kim511e3a052016-05-19 17:10:23 -07002661 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Andrew Mortona737b3e2006-03-22 00:08:11 -08002663 /*
2664 * Be lazy and only check for valid flags here, keeping it out of the
2665 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 */
Andrew Mortonc871ac42014-12-10 15:42:25 -08002667 if (unlikely(flags & GFP_SLAB_BUG_MASK)) {
Michal Hockobacdcb32016-07-26 15:22:02 -07002668 gfp_t invalid_mask = flags & GFP_SLAB_BUG_MASK;
Michal Hocko72baeef0c2016-07-26 15:22:05 -07002669 flags &= ~GFP_SLAB_BUG_MASK;
2670 pr_warn("Unexpected gfp: %#x (%pGg). Fixing up to gfp: %#x (%pGg). Fix your code!\n",
2671 invalid_mask, &invalid_mask, flags, &flags);
2672 dump_stack();
Andrew Mortonc871ac42014-12-10 15:42:25 -08002673 }
Christoph Lameter6cb06222007-10-16 01:25:41 -07002674 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 check_irq_off();
Mel Gormand0164ad2015-11-06 16:28:21 -08002677 if (gfpflags_allow_blocking(local_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 local_irq_enable();
2679
2680 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002681 * Get mem for the objs. Attempt to allocate a physical page from
2682 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002683 */
Joonsoo Kim511e3a052016-05-19 17:10:23 -07002684 page = kmem_getpages(cachep, local_flags, nodeid);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002685 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 goto failed;
2687
Joonsoo Kim511e3a052016-05-19 17:10:23 -07002688 page_node = page_to_nid(page);
2689 n = get_node(cachep, page_node);
Joonsoo Kim03d1d432016-05-19 17:10:20 -07002690
2691 /* Get colour for the slab, and cal the next value. */
2692 n->colour_next++;
2693 if (n->colour_next >= cachep->colour)
2694 n->colour_next = 0;
2695
2696 offset = n->colour_next;
2697 if (offset >= cachep->colour)
2698 offset = 0;
2699
2700 offset *= cachep->colour_off;
2701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 /* Get slab management. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002703 freelist = alloc_slabmgmt(cachep, page, offset,
Joonsoo Kim511e3a052016-05-19 17:10:23 -07002704 local_flags & ~GFP_CONSTRAINT_MASK, page_node);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002705 if (OFF_SLAB(cachep) && !freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 goto opps1;
2707
Joonsoo Kim8456a642013-10-24 10:07:49 +09002708 slab_map_pages(cachep, page, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002710 kasan_poison_slab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002711 cache_init_objs(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Mel Gormand0164ad2015-11-06 16:28:21 -08002713 if (gfpflags_allow_blocking(local_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Joonsoo Kim76b342b2016-05-19 17:10:26 -07002716 return page;
2717
Andrew Mortona737b3e2006-03-22 00:08:11 -08002718opps1:
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002719 kmem_freepages(cachep, page);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002720failed:
Mel Gormand0164ad2015-11-06 16:28:21 -08002721 if (gfpflags_allow_blocking(local_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 local_irq_disable();
Joonsoo Kim76b342b2016-05-19 17:10:26 -07002723 return NULL;
2724}
2725
2726static void cache_grow_end(struct kmem_cache *cachep, struct page *page)
2727{
2728 struct kmem_cache_node *n;
2729 void *list = NULL;
2730
2731 check_irq_off();
2732
2733 if (!page)
2734 return;
2735
2736 INIT_LIST_HEAD(&page->lru);
2737 n = get_node(cachep, page_to_nid(page));
2738
2739 spin_lock(&n->list_lock);
David Rientjesbf00bd32016-12-12 16:41:44 -08002740 n->total_slabs++;
Greg Thelenf728b0a2016-12-12 16:41:41 -08002741 if (!page->active) {
Joonsoo Kim76b342b2016-05-19 17:10:26 -07002742 list_add_tail(&page->lru, &(n->slabs_free));
Greg Thelenf728b0a2016-12-12 16:41:41 -08002743 n->free_slabs++;
David Rientjesbf00bd32016-12-12 16:41:44 -08002744 } else
Joonsoo Kim76b342b2016-05-19 17:10:26 -07002745 fixup_slab_list(cachep, n, page, &list);
Aruna Ramakrishna07a63c42016-10-27 17:46:32 -07002746
Joonsoo Kim76b342b2016-05-19 17:10:26 -07002747 STATS_INC_GROWN(cachep);
2748 n->free_objects += cachep->num - page->active;
2749 spin_unlock(&n->list_lock);
2750
2751 fixup_objfreelist_debug(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752}
2753
2754#if DEBUG
2755
2756/*
2757 * Perform extra freeing checks:
2758 * - detect bad pointers.
2759 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 */
2761static void kfree_debugcheck(const void *objp)
2762{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 if (!virt_addr_valid(objp)) {
Joe Perches11705322016-03-17 14:19:50 -07002764 pr_err("kfree_debugcheck: out of range ptr %lxh\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002765 (unsigned long)objp);
2766 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768}
2769
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002770static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2771{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002772 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002773
2774 redzone1 = *dbg_redzone1(cache, obj);
2775 redzone2 = *dbg_redzone2(cache, obj);
2776
2777 /*
2778 * Redzone is ok.
2779 */
2780 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2781 return;
2782
2783 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2784 slab_error(cache, "double free detected");
2785 else
2786 slab_error(cache, "memory outside object was overwritten");
2787
Joe Perches11705322016-03-17 14:19:50 -07002788 pr_err("%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
2789 obj, redzone1, redzone2);
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002790}
2791
Pekka Enberg343e0d72006-02-01 03:05:50 -08002792static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002793 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 unsigned int objnr;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002796 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002798 BUG_ON(virt_to_cache(objp) != cachep);
2799
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002800 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002802 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002805 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2807 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2808 }
Joonsoo Kimd31676d2016-03-15 14:54:24 -07002809 if (cachep->flags & SLAB_STORE_USER) {
2810 set_store_user_dirty(cachep);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002811 *dbg_userword(cachep, objp) = (void *)caller;
Joonsoo Kimd31676d2016-03-15 14:54:24 -07002812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Joonsoo Kim8456a642013-10-24 10:07:49 +09002814 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
2816 BUG_ON(objnr >= cachep->num);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002817 BUG_ON(objp != index_to_obj(cachep, page, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 poison_obj(cachep, objp, POISON_FREE);
Joonsoo Kim40b44132016-03-15 14:54:21 -07002821 slab_kernel_map(cachep, objp, 0, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
2823 return objp;
2824}
2825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826#else
2827#define kfree_debugcheck(x) do { } while(0)
2828#define cache_free_debugcheck(x,objp,z) (objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829#endif
2830
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002831static inline void fixup_objfreelist_debug(struct kmem_cache *cachep,
2832 void **list)
2833{
2834#if DEBUG
2835 void *next = *list;
2836 void *objp;
2837
2838 while (next) {
2839 objp = next - obj_offset(cachep);
2840 next = *(void **)next;
2841 poison_obj(cachep, objp, POISON_FREE);
2842 }
2843#endif
2844}
2845
Joonsoo Kimd8410232016-03-15 14:54:44 -07002846static inline void fixup_slab_list(struct kmem_cache *cachep,
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002847 struct kmem_cache_node *n, struct page *page,
2848 void **list)
Joonsoo Kimd8410232016-03-15 14:54:44 -07002849{
2850 /* move slabp to correct slabp list: */
2851 list_del(&page->lru);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002852 if (page->active == cachep->num) {
Joonsoo Kimd8410232016-03-15 14:54:44 -07002853 list_add(&page->lru, &n->slabs_full);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002854 if (OBJFREELIST_SLAB(cachep)) {
2855#if DEBUG
2856 /* Poisoning will be done without holding the lock */
2857 if (cachep->flags & SLAB_POISON) {
2858 void **objp = page->freelist;
2859
2860 *objp = *list;
2861 *list = objp;
2862 }
2863#endif
2864 page->freelist = NULL;
2865 }
2866 } else
Joonsoo Kimd8410232016-03-15 14:54:44 -07002867 list_add(&page->lru, &n->slabs_partial);
2868}
2869
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002870/* Try to find non-pfmemalloc slab if needed */
2871static noinline struct page *get_valid_first_slab(struct kmem_cache_node *n,
David Rientjesbf00bd32016-12-12 16:41:44 -08002872 struct page *page, bool pfmemalloc)
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002873{
2874 if (!page)
2875 return NULL;
2876
2877 if (pfmemalloc)
2878 return page;
2879
2880 if (!PageSlabPfmemalloc(page))
2881 return page;
2882
2883 /* No need to keep pfmemalloc slab if we have enough free objects */
2884 if (n->free_objects > n->free_limit) {
2885 ClearPageSlabPfmemalloc(page);
2886 return page;
2887 }
2888
2889 /* Move pfmemalloc slab to the end of list to speed up next search */
2890 list_del(&page->lru);
David Rientjesbf00bd32016-12-12 16:41:44 -08002891 if (!page->active) {
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002892 list_add_tail(&page->lru, &n->slabs_free);
David Rientjesbf00bd32016-12-12 16:41:44 -08002893 n->free_slabs++;
Greg Thelenf728b0a2016-12-12 16:41:41 -08002894 } else
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002895 list_add_tail(&page->lru, &n->slabs_partial);
2896
2897 list_for_each_entry(page, &n->slabs_partial, lru) {
2898 if (!PageSlabPfmemalloc(page))
2899 return page;
2900 }
2901
Greg Thelenf728b0a2016-12-12 16:41:41 -08002902 n->free_touched = 1;
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002903 list_for_each_entry(page, &n->slabs_free, lru) {
Greg Thelenf728b0a2016-12-12 16:41:41 -08002904 if (!PageSlabPfmemalloc(page)) {
David Rientjesbf00bd32016-12-12 16:41:44 -08002905 n->free_slabs--;
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002906 return page;
Greg Thelenf728b0a2016-12-12 16:41:41 -08002907 }
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002908 }
2909
2910 return NULL;
2911}
2912
2913static struct page *get_first_slab(struct kmem_cache_node *n, bool pfmemalloc)
Geliang Tang7aa0d222016-01-14 15:18:02 -08002914{
2915 struct page *page;
2916
Greg Thelenf728b0a2016-12-12 16:41:41 -08002917 assert_spin_locked(&n->list_lock);
David Rientjesbf00bd32016-12-12 16:41:44 -08002918 page = list_first_entry_or_null(&n->slabs_partial, struct page, lru);
Geliang Tang7aa0d222016-01-14 15:18:02 -08002919 if (!page) {
2920 n->free_touched = 1;
David Rientjesbf00bd32016-12-12 16:41:44 -08002921 page = list_first_entry_or_null(&n->slabs_free, struct page,
2922 lru);
Greg Thelenf728b0a2016-12-12 16:41:41 -08002923 if (page)
David Rientjesbf00bd32016-12-12 16:41:44 -08002924 n->free_slabs--;
Geliang Tang7aa0d222016-01-14 15:18:02 -08002925 }
2926
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002927 if (sk_memalloc_socks())
David Rientjesbf00bd32016-12-12 16:41:44 -08002928 page = get_valid_first_slab(n, page, pfmemalloc);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002929
Geliang Tang7aa0d222016-01-14 15:18:02 -08002930 return page;
2931}
2932
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002933static noinline void *cache_alloc_pfmemalloc(struct kmem_cache *cachep,
2934 struct kmem_cache_node *n, gfp_t flags)
2935{
2936 struct page *page;
2937 void *obj;
2938 void *list = NULL;
2939
2940 if (!gfp_pfmemalloc_allowed(flags))
2941 return NULL;
2942
2943 spin_lock(&n->list_lock);
2944 page = get_first_slab(n, true);
2945 if (!page) {
2946 spin_unlock(&n->list_lock);
2947 return NULL;
2948 }
2949
2950 obj = slab_get_obj(cachep, page);
2951 n->free_objects--;
2952
2953 fixup_slab_list(cachep, n, page, &list);
2954
2955 spin_unlock(&n->list_lock);
2956 fixup_objfreelist_debug(cachep, &list);
2957
2958 return obj;
2959}
2960
Joonsoo Kim213b4692016-05-19 17:10:29 -07002961/*
2962 * Slab list should be fixed up by fixup_slab_list() for existing slab
2963 * or cache_grow_end() for new slab
2964 */
2965static __always_inline int alloc_block(struct kmem_cache *cachep,
2966 struct array_cache *ac, struct page *page, int batchcount)
2967{
2968 /*
2969 * There must be at least one object available for
2970 * allocation.
2971 */
2972 BUG_ON(page->active >= cachep->num);
2973
2974 while (page->active < cachep->num && batchcount--) {
2975 STATS_INC_ALLOCED(cachep);
2976 STATS_INC_ACTIVE(cachep);
2977 STATS_SET_HIGH(cachep);
2978
2979 ac->entry[ac->avail++] = slab_get_obj(cachep, page);
2980 }
2981
2982 return batchcount;
2983}
2984
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002985static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986{
2987 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002988 struct kmem_cache_node *n;
Joonsoo Kim801faf02016-05-19 17:10:31 -07002989 struct array_cache *ac, *shared;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002990 int node;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002991 void *list = NULL;
Joonsoo Kim76b342b2016-05-19 17:10:26 -07002992 struct page *page;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002993
Joe Korty6d2144d2008-03-05 15:04:59 -08002994 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002995 node = numa_mem_id();
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002996
Joe Korty6d2144d2008-03-05 15:04:59 -08002997 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 batchcount = ac->batchcount;
2999 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003000 /*
3001 * If there was little recent activity on this cache, then
3002 * perform only a partial refill. Otherwise we could generate
3003 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 */
3005 batchcount = BATCHREFILL_LIMIT;
3006 }
Christoph Lameter18bf8542014-08-06 16:04:11 -07003007 n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003009 BUG_ON(ac->avail > 0 || !n);
Joonsoo Kim801faf02016-05-19 17:10:31 -07003010 shared = READ_ONCE(n->shared);
3011 if (!n->free_objects && (!shared || !shared->avail))
3012 goto direct_grow;
3013
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003014 spin_lock(&n->list_lock);
Joonsoo Kim801faf02016-05-19 17:10:31 -07003015 shared = READ_ONCE(n->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003016
Christoph Lameter3ded1752006-03-25 03:06:44 -08003017 /* See if we can refill from the shared array */
Joonsoo Kim801faf02016-05-19 17:10:31 -07003018 if (shared && transfer_objects(ac, shared, batchcount)) {
3019 shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08003020 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003021 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 while (batchcount > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 /* Get slab alloc is to come from. */
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003025 page = get_first_slab(n, false);
Geliang Tang7aa0d222016-01-14 15:18:02 -08003026 if (!page)
3027 goto must_grow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07003030
Joonsoo Kim213b4692016-05-19 17:10:29 -07003031 batchcount = alloc_block(cachep, ac, page, batchcount);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003032 fixup_slab_list(cachep, n, page, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 }
3034
Andrew Mortona737b3e2006-03-22 00:08:11 -08003035must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003036 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003037alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003038 spin_unlock(&n->list_lock);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003039 fixup_objfreelist_debug(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Joonsoo Kim801faf02016-05-19 17:10:31 -07003041direct_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 if (unlikely(!ac->avail)) {
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003043 /* Check if we can use obj in pfmemalloc slab */
3044 if (sk_memalloc_socks()) {
3045 void *obj = cache_alloc_pfmemalloc(cachep, n, flags);
3046
3047 if (obj)
3048 return obj;
3049 }
3050
Joonsoo Kim76b342b2016-05-19 17:10:26 -07003051 page = cache_grow_begin(cachep, gfp_exact_node(flags), node);
Christoph Lametere498be72005-09-09 13:03:32 -07003052
Joonsoo Kim76b342b2016-05-19 17:10:26 -07003053 /*
3054 * cache_grow_begin() can reenable interrupts,
3055 * then ac could change.
3056 */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003057 ac = cpu_cache_get(cachep);
Joonsoo Kim213b4692016-05-19 17:10:29 -07003058 if (!ac->avail && page)
3059 alloc_block(cachep, ac, page, batchcount);
3060 cache_grow_end(cachep, page);
Mel Gorman072bb0a2012-07-31 16:43:58 -07003061
Joonsoo Kim213b4692016-05-19 17:10:29 -07003062 if (!ac->avail)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 }
3065 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003066
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003067 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068}
3069
Andrew Mortona737b3e2006-03-22 00:08:11 -08003070static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3071 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
Mel Gormand0164ad2015-11-06 16:28:21 -08003073 might_sleep_if(gfpflags_allow_blocking(flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074}
3075
3076#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003077static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003078 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003080 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003082 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 check_poison_obj(cachep, objp);
Joonsoo Kim40b44132016-03-15 14:54:21 -07003084 slab_kernel_map(cachep, objp, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 poison_obj(cachep, objp, POISON_INUSE);
3086 }
3087 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003088 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
3090 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003091 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3092 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
Joe Perches756a0252016-03-17 14:19:47 -07003093 slab_error(cachep, "double free, or memory outside object was overwritten");
Joe Perches11705322016-03-17 14:19:50 -07003094 pr_err("%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
3095 objp, *dbg_redzone1(cachep, objp),
3096 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 }
3098 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3099 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3100 }
Joonsoo Kim03787302014-06-23 13:22:06 -07003101
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003102 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003103 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003104 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003105 if (ARCH_SLAB_MINALIGN &&
3106 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Joe Perches11705322016-03-17 14:19:50 -07003107 pr_err("0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003108 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 return objp;
3111}
3112#else
3113#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3114#endif
3115
Pekka Enberg343e0d72006-02-01 03:05:50 -08003116static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003118 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 struct array_cache *ac;
3120
Alok N Kataria5c382302005-09-27 21:45:46 -07003121 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003122
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003123 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 ac->touched = 1;
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003126 objp = ac->entry[--ac->avail];
Mel Gorman072bb0a2012-07-31 16:43:58 -07003127
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003128 STATS_INC_ALLOCHIT(cachep);
3129 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003131
3132 STATS_INC_ALLOCMISS(cachep);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003133 objp = cache_alloc_refill(cachep, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -07003134 /*
3135 * the 'ac' may be updated by cache_alloc_refill(),
3136 * and kmemleak_erase() requires its correct value.
3137 */
3138 ac = cpu_cache_get(cachep);
3139
3140out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003141 /*
3142 * To avoid a false negative, if an object that is in one of the
3143 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3144 * treat the array pointers as a reference to the object.
3145 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003146 if (objp)
3147 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003148 return objp;
3149}
3150
Christoph Lametere498be72005-09-09 13:03:32 -07003151#ifdef CONFIG_NUMA
3152/*
Zefan Li2ad654b2014-09-25 09:41:02 +08003153 * Try allocating on another node if PFA_SPREAD_SLAB is a mempolicy is set.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003154 *
3155 * If we are in_interrupt, then process context, including cpusets and
3156 * mempolicy, may not apply and should not be used for allocation policy.
3157 */
3158static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3159{
3160 int nid_alloc, nid_here;
3161
Christoph Lameter765c4502006-09-27 01:50:08 -07003162 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003163 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003164 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003165 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003166 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003167 else if (current->mempolicy)
David Rientjes2a389612014-04-07 15:37:29 -07003168 nid_alloc = mempolicy_slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003169 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003170 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003171 return NULL;
3172}
3173
3174/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003175 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003176 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003177 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003178 * perform an allocation without specifying a node. This allows the page
3179 * allocator to do its reclaim / fallback magic. We then insert the
3180 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003181 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003182static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003183{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003184 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07003185 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003186 struct zone *zone;
3187 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003188 void *obj = NULL;
Joonsoo Kim76b342b2016-05-19 17:10:26 -07003189 struct page *page;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003190 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003191 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003192
3193 if (flags & __GFP_THISNODE)
3194 return NULL;
3195
Mel Gormancc9a6c82012-03-21 16:34:11 -07003196retry_cpuset:
Mel Gormand26914d2014-04-03 14:47:24 -07003197 cpuset_mems_cookie = read_mems_allowed_begin();
David Rientjes2a389612014-04-07 15:37:29 -07003198 zonelist = node_zonelist(mempolicy_slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003199
Christoph Lameter3c517a62006-12-06 20:33:29 -08003200retry:
3201 /*
3202 * Look through allowed nodes for objects available
3203 * from existing per node queues.
3204 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003205 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3206 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003207
Vladimir Davydov061d70742014-12-12 16:58:25 -08003208 if (cpuset_zone_allowed(zone, flags) &&
Christoph Lameter18bf8542014-08-06 16:04:11 -07003209 get_node(cache, nid) &&
3210 get_node(cache, nid)->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003211 obj = ____cache_alloc_node(cache,
David Rientjes4167e9b2015-04-14 15:46:55 -07003212 gfp_exact_node(flags), nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003213 if (obj)
3214 break;
3215 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003216 }
3217
Christoph Lametercfce6602007-05-06 14:50:17 -07003218 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003219 /*
3220 * This allocation will be performed within the constraints
3221 * of the current cpuset / memory policy requirements.
3222 * We may trigger various forms of reclaim on the allowed
3223 * set and go into memory reserves if necessary.
3224 */
Joonsoo Kim76b342b2016-05-19 17:10:26 -07003225 page = cache_grow_begin(cache, flags, numa_mem_id());
3226 cache_grow_end(cache, page);
3227 if (page) {
3228 nid = page_to_nid(page);
Joonsoo Kim511e3a052016-05-19 17:10:23 -07003229 obj = ____cache_alloc_node(cache,
3230 gfp_exact_node(flags), nid);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003231
Christoph Lameter3c517a62006-12-06 20:33:29 -08003232 /*
Joonsoo Kim511e3a052016-05-19 17:10:23 -07003233 * Another processor may allocate the objects in
3234 * the slab since we are not holding any locks.
Christoph Lameter3c517a62006-12-06 20:33:29 -08003235 */
Joonsoo Kim511e3a052016-05-19 17:10:23 -07003236 if (!obj)
3237 goto retry;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003238 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003239 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003240
Mel Gormand26914d2014-04-03 14:47:24 -07003241 if (unlikely(!obj && read_mems_allowed_retry(cpuset_mems_cookie)))
Mel Gormancc9a6c82012-03-21 16:34:11 -07003242 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003243 return obj;
3244}
3245
3246/*
Christoph Lametere498be72005-09-09 13:03:32 -07003247 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003249static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003250 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003251{
Joonsoo Kim8456a642013-10-24 10:07:49 +09003252 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003253 struct kmem_cache_node *n;
Joonsoo Kim213b4692016-05-19 17:10:29 -07003254 void *obj = NULL;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003255 void *list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Paul Mackerras7c3fbbd2014-12-02 15:59:48 -08003257 VM_BUG_ON(nodeid < 0 || nodeid >= MAX_NUMNODES);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003258 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003259 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003260
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003261 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003262 spin_lock(&n->list_lock);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003263 page = get_first_slab(n, false);
Geliang Tang7aa0d222016-01-14 15:18:02 -08003264 if (!page)
3265 goto must_grow;
Christoph Lametere498be72005-09-09 13:03:32 -07003266
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003267 check_spinlock_acquired_node(cachep, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003268
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003269 STATS_INC_NODEALLOCS(cachep);
3270 STATS_INC_ACTIVE(cachep);
3271 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003272
Joonsoo Kim8456a642013-10-24 10:07:49 +09003273 BUG_ON(page->active == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003274
Joonsoo Kim260b61d2016-03-15 14:54:12 -07003275 obj = slab_get_obj(cachep, page);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003276 n->free_objects--;
Christoph Lametere498be72005-09-09 13:03:32 -07003277
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003278 fixup_slab_list(cachep, n, page, &list);
Christoph Lametere498be72005-09-09 13:03:32 -07003279
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003280 spin_unlock(&n->list_lock);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003281 fixup_objfreelist_debug(cachep, &list);
Joonsoo Kim213b4692016-05-19 17:10:29 -07003282 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003283
Andrew Mortona737b3e2006-03-22 00:08:11 -08003284must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003285 spin_unlock(&n->list_lock);
Joonsoo Kim76b342b2016-05-19 17:10:26 -07003286 page = cache_grow_begin(cachep, gfp_exact_node(flags), nodeid);
Joonsoo Kim213b4692016-05-19 17:10:29 -07003287 if (page) {
3288 /* This slab isn't counted yet so don't update free_objects */
3289 obj = slab_get_obj(cachep, page);
3290 }
Joonsoo Kim76b342b2016-05-19 17:10:26 -07003291 cache_grow_end(cachep, page);
Christoph Lametere498be72005-09-09 13:03:32 -07003292
Joonsoo Kim213b4692016-05-19 17:10:29 -07003293 return obj ? obj : fallback_alloc(cachep, flags);
Christoph Lametere498be72005-09-09 13:03:32 -07003294}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003295
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003296static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003297slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003298 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003299{
3300 unsigned long save_flags;
3301 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003302 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003303
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003304 flags &= gfp_allowed_mask;
Jesper Dangaard Brouer011ecea2016-03-15 14:53:41 -07003305 cachep = slab_pre_alloc_hook(cachep, flags);
3306 if (unlikely(!cachep))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003307 return NULL;
3308
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003309 cache_alloc_debugcheck_before(cachep, flags);
3310 local_irq_save(save_flags);
3311
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003312 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003313 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003314
Christoph Lameter18bf8542014-08-06 16:04:11 -07003315 if (unlikely(!get_node(cachep, nodeid))) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003316 /* Node not bootstrapped yet */
3317 ptr = fallback_alloc(cachep, flags);
3318 goto out;
3319 }
3320
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003321 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003322 /*
3323 * Use the locally cached objects if possible.
3324 * However ____cache_alloc does not allow fallback
3325 * to other nodes. It may fail while we still have
3326 * objects on other nodes available.
3327 */
3328 ptr = ____cache_alloc(cachep, flags);
3329 if (ptr)
3330 goto out;
3331 }
3332 /* ___cache_alloc_node can fall back to other nodes */
3333 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3334 out:
3335 local_irq_restore(save_flags);
3336 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
3337
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003338 if (unlikely(flags & __GFP_ZERO) && ptr)
3339 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003340
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003341 slab_post_alloc_hook(cachep, flags, 1, &ptr);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003342 return ptr;
3343}
3344
3345static __always_inline void *
3346__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3347{
3348 void *objp;
3349
Zefan Li2ad654b2014-09-25 09:41:02 +08003350 if (current->mempolicy || cpuset_do_slab_mem_spread()) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003351 objp = alternate_node_alloc(cache, flags);
3352 if (objp)
3353 goto out;
3354 }
3355 objp = ____cache_alloc(cache, flags);
3356
3357 /*
3358 * We may just have run out of memory on the local node.
3359 * ____cache_alloc_node() knows how to locate memory on other nodes
3360 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003361 if (!objp)
3362 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003363
3364 out:
3365 return objp;
3366}
3367#else
3368
3369static __always_inline void *
3370__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3371{
3372 return ____cache_alloc(cachep, flags);
3373}
3374
3375#endif /* CONFIG_NUMA */
3376
3377static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003378slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003379{
3380 unsigned long save_flags;
3381 void *objp;
3382
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003383 flags &= gfp_allowed_mask;
Jesper Dangaard Brouer011ecea2016-03-15 14:53:41 -07003384 cachep = slab_pre_alloc_hook(cachep, flags);
3385 if (unlikely(!cachep))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003386 return NULL;
3387
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003388 cache_alloc_debugcheck_before(cachep, flags);
3389 local_irq_save(save_flags);
3390 objp = __do_cache_alloc(cachep, flags);
3391 local_irq_restore(save_flags);
3392 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
3393 prefetchw(objp);
3394
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003395 if (unlikely(flags & __GFP_ZERO) && objp)
3396 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003397
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003398 slab_post_alloc_hook(cachep, flags, 1, &objp);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003399 return objp;
3400}
Christoph Lametere498be72005-09-09 13:03:32 -07003401
3402/*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003403 * Caller needs to acquire correct kmem_cache_node's list_lock
Joonsoo Kim97654df2014-08-06 16:04:25 -07003404 * @list: List of detached free slabs should be freed by caller
Christoph Lametere498be72005-09-09 13:03:32 -07003405 */
Joonsoo Kim97654df2014-08-06 16:04:25 -07003406static void free_block(struct kmem_cache *cachep, void **objpp,
3407 int nr_objects, int node, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408{
3409 int i;
Joonsoo Kim25c063f2014-08-06 16:04:22 -07003410 struct kmem_cache_node *n = get_node(cachep, node);
Joonsoo Kim6052b782016-05-19 17:10:17 -07003411 struct page *page;
3412
3413 n->free_objects += nr_objects;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
3415 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003416 void *objp;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003417 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
Mel Gorman072bb0a2012-07-31 16:43:58 -07003419 objp = objpp[i];
3420
Joonsoo Kim8456a642013-10-24 10:07:49 +09003421 page = virt_to_head_page(objp);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003422 list_del(&page->lru);
Christoph Lameterff694162005-09-22 21:44:02 -07003423 check_spinlock_acquired_node(cachep, node);
Joonsoo Kim260b61d2016-03-15 14:54:12 -07003424 slab_put_obj(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 STATS_DEC_ACTIVE(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
3427 /* fixup slab chains */
Greg Thelenf728b0a2016-12-12 16:41:41 -08003428 if (page->active == 0) {
Joonsoo Kim6052b782016-05-19 17:10:17 -07003429 list_add(&page->lru, &n->slabs_free);
Greg Thelenf728b0a2016-12-12 16:41:41 -08003430 n->free_slabs++;
Greg Thelenf728b0a2016-12-12 16:41:41 -08003431 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 /* Unconditionally move a slab to the end of the
3433 * partial list on free - maximum time for the
3434 * other objects to be freed, too.
3435 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003436 list_add_tail(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 }
3438 }
Joonsoo Kim6052b782016-05-19 17:10:17 -07003439
3440 while (n->free_objects > n->free_limit && !list_empty(&n->slabs_free)) {
3441 n->free_objects -= cachep->num;
3442
3443 page = list_last_entry(&n->slabs_free, struct page, lru);
Wei Yongjunde24bae2016-07-26 15:22:11 -07003444 list_move(&page->lru, list);
Greg Thelenf728b0a2016-12-12 16:41:41 -08003445 n->free_slabs--;
David Rientjesbf00bd32016-12-12 16:41:44 -08003446 n->total_slabs--;
Joonsoo Kim6052b782016-05-19 17:10:17 -07003447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448}
3449
Pekka Enberg343e0d72006-02-01 03:05:50 -08003450static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451{
3452 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003453 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003454 int node = numa_mem_id();
Joonsoo Kim97654df2014-08-06 16:04:25 -07003455 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
3457 batchcount = ac->batchcount;
Joonsoo Kim260b61d2016-03-15 14:54:12 -07003458
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07003460 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003461 spin_lock(&n->list_lock);
3462 if (n->shared) {
3463 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003464 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 if (max) {
3466 if (batchcount > max)
3467 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003468 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003469 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 shared_array->avail += batchcount;
3471 goto free_done;
3472 }
3473 }
3474
Joonsoo Kim97654df2014-08-06 16:04:25 -07003475 free_block(cachep, ac->entry, batchcount, node, &list);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003476free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477#if STATS
3478 {
3479 int i = 0;
Geliang Tang73c02192016-01-14 15:17:59 -08003480 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Geliang Tang73c02192016-01-14 15:17:59 -08003482 list_for_each_entry(page, &n->slabs_free, lru) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003483 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
3485 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 }
3487 STATS_SET_FREEABLE(cachep, i);
3488 }
3489#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003490 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003491 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003493 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494}
3495
3496/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003497 * Release an obj back to its cache. If the obj has a constructed state, it must
3498 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003500static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003501 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502{
Alexander Potapenko55834c52016-05-20 16:59:11 -07003503 /* Put the object into the quarantine, don't touch it for now. */
3504 if (kasan_slab_free(cachep, objp))
3505 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
Alexander Potapenko55834c52016-05-20 16:59:11 -07003507 ___cache_free(cachep, objp, caller);
3508}
3509
3510void ___cache_free(struct kmem_cache *cachep, void *objp,
3511 unsigned long caller)
3512{
3513 struct array_cache *ac = cpu_cache_get(cachep);
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003516 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003517 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003519 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003520
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003521 /*
3522 * Skip calling cache_free_alien() when the platform is not numa.
3523 * This will avoid cache misses that happen while accessing slabp (which
3524 * is per page memory reference) to get nodeid. Instead use a global
3525 * variable to skip the call, which is mostly likely to be present in
3526 * the cache.
3527 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003528 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003529 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003530
Joonsoo Kim3d880192014-10-09 15:26:04 -07003531 if (ac->avail < ac->limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 } else {
3534 STATS_INC_FREEMISS(cachep);
3535 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003537
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003538 if (sk_memalloc_socks()) {
3539 struct page *page = virt_to_head_page(objp);
3540
3541 if (unlikely(PageSlabPfmemalloc(page))) {
3542 cache_free_pfmemalloc(cachep, page, objp);
3543 return;
3544 }
3545 }
3546
3547 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548}
3549
3550/**
3551 * kmem_cache_alloc - Allocate an object
3552 * @cachep: The cache to allocate from.
3553 * @flags: See kmalloc().
3554 *
3555 * Allocate an object from this cache. The flags are only relevant
3556 * if the cache has no available objects.
3557 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003558void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003560 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003561
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003562 kasan_slab_alloc(cachep, ret, flags);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003563 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003564 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003565
3566 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567}
3568EXPORT_SYMBOL(kmem_cache_alloc);
3569
Jesper Dangaard Brouer7b0501d2016-03-15 14:53:53 -07003570static __always_inline void
3571cache_alloc_debugcheck_after_bulk(struct kmem_cache *s, gfp_t flags,
3572 size_t size, void **p, unsigned long caller)
3573{
3574 size_t i;
3575
3576 for (i = 0; i < size; i++)
3577 p[i] = cache_alloc_debugcheck_after(s, flags, p[i], caller);
3578}
3579
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -08003580int kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t size,
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003581 void **p)
Christoph Lameter484748f2015-09-04 15:45:34 -07003582{
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003583 size_t i;
3584
3585 s = slab_pre_alloc_hook(s, flags);
3586 if (!s)
3587 return 0;
3588
3589 cache_alloc_debugcheck_before(s, flags);
3590
3591 local_irq_disable();
3592 for (i = 0; i < size; i++) {
3593 void *objp = __do_cache_alloc(s, flags);
3594
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003595 if (unlikely(!objp))
3596 goto error;
3597 p[i] = objp;
3598 }
3599 local_irq_enable();
3600
Jesper Dangaard Brouer7b0501d2016-03-15 14:53:53 -07003601 cache_alloc_debugcheck_after_bulk(s, flags, size, p, _RET_IP_);
3602
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003603 /* Clear memory outside IRQ disabled section */
3604 if (unlikely(flags & __GFP_ZERO))
3605 for (i = 0; i < size; i++)
3606 memset(p[i], 0, s->object_size);
3607
3608 slab_post_alloc_hook(s, flags, size, p);
3609 /* FIXME: Trace call missing. Christoph would like a bulk variant */
3610 return size;
3611error:
3612 local_irq_enable();
Jesper Dangaard Brouer7b0501d2016-03-15 14:53:53 -07003613 cache_alloc_debugcheck_after_bulk(s, flags, i, p, _RET_IP_);
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003614 slab_post_alloc_hook(s, flags, i, p);
3615 __kmem_cache_free_bulk(s, i, p);
3616 return 0;
Christoph Lameter484748f2015-09-04 15:45:34 -07003617}
3618EXPORT_SYMBOL(kmem_cache_alloc_bulk);
3619
Li Zefan0f24f122009-12-11 15:45:30 +08003620#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003621void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003622kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003623{
Steven Rostedt85beb582010-11-24 16:23:34 -05003624 void *ret;
3625
Ezequiel Garcia48356302012-09-08 17:47:57 -03003626 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003627
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003628 kasan_kmalloc(cachep, ret, size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003629 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003630 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003631 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003632}
Steven Rostedt85beb582010-11-24 16:23:34 -05003633EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003634#endif
3635
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636#ifdef CONFIG_NUMA
Zhouping Liud0d04b72013-05-16 11:36:23 +08003637/**
3638 * kmem_cache_alloc_node - Allocate an object on the specified node
3639 * @cachep: The cache to allocate from.
3640 * @flags: See kmalloc().
3641 * @nodeid: node number of the target node.
3642 *
3643 * Identical to kmem_cache_alloc but it will allocate memory on the given
3644 * node, which can improve the performance for cpu bound structures.
3645 *
3646 * Fallback to other node is possible if __GFP_THISNODE is not set.
3647 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003648void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3649{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003650 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003651
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003652 kasan_slab_alloc(cachep, ret, flags);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003653 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003654 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003655 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003656
3657 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003658}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659EXPORT_SYMBOL(kmem_cache_alloc_node);
3660
Li Zefan0f24f122009-12-11 15:45:30 +08003661#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003662void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003663 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003664 int nodeid,
3665 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003666{
Steven Rostedt85beb582010-11-24 16:23:34 -05003667 void *ret;
3668
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003669 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003670
3671 kasan_kmalloc(cachep, ret, size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003672 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003673 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003674 flags, nodeid);
3675 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003676}
Steven Rostedt85beb582010-11-24 16:23:34 -05003677EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003678#endif
3679
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003680static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003681__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003682{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003683 struct kmem_cache *cachep;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003684 void *ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003685
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003686 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003687 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3688 return cachep;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003689 ret = kmem_cache_alloc_node_trace(cachep, flags, node, size);
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003690 kasan_kmalloc(cachep, ret, size, flags);
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003691
3692 return ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003693}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003694
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003695void *__kmalloc_node(size_t size, gfp_t flags, int node)
3696{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003697 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003698}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003699EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003700
3701void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003702 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003703{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003704 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003705}
3706EXPORT_SYMBOL(__kmalloc_node_track_caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003707#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
3709/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003710 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003712 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003713 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003715static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003716 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003718 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003719 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003721 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003722 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3723 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003724 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003725
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003726 kasan_kmalloc(cachep, ret, size, flags);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003727 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003728 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003729
3730 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003731}
3732
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003733void *__kmalloc(size_t size, gfp_t flags)
3734{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003735 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736}
3737EXPORT_SYMBOL(__kmalloc);
3738
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003739void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003740{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003741 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003742}
3743EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745/**
3746 * kmem_cache_free - Deallocate an object
3747 * @cachep: The cache the allocation was from.
3748 * @objp: The previously allocated object.
3749 *
3750 * Free an object which was previously allocated from this
3751 * cache.
3752 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003753void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754{
3755 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003756 cachep = cache_from_obj(cachep, objp);
3757 if (!cachep)
3758 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
3760 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003761 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003762 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003763 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003764 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003766
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003767 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768}
3769EXPORT_SYMBOL(kmem_cache_free);
3770
Jesper Dangaard Brouere6cdb582016-03-15 14:53:56 -07003771void kmem_cache_free_bulk(struct kmem_cache *orig_s, size_t size, void **p)
3772{
3773 struct kmem_cache *s;
3774 size_t i;
3775
3776 local_irq_disable();
3777 for (i = 0; i < size; i++) {
3778 void *objp = p[i];
3779
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -07003780 if (!orig_s) /* called via kfree_bulk */
3781 s = virt_to_cache(objp);
3782 else
3783 s = cache_from_obj(orig_s, objp);
Jesper Dangaard Brouere6cdb582016-03-15 14:53:56 -07003784
3785 debug_check_no_locks_freed(objp, s->object_size);
3786 if (!(s->flags & SLAB_DEBUG_OBJECTS))
3787 debug_check_no_obj_freed(objp, s->object_size);
3788
3789 __cache_free(s, objp, _RET_IP_);
3790 }
3791 local_irq_enable();
3792
3793 /* FIXME: add tracing */
3794}
3795EXPORT_SYMBOL(kmem_cache_free_bulk);
3796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 * kfree - free previously allocated memory
3799 * @objp: pointer returned by kmalloc.
3800 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003801 * If @objp is NULL, no operation is performed.
3802 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 * Don't free memory not originally allocated by kmalloc()
3804 * or you will run into trouble.
3805 */
3806void kfree(const void *objp)
3807{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003808 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 unsigned long flags;
3810
Pekka Enberg2121db72009-03-25 11:05:57 +02003811 trace_kfree(_RET_IP_, objp);
3812
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003813 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 return;
3815 local_irq_save(flags);
3816 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003817 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003818 debug_check_no_locks_freed(objp, c->object_size);
3819
3820 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003821 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 local_irq_restore(flags);
3823}
3824EXPORT_SYMBOL(kfree);
3825
Christoph Lametere498be72005-09-09 13:03:32 -07003826/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003827 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003828 */
Joonsoo Kimc3d332b2016-05-19 17:10:14 -07003829static int setup_kmem_cache_nodes(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003830{
Joonsoo Kimc3d332b2016-05-19 17:10:14 -07003831 int ret;
Christoph Lametere498be72005-09-09 13:03:32 -07003832 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003833 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07003834
Mel Gorman9c09a952008-01-24 05:49:54 -08003835 for_each_online_node(node) {
Joonsoo Kimc3d332b2016-05-19 17:10:14 -07003836 ret = setup_kmem_cache_node(cachep, node, gfp, true);
3837 if (ret)
Christoph Lametere498be72005-09-09 13:03:32 -07003838 goto fail;
3839
Christoph Lametere498be72005-09-09 13:03:32 -07003840 }
Joonsoo Kimc3d332b2016-05-19 17:10:14 -07003841
Christoph Lametercafeb022006-03-25 03:06:46 -08003842 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003843
Andrew Mortona737b3e2006-03-22 00:08:11 -08003844fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003845 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003846 /* Cache is not active yet. Roll back what we did */
3847 node--;
3848 while (node >= 0) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07003849 n = get_node(cachep, node);
3850 if (n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003851 kfree(n->shared);
3852 free_alien_cache(n->alien);
3853 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003854 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003855 }
3856 node--;
3857 }
3858 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003859 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003860}
3861
Christoph Lameter18004c52012-07-06 15:25:12 -05003862/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003863static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003864 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865{
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003866 struct array_cache __percpu *cpu_cache, *prev;
3867 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003869 cpu_cache = alloc_kmem_cache_cpus(cachep, limit, batchcount);
3870 if (!cpu_cache)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003871 return -ENOMEM;
3872
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003873 prev = cachep->cpu_cache;
3874 cachep->cpu_cache = cpu_cache;
Greg Thelena87c75f2017-05-03 14:51:47 -07003875 /*
3876 * Without a previous cpu_cache there's no need to synchronize remote
3877 * cpus, so skip the IPIs.
3878 */
3879 if (prev)
3880 kick_all_cpus_sync();
Christoph Lametere498be72005-09-09 13:03:32 -07003881
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 cachep->batchcount = batchcount;
3884 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003885 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003887 if (!prev)
Joonsoo Kimc3d332b2016-05-19 17:10:14 -07003888 goto setup_node;
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003889
3890 for_each_online_cpu(cpu) {
Joonsoo Kim97654df2014-08-06 16:04:25 -07003891 LIST_HEAD(list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003892 int node;
3893 struct kmem_cache_node *n;
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003894 struct array_cache *ac = per_cpu_ptr(prev, cpu);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003895
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003896 node = cpu_to_mem(cpu);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003897 n = get_node(cachep, node);
3898 spin_lock_irq(&n->list_lock);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003899 free_block(cachep, ac->entry, ac->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003900 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003901 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 }
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003903 free_percpu(prev);
3904
Joonsoo Kimc3d332b2016-05-19 17:10:14 -07003905setup_node:
3906 return setup_kmem_cache_nodes(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907}
3908
Glauber Costa943a4512012-12-18 14:23:03 -08003909static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3910 int batchcount, int shared, gfp_t gfp)
3911{
3912 int ret;
Vladimir Davydov426589f2015-02-12 14:59:23 -08003913 struct kmem_cache *c;
Glauber Costa943a4512012-12-18 14:23:03 -08003914
3915 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3916
3917 if (slab_state < FULL)
3918 return ret;
3919
3920 if ((ret < 0) || !is_root_cache(cachep))
3921 return ret;
3922
Vladimir Davydov426589f2015-02-12 14:59:23 -08003923 lockdep_assert_held(&slab_mutex);
3924 for_each_memcg_cache(c, cachep) {
3925 /* return value determined by the root cache only */
3926 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
Glauber Costa943a4512012-12-18 14:23:03 -08003927 }
3928
3929 return ret;
3930}
3931
Christoph Lameter18004c52012-07-06 15:25:12 -05003932/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003933static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934{
3935 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08003936 int limit = 0;
3937 int shared = 0;
3938 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
Thomas Garnier7c00fce2016-07-26 15:21:56 -07003940 err = cache_random_seq_create(cachep, cachep->num, gfp);
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07003941 if (err)
3942 goto end;
3943
Glauber Costa943a4512012-12-18 14:23:03 -08003944 if (!is_root_cache(cachep)) {
3945 struct kmem_cache *root = memcg_root_cache(cachep);
3946 limit = root->limit;
3947 shared = root->shared;
3948 batchcount = root->batchcount;
3949 }
3950
3951 if (limit && shared && batchcount)
3952 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003953 /*
3954 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 * - create a LIFO ordering, i.e. return objects that are cache-warm
3956 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003957 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 * bufctl chains: array operations are cheaper.
3959 * The numbers are guessed, we should auto-tune as described by
3960 * Bonwick.
3961 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003962 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003964 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003966 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003968 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 limit = 54;
3970 else
3971 limit = 120;
3972
Andrew Mortona737b3e2006-03-22 00:08:11 -08003973 /*
3974 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 * allocation behaviour: Most allocs on one cpu, most free operations
3976 * on another cpu. For these cases, an efficient object passing between
3977 * cpus is necessary. This is provided by a shared array. The array
3978 * replaces Bonwick's magazine layer.
3979 * On uniprocessor, it's functionally equivalent (but less efficient)
3980 * to a larger limit. Thus disabled by default.
3981 */
3982 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003983 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985
3986#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003987 /*
3988 * With debugging enabled, large batchcount lead to excessively long
3989 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 */
3991 if (limit > 32)
3992 limit = 32;
3993#endif
Glauber Costa943a4512012-12-18 14:23:03 -08003994 batchcount = (limit + 1) / 2;
3995skip_setup:
3996 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Thomas Garnierc7ce4f602016-05-19 17:10:37 -07003997end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 if (err)
Joe Perches11705322016-03-17 14:19:50 -07003999 pr_err("enable_cpucache failed for %s, error %d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004000 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004001 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002}
4003
Christoph Lameter1b552532006-03-22 00:09:07 -08004004/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004005 * Drain an array if it contains any elements taking the node lock only if
4006 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004007 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004008 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004009static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Joonsoo Kim18726ca2016-05-19 17:10:02 -07004010 struct array_cache *ac, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011{
Joonsoo Kim97654df2014-08-06 16:04:25 -07004012 LIST_HEAD(list);
Joonsoo Kim18726ca2016-05-19 17:10:02 -07004013
4014 /* ac from n->shared can be freed if we don't hold the slab_mutex. */
4015 check_mutex_acquired();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016
Christoph Lameter1b552532006-03-22 00:09:07 -08004017 if (!ac || !ac->avail)
4018 return;
Joonsoo Kim18726ca2016-05-19 17:10:02 -07004019
4020 if (ac->touched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 ac->touched = 0;
Joonsoo Kim18726ca2016-05-19 17:10:02 -07004022 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 }
Joonsoo Kim18726ca2016-05-19 17:10:02 -07004024
4025 spin_lock_irq(&n->list_lock);
4026 drain_array_locked(cachep, ac, node, false, &list);
4027 spin_unlock_irq(&n->list_lock);
4028
4029 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030}
4031
4032/**
4033 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004034 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 *
4036 * Called from workqueue/eventd every few seconds.
4037 * Purpose:
4038 * - clear the per-cpu caches for this CPU.
4039 * - return freeable pages to the main free memory pool.
4040 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004041 * If we cannot acquire the cache chain mutex then just give up - we'll try
4042 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004044static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004046 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004047 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004048 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004049 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
Christoph Lameter18004c52012-07-06 15:25:12 -05004051 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004053 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054
Christoph Lameter18004c52012-07-06 15:25:12 -05004055 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 check_irq_on();
4057
Christoph Lameter35386e32006-03-22 00:09:05 -08004058 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004059 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08004060 * have established with reasonable certainty that
4061 * we can do some work if the lock was obtained.
4062 */
Christoph Lameter18bf8542014-08-06 16:04:11 -07004063 n = get_node(searchp, node);
Christoph Lameter35386e32006-03-22 00:09:05 -08004064
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004065 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
Joonsoo Kim18726ca2016-05-19 17:10:02 -07004067 drain_array(searchp, n, cpu_cache_get(searchp), node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068
Christoph Lameter35386e32006-03-22 00:09:05 -08004069 /*
4070 * These are racy checks but it does not matter
4071 * if we skip one check or scan twice.
4072 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004073 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004074 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08004076 n->next_reap = jiffies + REAPTIMEOUT_NODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Joonsoo Kim18726ca2016-05-19 17:10:02 -07004078 drain_array(searchp, n, n->shared, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004080 if (n->free_touched)
4081 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004082 else {
4083 int freed;
4084
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004085 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07004086 5 * searchp->num - 1) / (5 * searchp->num));
4087 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004089next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 cond_resched();
4091 }
4092 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004093 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004094 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004095out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004096 /* Set up the next iteration */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08004097 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_AC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098}
4099
Linus Torvalds158a9622008-01-02 13:04:48 -08004100#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04004101void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102{
Greg Thelenf728b0a2016-12-12 16:41:41 -08004103 unsigned long active_objs, num_objs, active_slabs;
David Rientjesbf00bd32016-12-12 16:41:44 -08004104 unsigned long total_slabs = 0, free_objs = 0, shared_avail = 0;
4105 unsigned long free_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004106 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004107 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
Christoph Lameter18bf8542014-08-06 16:04:11 -07004109 for_each_kmem_cache_node(cachep, node, n) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004110 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004111 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004112
David Rientjesbf00bd32016-12-12 16:41:44 -08004113 total_slabs += n->total_slabs;
4114 free_slabs += n->free_slabs;
Greg Thelenf728b0a2016-12-12 16:41:41 -08004115 free_objs += n->free_objects;
Aruna Ramakrishna07a63c42016-10-27 17:46:32 -07004116
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004117 if (n->shared)
4118 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004119
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004120 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 }
David Rientjesbf00bd32016-12-12 16:41:44 -08004122 num_objs = total_slabs * cachep->num;
4123 active_slabs = total_slabs - free_slabs;
Greg Thelenf728b0a2016-12-12 16:41:41 -08004124 active_objs = num_objs - free_objs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
Glauber Costa0d7561c2012-10-19 18:20:27 +04004126 sinfo->active_objs = active_objs;
4127 sinfo->num_objs = num_objs;
4128 sinfo->active_slabs = active_slabs;
David Rientjesbf00bd32016-12-12 16:41:44 -08004129 sinfo->num_slabs = total_slabs;
Glauber Costa0d7561c2012-10-19 18:20:27 +04004130 sinfo->shared_avail = shared_avail;
4131 sinfo->limit = cachep->limit;
4132 sinfo->batchcount = cachep->batchcount;
4133 sinfo->shared = cachep->shared;
4134 sinfo->objects_per_slab = cachep->num;
4135 sinfo->cache_order = cachep->gfporder;
4136}
4137
4138void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4139{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004141 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 unsigned long high = cachep->high_mark;
4143 unsigned long allocs = cachep->num_allocations;
4144 unsigned long grown = cachep->grown;
4145 unsigned long reaped = cachep->reaped;
4146 unsigned long errors = cachep->errors;
4147 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004149 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004150 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
Joe Perches756a0252016-03-17 14:19:47 -07004152 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu %4lu %4lu %4lu %4lu %4lu",
Joe Perchese92dd4f2010-03-26 19:27:58 -07004153 allocs, high, grown,
4154 reaped, errors, max_freeable, node_allocs,
4155 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 }
4157 /* cpu stats */
4158 {
4159 unsigned long allochit = atomic_read(&cachep->allochit);
4160 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4161 unsigned long freehit = atomic_read(&cachep->freehit);
4162 unsigned long freemiss = atomic_read(&cachep->freemiss);
4163
4164 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004165 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 }
4167#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168}
4169
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170#define MAX_SLABINFO_WRITE 128
4171/**
4172 * slabinfo_write - Tuning for the slab allocator
4173 * @file: unused
4174 * @buffer: user buffer
4175 * @count: data length
4176 * @ppos: unused
4177 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004178ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004179 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004181 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004183 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004184
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 if (count > MAX_SLABINFO_WRITE)
4186 return -EINVAL;
4187 if (copy_from_user(&kbuf, buffer, count))
4188 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004189 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
4191 tmp = strchr(kbuf, ' ');
4192 if (!tmp)
4193 return -EINVAL;
4194 *tmp = '\0';
4195 tmp++;
4196 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4197 return -EINVAL;
4198
4199 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004200 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004202 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004204 if (limit < 1 || batchcount < 1 ||
4205 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004206 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004208 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004209 batchcount, shared,
4210 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 }
4212 break;
4213 }
4214 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004215 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 if (res >= 0)
4217 res = count;
4218 return res;
4219}
Al Viro871751e2006-03-25 03:06:39 -08004220
4221#ifdef CONFIG_DEBUG_SLAB_LEAK
4222
Al Viro871751e2006-03-25 03:06:39 -08004223static inline int add_caller(unsigned long *n, unsigned long v)
4224{
4225 unsigned long *p;
4226 int l;
4227 if (!v)
4228 return 1;
4229 l = n[1];
4230 p = n + 2;
4231 while (l) {
4232 int i = l/2;
4233 unsigned long *q = p + 2 * i;
4234 if (*q == v) {
4235 q[1]++;
4236 return 1;
4237 }
4238 if (*q > v) {
4239 l = i;
4240 } else {
4241 p = q + 2;
4242 l -= i + 1;
4243 }
4244 }
4245 if (++n[1] == n[0])
4246 return 0;
4247 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4248 p[0] = v;
4249 p[1] = 1;
4250 return 1;
4251}
4252
Joonsoo Kim8456a642013-10-24 10:07:49 +09004253static void handle_slab(unsigned long *n, struct kmem_cache *c,
4254 struct page *page)
Al Viro871751e2006-03-25 03:06:39 -08004255{
4256 void *p;
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004257 int i, j;
4258 unsigned long v;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004259
Al Viro871751e2006-03-25 03:06:39 -08004260 if (n[0] == n[1])
4261 return;
Joonsoo Kim8456a642013-10-24 10:07:49 +09004262 for (i = 0, p = page->s_mem; i < c->num; i++, p += c->size) {
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004263 bool active = true;
4264
4265 for (j = page->active; j < c->num; j++) {
4266 if (get_free_obj(page, j) == i) {
4267 active = false;
4268 break;
4269 }
4270 }
4271
4272 if (!active)
Al Viro871751e2006-03-25 03:06:39 -08004273 continue;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004274
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004275 /*
4276 * probe_kernel_read() is used for DEBUG_PAGEALLOC. page table
4277 * mapping is established when actual object allocation and
4278 * we could mistakenly access the unmapped object in the cpu
4279 * cache.
4280 */
4281 if (probe_kernel_read(&v, dbg_userword(c, p), sizeof(v)))
4282 continue;
4283
4284 if (!add_caller(n, v))
Al Viro871751e2006-03-25 03:06:39 -08004285 return;
4286 }
4287}
4288
4289static void show_symbol(struct seq_file *m, unsigned long address)
4290{
4291#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004292 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004293 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004294
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004295 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004296 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004297 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004298 seq_printf(m, " [%s]", modname);
4299 return;
4300 }
4301#endif
4302 seq_printf(m, "%p", (void *)address);
4303}
4304
4305static int leaks_show(struct seq_file *m, void *p)
4306{
Thierry Reding0672aa72012-06-22 19:42:49 +02004307 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Joonsoo Kim8456a642013-10-24 10:07:49 +09004308 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004309 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004310 const char *name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004311 unsigned long *x = m->private;
Al Viro871751e2006-03-25 03:06:39 -08004312 int node;
4313 int i;
4314
4315 if (!(cachep->flags & SLAB_STORE_USER))
4316 return 0;
4317 if (!(cachep->flags & SLAB_RED_ZONE))
4318 return 0;
4319
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004320 /*
4321 * Set store_user_clean and start to grab stored user information
4322 * for all objects on this cache. If some alloc/free requests comes
4323 * during the processing, information would be wrong so restart
4324 * whole processing.
4325 */
4326 do {
4327 set_store_user_clean(cachep);
4328 drain_cpu_caches(cachep);
Al Viro871751e2006-03-25 03:06:39 -08004329
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004330 x[1] = 0;
Al Viro871751e2006-03-25 03:06:39 -08004331
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004332 for_each_kmem_cache_node(cachep, node, n) {
Al Viro871751e2006-03-25 03:06:39 -08004333
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004334 check_irq_on();
4335 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004336
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004337 list_for_each_entry(page, &n->slabs_full, lru)
4338 handle_slab(x, cachep, page);
4339 list_for_each_entry(page, &n->slabs_partial, lru)
4340 handle_slab(x, cachep, page);
4341 spin_unlock_irq(&n->list_lock);
4342 }
4343 } while (!is_store_user_clean(cachep));
4344
Al Viro871751e2006-03-25 03:06:39 -08004345 name = cachep->name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004346 if (x[0] == x[1]) {
Al Viro871751e2006-03-25 03:06:39 -08004347 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004348 mutex_unlock(&slab_mutex);
Christoph Lameterdb845062013-02-05 18:45:23 +00004349 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
Al Viro871751e2006-03-25 03:06:39 -08004350 if (!m->private) {
4351 /* Too bad, we are really out */
Christoph Lameterdb845062013-02-05 18:45:23 +00004352 m->private = x;
Christoph Lameter18004c52012-07-06 15:25:12 -05004353 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004354 return -ENOMEM;
4355 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004356 *(unsigned long *)m->private = x[0] * 2;
4357 kfree(x);
Christoph Lameter18004c52012-07-06 15:25:12 -05004358 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004359 /* Now make sure this entry will be retried */
4360 m->count = m->size;
4361 return 0;
4362 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004363 for (i = 0; i < x[1]; i++) {
4364 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4365 show_symbol(m, x[2*i+2]);
Al Viro871751e2006-03-25 03:06:39 -08004366 seq_putc(m, '\n');
4367 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004368
Al Viro871751e2006-03-25 03:06:39 -08004369 return 0;
4370}
4371
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004372static const struct seq_operations slabstats_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08004373 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08004374 .next = slab_next,
4375 .stop = slab_stop,
Al Viro871751e2006-03-25 03:06:39 -08004376 .show = leaks_show,
4377};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004378
4379static int slabstats_open(struct inode *inode, struct file *file)
4380{
Rob Jonesb208ce32014-10-09 15:28:03 -07004381 unsigned long *n;
4382
4383 n = __seq_open_private(file, &slabstats_op, PAGE_SIZE);
4384 if (!n)
4385 return -ENOMEM;
4386
4387 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4388
4389 return 0;
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004390}
4391
4392static const struct file_operations proc_slabstats_operations = {
4393 .open = slabstats_open,
4394 .read = seq_read,
4395 .llseek = seq_lseek,
4396 .release = seq_release_private,
4397};
Al Viro871751e2006-03-25 03:06:39 -08004398#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004399
4400static int __init slab_proc_init(void)
4401{
4402#ifdef CONFIG_DEBUG_SLAB_LEAK
4403 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4404#endif
4405 return 0;
4406}
4407module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408#endif
4409
Kees Cook04385fc2016-06-23 15:20:59 -07004410#ifdef CONFIG_HARDENED_USERCOPY
4411/*
4412 * Rejects objects that are incorrectly sized.
4413 *
4414 * Returns NULL if check passes, otherwise const char * to name of cache
4415 * to indicate an error.
4416 */
4417const char *__check_heap_object(const void *ptr, unsigned long n,
4418 struct page *page)
4419{
4420 struct kmem_cache *cachep;
4421 unsigned int objnr;
4422 unsigned long offset;
4423
4424 /* Find and validate object. */
4425 cachep = page->slab_cache;
4426 objnr = obj_to_index(cachep, page, (void *)ptr);
4427 BUG_ON(objnr >= cachep->num);
4428
4429 /* Find offset within object. */
4430 offset = ptr - index_to_obj(cachep, page, objnr) - obj_offset(cachep);
4431
4432 /* Allow address range falling entirely within object size. */
4433 if (offset <= cachep->object_size && n <= cachep->object_size - offset)
4434 return NULL;
4435
4436 return cachep->name;
4437}
4438#endif /* CONFIG_HARDENED_USERCOPY */
4439
Manfred Spraul00e145b2005-09-03 15:55:07 -07004440/**
4441 * ksize - get the actual amount of memory allocated for a given object
4442 * @objp: Pointer to the object
4443 *
4444 * kmalloc may internally round up allocations and return more memory
4445 * than requested. ksize() can be used to determine the actual amount of
4446 * memory allocated. The caller may use this additional memory, even though
4447 * a smaller amount of memory was initially specified with the kmalloc call.
4448 * The caller must guarantee that objp points to a valid object previously
4449 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4450 * must not be freed during the duration of the call.
4451 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004452size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453{
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07004454 size_t size;
4455
Christoph Lameteref8b4522007-10-16 01:24:46 -07004456 BUG_ON(!objp);
4457 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004458 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07004460 size = virt_to_cache(objp)->object_size;
4461 /* We assume that ksize callers could use the whole allocated area,
4462 * so we need to unpoison this area.
4463 */
Alexander Potapenko4ebb31a42016-05-20 16:59:14 -07004464 kasan_unpoison_shadow(objp, size);
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07004465
4466 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004468EXPORT_SYMBOL(ksize);