blob: c9541a4806276de12b2bd609e23ca38a08c7f3bd [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christoph Lameter81819f02007-05-06 14:49:36 -07002/*
3 * SLUB: A slab allocator that limits cache line use instead of queuing
4 * objects in per cpu and per node lists.
5 *
Christoph Lameter881db7f2011-06-01 12:25:53 -05006 * The allocator synchronizes using per slab locks or atomic operatios
7 * and only uses a centralized lock to manage a pool of partial slabs.
Christoph Lameter81819f02007-05-06 14:49:36 -07008 *
Christoph Lametercde53532008-07-04 09:59:22 -07009 * (C) 2007 SGI, Christoph Lameter
Christoph Lameter881db7f2011-06-01 12:25:53 -050010 * (C) 2011 Linux Foundation, Christoph Lameter
Christoph Lameter81819f02007-05-06 14:49:36 -070011 */
12
13#include <linux/mm.h>
Nick Piggin1eb5ac62009-05-05 19:13:44 +100014#include <linux/swap.h> /* struct reclaim_state */
Christoph Lameter81819f02007-05-06 14:49:36 -070015#include <linux/module.h>
16#include <linux/bit_spinlock.h>
17#include <linux/interrupt.h>
18#include <linux/bitops.h>
19#include <linux/slab.h>
Christoph Lameter97d06602012-07-06 15:25:11 -050020#include "slab.h"
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +040021#include <linux/proc_fs.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070022#include <linux/seq_file.h>
Andrey Ryabinina79316c2015-02-13 14:39:38 -080023#include <linux/kasan.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070024#include <linux/cpu.h>
25#include <linux/cpuset.h>
26#include <linux/mempolicy.h>
27#include <linux/ctype.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070028#include <linux/debugobjects.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070029#include <linux/kallsyms.h>
Yasunori Gotob9049e22007-10-21 16:41:37 -070030#include <linux/memory.h>
Roman Zippelf8bd2252008-05-01 04:34:31 -070031#include <linux/math64.h>
Akinobu Mita773ff602008-12-23 19:37:01 +090032#include <linux/fault-inject.h>
Pekka Enbergbfa71452011-07-07 22:47:01 +030033#include <linux/stacktrace.h>
Christoph Lameter4de900b2012-01-30 15:53:51 -060034#include <linux/prefetch.h>
Glauber Costa2633d7a2012-12-18 14:22:34 -080035#include <linux/memcontrol.h>
Kees Cook2482ddec2017-09-06 16:19:18 -070036#include <linux/random.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070037
Richard Kennedy4a923792010-10-21 10:29:19 +010038#include <trace/events/kmem.h>
39
Mel Gorman072bb0a2012-07-31 16:43:58 -070040#include "internal.h"
41
Christoph Lameter81819f02007-05-06 14:49:36 -070042/*
43 * Lock order:
Christoph Lameter18004c52012-07-06 15:25:12 -050044 * 1. slab_mutex (Global Mutex)
Christoph Lameter881db7f2011-06-01 12:25:53 -050045 * 2. node->list_lock
46 * 3. slab_lock(page) (Only on some arches and for debugging)
Christoph Lameter81819f02007-05-06 14:49:36 -070047 *
Christoph Lameter18004c52012-07-06 15:25:12 -050048 * slab_mutex
Christoph Lameter881db7f2011-06-01 12:25:53 -050049 *
Christoph Lameter18004c52012-07-06 15:25:12 -050050 * The role of the slab_mutex is to protect the list of all the slabs
Christoph Lameter881db7f2011-06-01 12:25:53 -050051 * and to synchronize major metadata changes to slab cache structures.
52 *
53 * The slab_lock is only used for debugging and on arches that do not
Matthew Wilcoxb7ccc7f2018-06-07 17:08:46 -070054 * have the ability to do a cmpxchg_double. It only protects:
Christoph Lameter881db7f2011-06-01 12:25:53 -050055 * A. page->freelist -> List of object free in a page
Matthew Wilcoxb7ccc7f2018-06-07 17:08:46 -070056 * B. page->inuse -> Number of objects in use
57 * C. page->objects -> Number of objects in page
58 * D. page->frozen -> frozen state
Christoph Lameter881db7f2011-06-01 12:25:53 -050059 *
60 * If a slab is frozen then it is exempt from list management. It is not
Liu Xiang632b2ef2019-05-13 17:16:28 -070061 * on any list except per cpu partial list. The processor that froze the
62 * slab is the one who can perform list operations on the page. Other
63 * processors may put objects onto the freelist but the processor that
64 * froze the slab is the only one that can retrieve the objects from the
65 * page's freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -070066 *
67 * The list_lock protects the partial and full list on each node and
68 * the partial slab counter. If taken then no new slabs may be added or
69 * removed from the lists nor make the number of partial slabs be modified.
70 * (Note that the total number of slabs is an atomic value that may be
71 * modified without taking the list lock).
72 *
73 * The list_lock is a centralized lock and thus we avoid taking it as
74 * much as possible. As long as SLUB does not have to handle partial
75 * slabs, operations can continue without any centralized lock. F.e.
76 * allocating a long series of objects that fill up slabs does not require
77 * the list lock.
Christoph Lameter81819f02007-05-06 14:49:36 -070078 * Interrupts are disabled during allocation and deallocation in order to
79 * make the slab allocator safe to use in the context of an irq. In addition
80 * interrupts are disabled to ensure that the processor does not change
81 * while handling per_cpu slabs, due to kernel preemption.
82 *
83 * SLUB assigns one slab for allocation to each processor.
84 * Allocations only occur from these slabs called cpu slabs.
85 *
Christoph Lameter672bba32007-05-09 02:32:39 -070086 * Slabs with free elements are kept on a partial list and during regular
87 * operations no list for full slabs is used. If an object in a full slab is
Christoph Lameter81819f02007-05-06 14:49:36 -070088 * freed then the slab will show up again on the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -070089 * We track full slabs for debugging purposes though because otherwise we
90 * cannot scan all objects.
Christoph Lameter81819f02007-05-06 14:49:36 -070091 *
92 * Slabs are freed when they become empty. Teardown and setup is
93 * minimal so we rely on the page allocators per cpu caches for
94 * fast frees and allocs.
95 *
96 * Overloading of page flags that are otherwise used for LRU management.
97 *
Christoph Lameter4b6f0752007-05-16 22:10:53 -070098 * PageActive The slab is frozen and exempt from list processing.
99 * This means that the slab is dedicated to a purpose
100 * such as satisfying allocations for a specific
101 * processor. Objects may be freed in the slab while
102 * it is frozen but slab_free will then skip the usual
103 * list operations. It is up to the processor holding
104 * the slab to integrate the slab into the slab lists
105 * when the slab is no longer needed.
106 *
107 * One use of this flag is to mark slabs that are
108 * used for allocations. Then such a slab becomes a cpu
109 * slab. The cpu slab may be equipped with an additional
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700110 * freelist that allows lockless access to
Christoph Lameter894b8782007-05-10 03:15:16 -0700111 * free objects in addition to the regular freelist
112 * that requires the slab lock.
Christoph Lameter81819f02007-05-06 14:49:36 -0700113 *
114 * PageError Slab requires special handling due to debug
115 * options set. This moves slab handling out of
Christoph Lameter894b8782007-05-10 03:15:16 -0700116 * the fast path and disables lockless freelists.
Christoph Lameter81819f02007-05-06 14:49:36 -0700117 */
118
Christoph Lameteraf537b02010-07-09 14:07:14 -0500119static inline int kmem_cache_debug(struct kmem_cache *s)
120{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700121#ifdef CONFIG_SLUB_DEBUG
Christoph Lameteraf537b02010-07-09 14:07:14 -0500122 return unlikely(s->flags & SLAB_DEBUG_FLAGS);
Christoph Lameter5577bd82007-05-16 22:10:56 -0700123#else
Christoph Lameteraf537b02010-07-09 14:07:14 -0500124 return 0;
Christoph Lameter5577bd82007-05-16 22:10:56 -0700125#endif
Christoph Lameteraf537b02010-07-09 14:07:14 -0500126}
Christoph Lameter5577bd82007-05-16 22:10:56 -0700127
Geert Uytterhoeven117d54d2016-08-04 15:31:55 -0700128void *fixup_red_left(struct kmem_cache *s, void *p)
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700129{
130 if (kmem_cache_debug(s) && s->flags & SLAB_RED_ZONE)
131 p += s->red_left_pad;
132
133 return p;
134}
135
Joonsoo Kim345c9052013-06-19 14:05:52 +0900136static inline bool kmem_cache_has_cpu_partial(struct kmem_cache *s)
137{
138#ifdef CONFIG_SLUB_CPU_PARTIAL
139 return !kmem_cache_debug(s);
140#else
141 return false;
142#endif
143}
144
Christoph Lameter81819f02007-05-06 14:49:36 -0700145/*
146 * Issues still to be resolved:
147 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700148 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
149 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700150 * - Variable sizing of the per node arrays
151 */
152
153/* Enable to test recovery from slab corruption on boot */
154#undef SLUB_RESILIENCY_TEST
155
Christoph Lameterb789ef52011-06-01 12:25:49 -0500156/* Enable to log cmpxchg failures */
157#undef SLUB_DEBUG_CMPXCHG
158
Christoph Lameter81819f02007-05-06 14:49:36 -0700159/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700160 * Mininum number of partial slabs. These will be left on the partial
161 * lists even if they are empty. kmem_cache_shrink may reclaim them.
162 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800163#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700164
Christoph Lameter2086d262007-05-06 14:49:46 -0700165/*
166 * Maximum number of desirable partial slabs.
167 * The existence of more partial slabs makes kmem_cache_shrink
Zhi Yong Wu721ae222013-11-08 20:47:37 +0800168 * sort the partial list by the number of objects in use.
Christoph Lameter2086d262007-05-06 14:49:46 -0700169 */
170#define MAX_PARTIAL 10
171
Laura Abbottbecfda62016-03-15 14:55:06 -0700172#define DEBUG_DEFAULT_FLAGS (SLAB_CONSISTENCY_CHECKS | SLAB_RED_ZONE | \
Christoph Lameter81819f02007-05-06 14:49:36 -0700173 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700174
Christoph Lameter81819f02007-05-06 14:49:36 -0700175/*
Laura Abbott149daaf2016-03-15 14:55:09 -0700176 * These debug flags cannot use CMPXCHG because there might be consistency
177 * issues when checking or reading debug information
178 */
179#define SLAB_NO_CMPXCHG (SLAB_CONSISTENCY_CHECKS | SLAB_STORE_USER | \
180 SLAB_TRACE)
181
182
183/*
David Rientjes3de47212009-07-27 18:30:35 -0700184 * Debugging flags that require metadata to be stored in the slab. These get
185 * disabled when slub_debug=O is used and a cache's min order increases with
186 * metadata.
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700187 */
David Rientjes3de47212009-07-27 18:30:35 -0700188#define DEBUG_METADATA_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700189
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400190#define OO_SHIFT 16
191#define OO_MASK ((1 << OO_SHIFT) - 1)
Christoph Lameter50d5c412011-06-01 12:25:45 -0500192#define MAX_OBJS_PER_PAGE 32767 /* since page.objects is u15 */
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400193
Christoph Lameter81819f02007-05-06 14:49:36 -0700194/* Internal SLUB flags */
Alexey Dobriyand50112e2017-11-15 17:32:18 -0800195/* Poison object */
Alexey Dobriyan4fd0b462017-11-15 17:32:21 -0800196#define __OBJECT_POISON ((slab_flags_t __force)0x80000000U)
Alexey Dobriyand50112e2017-11-15 17:32:18 -0800197/* Use cmpxchg_double */
Alexey Dobriyan4fd0b462017-11-15 17:32:21 -0800198#define __CMPXCHG_DOUBLE ((slab_flags_t __force)0x40000000U)
Christoph Lameter81819f02007-05-06 14:49:36 -0700199
Christoph Lameter02cbc872007-05-09 02:32:43 -0700200/*
201 * Tracking user of a slab.
202 */
Ben Greeard6543e32011-07-07 11:36:36 -0700203#define TRACK_ADDRS_COUNT 16
Christoph Lameter02cbc872007-05-09 02:32:43 -0700204struct track {
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300205 unsigned long addr; /* Called from address */
Ben Greeard6543e32011-07-07 11:36:36 -0700206#ifdef CONFIG_STACKTRACE
207 unsigned long addrs[TRACK_ADDRS_COUNT]; /* Called from address */
208#endif
Christoph Lameter02cbc872007-05-09 02:32:43 -0700209 int cpu; /* Was running on cpu */
210 int pid; /* Pid context */
211 unsigned long when; /* When did the operation occur */
212};
213
214enum track_item { TRACK_ALLOC, TRACK_FREE };
215
Christoph Lameterab4d5ed2010-10-05 13:57:26 -0500216#ifdef CONFIG_SYSFS
Christoph Lameter81819f02007-05-06 14:49:36 -0700217static int sysfs_slab_add(struct kmem_cache *);
218static int sysfs_slab_alias(struct kmem_cache *, const char *);
Glauber Costa107dab52012-12-18 14:23:05 -0800219static void memcg_propagate_slab_attrs(struct kmem_cache *s);
Tejun Heobf5eb3d2017-02-22 15:41:11 -0800220static void sysfs_slab_remove(struct kmem_cache *s);
Christoph Lameter81819f02007-05-06 14:49:36 -0700221#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700222static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
223static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
224 { return 0; }
Glauber Costa107dab52012-12-18 14:23:05 -0800225static inline void memcg_propagate_slab_attrs(struct kmem_cache *s) { }
Tejun Heobf5eb3d2017-02-22 15:41:11 -0800226static inline void sysfs_slab_remove(struct kmem_cache *s) { }
Christoph Lameter81819f02007-05-06 14:49:36 -0700227#endif
228
Christoph Lameter4fdccdf2011-03-22 13:35:00 -0500229static inline void stat(const struct kmem_cache *s, enum stat_item si)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800230{
231#ifdef CONFIG_SLUB_STATS
Christoph Lameter88da03a2014-04-07 15:39:42 -0700232 /*
233 * The rmw is racy on a preemptible kernel but this is acceptable, so
234 * avoid this_cpu_add()'s irq-disable overhead.
235 */
236 raw_cpu_inc(s->cpu_slab->stat[si]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800237#endif
238}
239
Christoph Lameter81819f02007-05-06 14:49:36 -0700240/********************************************************************
241 * Core slab cache functions
242 *******************************************************************/
243
Kees Cook2482ddec2017-09-06 16:19:18 -0700244/*
245 * Returns freelist pointer (ptr). With hardening, this is obfuscated
246 * with an XOR of the address where the pointer is held and a per-cache
247 * random number.
248 */
249static inline void *freelist_ptr(const struct kmem_cache *s, void *ptr,
250 unsigned long ptr_addr)
251{
252#ifdef CONFIG_SLAB_FREELIST_HARDENED
Andrey Konovalovd36a63a2019-02-20 22:19:32 -0800253 /*
254 * When CONFIG_KASAN_SW_TAGS is enabled, ptr_addr might be tagged.
255 * Normally, this doesn't cause any issues, as both set_freepointer()
256 * and get_freepointer() are called with a pointer with the same tag.
257 * However, there are some issues with CONFIG_SLUB_DEBUG code. For
258 * example, when __free_slub() iterates over objects in a cache, it
259 * passes untagged pointers to check_object(). check_object() in turns
260 * calls get_freepointer() with an untagged pointer, which causes the
261 * freepointer to be restored incorrectly.
262 */
263 return (void *)((unsigned long)ptr ^ s->random ^
264 (unsigned long)kasan_reset_tag((void *)ptr_addr));
Kees Cook2482ddec2017-09-06 16:19:18 -0700265#else
266 return ptr;
267#endif
268}
269
270/* Returns the freelist pointer recorded at location ptr_addr. */
271static inline void *freelist_dereference(const struct kmem_cache *s,
272 void *ptr_addr)
273{
274 return freelist_ptr(s, (void *)*(unsigned long *)(ptr_addr),
275 (unsigned long)ptr_addr);
276}
277
Christoph Lameter7656c722007-05-09 02:32:40 -0700278static inline void *get_freepointer(struct kmem_cache *s, void *object)
279{
Kees Cook2482ddec2017-09-06 16:19:18 -0700280 return freelist_dereference(s, object + s->offset);
Christoph Lameter7656c722007-05-09 02:32:40 -0700281}
282
Eric Dumazet0ad95002011-12-16 16:25:34 +0100283static void prefetch_freepointer(const struct kmem_cache *s, void *object)
284{
Vlastimil Babka0882ff92018-08-17 15:44:44 -0700285 prefetch(object + s->offset);
Eric Dumazet0ad95002011-12-16 16:25:34 +0100286}
287
Christoph Lameter1393d9a2011-05-16 15:26:08 -0500288static inline void *get_freepointer_safe(struct kmem_cache *s, void *object)
289{
Kees Cook2482ddec2017-09-06 16:19:18 -0700290 unsigned long freepointer_addr;
Christoph Lameter1393d9a2011-05-16 15:26:08 -0500291 void *p;
292
Joonsoo Kim922d5662016-03-17 14:17:53 -0700293 if (!debug_pagealloc_enabled())
294 return get_freepointer(s, object);
295
Kees Cook2482ddec2017-09-06 16:19:18 -0700296 freepointer_addr = (unsigned long)object + s->offset;
297 probe_kernel_read(&p, (void **)freepointer_addr, sizeof(p));
298 return freelist_ptr(s, p, freepointer_addr);
Christoph Lameter1393d9a2011-05-16 15:26:08 -0500299}
300
Christoph Lameter7656c722007-05-09 02:32:40 -0700301static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
302{
Kees Cook2482ddec2017-09-06 16:19:18 -0700303 unsigned long freeptr_addr = (unsigned long)object + s->offset;
304
Alexander Popovce6fa912017-09-06 16:19:22 -0700305#ifdef CONFIG_SLAB_FREELIST_HARDENED
306 BUG_ON(object == fp); /* naive detection of double free or corruption */
307#endif
308
Kees Cook2482ddec2017-09-06 16:19:18 -0700309 *(void **)freeptr_addr = freelist_ptr(s, fp, freeptr_addr);
Christoph Lameter7656c722007-05-09 02:32:40 -0700310}
311
312/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300313#define for_each_object(__p, __s, __addr, __objects) \
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700314 for (__p = fixup_red_left(__s, __addr); \
315 __p < (__addr) + (__objects) * (__s)->size; \
316 __p += (__s)->size)
Christoph Lameter7656c722007-05-09 02:32:40 -0700317
Christoph Lameter7656c722007-05-09 02:32:40 -0700318/* Determine object index from a given position */
Alexey Dobriyan284b50d2018-04-05 16:21:35 -0700319static inline unsigned int slab_index(void *p, struct kmem_cache *s, void *addr)
Christoph Lameter7656c722007-05-09 02:32:40 -0700320{
Qian Cai6373dca2019-02-20 22:20:37 -0800321 return (kasan_reset_tag(p) - addr) / s->size;
Christoph Lameter7656c722007-05-09 02:32:40 -0700322}
323
Matthew Wilcox9736d2a2018-06-07 17:09:10 -0700324static inline unsigned int order_objects(unsigned int order, unsigned int size)
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800325{
Matthew Wilcox9736d2a2018-06-07 17:09:10 -0700326 return ((unsigned int)PAGE_SIZE << order) / size;
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800327}
328
Alexey Dobriyan19af27a2018-04-05 16:21:39 -0700329static inline struct kmem_cache_order_objects oo_make(unsigned int order,
Matthew Wilcox9736d2a2018-06-07 17:09:10 -0700330 unsigned int size)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300331{
332 struct kmem_cache_order_objects x = {
Matthew Wilcox9736d2a2018-06-07 17:09:10 -0700333 (order << OO_SHIFT) + order_objects(order, size)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300334 };
335
336 return x;
337}
338
Alexey Dobriyan19af27a2018-04-05 16:21:39 -0700339static inline unsigned int oo_order(struct kmem_cache_order_objects x)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300340{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400341 return x.x >> OO_SHIFT;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300342}
343
Alexey Dobriyan19af27a2018-04-05 16:21:39 -0700344static inline unsigned int oo_objects(struct kmem_cache_order_objects x)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300345{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400346 return x.x & OO_MASK;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300347}
348
Christoph Lameter881db7f2011-06-01 12:25:53 -0500349/*
350 * Per slab locking using the pagelock
351 */
352static __always_inline void slab_lock(struct page *page)
353{
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800354 VM_BUG_ON_PAGE(PageTail(page), page);
Christoph Lameter881db7f2011-06-01 12:25:53 -0500355 bit_spin_lock(PG_locked, &page->flags);
356}
357
358static __always_inline void slab_unlock(struct page *page)
359{
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800360 VM_BUG_ON_PAGE(PageTail(page), page);
Christoph Lameter881db7f2011-06-01 12:25:53 -0500361 __bit_spin_unlock(PG_locked, &page->flags);
362}
363
Christoph Lameter1d071712011-07-14 12:49:12 -0500364/* Interrupts must be disabled (for the fallback code to work right) */
365static inline bool __cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
Christoph Lameterb789ef52011-06-01 12:25:49 -0500366 void *freelist_old, unsigned long counters_old,
367 void *freelist_new, unsigned long counters_new,
368 const char *n)
369{
Christoph Lameter1d071712011-07-14 12:49:12 -0500370 VM_BUG_ON(!irqs_disabled());
Heiko Carstens25654092012-01-12 17:17:33 -0800371#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
372 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameterb789ef52011-06-01 12:25:49 -0500373 if (s->flags & __CMPXCHG_DOUBLE) {
Jan Beulichcdcd6292012-01-02 17:02:18 +0000374 if (cmpxchg_double(&page->freelist, &page->counters,
Dan Carpenter0aa9a132014-08-06 16:04:48 -0700375 freelist_old, counters_old,
376 freelist_new, counters_new))
Joe Perches6f6528a2015-04-14 15:44:31 -0700377 return true;
Christoph Lameterb789ef52011-06-01 12:25:49 -0500378 } else
379#endif
380 {
Christoph Lameter881db7f2011-06-01 12:25:53 -0500381 slab_lock(page);
Chen Gangd0e0ac92013-07-15 09:05:29 +0800382 if (page->freelist == freelist_old &&
383 page->counters == counters_old) {
Christoph Lameterb789ef52011-06-01 12:25:49 -0500384 page->freelist = freelist_new;
Matthew Wilcox7d27a042018-06-07 17:08:31 -0700385 page->counters = counters_new;
Christoph Lameter881db7f2011-06-01 12:25:53 -0500386 slab_unlock(page);
Joe Perches6f6528a2015-04-14 15:44:31 -0700387 return true;
Christoph Lameterb789ef52011-06-01 12:25:49 -0500388 }
Christoph Lameter881db7f2011-06-01 12:25:53 -0500389 slab_unlock(page);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500390 }
391
392 cpu_relax();
393 stat(s, CMPXCHG_DOUBLE_FAIL);
394
395#ifdef SLUB_DEBUG_CMPXCHG
Fabian Frederickf9f58282014-06-04 16:06:34 -0700396 pr_info("%s %s: cmpxchg double redo ", n, s->name);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500397#endif
398
Joe Perches6f6528a2015-04-14 15:44:31 -0700399 return false;
Christoph Lameterb789ef52011-06-01 12:25:49 -0500400}
401
Christoph Lameter1d071712011-07-14 12:49:12 -0500402static inline bool cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
403 void *freelist_old, unsigned long counters_old,
404 void *freelist_new, unsigned long counters_new,
405 const char *n)
406{
Heiko Carstens25654092012-01-12 17:17:33 -0800407#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
408 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameter1d071712011-07-14 12:49:12 -0500409 if (s->flags & __CMPXCHG_DOUBLE) {
Jan Beulichcdcd6292012-01-02 17:02:18 +0000410 if (cmpxchg_double(&page->freelist, &page->counters,
Dan Carpenter0aa9a132014-08-06 16:04:48 -0700411 freelist_old, counters_old,
412 freelist_new, counters_new))
Joe Perches6f6528a2015-04-14 15:44:31 -0700413 return true;
Christoph Lameter1d071712011-07-14 12:49:12 -0500414 } else
415#endif
416 {
417 unsigned long flags;
418
419 local_irq_save(flags);
420 slab_lock(page);
Chen Gangd0e0ac92013-07-15 09:05:29 +0800421 if (page->freelist == freelist_old &&
422 page->counters == counters_old) {
Christoph Lameter1d071712011-07-14 12:49:12 -0500423 page->freelist = freelist_new;
Matthew Wilcox7d27a042018-06-07 17:08:31 -0700424 page->counters = counters_new;
Christoph Lameter1d071712011-07-14 12:49:12 -0500425 slab_unlock(page);
426 local_irq_restore(flags);
Joe Perches6f6528a2015-04-14 15:44:31 -0700427 return true;
Christoph Lameter1d071712011-07-14 12:49:12 -0500428 }
429 slab_unlock(page);
430 local_irq_restore(flags);
431 }
432
433 cpu_relax();
434 stat(s, CMPXCHG_DOUBLE_FAIL);
435
436#ifdef SLUB_DEBUG_CMPXCHG
Fabian Frederickf9f58282014-06-04 16:06:34 -0700437 pr_info("%s %s: cmpxchg double redo ", n, s->name);
Christoph Lameter1d071712011-07-14 12:49:12 -0500438#endif
439
Joe Perches6f6528a2015-04-14 15:44:31 -0700440 return false;
Christoph Lameter1d071712011-07-14 12:49:12 -0500441}
442
Christoph Lameter41ecc552007-05-09 02:32:44 -0700443#ifdef CONFIG_SLUB_DEBUG
444/*
Christoph Lameter5f80b132011-04-15 14:48:13 -0500445 * Determine a map of object in use on a page.
446 *
Christoph Lameter881db7f2011-06-01 12:25:53 -0500447 * Node listlock must be held to guarantee that the page does
Christoph Lameter5f80b132011-04-15 14:48:13 -0500448 * not vanish from under us.
449 */
450static void get_map(struct kmem_cache *s, struct page *page, unsigned long *map)
451{
452 void *p;
453 void *addr = page_address(page);
454
455 for (p = page->freelist; p; p = get_freepointer(s, p))
456 set_bit(slab_index(p, s, addr), map);
457}
458
Alexey Dobriyan870b1fb2018-04-05 16:21:43 -0700459static inline unsigned int size_from_object(struct kmem_cache *s)
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700460{
461 if (s->flags & SLAB_RED_ZONE)
462 return s->size - s->red_left_pad;
463
464 return s->size;
465}
466
467static inline void *restore_red_left(struct kmem_cache *s, void *p)
468{
469 if (s->flags & SLAB_RED_ZONE)
470 p -= s->red_left_pad;
471
472 return p;
473}
474
Christoph Lameter41ecc552007-05-09 02:32:44 -0700475/*
476 * Debug settings:
477 */
Andrey Ryabinin89d3c872015-11-05 18:51:23 -0800478#if defined(CONFIG_SLUB_DEBUG_ON)
Alexey Dobriyand50112e2017-11-15 17:32:18 -0800479static slab_flags_t slub_debug = DEBUG_DEFAULT_FLAGS;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700480#else
Alexey Dobriyand50112e2017-11-15 17:32:18 -0800481static slab_flags_t slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700482#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700483
484static char *slub_debug_slabs;
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700485static int disable_higher_order_debug;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700486
Christoph Lameter7656c722007-05-09 02:32:40 -0700487/*
Andrey Ryabinina79316c2015-02-13 14:39:38 -0800488 * slub is about to manipulate internal object metadata. This memory lies
489 * outside the range of the allocated object, so accessing it would normally
490 * be reported by kasan as a bounds error. metadata_access_enable() is used
491 * to tell kasan that these accesses are OK.
492 */
493static inline void metadata_access_enable(void)
494{
495 kasan_disable_current();
496}
497
498static inline void metadata_access_disable(void)
499{
500 kasan_enable_current();
501}
502
503/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700504 * Object debugging
505 */
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700506
507/* Verify that a pointer has an address that is valid within a slab page */
508static inline int check_valid_pointer(struct kmem_cache *s,
509 struct page *page, void *object)
510{
511 void *base;
512
513 if (!object)
514 return 1;
515
516 base = page_address(page);
Qian Cai338cfaa2019-02-20 22:19:36 -0800517 object = kasan_reset_tag(object);
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700518 object = restore_red_left(s, object);
519 if (object < base || object >= base + page->objects * s->size ||
520 (object - base) % s->size) {
521 return 0;
522 }
523
524 return 1;
525}
526
Daniel Thompsonaa2efd52017-01-24 15:18:02 -0800527static void print_section(char *level, char *text, u8 *addr,
528 unsigned int length)
Christoph Lameter81819f02007-05-06 14:49:36 -0700529{
Andrey Ryabinina79316c2015-02-13 14:39:38 -0800530 metadata_access_enable();
Daniel Thompsonaa2efd52017-01-24 15:18:02 -0800531 print_hex_dump(level, text, DUMP_PREFIX_ADDRESS, 16, 1, addr,
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200532 length, 1);
Andrey Ryabinina79316c2015-02-13 14:39:38 -0800533 metadata_access_disable();
Christoph Lameter81819f02007-05-06 14:49:36 -0700534}
535
Christoph Lameter81819f02007-05-06 14:49:36 -0700536static struct track *get_track(struct kmem_cache *s, void *object,
537 enum track_item alloc)
538{
539 struct track *p;
540
541 if (s->offset)
542 p = object + s->offset + sizeof(void *);
543 else
544 p = object + s->inuse;
545
546 return p + alloc;
547}
548
549static void set_track(struct kmem_cache *s, void *object,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300550 enum track_item alloc, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700551{
Akinobu Mita1a00df42009-03-07 00:36:21 +0900552 struct track *p = get_track(s, object, alloc);
Christoph Lameter81819f02007-05-06 14:49:36 -0700553
Christoph Lameter81819f02007-05-06 14:49:36 -0700554 if (addr) {
Ben Greeard6543e32011-07-07 11:36:36 -0700555#ifdef CONFIG_STACKTRACE
Thomas Gleixner79716792019-04-25 11:45:00 +0200556 unsigned int nr_entries;
Ben Greeard6543e32011-07-07 11:36:36 -0700557
Andrey Ryabinina79316c2015-02-13 14:39:38 -0800558 metadata_access_enable();
Thomas Gleixner79716792019-04-25 11:45:00 +0200559 nr_entries = stack_trace_save(p->addrs, TRACK_ADDRS_COUNT, 3);
Andrey Ryabinina79316c2015-02-13 14:39:38 -0800560 metadata_access_disable();
Ben Greeard6543e32011-07-07 11:36:36 -0700561
Thomas Gleixner79716792019-04-25 11:45:00 +0200562 if (nr_entries < TRACK_ADDRS_COUNT)
563 p->addrs[nr_entries] = 0;
Ben Greeard6543e32011-07-07 11:36:36 -0700564#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700565 p->addr = addr;
566 p->cpu = smp_processor_id();
Alexey Dobriyan88e4ccf2008-06-23 02:58:37 +0400567 p->pid = current->pid;
Christoph Lameter81819f02007-05-06 14:49:36 -0700568 p->when = jiffies;
Thomas Gleixnerb8ca7ff2019-04-10 12:28:05 +0200569 } else {
Christoph Lameter81819f02007-05-06 14:49:36 -0700570 memset(p, 0, sizeof(struct track));
Thomas Gleixnerb8ca7ff2019-04-10 12:28:05 +0200571 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700572}
573
Christoph Lameter81819f02007-05-06 14:49:36 -0700574static void init_tracking(struct kmem_cache *s, void *object)
575{
Christoph Lameter24922682007-07-17 04:03:18 -0700576 if (!(s->flags & SLAB_STORE_USER))
577 return;
578
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300579 set_track(s, object, TRACK_FREE, 0UL);
580 set_track(s, object, TRACK_ALLOC, 0UL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700581}
582
Chintan Pandya86609d32018-04-05 16:20:15 -0700583static void print_track(const char *s, struct track *t, unsigned long pr_time)
Christoph Lameter81819f02007-05-06 14:49:36 -0700584{
585 if (!t->addr)
586 return;
587
Fabian Frederickf9f58282014-06-04 16:06:34 -0700588 pr_err("INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
Chintan Pandya86609d32018-04-05 16:20:15 -0700589 s, (void *)t->addr, pr_time - t->when, t->cpu, t->pid);
Ben Greeard6543e32011-07-07 11:36:36 -0700590#ifdef CONFIG_STACKTRACE
591 {
592 int i;
593 for (i = 0; i < TRACK_ADDRS_COUNT; i++)
594 if (t->addrs[i])
Fabian Frederickf9f58282014-06-04 16:06:34 -0700595 pr_err("\t%pS\n", (void *)t->addrs[i]);
Ben Greeard6543e32011-07-07 11:36:36 -0700596 else
597 break;
598 }
599#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700600}
601
Christoph Lameter24922682007-07-17 04:03:18 -0700602static void print_tracking(struct kmem_cache *s, void *object)
603{
Chintan Pandya86609d32018-04-05 16:20:15 -0700604 unsigned long pr_time = jiffies;
Christoph Lameter24922682007-07-17 04:03:18 -0700605 if (!(s->flags & SLAB_STORE_USER))
606 return;
607
Chintan Pandya86609d32018-04-05 16:20:15 -0700608 print_track("Allocated", get_track(s, object, TRACK_ALLOC), pr_time);
609 print_track("Freed", get_track(s, object, TRACK_FREE), pr_time);
Christoph Lameter24922682007-07-17 04:03:18 -0700610}
611
612static void print_page_info(struct page *page)
613{
Fabian Frederickf9f58282014-06-04 16:06:34 -0700614 pr_err("INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
Chen Gangd0e0ac92013-07-15 09:05:29 +0800615 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700616
617}
618
619static void slab_bug(struct kmem_cache *s, char *fmt, ...)
620{
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700621 struct va_format vaf;
Christoph Lameter24922682007-07-17 04:03:18 -0700622 va_list args;
Christoph Lameter24922682007-07-17 04:03:18 -0700623
624 va_start(args, fmt);
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700625 vaf.fmt = fmt;
626 vaf.va = &args;
Fabian Frederickf9f58282014-06-04 16:06:34 -0700627 pr_err("=============================================================================\n");
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700628 pr_err("BUG %s (%s): %pV\n", s->name, print_tainted(), &vaf);
Fabian Frederickf9f58282014-06-04 16:06:34 -0700629 pr_err("-----------------------------------------------------------------------------\n\n");
Dave Jones645df232012-09-18 15:54:12 -0400630
Rusty Russell373d4d02013-01-21 17:17:39 +1030631 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700632 va_end(args);
Christoph Lameter24922682007-07-17 04:03:18 -0700633}
634
635static void slab_fix(struct kmem_cache *s, char *fmt, ...)
636{
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700637 struct va_format vaf;
Christoph Lameter24922682007-07-17 04:03:18 -0700638 va_list args;
Christoph Lameter24922682007-07-17 04:03:18 -0700639
640 va_start(args, fmt);
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700641 vaf.fmt = fmt;
642 vaf.va = &args;
643 pr_err("FIX %s: %pV\n", s->name, &vaf);
Christoph Lameter24922682007-07-17 04:03:18 -0700644 va_end(args);
Christoph Lameter24922682007-07-17 04:03:18 -0700645}
646
647static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700648{
649 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800650 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700651
652 print_tracking(s, p);
653
654 print_page_info(page);
655
Fabian Frederickf9f58282014-06-04 16:06:34 -0700656 pr_err("INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
657 p, p - addr, get_freepointer(s, p));
Christoph Lameter24922682007-07-17 04:03:18 -0700658
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700659 if (s->flags & SLAB_RED_ZONE)
Daniel Thompsonaa2efd52017-01-24 15:18:02 -0800660 print_section(KERN_ERR, "Redzone ", p - s->red_left_pad,
661 s->red_left_pad);
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700662 else if (p > addr + 16)
Daniel Thompsonaa2efd52017-01-24 15:18:02 -0800663 print_section(KERN_ERR, "Bytes b4 ", p - 16, 16);
Christoph Lameter24922682007-07-17 04:03:18 -0700664
Daniel Thompsonaa2efd52017-01-24 15:18:02 -0800665 print_section(KERN_ERR, "Object ", p,
Alexey Dobriyan1b473f22018-04-05 16:21:17 -0700666 min_t(unsigned int, s->object_size, PAGE_SIZE));
Christoph Lameter81819f02007-05-06 14:49:36 -0700667 if (s->flags & SLAB_RED_ZONE)
Daniel Thompsonaa2efd52017-01-24 15:18:02 -0800668 print_section(KERN_ERR, "Redzone ", p + s->object_size,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500669 s->inuse - s->object_size);
Christoph Lameter81819f02007-05-06 14:49:36 -0700670
Christoph Lameter81819f02007-05-06 14:49:36 -0700671 if (s->offset)
672 off = s->offset + sizeof(void *);
673 else
674 off = s->inuse;
675
Christoph Lameter24922682007-07-17 04:03:18 -0700676 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700677 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700678
Alexander Potapenko80a92012016-07-28 15:49:07 -0700679 off += kasan_metadata_size(s);
680
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700681 if (off != size_from_object(s))
Christoph Lameter81819f02007-05-06 14:49:36 -0700682 /* Beginning of the filler is the free pointer */
Daniel Thompsonaa2efd52017-01-24 15:18:02 -0800683 print_section(KERN_ERR, "Padding ", p + off,
684 size_from_object(s) - off);
Christoph Lameter24922682007-07-17 04:03:18 -0700685
686 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700687}
688
Andrey Ryabinin75c66de2015-02-13 14:39:35 -0800689void object_err(struct kmem_cache *s, struct page *page,
Christoph Lameter81819f02007-05-06 14:49:36 -0700690 u8 *object, char *reason)
691{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700692 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700693 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700694}
695
Mathieu Malaterrea38965b2018-06-07 17:05:17 -0700696static __printf(3, 4) void slab_err(struct kmem_cache *s, struct page *page,
Chen Gangd0e0ac92013-07-15 09:05:29 +0800697 const char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700698{
699 va_list args;
700 char buf[100];
701
Christoph Lameter24922682007-07-17 04:03:18 -0700702 va_start(args, fmt);
703 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700704 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700705 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700706 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700707 dump_stack();
708}
709
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500710static void init_object(struct kmem_cache *s, void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700711{
712 u8 *p = object;
713
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700714 if (s->flags & SLAB_RED_ZONE)
715 memset(p - s->red_left_pad, val, s->red_left_pad);
716
Christoph Lameter81819f02007-05-06 14:49:36 -0700717 if (s->flags & __OBJECT_POISON) {
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500718 memset(p, POISON_FREE, s->object_size - 1);
719 p[s->object_size - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700720 }
721
722 if (s->flags & SLAB_RED_ZONE)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500723 memset(p + s->object_size, val, s->inuse - s->object_size);
Christoph Lameter81819f02007-05-06 14:49:36 -0700724}
725
Christoph Lameter24922682007-07-17 04:03:18 -0700726static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
727 void *from, void *to)
728{
729 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
730 memset(from, data, to - from);
731}
732
733static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
734 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800735 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700736{
737 u8 *fault;
738 u8 *end;
739
Andrey Ryabinina79316c2015-02-13 14:39:38 -0800740 metadata_access_enable();
Akinobu Mita798248202011-10-31 17:08:07 -0700741 fault = memchr_inv(start, value, bytes);
Andrey Ryabinina79316c2015-02-13 14:39:38 -0800742 metadata_access_disable();
Christoph Lameter24922682007-07-17 04:03:18 -0700743 if (!fault)
744 return 1;
745
746 end = start + bytes;
747 while (end > fault && end[-1] == value)
748 end--;
749
750 slab_bug(s, "%s overwritten", what);
Fabian Frederickf9f58282014-06-04 16:06:34 -0700751 pr_err("INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
Christoph Lameter24922682007-07-17 04:03:18 -0700752 fault, end - 1, fault[0], value);
753 print_trailer(s, page, object);
754
755 restore_bytes(s, what, value, fault, end);
756 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700757}
758
Christoph Lameter81819f02007-05-06 14:49:36 -0700759/*
760 * Object layout:
761 *
762 * object address
763 * Bytes of the object to be managed.
764 * If the freepointer may overlay the object then the free
765 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700766 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700767 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
768 * 0xa5 (POISON_END)
769 *
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500770 * object + s->object_size
Christoph Lameter81819f02007-05-06 14:49:36 -0700771 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700772 * Padding is extended by another word if Redzoning is enabled and
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500773 * object_size == inuse.
Christoph Lameter672bba32007-05-09 02:32:39 -0700774 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700775 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
776 * 0xcc (RED_ACTIVE) for objects in use.
777 *
778 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700779 * Meta data starts here.
780 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700781 * A. Free pointer (if we cannot overwrite object on free)
782 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700783 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800784 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700785 * before the word boundary.
786 *
787 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700788 *
789 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700790 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700791 *
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500792 * If slabcaches are merged then the object_size and inuse boundaries are mostly
Christoph Lameter672bba32007-05-09 02:32:39 -0700793 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700794 * may be used with merged slabcaches.
795 */
796
Christoph Lameter81819f02007-05-06 14:49:36 -0700797static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
798{
799 unsigned long off = s->inuse; /* The end of info */
800
801 if (s->offset)
802 /* Freepointer is placed after the object. */
803 off += sizeof(void *);
804
805 if (s->flags & SLAB_STORE_USER)
806 /* We also have user information there */
807 off += 2 * sizeof(struct track);
808
Alexander Potapenko80a92012016-07-28 15:49:07 -0700809 off += kasan_metadata_size(s);
810
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700811 if (size_from_object(s) == off)
Christoph Lameter81819f02007-05-06 14:49:36 -0700812 return 1;
813
Christoph Lameter24922682007-07-17 04:03:18 -0700814 return check_bytes_and_report(s, page, p, "Object padding",
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700815 p + off, POISON_INUSE, size_from_object(s) - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700816}
817
Christoph Lameter39b26462008-04-14 19:11:30 +0300818/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700819static int slab_pad_check(struct kmem_cache *s, struct page *page)
820{
Christoph Lameter24922682007-07-17 04:03:18 -0700821 u8 *start;
822 u8 *fault;
823 u8 *end;
Balasubramani Vivekanandan5d682682018-01-31 16:15:43 -0800824 u8 *pad;
Christoph Lameter24922682007-07-17 04:03:18 -0700825 int length;
826 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700827
828 if (!(s->flags & SLAB_POISON))
829 return 1;
830
Christoph Lametera973e9d2008-03-01 13:40:44 -0800831 start = page_address(page);
Matthew Wilcox9736d2a2018-06-07 17:09:10 -0700832 length = PAGE_SIZE << compound_order(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300833 end = start + length;
834 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700835 if (!remainder)
836 return 1;
837
Balasubramani Vivekanandan5d682682018-01-31 16:15:43 -0800838 pad = end - remainder;
Andrey Ryabinina79316c2015-02-13 14:39:38 -0800839 metadata_access_enable();
Balasubramani Vivekanandan5d682682018-01-31 16:15:43 -0800840 fault = memchr_inv(pad, POISON_INUSE, remainder);
Andrey Ryabinina79316c2015-02-13 14:39:38 -0800841 metadata_access_disable();
Christoph Lameter24922682007-07-17 04:03:18 -0700842 if (!fault)
843 return 1;
844 while (end > fault && end[-1] == POISON_INUSE)
845 end--;
846
847 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Balasubramani Vivekanandan5d682682018-01-31 16:15:43 -0800848 print_section(KERN_ERR, "Padding ", pad, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700849
Balasubramani Vivekanandan5d682682018-01-31 16:15:43 -0800850 restore_bytes(s, "slab padding", POISON_INUSE, fault, end);
Christoph Lameter24922682007-07-17 04:03:18 -0700851 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700852}
853
854static int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500855 void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700856{
857 u8 *p = object;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500858 u8 *endobject = object + s->object_size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700859
860 if (s->flags & SLAB_RED_ZONE) {
Christoph Lameter24922682007-07-17 04:03:18 -0700861 if (!check_bytes_and_report(s, page, object, "Redzone",
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -0700862 object - s->red_left_pad, val, s->red_left_pad))
863 return 0;
864
865 if (!check_bytes_and_report(s, page, object, "Redzone",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500866 endobject, val, s->inuse - s->object_size))
Christoph Lameter81819f02007-05-06 14:49:36 -0700867 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700868 } else {
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500869 if ((s->flags & SLAB_POISON) && s->object_size < s->inuse) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800870 check_bytes_and_report(s, page, p, "Alignment padding",
Chen Gangd0e0ac92013-07-15 09:05:29 +0800871 endobject, POISON_INUSE,
872 s->inuse - s->object_size);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800873 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700874 }
875
876 if (s->flags & SLAB_POISON) {
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500877 if (val != SLUB_RED_ACTIVE && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700878 (!check_bytes_and_report(s, page, p, "Poison", p,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500879 POISON_FREE, s->object_size - 1) ||
Christoph Lameter24922682007-07-17 04:03:18 -0700880 !check_bytes_and_report(s, page, p, "Poison",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500881 p + s->object_size - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700882 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700883 /*
884 * check_pad_bytes cleans up on its own.
885 */
886 check_pad_bytes(s, page, p);
887 }
888
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500889 if (!s->offset && val == SLUB_RED_ACTIVE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700890 /*
891 * Object and freepointer overlap. Cannot check
892 * freepointer while object is allocated.
893 */
894 return 1;
895
896 /* Check free pointer validity */
897 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
898 object_err(s, page, p, "Freepointer corrupt");
899 /*
Nick Andrew9f6c708e2008-12-05 14:08:08 +1100900 * No choice but to zap it and thus lose the remainder
Christoph Lameter81819f02007-05-06 14:49:36 -0700901 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700902 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700903 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800904 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700905 return 0;
906 }
907 return 1;
908}
909
910static int check_slab(struct kmem_cache *s, struct page *page)
911{
Christoph Lameter39b26462008-04-14 19:11:30 +0300912 int maxobj;
913
Christoph Lameter81819f02007-05-06 14:49:36 -0700914 VM_BUG_ON(!irqs_disabled());
915
916 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700917 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700918 return 0;
919 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300920
Matthew Wilcox9736d2a2018-06-07 17:09:10 -0700921 maxobj = order_objects(compound_order(page), s->size);
Christoph Lameter39b26462008-04-14 19:11:30 +0300922 if (page->objects > maxobj) {
923 slab_err(s, page, "objects %u > max %u",
Andrey Ryabininf6edde92014-12-10 15:42:22 -0800924 page->objects, maxobj);
Christoph Lameter39b26462008-04-14 19:11:30 +0300925 return 0;
926 }
927 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700928 slab_err(s, page, "inuse %u > max %u",
Andrey Ryabininf6edde92014-12-10 15:42:22 -0800929 page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700930 return 0;
931 }
932 /* Slab_pad_check fixes things up after itself */
933 slab_pad_check(s, page);
934 return 1;
935}
936
937/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700938 * Determine if a certain object on a page is on the freelist. Must hold the
939 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700940 */
941static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
942{
943 int nr = 0;
Christoph Lameter881db7f2011-06-01 12:25:53 -0500944 void *fp;
Christoph Lameter81819f02007-05-06 14:49:36 -0700945 void *object = NULL;
Andrey Ryabininf6edde92014-12-10 15:42:22 -0800946 int max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700947
Christoph Lameter881db7f2011-06-01 12:25:53 -0500948 fp = page->freelist;
Christoph Lameter39b26462008-04-14 19:11:30 +0300949 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700950 if (fp == search)
951 return 1;
952 if (!check_valid_pointer(s, page, fp)) {
953 if (object) {
954 object_err(s, page, object,
955 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800956 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700957 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700958 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800959 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300960 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700961 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700962 return 0;
963 }
964 break;
965 }
966 object = fp;
967 fp = get_freepointer(s, object);
968 nr++;
969 }
970
Matthew Wilcox9736d2a2018-06-07 17:09:10 -0700971 max_objects = order_objects(compound_order(page), s->size);
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400972 if (max_objects > MAX_OBJS_PER_PAGE)
973 max_objects = MAX_OBJS_PER_PAGE;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300974
975 if (page->objects != max_objects) {
Joe Perches756a0252016-03-17 14:19:47 -0700976 slab_err(s, page, "Wrong number of objects. Found %d but should be %d",
977 page->objects, max_objects);
Christoph Lameter224a88b2008-04-14 19:11:31 +0300978 page->objects = max_objects;
979 slab_fix(s, "Number of objects adjusted.");
980 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300981 if (page->inuse != page->objects - nr) {
Joe Perches756a0252016-03-17 14:19:47 -0700982 slab_err(s, page, "Wrong object count. Counter is %d but counted were %d",
983 page->inuse, page->objects - nr);
Christoph Lameter39b26462008-04-14 19:11:30 +0300984 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700985 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700986 }
987 return search == NULL;
988}
989
Christoph Lameter0121c6192008-04-29 16:11:12 -0700990static void trace(struct kmem_cache *s, struct page *page, void *object,
991 int alloc)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700992{
993 if (s->flags & SLAB_TRACE) {
Fabian Frederickf9f58282014-06-04 16:06:34 -0700994 pr_info("TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
Christoph Lameter3ec09742007-05-16 22:11:00 -0700995 s->name,
996 alloc ? "alloc" : "free",
997 object, page->inuse,
998 page->freelist);
999
1000 if (!alloc)
Daniel Thompsonaa2efd52017-01-24 15:18:02 -08001001 print_section(KERN_INFO, "Object ", (void *)object,
Chen Gangd0e0ac92013-07-15 09:05:29 +08001002 s->object_size);
Christoph Lameter3ec09742007-05-16 22:11:00 -07001003
1004 dump_stack();
1005 }
1006}
1007
Christoph Lameter643b1132007-05-06 14:49:42 -07001008/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001009 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -07001010 */
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001011static void add_full(struct kmem_cache *s,
1012 struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -07001013{
Christoph Lameter643b1132007-05-06 14:49:42 -07001014 if (!(s->flags & SLAB_STORE_USER))
1015 return;
1016
David Rientjes255d0882014-02-10 14:25:39 -08001017 lockdep_assert_held(&n->list_lock);
Tobin C. Harding916ac052019-05-13 17:16:12 -07001018 list_add(&page->slab_list, &n->full);
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001019}
Christoph Lameter643b1132007-05-06 14:49:42 -07001020
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001021static void remove_full(struct kmem_cache *s, struct kmem_cache_node *n, struct page *page)
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001022{
1023 if (!(s->flags & SLAB_STORE_USER))
1024 return;
1025
David Rientjes255d0882014-02-10 14:25:39 -08001026 lockdep_assert_held(&n->list_lock);
Tobin C. Harding916ac052019-05-13 17:16:12 -07001027 list_del(&page->slab_list);
Christoph Lameter643b1132007-05-06 14:49:42 -07001028}
1029
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001030/* Tracking of the number of slabs for debugging purposes */
1031static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1032{
1033 struct kmem_cache_node *n = get_node(s, node);
1034
1035 return atomic_long_read(&n->nr_slabs);
1036}
1037
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001038static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1039{
1040 return atomic_long_read(&n->nr_slabs);
1041}
1042
Christoph Lameter205ab992008-04-14 19:11:40 +03001043static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001044{
1045 struct kmem_cache_node *n = get_node(s, node);
1046
1047 /*
1048 * May be called early in order to allocate a slab for the
1049 * kmem_cache_node structure. Solve the chicken-egg
1050 * dilemma by deferring the increment of the count during
1051 * bootstrap (see early_kmem_cache_node_alloc).
1052 */
Joonsoo Kim338b2642013-01-21 17:01:27 +09001053 if (likely(n)) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001054 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03001055 atomic_long_add(objects, &n->total_objects);
1056 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001057}
Christoph Lameter205ab992008-04-14 19:11:40 +03001058static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001059{
1060 struct kmem_cache_node *n = get_node(s, node);
1061
1062 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03001063 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001064}
1065
1066/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -07001067static void setup_object_debug(struct kmem_cache *s, struct page *page,
1068 void *object)
1069{
1070 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
1071 return;
1072
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001073 init_object(s, object, SLUB_RED_INACTIVE);
Christoph Lameter3ec09742007-05-16 22:11:00 -07001074 init_tracking(s, object);
1075}
1076
Andrey Konovalova7101222019-02-20 22:19:23 -08001077static void setup_page_debug(struct kmem_cache *s, void *addr, int order)
1078{
1079 if (!(s->flags & SLAB_POISON))
1080 return;
1081
1082 metadata_access_enable();
1083 memset(addr, POISON_INUSE, PAGE_SIZE << order);
1084 metadata_access_disable();
1085}
1086
Laura Abbottbecfda62016-03-15 14:55:06 -07001087static inline int alloc_consistency_checks(struct kmem_cache *s,
Qian Cai278d7752019-03-05 15:42:10 -08001088 struct page *page, void *object)
Christoph Lameter81819f02007-05-06 14:49:36 -07001089{
1090 if (!check_slab(s, page))
Laura Abbottbecfda62016-03-15 14:55:06 -07001091 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07001092
Christoph Lameter81819f02007-05-06 14:49:36 -07001093 if (!check_valid_pointer(s, page, object)) {
1094 object_err(s, page, object, "Freelist Pointer check fails");
Laura Abbottbecfda62016-03-15 14:55:06 -07001095 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07001096 }
1097
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001098 if (!check_object(s, page, object, SLUB_RED_INACTIVE))
Laura Abbottbecfda62016-03-15 14:55:06 -07001099 return 0;
1100
1101 return 1;
1102}
1103
1104static noinline int alloc_debug_processing(struct kmem_cache *s,
1105 struct page *page,
1106 void *object, unsigned long addr)
1107{
1108 if (s->flags & SLAB_CONSISTENCY_CHECKS) {
Qian Cai278d7752019-03-05 15:42:10 -08001109 if (!alloc_consistency_checks(s, page, object))
Laura Abbottbecfda62016-03-15 14:55:06 -07001110 goto bad;
1111 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001112
Christoph Lameter3ec09742007-05-16 22:11:00 -07001113 /* Success perform special debug activities for allocs */
1114 if (s->flags & SLAB_STORE_USER)
1115 set_track(s, object, TRACK_ALLOC, addr);
1116 trace(s, page, object, 1);
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001117 init_object(s, object, SLUB_RED_ACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001118 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001119
Christoph Lameter81819f02007-05-06 14:49:36 -07001120bad:
1121 if (PageSlab(page)) {
1122 /*
1123 * If this is a slab page then lets do the best we can
1124 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -07001125 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001126 */
Christoph Lameter24922682007-07-17 04:03:18 -07001127 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +03001128 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001129 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001130 }
1131 return 0;
1132}
1133
Laura Abbottbecfda62016-03-15 14:55:06 -07001134static inline int free_consistency_checks(struct kmem_cache *s,
1135 struct page *page, void *object, unsigned long addr)
1136{
1137 if (!check_valid_pointer(s, page, object)) {
1138 slab_err(s, page, "Invalid object pointer 0x%p", object);
1139 return 0;
1140 }
1141
1142 if (on_freelist(s, page, object)) {
1143 object_err(s, page, object, "Object already free");
1144 return 0;
1145 }
1146
1147 if (!check_object(s, page, object, SLUB_RED_ACTIVE))
1148 return 0;
1149
1150 if (unlikely(s != page->slab_cache)) {
1151 if (!PageSlab(page)) {
Joe Perches756a0252016-03-17 14:19:47 -07001152 slab_err(s, page, "Attempt to free object(0x%p) outside of slab",
1153 object);
Laura Abbottbecfda62016-03-15 14:55:06 -07001154 } else if (!page->slab_cache) {
1155 pr_err("SLUB <none>: no slab for object 0x%p.\n",
1156 object);
1157 dump_stack();
1158 } else
1159 object_err(s, page, object,
1160 "page slab pointer corrupt.");
1161 return 0;
1162 }
1163 return 1;
1164}
1165
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001166/* Supports checking bulk free of a constructed freelist */
Laura Abbott282acb42016-03-15 14:54:59 -07001167static noinline int free_debug_processing(
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001168 struct kmem_cache *s, struct page *page,
1169 void *head, void *tail, int bulk_cnt,
Laura Abbott282acb42016-03-15 14:54:59 -07001170 unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07001171{
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001172 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001173 void *object = head;
1174 int cnt = 0;
Laura Abbott282acb42016-03-15 14:54:59 -07001175 unsigned long uninitialized_var(flags);
Laura Abbott804aa132016-03-15 14:55:02 -07001176 int ret = 0;
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001177
Laura Abbott282acb42016-03-15 14:54:59 -07001178 spin_lock_irqsave(&n->list_lock, flags);
Christoph Lameter881db7f2011-06-01 12:25:53 -05001179 slab_lock(page);
1180
Laura Abbottbecfda62016-03-15 14:55:06 -07001181 if (s->flags & SLAB_CONSISTENCY_CHECKS) {
1182 if (!check_slab(s, page))
1183 goto out;
1184 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001185
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001186next_object:
1187 cnt++;
1188
Laura Abbottbecfda62016-03-15 14:55:06 -07001189 if (s->flags & SLAB_CONSISTENCY_CHECKS) {
1190 if (!free_consistency_checks(s, page, object, addr))
1191 goto out;
Christoph Lameter81819f02007-05-06 14:49:36 -07001192 }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001193
Christoph Lameter3ec09742007-05-16 22:11:00 -07001194 if (s->flags & SLAB_STORE_USER)
1195 set_track(s, object, TRACK_FREE, addr);
1196 trace(s, page, object, 0);
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001197 /* Freepointer not overwritten by init_object(), SLAB_POISON moved it */
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001198 init_object(s, object, SLUB_RED_INACTIVE);
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001199
1200 /* Reached end of constructed freelist yet? */
1201 if (object != tail) {
1202 object = get_freepointer(s, object);
1203 goto next_object;
1204 }
Laura Abbott804aa132016-03-15 14:55:02 -07001205 ret = 1;
1206
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001207out:
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001208 if (cnt != bulk_cnt)
1209 slab_err(s, page, "Bulk freelist count(%d) invalid(%d)\n",
1210 bulk_cnt, cnt);
1211
Christoph Lameter881db7f2011-06-01 12:25:53 -05001212 slab_unlock(page);
Laura Abbott282acb42016-03-15 14:54:59 -07001213 spin_unlock_irqrestore(&n->list_lock, flags);
Laura Abbott804aa132016-03-15 14:55:02 -07001214 if (!ret)
1215 slab_fix(s, "Object at 0x%p not freed", object);
1216 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001217}
1218
Christoph Lameter41ecc552007-05-09 02:32:44 -07001219static int __init setup_slub_debug(char *str)
1220{
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001221 slub_debug = DEBUG_DEFAULT_FLAGS;
1222 if (*str++ != '=' || !*str)
1223 /*
1224 * No options specified. Switch on full debugging.
1225 */
1226 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001227
1228 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001229 /*
1230 * No options but restriction on slabs. This means full
1231 * debugging for slabs matching a pattern.
1232 */
1233 goto check_slabs;
1234
1235 slub_debug = 0;
1236 if (*str == '-')
1237 /*
1238 * Switch off all debugging measures.
1239 */
1240 goto out;
1241
1242 /*
1243 * Determine which debug features should be switched on
1244 */
Pekka Enberg06428782008-01-07 23:20:27 -08001245 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001246 switch (tolower(*str)) {
1247 case 'f':
Laura Abbottbecfda62016-03-15 14:55:06 -07001248 slub_debug |= SLAB_CONSISTENCY_CHECKS;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001249 break;
1250 case 'z':
1251 slub_debug |= SLAB_RED_ZONE;
1252 break;
1253 case 'p':
1254 slub_debug |= SLAB_POISON;
1255 break;
1256 case 'u':
1257 slub_debug |= SLAB_STORE_USER;
1258 break;
1259 case 't':
1260 slub_debug |= SLAB_TRACE;
1261 break;
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03001262 case 'a':
1263 slub_debug |= SLAB_FAILSLAB;
1264 break;
Chris J Arges08303a72015-04-14 15:44:25 -07001265 case 'o':
1266 /*
1267 * Avoid enabling debugging on caches if its minimum
1268 * order would increase as a result.
1269 */
1270 disable_higher_order_debug = 1;
1271 break;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001272 default:
Fabian Frederickf9f58282014-06-04 16:06:34 -07001273 pr_err("slub_debug option '%c' unknown. skipped\n",
1274 *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001275 }
1276 }
1277
1278check_slabs:
1279 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001280 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001281out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001282 return 1;
1283}
1284
1285__setup("slub_debug", setup_slub_debug);
1286
Aaron Tomlinc5fd3ca2018-10-26 15:03:15 -07001287/*
1288 * kmem_cache_flags - apply debugging options to the cache
1289 * @object_size: the size of an object without meta data
1290 * @flags: flags to set
1291 * @name: name of the cache
1292 * @ctor: constructor function
1293 *
1294 * Debug option(s) are applied to @flags. In addition to the debug
1295 * option(s), if a slab name (or multiple) is specified i.e.
1296 * slub_debug=<Debug-Options>,<slab name1>,<slab name2> ...
1297 * then only the select slabs will receive the debug option(s).
1298 */
Alexey Dobriyan0293d1f2018-04-05 16:21:24 -07001299slab_flags_t kmem_cache_flags(unsigned int object_size,
Alexey Dobriyand50112e2017-11-15 17:32:18 -08001300 slab_flags_t flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001301 void (*ctor)(void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001302{
Aaron Tomlinc5fd3ca2018-10-26 15:03:15 -07001303 char *iter;
1304 size_t len;
1305
1306 /* If slub_debug = 0, it folds into the if conditional. */
1307 if (!slub_debug_slabs)
1308 return flags | slub_debug;
1309
1310 len = strlen(name);
1311 iter = slub_debug_slabs;
1312 while (*iter) {
1313 char *end, *glob;
1314 size_t cmplen;
1315
Yury Norov9cf3a8d2019-07-11 20:53:33 -07001316 end = strchrnul(iter, ',');
Aaron Tomlinc5fd3ca2018-10-26 15:03:15 -07001317
1318 glob = strnchr(iter, end - iter, '*');
1319 if (glob)
1320 cmplen = glob - iter;
1321 else
1322 cmplen = max_t(size_t, len, (end - iter));
1323
1324 if (!strncmp(name, iter, cmplen)) {
1325 flags |= slub_debug;
1326 break;
1327 }
1328
1329 if (!*end)
1330 break;
1331 iter = end + 1;
1332 }
Christoph Lameterba0268a2007-09-11 15:24:11 -07001333
1334 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001335}
Jesper Dangaard Brouerb4a64712015-11-20 15:57:41 -08001336#else /* !CONFIG_SLUB_DEBUG */
Christoph Lameter3ec09742007-05-16 22:11:00 -07001337static inline void setup_object_debug(struct kmem_cache *s,
1338 struct page *page, void *object) {}
Andrey Konovalova7101222019-02-20 22:19:23 -08001339static inline void setup_page_debug(struct kmem_cache *s,
1340 void *addr, int order) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001341
Christoph Lameter3ec09742007-05-16 22:11:00 -07001342static inline int alloc_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001343 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001344
Laura Abbott282acb42016-03-15 14:54:59 -07001345static inline int free_debug_processing(
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001346 struct kmem_cache *s, struct page *page,
1347 void *head, void *tail, int bulk_cnt,
Laura Abbott282acb42016-03-15 14:54:59 -07001348 unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001349
Christoph Lameter41ecc552007-05-09 02:32:44 -07001350static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1351 { return 1; }
1352static inline int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001353 void *object, u8 val) { return 1; }
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001354static inline void add_full(struct kmem_cache *s, struct kmem_cache_node *n,
1355 struct page *page) {}
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001356static inline void remove_full(struct kmem_cache *s, struct kmem_cache_node *n,
1357 struct page *page) {}
Alexey Dobriyan0293d1f2018-04-05 16:21:24 -07001358slab_flags_t kmem_cache_flags(unsigned int object_size,
Alexey Dobriyand50112e2017-11-15 17:32:18 -08001359 slab_flags_t flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001360 void (*ctor)(void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001361{
1362 return flags;
1363}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001364#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001365
Ingo Molnarfdaa45e2009-09-15 11:00:26 +02001366#define disable_higher_order_debug 0
1367
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001368static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1369 { return 0; }
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001370static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1371 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001372static inline void inc_slabs_node(struct kmem_cache *s, int node,
1373 int objects) {}
1374static inline void dec_slabs_node(struct kmem_cache *s, int node,
1375 int objects) {}
Christoph Lameter7d550c52010-08-25 14:07:16 -05001376
Andrey Ryabinin02e72cc2014-08-06 16:04:18 -07001377#endif /* CONFIG_SLUB_DEBUG */
1378
1379/*
1380 * Hooks for other subsystems that check memory allocations. In a typical
1381 * production configuration these hooks all should produce no code at all.
1382 */
Andrey Konovalov01165232018-12-28 00:29:37 -08001383static inline void *kmalloc_large_node_hook(void *ptr, size_t size, gfp_t flags)
Roman Bobnievd56791b2013-10-08 15:58:57 -07001384{
Andrey Konovalov53128242019-02-20 22:19:11 -08001385 ptr = kasan_kmalloc_large(ptr, size, flags);
Andrey Konovalova2f77572019-02-20 22:19:16 -08001386 /* As ptr might get tagged, call kmemleak hook after KASAN. */
Roman Bobnievd56791b2013-10-08 15:58:57 -07001387 kmemleak_alloc(ptr, size, 1, flags);
Andrey Konovalov53128242019-02-20 22:19:11 -08001388 return ptr;
Roman Bobnievd56791b2013-10-08 15:58:57 -07001389}
1390
Dmitry Vyukovee3ce772018-02-06 15:36:27 -08001391static __always_inline void kfree_hook(void *x)
Roman Bobnievd56791b2013-10-08 15:58:57 -07001392{
1393 kmemleak_free(x);
Dmitry Vyukovee3ce772018-02-06 15:36:27 -08001394 kasan_kfree_large(x, _RET_IP_);
Roman Bobnievd56791b2013-10-08 15:58:57 -07001395}
1396
Andrey Konovalovc3895392018-04-10 16:30:31 -07001397static __always_inline bool slab_free_hook(struct kmem_cache *s, void *x)
Roman Bobnievd56791b2013-10-08 15:58:57 -07001398{
1399 kmemleak_free_recursive(x, s->flags);
Christoph Lameter7d550c52010-08-25 14:07:16 -05001400
Andrey Ryabinin02e72cc2014-08-06 16:04:18 -07001401 /*
1402 * Trouble is that we may no longer disable interrupts in the fast path
1403 * So in order to make the debug calls that expect irqs to be
1404 * disabled we need to disable interrupts temporarily.
1405 */
Levin, Alexander (Sasha Levin)4675ff02017-11-15 17:36:02 -08001406#ifdef CONFIG_LOCKDEP
Andrey Ryabinin02e72cc2014-08-06 16:04:18 -07001407 {
1408 unsigned long flags;
1409
1410 local_irq_save(flags);
Andrey Ryabinin02e72cc2014-08-06 16:04:18 -07001411 debug_check_no_locks_freed(x, s->object_size);
1412 local_irq_restore(flags);
1413 }
1414#endif
1415 if (!(s->flags & SLAB_DEBUG_OBJECTS))
1416 debug_check_no_obj_freed(x, s->object_size);
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001417
Andrey Konovalovc3895392018-04-10 16:30:31 -07001418 /* KASAN might put x into memory quarantine, delaying its reuse */
1419 return kasan_slab_free(s, x, _RET_IP_);
Andrey Ryabinin02e72cc2014-08-06 16:04:18 -07001420}
Christoph Lameter205ab992008-04-14 19:11:40 +03001421
Andrey Konovalovc3895392018-04-10 16:30:31 -07001422static inline bool slab_free_freelist_hook(struct kmem_cache *s,
1423 void **head, void **tail)
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001424{
1425/*
1426 * Compiler cannot detect this function can be removed if slab_free_hook()
1427 * evaluates to nothing. Thus, catch all relevant config debug options here.
1428 */
Levin, Alexander (Sasha Levin)4675ff02017-11-15 17:36:02 -08001429#if defined(CONFIG_LOCKDEP) || \
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001430 defined(CONFIG_DEBUG_KMEMLEAK) || \
1431 defined(CONFIG_DEBUG_OBJECTS_FREE) || \
1432 defined(CONFIG_KASAN)
1433
Andrey Konovalovc3895392018-04-10 16:30:31 -07001434 void *object;
1435 void *next = *head;
1436 void *old_tail = *tail ? *tail : *head;
1437
1438 /* Head and tail of the reconstructed freelist */
1439 *head = NULL;
1440 *tail = NULL;
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001441
1442 do {
Andrey Konovalovc3895392018-04-10 16:30:31 -07001443 object = next;
1444 next = get_freepointer(s, object);
1445 /* If object's reuse doesn't have to be delayed */
1446 if (!slab_free_hook(s, object)) {
1447 /* Move object to the new freelist */
1448 set_freepointer(s, object, *head);
1449 *head = object;
1450 if (!*tail)
1451 *tail = object;
1452 }
1453 } while (object != old_tail);
1454
1455 if (*head == *tail)
1456 *tail = NULL;
1457
1458 return *head != NULL;
1459#else
1460 return true;
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08001461#endif
1462}
1463
Andrey Konovalov4d176712018-12-28 00:30:23 -08001464static void *setup_object(struct kmem_cache *s, struct page *page,
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001465 void *object)
1466{
1467 setup_object_debug(s, page, object);
Andrey Konovalov4d176712018-12-28 00:30:23 -08001468 object = kasan_init_slab_obj(s, object);
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001469 if (unlikely(s->ctor)) {
1470 kasan_unpoison_object_data(s, object);
1471 s->ctor(object);
1472 kasan_poison_object_data(s, object);
1473 }
Andrey Konovalov4d176712018-12-28 00:30:23 -08001474 return object;
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001475}
1476
Christoph Lameter81819f02007-05-06 14:49:36 -07001477/*
1478 * Slab allocation and freeing
1479 */
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001480static inline struct page *alloc_slab_page(struct kmem_cache *s,
1481 gfp_t flags, int node, struct kmem_cache_order_objects oo)
Christoph Lameter65c33762008-04-14 19:11:40 +03001482{
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001483 struct page *page;
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07001484 unsigned int order = oo_order(oo);
Christoph Lameter65c33762008-04-14 19:11:40 +03001485
Christoph Lameter2154a332010-07-09 14:07:10 -05001486 if (node == NUMA_NO_NODE)
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001487 page = alloc_pages(flags, order);
Christoph Lameter65c33762008-04-14 19:11:40 +03001488 else
Vlastimil Babka96db8002015-09-08 15:03:50 -07001489 page = __alloc_pages_node(node, flags, order);
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001490
Roman Gushchin6cea1d52019-07-11 20:56:16 -07001491 if (page && charge_slab_page(page, flags, order, s)) {
Vladimir Davydovf3ccb2c42015-11-05 18:49:01 -08001492 __free_pages(page, order);
1493 page = NULL;
1494 }
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001495
1496 return page;
Christoph Lameter65c33762008-04-14 19:11:40 +03001497}
1498
Thomas Garnier210e7a42016-07-26 15:21:59 -07001499#ifdef CONFIG_SLAB_FREELIST_RANDOM
1500/* Pre-initialize the random sequence cache */
1501static int init_cache_random_seq(struct kmem_cache *s)
1502{
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07001503 unsigned int count = oo_objects(s->oo);
Thomas Garnier210e7a42016-07-26 15:21:59 -07001504 int err;
Thomas Garnier210e7a42016-07-26 15:21:59 -07001505
Sean Reesa8100072017-02-08 14:30:59 -08001506 /* Bailout if already initialised */
1507 if (s->random_seq)
1508 return 0;
1509
Thomas Garnier210e7a42016-07-26 15:21:59 -07001510 err = cache_random_seq_create(s, count, GFP_KERNEL);
1511 if (err) {
1512 pr_err("SLUB: Unable to initialize free list for %s\n",
1513 s->name);
1514 return err;
1515 }
1516
1517 /* Transform to an offset on the set of pages */
1518 if (s->random_seq) {
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07001519 unsigned int i;
1520
Thomas Garnier210e7a42016-07-26 15:21:59 -07001521 for (i = 0; i < count; i++)
1522 s->random_seq[i] *= s->size;
1523 }
1524 return 0;
1525}
1526
1527/* Initialize each random sequence freelist per cache */
1528static void __init init_freelist_randomization(void)
1529{
1530 struct kmem_cache *s;
1531
1532 mutex_lock(&slab_mutex);
1533
1534 list_for_each_entry(s, &slab_caches, list)
1535 init_cache_random_seq(s);
1536
1537 mutex_unlock(&slab_mutex);
1538}
1539
1540/* Get the next entry on the pre-computed freelist randomized */
1541static void *next_freelist_entry(struct kmem_cache *s, struct page *page,
1542 unsigned long *pos, void *start,
1543 unsigned long page_limit,
1544 unsigned long freelist_count)
1545{
1546 unsigned int idx;
1547
1548 /*
1549 * If the target page allocation failed, the number of objects on the
1550 * page might be smaller than the usual size defined by the cache.
1551 */
1552 do {
1553 idx = s->random_seq[*pos];
1554 *pos += 1;
1555 if (*pos >= freelist_count)
1556 *pos = 0;
1557 } while (unlikely(idx >= page_limit));
1558
1559 return (char *)start + idx;
1560}
1561
1562/* Shuffle the single linked freelist based on a random pre-computed sequence */
1563static bool shuffle_freelist(struct kmem_cache *s, struct page *page)
1564{
1565 void *start;
1566 void *cur;
1567 void *next;
1568 unsigned long idx, pos, page_limit, freelist_count;
1569
1570 if (page->objects < 2 || !s->random_seq)
1571 return false;
1572
1573 freelist_count = oo_objects(s->oo);
1574 pos = get_random_int() % freelist_count;
1575
1576 page_limit = page->objects * s->size;
1577 start = fixup_red_left(s, page_address(page));
1578
1579 /* First entry is used as the base of the freelist */
1580 cur = next_freelist_entry(s, page, &pos, start, page_limit,
1581 freelist_count);
Andrey Konovalov4d176712018-12-28 00:30:23 -08001582 cur = setup_object(s, page, cur);
Thomas Garnier210e7a42016-07-26 15:21:59 -07001583 page->freelist = cur;
1584
1585 for (idx = 1; idx < page->objects; idx++) {
Thomas Garnier210e7a42016-07-26 15:21:59 -07001586 next = next_freelist_entry(s, page, &pos, start, page_limit,
1587 freelist_count);
Andrey Konovalov4d176712018-12-28 00:30:23 -08001588 next = setup_object(s, page, next);
Thomas Garnier210e7a42016-07-26 15:21:59 -07001589 set_freepointer(s, cur, next);
1590 cur = next;
1591 }
Thomas Garnier210e7a42016-07-26 15:21:59 -07001592 set_freepointer(s, cur, NULL);
1593
1594 return true;
1595}
1596#else
1597static inline int init_cache_random_seq(struct kmem_cache *s)
1598{
1599 return 0;
1600}
1601static inline void init_freelist_randomization(void) { }
1602static inline bool shuffle_freelist(struct kmem_cache *s, struct page *page)
1603{
1604 return false;
1605}
1606#endif /* CONFIG_SLAB_FREELIST_RANDOM */
1607
Christoph Lameter81819f02007-05-06 14:49:36 -07001608static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1609{
Pekka Enberg06428782008-01-07 23:20:27 -08001610 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001611 struct kmem_cache_order_objects oo = s->oo;
Pekka Enbergba522702009-06-24 21:59:51 +03001612 gfp_t alloc_gfp;
Andrey Konovalov4d176712018-12-28 00:30:23 -08001613 void *start, *p, *next;
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001614 int idx, order;
Thomas Garnier210e7a42016-07-26 15:21:59 -07001615 bool shuffle;
Christoph Lameter81819f02007-05-06 14:49:36 -07001616
Christoph Lameter7e0528d2011-06-01 12:25:44 -05001617 flags &= gfp_allowed_mask;
1618
Mel Gormand0164ad2015-11-06 16:28:21 -08001619 if (gfpflags_allow_blocking(flags))
Christoph Lameter7e0528d2011-06-01 12:25:44 -05001620 local_irq_enable();
1621
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001622 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001623
Pekka Enbergba522702009-06-24 21:59:51 +03001624 /*
1625 * Let the initial higher-order allocation fail under memory pressure
1626 * so we fall-back to the minimum order allocation.
1627 */
1628 alloc_gfp = (flags | __GFP_NOWARN | __GFP_NORETRY) & ~__GFP_NOFAIL;
Mel Gormand0164ad2015-11-06 16:28:21 -08001629 if ((alloc_gfp & __GFP_DIRECT_RECLAIM) && oo_order(oo) > oo_order(s->min))
Mel Gorman444eb2a42016-03-17 14:19:23 -07001630 alloc_gfp = (alloc_gfp | __GFP_NOMEMALLOC) & ~(__GFP_RECLAIM|__GFP_NOFAIL);
Pekka Enbergba522702009-06-24 21:59:51 +03001631
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001632 page = alloc_slab_page(s, alloc_gfp, node, oo);
Christoph Lameter65c33762008-04-14 19:11:40 +03001633 if (unlikely(!page)) {
1634 oo = s->min;
Joonsoo Kim80c3a992014-03-12 17:26:20 +09001635 alloc_gfp = flags;
Christoph Lameter65c33762008-04-14 19:11:40 +03001636 /*
1637 * Allocation may have failed due to fragmentation.
1638 * Try a lower order alloc if possible
1639 */
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001640 page = alloc_slab_page(s, alloc_gfp, node, oo);
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001641 if (unlikely(!page))
1642 goto out;
1643 stat(s, ORDER_FALLBACK);
Christoph Lameter65c33762008-04-14 19:11:40 +03001644 }
Vegard Nossum5a896d92008-04-04 00:54:48 +02001645
Christoph Lameter834f3d12008-04-14 19:11:31 +03001646 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001647
Glauber Costa1f458cb2012-12-18 14:22:50 -08001648 order = compound_order(page);
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001649 page->slab_cache = s;
Joonsoo Kimc03f94c2012-05-18 00:47:47 +09001650 __SetPageSlab(page);
Michal Hocko2f064f32015-08-21 14:11:51 -07001651 if (page_is_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -07001652 SetPageSlabPfmemalloc(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001653
Andrey Konovalova7101222019-02-20 22:19:23 -08001654 kasan_poison_slab(page);
1655
Christoph Lameter81819f02007-05-06 14:49:36 -07001656 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001657
Andrey Konovalova7101222019-02-20 22:19:23 -08001658 setup_page_debug(s, start, order);
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001659
Thomas Garnier210e7a42016-07-26 15:21:59 -07001660 shuffle = shuffle_freelist(s, page);
1661
1662 if (!shuffle) {
Andrey Konovalov4d176712018-12-28 00:30:23 -08001663 start = fixup_red_left(s, start);
1664 start = setup_object(s, page, start);
1665 page->freelist = start;
Andrey Konovalov18e50662019-02-20 22:19:28 -08001666 for (idx = 0, p = start; idx < page->objects - 1; idx++) {
1667 next = p + s->size;
1668 next = setup_object(s, page, next);
1669 set_freepointer(s, p, next);
1670 p = next;
1671 }
1672 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001673 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001674
Christoph Lametere6e82ea2011-08-09 16:12:24 -05001675 page->inuse = page->objects;
Christoph Lameter8cb0a502011-06-01 12:25:46 -05001676 page->frozen = 1;
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001677
Christoph Lameter81819f02007-05-06 14:49:36 -07001678out:
Mel Gormand0164ad2015-11-06 16:28:21 -08001679 if (gfpflags_allow_blocking(flags))
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001680 local_irq_disable();
1681 if (!page)
1682 return NULL;
1683
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001684 inc_slabs_node(s, page_to_nid(page), page->objects);
1685
Christoph Lameter81819f02007-05-06 14:49:36 -07001686 return page;
1687}
1688
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001689static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1690{
1691 if (unlikely(flags & GFP_SLAB_BUG_MASK)) {
Michal Hockobacdcb32016-07-26 15:22:02 -07001692 gfp_t invalid_mask = flags & GFP_SLAB_BUG_MASK;
Michal Hocko72baeef0c2016-07-26 15:22:05 -07001693 flags &= ~GFP_SLAB_BUG_MASK;
1694 pr_warn("Unexpected gfp: %#x (%pGg). Fixing up to gfp: %#x (%pGg). Fix your code!\n",
1695 invalid_mask, &invalid_mask, flags, &flags);
Borislav Petkov65b9de72017-02-22 15:41:02 -08001696 dump_stack();
Thomas Gleixner588f8ba2015-09-04 15:45:48 -07001697 }
1698
1699 return allocate_slab(s,
1700 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
1701}
1702
Christoph Lameter81819f02007-05-06 14:49:36 -07001703static void __free_slab(struct kmem_cache *s, struct page *page)
1704{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001705 int order = compound_order(page);
1706 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001707
Laura Abbottbecfda62016-03-15 14:55:06 -07001708 if (s->flags & SLAB_CONSISTENCY_CHECKS) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001709 void *p;
1710
1711 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001712 for_each_object(p, s, page_address(page),
1713 page->objects)
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001714 check_object(s, page, p, SLUB_RED_INACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001715 }
1716
Mel Gorman072bb0a2012-07-31 16:43:58 -07001717 __ClearPageSlabPfmemalloc(page);
Christoph Lameter49bd5222008-04-14 18:52:18 +03001718 __ClearPageSlab(page);
Glauber Costa1f458cb2012-12-18 14:22:50 -08001719
Matthew Wilcoxd4fc5062018-06-07 17:08:26 -07001720 page->mapping = NULL;
Nick Piggin1eb5ac62009-05-05 19:13:44 +10001721 if (current->reclaim_state)
1722 current->reclaim_state->reclaimed_slab += pages;
Roman Gushchin6cea1d52019-07-11 20:56:16 -07001723 uncharge_slab_page(page, order, s);
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001724 __free_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001725}
1726
1727static void rcu_free_slab(struct rcu_head *h)
1728{
Matthew Wilcoxbf68c212018-06-07 17:09:05 -07001729 struct page *page = container_of(h, struct page, rcu_head);
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001730
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001731 __free_slab(page->slab_cache, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001732}
1733
1734static void free_slab(struct kmem_cache *s, struct page *page)
1735{
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -08001736 if (unlikely(s->flags & SLAB_TYPESAFE_BY_RCU)) {
Matthew Wilcoxbf68c212018-06-07 17:09:05 -07001737 call_rcu(&page->rcu_head, rcu_free_slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07001738 } else
1739 __free_slab(s, page);
1740}
1741
1742static void discard_slab(struct kmem_cache *s, struct page *page)
1743{
Christoph Lameter205ab992008-04-14 19:11:40 +03001744 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001745 free_slab(s, page);
1746}
1747
1748/*
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001749 * Management of partially allocated slabs.
Christoph Lameter81819f02007-05-06 14:49:36 -07001750 */
Steven Rostedt1e4dd942014-02-10 14:25:46 -08001751static inline void
1752__add_partial(struct kmem_cache_node *n, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001753{
Christoph Lametere95eed52007-05-06 14:49:44 -07001754 n->nr_partial++;
Shaohua Li136333d2011-08-24 08:57:52 +08001755 if (tail == DEACTIVATE_TO_TAIL)
Tobin C. Harding916ac052019-05-13 17:16:12 -07001756 list_add_tail(&page->slab_list, &n->partial);
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001757 else
Tobin C. Harding916ac052019-05-13 17:16:12 -07001758 list_add(&page->slab_list, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001759}
1760
Steven Rostedt1e4dd942014-02-10 14:25:46 -08001761static inline void add_partial(struct kmem_cache_node *n,
1762 struct page *page, int tail)
1763{
1764 lockdep_assert_held(&n->list_lock);
1765 __add_partial(n, page, tail);
1766}
1767
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001768static inline void remove_partial(struct kmem_cache_node *n,
Christoph Lameter62e346a2010-09-28 08:10:28 -05001769 struct page *page)
1770{
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001771 lockdep_assert_held(&n->list_lock);
Tobin C. Harding916ac052019-05-13 17:16:12 -07001772 list_del(&page->slab_list);
Dmitry Safonov52b4b952016-02-17 13:11:37 -08001773 n->nr_partial--;
Christoph Lameter62e346a2010-09-28 08:10:28 -05001774}
1775
Christoph Lameter81819f02007-05-06 14:49:36 -07001776/*
Christoph Lameter7ced3712012-05-09 10:09:53 -05001777 * Remove slab from the partial list, freeze it and
1778 * return the pointer to the freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001779 *
Christoph Lameter497b66f2011-08-09 16:12:26 -05001780 * Returns a list of objects or NULL if it fails.
Christoph Lameter81819f02007-05-06 14:49:36 -07001781 */
Christoph Lameter497b66f2011-08-09 16:12:26 -05001782static inline void *acquire_slab(struct kmem_cache *s,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001783 struct kmem_cache_node *n, struct page *page,
Joonsoo Kim633b0762013-01-21 17:01:25 +09001784 int mode, int *objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001785{
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001786 void *freelist;
1787 unsigned long counters;
1788 struct page new;
1789
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001790 lockdep_assert_held(&n->list_lock);
1791
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001792 /*
1793 * Zap the freelist and set the frozen bit.
1794 * The old freelist is the list of objects for the
1795 * per cpu allocation list.
1796 */
Christoph Lameter7ced3712012-05-09 10:09:53 -05001797 freelist = page->freelist;
1798 counters = page->counters;
1799 new.counters = counters;
Joonsoo Kim633b0762013-01-21 17:01:25 +09001800 *objects = new.objects - new.inuse;
Pekka Enberg23910c52012-06-04 10:14:58 +03001801 if (mode) {
Christoph Lameter7ced3712012-05-09 10:09:53 -05001802 new.inuse = page->objects;
Pekka Enberg23910c52012-06-04 10:14:58 +03001803 new.freelist = NULL;
1804 } else {
1805 new.freelist = freelist;
1806 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001807
Dave Hansena0132ac2014-01-29 14:05:50 -08001808 VM_BUG_ON(new.frozen);
Christoph Lameter7ced3712012-05-09 10:09:53 -05001809 new.frozen = 1;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001810
Christoph Lameter7ced3712012-05-09 10:09:53 -05001811 if (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001812 freelist, counters,
Joonsoo Kim02d76332012-05-17 00:13:02 +09001813 new.freelist, new.counters,
Christoph Lameter7ced3712012-05-09 10:09:53 -05001814 "acquire_slab"))
Christoph Lameter7ced3712012-05-09 10:09:53 -05001815 return NULL;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001816
1817 remove_partial(n, page);
Christoph Lameter7ced3712012-05-09 10:09:53 -05001818 WARN_ON(!freelist);
Christoph Lameter49e22582011-08-09 16:12:27 -05001819 return freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001820}
1821
Joonsoo Kim633b0762013-01-21 17:01:25 +09001822static void put_cpu_partial(struct kmem_cache *s, struct page *page, int drain);
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001823static inline bool pfmemalloc_match(struct page *page, gfp_t gfpflags);
Christoph Lameter49e22582011-08-09 16:12:27 -05001824
Christoph Lameter81819f02007-05-06 14:49:36 -07001825/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001826 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001827 */
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001828static void *get_partial_node(struct kmem_cache *s, struct kmem_cache_node *n,
1829 struct kmem_cache_cpu *c, gfp_t flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07001830{
Christoph Lameter49e22582011-08-09 16:12:27 -05001831 struct page *page, *page2;
1832 void *object = NULL;
Alexey Dobriyane5d99982018-04-05 16:21:10 -07001833 unsigned int available = 0;
Joonsoo Kim633b0762013-01-21 17:01:25 +09001834 int objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07001835
1836 /*
1837 * Racy check. If we mistakenly see no partial slabs then we
1838 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001839 * partial slab and there is none available then get_partials()
1840 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001841 */
1842 if (!n || !n->nr_partial)
1843 return NULL;
1844
1845 spin_lock(&n->list_lock);
Tobin C. Harding916ac052019-05-13 17:16:12 -07001846 list_for_each_entry_safe(page, page2, &n->partial, slab_list) {
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001847 void *t;
Christoph Lameter49e22582011-08-09 16:12:27 -05001848
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001849 if (!pfmemalloc_match(page, flags))
1850 continue;
1851
Joonsoo Kim633b0762013-01-21 17:01:25 +09001852 t = acquire_slab(s, n, page, object == NULL, &objects);
Christoph Lameter49e22582011-08-09 16:12:27 -05001853 if (!t)
1854 break;
1855
Joonsoo Kim633b0762013-01-21 17:01:25 +09001856 available += objects;
Alex,Shi12d79632011-09-07 10:26:36 +08001857 if (!object) {
Christoph Lameter49e22582011-08-09 16:12:27 -05001858 c->page = page;
Christoph Lameter49e22582011-08-09 16:12:27 -05001859 stat(s, ALLOC_FROM_PARTIAL);
Christoph Lameter49e22582011-08-09 16:12:27 -05001860 object = t;
Christoph Lameter49e22582011-08-09 16:12:27 -05001861 } else {
Joonsoo Kim633b0762013-01-21 17:01:25 +09001862 put_cpu_partial(s, page, 0);
Alex Shi8028dce2012-02-03 23:34:56 +08001863 stat(s, CPU_PARTIAL_NODE);
Christoph Lameter49e22582011-08-09 16:12:27 -05001864 }
Joonsoo Kim345c9052013-06-19 14:05:52 +09001865 if (!kmem_cache_has_cpu_partial(s)
Wei Yange6d0e1d2017-07-06 15:36:34 -07001866 || available > slub_cpu_partial(s) / 2)
Christoph Lameter49e22582011-08-09 16:12:27 -05001867 break;
1868
Christoph Lameter497b66f2011-08-09 16:12:26 -05001869 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001870 spin_unlock(&n->list_lock);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001871 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001872}
1873
1874/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001875 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001876 */
Joonsoo Kimde3ec032012-01-27 00:12:23 -08001877static void *get_any_partial(struct kmem_cache *s, gfp_t flags,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001878 struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001879{
1880#ifdef CONFIG_NUMA
1881 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07001882 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001883 struct zone *zone;
1884 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001885 void *object;
Mel Gormancc9a6c82012-03-21 16:34:11 -07001886 unsigned int cpuset_mems_cookie;
Christoph Lameter81819f02007-05-06 14:49:36 -07001887
1888 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001889 * The defrag ratio allows a configuration of the tradeoffs between
1890 * inter node defragmentation and node local allocations. A lower
1891 * defrag_ratio increases the tendency to do local allocations
1892 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001893 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001894 * If the defrag_ratio is set to 0 then kmalloc() always
1895 * returns node local objects. If the ratio is higher then kmalloc()
1896 * may return off node objects because partial slabs are obtained
1897 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001898 *
Li Peng43efd3e2016-05-19 17:10:43 -07001899 * If /sys/kernel/slab/xx/remote_node_defrag_ratio is set to 100
1900 * (which makes defrag_ratio = 1000) then every (well almost)
1901 * allocation will first attempt to defrag slab caches on other nodes.
1902 * This means scanning over all nodes to look for partial slabs which
1903 * may be expensive if we do it every time we are trying to find a slab
Christoph Lameter672bba32007-05-09 02:32:39 -07001904 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001905 */
Christoph Lameter98246012008-01-07 23:20:26 -08001906 if (!s->remote_node_defrag_ratio ||
1907 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001908 return NULL;
1909
Mel Gormancc9a6c82012-03-21 16:34:11 -07001910 do {
Mel Gormand26914d2014-04-03 14:47:24 -07001911 cpuset_mems_cookie = read_mems_allowed_begin();
David Rientjes2a389612014-04-07 15:37:29 -07001912 zonelist = node_zonelist(mempolicy_slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001913 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
1914 struct kmem_cache_node *n;
Christoph Lameter81819f02007-05-06 14:49:36 -07001915
Mel Gormancc9a6c82012-03-21 16:34:11 -07001916 n = get_node(s, zone_to_nid(zone));
Christoph Lameter81819f02007-05-06 14:49:36 -07001917
Vladimir Davydovdee2f8a2014-12-12 16:58:28 -08001918 if (n && cpuset_zone_allowed(zone, flags) &&
Mel Gormancc9a6c82012-03-21 16:34:11 -07001919 n->nr_partial > s->min_partial) {
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001920 object = get_partial_node(s, n, c, flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001921 if (object) {
1922 /*
Mel Gormand26914d2014-04-03 14:47:24 -07001923 * Don't check read_mems_allowed_retry()
1924 * here - if mems_allowed was updated in
1925 * parallel, that was a harmless race
1926 * between allocation and the cpuset
1927 * update
Mel Gormancc9a6c82012-03-21 16:34:11 -07001928 */
Mel Gormancc9a6c82012-03-21 16:34:11 -07001929 return object;
1930 }
Miao Xiec0ff7452010-05-24 14:32:08 -07001931 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001932 }
Mel Gormand26914d2014-04-03 14:47:24 -07001933 } while (read_mems_allowed_retry(cpuset_mems_cookie));
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07001934#endif /* CONFIG_NUMA */
Christoph Lameter81819f02007-05-06 14:49:36 -07001935 return NULL;
1936}
1937
1938/*
1939 * Get a partial page, lock it and return it.
1940 */
Christoph Lameter497b66f2011-08-09 16:12:26 -05001941static void *get_partial(struct kmem_cache *s, gfp_t flags, int node,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001942 struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001943{
Christoph Lameter497b66f2011-08-09 16:12:26 -05001944 void *object;
Joonsoo Kima561ce02014-10-09 15:26:15 -07001945 int searchnode = node;
1946
1947 if (node == NUMA_NO_NODE)
1948 searchnode = numa_mem_id();
1949 else if (!node_present_pages(node))
1950 searchnode = node_to_mem_node(node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001951
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001952 object = get_partial_node(s, get_node(s, searchnode), c, flags);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001953 if (object || node != NUMA_NO_NODE)
1954 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001955
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001956 return get_any_partial(s, flags, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001957}
1958
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001959#ifdef CONFIG_PREEMPT
1960/*
1961 * Calculate the next globally unique transaction for disambiguiation
1962 * during cmpxchg. The transactions start with the cpu number and are then
1963 * incremented by CONFIG_NR_CPUS.
1964 */
1965#define TID_STEP roundup_pow_of_two(CONFIG_NR_CPUS)
1966#else
1967/*
1968 * No preemption supported therefore also no need to check for
1969 * different cpus.
1970 */
1971#define TID_STEP 1
1972#endif
1973
1974static inline unsigned long next_tid(unsigned long tid)
1975{
1976 return tid + TID_STEP;
1977}
1978
1979static inline unsigned int tid_to_cpu(unsigned long tid)
1980{
1981 return tid % TID_STEP;
1982}
1983
1984static inline unsigned long tid_to_event(unsigned long tid)
1985{
1986 return tid / TID_STEP;
1987}
1988
1989static inline unsigned int init_tid(int cpu)
1990{
1991 return cpu;
1992}
1993
1994static inline void note_cmpxchg_failure(const char *n,
1995 const struct kmem_cache *s, unsigned long tid)
1996{
1997#ifdef SLUB_DEBUG_CMPXCHG
1998 unsigned long actual_tid = __this_cpu_read(s->cpu_slab->tid);
1999
Fabian Frederickf9f58282014-06-04 16:06:34 -07002000 pr_info("%s %s: cmpxchg redo ", n, s->name);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002001
2002#ifdef CONFIG_PREEMPT
2003 if (tid_to_cpu(tid) != tid_to_cpu(actual_tid))
Fabian Frederickf9f58282014-06-04 16:06:34 -07002004 pr_warn("due to cpu change %d -> %d\n",
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002005 tid_to_cpu(tid), tid_to_cpu(actual_tid));
2006 else
2007#endif
2008 if (tid_to_event(tid) != tid_to_event(actual_tid))
Fabian Frederickf9f58282014-06-04 16:06:34 -07002009 pr_warn("due to cpu running other code. Event %ld->%ld\n",
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002010 tid_to_event(tid), tid_to_event(actual_tid));
2011 else
Fabian Frederickf9f58282014-06-04 16:06:34 -07002012 pr_warn("for unknown reason: actual=%lx was=%lx target=%lx\n",
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002013 actual_tid, tid, next_tid(tid));
2014#endif
Christoph Lameter4fdccdf2011-03-22 13:35:00 -05002015 stat(s, CMPXCHG_DOUBLE_CPU_FAIL);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002016}
2017
Fengguang Wu788e1aa2012-09-28 16:34:05 +08002018static void init_kmem_cache_cpus(struct kmem_cache *s)
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002019{
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002020 int cpu;
2021
2022 for_each_possible_cpu(cpu)
2023 per_cpu_ptr(s->cpu_slab, cpu)->tid = init_tid(cpu);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002024}
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002025
2026/*
2027 * Remove the cpu slab
2028 */
Chen Gangd0e0ac92013-07-15 09:05:29 +08002029static void deactivate_slab(struct kmem_cache *s, struct page *page,
Wei Yangd4ff6d32017-07-06 15:36:25 -07002030 void *freelist, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07002031{
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002032 enum slab_modes { M_NONE, M_PARTIAL, M_FULL, M_FREE };
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002033 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
2034 int lock = 0;
2035 enum slab_modes l = M_NONE, m = M_NONE;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002036 void *nextfree;
Shaohua Li136333d2011-08-24 08:57:52 +08002037 int tail = DEACTIVATE_TO_HEAD;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002038 struct page new;
2039 struct page old;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08002040
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002041 if (page->freelist) {
Christoph Lameter84e554e62009-12-18 16:26:23 -06002042 stat(s, DEACTIVATE_REMOTE_FREES);
Shaohua Li136333d2011-08-24 08:57:52 +08002043 tail = DEACTIVATE_TO_TAIL;
Christoph Lameter894b8782007-05-10 03:15:16 -07002044 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002045
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002046 /*
2047 * Stage one: Free all available per cpu objects back
2048 * to the page freelist while it is still frozen. Leave the
2049 * last one.
2050 *
2051 * There is no need to take the list->lock because the page
2052 * is still frozen.
2053 */
2054 while (freelist && (nextfree = get_freepointer(s, freelist))) {
2055 void *prior;
2056 unsigned long counters;
2057
2058 do {
2059 prior = page->freelist;
2060 counters = page->counters;
2061 set_freepointer(s, freelist, prior);
2062 new.counters = counters;
2063 new.inuse--;
Dave Hansena0132ac2014-01-29 14:05:50 -08002064 VM_BUG_ON(!new.frozen);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002065
Christoph Lameter1d071712011-07-14 12:49:12 -05002066 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002067 prior, counters,
2068 freelist, new.counters,
2069 "drain percpu freelist"));
2070
2071 freelist = nextfree;
2072 }
2073
2074 /*
2075 * Stage two: Ensure that the page is unfrozen while the
2076 * list presence reflects the actual number of objects
2077 * during unfreeze.
2078 *
2079 * We setup the list membership and then perform a cmpxchg
2080 * with the count. If there is a mismatch then the page
2081 * is not unfrozen but the page is on the wrong list.
2082 *
2083 * Then we restart the process which may have to remove
2084 * the page from the list that we just put it on again
2085 * because the number of objects in the slab may have
2086 * changed.
2087 */
2088redo:
2089
2090 old.freelist = page->freelist;
2091 old.counters = page->counters;
Dave Hansena0132ac2014-01-29 14:05:50 -08002092 VM_BUG_ON(!old.frozen);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002093
2094 /* Determine target state of the slab */
2095 new.counters = old.counters;
2096 if (freelist) {
2097 new.inuse--;
2098 set_freepointer(s, freelist, old.freelist);
2099 new.freelist = freelist;
2100 } else
2101 new.freelist = old.freelist;
2102
2103 new.frozen = 0;
2104
Joonsoo Kim8a5b20a2014-07-02 15:22:35 -07002105 if (!new.inuse && n->nr_partial >= s->min_partial)
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002106 m = M_FREE;
2107 else if (new.freelist) {
2108 m = M_PARTIAL;
2109 if (!lock) {
2110 lock = 1;
2111 /*
Wei Yang8bb4e7a2019-03-05 15:46:22 -08002112 * Taking the spinlock removes the possibility
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002113 * that acquire_slab() will see a slab page that
2114 * is frozen
2115 */
2116 spin_lock(&n->list_lock);
2117 }
2118 } else {
2119 m = M_FULL;
2120 if (kmem_cache_debug(s) && !lock) {
2121 lock = 1;
2122 /*
2123 * This also ensures that the scanning of full
2124 * slabs from diagnostic functions will not see
2125 * any frozen slabs.
2126 */
2127 spin_lock(&n->list_lock);
2128 }
2129 }
2130
2131 if (l != m) {
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002132 if (l == M_PARTIAL)
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002133 remove_partial(n, page);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002134 else if (l == M_FULL)
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002135 remove_full(s, n, page);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002136
Wei Yang88349a22018-12-28 00:33:13 -08002137 if (m == M_PARTIAL)
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002138 add_partial(n, page, tail);
Wei Yang88349a22018-12-28 00:33:13 -08002139 else if (m == M_FULL)
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002140 add_full(s, n, page);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002141 }
2142
2143 l = m;
Christoph Lameter1d071712011-07-14 12:49:12 -05002144 if (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002145 old.freelist, old.counters,
2146 new.freelist, new.counters,
2147 "unfreezing slab"))
2148 goto redo;
2149
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002150 if (lock)
2151 spin_unlock(&n->list_lock);
2152
Wei Yang88349a22018-12-28 00:33:13 -08002153 if (m == M_PARTIAL)
2154 stat(s, tail);
2155 else if (m == M_FULL)
2156 stat(s, DEACTIVATE_FULL);
2157 else if (m == M_FREE) {
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002158 stat(s, DEACTIVATE_EMPTY);
2159 discard_slab(s, page);
2160 stat(s, FREE_SLAB);
2161 }
Wei Yangd4ff6d32017-07-06 15:36:25 -07002162
2163 c->page = NULL;
2164 c->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07002165}
2166
Joonsoo Kimd24ac772012-05-18 22:01:17 +09002167/*
2168 * Unfreeze all the cpu partial slabs.
2169 *
Christoph Lameter59a09912012-11-28 16:23:00 +00002170 * This function must be called with interrupts disabled
2171 * for the cpu using c (or some other guarantee must be there
2172 * to guarantee no concurrent accesses).
Joonsoo Kimd24ac772012-05-18 22:01:17 +09002173 */
Christoph Lameter59a09912012-11-28 16:23:00 +00002174static void unfreeze_partials(struct kmem_cache *s,
2175 struct kmem_cache_cpu *c)
Christoph Lameter49e22582011-08-09 16:12:27 -05002176{
Joonsoo Kim345c9052013-06-19 14:05:52 +09002177#ifdef CONFIG_SLUB_CPU_PARTIAL
Joonsoo Kim43d77862012-06-09 02:23:16 +09002178 struct kmem_cache_node *n = NULL, *n2 = NULL;
Shaohua Li9ada1932011-11-14 13:34:13 +08002179 struct page *page, *discard_page = NULL;
Christoph Lameter49e22582011-08-09 16:12:27 -05002180
2181 while ((page = c->partial)) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002182 struct page new;
2183 struct page old;
2184
2185 c->partial = page->next;
Joonsoo Kim43d77862012-06-09 02:23:16 +09002186
2187 n2 = get_node(s, page_to_nid(page));
2188 if (n != n2) {
2189 if (n)
2190 spin_unlock(&n->list_lock);
2191
2192 n = n2;
2193 spin_lock(&n->list_lock);
2194 }
Christoph Lameter49e22582011-08-09 16:12:27 -05002195
2196 do {
2197
2198 old.freelist = page->freelist;
2199 old.counters = page->counters;
Dave Hansena0132ac2014-01-29 14:05:50 -08002200 VM_BUG_ON(!old.frozen);
Christoph Lameter49e22582011-08-09 16:12:27 -05002201
2202 new.counters = old.counters;
2203 new.freelist = old.freelist;
2204
2205 new.frozen = 0;
2206
Joonsoo Kimd24ac772012-05-18 22:01:17 +09002207 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter49e22582011-08-09 16:12:27 -05002208 old.freelist, old.counters,
2209 new.freelist, new.counters,
2210 "unfreezing slab"));
2211
Joonsoo Kim8a5b20a2014-07-02 15:22:35 -07002212 if (unlikely(!new.inuse && n->nr_partial >= s->min_partial)) {
Shaohua Li9ada1932011-11-14 13:34:13 +08002213 page->next = discard_page;
2214 discard_page = page;
Joonsoo Kim43d77862012-06-09 02:23:16 +09002215 } else {
2216 add_partial(n, page, DEACTIVATE_TO_TAIL);
2217 stat(s, FREE_ADD_PARTIAL);
Christoph Lameter49e22582011-08-09 16:12:27 -05002218 }
2219 }
2220
2221 if (n)
2222 spin_unlock(&n->list_lock);
Shaohua Li9ada1932011-11-14 13:34:13 +08002223
2224 while (discard_page) {
2225 page = discard_page;
2226 discard_page = discard_page->next;
2227
2228 stat(s, DEACTIVATE_EMPTY);
2229 discard_slab(s, page);
2230 stat(s, FREE_SLAB);
2231 }
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07002232#endif /* CONFIG_SLUB_CPU_PARTIAL */
Christoph Lameter49e22582011-08-09 16:12:27 -05002233}
2234
2235/*
Wei Yang9234bae2019-03-05 15:43:10 -08002236 * Put a page that was just frozen (in __slab_free|get_partial_node) into a
2237 * partial page slot if available.
Christoph Lameter49e22582011-08-09 16:12:27 -05002238 *
2239 * If we did not find a slot then simply move all the partials to the
2240 * per node partial list.
2241 */
Joonsoo Kim633b0762013-01-21 17:01:25 +09002242static void put_cpu_partial(struct kmem_cache *s, struct page *page, int drain)
Christoph Lameter49e22582011-08-09 16:12:27 -05002243{
Joonsoo Kim345c9052013-06-19 14:05:52 +09002244#ifdef CONFIG_SLUB_CPU_PARTIAL
Christoph Lameter49e22582011-08-09 16:12:27 -05002245 struct page *oldpage;
2246 int pages;
2247 int pobjects;
2248
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -08002249 preempt_disable();
Christoph Lameter49e22582011-08-09 16:12:27 -05002250 do {
2251 pages = 0;
2252 pobjects = 0;
2253 oldpage = this_cpu_read(s->cpu_slab->partial);
2254
2255 if (oldpage) {
2256 pobjects = oldpage->pobjects;
2257 pages = oldpage->pages;
2258 if (drain && pobjects > s->cpu_partial) {
2259 unsigned long flags;
2260 /*
2261 * partial array is full. Move the existing
2262 * set to the per node partial list.
2263 */
2264 local_irq_save(flags);
Christoph Lameter59a09912012-11-28 16:23:00 +00002265 unfreeze_partials(s, this_cpu_ptr(s->cpu_slab));
Christoph Lameter49e22582011-08-09 16:12:27 -05002266 local_irq_restore(flags);
Joonsoo Kime24fc412012-06-23 03:22:38 +09002267 oldpage = NULL;
Christoph Lameter49e22582011-08-09 16:12:27 -05002268 pobjects = 0;
2269 pages = 0;
Alex Shi8028dce2012-02-03 23:34:56 +08002270 stat(s, CPU_PARTIAL_DRAIN);
Christoph Lameter49e22582011-08-09 16:12:27 -05002271 }
2272 }
2273
2274 pages++;
2275 pobjects += page->objects - page->inuse;
2276
2277 page->pages = pages;
2278 page->pobjects = pobjects;
2279 page->next = oldpage;
2280
Chen Gangd0e0ac92013-07-15 09:05:29 +08002281 } while (this_cpu_cmpxchg(s->cpu_slab->partial, oldpage, page)
2282 != oldpage);
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -08002283 if (unlikely(!s->cpu_partial)) {
2284 unsigned long flags;
2285
2286 local_irq_save(flags);
2287 unfreeze_partials(s, this_cpu_ptr(s->cpu_slab));
2288 local_irq_restore(flags);
2289 }
2290 preempt_enable();
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07002291#endif /* CONFIG_SLUB_CPU_PARTIAL */
Christoph Lameter49e22582011-08-09 16:12:27 -05002292}
2293
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002294static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07002295{
Christoph Lameter84e554e62009-12-18 16:26:23 -06002296 stat(s, CPUSLAB_FLUSH);
Wei Yangd4ff6d32017-07-06 15:36:25 -07002297 deactivate_slab(s, c->page, c->freelist, c);
Christoph Lameterc17dda42012-05-09 10:09:57 -05002298
2299 c->tid = next_tid(c->tid);
Christoph Lameter81819f02007-05-06 14:49:36 -07002300}
2301
2302/*
2303 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08002304 *
Christoph Lameter81819f02007-05-06 14:49:36 -07002305 * Called from IPI handler with interrupts disabled.
2306 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002307static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07002308{
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002309 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07002310
Wei Yang1265ef22018-12-28 00:33:06 -08002311 if (c->page)
2312 flush_slab(s, c);
Christoph Lameter49e22582011-08-09 16:12:27 -05002313
Wei Yang1265ef22018-12-28 00:33:06 -08002314 unfreeze_partials(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07002315}
2316
2317static void flush_cpu_slab(void *d)
2318{
2319 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07002320
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002321 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07002322}
2323
Gilad Ben-Yossefa8364d52012-03-28 14:42:44 -07002324static bool has_cpu_slab(int cpu, void *info)
2325{
2326 struct kmem_cache *s = info;
2327 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
2328
Wei Yanga93cf072017-07-06 15:36:31 -07002329 return c->page || slub_percpu_partial(c);
Gilad Ben-Yossefa8364d52012-03-28 14:42:44 -07002330}
2331
Christoph Lameter81819f02007-05-06 14:49:36 -07002332static void flush_all(struct kmem_cache *s)
2333{
Gilad Ben-Yossefa8364d52012-03-28 14:42:44 -07002334 on_each_cpu_cond(has_cpu_slab, flush_cpu_slab, s, 1, GFP_ATOMIC);
Christoph Lameter81819f02007-05-06 14:49:36 -07002335}
2336
2337/*
Sebastian Andrzej Siewiora96a87b2016-08-18 14:57:19 +02002338 * Use the cpu notifier to insure that the cpu slabs are flushed when
2339 * necessary.
2340 */
2341static int slub_cpu_dead(unsigned int cpu)
2342{
2343 struct kmem_cache *s;
2344 unsigned long flags;
2345
2346 mutex_lock(&slab_mutex);
2347 list_for_each_entry(s, &slab_caches, list) {
2348 local_irq_save(flags);
2349 __flush_cpu_slab(s, cpu);
2350 local_irq_restore(flags);
2351 }
2352 mutex_unlock(&slab_mutex);
2353 return 0;
2354}
2355
2356/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002357 * Check if the objects in a per cpu structure fit numa
2358 * locality expectations.
2359 */
Christoph Lameter57d437d2012-05-09 10:09:59 -05002360static inline int node_match(struct page *page, int node)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002361{
2362#ifdef CONFIG_NUMA
Wei Yang6159d0f2018-12-28 00:33:09 -08002363 if (node != NUMA_NO_NODE && page_to_nid(page) != node)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002364 return 0;
2365#endif
2366 return 1;
2367}
2368
David Rientjes9a02d692014-06-04 16:06:36 -07002369#ifdef CONFIG_SLUB_DEBUG
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002370static int count_free(struct page *page)
2371{
2372 return page->objects - page->inuse;
2373}
2374
David Rientjes9a02d692014-06-04 16:06:36 -07002375static inline unsigned long node_nr_objs(struct kmem_cache_node *n)
2376{
2377 return atomic_long_read(&n->total_objects);
2378}
2379#endif /* CONFIG_SLUB_DEBUG */
2380
2381#if defined(CONFIG_SLUB_DEBUG) || defined(CONFIG_SYSFS)
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002382static unsigned long count_partial(struct kmem_cache_node *n,
2383 int (*get_count)(struct page *))
2384{
2385 unsigned long flags;
2386 unsigned long x = 0;
2387 struct page *page;
2388
2389 spin_lock_irqsave(&n->list_lock, flags);
Tobin C. Harding916ac052019-05-13 17:16:12 -07002390 list_for_each_entry(page, &n->partial, slab_list)
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002391 x += get_count(page);
2392 spin_unlock_irqrestore(&n->list_lock, flags);
2393 return x;
2394}
David Rientjes9a02d692014-06-04 16:06:36 -07002395#endif /* CONFIG_SLUB_DEBUG || CONFIG_SYSFS */
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04002396
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002397static noinline void
2398slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
2399{
David Rientjes9a02d692014-06-04 16:06:36 -07002400#ifdef CONFIG_SLUB_DEBUG
2401 static DEFINE_RATELIMIT_STATE(slub_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
2402 DEFAULT_RATELIMIT_BURST);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002403 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07002404 struct kmem_cache_node *n;
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002405
David Rientjes9a02d692014-06-04 16:06:36 -07002406 if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slub_oom_rs))
2407 return;
2408
Vlastimil Babka5b3810e2016-03-15 14:56:33 -07002409 pr_warn("SLUB: Unable to allocate memory on node %d, gfp=%#x(%pGg)\n",
2410 nid, gfpflags, &gfpflags);
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07002411 pr_warn(" cache: %s, object size: %u, buffer size: %u, default order: %u, min order: %u\n",
Fabian Frederickf9f58282014-06-04 16:06:34 -07002412 s->name, s->object_size, s->size, oo_order(s->oo),
2413 oo_order(s->min));
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002414
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002415 if (oo_order(s->min) > get_order(s->object_size))
Fabian Frederickf9f58282014-06-04 16:06:34 -07002416 pr_warn(" %s debugging increased min order, use slub_debug=O to disable.\n",
2417 s->name);
David Rientjesfa5ec8a2009-07-07 00:14:14 -07002418
Christoph Lameterfa45dc22014-08-06 16:04:09 -07002419 for_each_kmem_cache_node(s, node, n) {
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002420 unsigned long nr_slabs;
2421 unsigned long nr_objs;
2422 unsigned long nr_free;
2423
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04002424 nr_free = count_partial(n, count_free);
2425 nr_slabs = node_nr_slabs(n);
2426 nr_objs = node_nr_objs(n);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002427
Fabian Frederickf9f58282014-06-04 16:06:34 -07002428 pr_warn(" node %d: slabs: %ld, objs: %ld, free: %ld\n",
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002429 node, nr_slabs, nr_objs, nr_free);
2430 }
David Rientjes9a02d692014-06-04 16:06:36 -07002431#endif
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002432}
2433
Christoph Lameter497b66f2011-08-09 16:12:26 -05002434static inline void *new_slab_objects(struct kmem_cache *s, gfp_t flags,
2435 int node, struct kmem_cache_cpu **pc)
2436{
Christoph Lameter6faa6832012-05-09 10:09:51 -05002437 void *freelist;
Christoph Lameter188fd062012-05-09 10:09:55 -05002438 struct kmem_cache_cpu *c = *pc;
2439 struct page *page;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002440
Matthew Wilcox128227e2018-06-07 17:05:13 -07002441 WARN_ON_ONCE(s->ctor && (flags & __GFP_ZERO));
2442
Christoph Lameter188fd062012-05-09 10:09:55 -05002443 freelist = get_partial(s, flags, node, c);
2444
2445 if (freelist)
2446 return freelist;
2447
2448 page = new_slab(s, flags, node);
Christoph Lameter497b66f2011-08-09 16:12:26 -05002449 if (page) {
Christoph Lameter7c8e0182014-06-04 16:07:56 -07002450 c = raw_cpu_ptr(s->cpu_slab);
Christoph Lameter497b66f2011-08-09 16:12:26 -05002451 if (c->page)
2452 flush_slab(s, c);
2453
2454 /*
2455 * No other reference to the page yet so we can
2456 * muck around with it freely without cmpxchg
2457 */
Christoph Lameter6faa6832012-05-09 10:09:51 -05002458 freelist = page->freelist;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002459 page->freelist = NULL;
2460
2461 stat(s, ALLOC_SLAB);
Christoph Lameter497b66f2011-08-09 16:12:26 -05002462 c->page = page;
2463 *pc = c;
Peng Wangedde82b2019-03-05 15:42:00 -08002464 }
Christoph Lameter497b66f2011-08-09 16:12:26 -05002465
Christoph Lameter6faa6832012-05-09 10:09:51 -05002466 return freelist;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002467}
2468
Mel Gorman072bb0a2012-07-31 16:43:58 -07002469static inline bool pfmemalloc_match(struct page *page, gfp_t gfpflags)
2470{
2471 if (unlikely(PageSlabPfmemalloc(page)))
2472 return gfp_pfmemalloc_allowed(gfpflags);
2473
2474 return true;
2475}
2476
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002477/*
Chen Gangd0e0ac92013-07-15 09:05:29 +08002478 * Check the page->freelist of a page and either transfer the freelist to the
2479 * per cpu freelist or deactivate the page.
Christoph Lameter213eeb92011-11-11 14:07:14 -06002480 *
2481 * The page is still frozen if the return value is not NULL.
2482 *
2483 * If this function returns NULL then the page has been unfrozen.
Joonsoo Kimd24ac772012-05-18 22:01:17 +09002484 *
2485 * This function must be called with interrupt disabled.
Christoph Lameter213eeb92011-11-11 14:07:14 -06002486 */
2487static inline void *get_freelist(struct kmem_cache *s, struct page *page)
2488{
2489 struct page new;
2490 unsigned long counters;
2491 void *freelist;
2492
2493 do {
2494 freelist = page->freelist;
2495 counters = page->counters;
Christoph Lameter6faa6832012-05-09 10:09:51 -05002496
Christoph Lameter213eeb92011-11-11 14:07:14 -06002497 new.counters = counters;
Dave Hansena0132ac2014-01-29 14:05:50 -08002498 VM_BUG_ON(!new.frozen);
Christoph Lameter213eeb92011-11-11 14:07:14 -06002499
2500 new.inuse = page->objects;
2501 new.frozen = freelist != NULL;
2502
Joonsoo Kimd24ac772012-05-18 22:01:17 +09002503 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter213eeb92011-11-11 14:07:14 -06002504 freelist, counters,
2505 NULL, new.counters,
2506 "get_freelist"));
2507
2508 return freelist;
2509}
2510
2511/*
Christoph Lameter894b8782007-05-10 03:15:16 -07002512 * Slow path. The lockless freelist is empty or we need to perform
2513 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07002514 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002515 * Processing is still very fast if new objects have been freed to the
2516 * regular freelist. In that case we simply take over the regular freelist
2517 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07002518 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002519 * If that is not working then we fall back to the partial lists. We take the
2520 * first element of the freelist as the object to allocate now and move the
2521 * rest of the freelist to the lockless freelist.
2522 *
2523 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08002524 * we need to allocate a new slab. This is the slowest path since it involves
2525 * a call to the page allocator and the setup of a new slab.
Christoph Lametera380a3c2015-11-20 15:57:35 -08002526 *
2527 * Version of __slab_alloc to use when we know that interrupts are
2528 * already disabled (which is the case for bulk allocation).
Christoph Lameter81819f02007-05-06 14:49:36 -07002529 */
Christoph Lametera380a3c2015-11-20 15:57:35 -08002530static void *___slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002531 unsigned long addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07002532{
Christoph Lameter6faa6832012-05-09 10:09:51 -05002533 void *freelist;
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002534 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002535
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002536 page = c->page;
2537 if (!page)
Christoph Lameter81819f02007-05-06 14:49:36 -07002538 goto new_slab;
Christoph Lameter49e22582011-08-09 16:12:27 -05002539redo:
Christoph Lameter6faa6832012-05-09 10:09:51 -05002540
Christoph Lameter57d437d2012-05-09 10:09:59 -05002541 if (unlikely(!node_match(page, node))) {
Joonsoo Kima561ce02014-10-09 15:26:15 -07002542 int searchnode = node;
2543
2544 if (node != NUMA_NO_NODE && !node_present_pages(node))
2545 searchnode = node_to_mem_node(node);
2546
2547 if (unlikely(!node_match(page, searchnode))) {
2548 stat(s, ALLOC_NODE_MISMATCH);
Wei Yangd4ff6d32017-07-06 15:36:25 -07002549 deactivate_slab(s, page, c->freelist, c);
Joonsoo Kima561ce02014-10-09 15:26:15 -07002550 goto new_slab;
2551 }
Christoph Lameterfc59c052011-06-01 12:25:56 -05002552 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08002553
Mel Gorman072bb0a2012-07-31 16:43:58 -07002554 /*
2555 * By rights, we should be searching for a slab page that was
2556 * PFMEMALLOC but right now, we are losing the pfmemalloc
2557 * information when the page leaves the per-cpu allocator
2558 */
2559 if (unlikely(!pfmemalloc_match(page, gfpflags))) {
Wei Yangd4ff6d32017-07-06 15:36:25 -07002560 deactivate_slab(s, page, c->freelist, c);
Mel Gorman072bb0a2012-07-31 16:43:58 -07002561 goto new_slab;
2562 }
2563
Eric Dumazet73736e02011-12-13 04:57:06 +01002564 /* must check again c->freelist in case of cpu migration or IRQ */
Christoph Lameter6faa6832012-05-09 10:09:51 -05002565 freelist = c->freelist;
2566 if (freelist)
Eric Dumazet73736e02011-12-13 04:57:06 +01002567 goto load_freelist;
2568
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002569 freelist = get_freelist(s, page);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002570
Christoph Lameter6faa6832012-05-09 10:09:51 -05002571 if (!freelist) {
Christoph Lameter03e404a2011-06-01 12:25:58 -05002572 c->page = NULL;
2573 stat(s, DEACTIVATE_BYPASS);
Christoph Lameterfc59c052011-06-01 12:25:56 -05002574 goto new_slab;
Christoph Lameter03e404a2011-06-01 12:25:58 -05002575 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002576
Christoph Lameter81819f02007-05-06 14:49:36 -07002577 stat(s, ALLOC_REFILL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08002578
Christoph Lameter894b8782007-05-10 03:15:16 -07002579load_freelist:
Christoph Lameter507effe2012-05-09 10:09:52 -05002580 /*
2581 * freelist is pointing to the list of objects to be used.
2582 * page is pointing to the page from which the objects are obtained.
2583 * That page must be frozen for per cpu allocations to work.
2584 */
Dave Hansena0132ac2014-01-29 14:05:50 -08002585 VM_BUG_ON(!c->page->frozen);
Christoph Lameter6faa6832012-05-09 10:09:51 -05002586 c->freelist = get_freepointer(s, freelist);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002587 c->tid = next_tid(c->tid);
Christoph Lameter6faa6832012-05-09 10:09:51 -05002588 return freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07002589
Christoph Lameter81819f02007-05-06 14:49:36 -07002590new_slab:
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002591
Wei Yanga93cf072017-07-06 15:36:31 -07002592 if (slub_percpu_partial(c)) {
2593 page = c->page = slub_percpu_partial(c);
2594 slub_set_percpu_partial(c, page);
Christoph Lameter49e22582011-08-09 16:12:27 -05002595 stat(s, CPU_PARTIAL_ALLOC);
Christoph Lameter49e22582011-08-09 16:12:27 -05002596 goto redo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002597 }
2598
Christoph Lameter188fd062012-05-09 10:09:55 -05002599 freelist = new_slab_objects(s, gfpflags, node, &c);
Christoph Lameterb811c202007-10-16 23:25:51 -07002600
Christoph Lameterf46974362012-05-09 10:09:54 -05002601 if (unlikely(!freelist)) {
David Rientjes9a02d692014-06-04 16:06:36 -07002602 slab_out_of_memory(s, gfpflags, node);
Christoph Lameterf46974362012-05-09 10:09:54 -05002603 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07002604 }
Christoph Lameter894b8782007-05-10 03:15:16 -07002605
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002606 page = c->page;
Christoph Lameter5091b742012-07-31 16:44:00 -07002607 if (likely(!kmem_cache_debug(s) && pfmemalloc_match(page, gfpflags)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002608 goto load_freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07002609
Christoph Lameter497b66f2011-08-09 16:12:26 -05002610 /* Only entered in the debug case */
Chen Gangd0e0ac92013-07-15 09:05:29 +08002611 if (kmem_cache_debug(s) &&
2612 !alloc_debug_processing(s, page, freelist, addr))
Christoph Lameter497b66f2011-08-09 16:12:26 -05002613 goto new_slab; /* Slab failed checks. Next slab needed */
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002614
Wei Yangd4ff6d32017-07-06 15:36:25 -07002615 deactivate_slab(s, page, get_freepointer(s, freelist), c);
Christoph Lameter6faa6832012-05-09 10:09:51 -05002616 return freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07002617}
2618
2619/*
Christoph Lametera380a3c2015-11-20 15:57:35 -08002620 * Another one that disabled interrupt and compensates for possible
2621 * cpu changes by refetching the per cpu area pointer.
2622 */
2623static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
2624 unsigned long addr, struct kmem_cache_cpu *c)
2625{
2626 void *p;
2627 unsigned long flags;
2628
2629 local_irq_save(flags);
2630#ifdef CONFIG_PREEMPT
2631 /*
2632 * We may have been preempted and rescheduled on a different
2633 * cpu before disabling interrupts. Need to reload cpu area
2634 * pointer.
2635 */
2636 c = this_cpu_ptr(s->cpu_slab);
2637#endif
2638
2639 p = ___slab_alloc(s, gfpflags, node, addr, c);
2640 local_irq_restore(flags);
2641 return p;
2642}
2643
2644/*
Christoph Lameter894b8782007-05-10 03:15:16 -07002645 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
2646 * have the fastpath folded into their functions. So no function call
2647 * overhead for requests that can be satisfied on the fastpath.
2648 *
2649 * The fastpath works by first checking if the lockless freelist can be used.
2650 * If not then __slab_alloc is called for slow processing.
2651 *
2652 * Otherwise we can simply pick the next object from the lockless free list.
2653 */
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002654static __always_inline void *slab_alloc_node(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002655 gfp_t gfpflags, int node, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07002656{
Jesper Dangaard Brouer03ec0ed2015-11-20 15:57:52 -08002657 void *object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002658 struct kmem_cache_cpu *c;
Christoph Lameter57d437d2012-05-09 10:09:59 -05002659 struct page *page;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002660 unsigned long tid;
Christoph Lameter1f842602008-01-07 23:20:30 -08002661
Vladimir Davydov8135be52014-12-12 16:56:38 -08002662 s = slab_pre_alloc_hook(s, gfpflags);
2663 if (!s)
Akinobu Mita773ff602008-12-23 19:37:01 +09002664 return NULL;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002665redo:
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002666 /*
2667 * Must read kmem_cache cpu data via this cpu ptr. Preemption is
2668 * enabled. We may switch back and forth between cpus while
2669 * reading from one cpu area. That does not matter as long
2670 * as we end up on the original cpu again when doing the cmpxchg.
Christoph Lameter7cccd80b2013-01-23 21:45:48 +00002671 *
Joonsoo Kim9aabf812015-02-10 14:09:32 -08002672 * We should guarantee that tid and kmem_cache are retrieved on
2673 * the same cpu. It could be different if CONFIG_PREEMPT so we need
2674 * to check if it is matched or not.
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002675 */
Joonsoo Kim9aabf812015-02-10 14:09:32 -08002676 do {
2677 tid = this_cpu_read(s->cpu_slab->tid);
2678 c = raw_cpu_ptr(s->cpu_slab);
Mark Rutland859b7a02015-03-25 15:55:23 -07002679 } while (IS_ENABLED(CONFIG_PREEMPT) &&
2680 unlikely(tid != READ_ONCE(c->tid)));
Joonsoo Kim9aabf812015-02-10 14:09:32 -08002681
2682 /*
2683 * Irqless object alloc/free algorithm used here depends on sequence
2684 * of fetching cpu_slab's data. tid should be fetched before anything
2685 * on c to guarantee that object and page associated with previous tid
2686 * won't be used with current tid. If we fetch tid first, object and
2687 * page could be one associated with next tid and our alloc/free
2688 * request will be failed. In this case, we will retry. So, no problem.
2689 */
2690 barrier();
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002691
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002692 /*
2693 * The transaction ids are globally unique per cpu and per operation on
2694 * a per cpu queue. Thus they can be guarantee that the cmpxchg_double
2695 * occurs on the right processor and that there was no operation on the
2696 * linked list in between.
2697 */
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002698
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002699 object = c->freelist;
Christoph Lameter57d437d2012-05-09 10:09:59 -05002700 page = c->page;
Dave Hansen8eae1492014-06-04 16:06:37 -07002701 if (unlikely(!object || !node_match(page, node))) {
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002702 object = __slab_alloc(s, gfpflags, node, addr, c);
Dave Hansen8eae1492014-06-04 16:06:37 -07002703 stat(s, ALLOC_SLOWPATH);
2704 } else {
Eric Dumazet0ad95002011-12-16 16:25:34 +01002705 void *next_object = get_freepointer_safe(s, object);
2706
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002707 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002708 * The cmpxchg will only match if there was no additional
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002709 * operation and if we are on the right processor.
2710 *
Chen Gangd0e0ac92013-07-15 09:05:29 +08002711 * The cmpxchg does the following atomically (without lock
2712 * semantics!)
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002713 * 1. Relocate first pointer to the current per cpu area.
2714 * 2. Verify that tid and freelist have not been changed
2715 * 3. If they were not changed replace tid and freelist
2716 *
Chen Gangd0e0ac92013-07-15 09:05:29 +08002717 * Since this is without lock semantics the protection is only
2718 * against code executing on this cpu *not* from access by
2719 * other cpus.
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002720 */
Christoph Lameter933393f2011-12-22 11:58:51 -06002721 if (unlikely(!this_cpu_cmpxchg_double(
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002722 s->cpu_slab->freelist, s->cpu_slab->tid,
2723 object, tid,
Eric Dumazet0ad95002011-12-16 16:25:34 +01002724 next_object, next_tid(tid)))) {
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002725
2726 note_cmpxchg_failure("slab_alloc", s, tid);
2727 goto redo;
2728 }
Eric Dumazet0ad95002011-12-16 16:25:34 +01002729 prefetch_freepointer(s, next_object);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002730 stat(s, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07002731 }
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002732
Pekka Enberg74e21342009-11-25 20:14:48 +02002733 if (unlikely(gfpflags & __GFP_ZERO) && object)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002734 memset(object, 0, s->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07002735
Jesper Dangaard Brouer03ec0ed2015-11-20 15:57:52 -08002736 slab_post_alloc_hook(s, gfpflags, 1, &object);
Vegard Nossum5a896d92008-04-04 00:54:48 +02002737
Christoph Lameter894b8782007-05-10 03:15:16 -07002738 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07002739}
2740
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002741static __always_inline void *slab_alloc(struct kmem_cache *s,
2742 gfp_t gfpflags, unsigned long addr)
2743{
2744 return slab_alloc_node(s, gfpflags, NUMA_NO_NODE, addr);
2745}
2746
Christoph Lameter81819f02007-05-06 14:49:36 -07002747void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
2748{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002749 void *ret = slab_alloc(s, gfpflags, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002750
Chen Gangd0e0ac92013-07-15 09:05:29 +08002751 trace_kmem_cache_alloc(_RET_IP_, ret, s->object_size,
2752 s->size, gfpflags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002753
2754 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002755}
2756EXPORT_SYMBOL(kmem_cache_alloc);
2757
Li Zefan0f24f122009-12-11 15:45:30 +08002758#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01002759void *kmem_cache_alloc_trace(struct kmem_cache *s, gfp_t gfpflags, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002760{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002761 void *ret = slab_alloc(s, gfpflags, _RET_IP_);
Richard Kennedy4a923792010-10-21 10:29:19 +01002762 trace_kmalloc(_RET_IP_, ret, size, s->size, gfpflags);
Andrey Konovalov01165232018-12-28 00:29:37 -08002763 ret = kasan_kmalloc(s, ret, size, gfpflags);
Richard Kennedy4a923792010-10-21 10:29:19 +01002764 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002765}
Richard Kennedy4a923792010-10-21 10:29:19 +01002766EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002767#endif
2768
Christoph Lameter81819f02007-05-06 14:49:36 -07002769#ifdef CONFIG_NUMA
2770void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
2771{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002772 void *ret = slab_alloc_node(s, gfpflags, node, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002773
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002774 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002775 s->object_size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002776
2777 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002778}
2779EXPORT_SYMBOL(kmem_cache_alloc_node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002780
Li Zefan0f24f122009-12-11 15:45:30 +08002781#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01002782void *kmem_cache_alloc_node_trace(struct kmem_cache *s,
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002783 gfp_t gfpflags,
Richard Kennedy4a923792010-10-21 10:29:19 +01002784 int node, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002785{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002786 void *ret = slab_alloc_node(s, gfpflags, node, _RET_IP_);
Richard Kennedy4a923792010-10-21 10:29:19 +01002787
2788 trace_kmalloc_node(_RET_IP_, ret,
2789 size, s->size, gfpflags, node);
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08002790
Andrey Konovalov01165232018-12-28 00:29:37 -08002791 ret = kasan_kmalloc(s, ret, size, gfpflags);
Richard Kennedy4a923792010-10-21 10:29:19 +01002792 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002793}
Richard Kennedy4a923792010-10-21 10:29:19 +01002794EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002795#endif
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07002796#endif /* CONFIG_NUMA */
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002797
Christoph Lameter81819f02007-05-06 14:49:36 -07002798/*
Kim Phillips94e4d712015-02-10 14:09:37 -08002799 * Slow path handling. This may still be called frequently since objects
Christoph Lameter894b8782007-05-10 03:15:16 -07002800 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07002801 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002802 * So we still attempt to reduce cache line usage. Just take the slab
2803 * lock and free the item. If there is no additional partial page
2804 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07002805 */
Christoph Lameter894b8782007-05-10 03:15:16 -07002806static void __slab_free(struct kmem_cache *s, struct page *page,
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002807 void *head, void *tail, int cnt,
2808 unsigned long addr)
2809
Christoph Lameter81819f02007-05-06 14:49:36 -07002810{
2811 void *prior;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002812 int was_frozen;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002813 struct page new;
2814 unsigned long counters;
2815 struct kmem_cache_node *n = NULL;
Christoph Lameter61728d12011-06-01 12:25:51 -05002816 unsigned long uninitialized_var(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002817
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002818 stat(s, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07002819
Christoph Lameter19c7ff92012-05-30 12:54:46 -05002820 if (kmem_cache_debug(s) &&
Laura Abbott282acb42016-03-15 14:54:59 -07002821 !free_debug_processing(s, page, head, tail, cnt, addr))
Christoph Lameter80f08c12011-06-01 12:25:55 -05002822 return;
Christoph Lameter6446faa2008-02-15 23:45:26 -08002823
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002824 do {
Joonsoo Kim837d6782012-08-16 00:02:40 +09002825 if (unlikely(n)) {
2826 spin_unlock_irqrestore(&n->list_lock, flags);
2827 n = NULL;
2828 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002829 prior = page->freelist;
2830 counters = page->counters;
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002831 set_freepointer(s, tail, prior);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002832 new.counters = counters;
2833 was_frozen = new.frozen;
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002834 new.inuse -= cnt;
Joonsoo Kim837d6782012-08-16 00:02:40 +09002835 if ((!new.inuse || !prior) && !was_frozen) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002836
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002837 if (kmem_cache_has_cpu_partial(s) && !prior) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002838
2839 /*
Chen Gangd0e0ac92013-07-15 09:05:29 +08002840 * Slab was on no list before and will be
2841 * partially empty
2842 * We can defer the list move and instead
2843 * freeze it.
Christoph Lameter49e22582011-08-09 16:12:27 -05002844 */
2845 new.frozen = 1;
2846
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002847 } else { /* Needs to be taken off a list */
Christoph Lameter49e22582011-08-09 16:12:27 -05002848
LQYMGTb455def2014-12-10 15:42:13 -08002849 n = get_node(s, page_to_nid(page));
Christoph Lameter49e22582011-08-09 16:12:27 -05002850 /*
2851 * Speculatively acquire the list_lock.
2852 * If the cmpxchg does not succeed then we may
2853 * drop the list_lock without any processing.
2854 *
2855 * Otherwise the list_lock will synchronize with
2856 * other processors updating the list of slabs.
2857 */
2858 spin_lock_irqsave(&n->list_lock, flags);
2859
2860 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002861 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002862
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002863 } while (!cmpxchg_double_slab(s, page,
2864 prior, counters,
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002865 head, new.counters,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002866 "__slab_free"));
Christoph Lameter81819f02007-05-06 14:49:36 -07002867
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002868 if (likely(!n)) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002869
2870 /*
2871 * If we just froze the page then put it onto the
2872 * per cpu partial list.
2873 */
Alex Shi8028dce2012-02-03 23:34:56 +08002874 if (new.frozen && !was_frozen) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002875 put_cpu_partial(s, page, 1);
Alex Shi8028dce2012-02-03 23:34:56 +08002876 stat(s, CPU_PARTIAL_FREE);
2877 }
Christoph Lameter49e22582011-08-09 16:12:27 -05002878 /*
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002879 * The list lock was not taken therefore no list
2880 * activity can be necessary.
2881 */
LQYMGTb455def2014-12-10 15:42:13 -08002882 if (was_frozen)
2883 stat(s, FREE_FROZEN);
2884 return;
2885 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002886
Joonsoo Kim8a5b20a2014-07-02 15:22:35 -07002887 if (unlikely(!new.inuse && n->nr_partial >= s->min_partial))
Joonsoo Kim837d6782012-08-16 00:02:40 +09002888 goto slab_empty;
Christoph Lameter81819f02007-05-06 14:49:36 -07002889
Joonsoo Kim837d6782012-08-16 00:02:40 +09002890 /*
2891 * Objects left in the slab. If it was not on the partial list before
2892 * then add it.
2893 */
Joonsoo Kim345c9052013-06-19 14:05:52 +09002894 if (!kmem_cache_has_cpu_partial(s) && unlikely(!prior)) {
Liu Xianga4d3f892019-05-13 17:16:22 -07002895 remove_full(s, n, page);
Joonsoo Kim837d6782012-08-16 00:02:40 +09002896 add_partial(n, page, DEACTIVATE_TO_TAIL);
2897 stat(s, FREE_ADD_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07002898 }
Christoph Lameter80f08c12011-06-01 12:25:55 -05002899 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002900 return;
2901
2902slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08002903 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002904 /*
Christoph Lameter6fbabb22011-08-08 11:16:56 -05002905 * Slab on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07002906 */
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05002907 remove_partial(n, page);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002908 stat(s, FREE_REMOVE_PARTIAL);
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002909 } else {
Christoph Lameter6fbabb22011-08-08 11:16:56 -05002910 /* Slab must be on the full list */
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002911 remove_full(s, n, page);
2912 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002913
Christoph Lameter80f08c12011-06-01 12:25:55 -05002914 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002915 stat(s, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07002916 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07002917}
2918
Christoph Lameter894b8782007-05-10 03:15:16 -07002919/*
2920 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
2921 * can perform fastpath freeing without additional function calls.
2922 *
2923 * The fastpath is only possible if we are freeing to the current cpu slab
2924 * of this processor. This typically the case if we have just allocated
2925 * the item before.
2926 *
2927 * If fastpath is not possible then fall back to __slab_free where we deal
2928 * with all sorts of special processing.
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002929 *
2930 * Bulk free of a freelist with several objects (all pointing to the
2931 * same page) possible by specifying head and tail ptr, plus objects
2932 * count (cnt). Bulk free indicated by tail pointer being set.
Christoph Lameter894b8782007-05-10 03:15:16 -07002933 */
Alexander Potapenko80a92012016-07-28 15:49:07 -07002934static __always_inline void do_slab_free(struct kmem_cache *s,
2935 struct page *page, void *head, void *tail,
2936 int cnt, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07002937{
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002938 void *tail_obj = tail ? : head;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002939 struct kmem_cache_cpu *c;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002940 unsigned long tid;
Christoph Lametera24c5a02011-03-15 12:45:21 -05002941redo:
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002942 /*
2943 * Determine the currently cpus per cpu slab.
2944 * The cpu may change afterward. However that does not matter since
2945 * data is retrieved via this pointer. If we are on the same cpu
Jesper Dangaard Brouer2ae44002015-09-04 15:45:31 -07002946 * during the cmpxchg then the free will succeed.
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002947 */
Joonsoo Kim9aabf812015-02-10 14:09:32 -08002948 do {
2949 tid = this_cpu_read(s->cpu_slab->tid);
2950 c = raw_cpu_ptr(s->cpu_slab);
Mark Rutland859b7a02015-03-25 15:55:23 -07002951 } while (IS_ENABLED(CONFIG_PREEMPT) &&
2952 unlikely(tid != READ_ONCE(c->tid)));
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002953
Joonsoo Kim9aabf812015-02-10 14:09:32 -08002954 /* Same with comment on barrier() in slab_alloc_node() */
2955 barrier();
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002956
Christoph Lameter442b06b2011-05-17 16:29:31 -05002957 if (likely(page == c->page)) {
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002958 set_freepointer(s, tail_obj, c->freelist);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002959
Christoph Lameter933393f2011-12-22 11:58:51 -06002960 if (unlikely(!this_cpu_cmpxchg_double(
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002961 s->cpu_slab->freelist, s->cpu_slab->tid,
2962 c->freelist, tid,
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002963 head, next_tid(tid)))) {
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002964
2965 note_cmpxchg_failure("slab_free", s, tid);
2966 goto redo;
2967 }
Christoph Lameter84e554e62009-12-18 16:26:23 -06002968 stat(s, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07002969 } else
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002970 __slab_free(s, page, head, tail_obj, cnt, addr);
Christoph Lameter894b8782007-05-10 03:15:16 -07002971
Christoph Lameter894b8782007-05-10 03:15:16 -07002972}
2973
Alexander Potapenko80a92012016-07-28 15:49:07 -07002974static __always_inline void slab_free(struct kmem_cache *s, struct page *page,
2975 void *head, void *tail, int cnt,
2976 unsigned long addr)
2977{
Alexander Potapenko80a92012016-07-28 15:49:07 -07002978 /*
Andrey Konovalovc3895392018-04-10 16:30:31 -07002979 * With KASAN enabled slab_free_freelist_hook modifies the freelist
2980 * to remove objects, whose reuse must be delayed.
Alexander Potapenko80a92012016-07-28 15:49:07 -07002981 */
Andrey Konovalovc3895392018-04-10 16:30:31 -07002982 if (slab_free_freelist_hook(s, &head, &tail))
2983 do_slab_free(s, page, head, tail, cnt, addr);
Alexander Potapenko80a92012016-07-28 15:49:07 -07002984}
2985
Andrey Konovalov2bd926b2018-12-28 00:29:53 -08002986#ifdef CONFIG_KASAN_GENERIC
Alexander Potapenko80a92012016-07-28 15:49:07 -07002987void ___cache_free(struct kmem_cache *cache, void *x, unsigned long addr)
2988{
2989 do_slab_free(cache, virt_to_head_page(x), x, NULL, 1, addr);
2990}
2991#endif
2992
Christoph Lameter81819f02007-05-06 14:49:36 -07002993void kmem_cache_free(struct kmem_cache *s, void *x)
2994{
Glauber Costab9ce5ef2012-12-18 14:22:46 -08002995 s = cache_from_obj(s, x);
2996 if (!s)
Christoph Lameter79576102012-09-04 23:06:14 +00002997 return;
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08002998 slab_free(s, virt_to_head_page(x), x, NULL, 1, _RET_IP_);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002999 trace_kmem_cache_free(_RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07003000}
3001EXPORT_SYMBOL(kmem_cache_free);
3002
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003003struct detached_freelist {
3004 struct page *page;
3005 void *tail;
3006 void *freelist;
3007 int cnt;
Jesper Dangaard Brouer376bf122016-03-15 14:53:32 -07003008 struct kmem_cache *s;
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003009};
3010
3011/*
3012 * This function progressively scans the array with free objects (with
3013 * a limited look ahead) and extract objects belonging to the same
3014 * page. It builds a detached freelist directly within the given
3015 * page/objects. This can happen without any need for
3016 * synchronization, because the objects are owned by running process.
3017 * The freelist is build up as a single linked list in the objects.
3018 * The idea is, that this detached freelist can then be bulk
3019 * transferred to the real freelist(s), but only requiring a single
3020 * synchronization primitive. Look ahead in the array is limited due
3021 * to performance reasons.
3022 */
Jesper Dangaard Brouer376bf122016-03-15 14:53:32 -07003023static inline
3024int build_detached_freelist(struct kmem_cache *s, size_t size,
3025 void **p, struct detached_freelist *df)
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003026{
3027 size_t first_skipped_index = 0;
3028 int lookahead = 3;
3029 void *object;
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -07003030 struct page *page;
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003031
3032 /* Always re-init detached_freelist */
3033 df->page = NULL;
3034
3035 do {
3036 object = p[--size];
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -07003037 /* Do we need !ZERO_OR_NULL_PTR(object) here? (for kfree) */
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003038 } while (!object && size);
3039
3040 if (!object)
3041 return 0;
3042
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -07003043 page = virt_to_head_page(object);
3044 if (!s) {
3045 /* Handle kalloc'ed objects */
3046 if (unlikely(!PageSlab(page))) {
3047 BUG_ON(!PageCompound(page));
3048 kfree_hook(object);
Vladimir Davydov49491482016-07-26 15:24:24 -07003049 __free_pages(page, compound_order(page));
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -07003050 p[size] = NULL; /* mark object processed */
3051 return size;
3052 }
3053 /* Derive kmem_cache from object */
3054 df->s = page->slab_cache;
3055 } else {
3056 df->s = cache_from_obj(s, object); /* Support for memcg */
3057 }
Jesper Dangaard Brouer376bf122016-03-15 14:53:32 -07003058
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003059 /* Start new detached freelist */
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -07003060 df->page = page;
Jesper Dangaard Brouer376bf122016-03-15 14:53:32 -07003061 set_freepointer(df->s, object, NULL);
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003062 df->tail = object;
3063 df->freelist = object;
3064 p[size] = NULL; /* mark object processed */
3065 df->cnt = 1;
3066
3067 while (size) {
3068 object = p[--size];
3069 if (!object)
3070 continue; /* Skip processed objects */
3071
3072 /* df->page is always set at this point */
3073 if (df->page == virt_to_head_page(object)) {
3074 /* Opportunity build freelist */
Jesper Dangaard Brouer376bf122016-03-15 14:53:32 -07003075 set_freepointer(df->s, object, df->freelist);
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003076 df->freelist = object;
3077 df->cnt++;
3078 p[size] = NULL; /* mark object processed */
3079
3080 continue;
3081 }
3082
3083 /* Limit look ahead search */
3084 if (!--lookahead)
3085 break;
3086
3087 if (!first_skipped_index)
3088 first_skipped_index = size + 1;
3089 }
3090
3091 return first_skipped_index;
3092}
3093
Jesper Dangaard Brouer994eb762015-09-04 15:45:37 -07003094/* Note that interrupts must be enabled when calling this function. */
Jesper Dangaard Brouer376bf122016-03-15 14:53:32 -07003095void kmem_cache_free_bulk(struct kmem_cache *s, size_t size, void **p)
Christoph Lameter484748f2015-09-04 15:45:34 -07003096{
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003097 if (WARN_ON(!size))
3098 return;
Jesper Dangaard Brouerfbd02632015-09-04 15:45:43 -07003099
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003100 do {
3101 struct detached_freelist df;
Jesper Dangaard Brouerfbd02632015-09-04 15:45:43 -07003102
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003103 size = build_detached_freelist(s, size, p, &df);
Arnd Bergmann84582c82016-12-12 16:41:35 -08003104 if (!df.page)
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003105 continue;
Jesper Dangaard Brouerfbd02632015-09-04 15:45:43 -07003106
Jesper Dangaard Brouer376bf122016-03-15 14:53:32 -07003107 slab_free(df.s, df.page, df.freelist, df.tail, df.cnt,_RET_IP_);
Jesper Dangaard Brouerd0ecd892015-11-20 15:57:49 -08003108 } while (likely(size));
Christoph Lameter484748f2015-09-04 15:45:34 -07003109}
3110EXPORT_SYMBOL(kmem_cache_free_bulk);
3111
Jesper Dangaard Brouer994eb762015-09-04 15:45:37 -07003112/* Note that interrupts must be enabled when calling this function. */
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -08003113int kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t size,
3114 void **p)
Christoph Lameter484748f2015-09-04 15:45:34 -07003115{
Jesper Dangaard Brouer994eb762015-09-04 15:45:37 -07003116 struct kmem_cache_cpu *c;
3117 int i;
3118
Jesper Dangaard Brouer03ec0ed2015-11-20 15:57:52 -08003119 /* memcg and kmem_cache debug support */
3120 s = slab_pre_alloc_hook(s, flags);
3121 if (unlikely(!s))
3122 return false;
Jesper Dangaard Brouer994eb762015-09-04 15:45:37 -07003123 /*
3124 * Drain objects in the per cpu slab, while disabling local
3125 * IRQs, which protects against PREEMPT and interrupts
3126 * handlers invoking normal fastpath.
3127 */
3128 local_irq_disable();
3129 c = this_cpu_ptr(s->cpu_slab);
3130
3131 for (i = 0; i < size; i++) {
3132 void *object = c->freelist;
3133
Jesper Dangaard Brouerebe909e2015-09-04 15:45:40 -07003134 if (unlikely(!object)) {
Jesper Dangaard Brouerebe909e2015-09-04 15:45:40 -07003135 /*
3136 * Invoking slow path likely have side-effect
3137 * of re-populating per CPU c->freelist
3138 */
Christoph Lameter87098372015-11-20 15:57:38 -08003139 p[i] = ___slab_alloc(s, flags, NUMA_NO_NODE,
Jesper Dangaard Brouerebe909e2015-09-04 15:45:40 -07003140 _RET_IP_, c);
Christoph Lameter87098372015-11-20 15:57:38 -08003141 if (unlikely(!p[i]))
3142 goto error;
3143
Jesper Dangaard Brouerebe909e2015-09-04 15:45:40 -07003144 c = this_cpu_ptr(s->cpu_slab);
3145 continue; /* goto for-loop */
3146 }
Jesper Dangaard Brouer994eb762015-09-04 15:45:37 -07003147 c->freelist = get_freepointer(s, object);
3148 p[i] = object;
3149 }
3150 c->tid = next_tid(c->tid);
3151 local_irq_enable();
3152
3153 /* Clear memory outside IRQ disabled fastpath loop */
3154 if (unlikely(flags & __GFP_ZERO)) {
3155 int j;
3156
3157 for (j = 0; j < i; j++)
3158 memset(p[j], 0, s->object_size);
3159 }
3160
Jesper Dangaard Brouer03ec0ed2015-11-20 15:57:52 -08003161 /* memcg and kmem_cache debug support */
3162 slab_post_alloc_hook(s, flags, size, p);
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -08003163 return i;
Christoph Lameter87098372015-11-20 15:57:38 -08003164error:
Christoph Lameter87098372015-11-20 15:57:38 -08003165 local_irq_enable();
Jesper Dangaard Brouer03ec0ed2015-11-20 15:57:52 -08003166 slab_post_alloc_hook(s, flags, i, p);
3167 __kmem_cache_free_bulk(s, i, p);
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -08003168 return 0;
Christoph Lameter484748f2015-09-04 15:45:34 -07003169}
3170EXPORT_SYMBOL(kmem_cache_alloc_bulk);
3171
3172
Christoph Lameter81819f02007-05-06 14:49:36 -07003173/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003174 * Object placement in a slab is made very easy because we always start at
3175 * offset 0. If we tune the size of the object to the alignment then we can
3176 * get the required alignment by putting one properly sized object after
3177 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07003178 *
3179 * Notice that the allocation order determines the sizes of the per cpu
3180 * caches. Each processor has always one slab available for allocations.
3181 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07003182 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07003183 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07003184 */
3185
3186/*
3187 * Mininum / Maximum order of slab pages. This influences locking overhead
3188 * and slab fragmentation. A higher order reduces the number of partial slabs
3189 * and increases the number of allocations possible without having to
3190 * take the list_lock.
3191 */
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003192static unsigned int slub_min_order;
3193static unsigned int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
3194static unsigned int slub_min_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07003195
3196/*
Christoph Lameter81819f02007-05-06 14:49:36 -07003197 * Calculate the order of allocation given an slab object size.
3198 *
Christoph Lameter672bba32007-05-09 02:32:39 -07003199 * The order of allocation has significant impact on performance and other
3200 * system components. Generally order 0 allocations should be preferred since
3201 * order 0 does not cause fragmentation in the page allocator. Larger objects
3202 * be problematic to put into order 0 slabs because there may be too much
Christoph Lameterc124f5b2008-04-14 19:13:29 +03003203 * unused space left. We go to a higher order if more than 1/16th of the slab
Christoph Lameter672bba32007-05-09 02:32:39 -07003204 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07003205 *
Christoph Lameter672bba32007-05-09 02:32:39 -07003206 * In order to reach satisfactory performance we must ensure that a minimum
3207 * number of objects is in one slab. Otherwise we may generate too much
3208 * activity on the partial lists which requires taking the list_lock. This is
3209 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07003210 *
Christoph Lameter672bba32007-05-09 02:32:39 -07003211 * slub_max_order specifies the order where we begin to stop considering the
3212 * number of objects in a slab as critical. If we reach slub_max_order then
3213 * we try to keep the page order as low as possible. So we accept more waste
3214 * of space in favor of a small page order.
3215 *
3216 * Higher order allocations also allow the placement of more objects in a
3217 * slab and thereby reduce object handling overhead. If the user has
3218 * requested a higher mininum order then we start with that one instead of
3219 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07003220 */
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003221static inline unsigned int slab_order(unsigned int size,
3222 unsigned int min_objects, unsigned int max_order,
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003223 unsigned int fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07003224{
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003225 unsigned int min_order = slub_min_order;
3226 unsigned int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07003227
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003228 if (order_objects(min_order, size) > MAX_OBJS_PER_PAGE)
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +04003229 return get_order(size * MAX_OBJS_PER_PAGE) - 1;
Christoph Lameter39b26462008-04-14 19:11:30 +03003230
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003231 for (order = max(min_order, (unsigned int)get_order(min_objects * size));
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003232 order <= max_order; order++) {
3233
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003234 unsigned int slab_size = (unsigned int)PAGE_SIZE << order;
3235 unsigned int rem;
Christoph Lameter81819f02007-05-06 14:49:36 -07003236
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003237 rem = slab_size % size;
Christoph Lameter81819f02007-05-06 14:49:36 -07003238
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003239 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07003240 break;
Christoph Lameter81819f02007-05-06 14:49:36 -07003241 }
Christoph Lameter672bba32007-05-09 02:32:39 -07003242
Christoph Lameter81819f02007-05-06 14:49:36 -07003243 return order;
3244}
3245
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003246static inline int calculate_order(unsigned int size)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003247{
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003248 unsigned int order;
3249 unsigned int min_objects;
3250 unsigned int max_objects;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003251
3252 /*
3253 * Attempt to find best configuration for a slab. This
3254 * works by first attempting to generate a layout with
3255 * the best configuration and backing off gradually.
3256 *
Wei Yang422ff4d2015-11-05 18:45:46 -08003257 * First we increase the acceptable waste in a slab. Then
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003258 * we reduce the minimum objects required in a slab.
3259 */
3260 min_objects = slub_min_objects;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03003261 if (!min_objects)
3262 min_objects = 4 * (fls(nr_cpu_ids) + 1);
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003263 max_objects = order_objects(slub_max_order, size);
Zhang Yanmine8120ff2009-02-12 18:00:17 +02003264 min_objects = min(min_objects, max_objects);
3265
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003266 while (min_objects > 1) {
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003267 unsigned int fraction;
3268
Christoph Lameterc124f5b2008-04-14 19:13:29 +03003269 fraction = 16;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003270 while (fraction >= 4) {
3271 order = slab_order(size, min_objects,
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003272 slub_max_order, fraction);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003273 if (order <= slub_max_order)
3274 return order;
3275 fraction /= 2;
3276 }
Amerigo Wang5086c389c2009-08-19 21:44:13 +03003277 min_objects--;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003278 }
3279
3280 /*
3281 * We were unable to place multiple objects in a slab. Now
3282 * lets see if we can place a single object there.
3283 */
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003284 order = slab_order(size, 1, slub_max_order, 1);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003285 if (order <= slub_max_order)
3286 return order;
3287
3288 /*
3289 * Doh this slab cannot be placed using slub_max_order.
3290 */
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003291 order = slab_order(size, 1, MAX_ORDER, 1);
David Rientjes818cf592009-04-23 09:58:22 +03003292 if (order < MAX_ORDER)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07003293 return order;
3294 return -ENOSYS;
3295}
3296
Pekka Enberg5595cff2008-08-05 09:28:47 +03003297static void
Joonsoo Kim40534972012-05-11 00:50:47 +09003298init_kmem_cache_node(struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07003299{
3300 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003301 spin_lock_init(&n->list_lock);
3302 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07003303#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03003304 atomic_long_set(&n->nr_slabs, 0);
Salman Qazi02b71b72008-09-11 12:25:41 -07003305 atomic_long_set(&n->total_objects, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07003306 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07003307#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003308}
3309
Christoph Lameter55136592010-08-20 12:37:13 -05003310static inline int alloc_kmem_cache_cpus(struct kmem_cache *s)
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003311{
Christoph Lameter6c182dc2010-08-20 12:37:14 -05003312 BUILD_BUG_ON(PERCPU_DYNAMIC_EARLY_SIZE <
Christoph Lameter95a05b42013-01-10 19:14:19 +00003313 KMALLOC_SHIFT_HIGH * sizeof(struct kmem_cache_cpu));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003314
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06003315 /*
Chris Metcalfd4d84fe2011-06-02 10:19:41 -04003316 * Must align to double word boundary for the double cmpxchg
3317 * instructions to work; see __pcpu_double_call_return_bool().
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06003318 */
Chris Metcalfd4d84fe2011-06-02 10:19:41 -04003319 s->cpu_slab = __alloc_percpu(sizeof(struct kmem_cache_cpu),
3320 2 * sizeof(void *));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003321
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06003322 if (!s->cpu_slab)
3323 return 0;
3324
3325 init_kmem_cache_cpus(s);
3326
3327 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003328}
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003329
Christoph Lameter51df1142010-08-20 12:37:15 -05003330static struct kmem_cache *kmem_cache_node;
3331
Christoph Lameter81819f02007-05-06 14:49:36 -07003332/*
3333 * No kmalloc_node yet so do it by hand. We know that this is the first
3334 * slab on the node for this slabcache. There are no concurrent accesses
3335 * possible.
3336 *
Zhi Yong Wu721ae222013-11-08 20:47:37 +08003337 * Note that this function only works on the kmem_cache_node
3338 * when allocating for the kmem_cache_node. This is used for bootstrapping
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003339 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07003340 */
Christoph Lameter55136592010-08-20 12:37:13 -05003341static void early_kmem_cache_node_alloc(int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07003342{
3343 struct page *page;
3344 struct kmem_cache_node *n;
3345
Christoph Lameter51df1142010-08-20 12:37:15 -05003346 BUG_ON(kmem_cache_node->size < sizeof(struct kmem_cache_node));
Christoph Lameter81819f02007-05-06 14:49:36 -07003347
Christoph Lameter51df1142010-08-20 12:37:15 -05003348 page = new_slab(kmem_cache_node, GFP_NOWAIT, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07003349
3350 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07003351 if (page_to_nid(page) != node) {
Fabian Frederickf9f58282014-06-04 16:06:34 -07003352 pr_err("SLUB: Unable to allocate memory from node %d\n", node);
3353 pr_err("SLUB: Allocating a useless per node structure in order to be able to continue\n");
Christoph Lametera2f92ee2007-08-22 14:01:57 -07003354 }
3355
Christoph Lameter81819f02007-05-06 14:49:36 -07003356 n = page->freelist;
3357 BUG_ON(!n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07003358#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterf7cb1932010-09-29 07:15:01 -05003359 init_object(kmem_cache_node, n, SLUB_RED_ACTIVE);
Christoph Lameter51df1142010-08-20 12:37:15 -05003360 init_tracking(kmem_cache_node, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07003361#endif
Andrey Konovalov12b22382018-12-28 00:29:41 -08003362 n = kasan_kmalloc(kmem_cache_node, n, sizeof(struct kmem_cache_node),
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003363 GFP_KERNEL);
Andrey Konovalov12b22382018-12-28 00:29:41 -08003364 page->freelist = get_freepointer(kmem_cache_node, n);
3365 page->inuse = 1;
3366 page->frozen = 0;
3367 kmem_cache_node->node[node] = n;
Joonsoo Kim40534972012-05-11 00:50:47 +09003368 init_kmem_cache_node(n);
Christoph Lameter51df1142010-08-20 12:37:15 -05003369 inc_slabs_node(kmem_cache_node, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08003370
Dave Hansen67b6c902014-01-24 07:20:23 -08003371 /*
Steven Rostedt1e4dd942014-02-10 14:25:46 -08003372 * No locks need to be taken here as it has just been
3373 * initialized and there is no concurrent access.
Dave Hansen67b6c902014-01-24 07:20:23 -08003374 */
Steven Rostedt1e4dd942014-02-10 14:25:46 -08003375 __add_partial(n, page, DEACTIVATE_TO_HEAD);
Christoph Lameter81819f02007-05-06 14:49:36 -07003376}
3377
3378static void free_kmem_cache_nodes(struct kmem_cache *s)
3379{
3380 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003381 struct kmem_cache_node *n;
Christoph Lameter81819f02007-05-06 14:49:36 -07003382
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003383 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003384 s->node[node] = NULL;
Alexander Potapenkoea37df52017-09-06 16:19:15 -07003385 kmem_cache_free(kmem_cache_node, n);
Christoph Lameter81819f02007-05-06 14:49:36 -07003386 }
3387}
3388
Dmitry Safonov52b4b952016-02-17 13:11:37 -08003389void __kmem_cache_release(struct kmem_cache *s)
3390{
Thomas Garnier210e7a42016-07-26 15:21:59 -07003391 cache_random_seq_destroy(s);
Dmitry Safonov52b4b952016-02-17 13:11:37 -08003392 free_percpu(s->cpu_slab);
3393 free_kmem_cache_nodes(s);
3394}
3395
Christoph Lameter55136592010-08-20 12:37:13 -05003396static int init_kmem_cache_nodes(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07003397{
3398 int node;
Christoph Lameter81819f02007-05-06 14:49:36 -07003399
Christoph Lameterf64dc582007-10-16 01:25:33 -07003400 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003401 struct kmem_cache_node *n;
3402
Alexander Duyck73367bd2010-05-21 14:41:35 -07003403 if (slab_state == DOWN) {
Christoph Lameter55136592010-08-20 12:37:13 -05003404 early_kmem_cache_node_alloc(node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07003405 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07003406 }
Christoph Lameter51df1142010-08-20 12:37:15 -05003407 n = kmem_cache_alloc_node(kmem_cache_node,
Christoph Lameter55136592010-08-20 12:37:13 -05003408 GFP_KERNEL, node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07003409
3410 if (!n) {
3411 free_kmem_cache_nodes(s);
3412 return 0;
3413 }
3414
Joonsoo Kim40534972012-05-11 00:50:47 +09003415 init_kmem_cache_node(n);
Alexander Potapenkoea37df52017-09-06 16:19:15 -07003416 s->node[node] = n;
Christoph Lameter81819f02007-05-06 14:49:36 -07003417 }
3418 return 1;
3419}
Christoph Lameter81819f02007-05-06 14:49:36 -07003420
David Rientjesc0bdb232009-02-25 09:16:35 +02003421static void set_min_partial(struct kmem_cache *s, unsigned long min)
David Rientjes3b89d7d2009-02-22 17:40:07 -08003422{
3423 if (min < MIN_PARTIAL)
3424 min = MIN_PARTIAL;
3425 else if (min > MAX_PARTIAL)
3426 min = MAX_PARTIAL;
3427 s->min_partial = min;
3428}
3429
Wei Yange6d0e1d2017-07-06 15:36:34 -07003430static void set_cpu_partial(struct kmem_cache *s)
3431{
3432#ifdef CONFIG_SLUB_CPU_PARTIAL
3433 /*
3434 * cpu_partial determined the maximum number of objects kept in the
3435 * per cpu partial lists of a processor.
3436 *
3437 * Per cpu partial lists mainly contain slabs that just have one
3438 * object freed. If they are used for allocation then they can be
3439 * filled up again with minimal effort. The slab will never hit the
3440 * per node partial lists and therefore no locking will be required.
3441 *
3442 * This setting also determines
3443 *
3444 * A) The number of objects from per cpu partial slabs dumped to the
3445 * per node list when we reach the limit.
3446 * B) The number of objects in cpu partial slabs to extract from the
3447 * per node list when we run out of per cpu objects. We only fetch
3448 * 50% to keep some capacity around for frees.
3449 */
3450 if (!kmem_cache_has_cpu_partial(s))
3451 s->cpu_partial = 0;
3452 else if (s->size >= PAGE_SIZE)
3453 s->cpu_partial = 2;
3454 else if (s->size >= 1024)
3455 s->cpu_partial = 6;
3456 else if (s->size >= 256)
3457 s->cpu_partial = 13;
3458 else
3459 s->cpu_partial = 30;
3460#endif
3461}
3462
Christoph Lameter81819f02007-05-06 14:49:36 -07003463/*
3464 * calculate_sizes() determines the order and the distribution of data within
3465 * a slab object.
3466 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03003467static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07003468{
Alexey Dobriyand50112e2017-11-15 17:32:18 -08003469 slab_flags_t flags = s->flags;
Alexey Dobriyanbe4a7982018-04-05 16:21:28 -07003470 unsigned int size = s->object_size;
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003471 unsigned int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07003472
3473 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08003474 * Round up object size to the next word boundary. We can only
3475 * place the free pointer at word boundaries and this determines
3476 * the possible location of the free pointer.
3477 */
3478 size = ALIGN(size, sizeof(void *));
3479
3480#ifdef CONFIG_SLUB_DEBUG
3481 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07003482 * Determine if we can poison the object itself. If the user of
3483 * the slab may touch the object after free or before allocation
3484 * then we should never poison the object itself.
3485 */
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -08003486 if ((flags & SLAB_POISON) && !(flags & SLAB_TYPESAFE_BY_RCU) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07003487 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003488 s->flags |= __OBJECT_POISON;
3489 else
3490 s->flags &= ~__OBJECT_POISON;
3491
Christoph Lameter81819f02007-05-06 14:49:36 -07003492
3493 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003494 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07003495 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07003496 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07003497 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003498 if ((flags & SLAB_RED_ZONE) && size == s->object_size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003499 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07003500#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003501
3502 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003503 * With that we have determined the number of bytes in actual use
3504 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07003505 */
3506 s->inuse = size;
3507
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -08003508 if (((flags & (SLAB_TYPESAFE_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07003509 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003510 /*
3511 * Relocate free pointer after the object if it is not
3512 * permitted to overwrite the first word of the object on
3513 * kmem_cache_free.
3514 *
3515 * This is the case if we do RCU, have a constructor or
3516 * destructor or are poisoning the objects.
3517 */
3518 s->offset = size;
3519 size += sizeof(void *);
3520 }
3521
Christoph Lameterc12b3c62007-05-23 13:57:31 -07003522#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07003523 if (flags & SLAB_STORE_USER)
3524 /*
3525 * Need to store information about allocs and frees after
3526 * the object.
3527 */
3528 size += 2 * sizeof(struct track);
Alexander Potapenko80a92012016-07-28 15:49:07 -07003529#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003530
Alexander Potapenko80a92012016-07-28 15:49:07 -07003531 kasan_cache_create(s, &size, &s->flags);
3532#ifdef CONFIG_SLUB_DEBUG
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -07003533 if (flags & SLAB_RED_ZONE) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003534 /*
3535 * Add some empty padding so that we can catch
3536 * overwrites from earlier objects rather than let
3537 * tracking information or the free pointer be
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +01003538 * corrupted if a user writes before the start
Christoph Lameter81819f02007-05-06 14:49:36 -07003539 * of the object.
3540 */
3541 size += sizeof(void *);
Joonsoo Kimd86bd1b2016-03-15 14:55:12 -07003542
3543 s->red_left_pad = sizeof(void *);
3544 s->red_left_pad = ALIGN(s->red_left_pad, s->align);
3545 size += s->red_left_pad;
3546 }
Christoph Lameter41ecc552007-05-09 02:32:44 -07003547#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07003548
Christoph Lameter81819f02007-05-06 14:49:36 -07003549 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07003550 * SLUB stores one object immediately after another beginning from
3551 * offset 0. In order to align the objects we have to simply size
3552 * each object to conform to the alignment.
3553 */
Christoph Lameter45906852012-11-28 16:23:16 +00003554 size = ALIGN(size, s->align);
Christoph Lameter81819f02007-05-06 14:49:36 -07003555 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003556 if (forced_order >= 0)
3557 order = forced_order;
3558 else
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003559 order = calculate_order(size);
Christoph Lameter81819f02007-05-06 14:49:36 -07003560
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003561 if ((int)order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07003562 return 0;
3563
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003564 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03003565 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003566 s->allocflags |= __GFP_COMP;
3567
3568 if (s->flags & SLAB_CACHE_DMA)
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003569 s->allocflags |= GFP_DMA;
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003570
Nicolas Boichat6d6ea1e2019-03-28 20:43:42 -07003571 if (s->flags & SLAB_CACHE_DMA32)
3572 s->allocflags |= GFP_DMA32;
3573
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003574 if (s->flags & SLAB_RECLAIM_ACCOUNT)
3575 s->allocflags |= __GFP_RECLAIMABLE;
3576
Christoph Lameter81819f02007-05-06 14:49:36 -07003577 /*
3578 * Determine the number of objects per slab
3579 */
Matthew Wilcox9736d2a2018-06-07 17:09:10 -07003580 s->oo = oo_make(order, size);
3581 s->min = oo_make(get_order(size), size);
Christoph Lameter205ab992008-04-14 19:11:40 +03003582 if (oo_objects(s->oo) > oo_objects(s->max))
3583 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07003584
Christoph Lameter834f3d12008-04-14 19:11:31 +03003585 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07003586}
3587
Alexey Dobriyand50112e2017-11-15 17:32:18 -08003588static int kmem_cache_open(struct kmem_cache *s, slab_flags_t flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003589{
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00003590 s->flags = kmem_cache_flags(s->size, flags, s->name, s->ctor);
Kees Cook2482ddec2017-09-06 16:19:18 -07003591#ifdef CONFIG_SLAB_FREELIST_HARDENED
3592 s->random = get_random_long();
3593#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003594
Christoph Lameter06b285d2008-04-14 19:11:41 +03003595 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07003596 goto error;
David Rientjes3de47212009-07-27 18:30:35 -07003597 if (disable_higher_order_debug) {
3598 /*
3599 * Disable debugging flags that store metadata if the min slab
3600 * order increased.
3601 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003602 if (get_order(s->size) > get_order(s->object_size)) {
David Rientjes3de47212009-07-27 18:30:35 -07003603 s->flags &= ~DEBUG_METADATA_FLAGS;
3604 s->offset = 0;
3605 if (!calculate_sizes(s, -1))
3606 goto error;
3607 }
3608 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003609
Heiko Carstens25654092012-01-12 17:17:33 -08003610#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
3611 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Laura Abbott149daaf2016-03-15 14:55:09 -07003612 if (system_has_cmpxchg_double() && (s->flags & SLAB_NO_CMPXCHG) == 0)
Christoph Lameterb789ef52011-06-01 12:25:49 -05003613 /* Enable fast mode */
3614 s->flags |= __CMPXCHG_DOUBLE;
3615#endif
3616
David Rientjes3b89d7d2009-02-22 17:40:07 -08003617 /*
3618 * The larger the object size is, the more pages we want on the partial
3619 * list to avoid pounding the page allocator excessively.
3620 */
Christoph Lameter49e22582011-08-09 16:12:27 -05003621 set_min_partial(s, ilog2(s->size) / 2);
3622
Wei Yange6d0e1d2017-07-06 15:36:34 -07003623 set_cpu_partial(s);
Christoph Lameter49e22582011-08-09 16:12:27 -05003624
Christoph Lameter81819f02007-05-06 14:49:36 -07003625#ifdef CONFIG_NUMA
Christoph Lametere2cb96b2008-08-19 08:51:22 -05003626 s->remote_node_defrag_ratio = 1000;
Christoph Lameter81819f02007-05-06 14:49:36 -07003627#endif
Thomas Garnier210e7a42016-07-26 15:21:59 -07003628
3629 /* Initialize the pre-computed randomized freelist if slab is up */
3630 if (slab_state >= UP) {
3631 if (init_cache_random_seq(s))
3632 goto error;
3633 }
3634
Christoph Lameter55136592010-08-20 12:37:13 -05003635 if (!init_kmem_cache_nodes(s))
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003636 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07003637
Christoph Lameter55136592010-08-20 12:37:13 -05003638 if (alloc_kmem_cache_cpus(s))
Christoph Lameter278b1bb2012-09-05 00:20:34 +00003639 return 0;
Christoph Lameterff120592009-12-18 16:26:22 -06003640
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003641 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003642error:
Christoph Lameter278b1bb2012-09-05 00:20:34 +00003643 return -EINVAL;
Christoph Lameter81819f02007-05-06 14:49:36 -07003644}
Christoph Lameter81819f02007-05-06 14:49:36 -07003645
Christoph Lameter33b12c32008-04-25 12:22:43 -07003646static void list_slab_objects(struct kmem_cache *s, struct page *page,
3647 const char *text)
Christoph Lameter81819f02007-05-06 14:49:36 -07003648{
Christoph Lameter33b12c32008-04-25 12:22:43 -07003649#ifdef CONFIG_SLUB_DEBUG
3650 void *addr = page_address(page);
3651 void *p;
Andy Shevchenko0684e652018-10-26 15:03:06 -07003652 unsigned long *map = bitmap_zalloc(page->objects, GFP_ATOMIC);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003653 if (!map)
3654 return;
Christoph Lameter945cf2b2012-09-04 23:18:33 +00003655 slab_err(s, page, text, s->name);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003656 slab_lock(page);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003657
Christoph Lameter5f80b132011-04-15 14:48:13 -05003658 get_map(s, page, map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003659 for_each_object(p, s, addr, page->objects) {
3660
3661 if (!test_bit(slab_index(p, s, addr), map)) {
Fabian Frederickf9f58282014-06-04 16:06:34 -07003662 pr_err("INFO: Object 0x%p @offset=%tu\n", p, p - addr);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003663 print_tracking(s, p);
3664 }
3665 }
3666 slab_unlock(page);
Andy Shevchenko0684e652018-10-26 15:03:06 -07003667 bitmap_free(map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003668#endif
3669}
3670
Christoph Lameter81819f02007-05-06 14:49:36 -07003671/*
Christoph Lameter599870b2008-04-23 12:36:52 -07003672 * Attempt to free all partial slabs on a node.
Dmitry Safonov52b4b952016-02-17 13:11:37 -08003673 * This is called from __kmem_cache_shutdown(). We must take list_lock
3674 * because sysfs file might still access partial list after the shutdowning.
Christoph Lameter81819f02007-05-06 14:49:36 -07003675 */
Christoph Lameter599870b2008-04-23 12:36:52 -07003676static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07003677{
Chris Wilson60398922016-08-10 16:27:58 -07003678 LIST_HEAD(discard);
Christoph Lameter81819f02007-05-06 14:49:36 -07003679 struct page *page, *h;
3680
Dmitry Safonov52b4b952016-02-17 13:11:37 -08003681 BUG_ON(irqs_disabled());
3682 spin_lock_irq(&n->list_lock);
Tobin C. Harding916ac052019-05-13 17:16:12 -07003683 list_for_each_entry_safe(page, h, &n->partial, slab_list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003684 if (!page->inuse) {
Dmitry Safonov52b4b952016-02-17 13:11:37 -08003685 remove_partial(n, page);
Tobin C. Harding916ac052019-05-13 17:16:12 -07003686 list_add(&page->slab_list, &discard);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003687 } else {
3688 list_slab_objects(s, page,
Dmitry Safonov52b4b952016-02-17 13:11:37 -08003689 "Objects remaining in %s on __kmem_cache_shutdown()");
Christoph Lameter599870b2008-04-23 12:36:52 -07003690 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07003691 }
Dmitry Safonov52b4b952016-02-17 13:11:37 -08003692 spin_unlock_irq(&n->list_lock);
Chris Wilson60398922016-08-10 16:27:58 -07003693
Tobin C. Harding916ac052019-05-13 17:16:12 -07003694 list_for_each_entry_safe(page, h, &discard, slab_list)
Chris Wilson60398922016-08-10 16:27:58 -07003695 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07003696}
3697
Shakeel Buttf9e13c02018-04-05 16:21:57 -07003698bool __kmem_cache_empty(struct kmem_cache *s)
3699{
3700 int node;
3701 struct kmem_cache_node *n;
3702
3703 for_each_kmem_cache_node(s, node, n)
3704 if (n->nr_partial || slabs_node(s, node))
3705 return false;
3706 return true;
3707}
3708
Christoph Lameter81819f02007-05-06 14:49:36 -07003709/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003710 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07003711 */
Dmitry Safonov52b4b952016-02-17 13:11:37 -08003712int __kmem_cache_shutdown(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07003713{
3714 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003715 struct kmem_cache_node *n;
Christoph Lameter81819f02007-05-06 14:49:36 -07003716
3717 flush_all(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003718 /* Attempt to free all objects */
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003719 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter599870b2008-04-23 12:36:52 -07003720 free_partial(s, n);
3721 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07003722 return 1;
3723 }
Tejun Heobf5eb3d2017-02-22 15:41:11 -08003724 sysfs_slab_remove(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003725 return 0;
3726}
3727
Christoph Lameter81819f02007-05-06 14:49:36 -07003728/********************************************************************
3729 * Kmalloc subsystem
3730 *******************************************************************/
3731
Christoph Lameter81819f02007-05-06 14:49:36 -07003732static int __init setup_slub_min_order(char *str)
3733{
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003734 get_option(&str, (int *)&slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003735
3736 return 1;
3737}
3738
3739__setup("slub_min_order=", setup_slub_min_order);
3740
3741static int __init setup_slub_max_order(char *str)
3742{
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003743 get_option(&str, (int *)&slub_max_order);
3744 slub_max_order = min(slub_max_order, (unsigned int)MAX_ORDER - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07003745
3746 return 1;
3747}
3748
3749__setup("slub_max_order=", setup_slub_max_order);
3750
3751static int __init setup_slub_min_objects(char *str)
3752{
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07003753 get_option(&str, (int *)&slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07003754
3755 return 1;
3756}
3757
3758__setup("slub_min_objects=", setup_slub_min_objects);
3759
Christoph Lameter81819f02007-05-06 14:49:36 -07003760void *__kmalloc(size_t size, gfp_t flags)
3761{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003762 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003763 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003764
Christoph Lameter95a05b42013-01-10 19:14:19 +00003765 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003766 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003767
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003768 s = kmalloc_slab(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003769
3770 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003771 return s;
3772
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003773 ret = slab_alloc(s, flags, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003774
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003775 trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003776
Andrey Konovalov01165232018-12-28 00:29:37 -08003777 ret = kasan_kmalloc(s, ret, size, flags);
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08003778
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003779 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003780}
3781EXPORT_SYMBOL(__kmalloc);
3782
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003783#ifdef CONFIG_NUMA
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003784static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
3785{
Vegard Nossumb1eeab62008-11-25 16:55:53 +01003786 struct page *page;
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003787 void *ptr = NULL;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003788
Levin, Alexander (Sasha Levin)75f296d2017-11-15 17:35:54 -08003789 flags |= __GFP_COMP;
Vladimir Davydov49491482016-07-26 15:24:24 -07003790 page = alloc_pages_node(node, flags, get_order(size));
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003791 if (page)
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003792 ptr = page_address(page);
3793
Andrey Konovalov01165232018-12-28 00:29:37 -08003794 return kmalloc_large_node_hook(ptr, size, flags);
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003795}
3796
Christoph Lameter81819f02007-05-06 14:49:36 -07003797void *__kmalloc_node(size_t size, gfp_t flags, int node)
3798{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003799 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003800 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003801
Christoph Lameter95a05b42013-01-10 19:14:19 +00003802 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE)) {
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003803 ret = kmalloc_large_node(size, flags, node);
3804
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003805 trace_kmalloc_node(_RET_IP_, ret,
3806 size, PAGE_SIZE << get_order(size),
3807 flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003808
3809 return ret;
3810 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003811
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003812 s = kmalloc_slab(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003813
3814 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003815 return s;
3816
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003817 ret = slab_alloc_node(s, flags, node, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003818
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003819 trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003820
Andrey Konovalov01165232018-12-28 00:29:37 -08003821 ret = kasan_kmalloc(s, ret, size, flags);
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08003822
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003823 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003824}
3825EXPORT_SYMBOL(__kmalloc_node);
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07003826#endif /* CONFIG_NUMA */
Christoph Lameter81819f02007-05-06 14:49:36 -07003827
Kees Cooked18adc2016-06-23 15:24:05 -07003828#ifdef CONFIG_HARDENED_USERCOPY
3829/*
Kees Cookafcc90f82018-01-10 15:17:01 -08003830 * Rejects incorrectly sized objects and objects that are to be copied
3831 * to/from userspace but do not fall entirely within the containing slab
3832 * cache's usercopy region.
Kees Cooked18adc2016-06-23 15:24:05 -07003833 *
3834 * Returns NULL if check passes, otherwise const char * to name of cache
3835 * to indicate an error.
3836 */
Kees Cookf4e6e282018-01-10 14:48:22 -08003837void __check_heap_object(const void *ptr, unsigned long n, struct page *page,
3838 bool to_user)
Kees Cooked18adc2016-06-23 15:24:05 -07003839{
3840 struct kmem_cache *s;
Alexey Dobriyan44065b22018-04-05 16:21:20 -07003841 unsigned int offset;
Kees Cooked18adc2016-06-23 15:24:05 -07003842 size_t object_size;
3843
Andrey Konovalov96fedce2019-01-08 15:23:15 -08003844 ptr = kasan_reset_tag(ptr);
3845
Kees Cooked18adc2016-06-23 15:24:05 -07003846 /* Find object and usable object size. */
3847 s = page->slab_cache;
Kees Cooked18adc2016-06-23 15:24:05 -07003848
3849 /* Reject impossible pointers. */
3850 if (ptr < page_address(page))
Kees Cookf4e6e282018-01-10 14:48:22 -08003851 usercopy_abort("SLUB object not in SLUB page?!", NULL,
3852 to_user, 0, n);
Kees Cooked18adc2016-06-23 15:24:05 -07003853
3854 /* Find offset within object. */
3855 offset = (ptr - page_address(page)) % s->size;
3856
3857 /* Adjust for redzone and reject if within the redzone. */
3858 if (kmem_cache_debug(s) && s->flags & SLAB_RED_ZONE) {
3859 if (offset < s->red_left_pad)
Kees Cookf4e6e282018-01-10 14:48:22 -08003860 usercopy_abort("SLUB object in left red zone",
3861 s->name, to_user, offset, n);
Kees Cooked18adc2016-06-23 15:24:05 -07003862 offset -= s->red_left_pad;
3863 }
3864
Kees Cookafcc90f82018-01-10 15:17:01 -08003865 /* Allow address range falling entirely within usercopy region. */
3866 if (offset >= s->useroffset &&
3867 offset - s->useroffset <= s->usersize &&
3868 n <= s->useroffset - offset + s->usersize)
Kees Cookf4e6e282018-01-10 14:48:22 -08003869 return;
Kees Cooked18adc2016-06-23 15:24:05 -07003870
Kees Cookafcc90f82018-01-10 15:17:01 -08003871 /*
3872 * If the copy is still within the allocated object, produce
3873 * a warning instead of rejecting the copy. This is intended
3874 * to be a temporary method to find any missing usercopy
3875 * whitelists.
3876 */
3877 object_size = slab_ksize(s);
Kees Cook2d891fb2017-11-30 13:04:32 -08003878 if (usercopy_fallback &&
3879 offset <= object_size && n <= object_size - offset) {
Kees Cookafcc90f82018-01-10 15:17:01 -08003880 usercopy_warn("SLUB object", s->name, to_user, offset, n);
3881 return;
3882 }
3883
Kees Cookf4e6e282018-01-10 14:48:22 -08003884 usercopy_abort("SLUB object", s->name, to_user, offset, n);
Kees Cooked18adc2016-06-23 15:24:05 -07003885}
3886#endif /* CONFIG_HARDENED_USERCOPY */
3887
Marco Elver10d1f8c2019-07-11 20:54:14 -07003888size_t __ksize(const void *object)
Christoph Lameter81819f02007-05-06 14:49:36 -07003889{
Christoph Lameter272c1d22007-06-08 13:46:49 -07003890 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07003891
Christoph Lameteref8b4522007-10-16 01:24:46 -07003892 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07003893 return 0;
3894
Vegard Nossum294a80a2007-12-04 23:45:30 -08003895 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08003896
Pekka Enberg76994412008-05-22 19:22:25 +03003897 if (unlikely(!PageSlab(page))) {
3898 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08003899 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03003900 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003901
Glauber Costa1b4f59e32012-10-22 18:05:36 +04003902 return slab_ksize(page->slab_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003903}
Marco Elver10d1f8c2019-07-11 20:54:14 -07003904EXPORT_SYMBOL(__ksize);
Christoph Lameter81819f02007-05-06 14:49:36 -07003905
3906void kfree(const void *x)
3907{
Christoph Lameter81819f02007-05-06 14:49:36 -07003908 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08003909 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003910
Pekka Enberg2121db72009-03-25 11:05:57 +02003911 trace_kfree(_RET_IP_, x);
3912
Satyam Sharma2408c552007-10-16 01:24:44 -07003913 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07003914 return;
3915
Christoph Lameterb49af682007-05-06 14:49:41 -07003916 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003917 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07003918 BUG_ON(!PageCompound(page));
Dmitry Vyukov47adccc2018-02-06 15:36:23 -08003919 kfree_hook(object);
Vladimir Davydov49491482016-07-26 15:24:24 -07003920 __free_pages(page, compound_order(page));
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003921 return;
3922 }
Jesper Dangaard Brouer81084652015-11-20 15:57:46 -08003923 slab_free(page->slab_cache, page, object, NULL, 1, _RET_IP_);
Christoph Lameter81819f02007-05-06 14:49:36 -07003924}
3925EXPORT_SYMBOL(kfree);
3926
Vladimir Davydov832f37f2015-02-12 14:59:41 -08003927#define SHRINK_PROMOTE_MAX 32
3928
Christoph Lameter2086d262007-05-06 14:49:46 -07003929/*
Vladimir Davydov832f37f2015-02-12 14:59:41 -08003930 * kmem_cache_shrink discards empty slabs and promotes the slabs filled
3931 * up most to the head of the partial lists. New allocations will then
3932 * fill those up and thus they can be removed from the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -07003933 *
3934 * The slabs with the least items are placed last. This results in them
3935 * being allocated from last increasing the chance that the last objects
3936 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07003937 */
Tejun Heoc9fc5862017-02-22 15:41:27 -08003938int __kmem_cache_shrink(struct kmem_cache *s)
Christoph Lameter2086d262007-05-06 14:49:46 -07003939{
3940 int node;
3941 int i;
3942 struct kmem_cache_node *n;
3943 struct page *page;
3944 struct page *t;
Vladimir Davydov832f37f2015-02-12 14:59:41 -08003945 struct list_head discard;
3946 struct list_head promote[SHRINK_PROMOTE_MAX];
Christoph Lameter2086d262007-05-06 14:49:46 -07003947 unsigned long flags;
Vladimir Davydovce3712d2015-02-12 14:59:44 -08003948 int ret = 0;
Christoph Lameter2086d262007-05-06 14:49:46 -07003949
Christoph Lameter2086d262007-05-06 14:49:46 -07003950 flush_all(s);
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003951 for_each_kmem_cache_node(s, node, n) {
Vladimir Davydov832f37f2015-02-12 14:59:41 -08003952 INIT_LIST_HEAD(&discard);
3953 for (i = 0; i < SHRINK_PROMOTE_MAX; i++)
3954 INIT_LIST_HEAD(promote + i);
Christoph Lameter2086d262007-05-06 14:49:46 -07003955
3956 spin_lock_irqsave(&n->list_lock, flags);
3957
3958 /*
Vladimir Davydov832f37f2015-02-12 14:59:41 -08003959 * Build lists of slabs to discard or promote.
Christoph Lameter2086d262007-05-06 14:49:46 -07003960 *
Christoph Lameter672bba32007-05-09 02:32:39 -07003961 * Note that concurrent frees may occur while we hold the
3962 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07003963 */
Tobin C. Harding916ac052019-05-13 17:16:12 -07003964 list_for_each_entry_safe(page, t, &n->partial, slab_list) {
Vladimir Davydov832f37f2015-02-12 14:59:41 -08003965 int free = page->objects - page->inuse;
3966
3967 /* Do not reread page->inuse */
3968 barrier();
3969
3970 /* We do not keep full slabs on the list */
3971 BUG_ON(free <= 0);
3972
3973 if (free == page->objects) {
Tobin C. Harding916ac052019-05-13 17:16:12 -07003974 list_move(&page->slab_list, &discard);
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003975 n->nr_partial--;
Vladimir Davydov832f37f2015-02-12 14:59:41 -08003976 } else if (free <= SHRINK_PROMOTE_MAX)
Tobin C. Harding916ac052019-05-13 17:16:12 -07003977 list_move(&page->slab_list, promote + free - 1);
Christoph Lameter2086d262007-05-06 14:49:46 -07003978 }
3979
Christoph Lameter2086d262007-05-06 14:49:46 -07003980 /*
Vladimir Davydov832f37f2015-02-12 14:59:41 -08003981 * Promote the slabs filled up most to the head of the
3982 * partial list.
Christoph Lameter2086d262007-05-06 14:49:46 -07003983 */
Vladimir Davydov832f37f2015-02-12 14:59:41 -08003984 for (i = SHRINK_PROMOTE_MAX - 1; i >= 0; i--)
3985 list_splice(promote + i, &n->partial);
Christoph Lameter2086d262007-05-06 14:49:46 -07003986
Christoph Lameter2086d262007-05-06 14:49:46 -07003987 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003988
3989 /* Release empty slabs */
Tobin C. Harding916ac052019-05-13 17:16:12 -07003990 list_for_each_entry_safe(page, t, &discard, slab_list)
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003991 discard_slab(s, page);
Vladimir Davydovce3712d2015-02-12 14:59:44 -08003992
3993 if (slabs_node(s, node))
3994 ret = 1;
Christoph Lameter2086d262007-05-06 14:49:46 -07003995 }
3996
Vladimir Davydovce3712d2015-02-12 14:59:44 -08003997 return ret;
Christoph Lameter2086d262007-05-06 14:49:46 -07003998}
Christoph Lameter2086d262007-05-06 14:49:46 -07003999
Tejun Heoc9fc5862017-02-22 15:41:27 -08004000#ifdef CONFIG_MEMCG
Roman Gushchin43486692019-07-11 20:56:09 -07004001void __kmemcg_cache_deactivate_after_rcu(struct kmem_cache *s)
Tejun Heo01fb58b2017-02-22 15:41:30 -08004002{
Tejun Heo50862ce72017-02-22 15:41:33 -08004003 /*
4004 * Called with all the locks held after a sched RCU grace period.
4005 * Even if @s becomes empty after shrinking, we can't know that @s
4006 * doesn't have allocations already in-flight and thus can't
4007 * destroy @s until the associated memcg is released.
4008 *
4009 * However, let's remove the sysfs files for empty caches here.
4010 * Each cache has a lot of interface files which aren't
4011 * particularly useful for empty draining caches; otherwise, we can
4012 * easily end up with millions of unnecessary sysfs files on
4013 * systems which have a lot of memory and transient cgroups.
4014 */
4015 if (!__kmem_cache_shrink(s))
4016 sysfs_slab_remove(s);
Tejun Heo01fb58b2017-02-22 15:41:30 -08004017}
4018
Tejun Heoc9fc5862017-02-22 15:41:27 -08004019void __kmemcg_cache_deactivate(struct kmem_cache *s)
4020{
4021 /*
4022 * Disable empty slabs caching. Used to avoid pinning offline
4023 * memory cgroups by kmem pages that can be freed.
4024 */
Wei Yange6d0e1d2017-07-06 15:36:34 -07004025 slub_set_cpu_partial(s, 0);
Tejun Heoc9fc5862017-02-22 15:41:27 -08004026 s->min_partial = 0;
Tejun Heoc9fc5862017-02-22 15:41:27 -08004027}
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07004028#endif /* CONFIG_MEMCG */
Tejun Heoc9fc5862017-02-22 15:41:27 -08004029
Yasunori Gotob9049e22007-10-21 16:41:37 -07004030static int slab_mem_going_offline_callback(void *arg)
4031{
4032 struct kmem_cache *s;
4033
Christoph Lameter18004c52012-07-06 15:25:12 -05004034 mutex_lock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004035 list_for_each_entry(s, &slab_caches, list)
Tejun Heoc9fc5862017-02-22 15:41:27 -08004036 __kmem_cache_shrink(s);
Christoph Lameter18004c52012-07-06 15:25:12 -05004037 mutex_unlock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004038
4039 return 0;
4040}
4041
4042static void slab_mem_offline_callback(void *arg)
4043{
4044 struct kmem_cache_node *n;
4045 struct kmem_cache *s;
4046 struct memory_notify *marg = arg;
4047 int offline_node;
4048
Lai Jiangshanb9d5ab22012-12-11 16:01:05 -08004049 offline_node = marg->status_change_nid_normal;
Yasunori Gotob9049e22007-10-21 16:41:37 -07004050
4051 /*
4052 * If the node still has available memory. we need kmem_cache_node
4053 * for it yet.
4054 */
4055 if (offline_node < 0)
4056 return;
4057
Christoph Lameter18004c52012-07-06 15:25:12 -05004058 mutex_lock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004059 list_for_each_entry(s, &slab_caches, list) {
4060 n = get_node(s, offline_node);
4061 if (n) {
4062 /*
4063 * if n->nr_slabs > 0, slabs still exist on the node
4064 * that is going down. We were unable to free them,
Adam Buchbinderc9404c92009-12-18 15:40:42 -05004065 * and offline_pages() function shouldn't call this
Yasunori Gotob9049e22007-10-21 16:41:37 -07004066 * callback. So, we must fail.
4067 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03004068 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07004069
4070 s->node[offline_node] = NULL;
Christoph Lameter8de66a02010-08-25 14:51:14 -05004071 kmem_cache_free(kmem_cache_node, n);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004072 }
4073 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004074 mutex_unlock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004075}
4076
4077static int slab_mem_going_online_callback(void *arg)
4078{
4079 struct kmem_cache_node *n;
4080 struct kmem_cache *s;
4081 struct memory_notify *marg = arg;
Lai Jiangshanb9d5ab22012-12-11 16:01:05 -08004082 int nid = marg->status_change_nid_normal;
Yasunori Gotob9049e22007-10-21 16:41:37 -07004083 int ret = 0;
4084
4085 /*
4086 * If the node's memory is already available, then kmem_cache_node is
4087 * already created. Nothing to do.
4088 */
4089 if (nid < 0)
4090 return 0;
4091
4092 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07004093 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07004094 * allocate a kmem_cache_node structure in order to bring the node
4095 * online.
4096 */
Christoph Lameter18004c52012-07-06 15:25:12 -05004097 mutex_lock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004098 list_for_each_entry(s, &slab_caches, list) {
4099 /*
4100 * XXX: kmem_cache_alloc_node will fallback to other nodes
4101 * since memory is not yet available from the node that
4102 * is brought up.
4103 */
Christoph Lameter8de66a02010-08-25 14:51:14 -05004104 n = kmem_cache_alloc(kmem_cache_node, GFP_KERNEL);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004105 if (!n) {
4106 ret = -ENOMEM;
4107 goto out;
4108 }
Joonsoo Kim40534972012-05-11 00:50:47 +09004109 init_kmem_cache_node(n);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004110 s->node[nid] = n;
4111 }
4112out:
Christoph Lameter18004c52012-07-06 15:25:12 -05004113 mutex_unlock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004114 return ret;
4115}
4116
4117static int slab_memory_callback(struct notifier_block *self,
4118 unsigned long action, void *arg)
4119{
4120 int ret = 0;
4121
4122 switch (action) {
4123 case MEM_GOING_ONLINE:
4124 ret = slab_mem_going_online_callback(arg);
4125 break;
4126 case MEM_GOING_OFFLINE:
4127 ret = slab_mem_going_offline_callback(arg);
4128 break;
4129 case MEM_OFFLINE:
4130 case MEM_CANCEL_ONLINE:
4131 slab_mem_offline_callback(arg);
4132 break;
4133 case MEM_ONLINE:
4134 case MEM_CANCEL_OFFLINE:
4135 break;
4136 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08004137 if (ret)
4138 ret = notifier_from_errno(ret);
4139 else
4140 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07004141 return ret;
4142}
4143
Andrew Morton3ac38fa2013-04-29 15:08:06 -07004144static struct notifier_block slab_memory_callback_nb = {
4145 .notifier_call = slab_memory_callback,
4146 .priority = SLAB_CALLBACK_PRI,
4147};
Yasunori Gotob9049e22007-10-21 16:41:37 -07004148
Christoph Lameter81819f02007-05-06 14:49:36 -07004149/********************************************************************
4150 * Basic setup of slabs
4151 *******************************************************************/
4152
Christoph Lameter51df1142010-08-20 12:37:15 -05004153/*
4154 * Used for early kmem_cache structures that were allocated using
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004155 * the page allocator. Allocate them properly then fix up the pointers
4156 * that may be pointing to the wrong kmem_cache structure.
Christoph Lameter51df1142010-08-20 12:37:15 -05004157 */
4158
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004159static struct kmem_cache * __init bootstrap(struct kmem_cache *static_cache)
Christoph Lameter51df1142010-08-20 12:37:15 -05004160{
4161 int node;
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004162 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004163 struct kmem_cache_node *n;
Christoph Lameter51df1142010-08-20 12:37:15 -05004164
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004165 memcpy(s, static_cache, kmem_cache->object_size);
Christoph Lameter51df1142010-08-20 12:37:15 -05004166
Glauber Costa7d557b32013-02-22 20:20:00 +04004167 /*
4168 * This runs very early, and only the boot processor is supposed to be
4169 * up. Even if it weren't true, IRQs are not up so we couldn't fire
4170 * IPIs around.
4171 */
4172 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004173 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter51df1142010-08-20 12:37:15 -05004174 struct page *p;
4175
Tobin C. Harding916ac052019-05-13 17:16:12 -07004176 list_for_each_entry(p, &n->partial, slab_list)
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004177 p->slab_cache = s;
Christoph Lameter51df1142010-08-20 12:37:15 -05004178
Li Zefan607bf322011-04-12 15:22:26 +08004179#ifdef CONFIG_SLUB_DEBUG
Tobin C. Harding916ac052019-05-13 17:16:12 -07004180 list_for_each_entry(p, &n->full, slab_list)
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004181 p->slab_cache = s;
Christoph Lameter51df1142010-08-20 12:37:15 -05004182#endif
Christoph Lameter51df1142010-08-20 12:37:15 -05004183 }
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08004184 slab_init_memcg_params(s);
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004185 list_add(&s->list, &slab_caches);
Roman Gushchinc03914b2019-07-11 20:56:02 -07004186 memcg_link_cache(s, NULL);
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004187 return s;
Christoph Lameter51df1142010-08-20 12:37:15 -05004188}
4189
Christoph Lameter81819f02007-05-06 14:49:36 -07004190void __init kmem_cache_init(void)
4191{
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004192 static __initdata struct kmem_cache boot_kmem_cache,
4193 boot_kmem_cache_node;
Christoph Lameter51df1142010-08-20 12:37:15 -05004194
Stanislaw Gruszkafc8d8622012-01-10 15:07:32 -08004195 if (debug_guardpage_minorder())
4196 slub_max_order = 0;
4197
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004198 kmem_cache_node = &boot_kmem_cache_node;
4199 kmem_cache = &boot_kmem_cache;
Christoph Lameter51df1142010-08-20 12:37:15 -05004200
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004201 create_boot_cache(kmem_cache_node, "kmem_cache_node",
David Windsor8eb82842017-06-10 22:50:28 -04004202 sizeof(struct kmem_cache_node), SLAB_HWCACHE_ALIGN, 0, 0);
Yasunori Gotob9049e22007-10-21 16:41:37 -07004203
Andrew Morton3ac38fa2013-04-29 15:08:06 -07004204 register_hotmemory_notifier(&slab_memory_callback_nb);
Christoph Lameter81819f02007-05-06 14:49:36 -07004205
4206 /* Able to allocate the per node structures */
4207 slab_state = PARTIAL;
4208
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004209 create_boot_cache(kmem_cache, "kmem_cache",
4210 offsetof(struct kmem_cache, node) +
4211 nr_node_ids * sizeof(struct kmem_cache_node *),
David Windsor8eb82842017-06-10 22:50:28 -04004212 SLAB_HWCACHE_ALIGN, 0, 0);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00004213
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004214 kmem_cache = bootstrap(&boot_kmem_cache);
Christoph Lameterdffb4d62012-11-28 16:23:07 +00004215 kmem_cache_node = bootstrap(&boot_kmem_cache_node);
Christoph Lameter51df1142010-08-20 12:37:15 -05004216
4217 /* Now we can use the kmem_cache to allocate kmalloc slabs */
Daniel Sanders34cc6992015-06-24 16:55:57 -07004218 setup_kmalloc_cache_index_table();
Christoph Lameterf97d5f62013-01-10 19:12:17 +00004219 create_kmalloc_caches(0);
Christoph Lameter81819f02007-05-06 14:49:36 -07004220
Thomas Garnier210e7a42016-07-26 15:21:59 -07004221 /* Setup random freelists for each cache */
4222 init_freelist_randomization();
4223
Sebastian Andrzej Siewiora96a87b2016-08-18 14:57:19 +02004224 cpuhp_setup_state_nocalls(CPUHP_SLUB_DEAD, "slub:dead", NULL,
4225 slub_cpu_dead);
Christoph Lameter81819f02007-05-06 14:49:36 -07004226
Alexey Dobriyanb9726c22019-03-05 15:48:26 -08004227 pr_info("SLUB: HWalign=%d, Order=%u-%u, MinObjects=%u, CPUs=%u, Nodes=%u\n",
Christoph Lameterf97d5f62013-01-10 19:12:17 +00004228 cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07004229 slub_min_order, slub_max_order, slub_min_objects,
4230 nr_cpu_ids, nr_node_ids);
4231}
4232
Pekka Enberg7e85ee02009-06-12 14:03:06 +03004233void __init kmem_cache_init_late(void)
4234{
Pekka Enberg7e85ee02009-06-12 14:03:06 +03004235}
4236
Glauber Costa2633d7a2012-12-18 14:22:34 -08004237struct kmem_cache *
Alexey Dobriyanf4957d52018-04-05 16:20:37 -07004238__kmem_cache_alias(const char *name, unsigned int size, unsigned int align,
Alexey Dobriyand50112e2017-11-15 17:32:18 -08004239 slab_flags_t flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07004240{
Vladimir Davydov426589f2015-02-12 14:59:23 -08004241 struct kmem_cache *s, *c;
Christoph Lameter81819f02007-05-06 14:49:36 -07004242
Vladimir Davydova44cb9442014-04-07 15:39:23 -07004243 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07004244 if (s) {
4245 s->refcount++;
Vladimir Davydov84d0ddd2014-04-07 15:39:29 -07004246
Christoph Lameter81819f02007-05-06 14:49:36 -07004247 /*
4248 * Adjust the object sizes so that we clear
4249 * the complete object on kzalloc.
4250 */
Alexey Dobriyan1b473f22018-04-05 16:21:17 -07004251 s->object_size = max(s->object_size, size);
Alexey Dobriyan52ee6d72018-04-05 16:21:06 -07004252 s->inuse = max(s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lameter6446faa2008-02-15 23:45:26 -08004253
Vladimir Davydov426589f2015-02-12 14:59:23 -08004254 for_each_memcg_cache(c, s) {
Vladimir Davydov84d0ddd2014-04-07 15:39:29 -07004255 c->object_size = s->object_size;
Alexey Dobriyan52ee6d72018-04-05 16:21:06 -07004256 c->inuse = max(c->inuse, ALIGN(size, sizeof(void *)));
Vladimir Davydov84d0ddd2014-04-07 15:39:29 -07004257 }
4258
David Rientjes7b8f3b62008-12-17 22:09:46 -08004259 if (sysfs_slab_alias(s, name)) {
David Rientjes7b8f3b62008-12-17 22:09:46 -08004260 s->refcount--;
Christoph Lametercbb79692012-09-05 00:18:32 +00004261 s = NULL;
David Rientjes7b8f3b62008-12-17 22:09:46 -08004262 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07004263 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08004264
Christoph Lametercbb79692012-09-05 00:18:32 +00004265 return s;
4266}
Pekka Enberg84c1cf62010-09-14 23:21:12 +03004267
Alexey Dobriyand50112e2017-11-15 17:32:18 -08004268int __kmem_cache_create(struct kmem_cache *s, slab_flags_t flags)
Christoph Lametercbb79692012-09-05 00:18:32 +00004269{
Pekka Enbergaac3a162012-09-05 12:07:44 +03004270 int err;
Christoph Lameter20cea962012-07-06 15:25:13 -05004271
Pekka Enbergaac3a162012-09-05 12:07:44 +03004272 err = kmem_cache_open(s, flags);
4273 if (err)
4274 return err;
Christoph Lameter20cea962012-07-06 15:25:13 -05004275
Christoph Lameter45530c42012-11-28 16:23:07 +00004276 /* Mutex is not taken during early boot */
4277 if (slab_state <= UP)
4278 return 0;
4279
Glauber Costa107dab52012-12-18 14:23:05 -08004280 memcg_propagate_slab_attrs(s);
Pekka Enbergaac3a162012-09-05 12:07:44 +03004281 err = sysfs_slab_add(s);
Pekka Enbergaac3a162012-09-05 12:07:44 +03004282 if (err)
Dmitry Safonov52b4b952016-02-17 13:11:37 -08004283 __kmem_cache_release(s);
Pekka Enbergaac3a162012-09-05 12:07:44 +03004284
4285 return err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004286}
Christoph Lameter81819f02007-05-06 14:49:36 -07004287
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03004288void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07004289{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004290 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004291 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004292
Christoph Lameter95a05b42013-01-10 19:14:19 +00004293 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02004294 return kmalloc_large(size, gfpflags);
4295
Christoph Lameter2c59dd62013-01-10 19:14:19 +00004296 s = kmalloc_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07004297
Satyam Sharma2408c552007-10-16 01:24:44 -07004298 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07004299 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004300
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03004301 ret = slab_alloc(s, gfpflags, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004302
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004303 /* Honor the call site pointer we received. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02004304 trace_kmalloc(caller, ret, size, s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004305
4306 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07004307}
4308
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09004309#ifdef CONFIG_NUMA
Christoph Lameter81819f02007-05-06 14:49:36 -07004310void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03004311 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07004312{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004313 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004314 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004315
Christoph Lameter95a05b42013-01-10 19:14:19 +00004316 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE)) {
Xiaotian Fengd3e14aa2010-04-08 17:26:44 +08004317 ret = kmalloc_large_node(size, gfpflags, node);
4318
4319 trace_kmalloc_node(caller, ret,
4320 size, PAGE_SIZE << get_order(size),
4321 gfpflags, node);
4322
4323 return ret;
4324 }
Pekka Enbergeada35e2008-02-11 22:47:46 +02004325
Christoph Lameter2c59dd62013-01-10 19:14:19 +00004326 s = kmalloc_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07004327
Satyam Sharma2408c552007-10-16 01:24:44 -07004328 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07004329 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004330
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03004331 ret = slab_alloc_node(s, gfpflags, node, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004332
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004333 /* Honor the call site pointer we received. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02004334 trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004335
4336 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07004337}
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09004338#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004339
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004340#ifdef CONFIG_SYSFS
Christoph Lameter205ab992008-04-14 19:11:40 +03004341static int count_inuse(struct page *page)
4342{
4343 return page->inuse;
4344}
4345
4346static int count_total(struct page *page)
4347{
4348 return page->objects;
4349}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004350#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03004351
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004352#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter434e2452007-07-17 04:03:30 -07004353static int validate_slab(struct kmem_cache *s, struct page *page,
4354 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07004355{
4356 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08004357 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004358
4359 if (!check_slab(s, page) ||
4360 !on_freelist(s, page, NULL))
4361 return 0;
4362
4363 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03004364 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004365
Christoph Lameter5f80b132011-04-15 14:48:13 -05004366 get_map(s, page, map);
4367 for_each_object(p, s, addr, page->objects) {
4368 if (test_bit(slab_index(p, s, addr), map))
4369 if (!check_object(s, page, p, SLUB_RED_INACTIVE))
4370 return 0;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004371 }
4372
Christoph Lameter224a88b2008-04-14 19:11:31 +03004373 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07004374 if (!test_bit(slab_index(p, s, addr), map))
Tero Roponen37d57442010-12-01 20:04:20 +02004375 if (!check_object(s, page, p, SLUB_RED_ACTIVE))
Christoph Lameter53e15af2007-05-06 14:49:43 -07004376 return 0;
4377 return 1;
4378}
4379
Christoph Lameter434e2452007-07-17 04:03:30 -07004380static void validate_slab_slab(struct kmem_cache *s, struct page *page,
4381 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07004382{
Christoph Lameter881db7f2011-06-01 12:25:53 -05004383 slab_lock(page);
4384 validate_slab(s, page, map);
4385 slab_unlock(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004386}
4387
Christoph Lameter434e2452007-07-17 04:03:30 -07004388static int validate_slab_node(struct kmem_cache *s,
4389 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07004390{
4391 unsigned long count = 0;
4392 struct page *page;
4393 unsigned long flags;
4394
4395 spin_lock_irqsave(&n->list_lock, flags);
4396
Tobin C. Harding916ac052019-05-13 17:16:12 -07004397 list_for_each_entry(page, &n->partial, slab_list) {
Christoph Lameter434e2452007-07-17 04:03:30 -07004398 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004399 count++;
4400 }
4401 if (count != n->nr_partial)
Fabian Frederickf9f58282014-06-04 16:06:34 -07004402 pr_err("SLUB %s: %ld partial slabs counted but counter=%ld\n",
4403 s->name, count, n->nr_partial);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004404
4405 if (!(s->flags & SLAB_STORE_USER))
4406 goto out;
4407
Tobin C. Harding916ac052019-05-13 17:16:12 -07004408 list_for_each_entry(page, &n->full, slab_list) {
Christoph Lameter434e2452007-07-17 04:03:30 -07004409 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004410 count++;
4411 }
4412 if (count != atomic_long_read(&n->nr_slabs))
Fabian Frederickf9f58282014-06-04 16:06:34 -07004413 pr_err("SLUB: %s %ld slabs counted but counter=%ld\n",
4414 s->name, count, atomic_long_read(&n->nr_slabs));
Christoph Lameter53e15af2007-05-06 14:49:43 -07004415
4416out:
4417 spin_unlock_irqrestore(&n->list_lock, flags);
4418 return count;
4419}
4420
Christoph Lameter434e2452007-07-17 04:03:30 -07004421static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07004422{
4423 int node;
4424 unsigned long count = 0;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004425 struct kmem_cache_node *n;
Andy Shevchenko0684e652018-10-26 15:03:06 -07004426 unsigned long *map = bitmap_alloc(oo_objects(s->max), GFP_KERNEL);
Christoph Lameter434e2452007-07-17 04:03:30 -07004427
4428 if (!map)
4429 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004430
4431 flush_all(s);
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004432 for_each_kmem_cache_node(s, node, n)
Christoph Lameter434e2452007-07-17 04:03:30 -07004433 count += validate_slab_node(s, n, map);
Andy Shevchenko0684e652018-10-26 15:03:06 -07004434 bitmap_free(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004435 return count;
4436}
Christoph Lameter88a420e2007-05-06 14:49:45 -07004437/*
Christoph Lameter672bba32007-05-09 02:32:39 -07004438 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07004439 * and freed.
4440 */
4441
4442struct location {
4443 unsigned long count;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03004444 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004445 long long sum_time;
4446 long min_time;
4447 long max_time;
4448 long min_pid;
4449 long max_pid;
Rusty Russell174596a2009-01-01 10:12:29 +10304450 DECLARE_BITMAP(cpus, NR_CPUS);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004451 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004452};
4453
4454struct loc_track {
4455 unsigned long max;
4456 unsigned long count;
4457 struct location *loc;
4458};
4459
4460static void free_loc_track(struct loc_track *t)
4461{
4462 if (t->max)
4463 free_pages((unsigned long)t->loc,
4464 get_order(sizeof(struct location) * t->max));
4465}
4466
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004467static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004468{
4469 struct location *l;
4470 int order;
4471
Christoph Lameter88a420e2007-05-06 14:49:45 -07004472 order = get_order(sizeof(struct location) * max);
4473
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004474 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004475 if (!l)
4476 return 0;
4477
4478 if (t->count) {
4479 memcpy(l, t->loc, sizeof(struct location) * t->count);
4480 free_loc_track(t);
4481 }
4482 t->max = max;
4483 t->loc = l;
4484 return 1;
4485}
4486
4487static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07004488 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004489{
4490 long start, end, pos;
4491 struct location *l;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03004492 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004493 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004494
4495 start = -1;
4496 end = t->count;
4497
4498 for ( ; ; ) {
4499 pos = start + (end - start + 1) / 2;
4500
4501 /*
4502 * There is nothing at "end". If we end up there
4503 * we need to add something to before end.
4504 */
4505 if (pos == end)
4506 break;
4507
4508 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004509 if (track->addr == caddr) {
4510
4511 l = &t->loc[pos];
4512 l->count++;
4513 if (track->when) {
4514 l->sum_time += age;
4515 if (age < l->min_time)
4516 l->min_time = age;
4517 if (age > l->max_time)
4518 l->max_time = age;
4519
4520 if (track->pid < l->min_pid)
4521 l->min_pid = track->pid;
4522 if (track->pid > l->max_pid)
4523 l->max_pid = track->pid;
4524
Rusty Russell174596a2009-01-01 10:12:29 +10304525 cpumask_set_cpu(track->cpu,
4526 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004527 }
4528 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004529 return 1;
4530 }
4531
Christoph Lameter45edfa52007-05-09 02:32:45 -07004532 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004533 end = pos;
4534 else
4535 start = pos;
4536 }
4537
4538 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07004539 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07004540 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004541 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07004542 return 0;
4543
4544 l = t->loc + pos;
4545 if (pos < t->count)
4546 memmove(l + 1, l,
4547 (t->count - pos) * sizeof(struct location));
4548 t->count++;
4549 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004550 l->addr = track->addr;
4551 l->sum_time = age;
4552 l->min_time = age;
4553 l->max_time = age;
4554 l->min_pid = track->pid;
4555 l->max_pid = track->pid;
Rusty Russell174596a2009-01-01 10:12:29 +10304556 cpumask_clear(to_cpumask(l->cpus));
4557 cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004558 nodes_clear(l->nodes);
4559 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004560 return 1;
4561}
4562
4563static void process_slab(struct loc_track *t, struct kmem_cache *s,
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004564 struct page *page, enum track_item alloc,
Namhyung Kima5dd5c12010-09-29 21:02:13 +09004565 unsigned long *map)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004566{
Christoph Lametera973e9d2008-03-01 13:40:44 -08004567 void *addr = page_address(page);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004568 void *p;
4569
Christoph Lameter39b26462008-04-14 19:11:30 +03004570 bitmap_zero(map, page->objects);
Christoph Lameter5f80b132011-04-15 14:48:13 -05004571 get_map(s, page, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004572
Christoph Lameter224a88b2008-04-14 19:11:31 +03004573 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07004574 if (!test_bit(slab_index(p, s, addr), map))
4575 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07004576}
4577
4578static int list_locations(struct kmem_cache *s, char *buf,
4579 enum track_item alloc)
4580{
Harvey Harrisone374d482008-01-31 15:20:50 -08004581 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004582 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004583 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07004584 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004585 struct kmem_cache_node *n;
Andy Shevchenko0684e652018-10-26 15:03:06 -07004586 unsigned long *map = bitmap_alloc(oo_objects(s->max), GFP_KERNEL);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004587
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004588 if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
Michal Hocko0ee931c2017-09-13 16:28:29 -07004589 GFP_KERNEL)) {
Andy Shevchenko0684e652018-10-26 15:03:06 -07004590 bitmap_free(map);
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004591 return sprintf(buf, "Out of memory\n");
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004592 }
Christoph Lameter88a420e2007-05-06 14:49:45 -07004593 /* Push back cpu slabs */
4594 flush_all(s);
4595
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004596 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07004597 unsigned long flags;
4598 struct page *page;
4599
Christoph Lameter9e869432007-08-22 14:01:56 -07004600 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07004601 continue;
4602
4603 spin_lock_irqsave(&n->list_lock, flags);
Tobin C. Harding916ac052019-05-13 17:16:12 -07004604 list_for_each_entry(page, &n->partial, slab_list)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004605 process_slab(&t, s, page, alloc, map);
Tobin C. Harding916ac052019-05-13 17:16:12 -07004606 list_for_each_entry(page, &n->full, slab_list)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004607 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004608 spin_unlock_irqrestore(&n->list_lock, flags);
4609 }
4610
4611 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07004612 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07004613
Hugh Dickins9c246242008-12-09 13:14:27 -08004614 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004615 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08004616 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004617
4618 if (l->addr)
Joe Perches62c70bc2011-01-13 15:45:52 -08004619 len += sprintf(buf + len, "%pS", (void *)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004620 else
Harvey Harrisone374d482008-01-31 15:20:50 -08004621 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07004622
4623 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08004624 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07004625 l->min_time,
4626 (long)div_u64(l->sum_time, l->count),
4627 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004628 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08004629 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004630 l->min_time);
4631
4632 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08004633 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004634 l->min_pid, l->max_pid);
4635 else
Harvey Harrisone374d482008-01-31 15:20:50 -08004636 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004637 l->min_pid);
4638
Rusty Russell174596a2009-01-01 10:12:29 +10304639 if (num_online_cpus() > 1 &&
4640 !cpumask_empty(to_cpumask(l->cpus)) &&
Tejun Heo5024c1d2015-02-13 14:37:59 -08004641 len < PAGE_SIZE - 60)
4642 len += scnprintf(buf + len, PAGE_SIZE - len - 50,
4643 " cpus=%*pbl",
4644 cpumask_pr_args(to_cpumask(l->cpus)));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004645
Christoph Lameter62bc62a2009-06-16 15:32:15 -07004646 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
Tejun Heo5024c1d2015-02-13 14:37:59 -08004647 len < PAGE_SIZE - 60)
4648 len += scnprintf(buf + len, PAGE_SIZE - len - 50,
4649 " nodes=%*pbl",
4650 nodemask_pr_args(&l->nodes));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004651
Harvey Harrisone374d482008-01-31 15:20:50 -08004652 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07004653 }
4654
4655 free_loc_track(&t);
Andy Shevchenko0684e652018-10-26 15:03:06 -07004656 bitmap_free(map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004657 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08004658 len += sprintf(buf, "No data\n");
4659 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004660}
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07004661#endif /* CONFIG_SLUB_DEBUG */
Christoph Lameter88a420e2007-05-06 14:49:45 -07004662
Christoph Lametera5a84752010-10-05 13:57:27 -05004663#ifdef SLUB_RESILIENCY_TEST
David Rientjesc07b8182014-08-06 16:04:16 -07004664static void __init resiliency_test(void)
Christoph Lametera5a84752010-10-05 13:57:27 -05004665{
4666 u8 *p;
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07004667 int type = KMALLOC_NORMAL;
Christoph Lametera5a84752010-10-05 13:57:27 -05004668
Christoph Lameter95a05b42013-01-10 19:14:19 +00004669 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 16 || KMALLOC_SHIFT_HIGH < 10);
Christoph Lametera5a84752010-10-05 13:57:27 -05004670
Fabian Frederickf9f58282014-06-04 16:06:34 -07004671 pr_err("SLUB resiliency testing\n");
4672 pr_err("-----------------------\n");
4673 pr_err("A. Corruption after allocation\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004674
4675 p = kzalloc(16, GFP_KERNEL);
4676 p[16] = 0x12;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004677 pr_err("\n1. kmalloc-16: Clobber Redzone/next pointer 0x12->0x%p\n\n",
4678 p + 16);
Christoph Lametera5a84752010-10-05 13:57:27 -05004679
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07004680 validate_slab_cache(kmalloc_caches[type][4]);
Christoph Lametera5a84752010-10-05 13:57:27 -05004681
4682 /* Hmmm... The next two are dangerous */
4683 p = kzalloc(32, GFP_KERNEL);
4684 p[32 + sizeof(void *)] = 0x34;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004685 pr_err("\n2. kmalloc-32: Clobber next pointer/next slab 0x34 -> -0x%p\n",
4686 p);
4687 pr_err("If allocated object is overwritten then not detectable\n\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004688
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07004689 validate_slab_cache(kmalloc_caches[type][5]);
Christoph Lametera5a84752010-10-05 13:57:27 -05004690 p = kzalloc(64, GFP_KERNEL);
4691 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
4692 *p = 0x56;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004693 pr_err("\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
4694 p);
4695 pr_err("If allocated object is overwritten then not detectable\n\n");
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07004696 validate_slab_cache(kmalloc_caches[type][6]);
Christoph Lametera5a84752010-10-05 13:57:27 -05004697
Fabian Frederickf9f58282014-06-04 16:06:34 -07004698 pr_err("\nB. Corruption after free\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004699 p = kzalloc(128, GFP_KERNEL);
4700 kfree(p);
4701 *p = 0x78;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004702 pr_err("1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07004703 validate_slab_cache(kmalloc_caches[type][7]);
Christoph Lametera5a84752010-10-05 13:57:27 -05004704
4705 p = kzalloc(256, GFP_KERNEL);
4706 kfree(p);
4707 p[50] = 0x9a;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004708 pr_err("\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n", p);
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07004709 validate_slab_cache(kmalloc_caches[type][8]);
Christoph Lametera5a84752010-10-05 13:57:27 -05004710
4711 p = kzalloc(512, GFP_KERNEL);
4712 kfree(p);
4713 p[512] = 0xab;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004714 pr_err("\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
Vlastimil Babkacc252ea2018-10-26 15:05:34 -07004715 validate_slab_cache(kmalloc_caches[type][9]);
Christoph Lametera5a84752010-10-05 13:57:27 -05004716}
4717#else
4718#ifdef CONFIG_SYSFS
4719static void resiliency_test(void) {};
4720#endif
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07004721#endif /* SLUB_RESILIENCY_TEST */
Christoph Lametera5a84752010-10-05 13:57:27 -05004722
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004723#ifdef CONFIG_SYSFS
Christoph Lameter81819f02007-05-06 14:49:36 -07004724enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03004725 SL_ALL, /* All slabs */
4726 SL_PARTIAL, /* Only partially allocated slabs */
4727 SL_CPU, /* Only slabs used for cpu caches */
4728 SL_OBJECTS, /* Determine allocated objects not slabs */
4729 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07004730};
4731
Christoph Lameter205ab992008-04-14 19:11:40 +03004732#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004733#define SO_PARTIAL (1 << SL_PARTIAL)
4734#define SO_CPU (1 << SL_CPU)
4735#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03004736#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004737
Tejun Heo1663f262017-02-22 15:41:39 -08004738#ifdef CONFIG_MEMCG
4739static bool memcg_sysfs_enabled = IS_ENABLED(CONFIG_SLUB_MEMCG_SYSFS_ON);
4740
4741static int __init setup_slub_memcg_sysfs(char *str)
4742{
4743 int v;
4744
4745 if (get_option(&str, &v) > 0)
4746 memcg_sysfs_enabled = v;
4747
4748 return 1;
4749}
4750
4751__setup("slub_memcg_sysfs=", setup_slub_memcg_sysfs);
4752#endif
4753
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03004754static ssize_t show_slab_objects(struct kmem_cache *s,
4755 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07004756{
4757 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07004758 int node;
4759 int x;
4760 unsigned long *nodes;
Christoph Lameter81819f02007-05-06 14:49:36 -07004761
Kees Cook6396bb22018-06-12 14:03:40 -07004762 nodes = kcalloc(nr_node_ids, sizeof(unsigned long), GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03004763 if (!nodes)
4764 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07004765
Christoph Lameter205ab992008-04-14 19:11:40 +03004766 if (flags & SO_CPU) {
4767 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07004768
Christoph Lameter205ab992008-04-14 19:11:40 +03004769 for_each_possible_cpu(cpu) {
Chen Gangd0e0ac92013-07-15 09:05:29 +08004770 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab,
4771 cpu);
Christoph Lameterec3ab082012-05-09 10:09:56 -05004772 int node;
Christoph Lameter49e22582011-08-09 16:12:27 -05004773 struct page *page;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004774
Jason Low4db0c3c2015-04-15 16:14:08 -07004775 page = READ_ONCE(c->page);
Christoph Lameterec3ab082012-05-09 10:09:56 -05004776 if (!page)
4777 continue;
Christoph Lameter205ab992008-04-14 19:11:40 +03004778
Christoph Lameterec3ab082012-05-09 10:09:56 -05004779 node = page_to_nid(page);
4780 if (flags & SO_TOTAL)
4781 x = page->objects;
4782 else if (flags & SO_OBJECTS)
4783 x = page->inuse;
4784 else
4785 x = 1;
Christoph Lameter49e22582011-08-09 16:12:27 -05004786
Christoph Lameterec3ab082012-05-09 10:09:56 -05004787 total += x;
4788 nodes[node] += x;
4789
Wei Yanga93cf072017-07-06 15:36:31 -07004790 page = slub_percpu_partial_read_once(c);
Christoph Lameter49e22582011-08-09 16:12:27 -05004791 if (page) {
Li Zefan8afb1472013-09-10 11:43:37 +08004792 node = page_to_nid(page);
4793 if (flags & SO_TOTAL)
4794 WARN_ON_ONCE(1);
4795 else if (flags & SO_OBJECTS)
4796 WARN_ON_ONCE(1);
4797 else
4798 x = page->pages;
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004799 total += x;
4800 nodes[node] += x;
Christoph Lameter49e22582011-08-09 16:12:27 -05004801 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004802 }
4803 }
4804
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07004805 get_online_mems();
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004806#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03004807 if (flags & SO_ALL) {
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004808 struct kmem_cache_node *n;
4809
4810 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004811
Chen Gangd0e0ac92013-07-15 09:05:29 +08004812 if (flags & SO_TOTAL)
4813 x = atomic_long_read(&n->total_objects);
4814 else if (flags & SO_OBJECTS)
4815 x = atomic_long_read(&n->total_objects) -
4816 count_partial(n, count_free);
Christoph Lameter205ab992008-04-14 19:11:40 +03004817 else
4818 x = atomic_long_read(&n->nr_slabs);
4819 total += x;
4820 nodes[node] += x;
4821 }
4822
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004823 } else
4824#endif
4825 if (flags & SO_PARTIAL) {
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004826 struct kmem_cache_node *n;
Christoph Lameter205ab992008-04-14 19:11:40 +03004827
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004828 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter205ab992008-04-14 19:11:40 +03004829 if (flags & SO_TOTAL)
4830 x = count_partial(n, count_total);
4831 else if (flags & SO_OBJECTS)
4832 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07004833 else
4834 x = n->nr_partial;
4835 total += x;
4836 nodes[node] += x;
4837 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004838 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004839 x = sprintf(buf, "%lu", total);
4840#ifdef CONFIG_NUMA
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004841 for (node = 0; node < nr_node_ids; node++)
Christoph Lameter81819f02007-05-06 14:49:36 -07004842 if (nodes[node])
4843 x += sprintf(buf + x, " N%d=%lu",
4844 node, nodes[node]);
4845#endif
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07004846 put_online_mems();
Christoph Lameter81819f02007-05-06 14:49:36 -07004847 kfree(nodes);
4848 return x + sprintf(buf + x, "\n");
4849}
4850
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004851#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07004852static int any_slab_objects(struct kmem_cache *s)
4853{
4854 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004855 struct kmem_cache_node *n;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004856
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004857 for_each_kmem_cache_node(s, node, n)
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07004858 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07004859 return 1;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004860
Christoph Lameter81819f02007-05-06 14:49:36 -07004861 return 0;
4862}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004863#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004864
4865#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
Phil Carmody497888c2011-07-14 15:07:13 +03004866#define to_slab(n) container_of(n, struct kmem_cache, kobj)
Christoph Lameter81819f02007-05-06 14:49:36 -07004867
4868struct slab_attribute {
4869 struct attribute attr;
4870 ssize_t (*show)(struct kmem_cache *s, char *buf);
4871 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
4872};
4873
4874#define SLAB_ATTR_RO(_name) \
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004875 static struct slab_attribute _name##_attr = \
4876 __ATTR(_name, 0400, _name##_show, NULL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004877
4878#define SLAB_ATTR(_name) \
4879 static struct slab_attribute _name##_attr = \
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004880 __ATTR(_name, 0600, _name##_show, _name##_store)
Christoph Lameter81819f02007-05-06 14:49:36 -07004881
Christoph Lameter81819f02007-05-06 14:49:36 -07004882static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
4883{
Alexey Dobriyan44065b22018-04-05 16:21:20 -07004884 return sprintf(buf, "%u\n", s->size);
Christoph Lameter81819f02007-05-06 14:49:36 -07004885}
4886SLAB_ATTR_RO(slab_size);
4887
4888static ssize_t align_show(struct kmem_cache *s, char *buf)
4889{
Alexey Dobriyan3a3791e2018-04-05 16:21:02 -07004890 return sprintf(buf, "%u\n", s->align);
Christoph Lameter81819f02007-05-06 14:49:36 -07004891}
4892SLAB_ATTR_RO(align);
4893
4894static ssize_t object_size_show(struct kmem_cache *s, char *buf)
4895{
Alexey Dobriyan1b473f22018-04-05 16:21:17 -07004896 return sprintf(buf, "%u\n", s->object_size);
Christoph Lameter81819f02007-05-06 14:49:36 -07004897}
4898SLAB_ATTR_RO(object_size);
4899
4900static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
4901{
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07004902 return sprintf(buf, "%u\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004903}
4904SLAB_ATTR_RO(objs_per_slab);
4905
Christoph Lameter06b285d2008-04-14 19:11:41 +03004906static ssize_t order_store(struct kmem_cache *s,
4907 const char *buf, size_t length)
4908{
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07004909 unsigned int order;
Christoph Lameter0121c6192008-04-29 16:11:12 -07004910 int err;
4911
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07004912 err = kstrtouint(buf, 10, &order);
Christoph Lameter0121c6192008-04-29 16:11:12 -07004913 if (err)
4914 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004915
4916 if (order > slub_max_order || order < slub_min_order)
4917 return -EINVAL;
4918
4919 calculate_sizes(s, order);
4920 return length;
4921}
4922
Christoph Lameter81819f02007-05-06 14:49:36 -07004923static ssize_t order_show(struct kmem_cache *s, char *buf)
4924{
Alexey Dobriyan19af27a2018-04-05 16:21:39 -07004925 return sprintf(buf, "%u\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004926}
Christoph Lameter06b285d2008-04-14 19:11:41 +03004927SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07004928
David Rientjes73d342b2009-02-22 17:40:09 -08004929static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
4930{
4931 return sprintf(buf, "%lu\n", s->min_partial);
4932}
4933
4934static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
4935 size_t length)
4936{
4937 unsigned long min;
4938 int err;
4939
Jingoo Han3dbb95f2013-09-11 14:20:25 -07004940 err = kstrtoul(buf, 10, &min);
David Rientjes73d342b2009-02-22 17:40:09 -08004941 if (err)
4942 return err;
4943
David Rientjesc0bdb232009-02-25 09:16:35 +02004944 set_min_partial(s, min);
David Rientjes73d342b2009-02-22 17:40:09 -08004945 return length;
4946}
4947SLAB_ATTR(min_partial);
4948
Christoph Lameter49e22582011-08-09 16:12:27 -05004949static ssize_t cpu_partial_show(struct kmem_cache *s, char *buf)
4950{
Wei Yange6d0e1d2017-07-06 15:36:34 -07004951 return sprintf(buf, "%u\n", slub_cpu_partial(s));
Christoph Lameter49e22582011-08-09 16:12:27 -05004952}
4953
4954static ssize_t cpu_partial_store(struct kmem_cache *s, const char *buf,
4955 size_t length)
4956{
Alexey Dobriyane5d99982018-04-05 16:21:10 -07004957 unsigned int objects;
Christoph Lameter49e22582011-08-09 16:12:27 -05004958 int err;
4959
Alexey Dobriyane5d99982018-04-05 16:21:10 -07004960 err = kstrtouint(buf, 10, &objects);
Christoph Lameter49e22582011-08-09 16:12:27 -05004961 if (err)
4962 return err;
Joonsoo Kim345c9052013-06-19 14:05:52 +09004963 if (objects && !kmem_cache_has_cpu_partial(s))
David Rientjes74ee4ef2012-01-09 13:19:45 -08004964 return -EINVAL;
Christoph Lameter49e22582011-08-09 16:12:27 -05004965
Wei Yange6d0e1d2017-07-06 15:36:34 -07004966 slub_set_cpu_partial(s, objects);
Christoph Lameter49e22582011-08-09 16:12:27 -05004967 flush_all(s);
4968 return length;
4969}
4970SLAB_ATTR(cpu_partial);
4971
Christoph Lameter81819f02007-05-06 14:49:36 -07004972static ssize_t ctor_show(struct kmem_cache *s, char *buf)
4973{
Joe Perches62c70bc2011-01-13 15:45:52 -08004974 if (!s->ctor)
4975 return 0;
4976 return sprintf(buf, "%pS\n", s->ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07004977}
4978SLAB_ATTR_RO(ctor);
4979
Christoph Lameter81819f02007-05-06 14:49:36 -07004980static ssize_t aliases_show(struct kmem_cache *s, char *buf)
4981{
Gu Zheng4307c142014-08-06 16:04:51 -07004982 return sprintf(buf, "%d\n", s->refcount < 0 ? 0 : s->refcount - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004983}
4984SLAB_ATTR_RO(aliases);
4985
Christoph Lameter81819f02007-05-06 14:49:36 -07004986static ssize_t partial_show(struct kmem_cache *s, char *buf)
4987{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004988 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07004989}
4990SLAB_ATTR_RO(partial);
4991
4992static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
4993{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004994 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07004995}
4996SLAB_ATTR_RO(cpu_slabs);
4997
4998static ssize_t objects_show(struct kmem_cache *s, char *buf)
4999{
Christoph Lameter205ab992008-04-14 19:11:40 +03005000 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07005001}
5002SLAB_ATTR_RO(objects);
5003
Christoph Lameter205ab992008-04-14 19:11:40 +03005004static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
5005{
5006 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
5007}
5008SLAB_ATTR_RO(objects_partial);
5009
Christoph Lameter49e22582011-08-09 16:12:27 -05005010static ssize_t slabs_cpu_partial_show(struct kmem_cache *s, char *buf)
5011{
5012 int objects = 0;
5013 int pages = 0;
5014 int cpu;
5015 int len;
5016
5017 for_each_online_cpu(cpu) {
Wei Yanga93cf072017-07-06 15:36:31 -07005018 struct page *page;
5019
5020 page = slub_percpu_partial(per_cpu_ptr(s->cpu_slab, cpu));
Christoph Lameter49e22582011-08-09 16:12:27 -05005021
5022 if (page) {
5023 pages += page->pages;
5024 objects += page->pobjects;
5025 }
5026 }
5027
5028 len = sprintf(buf, "%d(%d)", objects, pages);
5029
5030#ifdef CONFIG_SMP
5031 for_each_online_cpu(cpu) {
Wei Yanga93cf072017-07-06 15:36:31 -07005032 struct page *page;
5033
5034 page = slub_percpu_partial(per_cpu_ptr(s->cpu_slab, cpu));
Christoph Lameter49e22582011-08-09 16:12:27 -05005035
5036 if (page && len < PAGE_SIZE - 20)
5037 len += sprintf(buf + len, " C%d=%d(%d)", cpu,
5038 page->pobjects, page->pages);
5039 }
5040#endif
5041 return len + sprintf(buf + len, "\n");
5042}
5043SLAB_ATTR_RO(slabs_cpu_partial);
5044
Christoph Lameter81819f02007-05-06 14:49:36 -07005045static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
5046{
5047 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
5048}
5049
5050static ssize_t reclaim_account_store(struct kmem_cache *s,
5051 const char *buf, size_t length)
5052{
5053 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
5054 if (buf[0] == '1')
5055 s->flags |= SLAB_RECLAIM_ACCOUNT;
5056 return length;
5057}
5058SLAB_ATTR(reclaim_account);
5059
5060static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
5061{
Christoph Lameter5af60832007-05-06 14:49:56 -07005062 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07005063}
5064SLAB_ATTR_RO(hwcache_align);
5065
5066#ifdef CONFIG_ZONE_DMA
5067static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
5068{
5069 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
5070}
5071SLAB_ATTR_RO(cache_dma);
5072#endif
5073
David Windsor8eb82842017-06-10 22:50:28 -04005074static ssize_t usersize_show(struct kmem_cache *s, char *buf)
5075{
Alexey Dobriyan7bbdb812018-04-05 16:21:31 -07005076 return sprintf(buf, "%u\n", s->usersize);
David Windsor8eb82842017-06-10 22:50:28 -04005077}
5078SLAB_ATTR_RO(usersize);
5079
Christoph Lameter81819f02007-05-06 14:49:36 -07005080static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
5081{
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -08005082 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TYPESAFE_BY_RCU));
Christoph Lameter81819f02007-05-06 14:49:36 -07005083}
5084SLAB_ATTR_RO(destroy_by_rcu);
5085
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005086#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05005087static ssize_t slabs_show(struct kmem_cache *s, char *buf)
5088{
5089 return show_slab_objects(s, buf, SO_ALL);
5090}
5091SLAB_ATTR_RO(slabs);
5092
5093static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
5094{
5095 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
5096}
5097SLAB_ATTR_RO(total_objects);
5098
5099static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
5100{
Laura Abbottbecfda62016-03-15 14:55:06 -07005101 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CONSISTENCY_CHECKS));
Christoph Lametera5a84752010-10-05 13:57:27 -05005102}
5103
5104static ssize_t sanity_checks_store(struct kmem_cache *s,
5105 const char *buf, size_t length)
5106{
Laura Abbottbecfda62016-03-15 14:55:06 -07005107 s->flags &= ~SLAB_CONSISTENCY_CHECKS;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005108 if (buf[0] == '1') {
5109 s->flags &= ~__CMPXCHG_DOUBLE;
Laura Abbottbecfda62016-03-15 14:55:06 -07005110 s->flags |= SLAB_CONSISTENCY_CHECKS;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005111 }
Christoph Lametera5a84752010-10-05 13:57:27 -05005112 return length;
5113}
5114SLAB_ATTR(sanity_checks);
5115
5116static ssize_t trace_show(struct kmem_cache *s, char *buf)
5117{
5118 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
5119}
5120
5121static ssize_t trace_store(struct kmem_cache *s, const char *buf,
5122 size_t length)
5123{
Christoph Lameterc9e16132014-10-09 15:26:11 -07005124 /*
5125 * Tracing a merged cache is going to give confusing results
5126 * as well as cause other issues like converting a mergeable
5127 * cache into an umergeable one.
5128 */
5129 if (s->refcount > 1)
5130 return -EINVAL;
5131
Christoph Lametera5a84752010-10-05 13:57:27 -05005132 s->flags &= ~SLAB_TRACE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005133 if (buf[0] == '1') {
5134 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lametera5a84752010-10-05 13:57:27 -05005135 s->flags |= SLAB_TRACE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005136 }
Christoph Lametera5a84752010-10-05 13:57:27 -05005137 return length;
5138}
5139SLAB_ATTR(trace);
5140
Christoph Lameter81819f02007-05-06 14:49:36 -07005141static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
5142{
5143 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
5144}
5145
5146static ssize_t red_zone_store(struct kmem_cache *s,
5147 const char *buf, size_t length)
5148{
5149 if (any_slab_objects(s))
5150 return -EBUSY;
5151
5152 s->flags &= ~SLAB_RED_ZONE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005153 if (buf[0] == '1') {
Christoph Lameter81819f02007-05-06 14:49:36 -07005154 s->flags |= SLAB_RED_ZONE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005155 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03005156 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07005157 return length;
5158}
5159SLAB_ATTR(red_zone);
5160
5161static ssize_t poison_show(struct kmem_cache *s, char *buf)
5162{
5163 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
5164}
5165
5166static ssize_t poison_store(struct kmem_cache *s,
5167 const char *buf, size_t length)
5168{
5169 if (any_slab_objects(s))
5170 return -EBUSY;
5171
5172 s->flags &= ~SLAB_POISON;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005173 if (buf[0] == '1') {
Christoph Lameter81819f02007-05-06 14:49:36 -07005174 s->flags |= SLAB_POISON;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005175 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03005176 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07005177 return length;
5178}
5179SLAB_ATTR(poison);
5180
5181static ssize_t store_user_show(struct kmem_cache *s, char *buf)
5182{
5183 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
5184}
5185
5186static ssize_t store_user_store(struct kmem_cache *s,
5187 const char *buf, size_t length)
5188{
5189 if (any_slab_objects(s))
5190 return -EBUSY;
5191
5192 s->flags &= ~SLAB_STORE_USER;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005193 if (buf[0] == '1') {
5194 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07005195 s->flags |= SLAB_STORE_USER;
Christoph Lameterb789ef52011-06-01 12:25:49 -05005196 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03005197 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07005198 return length;
5199}
5200SLAB_ATTR(store_user);
5201
Christoph Lameter53e15af2007-05-06 14:49:43 -07005202static ssize_t validate_show(struct kmem_cache *s, char *buf)
5203{
5204 return 0;
5205}
5206
5207static ssize_t validate_store(struct kmem_cache *s,
5208 const char *buf, size_t length)
5209{
Christoph Lameter434e2452007-07-17 04:03:30 -07005210 int ret = -EINVAL;
5211
5212 if (buf[0] == '1') {
5213 ret = validate_slab_cache(s);
5214 if (ret >= 0)
5215 ret = length;
5216 }
5217 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07005218}
5219SLAB_ATTR(validate);
Christoph Lametera5a84752010-10-05 13:57:27 -05005220
5221static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
5222{
5223 if (!(s->flags & SLAB_STORE_USER))
5224 return -ENOSYS;
5225 return list_locations(s, buf, TRACK_ALLOC);
5226}
5227SLAB_ATTR_RO(alloc_calls);
5228
5229static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
5230{
5231 if (!(s->flags & SLAB_STORE_USER))
5232 return -ENOSYS;
5233 return list_locations(s, buf, TRACK_FREE);
5234}
5235SLAB_ATTR_RO(free_calls);
5236#endif /* CONFIG_SLUB_DEBUG */
5237
5238#ifdef CONFIG_FAILSLAB
5239static ssize_t failslab_show(struct kmem_cache *s, char *buf)
5240{
5241 return sprintf(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
5242}
5243
5244static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
5245 size_t length)
5246{
Christoph Lameterc9e16132014-10-09 15:26:11 -07005247 if (s->refcount > 1)
5248 return -EINVAL;
5249
Christoph Lametera5a84752010-10-05 13:57:27 -05005250 s->flags &= ~SLAB_FAILSLAB;
5251 if (buf[0] == '1')
5252 s->flags |= SLAB_FAILSLAB;
5253 return length;
5254}
5255SLAB_ATTR(failslab);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005256#endif
Christoph Lameter53e15af2007-05-06 14:49:43 -07005257
Christoph Lameter2086d262007-05-06 14:49:46 -07005258static ssize_t shrink_show(struct kmem_cache *s, char *buf)
5259{
5260 return 0;
5261}
5262
5263static ssize_t shrink_store(struct kmem_cache *s,
5264 const char *buf, size_t length)
5265{
Vladimir Davydov832f37f2015-02-12 14:59:41 -08005266 if (buf[0] == '1')
5267 kmem_cache_shrink(s);
5268 else
Christoph Lameter2086d262007-05-06 14:49:46 -07005269 return -EINVAL;
5270 return length;
5271}
5272SLAB_ATTR(shrink);
5273
Christoph Lameter81819f02007-05-06 14:49:36 -07005274#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08005275static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07005276{
Alexey Dobriyaneb7235e2018-04-05 16:20:48 -07005277 return sprintf(buf, "%u\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07005278}
5279
Christoph Lameter98246012008-01-07 23:20:26 -08005280static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07005281 const char *buf, size_t length)
5282{
Alexey Dobriyaneb7235e2018-04-05 16:20:48 -07005283 unsigned int ratio;
Christoph Lameter0121c6192008-04-29 16:11:12 -07005284 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07005285
Alexey Dobriyaneb7235e2018-04-05 16:20:48 -07005286 err = kstrtouint(buf, 10, &ratio);
Christoph Lameter0121c6192008-04-29 16:11:12 -07005287 if (err)
5288 return err;
Alexey Dobriyaneb7235e2018-04-05 16:20:48 -07005289 if (ratio > 100)
5290 return -ERANGE;
Christoph Lameter0121c6192008-04-29 16:11:12 -07005291
Alexey Dobriyaneb7235e2018-04-05 16:20:48 -07005292 s->remote_node_defrag_ratio = ratio * 10;
Christoph Lameter0121c6192008-04-29 16:11:12 -07005293
Christoph Lameter81819f02007-05-06 14:49:36 -07005294 return length;
5295}
Christoph Lameter98246012008-01-07 23:20:26 -08005296SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07005297#endif
5298
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005299#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005300static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
5301{
5302 unsigned long sum = 0;
5303 int cpu;
5304 int len;
Kees Cook6da2ec52018-06-12 13:55:00 -07005305 int *data = kmalloc_array(nr_cpu_ids, sizeof(int), GFP_KERNEL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005306
5307 if (!data)
5308 return -ENOMEM;
5309
5310 for_each_online_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06005311 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005312
5313 data[cpu] = x;
5314 sum += x;
5315 }
5316
5317 len = sprintf(buf, "%lu", sum);
5318
Christoph Lameter50ef37b2008-04-14 18:52:05 +03005319#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005320 for_each_online_cpu(cpu) {
5321 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03005322 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005323 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03005324#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005325 kfree(data);
5326 return len + sprintf(buf + len, "\n");
5327}
5328
David Rientjes78eb00c2009-10-15 02:20:22 -07005329static void clear_stat(struct kmem_cache *s, enum stat_item si)
5330{
5331 int cpu;
5332
5333 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06005334 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
David Rientjes78eb00c2009-10-15 02:20:22 -07005335}
5336
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005337#define STAT_ATTR(si, text) \
5338static ssize_t text##_show(struct kmem_cache *s, char *buf) \
5339{ \
5340 return show_stat(s, buf, si); \
5341} \
David Rientjes78eb00c2009-10-15 02:20:22 -07005342static ssize_t text##_store(struct kmem_cache *s, \
5343 const char *buf, size_t length) \
5344{ \
5345 if (buf[0] != '0') \
5346 return -EINVAL; \
5347 clear_stat(s, si); \
5348 return length; \
5349} \
5350SLAB_ATTR(text); \
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005351
5352STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
5353STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
5354STAT_ATTR(FREE_FASTPATH, free_fastpath);
5355STAT_ATTR(FREE_SLOWPATH, free_slowpath);
5356STAT_ATTR(FREE_FROZEN, free_frozen);
5357STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
5358STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
5359STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
5360STAT_ATTR(ALLOC_SLAB, alloc_slab);
5361STAT_ATTR(ALLOC_REFILL, alloc_refill);
Christoph Lametere36a2652011-06-01 12:25:57 -05005362STAT_ATTR(ALLOC_NODE_MISMATCH, alloc_node_mismatch);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005363STAT_ATTR(FREE_SLAB, free_slab);
5364STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
5365STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
5366STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
5367STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
5368STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
5369STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter03e404a2011-06-01 12:25:58 -05005370STAT_ATTR(DEACTIVATE_BYPASS, deactivate_bypass);
Christoph Lameter65c33762008-04-14 19:11:40 +03005371STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameterb789ef52011-06-01 12:25:49 -05005372STAT_ATTR(CMPXCHG_DOUBLE_CPU_FAIL, cmpxchg_double_cpu_fail);
5373STAT_ATTR(CMPXCHG_DOUBLE_FAIL, cmpxchg_double_fail);
Christoph Lameter49e22582011-08-09 16:12:27 -05005374STAT_ATTR(CPU_PARTIAL_ALLOC, cpu_partial_alloc);
5375STAT_ATTR(CPU_PARTIAL_FREE, cpu_partial_free);
Alex Shi8028dce2012-02-03 23:34:56 +08005376STAT_ATTR(CPU_PARTIAL_NODE, cpu_partial_node);
5377STAT_ATTR(CPU_PARTIAL_DRAIN, cpu_partial_drain);
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07005378#endif /* CONFIG_SLUB_STATS */
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005379
Pekka Enberg06428782008-01-07 23:20:27 -08005380static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005381 &slab_size_attr.attr,
5382 &object_size_attr.attr,
5383 &objs_per_slab_attr.attr,
5384 &order_attr.attr,
David Rientjes73d342b2009-02-22 17:40:09 -08005385 &min_partial_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05005386 &cpu_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005387 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03005388 &objects_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005389 &partial_attr.attr,
5390 &cpu_slabs_attr.attr,
5391 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005392 &aliases_attr.attr,
5393 &align_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005394 &hwcache_align_attr.attr,
5395 &reclaim_account_attr.attr,
5396 &destroy_by_rcu_attr.attr,
Christoph Lametera5a84752010-10-05 13:57:27 -05005397 &shrink_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05005398 &slabs_cpu_partial_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005399#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05005400 &total_objects_attr.attr,
5401 &slabs_attr.attr,
5402 &sanity_checks_attr.attr,
5403 &trace_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005404 &red_zone_attr.attr,
5405 &poison_attr.attr,
5406 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07005407 &validate_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07005408 &alloc_calls_attr.attr,
5409 &free_calls_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005410#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07005411#ifdef CONFIG_ZONE_DMA
5412 &cache_dma_attr.attr,
5413#endif
5414#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08005415 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005416#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005417#ifdef CONFIG_SLUB_STATS
5418 &alloc_fastpath_attr.attr,
5419 &alloc_slowpath_attr.attr,
5420 &free_fastpath_attr.attr,
5421 &free_slowpath_attr.attr,
5422 &free_frozen_attr.attr,
5423 &free_add_partial_attr.attr,
5424 &free_remove_partial_attr.attr,
5425 &alloc_from_partial_attr.attr,
5426 &alloc_slab_attr.attr,
5427 &alloc_refill_attr.attr,
Christoph Lametere36a2652011-06-01 12:25:57 -05005428 &alloc_node_mismatch_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005429 &free_slab_attr.attr,
5430 &cpuslab_flush_attr.attr,
5431 &deactivate_full_attr.attr,
5432 &deactivate_empty_attr.attr,
5433 &deactivate_to_head_attr.attr,
5434 &deactivate_to_tail_attr.attr,
5435 &deactivate_remote_frees_attr.attr,
Christoph Lameter03e404a2011-06-01 12:25:58 -05005436 &deactivate_bypass_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03005437 &order_fallback_attr.attr,
Christoph Lameterb789ef52011-06-01 12:25:49 -05005438 &cmpxchg_double_fail_attr.attr,
5439 &cmpxchg_double_cpu_fail_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05005440 &cpu_partial_alloc_attr.attr,
5441 &cpu_partial_free_attr.attr,
Alex Shi8028dce2012-02-03 23:34:56 +08005442 &cpu_partial_node_attr.attr,
5443 &cpu_partial_drain_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005444#endif
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03005445#ifdef CONFIG_FAILSLAB
5446 &failslab_attr.attr,
5447#endif
David Windsor8eb82842017-06-10 22:50:28 -04005448 &usersize_attr.attr,
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03005449
Christoph Lameter81819f02007-05-06 14:49:36 -07005450 NULL
5451};
5452
Arvind Yadav1fdaaa22017-09-06 16:21:56 -07005453static const struct attribute_group slab_attr_group = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005454 .attrs = slab_attrs,
5455};
5456
5457static ssize_t slab_attr_show(struct kobject *kobj,
5458 struct attribute *attr,
5459 char *buf)
5460{
5461 struct slab_attribute *attribute;
5462 struct kmem_cache *s;
5463 int err;
5464
5465 attribute = to_slab_attr(attr);
5466 s = to_slab(kobj);
5467
5468 if (!attribute->show)
5469 return -EIO;
5470
5471 err = attribute->show(s, buf);
5472
5473 return err;
5474}
5475
5476static ssize_t slab_attr_store(struct kobject *kobj,
5477 struct attribute *attr,
5478 const char *buf, size_t len)
5479{
5480 struct slab_attribute *attribute;
5481 struct kmem_cache *s;
5482 int err;
5483
5484 attribute = to_slab_attr(attr);
5485 s = to_slab(kobj);
5486
5487 if (!attribute->store)
5488 return -EIO;
5489
5490 err = attribute->store(s, buf, len);
Johannes Weiner127424c2016-01-20 15:02:32 -08005491#ifdef CONFIG_MEMCG
Glauber Costa107dab52012-12-18 14:23:05 -08005492 if (slab_state >= FULL && err >= 0 && is_root_cache(s)) {
Vladimir Davydov426589f2015-02-12 14:59:23 -08005493 struct kmem_cache *c;
Christoph Lameter81819f02007-05-06 14:49:36 -07005494
Glauber Costa107dab52012-12-18 14:23:05 -08005495 mutex_lock(&slab_mutex);
5496 if (s->max_attr_size < len)
5497 s->max_attr_size = len;
5498
Glauber Costaebe945c2012-12-18 14:23:10 -08005499 /*
5500 * This is a best effort propagation, so this function's return
5501 * value will be determined by the parent cache only. This is
5502 * basically because not all attributes will have a well
5503 * defined semantics for rollbacks - most of the actions will
5504 * have permanent effects.
5505 *
5506 * Returning the error value of any of the children that fail
5507 * is not 100 % defined, in the sense that users seeing the
5508 * error code won't be able to know anything about the state of
5509 * the cache.
5510 *
5511 * Only returning the error code for the parent cache at least
5512 * has well defined semantics. The cache being written to
5513 * directly either failed or succeeded, in which case we loop
5514 * through the descendants with best-effort propagation.
5515 */
Vladimir Davydov426589f2015-02-12 14:59:23 -08005516 for_each_memcg_cache(c, s)
5517 attribute->store(c, buf, len);
Glauber Costa107dab52012-12-18 14:23:05 -08005518 mutex_unlock(&slab_mutex);
5519 }
5520#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07005521 return err;
5522}
5523
Glauber Costa107dab52012-12-18 14:23:05 -08005524static void memcg_propagate_slab_attrs(struct kmem_cache *s)
5525{
Johannes Weiner127424c2016-01-20 15:02:32 -08005526#ifdef CONFIG_MEMCG
Glauber Costa107dab52012-12-18 14:23:05 -08005527 int i;
5528 char *buffer = NULL;
Vladimir Davydov93030d82014-05-06 12:49:59 -07005529 struct kmem_cache *root_cache;
Glauber Costa107dab52012-12-18 14:23:05 -08005530
Vladimir Davydov93030d82014-05-06 12:49:59 -07005531 if (is_root_cache(s))
Glauber Costa107dab52012-12-18 14:23:05 -08005532 return;
5533
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08005534 root_cache = s->memcg_params.root_cache;
Vladimir Davydov93030d82014-05-06 12:49:59 -07005535
Glauber Costa107dab52012-12-18 14:23:05 -08005536 /*
5537 * This mean this cache had no attribute written. Therefore, no point
5538 * in copying default values around
5539 */
Vladimir Davydov93030d82014-05-06 12:49:59 -07005540 if (!root_cache->max_attr_size)
Glauber Costa107dab52012-12-18 14:23:05 -08005541 return;
5542
5543 for (i = 0; i < ARRAY_SIZE(slab_attrs); i++) {
5544 char mbuf[64];
5545 char *buf;
5546 struct slab_attribute *attr = to_slab_attr(slab_attrs[i]);
Thomas Gleixner478fe302017-06-02 14:46:25 -07005547 ssize_t len;
Glauber Costa107dab52012-12-18 14:23:05 -08005548
5549 if (!attr || !attr->store || !attr->show)
5550 continue;
5551
5552 /*
5553 * It is really bad that we have to allocate here, so we will
5554 * do it only as a fallback. If we actually allocate, though,
5555 * we can just use the allocated buffer until the end.
5556 *
5557 * Most of the slub attributes will tend to be very small in
5558 * size, but sysfs allows buffers up to a page, so they can
5559 * theoretically happen.
5560 */
5561 if (buffer)
5562 buf = buffer;
Vladimir Davydov93030d82014-05-06 12:49:59 -07005563 else if (root_cache->max_attr_size < ARRAY_SIZE(mbuf))
Glauber Costa107dab52012-12-18 14:23:05 -08005564 buf = mbuf;
5565 else {
5566 buffer = (char *) get_zeroed_page(GFP_KERNEL);
5567 if (WARN_ON(!buffer))
5568 continue;
5569 buf = buffer;
5570 }
5571
Thomas Gleixner478fe302017-06-02 14:46:25 -07005572 len = attr->show(root_cache, buf);
5573 if (len > 0)
5574 attr->store(s, buf, len);
Glauber Costa107dab52012-12-18 14:23:05 -08005575 }
5576
5577 if (buffer)
5578 free_page((unsigned long)buffer);
Tobin C. Harding6dfd1b62019-05-13 17:16:09 -07005579#endif /* CONFIG_MEMCG */
Glauber Costa107dab52012-12-18 14:23:05 -08005580}
5581
Christoph Lameter41a21282014-05-06 12:50:08 -07005582static void kmem_cache_release(struct kobject *k)
5583{
5584 slab_kmem_cache_release(to_slab(k));
5585}
5586
Emese Revfy52cf25d2010-01-19 02:58:23 +01005587static const struct sysfs_ops slab_sysfs_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005588 .show = slab_attr_show,
5589 .store = slab_attr_store,
5590};
5591
5592static struct kobj_type slab_ktype = {
5593 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter41a21282014-05-06 12:50:08 -07005594 .release = kmem_cache_release,
Christoph Lameter81819f02007-05-06 14:49:36 -07005595};
5596
5597static int uevent_filter(struct kset *kset, struct kobject *kobj)
5598{
5599 struct kobj_type *ktype = get_ktype(kobj);
5600
5601 if (ktype == &slab_ktype)
5602 return 1;
5603 return 0;
5604}
5605
Emese Revfy9cd43612009-12-31 14:52:51 +01005606static const struct kset_uevent_ops slab_uevent_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005607 .filter = uevent_filter,
5608};
5609
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005610static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07005611
Vladimir Davydov9a417072014-04-07 15:39:31 -07005612static inline struct kset *cache_kset(struct kmem_cache *s)
5613{
Johannes Weiner127424c2016-01-20 15:02:32 -08005614#ifdef CONFIG_MEMCG
Vladimir Davydov9a417072014-04-07 15:39:31 -07005615 if (!is_root_cache(s))
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08005616 return s->memcg_params.root_cache->memcg_kset;
Vladimir Davydov9a417072014-04-07 15:39:31 -07005617#endif
5618 return slab_kset;
5619}
5620
Christoph Lameter81819f02007-05-06 14:49:36 -07005621#define ID_STR_LENGTH 64
5622
5623/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08005624 *
5625 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07005626 */
5627static char *create_unique_id(struct kmem_cache *s)
5628{
5629 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
5630 char *p = name;
5631
5632 BUG_ON(!name);
5633
5634 *p++ = ':';
5635 /*
5636 * First flags affecting slabcache operations. We will only
5637 * get here for aliasable slabs so we do not need to support
5638 * too many flags. The flags here must cover all flags that
5639 * are matched during merging to guarantee that the id is
5640 * unique.
5641 */
5642 if (s->flags & SLAB_CACHE_DMA)
5643 *p++ = 'd';
Nicolas Boichat6d6ea1e2019-03-28 20:43:42 -07005644 if (s->flags & SLAB_CACHE_DMA32)
5645 *p++ = 'D';
Christoph Lameter81819f02007-05-06 14:49:36 -07005646 if (s->flags & SLAB_RECLAIM_ACCOUNT)
5647 *p++ = 'a';
Laura Abbottbecfda62016-03-15 14:55:06 -07005648 if (s->flags & SLAB_CONSISTENCY_CHECKS)
Christoph Lameter81819f02007-05-06 14:49:36 -07005649 *p++ = 'F';
Vladimir Davydov230e9fc2016-01-14 15:18:15 -08005650 if (s->flags & SLAB_ACCOUNT)
5651 *p++ = 'A';
Christoph Lameter81819f02007-05-06 14:49:36 -07005652 if (p != name + 1)
5653 *p++ = '-';
Alexey Dobriyan44065b22018-04-05 16:21:20 -07005654 p += sprintf(p, "%07u", s->size);
Glauber Costa2633d7a2012-12-18 14:22:34 -08005655
Christoph Lameter81819f02007-05-06 14:49:36 -07005656 BUG_ON(p > name + ID_STR_LENGTH - 1);
5657 return name;
5658}
5659
Tejun Heo3b7b3142017-06-23 15:08:52 -07005660static void sysfs_slab_remove_workfn(struct work_struct *work)
5661{
5662 struct kmem_cache *s =
5663 container_of(work, struct kmem_cache, kobj_remove_work);
5664
5665 if (!s->kobj.state_in_sysfs)
5666 /*
5667 * For a memcg cache, this may be called during
5668 * deactivation and again on shutdown. Remove only once.
5669 * A cache is never shut down before deactivation is
5670 * complete, so no need to worry about synchronization.
5671 */
Vladimir Davydovf6ba4882017-08-18 15:16:08 -07005672 goto out;
Tejun Heo3b7b3142017-06-23 15:08:52 -07005673
5674#ifdef CONFIG_MEMCG
5675 kset_unregister(s->memcg_kset);
5676#endif
5677 kobject_uevent(&s->kobj, KOBJ_REMOVE);
Vladimir Davydovf6ba4882017-08-18 15:16:08 -07005678out:
Tejun Heo3b7b3142017-06-23 15:08:52 -07005679 kobject_put(&s->kobj);
5680}
5681
Christoph Lameter81819f02007-05-06 14:49:36 -07005682static int sysfs_slab_add(struct kmem_cache *s)
5683{
5684 int err;
5685 const char *name;
Tejun Heo1663f262017-02-22 15:41:39 -08005686 struct kset *kset = cache_kset(s);
Christoph Lameter45530c42012-11-28 16:23:07 +00005687 int unmergeable = slab_unmergeable(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07005688
Tejun Heo3b7b3142017-06-23 15:08:52 -07005689 INIT_WORK(&s->kobj_remove_work, sysfs_slab_remove_workfn);
5690
Tejun Heo1663f262017-02-22 15:41:39 -08005691 if (!kset) {
5692 kobject_init(&s->kobj, &slab_ktype);
5693 return 0;
5694 }
5695
Miles Chen11066382017-11-15 17:32:25 -08005696 if (!unmergeable && disable_higher_order_debug &&
5697 (slub_debug & DEBUG_METADATA_FLAGS))
5698 unmergeable = 1;
5699
Christoph Lameter81819f02007-05-06 14:49:36 -07005700 if (unmergeable) {
5701 /*
5702 * Slabcache can never be merged so we can use the name proper.
5703 * This is typically the case for debug situations. In that
5704 * case we can catch duplicate names easily.
5705 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005706 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005707 name = s->name;
5708 } else {
5709 /*
5710 * Create a unique name for the slab as a target
5711 * for the symlinks.
5712 */
5713 name = create_unique_id(s);
5714 }
5715
Tejun Heo1663f262017-02-22 15:41:39 -08005716 s->kobj.kset = kset;
Tetsuo Handa26e4f202014-01-04 16:32:31 +09005717 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, "%s", name);
Dave Jones54b6a732014-04-07 15:39:32 -07005718 if (err)
Konstantin Khlebnikov80da0262015-09-04 15:45:51 -07005719 goto out;
Christoph Lameter81819f02007-05-06 14:49:36 -07005720
5721 err = sysfs_create_group(&s->kobj, &slab_attr_group);
Dave Jones54b6a732014-04-07 15:39:32 -07005722 if (err)
5723 goto out_del_kobj;
Vladimir Davydov9a417072014-04-07 15:39:31 -07005724
Johannes Weiner127424c2016-01-20 15:02:32 -08005725#ifdef CONFIG_MEMCG
Tejun Heo1663f262017-02-22 15:41:39 -08005726 if (is_root_cache(s) && memcg_sysfs_enabled) {
Vladimir Davydov9a417072014-04-07 15:39:31 -07005727 s->memcg_kset = kset_create_and_add("cgroup", NULL, &s->kobj);
5728 if (!s->memcg_kset) {
Dave Jones54b6a732014-04-07 15:39:32 -07005729 err = -ENOMEM;
5730 goto out_del_kobj;
Vladimir Davydov9a417072014-04-07 15:39:31 -07005731 }
5732 }
5733#endif
5734
Christoph Lameter81819f02007-05-06 14:49:36 -07005735 kobject_uevent(&s->kobj, KOBJ_ADD);
5736 if (!unmergeable) {
5737 /* Setup first alias */
5738 sysfs_slab_alias(s, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005739 }
Dave Jones54b6a732014-04-07 15:39:32 -07005740out:
5741 if (!unmergeable)
5742 kfree(name);
5743 return err;
5744out_del_kobj:
5745 kobject_del(&s->kobj);
Dave Jones54b6a732014-04-07 15:39:32 -07005746 goto out;
Christoph Lameter81819f02007-05-06 14:49:36 -07005747}
5748
Tejun Heobf5eb3d2017-02-22 15:41:11 -08005749static void sysfs_slab_remove(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07005750{
Christoph Lameter97d06602012-07-06 15:25:11 -05005751 if (slab_state < FULL)
Christoph Lameter2bce6482010-07-19 11:39:11 -05005752 /*
5753 * Sysfs has not been setup yet so no need to remove the
5754 * cache from sysfs.
5755 */
5756 return;
5757
Tejun Heo3b7b3142017-06-23 15:08:52 -07005758 kobject_get(&s->kobj);
5759 schedule_work(&s->kobj_remove_work);
Tejun Heobf5eb3d2017-02-22 15:41:11 -08005760}
5761
Mikulas Patockad50d82f2018-06-27 23:26:09 -07005762void sysfs_slab_unlink(struct kmem_cache *s)
5763{
5764 if (slab_state >= FULL)
5765 kobject_del(&s->kobj);
5766}
5767
Tejun Heobf5eb3d2017-02-22 15:41:11 -08005768void sysfs_slab_release(struct kmem_cache *s)
5769{
5770 if (slab_state >= FULL)
5771 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07005772}
5773
5774/*
5775 * Need to buffer aliases during bootup until sysfs becomes
Nick Andrew9f6c708e2008-12-05 14:08:08 +11005776 * available lest we lose that information.
Christoph Lameter81819f02007-05-06 14:49:36 -07005777 */
5778struct saved_alias {
5779 struct kmem_cache *s;
5780 const char *name;
5781 struct saved_alias *next;
5782};
5783
Adrian Bunk5af328a2007-07-17 04:03:27 -07005784static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07005785
5786static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
5787{
5788 struct saved_alias *al;
5789
Christoph Lameter97d06602012-07-06 15:25:11 -05005790 if (slab_state == FULL) {
Christoph Lameter81819f02007-05-06 14:49:36 -07005791 /*
5792 * If we have a leftover link then remove it.
5793 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005794 sysfs_remove_link(&slab_kset->kobj, name);
5795 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005796 }
5797
5798 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
5799 if (!al)
5800 return -ENOMEM;
5801
5802 al->s = s;
5803 al->name = name;
5804 al->next = alias_list;
5805 alias_list = al;
5806 return 0;
5807}
5808
5809static int __init slab_sysfs_init(void)
5810{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07005811 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07005812 int err;
5813
Christoph Lameter18004c52012-07-06 15:25:12 -05005814 mutex_lock(&slab_mutex);
Christoph Lameter2bce6482010-07-19 11:39:11 -05005815
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08005816 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005817 if (!slab_kset) {
Christoph Lameter18004c52012-07-06 15:25:12 -05005818 mutex_unlock(&slab_mutex);
Fabian Frederickf9f58282014-06-04 16:06:34 -07005819 pr_err("Cannot register slab subsystem.\n");
Christoph Lameter81819f02007-05-06 14:49:36 -07005820 return -ENOSYS;
5821 }
5822
Christoph Lameter97d06602012-07-06 15:25:11 -05005823 slab_state = FULL;
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005824
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07005825 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005826 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07005827 if (err)
Fabian Frederickf9f58282014-06-04 16:06:34 -07005828 pr_err("SLUB: Unable to add boot slab %s to sysfs\n",
5829 s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005830 }
Christoph Lameter81819f02007-05-06 14:49:36 -07005831
5832 while (alias_list) {
5833 struct saved_alias *al = alias_list;
5834
5835 alias_list = alias_list->next;
5836 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07005837 if (err)
Fabian Frederickf9f58282014-06-04 16:06:34 -07005838 pr_err("SLUB: Unable to add boot slab alias %s to sysfs\n",
5839 al->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005840 kfree(al);
5841 }
5842
Christoph Lameter18004c52012-07-06 15:25:12 -05005843 mutex_unlock(&slab_mutex);
Christoph Lameter81819f02007-05-06 14:49:36 -07005844 resiliency_test();
5845 return 0;
5846}
5847
5848__initcall(slab_sysfs_init);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005849#endif /* CONFIG_SYSFS */
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005850
5851/*
5852 * The /proc/slabinfo ABI
5853 */
Yang Shi5b365772017-11-15 17:32:03 -08005854#ifdef CONFIG_SLUB_DEBUG
Glauber Costa0d7561c2012-10-19 18:20:27 +04005855void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo)
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005856{
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005857 unsigned long nr_slabs = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03005858 unsigned long nr_objs = 0;
5859 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005860 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07005861 struct kmem_cache_node *n;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005862
Christoph Lameterfa45dc22014-08-06 16:04:09 -07005863 for_each_kmem_cache_node(s, node, n) {
Wanpeng Lic17fd132013-07-04 08:33:26 +08005864 nr_slabs += node_nr_slabs(n);
5865 nr_objs += node_nr_objs(n);
Christoph Lameter205ab992008-04-14 19:11:40 +03005866 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005867 }
5868
Glauber Costa0d7561c2012-10-19 18:20:27 +04005869 sinfo->active_objs = nr_objs - nr_free;
5870 sinfo->num_objs = nr_objs;
5871 sinfo->active_slabs = nr_slabs;
5872 sinfo->num_slabs = nr_slabs;
5873 sinfo->objects_per_slab = oo_objects(s->oo);
5874 sinfo->cache_order = oo_order(s->oo);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005875}
5876
Glauber Costa0d7561c2012-10-19 18:20:27 +04005877void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *s)
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005878{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005879}
5880
Glauber Costab7454ad2012-10-19 18:20:25 +04005881ssize_t slabinfo_write(struct file *file, const char __user *buffer,
5882 size_t count, loff_t *ppos)
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005883{
Glauber Costab7454ad2012-10-19 18:20:25 +04005884 return -EIO;
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005885}
Yang Shi5b365772017-11-15 17:32:03 -08005886#endif /* CONFIG_SLUB_DEBUG */