GNU Linux-libre 4.9.337-gnu1
[releases.git] / mm / slub.c
1 /*
2  * SLUB: A slab allocator that limits cache line use instead of queuing
3  * objects in per cpu and per node lists.
4  *
5  * The allocator synchronizes using per slab locks or atomic operatios
6  * and only uses a centralized lock to manage a pool of partial slabs.
7  *
8  * (C) 2007 SGI, Christoph Lameter
9  * (C) 2011 Linux Foundation, Christoph Lameter
10  */
11
12 #include <linux/mm.h>
13 #include <linux/swap.h> /* struct reclaim_state */
14 #include <linux/module.h>
15 #include <linux/bit_spinlock.h>
16 #include <linux/interrupt.h>
17 #include <linux/bitops.h>
18 #include <linux/slab.h>
19 #include "slab.h"
20 #include <linux/proc_fs.h>
21 #include <linux/notifier.h>
22 #include <linux/seq_file.h>
23 #include <linux/kasan.h>
24 #include <linux/kmemcheck.h>
25 #include <linux/cpu.h>
26 #include <linux/cpuset.h>
27 #include <linux/mempolicy.h>
28 #include <linux/ctype.h>
29 #include <linux/debugobjects.h>
30 #include <linux/kallsyms.h>
31 #include <linux/memory.h>
32 #include <linux/math64.h>
33 #include <linux/fault-inject.h>
34 #include <linux/stacktrace.h>
35 #include <linux/prefetch.h>
36 #include <linux/memcontrol.h>
37
38 #include <trace/events/kmem.h>
39
40 #include "internal.h"
41
42 /*
43  * Lock order:
44  *   1. slab_mutex (Global Mutex)
45  *   2. node->list_lock
46  *   3. slab_lock(page) (Only on some arches and for debugging)
47  *
48  *   slab_mutex
49  *
50  *   The role of the slab_mutex is to protect the list of all the slabs
51  *   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
54  *   have the ability to do a cmpxchg_double. It only protects the second
55  *   double word in the page struct. Meaning
56  *      A. page->freelist       -> List of object free in a page
57  *      B. page->counters       -> Counters of objects
58  *      C. page->frozen         -> frozen state
59  *
60  *   If a slab is frozen then it is exempt from list management. It is not
61  *   on any list. The processor that froze the slab is the one who can
62  *   perform list operations on the page. Other processors may put objects
63  *   onto the freelist but the processor that froze the slab is the only
64  *   one that can retrieve the objects from the page's freelist.
65  *
66  *   The list_lock protects the partial and full list on each node and
67  *   the partial slab counter. If taken then no new slabs may be added or
68  *   removed from the lists nor make the number of partial slabs be modified.
69  *   (Note that the total number of slabs is an atomic value that may be
70  *   modified without taking the list lock).
71  *
72  *   The list_lock is a centralized lock and thus we avoid taking it as
73  *   much as possible. As long as SLUB does not have to handle partial
74  *   slabs, operations can continue without any centralized lock. F.e.
75  *   allocating a long series of objects that fill up slabs does not require
76  *   the list lock.
77  *   Interrupts are disabled during allocation and deallocation in order to
78  *   make the slab allocator safe to use in the context of an irq. In addition
79  *   interrupts are disabled to ensure that the processor does not change
80  *   while handling per_cpu slabs, due to kernel preemption.
81  *
82  * SLUB assigns one slab for allocation to each processor.
83  * Allocations only occur from these slabs called cpu slabs.
84  *
85  * Slabs with free elements are kept on a partial list and during regular
86  * operations no list for full slabs is used. If an object in a full slab is
87  * freed then the slab will show up again on the partial lists.
88  * We track full slabs for debugging purposes though because otherwise we
89  * cannot scan all objects.
90  *
91  * Slabs are freed when they become empty. Teardown and setup is
92  * minimal so we rely on the page allocators per cpu caches for
93  * fast frees and allocs.
94  *
95  * Overloading of page flags that are otherwise used for LRU management.
96  *
97  * PageActive           The slab is frozen and exempt from list processing.
98  *                      This means that the slab is dedicated to a purpose
99  *                      such as satisfying allocations for a specific
100  *                      processor. Objects may be freed in the slab while
101  *                      it is frozen but slab_free will then skip the usual
102  *                      list operations. It is up to the processor holding
103  *                      the slab to integrate the slab into the slab lists
104  *                      when the slab is no longer needed.
105  *
106  *                      One use of this flag is to mark slabs that are
107  *                      used for allocations. Then such a slab becomes a cpu
108  *                      slab. The cpu slab may be equipped with an additional
109  *                      freelist that allows lockless access to
110  *                      free objects in addition to the regular freelist
111  *                      that requires the slab lock.
112  *
113  * PageError            Slab requires special handling due to debug
114  *                      options set. This moves slab handling out of
115  *                      the fast path and disables lockless freelists.
116  */
117
118 static inline int kmem_cache_debug(struct kmem_cache *s)
119 {
120 #ifdef CONFIG_SLUB_DEBUG
121         return unlikely(s->flags & SLAB_DEBUG_FLAGS);
122 #else
123         return 0;
124 #endif
125 }
126
127 void *fixup_red_left(struct kmem_cache *s, void *p)
128 {
129         if (kmem_cache_debug(s) && s->flags & SLAB_RED_ZONE)
130                 p += s->red_left_pad;
131
132         return p;
133 }
134
135 static inline bool kmem_cache_has_cpu_partial(struct kmem_cache *s)
136 {
137 #ifdef CONFIG_SLUB_CPU_PARTIAL
138         return !kmem_cache_debug(s);
139 #else
140         return false;
141 #endif
142 }
143
144 /*
145  * Issues still to be resolved:
146  *
147  * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
148  *
149  * - Variable sizing of the per node arrays
150  */
151
152 /* Enable to test recovery from slab corruption on boot */
153 #undef SLUB_RESILIENCY_TEST
154
155 /* Enable to log cmpxchg failures */
156 #undef SLUB_DEBUG_CMPXCHG
157
158 /*
159  * Mininum number of partial slabs. These will be left on the partial
160  * lists even if they are empty. kmem_cache_shrink may reclaim them.
161  */
162 #define MIN_PARTIAL 5
163
164 /*
165  * Maximum number of desirable partial slabs.
166  * The existence of more partial slabs makes kmem_cache_shrink
167  * sort the partial list by the number of objects in use.
168  */
169 #define MAX_PARTIAL 10
170
171 #define DEBUG_DEFAULT_FLAGS (SLAB_CONSISTENCY_CHECKS | SLAB_RED_ZONE | \
172                                 SLAB_POISON | SLAB_STORE_USER)
173
174 /*
175  * These debug flags cannot use CMPXCHG because there might be consistency
176  * issues when checking or reading debug information
177  */
178 #define SLAB_NO_CMPXCHG (SLAB_CONSISTENCY_CHECKS | SLAB_STORE_USER | \
179                                 SLAB_TRACE)
180
181
182 /*
183  * Debugging flags that require metadata to be stored in the slab.  These get
184  * disabled when slub_debug=O is used and a cache's min order increases with
185  * metadata.
186  */
187 #define DEBUG_METADATA_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
188
189 #define OO_SHIFT        16
190 #define OO_MASK         ((1 << OO_SHIFT) - 1)
191 #define MAX_OBJS_PER_PAGE       32767 /* since page.objects is u15 */
192
193 /* Internal SLUB flags */
194 #define __OBJECT_POISON         0x80000000UL /* Poison object */
195 #define __CMPXCHG_DOUBLE        0x40000000UL /* Use cmpxchg_double */
196
197 /*
198  * Tracking user of a slab.
199  */
200 #define TRACK_ADDRS_COUNT 16
201 struct track {
202         unsigned long addr;     /* Called from address */
203 #ifdef CONFIG_STACKTRACE
204         unsigned long addrs[TRACK_ADDRS_COUNT]; /* Called from address */
205 #endif
206         int cpu;                /* Was running on cpu */
207         int pid;                /* Pid context */
208         unsigned long when;     /* When did the operation occur */
209 };
210
211 enum track_item { TRACK_ALLOC, TRACK_FREE };
212
213 #ifdef CONFIG_SYSFS
214 static int sysfs_slab_add(struct kmem_cache *);
215 static int sysfs_slab_alias(struct kmem_cache *, const char *);
216 static void memcg_propagate_slab_attrs(struct kmem_cache *s);
217 #else
218 static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
219 static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
220                                                         { return 0; }
221 static inline void memcg_propagate_slab_attrs(struct kmem_cache *s) { }
222 #endif
223
224 static inline void stat(const struct kmem_cache *s, enum stat_item si)
225 {
226 #ifdef CONFIG_SLUB_STATS
227         /*
228          * The rmw is racy on a preemptible kernel but this is acceptable, so
229          * avoid this_cpu_add()'s irq-disable overhead.
230          */
231         raw_cpu_inc(s->cpu_slab->stat[si]);
232 #endif
233 }
234
235 /********************************************************************
236  *                      Core slab cache functions
237  *******************************************************************/
238
239 static inline void *get_freepointer(struct kmem_cache *s, void *object)
240 {
241         return *(void **)(object + s->offset);
242 }
243
244 static void prefetch_freepointer(const struct kmem_cache *s, void *object)
245 {
246         prefetch(object + s->offset);
247 }
248
249 static inline void *get_freepointer_safe(struct kmem_cache *s, void *object)
250 {
251         void *p;
252
253         if (!debug_pagealloc_enabled())
254                 return get_freepointer(s, object);
255
256         probe_kernel_read(&p, (void **)(object + s->offset), sizeof(p));
257         return p;
258 }
259
260 static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
261 {
262         *(void **)(object + s->offset) = fp;
263 }
264
265 /* Loop over all objects in a slab */
266 #define for_each_object(__p, __s, __addr, __objects) \
267         for (__p = fixup_red_left(__s, __addr); \
268                 __p < (__addr) + (__objects) * (__s)->size; \
269                 __p += (__s)->size)
270
271 #define for_each_object_idx(__p, __idx, __s, __addr, __objects) \
272         for (__p = fixup_red_left(__s, __addr), __idx = 1; \
273                 __idx <= __objects; \
274                 __p += (__s)->size, __idx++)
275
276 /* Determine object index from a given position */
277 static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
278 {
279         return (p - addr) / s->size;
280 }
281
282 static inline int order_objects(int order, unsigned long size, int reserved)
283 {
284         return ((PAGE_SIZE << order) - reserved) / size;
285 }
286
287 static inline struct kmem_cache_order_objects oo_make(int order,
288                 unsigned long size, int reserved)
289 {
290         struct kmem_cache_order_objects x = {
291                 (order << OO_SHIFT) + order_objects(order, size, reserved)
292         };
293
294         return x;
295 }
296
297 static inline int oo_order(struct kmem_cache_order_objects x)
298 {
299         return x.x >> OO_SHIFT;
300 }
301
302 static inline int oo_objects(struct kmem_cache_order_objects x)
303 {
304         return x.x & OO_MASK;
305 }
306
307 /*
308  * Per slab locking using the pagelock
309  */
310 static __always_inline void slab_lock(struct page *page)
311 {
312         VM_BUG_ON_PAGE(PageTail(page), page);
313         bit_spin_lock(PG_locked, &page->flags);
314 }
315
316 static __always_inline void slab_unlock(struct page *page)
317 {
318         VM_BUG_ON_PAGE(PageTail(page), page);
319         __bit_spin_unlock(PG_locked, &page->flags);
320 }
321
322 static inline void set_page_slub_counters(struct page *page, unsigned long counters_new)
323 {
324         struct page tmp;
325         tmp.counters = counters_new;
326         /*
327          * page->counters can cover frozen/inuse/objects as well
328          * as page->_refcount.  If we assign to ->counters directly
329          * we run the risk of losing updates to page->_refcount, so
330          * be careful and only assign to the fields we need.
331          */
332         page->frozen  = tmp.frozen;
333         page->inuse   = tmp.inuse;
334         page->objects = tmp.objects;
335 }
336
337 /* Interrupts must be disabled (for the fallback code to work right) */
338 static inline bool __cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
339                 void *freelist_old, unsigned long counters_old,
340                 void *freelist_new, unsigned long counters_new,
341                 const char *n)
342 {
343         VM_BUG_ON(!irqs_disabled());
344 #if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
345     defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
346         if (s->flags & __CMPXCHG_DOUBLE) {
347                 if (cmpxchg_double(&page->freelist, &page->counters,
348                                    freelist_old, counters_old,
349                                    freelist_new, counters_new))
350                         return true;
351         } else
352 #endif
353         {
354                 slab_lock(page);
355                 if (page->freelist == freelist_old &&
356                                         page->counters == counters_old) {
357                         page->freelist = freelist_new;
358                         set_page_slub_counters(page, counters_new);
359                         slab_unlock(page);
360                         return true;
361                 }
362                 slab_unlock(page);
363         }
364
365         cpu_relax();
366         stat(s, CMPXCHG_DOUBLE_FAIL);
367
368 #ifdef SLUB_DEBUG_CMPXCHG
369         pr_info("%s %s: cmpxchg double redo ", n, s->name);
370 #endif
371
372         return false;
373 }
374
375 static inline bool cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
376                 void *freelist_old, unsigned long counters_old,
377                 void *freelist_new, unsigned long counters_new,
378                 const char *n)
379 {
380 #if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
381     defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
382         if (s->flags & __CMPXCHG_DOUBLE) {
383                 if (cmpxchg_double(&page->freelist, &page->counters,
384                                    freelist_old, counters_old,
385                                    freelist_new, counters_new))
386                         return true;
387         } else
388 #endif
389         {
390                 unsigned long flags;
391
392                 local_irq_save(flags);
393                 slab_lock(page);
394                 if (page->freelist == freelist_old &&
395                                         page->counters == counters_old) {
396                         page->freelist = freelist_new;
397                         set_page_slub_counters(page, counters_new);
398                         slab_unlock(page);
399                         local_irq_restore(flags);
400                         return true;
401                 }
402                 slab_unlock(page);
403                 local_irq_restore(flags);
404         }
405
406         cpu_relax();
407         stat(s, CMPXCHG_DOUBLE_FAIL);
408
409 #ifdef SLUB_DEBUG_CMPXCHG
410         pr_info("%s %s: cmpxchg double redo ", n, s->name);
411 #endif
412
413         return false;
414 }
415
416 #ifdef CONFIG_SLUB_DEBUG
417 /*
418  * Determine a map of object in use on a page.
419  *
420  * Node listlock must be held to guarantee that the page does
421  * not vanish from under us.
422  */
423 static void get_map(struct kmem_cache *s, struct page *page, unsigned long *map)
424 {
425         void *p;
426         void *addr = page_address(page);
427
428         for (p = page->freelist; p; p = get_freepointer(s, p))
429                 set_bit(slab_index(p, s, addr), map);
430 }
431
432 static inline int size_from_object(struct kmem_cache *s)
433 {
434         if (s->flags & SLAB_RED_ZONE)
435                 return s->size - s->red_left_pad;
436
437         return s->size;
438 }
439
440 static inline void *restore_red_left(struct kmem_cache *s, void *p)
441 {
442         if (s->flags & SLAB_RED_ZONE)
443                 p -= s->red_left_pad;
444
445         return p;
446 }
447
448 /*
449  * Debug settings:
450  */
451 #if defined(CONFIG_SLUB_DEBUG_ON)
452 static int slub_debug = DEBUG_DEFAULT_FLAGS;
453 #else
454 static int slub_debug;
455 #endif
456
457 static char *slub_debug_slabs;
458 static int disable_higher_order_debug;
459
460 /*
461  * slub is about to manipulate internal object metadata.  This memory lies
462  * outside the range of the allocated object, so accessing it would normally
463  * be reported by kasan as a bounds error.  metadata_access_enable() is used
464  * to tell kasan that these accesses are OK.
465  */
466 static inline void metadata_access_enable(void)
467 {
468         kasan_disable_current();
469 }
470
471 static inline void metadata_access_disable(void)
472 {
473         kasan_enable_current();
474 }
475
476 /*
477  * Object debugging
478  */
479
480 /* Verify that a pointer has an address that is valid within a slab page */
481 static inline int check_valid_pointer(struct kmem_cache *s,
482                                 struct page *page, void *object)
483 {
484         void *base;
485
486         if (!object)
487                 return 1;
488
489         base = page_address(page);
490         object = restore_red_left(s, object);
491         if (object < base || object >= base + page->objects * s->size ||
492                 (object - base) % s->size) {
493                 return 0;
494         }
495
496         return 1;
497 }
498
499 static void print_section(char *level, char *text, u8 *addr,
500                           unsigned int length)
501 {
502         metadata_access_enable();
503         print_hex_dump(level, text, DUMP_PREFIX_ADDRESS, 16, 1, addr,
504                         length, 1);
505         metadata_access_disable();
506 }
507
508 static struct track *get_track(struct kmem_cache *s, void *object,
509         enum track_item alloc)
510 {
511         struct track *p;
512
513         if (s->offset)
514                 p = object + s->offset + sizeof(void *);
515         else
516                 p = object + s->inuse;
517
518         return p + alloc;
519 }
520
521 static void set_track(struct kmem_cache *s, void *object,
522                         enum track_item alloc, unsigned long addr)
523 {
524         struct track *p = get_track(s, object, alloc);
525
526         if (addr) {
527 #ifdef CONFIG_STACKTRACE
528                 struct stack_trace trace;
529                 int i;
530
531                 trace.nr_entries = 0;
532                 trace.max_entries = TRACK_ADDRS_COUNT;
533                 trace.entries = p->addrs;
534                 trace.skip = 3;
535                 metadata_access_enable();
536                 save_stack_trace(&trace);
537                 metadata_access_disable();
538
539                 /* See rant in lockdep.c */
540                 if (trace.nr_entries != 0 &&
541                     trace.entries[trace.nr_entries - 1] == ULONG_MAX)
542                         trace.nr_entries--;
543
544                 for (i = trace.nr_entries; i < TRACK_ADDRS_COUNT; i++)
545                         p->addrs[i] = 0;
546 #endif
547                 p->addr = addr;
548                 p->cpu = smp_processor_id();
549                 p->pid = current->pid;
550                 p->when = jiffies;
551         } else
552                 memset(p, 0, sizeof(struct track));
553 }
554
555 static void init_tracking(struct kmem_cache *s, void *object)
556 {
557         if (!(s->flags & SLAB_STORE_USER))
558                 return;
559
560         set_track(s, object, TRACK_FREE, 0UL);
561         set_track(s, object, TRACK_ALLOC, 0UL);
562 }
563
564 static void print_track(const char *s, struct track *t)
565 {
566         if (!t->addr)
567                 return;
568
569         pr_err("INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
570                s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
571 #ifdef CONFIG_STACKTRACE
572         {
573                 int i;
574                 for (i = 0; i < TRACK_ADDRS_COUNT; i++)
575                         if (t->addrs[i])
576                                 pr_err("\t%pS\n", (void *)t->addrs[i]);
577                         else
578                                 break;
579         }
580 #endif
581 }
582
583 static void print_tracking(struct kmem_cache *s, void *object)
584 {
585         if (!(s->flags & SLAB_STORE_USER))
586                 return;
587
588         print_track("Allocated", get_track(s, object, TRACK_ALLOC));
589         print_track("Freed", get_track(s, object, TRACK_FREE));
590 }
591
592 static void print_page_info(struct page *page)
593 {
594         pr_err("INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
595                page, page->objects, page->inuse, page->freelist, page->flags);
596
597 }
598
599 static void slab_bug(struct kmem_cache *s, char *fmt, ...)
600 {
601         struct va_format vaf;
602         va_list args;
603
604         va_start(args, fmt);
605         vaf.fmt = fmt;
606         vaf.va = &args;
607         pr_err("=============================================================================\n");
608         pr_err("BUG %s (%s): %pV\n", s->name, print_tainted(), &vaf);
609         pr_err("-----------------------------------------------------------------------------\n\n");
610
611         add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
612         va_end(args);
613 }
614
615 static void slab_fix(struct kmem_cache *s, char *fmt, ...)
616 {
617         struct va_format vaf;
618         va_list args;
619
620         va_start(args, fmt);
621         vaf.fmt = fmt;
622         vaf.va = &args;
623         pr_err("FIX %s: %pV\n", s->name, &vaf);
624         va_end(args);
625 }
626
627 static bool freelist_corrupted(struct kmem_cache *s, struct page *page,
628                                void **freelist, void *nextfree)
629 {
630         if ((s->flags & SLAB_CONSISTENCY_CHECKS) &&
631             !check_valid_pointer(s, page, nextfree) && freelist) {
632                 object_err(s, page, *freelist, "Freechain corrupt");
633                 *freelist = NULL;
634                 slab_fix(s, "Isolate corrupted freechain");
635                 return true;
636         }
637
638         return false;
639 }
640
641 static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
642 {
643         unsigned int off;       /* Offset of last byte */
644         u8 *addr = page_address(page);
645
646         print_tracking(s, p);
647
648         print_page_info(page);
649
650         pr_err("INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
651                p, p - addr, get_freepointer(s, p));
652
653         if (s->flags & SLAB_RED_ZONE)
654                 print_section(KERN_ERR, "Redzone ", p - s->red_left_pad,
655                               s->red_left_pad);
656         else if (p > addr + 16)
657                 print_section(KERN_ERR, "Bytes b4 ", p - 16, 16);
658
659         print_section(KERN_ERR, "Object ", p,
660                       min_t(unsigned long, s->object_size, PAGE_SIZE));
661         if (s->flags & SLAB_RED_ZONE)
662                 print_section(KERN_ERR, "Redzone ", p + s->object_size,
663                         s->inuse - s->object_size);
664
665         if (s->offset)
666                 off = s->offset + sizeof(void *);
667         else
668                 off = s->inuse;
669
670         if (s->flags & SLAB_STORE_USER)
671                 off += 2 * sizeof(struct track);
672
673         off += kasan_metadata_size(s);
674
675         if (off != size_from_object(s))
676                 /* Beginning of the filler is the free pointer */
677                 print_section(KERN_ERR, "Padding ", p + off,
678                               size_from_object(s) - off);
679
680         dump_stack();
681 }
682
683 void object_err(struct kmem_cache *s, struct page *page,
684                         u8 *object, char *reason)
685 {
686         slab_bug(s, "%s", reason);
687         print_trailer(s, page, object);
688 }
689
690 static __printf(3, 4) void slab_err(struct kmem_cache *s, struct page *page,
691                         const char *fmt, ...)
692 {
693         va_list args;
694         char buf[100];
695
696         va_start(args, fmt);
697         vsnprintf(buf, sizeof(buf), fmt, args);
698         va_end(args);
699         slab_bug(s, "%s", buf);
700         print_page_info(page);
701         dump_stack();
702 }
703
704 static void init_object(struct kmem_cache *s, void *object, u8 val)
705 {
706         u8 *p = object;
707
708         if (s->flags & SLAB_RED_ZONE)
709                 memset(p - s->red_left_pad, val, s->red_left_pad);
710
711         if (s->flags & __OBJECT_POISON) {
712                 memset(p, POISON_FREE, s->object_size - 1);
713                 p[s->object_size - 1] = POISON_END;
714         }
715
716         if (s->flags & SLAB_RED_ZONE)
717                 memset(p + s->object_size, val, s->inuse - s->object_size);
718 }
719
720 static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
721                                                 void *from, void *to)
722 {
723         slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
724         memset(from, data, to - from);
725 }
726
727 static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
728                         u8 *object, char *what,
729                         u8 *start, unsigned int value, unsigned int bytes)
730 {
731         u8 *fault;
732         u8 *end;
733
734         metadata_access_enable();
735         fault = memchr_inv(start, value, bytes);
736         metadata_access_disable();
737         if (!fault)
738                 return 1;
739
740         end = start + bytes;
741         while (end > fault && end[-1] == value)
742                 end--;
743
744         slab_bug(s, "%s overwritten", what);
745         pr_err("INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
746                                         fault, end - 1, fault[0], value);
747         print_trailer(s, page, object);
748
749         restore_bytes(s, what, value, fault, end);
750         return 0;
751 }
752
753 /*
754  * Object layout:
755  *
756  * object address
757  *      Bytes of the object to be managed.
758  *      If the freepointer may overlay the object then the free
759  *      pointer is the first word of the object.
760  *
761  *      Poisoning uses 0x6b (POISON_FREE) and the last byte is
762  *      0xa5 (POISON_END)
763  *
764  * object + s->object_size
765  *      Padding to reach word boundary. This is also used for Redzoning.
766  *      Padding is extended by another word if Redzoning is enabled and
767  *      object_size == inuse.
768  *
769  *      We fill with 0xbb (RED_INACTIVE) for inactive objects and with
770  *      0xcc (RED_ACTIVE) for objects in use.
771  *
772  * object + s->inuse
773  *      Meta data starts here.
774  *
775  *      A. Free pointer (if we cannot overwrite object on free)
776  *      B. Tracking data for SLAB_STORE_USER
777  *      C. Padding to reach required alignment boundary or at mininum
778  *              one word if debugging is on to be able to detect writes
779  *              before the word boundary.
780  *
781  *      Padding is done using 0x5a (POISON_INUSE)
782  *
783  * object + s->size
784  *      Nothing is used beyond s->size.
785  *
786  * If slabcaches are merged then the object_size and inuse boundaries are mostly
787  * ignored. And therefore no slab options that rely on these boundaries
788  * may be used with merged slabcaches.
789  */
790
791 static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
792 {
793         unsigned long off = s->inuse;   /* The end of info */
794
795         if (s->offset)
796                 /* Freepointer is placed after the object. */
797                 off += sizeof(void *);
798
799         if (s->flags & SLAB_STORE_USER)
800                 /* We also have user information there */
801                 off += 2 * sizeof(struct track);
802
803         off += kasan_metadata_size(s);
804
805         if (size_from_object(s) == off)
806                 return 1;
807
808         return check_bytes_and_report(s, page, p, "Object padding",
809                         p + off, POISON_INUSE, size_from_object(s) - off);
810 }
811
812 /* Check the pad bytes at the end of a slab page */
813 static int slab_pad_check(struct kmem_cache *s, struct page *page)
814 {
815         u8 *start;
816         u8 *fault;
817         u8 *end;
818         int length;
819         int remainder;
820
821         if (!(s->flags & SLAB_POISON))
822                 return 1;
823
824         start = page_address(page);
825         length = (PAGE_SIZE << compound_order(page)) - s->reserved;
826         end = start + length;
827         remainder = length % s->size;
828         if (!remainder)
829                 return 1;
830
831         metadata_access_enable();
832         fault = memchr_inv(end - remainder, POISON_INUSE, remainder);
833         metadata_access_disable();
834         if (!fault)
835                 return 1;
836         while (end > fault && end[-1] == POISON_INUSE)
837                 end--;
838
839         slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
840         print_section(KERN_ERR, "Padding ", end - remainder, remainder);
841
842         restore_bytes(s, "slab padding", POISON_INUSE, end - remainder, end);
843         return 0;
844 }
845
846 static int check_object(struct kmem_cache *s, struct page *page,
847                                         void *object, u8 val)
848 {
849         u8 *p = object;
850         u8 *endobject = object + s->object_size;
851
852         if (s->flags & SLAB_RED_ZONE) {
853                 if (!check_bytes_and_report(s, page, object, "Redzone",
854                         object - s->red_left_pad, val, s->red_left_pad))
855                         return 0;
856
857                 if (!check_bytes_and_report(s, page, object, "Redzone",
858                         endobject, val, s->inuse - s->object_size))
859                         return 0;
860         } else {
861                 if ((s->flags & SLAB_POISON) && s->object_size < s->inuse) {
862                         check_bytes_and_report(s, page, p, "Alignment padding",
863                                 endobject, POISON_INUSE,
864                                 s->inuse - s->object_size);
865                 }
866         }
867
868         if (s->flags & SLAB_POISON) {
869                 if (val != SLUB_RED_ACTIVE && (s->flags & __OBJECT_POISON) &&
870                         (!check_bytes_and_report(s, page, p, "Poison", p,
871                                         POISON_FREE, s->object_size - 1) ||
872                          !check_bytes_and_report(s, page, p, "Poison",
873                                 p + s->object_size - 1, POISON_END, 1)))
874                         return 0;
875                 /*
876                  * check_pad_bytes cleans up on its own.
877                  */
878                 check_pad_bytes(s, page, p);
879         }
880
881         if (!s->offset && val == SLUB_RED_ACTIVE)
882                 /*
883                  * Object and freepointer overlap. Cannot check
884                  * freepointer while object is allocated.
885                  */
886                 return 1;
887
888         /* Check free pointer validity */
889         if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
890                 object_err(s, page, p, "Freepointer corrupt");
891                 /*
892                  * No choice but to zap it and thus lose the remainder
893                  * of the free objects in this slab. May cause
894                  * another error because the object count is now wrong.
895                  */
896                 set_freepointer(s, p, NULL);
897                 return 0;
898         }
899         return 1;
900 }
901
902 static int check_slab(struct kmem_cache *s, struct page *page)
903 {
904         int maxobj;
905
906         VM_BUG_ON(!irqs_disabled());
907
908         if (!PageSlab(page)) {
909                 slab_err(s, page, "Not a valid slab page");
910                 return 0;
911         }
912
913         maxobj = order_objects(compound_order(page), s->size, s->reserved);
914         if (page->objects > maxobj) {
915                 slab_err(s, page, "objects %u > max %u",
916                         page->objects, maxobj);
917                 return 0;
918         }
919         if (page->inuse > page->objects) {
920                 slab_err(s, page, "inuse %u > max %u",
921                         page->inuse, page->objects);
922                 return 0;
923         }
924         /* Slab_pad_check fixes things up after itself */
925         slab_pad_check(s, page);
926         return 1;
927 }
928
929 /*
930  * Determine if a certain object on a page is on the freelist. Must hold the
931  * slab lock to guarantee that the chains are in a consistent state.
932  */
933 static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
934 {
935         int nr = 0;
936         void *fp;
937         void *object = NULL;
938         int max_objects;
939
940         fp = page->freelist;
941         while (fp && nr <= page->objects) {
942                 if (fp == search)
943                         return 1;
944                 if (!check_valid_pointer(s, page, fp)) {
945                         if (object) {
946                                 object_err(s, page, object,
947                                         "Freechain corrupt");
948                                 set_freepointer(s, object, NULL);
949                         } else {
950                                 slab_err(s, page, "Freepointer corrupt");
951                                 page->freelist = NULL;
952                                 page->inuse = page->objects;
953                                 slab_fix(s, "Freelist cleared");
954                                 return 0;
955                         }
956                         break;
957                 }
958                 object = fp;
959                 fp = get_freepointer(s, object);
960                 nr++;
961         }
962
963         max_objects = order_objects(compound_order(page), s->size, s->reserved);
964         if (max_objects > MAX_OBJS_PER_PAGE)
965                 max_objects = MAX_OBJS_PER_PAGE;
966
967         if (page->objects != max_objects) {
968                 slab_err(s, page, "Wrong number of objects. Found %d but should be %d",
969                          page->objects, max_objects);
970                 page->objects = max_objects;
971                 slab_fix(s, "Number of objects adjusted.");
972         }
973         if (page->inuse != page->objects - nr) {
974                 slab_err(s, page, "Wrong object count. Counter is %d but counted were %d",
975                          page->inuse, page->objects - nr);
976                 page->inuse = page->objects - nr;
977                 slab_fix(s, "Object count adjusted.");
978         }
979         return search == NULL;
980 }
981
982 static void trace(struct kmem_cache *s, struct page *page, void *object,
983                                                                 int alloc)
984 {
985         if (s->flags & SLAB_TRACE) {
986                 pr_info("TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
987                         s->name,
988                         alloc ? "alloc" : "free",
989                         object, page->inuse,
990                         page->freelist);
991
992                 if (!alloc)
993                         print_section(KERN_INFO, "Object ", (void *)object,
994                                         s->object_size);
995
996                 dump_stack();
997         }
998 }
999
1000 /*
1001  * Tracking of fully allocated slabs for debugging purposes.
1002  */
1003 static void add_full(struct kmem_cache *s,
1004         struct kmem_cache_node *n, struct page *page)
1005 {
1006         if (!(s->flags & SLAB_STORE_USER))
1007                 return;
1008
1009         lockdep_assert_held(&n->list_lock);
1010         list_add(&page->lru, &n->full);
1011 }
1012
1013 static void remove_full(struct kmem_cache *s, struct kmem_cache_node *n, struct page *page)
1014 {
1015         if (!(s->flags & SLAB_STORE_USER))
1016                 return;
1017
1018         lockdep_assert_held(&n->list_lock);
1019         list_del(&page->lru);
1020 }
1021
1022 /* Tracking of the number of slabs for debugging purposes */
1023 static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1024 {
1025         struct kmem_cache_node *n = get_node(s, node);
1026
1027         return atomic_long_read(&n->nr_slabs);
1028 }
1029
1030 static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1031 {
1032         return atomic_long_read(&n->nr_slabs);
1033 }
1034
1035 static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
1036 {
1037         struct kmem_cache_node *n = get_node(s, node);
1038
1039         /*
1040          * May be called early in order to allocate a slab for the
1041          * kmem_cache_node structure. Solve the chicken-egg
1042          * dilemma by deferring the increment of the count during
1043          * bootstrap (see early_kmem_cache_node_alloc).
1044          */
1045         if (likely(n)) {
1046                 atomic_long_inc(&n->nr_slabs);
1047                 atomic_long_add(objects, &n->total_objects);
1048         }
1049 }
1050 static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
1051 {
1052         struct kmem_cache_node *n = get_node(s, node);
1053
1054         atomic_long_dec(&n->nr_slabs);
1055         atomic_long_sub(objects, &n->total_objects);
1056 }
1057
1058 /* Object debug checks for alloc/free paths */
1059 static void setup_object_debug(struct kmem_cache *s, struct page *page,
1060                                                                 void *object)
1061 {
1062         if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
1063                 return;
1064
1065         init_object(s, object, SLUB_RED_INACTIVE);
1066         init_tracking(s, object);
1067 }
1068
1069 static inline int alloc_consistency_checks(struct kmem_cache *s,
1070                                         struct page *page,
1071                                         void *object, unsigned long addr)
1072 {
1073         if (!check_slab(s, page))
1074                 return 0;
1075
1076         if (!check_valid_pointer(s, page, object)) {
1077                 object_err(s, page, object, "Freelist Pointer check fails");
1078                 return 0;
1079         }
1080
1081         if (!check_object(s, page, object, SLUB_RED_INACTIVE))
1082                 return 0;
1083
1084         return 1;
1085 }
1086
1087 static noinline int alloc_debug_processing(struct kmem_cache *s,
1088                                         struct page *page,
1089                                         void *object, unsigned long addr)
1090 {
1091         if (s->flags & SLAB_CONSISTENCY_CHECKS) {
1092                 if (!alloc_consistency_checks(s, page, object, addr))
1093                         goto bad;
1094         }
1095
1096         /* Success perform special debug activities for allocs */
1097         if (s->flags & SLAB_STORE_USER)
1098                 set_track(s, object, TRACK_ALLOC, addr);
1099         trace(s, page, object, 1);
1100         init_object(s, object, SLUB_RED_ACTIVE);
1101         return 1;
1102
1103 bad:
1104         if (PageSlab(page)) {
1105                 /*
1106                  * If this is a slab page then lets do the best we can
1107                  * to avoid issues in the future. Marking all objects
1108                  * as used avoids touching the remaining objects.
1109                  */
1110                 slab_fix(s, "Marking all objects used");
1111                 page->inuse = page->objects;
1112                 page->freelist = NULL;
1113         }
1114         return 0;
1115 }
1116
1117 static inline int free_consistency_checks(struct kmem_cache *s,
1118                 struct page *page, void *object, unsigned long addr)
1119 {
1120         if (!check_valid_pointer(s, page, object)) {
1121                 slab_err(s, page, "Invalid object pointer 0x%p", object);
1122                 return 0;
1123         }
1124
1125         if (on_freelist(s, page, object)) {
1126                 object_err(s, page, object, "Object already free");
1127                 return 0;
1128         }
1129
1130         if (!check_object(s, page, object, SLUB_RED_ACTIVE))
1131                 return 0;
1132
1133         if (unlikely(s != page->slab_cache)) {
1134                 if (!PageSlab(page)) {
1135                         slab_err(s, page, "Attempt to free object(0x%p) outside of slab",
1136                                  object);
1137                 } else if (!page->slab_cache) {
1138                         pr_err("SLUB <none>: no slab for object 0x%p.\n",
1139                                object);
1140                         dump_stack();
1141                 } else
1142                         object_err(s, page, object,
1143                                         "page slab pointer corrupt.");
1144                 return 0;
1145         }
1146         return 1;
1147 }
1148
1149 /* Supports checking bulk free of a constructed freelist */
1150 static noinline int free_debug_processing(
1151         struct kmem_cache *s, struct page *page,
1152         void *head, void *tail, int bulk_cnt,
1153         unsigned long addr)
1154 {
1155         struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1156         void *object = head;
1157         int cnt = 0;
1158         unsigned long uninitialized_var(flags);
1159         int ret = 0;
1160
1161         spin_lock_irqsave(&n->list_lock, flags);
1162         slab_lock(page);
1163
1164         if (s->flags & SLAB_CONSISTENCY_CHECKS) {
1165                 if (!check_slab(s, page))
1166                         goto out;
1167         }
1168
1169 next_object:
1170         cnt++;
1171
1172         if (s->flags & SLAB_CONSISTENCY_CHECKS) {
1173                 if (!free_consistency_checks(s, page, object, addr))
1174                         goto out;
1175         }
1176
1177         if (s->flags & SLAB_STORE_USER)
1178                 set_track(s, object, TRACK_FREE, addr);
1179         trace(s, page, object, 0);
1180         /* Freepointer not overwritten by init_object(), SLAB_POISON moved it */
1181         init_object(s, object, SLUB_RED_INACTIVE);
1182
1183         /* Reached end of constructed freelist yet? */
1184         if (object != tail) {
1185                 object = get_freepointer(s, object);
1186                 goto next_object;
1187         }
1188         ret = 1;
1189
1190 out:
1191         if (cnt != bulk_cnt)
1192                 slab_err(s, page, "Bulk freelist count(%d) invalid(%d)\n",
1193                          bulk_cnt, cnt);
1194
1195         slab_unlock(page);
1196         spin_unlock_irqrestore(&n->list_lock, flags);
1197         if (!ret)
1198                 slab_fix(s, "Object at 0x%p not freed", object);
1199         return ret;
1200 }
1201
1202 static int __init setup_slub_debug(char *str)
1203 {
1204         slub_debug = DEBUG_DEFAULT_FLAGS;
1205         if (*str++ != '=' || !*str)
1206                 /*
1207                  * No options specified. Switch on full debugging.
1208                  */
1209                 goto out;
1210
1211         if (*str == ',')
1212                 /*
1213                  * No options but restriction on slabs. This means full
1214                  * debugging for slabs matching a pattern.
1215                  */
1216                 goto check_slabs;
1217
1218         slub_debug = 0;
1219         if (*str == '-')
1220                 /*
1221                  * Switch off all debugging measures.
1222                  */
1223                 goto out;
1224
1225         /*
1226          * Determine which debug features should be switched on
1227          */
1228         for (; *str && *str != ','; str++) {
1229                 switch (tolower(*str)) {
1230                 case 'f':
1231                         slub_debug |= SLAB_CONSISTENCY_CHECKS;
1232                         break;
1233                 case 'z':
1234                         slub_debug |= SLAB_RED_ZONE;
1235                         break;
1236                 case 'p':
1237                         slub_debug |= SLAB_POISON;
1238                         break;
1239                 case 'u':
1240                         slub_debug |= SLAB_STORE_USER;
1241                         break;
1242                 case 't':
1243                         slub_debug |= SLAB_TRACE;
1244                         break;
1245                 case 'a':
1246                         slub_debug |= SLAB_FAILSLAB;
1247                         break;
1248                 case 'o':
1249                         /*
1250                          * Avoid enabling debugging on caches if its minimum
1251                          * order would increase as a result.
1252                          */
1253                         disable_higher_order_debug = 1;
1254                         break;
1255                 default:
1256                         pr_err("slub_debug option '%c' unknown. skipped\n",
1257                                *str);
1258                 }
1259         }
1260
1261 check_slabs:
1262         if (*str == ',')
1263                 slub_debug_slabs = str + 1;
1264 out:
1265         return 1;
1266 }
1267
1268 __setup("slub_debug", setup_slub_debug);
1269
1270 unsigned long kmem_cache_flags(unsigned long object_size,
1271         unsigned long flags, const char *name,
1272         void (*ctor)(void *))
1273 {
1274         /*
1275          * Enable debugging if selected on the kernel commandline.
1276          */
1277         if (slub_debug && (!slub_debug_slabs || (name &&
1278                 !strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs)))))
1279                 flags |= slub_debug;
1280
1281         return flags;
1282 }
1283 #else /* !CONFIG_SLUB_DEBUG */
1284 static inline void setup_object_debug(struct kmem_cache *s,
1285                         struct page *page, void *object) {}
1286
1287 static inline int alloc_debug_processing(struct kmem_cache *s,
1288         struct page *page, void *object, unsigned long addr) { return 0; }
1289
1290 static inline int free_debug_processing(
1291         struct kmem_cache *s, struct page *page,
1292         void *head, void *tail, int bulk_cnt,
1293         unsigned long addr) { return 0; }
1294
1295 static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1296                         { return 1; }
1297 static inline int check_object(struct kmem_cache *s, struct page *page,
1298                         void *object, u8 val) { return 1; }
1299 static inline void add_full(struct kmem_cache *s, struct kmem_cache_node *n,
1300                                         struct page *page) {}
1301 static inline void remove_full(struct kmem_cache *s, struct kmem_cache_node *n,
1302                                         struct page *page) {}
1303 unsigned long kmem_cache_flags(unsigned long object_size,
1304         unsigned long flags, const char *name,
1305         void (*ctor)(void *))
1306 {
1307         return flags;
1308 }
1309 #define slub_debug 0
1310
1311 #define disable_higher_order_debug 0
1312
1313 static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1314                                                         { return 0; }
1315 static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1316                                                         { return 0; }
1317 static inline void inc_slabs_node(struct kmem_cache *s, int node,
1318                                                         int objects) {}
1319 static inline void dec_slabs_node(struct kmem_cache *s, int node,
1320                                                         int objects) {}
1321
1322 static bool freelist_corrupted(struct kmem_cache *s, struct page *page,
1323                                void **freelist, void *nextfree)
1324 {
1325         return false;
1326 }
1327 #endif /* CONFIG_SLUB_DEBUG */
1328
1329 /*
1330  * Hooks for other subsystems that check memory allocations. In a typical
1331  * production configuration these hooks all should produce no code at all.
1332  */
1333 static inline void kmalloc_large_node_hook(void *ptr, size_t size, gfp_t flags)
1334 {
1335         kmemleak_alloc(ptr, size, 1, flags);
1336         kasan_kmalloc_large(ptr, size, flags);
1337 }
1338
1339 static inline void kfree_hook(const void *x)
1340 {
1341         kmemleak_free(x);
1342         kasan_kfree_large(x);
1343 }
1344
1345 static inline void *slab_free_hook(struct kmem_cache *s, void *x)
1346 {
1347         void *freeptr;
1348
1349         kmemleak_free_recursive(x, s->flags);
1350
1351         /*
1352          * Trouble is that we may no longer disable interrupts in the fast path
1353          * So in order to make the debug calls that expect irqs to be
1354          * disabled we need to disable interrupts temporarily.
1355          */
1356 #if defined(CONFIG_KMEMCHECK) || defined(CONFIG_LOCKDEP)
1357         {
1358                 unsigned long flags;
1359
1360                 local_irq_save(flags);
1361                 kmemcheck_slab_free(s, x, s->object_size);
1362                 debug_check_no_locks_freed(x, s->object_size);
1363                 local_irq_restore(flags);
1364         }
1365 #endif
1366         if (!(s->flags & SLAB_DEBUG_OBJECTS))
1367                 debug_check_no_obj_freed(x, s->object_size);
1368
1369         freeptr = get_freepointer(s, x);
1370         /*
1371          * kasan_slab_free() may put x into memory quarantine, delaying its
1372          * reuse. In this case the object's freelist pointer is changed.
1373          */
1374         kasan_slab_free(s, x);
1375         return freeptr;
1376 }
1377
1378 static inline void slab_free_freelist_hook(struct kmem_cache *s,
1379                                            void *head, void *tail)
1380 {
1381 /*
1382  * Compiler cannot detect this function can be removed if slab_free_hook()
1383  * evaluates to nothing.  Thus, catch all relevant config debug options here.
1384  */
1385 #if defined(CONFIG_KMEMCHECK) ||                \
1386         defined(CONFIG_LOCKDEP) ||              \
1387         defined(CONFIG_DEBUG_KMEMLEAK) ||       \
1388         defined(CONFIG_DEBUG_OBJECTS_FREE) ||   \
1389         defined(CONFIG_KASAN)
1390
1391         void *object = head;
1392         void *tail_obj = tail ? : head;
1393         void *freeptr;
1394
1395         do {
1396                 freeptr = slab_free_hook(s, object);
1397         } while ((object != tail_obj) && (object = freeptr));
1398 #endif
1399 }
1400
1401 static void setup_object(struct kmem_cache *s, struct page *page,
1402                                 void *object)
1403 {
1404         setup_object_debug(s, page, object);
1405         kasan_init_slab_obj(s, object);
1406         if (unlikely(s->ctor)) {
1407                 kasan_unpoison_object_data(s, object);
1408                 s->ctor(object);
1409                 kasan_poison_object_data(s, object);
1410         }
1411 }
1412
1413 /*
1414  * Slab allocation and freeing
1415  */
1416 static inline struct page *alloc_slab_page(struct kmem_cache *s,
1417                 gfp_t flags, int node, struct kmem_cache_order_objects oo)
1418 {
1419         struct page *page;
1420         int order = oo_order(oo);
1421
1422         flags |= __GFP_NOTRACK;
1423
1424         if (node == NUMA_NO_NODE)
1425                 page = alloc_pages(flags, order);
1426         else
1427                 page = __alloc_pages_node(node, flags, order);
1428
1429         if (page && memcg_charge_slab(page, flags, order, s)) {
1430                 __free_pages(page, order);
1431                 page = NULL;
1432         }
1433
1434         return page;
1435 }
1436
1437 #ifdef CONFIG_SLAB_FREELIST_RANDOM
1438 /* Pre-initialize the random sequence cache */
1439 static int init_cache_random_seq(struct kmem_cache *s)
1440 {
1441         int err;
1442         unsigned long i, count = oo_objects(s->oo);
1443
1444         /* Bailout if already initialised */
1445         if (s->random_seq)
1446                 return 0;
1447
1448         err = cache_random_seq_create(s, count, GFP_KERNEL);
1449         if (err) {
1450                 pr_err("SLUB: Unable to initialize free list for %s\n",
1451                         s->name);
1452                 return err;
1453         }
1454
1455         /* Transform to an offset on the set of pages */
1456         if (s->random_seq) {
1457                 for (i = 0; i < count; i++)
1458                         s->random_seq[i] *= s->size;
1459         }
1460         return 0;
1461 }
1462
1463 /* Initialize each random sequence freelist per cache */
1464 static void __init init_freelist_randomization(void)
1465 {
1466         struct kmem_cache *s;
1467
1468         mutex_lock(&slab_mutex);
1469
1470         list_for_each_entry(s, &slab_caches, list)
1471                 init_cache_random_seq(s);
1472
1473         mutex_unlock(&slab_mutex);
1474 }
1475
1476 /* Get the next entry on the pre-computed freelist randomized */
1477 static void *next_freelist_entry(struct kmem_cache *s, struct page *page,
1478                                 unsigned long *pos, void *start,
1479                                 unsigned long page_limit,
1480                                 unsigned long freelist_count)
1481 {
1482         unsigned int idx;
1483
1484         /*
1485          * If the target page allocation failed, the number of objects on the
1486          * page might be smaller than the usual size defined by the cache.
1487          */
1488         do {
1489                 idx = s->random_seq[*pos];
1490                 *pos += 1;
1491                 if (*pos >= freelist_count)
1492                         *pos = 0;
1493         } while (unlikely(idx >= page_limit));
1494
1495         return (char *)start + idx;
1496 }
1497
1498 /* Shuffle the single linked freelist based on a random pre-computed sequence */
1499 static bool shuffle_freelist(struct kmem_cache *s, struct page *page)
1500 {
1501         void *start;
1502         void *cur;
1503         void *next;
1504         unsigned long idx, pos, page_limit, freelist_count;
1505
1506         if (page->objects < 2 || !s->random_seq)
1507                 return false;
1508
1509         freelist_count = oo_objects(s->oo);
1510         pos = get_random_int() % freelist_count;
1511
1512         page_limit = page->objects * s->size;
1513         start = fixup_red_left(s, page_address(page));
1514
1515         /* First entry is used as the base of the freelist */
1516         cur = next_freelist_entry(s, page, &pos, start, page_limit,
1517                                 freelist_count);
1518         page->freelist = cur;
1519
1520         for (idx = 1; idx < page->objects; idx++) {
1521                 setup_object(s, page, cur);
1522                 next = next_freelist_entry(s, page, &pos, start, page_limit,
1523                         freelist_count);
1524                 set_freepointer(s, cur, next);
1525                 cur = next;
1526         }
1527         setup_object(s, page, cur);
1528         set_freepointer(s, cur, NULL);
1529
1530         return true;
1531 }
1532 #else
1533 static inline int init_cache_random_seq(struct kmem_cache *s)
1534 {
1535         return 0;
1536 }
1537 static inline void init_freelist_randomization(void) { }
1538 static inline bool shuffle_freelist(struct kmem_cache *s, struct page *page)
1539 {
1540         return false;
1541 }
1542 #endif /* CONFIG_SLAB_FREELIST_RANDOM */
1543
1544 static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1545 {
1546         struct page *page;
1547         struct kmem_cache_order_objects oo = s->oo;
1548         gfp_t alloc_gfp;
1549         void *start, *p;
1550         int idx, order;
1551         bool shuffle;
1552
1553         flags &= gfp_allowed_mask;
1554
1555         if (gfpflags_allow_blocking(flags))
1556                 local_irq_enable();
1557
1558         flags |= s->allocflags;
1559
1560         /*
1561          * Let the initial higher-order allocation fail under memory pressure
1562          * so we fall-back to the minimum order allocation.
1563          */
1564         alloc_gfp = (flags | __GFP_NOWARN | __GFP_NORETRY) & ~__GFP_NOFAIL;
1565         if ((alloc_gfp & __GFP_DIRECT_RECLAIM) && oo_order(oo) > oo_order(s->min))
1566                 alloc_gfp = (alloc_gfp | __GFP_NOMEMALLOC) & ~(__GFP_RECLAIM|__GFP_NOFAIL);
1567
1568         page = alloc_slab_page(s, alloc_gfp, node, oo);
1569         if (unlikely(!page)) {
1570                 oo = s->min;
1571                 alloc_gfp = flags;
1572                 /*
1573                  * Allocation may have failed due to fragmentation.
1574                  * Try a lower order alloc if possible
1575                  */
1576                 page = alloc_slab_page(s, alloc_gfp, node, oo);
1577                 if (unlikely(!page))
1578                         goto out;
1579                 stat(s, ORDER_FALLBACK);
1580         }
1581
1582         if (kmemcheck_enabled &&
1583             !(s->flags & (SLAB_NOTRACK | DEBUG_DEFAULT_FLAGS))) {
1584                 int pages = 1 << oo_order(oo);
1585
1586                 kmemcheck_alloc_shadow(page, oo_order(oo), alloc_gfp, node);
1587
1588                 /*
1589                  * Objects from caches that have a constructor don't get
1590                  * cleared when they're allocated, so we need to do it here.
1591                  */
1592                 if (s->ctor)
1593                         kmemcheck_mark_uninitialized_pages(page, pages);
1594                 else
1595                         kmemcheck_mark_unallocated_pages(page, pages);
1596         }
1597
1598         page->objects = oo_objects(oo);
1599
1600         order = compound_order(page);
1601         page->slab_cache = s;
1602         __SetPageSlab(page);
1603         if (page_is_pfmemalloc(page))
1604                 SetPageSlabPfmemalloc(page);
1605
1606         start = page_address(page);
1607
1608         if (unlikely(s->flags & SLAB_POISON))
1609                 memset(start, POISON_INUSE, PAGE_SIZE << order);
1610
1611         kasan_poison_slab(page);
1612
1613         shuffle = shuffle_freelist(s, page);
1614
1615         if (!shuffle) {
1616                 for_each_object_idx(p, idx, s, start, page->objects) {
1617                         setup_object(s, page, p);
1618                         if (likely(idx < page->objects))
1619                                 set_freepointer(s, p, p + s->size);
1620                         else
1621                                 set_freepointer(s, p, NULL);
1622                 }
1623                 page->freelist = fixup_red_left(s, start);
1624         }
1625
1626         page->inuse = page->objects;
1627         page->frozen = 1;
1628
1629 out:
1630         if (gfpflags_allow_blocking(flags))
1631                 local_irq_disable();
1632         if (!page)
1633                 return NULL;
1634
1635         mod_zone_page_state(page_zone(page),
1636                 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1637                 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
1638                 1 << oo_order(oo));
1639
1640         inc_slabs_node(s, page_to_nid(page), page->objects);
1641
1642         return page;
1643 }
1644
1645 static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1646 {
1647         if (unlikely(flags & GFP_SLAB_BUG_MASK)) {
1648                 gfp_t invalid_mask = flags & GFP_SLAB_BUG_MASK;
1649                 flags &= ~GFP_SLAB_BUG_MASK;
1650                 pr_warn("Unexpected gfp: %#x (%pGg). Fixing up to gfp: %#x (%pGg). Fix your code!\n",
1651                                 invalid_mask, &invalid_mask, flags, &flags);
1652         }
1653
1654         return allocate_slab(s,
1655                 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
1656 }
1657
1658 static void __free_slab(struct kmem_cache *s, struct page *page)
1659 {
1660         int order = compound_order(page);
1661         int pages = 1 << order;
1662
1663         if (s->flags & SLAB_CONSISTENCY_CHECKS) {
1664                 void *p;
1665
1666                 slab_pad_check(s, page);
1667                 for_each_object(p, s, page_address(page),
1668                                                 page->objects)
1669                         check_object(s, page, p, SLUB_RED_INACTIVE);
1670         }
1671
1672         kmemcheck_free_shadow(page, compound_order(page));
1673
1674         mod_zone_page_state(page_zone(page),
1675                 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1676                 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
1677                 -pages);
1678
1679         __ClearPageSlabPfmemalloc(page);
1680         __ClearPageSlab(page);
1681
1682         page_mapcount_reset(page);
1683         if (current->reclaim_state)
1684                 current->reclaim_state->reclaimed_slab += pages;
1685         memcg_uncharge_slab(page, order, s);
1686         __free_pages(page, order);
1687 }
1688
1689 #define need_reserve_slab_rcu                                           \
1690         (sizeof(((struct page *)NULL)->lru) < sizeof(struct rcu_head))
1691
1692 static void rcu_free_slab(struct rcu_head *h)
1693 {
1694         struct page *page;
1695
1696         if (need_reserve_slab_rcu)
1697                 page = virt_to_head_page(h);
1698         else
1699                 page = container_of((struct list_head *)h, struct page, lru);
1700
1701         __free_slab(page->slab_cache, page);
1702 }
1703
1704 static void free_slab(struct kmem_cache *s, struct page *page)
1705 {
1706         if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
1707                 struct rcu_head *head;
1708
1709                 if (need_reserve_slab_rcu) {
1710                         int order = compound_order(page);
1711                         int offset = (PAGE_SIZE << order) - s->reserved;
1712
1713                         VM_BUG_ON(s->reserved != sizeof(*head));
1714                         head = page_address(page) + offset;
1715                 } else {
1716                         head = &page->rcu_head;
1717                 }
1718
1719                 call_rcu(head, rcu_free_slab);
1720         } else
1721                 __free_slab(s, page);
1722 }
1723
1724 static void discard_slab(struct kmem_cache *s, struct page *page)
1725 {
1726         dec_slabs_node(s, page_to_nid(page), page->objects);
1727         free_slab(s, page);
1728 }
1729
1730 /*
1731  * Management of partially allocated slabs.
1732  */
1733 static inline void
1734 __add_partial(struct kmem_cache_node *n, struct page *page, int tail)
1735 {
1736         n->nr_partial++;
1737         if (tail == DEACTIVATE_TO_TAIL)
1738                 list_add_tail(&page->lru, &n->partial);
1739         else
1740                 list_add(&page->lru, &n->partial);
1741 }
1742
1743 static inline void add_partial(struct kmem_cache_node *n,
1744                                 struct page *page, int tail)
1745 {
1746         lockdep_assert_held(&n->list_lock);
1747         __add_partial(n, page, tail);
1748 }
1749
1750 static inline void remove_partial(struct kmem_cache_node *n,
1751                                         struct page *page)
1752 {
1753         lockdep_assert_held(&n->list_lock);
1754         list_del(&page->lru);
1755         n->nr_partial--;
1756 }
1757
1758 /*
1759  * Remove slab from the partial list, freeze it and
1760  * return the pointer to the freelist.
1761  *
1762  * Returns a list of objects or NULL if it fails.
1763  */
1764 static inline void *acquire_slab(struct kmem_cache *s,
1765                 struct kmem_cache_node *n, struct page *page,
1766                 int mode, int *objects)
1767 {
1768         void *freelist;
1769         unsigned long counters;
1770         struct page new;
1771
1772         lockdep_assert_held(&n->list_lock);
1773
1774         /*
1775          * Zap the freelist and set the frozen bit.
1776          * The old freelist is the list of objects for the
1777          * per cpu allocation list.
1778          */
1779         freelist = page->freelist;
1780         counters = page->counters;
1781         new.counters = counters;
1782         *objects = new.objects - new.inuse;
1783         if (mode) {
1784                 new.inuse = page->objects;
1785                 new.freelist = NULL;
1786         } else {
1787                 new.freelist = freelist;
1788         }
1789
1790         VM_BUG_ON(new.frozen);
1791         new.frozen = 1;
1792
1793         if (!__cmpxchg_double_slab(s, page,
1794                         freelist, counters,
1795                         new.freelist, new.counters,
1796                         "acquire_slab"))
1797                 return NULL;
1798
1799         remove_partial(n, page);
1800         WARN_ON(!freelist);
1801         return freelist;
1802 }
1803
1804 static void put_cpu_partial(struct kmem_cache *s, struct page *page, int drain);
1805 static inline bool pfmemalloc_match(struct page *page, gfp_t gfpflags);
1806
1807 /*
1808  * Try to allocate a partial slab from a specific node.
1809  */
1810 static void *get_partial_node(struct kmem_cache *s, struct kmem_cache_node *n,
1811                                 struct kmem_cache_cpu *c, gfp_t flags)
1812 {
1813         struct page *page, *page2;
1814         void *object = NULL;
1815         unsigned int available = 0;
1816         int objects;
1817
1818         /*
1819          * Racy check. If we mistakenly see no partial slabs then we
1820          * just allocate an empty slab. If we mistakenly try to get a
1821          * partial slab and there is none available then get_partials()
1822          * will return NULL.
1823          */
1824         if (!n || !n->nr_partial)
1825                 return NULL;
1826
1827         spin_lock(&n->list_lock);
1828         list_for_each_entry_safe(page, page2, &n->partial, lru) {
1829                 void *t;
1830
1831                 if (!pfmemalloc_match(page, flags))
1832                         continue;
1833
1834                 t = acquire_slab(s, n, page, object == NULL, &objects);
1835                 if (!t)
1836                         break;
1837
1838                 available += objects;
1839                 if (!object) {
1840                         c->page = page;
1841                         stat(s, ALLOC_FROM_PARTIAL);
1842                         object = t;
1843                 } else {
1844                         put_cpu_partial(s, page, 0);
1845                         stat(s, CPU_PARTIAL_NODE);
1846                 }
1847                 if (!kmem_cache_has_cpu_partial(s)
1848                         || available > s->cpu_partial / 2)
1849                         break;
1850
1851         }
1852         spin_unlock(&n->list_lock);
1853         return object;
1854 }
1855
1856 /*
1857  * Get a page from somewhere. Search in increasing NUMA distances.
1858  */
1859 static void *get_any_partial(struct kmem_cache *s, gfp_t flags,
1860                 struct kmem_cache_cpu *c)
1861 {
1862 #ifdef CONFIG_NUMA
1863         struct zonelist *zonelist;
1864         struct zoneref *z;
1865         struct zone *zone;
1866         enum zone_type high_zoneidx = gfp_zone(flags);
1867         void *object;
1868         unsigned int cpuset_mems_cookie;
1869
1870         /*
1871          * The defrag ratio allows a configuration of the tradeoffs between
1872          * inter node defragmentation and node local allocations. A lower
1873          * defrag_ratio increases the tendency to do local allocations
1874          * instead of attempting to obtain partial slabs from other nodes.
1875          *
1876          * If the defrag_ratio is set to 0 then kmalloc() always
1877          * returns node local objects. If the ratio is higher then kmalloc()
1878          * may return off node objects because partial slabs are obtained
1879          * from other nodes and filled up.
1880          *
1881          * If /sys/kernel/slab/xx/remote_node_defrag_ratio is set to 100
1882          * (which makes defrag_ratio = 1000) then every (well almost)
1883          * allocation will first attempt to defrag slab caches on other nodes.
1884          * This means scanning over all nodes to look for partial slabs which
1885          * may be expensive if we do it every time we are trying to find a slab
1886          * with available objects.
1887          */
1888         if (!s->remote_node_defrag_ratio ||
1889                         get_cycles() % 1024 > s->remote_node_defrag_ratio)
1890                 return NULL;
1891
1892         do {
1893                 cpuset_mems_cookie = read_mems_allowed_begin();
1894                 zonelist = node_zonelist(mempolicy_slab_node(), flags);
1895                 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
1896                         struct kmem_cache_node *n;
1897
1898                         n = get_node(s, zone_to_nid(zone));
1899
1900                         if (n && cpuset_zone_allowed(zone, flags) &&
1901                                         n->nr_partial > s->min_partial) {
1902                                 object = get_partial_node(s, n, c, flags);
1903                                 if (object) {
1904                                         /*
1905                                          * Don't check read_mems_allowed_retry()
1906                                          * here - if mems_allowed was updated in
1907                                          * parallel, that was a harmless race
1908                                          * between allocation and the cpuset
1909                                          * update
1910                                          */
1911                                         return object;
1912                                 }
1913                         }
1914                 }
1915         } while (read_mems_allowed_retry(cpuset_mems_cookie));
1916 #endif
1917         return NULL;
1918 }
1919
1920 /*
1921  * Get a partial page, lock it and return it.
1922  */
1923 static void *get_partial(struct kmem_cache *s, gfp_t flags, int node,
1924                 struct kmem_cache_cpu *c)
1925 {
1926         void *object;
1927         int searchnode = node;
1928
1929         if (node == NUMA_NO_NODE)
1930                 searchnode = numa_mem_id();
1931
1932         object = get_partial_node(s, get_node(s, searchnode), c, flags);
1933         if (object || node != NUMA_NO_NODE)
1934                 return object;
1935
1936         return get_any_partial(s, flags, c);
1937 }
1938
1939 #ifdef CONFIG_PREEMPT
1940 /*
1941  * Calculate the next globally unique transaction for disambiguiation
1942  * during cmpxchg. The transactions start with the cpu number and are then
1943  * incremented by CONFIG_NR_CPUS.
1944  */
1945 #define TID_STEP  roundup_pow_of_two(CONFIG_NR_CPUS)
1946 #else
1947 /*
1948  * No preemption supported therefore also no need to check for
1949  * different cpus.
1950  */
1951 #define TID_STEP 1
1952 #endif
1953
1954 static inline unsigned long next_tid(unsigned long tid)
1955 {
1956         return tid + TID_STEP;
1957 }
1958
1959 static inline unsigned int tid_to_cpu(unsigned long tid)
1960 {
1961         return tid % TID_STEP;
1962 }
1963
1964 static inline unsigned long tid_to_event(unsigned long tid)
1965 {
1966         return tid / TID_STEP;
1967 }
1968
1969 static inline unsigned int init_tid(int cpu)
1970 {
1971         return cpu;
1972 }
1973
1974 static inline void note_cmpxchg_failure(const char *n,
1975                 const struct kmem_cache *s, unsigned long tid)
1976 {
1977 #ifdef SLUB_DEBUG_CMPXCHG
1978         unsigned long actual_tid = __this_cpu_read(s->cpu_slab->tid);
1979
1980         pr_info("%s %s: cmpxchg redo ", n, s->name);
1981
1982 #ifdef CONFIG_PREEMPT
1983         if (tid_to_cpu(tid) != tid_to_cpu(actual_tid))
1984                 pr_warn("due to cpu change %d -> %d\n",
1985                         tid_to_cpu(tid), tid_to_cpu(actual_tid));
1986         else
1987 #endif
1988         if (tid_to_event(tid) != tid_to_event(actual_tid))
1989                 pr_warn("due to cpu running other code. Event %ld->%ld\n",
1990                         tid_to_event(tid), tid_to_event(actual_tid));
1991         else
1992                 pr_warn("for unknown reason: actual=%lx was=%lx target=%lx\n",
1993                         actual_tid, tid, next_tid(tid));
1994 #endif
1995         stat(s, CMPXCHG_DOUBLE_CPU_FAIL);
1996 }
1997
1998 static void init_kmem_cache_cpus(struct kmem_cache *s)
1999 {
2000         int cpu;
2001
2002         for_each_possible_cpu(cpu)
2003                 per_cpu_ptr(s->cpu_slab, cpu)->tid = init_tid(cpu);
2004 }
2005
2006 /*
2007  * Remove the cpu slab
2008  */
2009 static void deactivate_slab(struct kmem_cache *s, struct page *page,
2010                                 void *freelist)
2011 {
2012         enum slab_modes { M_NONE, M_PARTIAL, M_FULL, M_FREE };
2013         struct kmem_cache_node *n = get_node(s, page_to_nid(page));
2014         int lock = 0;
2015         enum slab_modes l = M_NONE, m = M_NONE;
2016         void *nextfree;
2017         int tail = DEACTIVATE_TO_HEAD;
2018         struct page new;
2019         struct page old;
2020
2021         if (page->freelist) {
2022                 stat(s, DEACTIVATE_REMOTE_FREES);
2023                 tail = DEACTIVATE_TO_TAIL;
2024         }
2025
2026         /*
2027          * Stage one: Free all available per cpu objects back
2028          * to the page freelist while it is still frozen. Leave the
2029          * last one.
2030          *
2031          * There is no need to take the list->lock because the page
2032          * is still frozen.
2033          */
2034         while (freelist && (nextfree = get_freepointer(s, freelist))) {
2035                 void *prior;
2036                 unsigned long counters;
2037
2038                 /*
2039                  * If 'nextfree' is invalid, it is possible that the object at
2040                  * 'freelist' is already corrupted.  So isolate all objects
2041                  * starting at 'freelist'.
2042                  */
2043                 if (freelist_corrupted(s, page, &freelist, nextfree))
2044                         break;
2045
2046                 do {
2047                         prior = page->freelist;
2048                         counters = page->counters;
2049                         set_freepointer(s, freelist, prior);
2050                         new.counters = counters;
2051                         new.inuse--;
2052                         VM_BUG_ON(!new.frozen);
2053
2054                 } while (!__cmpxchg_double_slab(s, page,
2055                         prior, counters,
2056                         freelist, new.counters,
2057                         "drain percpu freelist"));
2058
2059                 freelist = nextfree;
2060         }
2061
2062         /*
2063          * Stage two: Ensure that the page is unfrozen while the
2064          * list presence reflects the actual number of objects
2065          * during unfreeze.
2066          *
2067          * We setup the list membership and then perform a cmpxchg
2068          * with the count. If there is a mismatch then the page
2069          * is not unfrozen but the page is on the wrong list.
2070          *
2071          * Then we restart the process which may have to remove
2072          * the page from the list that we just put it on again
2073          * because the number of objects in the slab may have
2074          * changed.
2075          */
2076 redo:
2077
2078         old.freelist = page->freelist;
2079         old.counters = page->counters;
2080         VM_BUG_ON(!old.frozen);
2081
2082         /* Determine target state of the slab */
2083         new.counters = old.counters;
2084         if (freelist) {
2085                 new.inuse--;
2086                 set_freepointer(s, freelist, old.freelist);
2087                 new.freelist = freelist;
2088         } else
2089                 new.freelist = old.freelist;
2090
2091         new.frozen = 0;
2092
2093         if (!new.inuse && n->nr_partial >= s->min_partial)
2094                 m = M_FREE;
2095         else if (new.freelist) {
2096                 m = M_PARTIAL;
2097                 if (!lock) {
2098                         lock = 1;
2099                         /*
2100                          * Taking the spinlock removes the possiblity
2101                          * that acquire_slab() will see a slab page that
2102                          * is frozen
2103                          */
2104                         spin_lock(&n->list_lock);
2105                 }
2106         } else {
2107                 m = M_FULL;
2108                 if (kmem_cache_debug(s) && !lock) {
2109                         lock = 1;
2110                         /*
2111                          * This also ensures that the scanning of full
2112                          * slabs from diagnostic functions will not see
2113                          * any frozen slabs.
2114                          */
2115                         spin_lock(&n->list_lock);
2116                 }
2117         }
2118
2119         if (l != m) {
2120
2121                 if (l == M_PARTIAL)
2122
2123                         remove_partial(n, page);
2124
2125                 else if (l == M_FULL)
2126
2127                         remove_full(s, n, page);
2128
2129                 if (m == M_PARTIAL) {
2130
2131                         add_partial(n, page, tail);
2132                         stat(s, tail);
2133
2134                 } else if (m == M_FULL) {
2135
2136                         stat(s, DEACTIVATE_FULL);
2137                         add_full(s, n, page);
2138
2139                 }
2140         }
2141
2142         l = m;
2143         if (!__cmpxchg_double_slab(s, page,
2144                                 old.freelist, old.counters,
2145                                 new.freelist, new.counters,
2146                                 "unfreezing slab"))
2147                 goto redo;
2148
2149         if (lock)
2150                 spin_unlock(&n->list_lock);
2151
2152         if (m == M_FREE) {
2153                 stat(s, DEACTIVATE_EMPTY);
2154                 discard_slab(s, page);
2155                 stat(s, FREE_SLAB);
2156         }
2157 }
2158
2159 /*
2160  * Unfreeze all the cpu partial slabs.
2161  *
2162  * This function must be called with interrupts disabled
2163  * for the cpu using c (or some other guarantee must be there
2164  * to guarantee no concurrent accesses).
2165  */
2166 static void unfreeze_partials(struct kmem_cache *s,
2167                 struct kmem_cache_cpu *c)
2168 {
2169 #ifdef CONFIG_SLUB_CPU_PARTIAL
2170         struct kmem_cache_node *n = NULL, *n2 = NULL;
2171         struct page *page, *discard_page = NULL;
2172
2173         while ((page = c->partial)) {
2174                 struct page new;
2175                 struct page old;
2176
2177                 c->partial = page->next;
2178
2179                 n2 = get_node(s, page_to_nid(page));
2180                 if (n != n2) {
2181                         if (n)
2182                                 spin_unlock(&n->list_lock);
2183
2184                         n = n2;
2185                         spin_lock(&n->list_lock);
2186                 }
2187
2188                 do {
2189
2190                         old.freelist = page->freelist;
2191                         old.counters = page->counters;
2192                         VM_BUG_ON(!old.frozen);
2193
2194                         new.counters = old.counters;
2195                         new.freelist = old.freelist;
2196
2197                         new.frozen = 0;
2198
2199                 } while (!__cmpxchg_double_slab(s, page,
2200                                 old.freelist, old.counters,
2201                                 new.freelist, new.counters,
2202                                 "unfreezing slab"));
2203
2204                 if (unlikely(!new.inuse && n->nr_partial >= s->min_partial)) {
2205                         page->next = discard_page;
2206                         discard_page = page;
2207                 } else {
2208                         add_partial(n, page, DEACTIVATE_TO_TAIL);
2209                         stat(s, FREE_ADD_PARTIAL);
2210                 }
2211         }
2212
2213         if (n)
2214                 spin_unlock(&n->list_lock);
2215
2216         while (discard_page) {
2217                 page = discard_page;
2218                 discard_page = discard_page->next;
2219
2220                 stat(s, DEACTIVATE_EMPTY);
2221                 discard_slab(s, page);
2222                 stat(s, FREE_SLAB);
2223         }
2224 #endif
2225 }
2226
2227 /*
2228  * Put a page that was just frozen (in __slab_free) into a partial page
2229  * slot if available. This is done without interrupts disabled and without
2230  * preemption disabled. The cmpxchg is racy and may put the partial page
2231  * onto a random cpus partial slot.
2232  *
2233  * If we did not find a slot then simply move all the partials to the
2234  * per node partial list.
2235  */
2236 static void put_cpu_partial(struct kmem_cache *s, struct page *page, int drain)
2237 {
2238 #ifdef CONFIG_SLUB_CPU_PARTIAL
2239         struct page *oldpage;
2240         int pages;
2241         int pobjects;
2242
2243         preempt_disable();
2244         do {
2245                 pages = 0;
2246                 pobjects = 0;
2247                 oldpage = this_cpu_read(s->cpu_slab->partial);
2248
2249                 if (oldpage) {
2250                         pobjects = oldpage->pobjects;
2251                         pages = oldpage->pages;
2252                         if (drain && pobjects > s->cpu_partial) {
2253                                 unsigned long flags;
2254                                 /*
2255                                  * partial array is full. Move the existing
2256                                  * set to the per node partial list.
2257                                  */
2258                                 local_irq_save(flags);
2259                                 unfreeze_partials(s, this_cpu_ptr(s->cpu_slab));
2260                                 local_irq_restore(flags);
2261                                 oldpage = NULL;
2262                                 pobjects = 0;
2263                                 pages = 0;
2264                                 stat(s, CPU_PARTIAL_DRAIN);
2265                         }
2266                 }
2267
2268                 pages++;
2269                 pobjects += page->objects - page->inuse;
2270
2271                 page->pages = pages;
2272                 page->pobjects = pobjects;
2273                 page->next = oldpage;
2274
2275         } while (this_cpu_cmpxchg(s->cpu_slab->partial, oldpage, page)
2276                                                                 != oldpage);
2277         if (unlikely(!s->cpu_partial)) {
2278                 unsigned long flags;
2279
2280                 local_irq_save(flags);
2281                 unfreeze_partials(s, this_cpu_ptr(s->cpu_slab));
2282                 local_irq_restore(flags);
2283         }
2284         preempt_enable();
2285 #endif
2286 }
2287
2288 static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
2289 {
2290         stat(s, CPUSLAB_FLUSH);
2291         deactivate_slab(s, c->page, c->freelist);
2292
2293         c->tid = next_tid(c->tid);
2294         c->page = NULL;
2295         c->freelist = NULL;
2296 }
2297
2298 /*
2299  * Flush cpu slab.
2300  *
2301  * Called from IPI handler with interrupts disabled.
2302  */
2303 static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
2304 {
2305         struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
2306
2307         if (likely(c)) {
2308                 if (c->page)
2309                         flush_slab(s, c);
2310
2311                 unfreeze_partials(s, c);
2312         }
2313 }
2314
2315 static void flush_cpu_slab(void *d)
2316 {
2317         struct kmem_cache *s = d;
2318
2319         __flush_cpu_slab(s, smp_processor_id());
2320 }
2321
2322 static bool has_cpu_slab(int cpu, void *info)
2323 {
2324         struct kmem_cache *s = info;
2325         struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
2326
2327         return c->page || c->partial;
2328 }
2329
2330 static void flush_all(struct kmem_cache *s)
2331 {
2332         on_each_cpu_cond(has_cpu_slab, flush_cpu_slab, s, 1, GFP_ATOMIC);
2333 }
2334
2335 /*
2336  * Use the cpu notifier to insure that the cpu slabs are flushed when
2337  * necessary.
2338  */
2339 static int slub_cpu_dead(unsigned int cpu)
2340 {
2341         struct kmem_cache *s;
2342         unsigned long flags;
2343
2344         mutex_lock(&slab_mutex);
2345         list_for_each_entry(s, &slab_caches, list) {
2346                 local_irq_save(flags);
2347                 __flush_cpu_slab(s, cpu);
2348                 local_irq_restore(flags);
2349         }
2350         mutex_unlock(&slab_mutex);
2351         return 0;
2352 }
2353
2354 /*
2355  * Check if the objects in a per cpu structure fit numa
2356  * locality expectations.
2357  */
2358 static inline int node_match(struct page *page, int node)
2359 {
2360 #ifdef CONFIG_NUMA
2361         if (!page || (node != NUMA_NO_NODE && page_to_nid(page) != node))
2362                 return 0;
2363 #endif
2364         return 1;
2365 }
2366
2367 #ifdef CONFIG_SLUB_DEBUG
2368 static int count_free(struct page *page)
2369 {
2370         return page->objects - page->inuse;
2371 }
2372
2373 static inline unsigned long node_nr_objs(struct kmem_cache_node *n)
2374 {
2375         return atomic_long_read(&n->total_objects);
2376 }
2377 #endif /* CONFIG_SLUB_DEBUG */
2378
2379 #if defined(CONFIG_SLUB_DEBUG) || defined(CONFIG_SYSFS)
2380 static unsigned long count_partial(struct kmem_cache_node *n,
2381                                         int (*get_count)(struct page *))
2382 {
2383         unsigned long flags;
2384         unsigned long x = 0;
2385         struct page *page;
2386
2387         spin_lock_irqsave(&n->list_lock, flags);
2388         list_for_each_entry(page, &n->partial, lru)
2389                 x += get_count(page);
2390         spin_unlock_irqrestore(&n->list_lock, flags);
2391         return x;
2392 }
2393 #endif /* CONFIG_SLUB_DEBUG || CONFIG_SYSFS */
2394
2395 static noinline void
2396 slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
2397 {
2398 #ifdef CONFIG_SLUB_DEBUG
2399         static DEFINE_RATELIMIT_STATE(slub_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
2400                                       DEFAULT_RATELIMIT_BURST);
2401         int node;
2402         struct kmem_cache_node *n;
2403
2404         if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slub_oom_rs))
2405                 return;
2406
2407         pr_warn("SLUB: Unable to allocate memory on node %d, gfp=%#x(%pGg)\n",
2408                 nid, gfpflags, &gfpflags);
2409         pr_warn("  cache: %s, object size: %d, buffer size: %d, default order: %d, min order: %d\n",
2410                 s->name, s->object_size, s->size, oo_order(s->oo),
2411                 oo_order(s->min));
2412
2413         if (oo_order(s->min) > get_order(s->object_size))
2414                 pr_warn("  %s debugging increased min order, use slub_debug=O to disable.\n",
2415                         s->name);
2416
2417         for_each_kmem_cache_node(s, node, n) {
2418                 unsigned long nr_slabs;
2419                 unsigned long nr_objs;
2420                 unsigned long nr_free;
2421
2422                 nr_free  = count_partial(n, count_free);
2423                 nr_slabs = node_nr_slabs(n);
2424                 nr_objs  = node_nr_objs(n);
2425
2426                 pr_warn("  node %d: slabs: %ld, objs: %ld, free: %ld\n",
2427                         node, nr_slabs, nr_objs, nr_free);
2428         }
2429 #endif
2430 }
2431
2432 static inline void *new_slab_objects(struct kmem_cache *s, gfp_t flags,
2433                         int node, struct kmem_cache_cpu **pc)
2434 {
2435         void *freelist;
2436         struct kmem_cache_cpu *c = *pc;
2437         struct page *page;
2438
2439         freelist = get_partial(s, flags, node, c);
2440
2441         if (freelist)
2442                 return freelist;
2443
2444         page = new_slab(s, flags, node);
2445         if (page) {
2446                 c = raw_cpu_ptr(s->cpu_slab);
2447                 if (c->page)
2448                         flush_slab(s, c);
2449
2450                 /*
2451                  * No other reference to the page yet so we can
2452                  * muck around with it freely without cmpxchg
2453                  */
2454                 freelist = page->freelist;
2455                 page->freelist = NULL;
2456
2457                 stat(s, ALLOC_SLAB);
2458                 c->page = page;
2459                 *pc = c;
2460         } else
2461                 freelist = NULL;
2462
2463         return freelist;
2464 }
2465
2466 static inline bool pfmemalloc_match(struct page *page, gfp_t gfpflags)
2467 {
2468         if (unlikely(PageSlabPfmemalloc(page)))
2469                 return gfp_pfmemalloc_allowed(gfpflags);
2470
2471         return true;
2472 }
2473
2474 /*
2475  * Check the page->freelist of a page and either transfer the freelist to the
2476  * per cpu freelist or deactivate the page.
2477  *
2478  * The page is still frozen if the return value is not NULL.
2479  *
2480  * If this function returns NULL then the page has been unfrozen.
2481  *
2482  * This function must be called with interrupt disabled.
2483  */
2484 static inline void *get_freelist(struct kmem_cache *s, struct page *page)
2485 {
2486         struct page new;
2487         unsigned long counters;
2488         void *freelist;
2489
2490         do {
2491                 freelist = page->freelist;
2492                 counters = page->counters;
2493
2494                 new.counters = counters;
2495                 VM_BUG_ON(!new.frozen);
2496
2497                 new.inuse = page->objects;
2498                 new.frozen = freelist != NULL;
2499
2500         } while (!__cmpxchg_double_slab(s, page,
2501                 freelist, counters,
2502                 NULL, new.counters,
2503                 "get_freelist"));
2504
2505         return freelist;
2506 }
2507
2508 /*
2509  * Slow path. The lockless freelist is empty or we need to perform
2510  * debugging duties.
2511  *
2512  * Processing is still very fast if new objects have been freed to the
2513  * regular freelist. In that case we simply take over the regular freelist
2514  * as the lockless freelist and zap the regular freelist.
2515  *
2516  * If that is not working then we fall back to the partial lists. We take the
2517  * first element of the freelist as the object to allocate now and move the
2518  * rest of the freelist to the lockless freelist.
2519  *
2520  * And if we were unable to get a new slab from the partial slab lists then
2521  * we need to allocate a new slab. This is the slowest path since it involves
2522  * a call to the page allocator and the setup of a new slab.
2523  *
2524  * Version of __slab_alloc to use when we know that interrupts are
2525  * already disabled (which is the case for bulk allocation).
2526  */
2527 static void *___slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
2528                           unsigned long addr, struct kmem_cache_cpu *c)
2529 {
2530         void *freelist;
2531         struct page *page;
2532
2533         page = c->page;
2534         if (!page) {
2535                 /*
2536                  * if the node is not online or has no normal memory, just
2537                  * ignore the node constraint
2538                  */
2539                 if (unlikely(node != NUMA_NO_NODE &&
2540                              !node_state(node, N_NORMAL_MEMORY)))
2541                         node = NUMA_NO_NODE;
2542                 goto new_slab;
2543         }
2544 redo:
2545
2546         if (unlikely(!node_match(page, node))) {
2547                 /*
2548                  * same as above but node_match() being false already
2549                  * implies node != NUMA_NO_NODE
2550                  */
2551                 if (!node_state(node, N_NORMAL_MEMORY)) {
2552                         node = NUMA_NO_NODE;
2553                         goto redo;
2554                 } else {
2555                         stat(s, ALLOC_NODE_MISMATCH);
2556                         deactivate_slab(s, page, c->freelist);
2557                         c->page = NULL;
2558                         c->freelist = NULL;
2559                         c->tid = next_tid(c->tid);
2560                         goto new_slab;
2561                 }
2562         }
2563
2564         /*
2565          * By rights, we should be searching for a slab page that was
2566          * PFMEMALLOC but right now, we are losing the pfmemalloc
2567          * information when the page leaves the per-cpu allocator
2568          */
2569         if (unlikely(!pfmemalloc_match(page, gfpflags))) {
2570                 deactivate_slab(s, page, c->freelist);
2571                 c->page = NULL;
2572                 c->freelist = NULL;
2573                 c->tid = next_tid(c->tid);
2574                 goto new_slab;
2575         }
2576
2577         /* must check again c->freelist in case of cpu migration or IRQ */
2578         freelist = c->freelist;
2579         if (freelist)
2580                 goto load_freelist;
2581
2582         freelist = get_freelist(s, page);
2583
2584         if (!freelist) {
2585                 c->page = NULL;
2586                 c->tid = next_tid(c->tid);
2587                 stat(s, DEACTIVATE_BYPASS);
2588                 goto new_slab;
2589         }
2590
2591         stat(s, ALLOC_REFILL);
2592
2593 load_freelist:
2594         /*
2595          * freelist is pointing to the list of objects to be used.
2596          * page is pointing to the page from which the objects are obtained.
2597          * That page must be frozen for per cpu allocations to work.
2598          */
2599         VM_BUG_ON(!c->page->frozen);
2600         c->freelist = get_freepointer(s, freelist);
2601         c->tid = next_tid(c->tid);
2602         return freelist;
2603
2604 new_slab:
2605
2606         if (c->partial) {
2607                 page = c->page = c->partial;
2608                 c->partial = page->next;
2609                 stat(s, CPU_PARTIAL_ALLOC);
2610                 c->freelist = NULL;
2611                 c->tid = next_tid(c->tid);
2612                 goto redo;
2613         }
2614
2615         freelist = new_slab_objects(s, gfpflags, node, &c);
2616
2617         if (unlikely(!freelist)) {
2618                 slab_out_of_memory(s, gfpflags, node);
2619                 return NULL;
2620         }
2621
2622         page = c->page;
2623         if (likely(!kmem_cache_debug(s) && pfmemalloc_match(page, gfpflags)))
2624                 goto load_freelist;
2625
2626         /* Only entered in the debug case */
2627         if (kmem_cache_debug(s) &&
2628                         !alloc_debug_processing(s, page, freelist, addr))
2629                 goto new_slab;  /* Slab failed checks. Next slab needed */
2630
2631         deactivate_slab(s, page, get_freepointer(s, freelist));
2632         c->page = NULL;
2633         c->freelist = NULL;
2634         c->tid = next_tid(c->tid);
2635         return freelist;
2636 }
2637
2638 /*
2639  * Another one that disabled interrupt and compensates for possible
2640  * cpu changes by refetching the per cpu area pointer.
2641  */
2642 static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
2643                           unsigned long addr, struct kmem_cache_cpu *c)
2644 {
2645         void *p;
2646         unsigned long flags;
2647
2648         local_irq_save(flags);
2649 #ifdef CONFIG_PREEMPT
2650         /*
2651          * We may have been preempted and rescheduled on a different
2652          * cpu before disabling interrupts. Need to reload cpu area
2653          * pointer.
2654          */
2655         c = this_cpu_ptr(s->cpu_slab);
2656 #endif
2657
2658         p = ___slab_alloc(s, gfpflags, node, addr, c);
2659         local_irq_restore(flags);
2660         return p;
2661 }
2662
2663 /*
2664  * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
2665  * have the fastpath folded into their functions. So no function call
2666  * overhead for requests that can be satisfied on the fastpath.
2667  *
2668  * The fastpath works by first checking if the lockless freelist can be used.
2669  * If not then __slab_alloc is called for slow processing.
2670  *
2671  * Otherwise we can simply pick the next object from the lockless free list.
2672  */
2673 static __always_inline void *slab_alloc_node(struct kmem_cache *s,
2674                 gfp_t gfpflags, int node, unsigned long addr)
2675 {
2676         void *object;
2677         struct kmem_cache_cpu *c;
2678         struct page *page;
2679         unsigned long tid;
2680
2681         s = slab_pre_alloc_hook(s, gfpflags);
2682         if (!s)
2683                 return NULL;
2684 redo:
2685         /*
2686          * Must read kmem_cache cpu data via this cpu ptr. Preemption is
2687          * enabled. We may switch back and forth between cpus while
2688          * reading from one cpu area. That does not matter as long
2689          * as we end up on the original cpu again when doing the cmpxchg.
2690          *
2691          * We should guarantee that tid and kmem_cache are retrieved on
2692          * the same cpu. It could be different if CONFIG_PREEMPT so we need
2693          * to check if it is matched or not.
2694          */
2695         do {
2696                 tid = this_cpu_read(s->cpu_slab->tid);
2697                 c = raw_cpu_ptr(s->cpu_slab);
2698         } while (IS_ENABLED(CONFIG_PREEMPT) &&
2699                  unlikely(tid != READ_ONCE(c->tid)));
2700
2701         /*
2702          * Irqless object alloc/free algorithm used here depends on sequence
2703          * of fetching cpu_slab's data. tid should be fetched before anything
2704          * on c to guarantee that object and page associated with previous tid
2705          * won't be used with current tid. If we fetch tid first, object and
2706          * page could be one associated with next tid and our alloc/free
2707          * request will be failed. In this case, we will retry. So, no problem.
2708          */
2709         barrier();
2710
2711         /*
2712          * The transaction ids are globally unique per cpu and per operation on
2713          * a per cpu queue. Thus they can be guarantee that the cmpxchg_double
2714          * occurs on the right processor and that there was no operation on the
2715          * linked list in between.
2716          */
2717
2718         object = c->freelist;
2719         page = c->page;
2720         if (unlikely(!object || !node_match(page, node))) {
2721                 object = __slab_alloc(s, gfpflags, node, addr, c);
2722                 stat(s, ALLOC_SLOWPATH);
2723         } else {
2724                 void *next_object = get_freepointer_safe(s, object);
2725
2726                 /*
2727                  * The cmpxchg will only match if there was no additional
2728                  * operation and if we are on the right processor.
2729                  *
2730                  * The cmpxchg does the following atomically (without lock
2731                  * semantics!)
2732                  * 1. Relocate first pointer to the current per cpu area.
2733                  * 2. Verify that tid and freelist have not been changed
2734                  * 3. If they were not changed replace tid and freelist
2735                  *
2736                  * Since this is without lock semantics the protection is only
2737                  * against code executing on this cpu *not* from access by
2738                  * other cpus.
2739                  */
2740                 if (unlikely(!this_cpu_cmpxchg_double(
2741                                 s->cpu_slab->freelist, s->cpu_slab->tid,
2742                                 object, tid,
2743                                 next_object, next_tid(tid)))) {
2744
2745                         note_cmpxchg_failure("slab_alloc", s, tid);
2746                         goto redo;
2747                 }
2748                 prefetch_freepointer(s, next_object);
2749                 stat(s, ALLOC_FASTPATH);
2750         }
2751
2752         if (unlikely(gfpflags & __GFP_ZERO) && object)
2753                 memset(object, 0, s->object_size);
2754
2755         slab_post_alloc_hook(s, gfpflags, 1, &object);
2756
2757         return object;
2758 }
2759
2760 static __always_inline void *slab_alloc(struct kmem_cache *s,
2761                 gfp_t gfpflags, unsigned long addr)
2762 {
2763         return slab_alloc_node(s, gfpflags, NUMA_NO_NODE, addr);
2764 }
2765
2766 void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
2767 {
2768         void *ret = slab_alloc(s, gfpflags, _RET_IP_);
2769
2770         trace_kmem_cache_alloc(_RET_IP_, ret, s->object_size,
2771                                 s->size, gfpflags);
2772
2773         return ret;
2774 }
2775 EXPORT_SYMBOL(kmem_cache_alloc);
2776
2777 #ifdef CONFIG_TRACING
2778 void *kmem_cache_alloc_trace(struct kmem_cache *s, gfp_t gfpflags, size_t size)
2779 {
2780         void *ret = slab_alloc(s, gfpflags, _RET_IP_);
2781         trace_kmalloc(_RET_IP_, ret, size, s->size, gfpflags);
2782         kasan_kmalloc(s, ret, size, gfpflags);
2783         return ret;
2784 }
2785 EXPORT_SYMBOL(kmem_cache_alloc_trace);
2786 #endif
2787
2788 #ifdef CONFIG_NUMA
2789 void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
2790 {
2791         void *ret = slab_alloc_node(s, gfpflags, node, _RET_IP_);
2792
2793         trace_kmem_cache_alloc_node(_RET_IP_, ret,
2794                                     s->object_size, s->size, gfpflags, node);
2795
2796         return ret;
2797 }
2798 EXPORT_SYMBOL(kmem_cache_alloc_node);
2799
2800 #ifdef CONFIG_TRACING
2801 void *kmem_cache_alloc_node_trace(struct kmem_cache *s,
2802                                     gfp_t gfpflags,
2803                                     int node, size_t size)
2804 {
2805         void *ret = slab_alloc_node(s, gfpflags, node, _RET_IP_);
2806
2807         trace_kmalloc_node(_RET_IP_, ret,
2808                            size, s->size, gfpflags, node);
2809
2810         kasan_kmalloc(s, ret, size, gfpflags);
2811         return ret;
2812 }
2813 EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
2814 #endif
2815 #endif
2816
2817 /*
2818  * Slow path handling. This may still be called frequently since objects
2819  * have a longer lifetime than the cpu slabs in most processing loads.
2820  *
2821  * So we still attempt to reduce cache line usage. Just take the slab
2822  * lock and free the item. If there is no additional partial page
2823  * handling required then we can return immediately.
2824  */
2825 static void __slab_free(struct kmem_cache *s, struct page *page,
2826                         void *head, void *tail, int cnt,
2827                         unsigned long addr)
2828
2829 {
2830         void *prior;
2831         int was_frozen;
2832         struct page new;
2833         unsigned long counters;
2834         struct kmem_cache_node *n = NULL;
2835         unsigned long uninitialized_var(flags);
2836
2837         stat(s, FREE_SLOWPATH);
2838
2839         if (kmem_cache_debug(s) &&
2840             !free_debug_processing(s, page, head, tail, cnt, addr))
2841                 return;
2842
2843         do {
2844                 if (unlikely(n)) {
2845                         spin_unlock_irqrestore(&n->list_lock, flags);
2846                         n = NULL;
2847                 }
2848                 prior = page->freelist;
2849                 counters = page->counters;
2850                 set_freepointer(s, tail, prior);
2851                 new.counters = counters;
2852                 was_frozen = new.frozen;
2853                 new.inuse -= cnt;
2854                 if ((!new.inuse || !prior) && !was_frozen) {
2855
2856                         if (kmem_cache_has_cpu_partial(s) && !prior) {
2857
2858                                 /*
2859                                  * Slab was on no list before and will be
2860                                  * partially empty
2861                                  * We can defer the list move and instead
2862                                  * freeze it.
2863                                  */
2864                                 new.frozen = 1;
2865
2866                         } else { /* Needs to be taken off a list */
2867
2868                                 n = get_node(s, page_to_nid(page));
2869                                 /*
2870                                  * Speculatively acquire the list_lock.
2871                                  * If the cmpxchg does not succeed then we may
2872                                  * drop the list_lock without any processing.
2873                                  *
2874                                  * Otherwise the list_lock will synchronize with
2875                                  * other processors updating the list of slabs.
2876                                  */
2877                                 spin_lock_irqsave(&n->list_lock, flags);
2878
2879                         }
2880                 }
2881
2882         } while (!cmpxchg_double_slab(s, page,
2883                 prior, counters,
2884                 head, new.counters,
2885                 "__slab_free"));
2886
2887         if (likely(!n)) {
2888
2889                 /*
2890                  * If we just froze the page then put it onto the
2891                  * per cpu partial list.
2892                  */
2893                 if (new.frozen && !was_frozen) {
2894                         put_cpu_partial(s, page, 1);
2895                         stat(s, CPU_PARTIAL_FREE);
2896                 }
2897                 /*
2898                  * The list lock was not taken therefore no list
2899                  * activity can be necessary.
2900                  */
2901                 if (was_frozen)
2902                         stat(s, FREE_FROZEN);
2903                 return;
2904         }
2905
2906         if (unlikely(!new.inuse && n->nr_partial >= s->min_partial))
2907                 goto slab_empty;
2908
2909         /*
2910          * Objects left in the slab. If it was not on the partial list before
2911          * then add it.
2912          */
2913         if (!kmem_cache_has_cpu_partial(s) && unlikely(!prior)) {
2914                 if (kmem_cache_debug(s))
2915                         remove_full(s, n, page);
2916                 add_partial(n, page, DEACTIVATE_TO_TAIL);
2917                 stat(s, FREE_ADD_PARTIAL);
2918         }
2919         spin_unlock_irqrestore(&n->list_lock, flags);
2920         return;
2921
2922 slab_empty:
2923         if (prior) {
2924                 /*
2925                  * Slab on the partial list.
2926                  */
2927                 remove_partial(n, page);
2928                 stat(s, FREE_REMOVE_PARTIAL);
2929         } else {
2930                 /* Slab must be on the full list */
2931                 remove_full(s, n, page);
2932         }
2933
2934         spin_unlock_irqrestore(&n->list_lock, flags);
2935         stat(s, FREE_SLAB);
2936         discard_slab(s, page);
2937 }
2938
2939 /*
2940  * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
2941  * can perform fastpath freeing without additional function calls.
2942  *
2943  * The fastpath is only possible if we are freeing to the current cpu slab
2944  * of this processor. This typically the case if we have just allocated
2945  * the item before.
2946  *
2947  * If fastpath is not possible then fall back to __slab_free where we deal
2948  * with all sorts of special processing.
2949  *
2950  * Bulk free of a freelist with several objects (all pointing to the
2951  * same page) possible by specifying head and tail ptr, plus objects
2952  * count (cnt). Bulk free indicated by tail pointer being set.
2953  */
2954 static __always_inline void do_slab_free(struct kmem_cache *s,
2955                                 struct page *page, void *head, void *tail,
2956                                 int cnt, unsigned long addr)
2957 {
2958         void *tail_obj = tail ? : head;
2959         struct kmem_cache_cpu *c;
2960         unsigned long tid;
2961 redo:
2962         /*
2963          * Determine the currently cpus per cpu slab.
2964          * The cpu may change afterward. However that does not matter since
2965          * data is retrieved via this pointer. If we are on the same cpu
2966          * during the cmpxchg then the free will succeed.
2967          */
2968         do {
2969                 tid = this_cpu_read(s->cpu_slab->tid);
2970                 c = raw_cpu_ptr(s->cpu_slab);
2971         } while (IS_ENABLED(CONFIG_PREEMPT) &&
2972                  unlikely(tid != READ_ONCE(c->tid)));
2973
2974         /* Same with comment on barrier() in slab_alloc_node() */
2975         barrier();
2976
2977         if (likely(page == c->page)) {
2978                 void **freelist = READ_ONCE(c->freelist);
2979
2980                 set_freepointer(s, tail_obj, freelist);
2981
2982                 if (unlikely(!this_cpu_cmpxchg_double(
2983                                 s->cpu_slab->freelist, s->cpu_slab->tid,
2984                                 freelist, tid,
2985                                 head, next_tid(tid)))) {
2986
2987                         note_cmpxchg_failure("slab_free", s, tid);
2988                         goto redo;
2989                 }
2990                 stat(s, FREE_FASTPATH);
2991         } else
2992                 __slab_free(s, page, head, tail_obj, cnt, addr);
2993
2994 }
2995
2996 static __always_inline void slab_free(struct kmem_cache *s, struct page *page,
2997                                       void *head, void *tail, int cnt,
2998                                       unsigned long addr)
2999 {
3000         slab_free_freelist_hook(s, head, tail);
3001         /*
3002          * slab_free_freelist_hook() could have put the items into quarantine.
3003          * If so, no need to free them.
3004          */
3005         if (s->flags & SLAB_KASAN && !(s->flags & SLAB_DESTROY_BY_RCU))
3006                 return;
3007         do_slab_free(s, page, head, tail, cnt, addr);
3008 }
3009
3010 #ifdef CONFIG_KASAN
3011 void ___cache_free(struct kmem_cache *cache, void *x, unsigned long addr)
3012 {
3013         do_slab_free(cache, virt_to_head_page(x), x, NULL, 1, addr);
3014 }
3015 #endif
3016
3017 void kmem_cache_free(struct kmem_cache *s, void *x)
3018 {
3019         s = cache_from_obj(s, x);
3020         if (!s)
3021                 return;
3022         slab_free(s, virt_to_head_page(x), x, NULL, 1, _RET_IP_);
3023         trace_kmem_cache_free(_RET_IP_, x);
3024 }
3025 EXPORT_SYMBOL(kmem_cache_free);
3026
3027 struct detached_freelist {
3028         struct page *page;
3029         void *tail;
3030         void *freelist;
3031         int cnt;
3032         struct kmem_cache *s;
3033 };
3034
3035 /*
3036  * This function progressively scans the array with free objects (with
3037  * a limited look ahead) and extract objects belonging to the same
3038  * page.  It builds a detached freelist directly within the given
3039  * page/objects.  This can happen without any need for
3040  * synchronization, because the objects are owned by running process.
3041  * The freelist is build up as a single linked list in the objects.
3042  * The idea is, that this detached freelist can then be bulk
3043  * transferred to the real freelist(s), but only requiring a single
3044  * synchronization primitive.  Look ahead in the array is limited due
3045  * to performance reasons.
3046  */
3047 static inline
3048 int build_detached_freelist(struct kmem_cache *s, size_t size,
3049                             void **p, struct detached_freelist *df)
3050 {
3051         size_t first_skipped_index = 0;
3052         int lookahead = 3;
3053         void *object;
3054         struct page *page;
3055
3056         /* Always re-init detached_freelist */
3057         df->page = NULL;
3058
3059         do {
3060                 object = p[--size];
3061                 /* Do we need !ZERO_OR_NULL_PTR(object) here? (for kfree) */
3062         } while (!object && size);
3063
3064         if (!object)
3065                 return 0;
3066
3067         page = virt_to_head_page(object);
3068         if (!s) {
3069                 /* Handle kalloc'ed objects */
3070                 if (unlikely(!PageSlab(page))) {
3071                         BUG_ON(!PageCompound(page));
3072                         kfree_hook(object);
3073                         __free_pages(page, compound_order(page));
3074                         p[size] = NULL; /* mark object processed */
3075                         return size;
3076                 }
3077                 /* Derive kmem_cache from object */
3078                 df->s = page->slab_cache;
3079         } else {
3080                 df->s = cache_from_obj(s, object); /* Support for memcg */
3081         }
3082
3083         /* Start new detached freelist */
3084         df->page = page;
3085         set_freepointer(df->s, object, NULL);
3086         df->tail = object;
3087         df->freelist = object;
3088         p[size] = NULL; /* mark object processed */
3089         df->cnt = 1;
3090
3091         while (size) {
3092                 object = p[--size];
3093                 if (!object)
3094                         continue; /* Skip processed objects */
3095
3096                 /* df->page is always set at this point */
3097                 if (df->page == virt_to_head_page(object)) {
3098                         /* Opportunity build freelist */
3099                         set_freepointer(df->s, object, df->freelist);
3100                         df->freelist = object;
3101                         df->cnt++;
3102                         p[size] = NULL; /* mark object processed */
3103
3104                         continue;
3105                 }
3106
3107                 /* Limit look ahead search */
3108                 if (!--lookahead)
3109                         break;
3110
3111                 if (!first_skipped_index)
3112                         first_skipped_index = size + 1;
3113         }
3114
3115         return first_skipped_index;
3116 }
3117
3118 /* Note that interrupts must be enabled when calling this function. */
3119 void kmem_cache_free_bulk(struct kmem_cache *s, size_t size, void **p)
3120 {
3121         if (WARN_ON(!size))
3122                 return;
3123
3124         do {
3125                 struct detached_freelist df;
3126
3127                 size = build_detached_freelist(s, size, p, &df);
3128                 if (unlikely(!df.page))
3129                         continue;
3130
3131                 slab_free(df.s, df.page, df.freelist, df.tail, df.cnt,_RET_IP_);
3132         } while (likely(size));
3133 }
3134 EXPORT_SYMBOL(kmem_cache_free_bulk);
3135
3136 /* Note that interrupts must be enabled when calling this function. */
3137 int kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t size,
3138                           void **p)
3139 {
3140         struct kmem_cache_cpu *c;
3141         int i;
3142
3143         /* memcg and kmem_cache debug support */
3144         s = slab_pre_alloc_hook(s, flags);
3145         if (unlikely(!s))
3146                 return false;
3147         /*
3148          * Drain objects in the per cpu slab, while disabling local
3149          * IRQs, which protects against PREEMPT and interrupts
3150          * handlers invoking normal fastpath.
3151          */
3152         local_irq_disable();
3153         c = this_cpu_ptr(s->cpu_slab);
3154
3155         for (i = 0; i < size; i++) {
3156                 void *object = c->freelist;
3157
3158                 if (unlikely(!object)) {
3159                         /*
3160                          * We may have removed an object from c->freelist using
3161                          * the fastpath in the previous iteration; in that case,
3162                          * c->tid has not been bumped yet.
3163                          * Since ___slab_alloc() may reenable interrupts while
3164                          * allocating memory, we should bump c->tid now.
3165                          */
3166                         c->tid = next_tid(c->tid);
3167
3168                         /*
3169                          * Invoking slow path likely have side-effect
3170                          * of re-populating per CPU c->freelist
3171                          */
3172                         p[i] = ___slab_alloc(s, flags, NUMA_NO_NODE,
3173                                             _RET_IP_, c);
3174                         if (unlikely(!p[i]))
3175                                 goto error;
3176
3177                         c = this_cpu_ptr(s->cpu_slab);
3178                         continue; /* goto for-loop */
3179                 }
3180                 c->freelist = get_freepointer(s, object);
3181                 p[i] = object;
3182         }
3183         c->tid = next_tid(c->tid);
3184         local_irq_enable();
3185
3186         /* Clear memory outside IRQ disabled fastpath loop */
3187         if (unlikely(flags & __GFP_ZERO)) {
3188                 int j;
3189
3190                 for (j = 0; j < i; j++)
3191                         memset(p[j], 0, s->object_size);
3192         }
3193
3194         /* memcg and kmem_cache debug support */
3195         slab_post_alloc_hook(s, flags, size, p);
3196         return i;
3197 error:
3198         local_irq_enable();
3199         slab_post_alloc_hook(s, flags, i, p);
3200         __kmem_cache_free_bulk(s, i, p);
3201         return 0;
3202 }
3203 EXPORT_SYMBOL(kmem_cache_alloc_bulk);
3204
3205
3206 /*
3207  * Object placement in a slab is made very easy because we always start at
3208  * offset 0. If we tune the size of the object to the alignment then we can
3209  * get the required alignment by putting one properly sized object after
3210  * another.
3211  *
3212  * Notice that the allocation order determines the sizes of the per cpu
3213  * caches. Each processor has always one slab available for allocations.
3214  * Increasing the allocation order reduces the number of times that slabs
3215  * must be moved on and off the partial lists and is therefore a factor in
3216  * locking overhead.
3217  */
3218
3219 /*
3220  * Mininum / Maximum order of slab pages. This influences locking overhead
3221  * and slab fragmentation. A higher order reduces the number of partial slabs
3222  * and increases the number of allocations possible without having to
3223  * take the list_lock.
3224  */
3225 static int slub_min_order;
3226 static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
3227 static int slub_min_objects;
3228
3229 /*
3230  * Calculate the order of allocation given an slab object size.
3231  *
3232  * The order of allocation has significant impact on performance and other
3233  * system components. Generally order 0 allocations should be preferred since
3234  * order 0 does not cause fragmentation in the page allocator. Larger objects
3235  * be problematic to put into order 0 slabs because there may be too much
3236  * unused space left. We go to a higher order if more than 1/16th of the slab
3237  * would be wasted.
3238  *
3239  * In order to reach satisfactory performance we must ensure that a minimum
3240  * number of objects is in one slab. Otherwise we may generate too much
3241  * activity on the partial lists which requires taking the list_lock. This is
3242  * less a concern for large slabs though which are rarely used.
3243  *
3244  * slub_max_order specifies the order where we begin to stop considering the
3245  * number of objects in a slab as critical. If we reach slub_max_order then
3246  * we try to keep the page order as low as possible. So we accept more waste
3247  * of space in favor of a small page order.
3248  *
3249  * Higher order allocations also allow the placement of more objects in a
3250  * slab and thereby reduce object handling overhead. If the user has
3251  * requested a higher mininum order then we start with that one instead of
3252  * the smallest order which will fit the object.
3253  */
3254 static inline int slab_order(int size, int min_objects,
3255                                 int max_order, int fract_leftover, int reserved)
3256 {
3257         int order;
3258         int rem;
3259         int min_order = slub_min_order;
3260
3261         if (order_objects(min_order, size, reserved) > MAX_OBJS_PER_PAGE)
3262                 return get_order(size * MAX_OBJS_PER_PAGE) - 1;
3263
3264         for (order = max(min_order, get_order(min_objects * size + reserved));
3265                         order <= max_order; order++) {
3266
3267                 unsigned long slab_size = PAGE_SIZE << order;
3268
3269                 rem = (slab_size - reserved) % size;
3270
3271                 if (rem <= slab_size / fract_leftover)
3272                         break;
3273         }
3274
3275         return order;
3276 }
3277
3278 static inline int calculate_order(int size, int reserved)
3279 {
3280         int order;
3281         int min_objects;
3282         int fraction;
3283         int max_objects;
3284
3285         /*
3286          * Attempt to find best configuration for a slab. This
3287          * works by first attempting to generate a layout with
3288          * the best configuration and backing off gradually.
3289          *
3290          * First we increase the acceptable waste in a slab. Then
3291          * we reduce the minimum objects required in a slab.
3292          */
3293         min_objects = slub_min_objects;
3294         if (!min_objects)
3295                 min_objects = 4 * (fls(nr_cpu_ids) + 1);
3296         max_objects = order_objects(slub_max_order, size, reserved);
3297         min_objects = min(min_objects, max_objects);
3298
3299         while (min_objects > 1) {
3300                 fraction = 16;
3301                 while (fraction >= 4) {
3302                         order = slab_order(size, min_objects,
3303                                         slub_max_order, fraction, reserved);
3304                         if (order <= slub_max_order)
3305                                 return order;
3306                         fraction /= 2;
3307                 }
3308                 min_objects--;
3309         }
3310
3311         /*
3312          * We were unable to place multiple objects in a slab. Now
3313          * lets see if we can place a single object there.
3314          */
3315         order = slab_order(size, 1, slub_max_order, 1, reserved);
3316         if (order <= slub_max_order)
3317                 return order;
3318
3319         /*
3320          * Doh this slab cannot be placed using slub_max_order.
3321          */
3322         order = slab_order(size, 1, MAX_ORDER, 1, reserved);
3323         if (order < MAX_ORDER)
3324                 return order;
3325         return -ENOSYS;
3326 }
3327
3328 static void
3329 init_kmem_cache_node(struct kmem_cache_node *n)
3330 {
3331         n->nr_partial = 0;
3332         spin_lock_init(&n->list_lock);
3333         INIT_LIST_HEAD(&n->partial);
3334 #ifdef CONFIG_SLUB_DEBUG
3335         atomic_long_set(&n->nr_slabs, 0);
3336         atomic_long_set(&n->total_objects, 0);
3337         INIT_LIST_HEAD(&n->full);
3338 #endif
3339 }
3340
3341 static inline int alloc_kmem_cache_cpus(struct kmem_cache *s)
3342 {
3343         BUILD_BUG_ON(PERCPU_DYNAMIC_EARLY_SIZE <
3344                         KMALLOC_SHIFT_HIGH * sizeof(struct kmem_cache_cpu));
3345
3346         /*
3347          * Must align to double word boundary for the double cmpxchg
3348          * instructions to work; see __pcpu_double_call_return_bool().
3349          */
3350         s->cpu_slab = __alloc_percpu(sizeof(struct kmem_cache_cpu),
3351                                      2 * sizeof(void *));
3352
3353         if (!s->cpu_slab)
3354                 return 0;
3355
3356         init_kmem_cache_cpus(s);
3357
3358         return 1;
3359 }
3360
3361 static struct kmem_cache *kmem_cache_node;
3362
3363 /*
3364  * No kmalloc_node yet so do it by hand. We know that this is the first
3365  * slab on the node for this slabcache. There are no concurrent accesses
3366  * possible.
3367  *
3368  * Note that this function only works on the kmem_cache_node
3369  * when allocating for the kmem_cache_node. This is used for bootstrapping
3370  * memory on a fresh node that has no slab structures yet.
3371  */
3372 static void early_kmem_cache_node_alloc(int node)
3373 {
3374         struct page *page;
3375         struct kmem_cache_node *n;
3376
3377         BUG_ON(kmem_cache_node->size < sizeof(struct kmem_cache_node));
3378
3379         page = new_slab(kmem_cache_node, GFP_NOWAIT, node);
3380
3381         BUG_ON(!page);
3382         if (page_to_nid(page) != node) {
3383                 pr_err("SLUB: Unable to allocate memory from node %d\n", node);
3384                 pr_err("SLUB: Allocating a useless per node structure in order to be able to continue\n");
3385         }
3386
3387         n = page->freelist;
3388         BUG_ON(!n);
3389         page->freelist = get_freepointer(kmem_cache_node, n);
3390         page->inuse = 1;
3391         page->frozen = 0;
3392         kmem_cache_node->node[node] = n;
3393 #ifdef CONFIG_SLUB_DEBUG
3394         init_object(kmem_cache_node, n, SLUB_RED_ACTIVE);
3395         init_tracking(kmem_cache_node, n);
3396 #endif
3397         kasan_kmalloc(kmem_cache_node, n, sizeof(struct kmem_cache_node),
3398                       GFP_KERNEL);
3399         init_kmem_cache_node(n);
3400         inc_slabs_node(kmem_cache_node, node, page->objects);
3401
3402         /*
3403          * No locks need to be taken here as it has just been
3404          * initialized and there is no concurrent access.
3405          */
3406         __add_partial(n, page, DEACTIVATE_TO_HEAD);
3407 }
3408
3409 static void free_kmem_cache_nodes(struct kmem_cache *s)
3410 {
3411         int node;
3412         struct kmem_cache_node *n;
3413
3414         for_each_kmem_cache_node(s, node, n) {
3415                 kmem_cache_free(kmem_cache_node, n);
3416                 s->node[node] = NULL;
3417         }
3418 }
3419
3420 void __kmem_cache_release(struct kmem_cache *s)
3421 {
3422         cache_random_seq_destroy(s);
3423         free_percpu(s->cpu_slab);
3424         free_kmem_cache_nodes(s);
3425 }
3426
3427 static int init_kmem_cache_nodes(struct kmem_cache *s)
3428 {
3429         int node;
3430
3431         for_each_node_state(node, N_NORMAL_MEMORY) {
3432                 struct kmem_cache_node *n;
3433
3434                 if (slab_state == DOWN) {
3435                         early_kmem_cache_node_alloc(node);
3436                         continue;
3437                 }
3438                 n = kmem_cache_alloc_node(kmem_cache_node,
3439                                                 GFP_KERNEL, node);
3440
3441                 if (!n) {
3442                         free_kmem_cache_nodes(s);
3443                         return 0;
3444                 }
3445
3446                 s->node[node] = n;
3447                 init_kmem_cache_node(n);
3448         }
3449         return 1;
3450 }
3451
3452 static void set_min_partial(struct kmem_cache *s, unsigned long min)
3453 {
3454         if (min < MIN_PARTIAL)
3455                 min = MIN_PARTIAL;
3456         else if (min > MAX_PARTIAL)
3457                 min = MAX_PARTIAL;
3458         s->min_partial = min;
3459 }
3460
3461 /*
3462  * calculate_sizes() determines the order and the distribution of data within
3463  * a slab object.
3464  */
3465 static int calculate_sizes(struct kmem_cache *s, int forced_order)
3466 {
3467         unsigned long flags = s->flags;
3468         size_t size = s->object_size;
3469         int order;
3470
3471         /*
3472          * Round up object size to the next word boundary. We can only
3473          * place the free pointer at word boundaries and this determines
3474          * the possible location of the free pointer.
3475          */
3476         size = ALIGN(size, sizeof(void *));
3477
3478 #ifdef CONFIG_SLUB_DEBUG
3479         /*
3480          * Determine if we can poison the object itself. If the user of
3481          * the slab may touch the object after free or before allocation
3482          * then we should never poison the object itself.
3483          */
3484         if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
3485                         !s->ctor)
3486                 s->flags |= __OBJECT_POISON;
3487         else
3488                 s->flags &= ~__OBJECT_POISON;
3489
3490
3491         /*
3492          * If we are Redzoning then check if there is some space between the
3493          * end of the object and the free pointer. If not then add an
3494          * additional word to have some bytes to store Redzone information.
3495          */
3496         if ((flags & SLAB_RED_ZONE) && size == s->object_size)
3497                 size += sizeof(void *);
3498 #endif
3499
3500         /*
3501          * With that we have determined the number of bytes in actual use
3502          * by the object. This is the potential offset to the free pointer.
3503          */
3504         s->inuse = size;
3505
3506         if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
3507                 s->ctor)) {
3508                 /*
3509                  * Relocate free pointer after the object if it is not
3510                  * permitted to overwrite the first word of the object on
3511                  * kmem_cache_free.
3512                  *
3513                  * This is the case if we do RCU, have a constructor or
3514                  * destructor or are poisoning the objects.
3515                  */
3516                 s->offset = size;
3517                 size += sizeof(void *);
3518         }
3519
3520 #ifdef CONFIG_SLUB_DEBUG
3521         if (flags & SLAB_STORE_USER)
3522                 /*
3523                  * Need to store information about allocs and frees after
3524                  * the object.
3525                  */
3526                 size += 2 * sizeof(struct track);
3527 #endif
3528
3529         kasan_cache_create(s, &size, &s->flags);
3530 #ifdef CONFIG_SLUB_DEBUG
3531         if (flags & SLAB_RED_ZONE) {
3532                 /*
3533                  * Add some empty padding so that we can catch
3534                  * overwrites from earlier objects rather than let
3535                  * tracking information or the free pointer be
3536                  * corrupted if a user writes before the start
3537                  * of the object.
3538                  */
3539                 size += sizeof(void *);
3540
3541                 s->red_left_pad = sizeof(void *);
3542                 s->red_left_pad = ALIGN(s->red_left_pad, s->align);
3543                 size += s->red_left_pad;
3544         }
3545 #endif
3546
3547         /*
3548          * SLUB stores one object immediately after another beginning from
3549          * offset 0. In order to align the objects we have to simply size
3550          * each object to conform to the alignment.
3551          */
3552         size = ALIGN(size, s->align);
3553         s->size = size;
3554         if (forced_order >= 0)
3555                 order = forced_order;
3556         else
3557                 order = calculate_order(size, s->reserved);
3558
3559         if (order < 0)
3560                 return 0;
3561
3562         s->allocflags = 0;
3563         if (order)
3564                 s->allocflags |= __GFP_COMP;
3565
3566         if (s->flags & SLAB_CACHE_DMA)
3567                 s->allocflags |= GFP_DMA;
3568
3569         if (s->flags & SLAB_RECLAIM_ACCOUNT)
3570                 s->allocflags |= __GFP_RECLAIMABLE;
3571
3572         /*
3573          * Determine the number of objects per slab
3574          */
3575         s->oo = oo_make(order, size, s->reserved);
3576         s->min = oo_make(get_order(size), size, s->reserved);
3577         if (oo_objects(s->oo) > oo_objects(s->max))
3578                 s->max = s->oo;
3579
3580         return !!oo_objects(s->oo);
3581 }
3582
3583 static int kmem_cache_open(struct kmem_cache *s, unsigned long flags)
3584 {
3585         s->flags = kmem_cache_flags(s->size, flags, s->name, s->ctor);
3586         s->reserved = 0;
3587
3588         if (need_reserve_slab_rcu && (s->flags & SLAB_DESTROY_BY_RCU))
3589                 s->reserved = sizeof(struct rcu_head);
3590
3591         if (!calculate_sizes(s, -1))
3592                 goto error;
3593         if (disable_higher_order_debug) {
3594                 /*
3595                  * Disable debugging flags that store metadata if the min slab
3596                  * order increased.
3597                  */
3598                 if (get_order(s->size) > get_order(s->object_size)) {
3599                         s->flags &= ~DEBUG_METADATA_FLAGS;
3600                         s->offset = 0;
3601                         if (!calculate_sizes(s, -1))
3602                                 goto error;
3603                 }
3604         }
3605
3606 #if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
3607     defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
3608         if (system_has_cmpxchg_double() && (s->flags & SLAB_NO_CMPXCHG) == 0)
3609                 /* Enable fast mode */
3610                 s->flags |= __CMPXCHG_DOUBLE;
3611 #endif
3612
3613         /*
3614          * The larger the object size is, the more pages we want on the partial
3615          * list to avoid pounding the page allocator excessively.
3616          */
3617         set_min_partial(s, ilog2(s->size) / 2);
3618
3619         /*
3620          * cpu_partial determined the maximum number of objects kept in the
3621          * per cpu partial lists of a processor.
3622          *
3623          * Per cpu partial lists mainly contain slabs that just have one
3624          * object freed. If they are used for allocation then they can be
3625          * filled up again with minimal effort. The slab will never hit the
3626          * per node partial lists and therefore no locking will be required.
3627          *
3628          * This setting also determines
3629          *
3630          * A) The number of objects from per cpu partial slabs dumped to the
3631          *    per node list when we reach the limit.
3632          * B) The number of objects in cpu partial slabs to extract from the
3633          *    per node list when we run out of per cpu objects. We only fetch
3634          *    50% to keep some capacity around for frees.
3635          */
3636         if (!kmem_cache_has_cpu_partial(s))
3637                 s->cpu_partial = 0;
3638         else if (s->size >= PAGE_SIZE)
3639                 s->cpu_partial = 2;
3640         else if (s->size >= 1024)
3641                 s->cpu_partial = 6;
3642         else if (s->size >= 256)
3643                 s->cpu_partial = 13;
3644         else
3645                 s->cpu_partial = 30;
3646
3647 #ifdef CONFIG_NUMA
3648         s->remote_node_defrag_ratio = 1000;
3649 #endif
3650
3651         /* Initialize the pre-computed randomized freelist if slab is up */
3652         if (slab_state >= UP) {
3653                 if (init_cache_random_seq(s))
3654                         goto error;
3655         }
3656
3657         if (!init_kmem_cache_nodes(s))
3658                 goto error;
3659
3660         if (alloc_kmem_cache_cpus(s))
3661                 return 0;
3662
3663         free_kmem_cache_nodes(s);
3664 error:
3665         if (flags & SLAB_PANIC)
3666                 panic("Cannot create slab %s size=%lu realsize=%u order=%u offset=%u flags=%lx\n",
3667                       s->name, (unsigned long)s->size, s->size,
3668                       oo_order(s->oo), s->offset, flags);
3669         return -EINVAL;
3670 }
3671
3672 static void list_slab_objects(struct kmem_cache *s, struct page *page,
3673                                                         const char *text)
3674 {
3675 #ifdef CONFIG_SLUB_DEBUG
3676         void *addr = page_address(page);
3677         void *p;
3678         unsigned long *map = kzalloc(BITS_TO_LONGS(page->objects) *
3679                                      sizeof(long), GFP_ATOMIC);
3680         if (!map)
3681                 return;
3682         slab_err(s, page, text, s->name);
3683         slab_lock(page);
3684
3685         get_map(s, page, map);
3686         for_each_object(p, s, addr, page->objects) {
3687
3688                 if (!test_bit(slab_index(p, s, addr), map)) {
3689                         pr_err("INFO: Object 0x%p @offset=%tu\n", p, p - addr);
3690                         print_tracking(s, p);
3691                 }
3692         }
3693         slab_unlock(page);
3694         kfree(map);
3695 #endif
3696 }
3697
3698 /*
3699  * Attempt to free all partial slabs on a node.
3700  * This is called from __kmem_cache_shutdown(). We must take list_lock
3701  * because sysfs file might still access partial list after the shutdowning.
3702  */
3703 static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
3704 {
3705         LIST_HEAD(discard);
3706         struct page *page, *h;
3707
3708         BUG_ON(irqs_disabled());
3709         spin_lock_irq(&n->list_lock);
3710         list_for_each_entry_safe(page, h, &n->partial, lru) {
3711                 if (!page->inuse) {
3712                         remove_partial(n, page);
3713                         list_add(&page->lru, &discard);
3714                 } else {
3715                         list_slab_objects(s, page,
3716                         "Objects remaining in %s on __kmem_cache_shutdown()");
3717                 }
3718         }
3719         spin_unlock_irq(&n->list_lock);
3720
3721         list_for_each_entry_safe(page, h, &discard, lru)
3722                 discard_slab(s, page);
3723 }
3724
3725 /*
3726  * Release all resources used by a slab cache.
3727  */
3728 int __kmem_cache_shutdown(struct kmem_cache *s)
3729 {
3730         int node;
3731         struct kmem_cache_node *n;
3732
3733         flush_all(s);
3734         /* Attempt to free all objects */
3735         for_each_kmem_cache_node(s, node, n) {
3736                 free_partial(s, n);
3737                 if (n->nr_partial || slabs_node(s, node))
3738                         return 1;
3739         }
3740         return 0;
3741 }
3742
3743 /********************************************************************
3744  *              Kmalloc subsystem
3745  *******************************************************************/
3746
3747 static int __init setup_slub_min_order(char *str)
3748 {
3749         get_option(&str, &slub_min_order);
3750
3751         return 1;
3752 }
3753
3754 __setup("slub_min_order=", setup_slub_min_order);
3755
3756 static int __init setup_slub_max_order(char *str)
3757 {
3758         get_option(&str, &slub_max_order);
3759         slub_max_order = min(slub_max_order, MAX_ORDER - 1);
3760
3761         return 1;
3762 }
3763
3764 __setup("slub_max_order=", setup_slub_max_order);
3765
3766 static int __init setup_slub_min_objects(char *str)
3767 {
3768         get_option(&str, &slub_min_objects);
3769
3770         return 1;
3771 }
3772
3773 __setup("slub_min_objects=", setup_slub_min_objects);
3774
3775 void *__kmalloc(size_t size, gfp_t flags)
3776 {
3777         struct kmem_cache *s;
3778         void *ret;
3779
3780         if (unlikely(size > KMALLOC_MAX_CACHE_SIZE))
3781                 return kmalloc_large(size, flags);
3782
3783         s = kmalloc_slab(size, flags);
3784
3785         if (unlikely(ZERO_OR_NULL_PTR(s)))
3786                 return s;
3787
3788         ret = slab_alloc(s, flags, _RET_IP_);
3789
3790         trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
3791
3792         kasan_kmalloc(s, ret, size, flags);
3793
3794         return ret;
3795 }
3796 EXPORT_SYMBOL(__kmalloc);
3797
3798 #ifdef CONFIG_NUMA
3799 static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
3800 {
3801         struct page *page;
3802         void *ptr = NULL;
3803
3804         flags |= __GFP_COMP | __GFP_NOTRACK;
3805         page = alloc_pages_node(node, flags, get_order(size));
3806         if (page)
3807                 ptr = page_address(page);
3808
3809         kmalloc_large_node_hook(ptr, size, flags);
3810         return ptr;
3811 }
3812
3813 void *__kmalloc_node(size_t size, gfp_t flags, int node)
3814 {
3815         struct kmem_cache *s;
3816         void *ret;
3817
3818         if (unlikely(size > KMALLOC_MAX_CACHE_SIZE)) {
3819                 ret = kmalloc_large_node(size, flags, node);
3820
3821                 trace_kmalloc_node(_RET_IP_, ret,
3822                                    size, PAGE_SIZE << get_order(size),
3823                                    flags, node);
3824
3825                 return ret;
3826         }
3827
3828         s = kmalloc_slab(size, flags);
3829
3830         if (unlikely(ZERO_OR_NULL_PTR(s)))
3831                 return s;
3832
3833         ret = slab_alloc_node(s, flags, node, _RET_IP_);
3834
3835         trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
3836
3837         kasan_kmalloc(s, ret, size, flags);
3838
3839         return ret;
3840 }
3841 EXPORT_SYMBOL(__kmalloc_node);
3842 #endif
3843
3844 #ifdef CONFIG_HARDENED_USERCOPY
3845 /*
3846  * Rejects objects that are incorrectly sized.
3847  *
3848  * Returns NULL if check passes, otherwise const char * to name of cache
3849  * to indicate an error.
3850  */
3851 const char *__check_heap_object(const void *ptr, unsigned long n,
3852                                 struct page *page)
3853 {
3854         struct kmem_cache *s;
3855         unsigned long offset;
3856         size_t object_size;
3857
3858         /* Find object and usable object size. */
3859         s = page->slab_cache;
3860         object_size = slab_ksize(s);
3861
3862         /* Reject impossible pointers. */
3863         if (ptr < page_address(page))
3864                 return s->name;
3865
3866         /* Find offset within object. */
3867         offset = (ptr - page_address(page)) % s->size;
3868
3869         /* Adjust for redzone and reject if within the redzone. */
3870         if (kmem_cache_debug(s) && s->flags & SLAB_RED_ZONE) {
3871                 if (offset < s->red_left_pad)
3872                         return s->name;
3873                 offset -= s->red_left_pad;
3874         }
3875
3876         /* Allow address range falling entirely within object size. */
3877         if (offset <= object_size && n <= object_size - offset)
3878                 return NULL;
3879
3880         return s->name;
3881 }
3882 #endif /* CONFIG_HARDENED_USERCOPY */
3883
3884 static size_t __ksize(const void *object)
3885 {
3886         struct page *page;
3887
3888         if (unlikely(object == ZERO_SIZE_PTR))
3889                 return 0;
3890
3891         page = virt_to_head_page(object);
3892
3893         if (unlikely(!PageSlab(page))) {
3894                 WARN_ON(!PageCompound(page));
3895                 return PAGE_SIZE << compound_order(page);
3896         }
3897
3898         return slab_ksize(page->slab_cache);
3899 }
3900
3901 size_t ksize(const void *object)
3902 {
3903         size_t size = __ksize(object);
3904         /* We assume that ksize callers could use whole allocated area,
3905          * so we need to unpoison this area.
3906          */
3907         kasan_unpoison_shadow(object, size);
3908         return size;
3909 }
3910 EXPORT_SYMBOL(ksize);
3911
3912 void kfree(const void *x)
3913 {
3914         struct page *page;
3915         void *object = (void *)x;
3916
3917         trace_kfree(_RET_IP_, x);
3918
3919         if (unlikely(ZERO_OR_NULL_PTR(x)))
3920                 return;
3921
3922         page = virt_to_head_page(x);
3923         if (unlikely(!PageSlab(page))) {
3924                 BUG_ON(!PageCompound(page));
3925                 kfree_hook(x);
3926                 __free_pages(page, compound_order(page));
3927                 return;
3928         }
3929         slab_free(page->slab_cache, page, object, NULL, 1, _RET_IP_);
3930 }
3931 EXPORT_SYMBOL(kfree);
3932
3933 #define SHRINK_PROMOTE_MAX 32
3934
3935 /*
3936  * kmem_cache_shrink discards empty slabs and promotes the slabs filled
3937  * up most to the head of the partial lists. New allocations will then
3938  * fill those up and thus they can be removed from the partial lists.
3939  *
3940  * The slabs with the least items are placed last. This results in them
3941  * being allocated from last increasing the chance that the last objects
3942  * are freed in them.
3943  */
3944 int __kmem_cache_shrink(struct kmem_cache *s)
3945 {
3946         int node;
3947         int i;
3948         struct kmem_cache_node *n;
3949         struct page *page;
3950         struct page *t;
3951         struct list_head discard;
3952         struct list_head promote[SHRINK_PROMOTE_MAX];
3953         unsigned long flags;
3954         int ret = 0;
3955
3956         flush_all(s);
3957         for_each_kmem_cache_node(s, node, n) {
3958                 INIT_LIST_HEAD(&discard);
3959                 for (i = 0; i < SHRINK_PROMOTE_MAX; i++)
3960                         INIT_LIST_HEAD(promote + i);
3961
3962                 spin_lock_irqsave(&n->list_lock, flags);
3963
3964                 /*
3965                  * Build lists of slabs to discard or promote.
3966                  *
3967                  * Note that concurrent frees may occur while we hold the
3968                  * list_lock. page->inuse here is the upper limit.
3969                  */
3970                 list_for_each_entry_safe(page, t, &n->partial, lru) {
3971                         int free = page->objects - page->inuse;
3972
3973                         /* Do not reread page->inuse */
3974                         barrier();
3975
3976                         /* We do not keep full slabs on the list */
3977                         BUG_ON(free <= 0);
3978
3979                         if (free == page->objects) {
3980                                 list_move(&page->lru, &discard);
3981                                 n->nr_partial--;
3982                         } else if (free <= SHRINK_PROMOTE_MAX)
3983                                 list_move(&page->lru, promote + free - 1);
3984                 }
3985
3986                 /*
3987                  * Promote the slabs filled up most to the head of the
3988                  * partial list.
3989                  */
3990                 for (i = SHRINK_PROMOTE_MAX - 1; i >= 0; i--)
3991                         list_splice(promote + i, &n->partial);
3992
3993                 spin_unlock_irqrestore(&n->list_lock, flags);
3994
3995                 /* Release empty slabs */
3996                 list_for_each_entry_safe(page, t, &discard, lru)
3997                         discard_slab(s, page);
3998
3999                 if (slabs_node(s, node))
4000                         ret = 1;
4001         }
4002
4003         return ret;
4004 }
4005
4006 static int slab_mem_going_offline_callback(void *arg)
4007 {
4008         struct kmem_cache *s;
4009
4010         mutex_lock(&slab_mutex);
4011         list_for_each_entry(s, &slab_caches, list)
4012                 __kmem_cache_shrink(s);
4013         mutex_unlock(&slab_mutex);
4014
4015         return 0;
4016 }
4017
4018 static void slab_mem_offline_callback(void *arg)
4019 {
4020         struct kmem_cache_node *n;
4021         struct kmem_cache *s;
4022         struct memory_notify *marg = arg;
4023         int offline_node;
4024
4025         offline_node = marg->status_change_nid_normal;
4026
4027         /*
4028          * If the node still has available memory. we need kmem_cache_node
4029          * for it yet.
4030          */
4031         if (offline_node < 0)
4032                 return;
4033
4034         mutex_lock(&slab_mutex);
4035         list_for_each_entry(s, &slab_caches, list) {
4036                 n = get_node(s, offline_node);
4037                 if (n) {
4038                         /*
4039                          * if n->nr_slabs > 0, slabs still exist on the node
4040                          * that is going down. We were unable to free them,
4041                          * and offline_pages() function shouldn't call this
4042                          * callback. So, we must fail.
4043                          */
4044                         BUG_ON(slabs_node(s, offline_node));
4045
4046                         s->node[offline_node] = NULL;
4047                         kmem_cache_free(kmem_cache_node, n);
4048                 }
4049         }
4050         mutex_unlock(&slab_mutex);
4051 }
4052
4053 static int slab_mem_going_online_callback(void *arg)
4054 {
4055         struct kmem_cache_node *n;
4056         struct kmem_cache *s;
4057         struct memory_notify *marg = arg;
4058         int nid = marg->status_change_nid_normal;
4059         int ret = 0;
4060
4061         /*
4062          * If the node's memory is already available, then kmem_cache_node is
4063          * already created. Nothing to do.
4064          */
4065         if (nid < 0)
4066                 return 0;
4067
4068         /*
4069          * We are bringing a node online. No memory is available yet. We must
4070          * allocate a kmem_cache_node structure in order to bring the node
4071          * online.
4072          */
4073         mutex_lock(&slab_mutex);
4074         list_for_each_entry(s, &slab_caches, list) {
4075                 /*
4076                  * XXX: kmem_cache_alloc_node will fallback to other nodes
4077                  *      since memory is not yet available from the node that
4078                  *      is brought up.
4079                  */
4080                 n = kmem_cache_alloc(kmem_cache_node, GFP_KERNEL);
4081                 if (!n) {
4082                         ret = -ENOMEM;
4083                         goto out;
4084                 }
4085                 init_kmem_cache_node(n);
4086                 s->node[nid] = n;
4087         }
4088 out:
4089         mutex_unlock(&slab_mutex);
4090         return ret;
4091 }
4092
4093 static int slab_memory_callback(struct notifier_block *self,
4094                                 unsigned long action, void *arg)
4095 {
4096         int ret = 0;
4097
4098         switch (action) {
4099         case MEM_GOING_ONLINE:
4100                 ret = slab_mem_going_online_callback(arg);
4101                 break;
4102         case MEM_GOING_OFFLINE:
4103                 ret = slab_mem_going_offline_callback(arg);
4104                 break;
4105         case MEM_OFFLINE:
4106         case MEM_CANCEL_ONLINE:
4107                 slab_mem_offline_callback(arg);
4108                 break;
4109         case MEM_ONLINE:
4110         case MEM_CANCEL_OFFLINE:
4111                 break;
4112         }
4113         if (ret)
4114                 ret = notifier_from_errno(ret);
4115         else
4116                 ret = NOTIFY_OK;
4117         return ret;
4118 }
4119
4120 static struct notifier_block slab_memory_callback_nb = {
4121         .notifier_call = slab_memory_callback,
4122         .priority = SLAB_CALLBACK_PRI,
4123 };
4124
4125 /********************************************************************
4126  *                      Basic setup of slabs
4127  *******************************************************************/
4128
4129 /*
4130  * Used for early kmem_cache structures that were allocated using
4131  * the page allocator. Allocate them properly then fix up the pointers
4132  * that may be pointing to the wrong kmem_cache structure.
4133  */
4134
4135 static struct kmem_cache * __init bootstrap(struct kmem_cache *static_cache)
4136 {
4137         int node;
4138         struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
4139         struct kmem_cache_node *n;
4140
4141         memcpy(s, static_cache, kmem_cache->object_size);
4142
4143         /*
4144          * This runs very early, and only the boot processor is supposed to be
4145          * up.  Even if it weren't true, IRQs are not up so we couldn't fire
4146          * IPIs around.
4147          */
4148         __flush_cpu_slab(s, smp_processor_id());
4149         for_each_kmem_cache_node(s, node, n) {
4150                 struct page *p;
4151
4152                 list_for_each_entry(p, &n->partial, lru)
4153                         p->slab_cache = s;
4154
4155 #ifdef CONFIG_SLUB_DEBUG
4156                 list_for_each_entry(p, &n->full, lru)
4157                         p->slab_cache = s;
4158 #endif
4159         }
4160         slab_init_memcg_params(s);
4161         list_add(&s->list, &slab_caches);
4162         return s;
4163 }
4164
4165 void __init kmem_cache_init(void)
4166 {
4167         static __initdata struct kmem_cache boot_kmem_cache,
4168                 boot_kmem_cache_node;
4169
4170         if (debug_guardpage_minorder())
4171                 slub_max_order = 0;
4172
4173         kmem_cache_node = &boot_kmem_cache_node;
4174         kmem_cache = &boot_kmem_cache;
4175
4176         create_boot_cache(kmem_cache_node, "kmem_cache_node",
4177                 sizeof(struct kmem_cache_node), SLAB_HWCACHE_ALIGN);
4178
4179         register_hotmemory_notifier(&slab_memory_callback_nb);
4180
4181         /* Able to allocate the per node structures */
4182         slab_state = PARTIAL;
4183
4184         create_boot_cache(kmem_cache, "kmem_cache",
4185                         offsetof(struct kmem_cache, node) +
4186                                 nr_node_ids * sizeof(struct kmem_cache_node *),
4187                        SLAB_HWCACHE_ALIGN);
4188
4189         kmem_cache = bootstrap(&boot_kmem_cache);
4190
4191         /*
4192          * Allocate kmem_cache_node properly from the kmem_cache slab.
4193          * kmem_cache_node is separately allocated so no need to
4194          * update any list pointers.
4195          */
4196         kmem_cache_node = bootstrap(&boot_kmem_cache_node);
4197
4198         /* Now we can use the kmem_cache to allocate kmalloc slabs */
4199         setup_kmalloc_cache_index_table();
4200         create_kmalloc_caches(0);
4201
4202         /* Setup random freelists for each cache */
4203         init_freelist_randomization();
4204
4205         cpuhp_setup_state_nocalls(CPUHP_SLUB_DEAD, "slub:dead", NULL,
4206                                   slub_cpu_dead);
4207
4208         pr_info("SLUB: HWalign=%d, Order=%d-%d, MinObjects=%d, CPUs=%d, Nodes=%d\n",
4209                 cache_line_size(),
4210                 slub_min_order, slub_max_order, slub_min_objects,
4211                 nr_cpu_ids, nr_node_ids);
4212 }
4213
4214 void __init kmem_cache_init_late(void)
4215 {
4216 }
4217
4218 struct kmem_cache *
4219 __kmem_cache_alias(const char *name, size_t size, size_t align,
4220                    unsigned long flags, void (*ctor)(void *))
4221 {
4222         struct kmem_cache *s, *c;
4223
4224         s = find_mergeable(size, align, flags, name, ctor);
4225         if (s) {
4226                 s->refcount++;
4227
4228                 /*
4229                  * Adjust the object sizes so that we clear
4230                  * the complete object on kzalloc.
4231                  */
4232                 s->object_size = max(s->object_size, (int)size);
4233                 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
4234
4235                 for_each_memcg_cache(c, s) {
4236                         c->object_size = s->object_size;
4237                         c->inuse = max_t(int, c->inuse,
4238                                          ALIGN(size, sizeof(void *)));
4239                 }
4240
4241                 if (sysfs_slab_alias(s, name)) {
4242                         s->refcount--;
4243                         s = NULL;
4244                 }
4245         }
4246
4247         return s;
4248 }
4249
4250 int __kmem_cache_create(struct kmem_cache *s, unsigned long flags)
4251 {
4252         int err;
4253
4254         err = kmem_cache_open(s, flags);
4255         if (err)
4256                 return err;
4257
4258         /* Mutex is not taken during early boot */
4259         if (slab_state <= UP)
4260                 return 0;
4261
4262         memcg_propagate_slab_attrs(s);
4263         err = sysfs_slab_add(s);
4264         if (err)
4265                 __kmem_cache_release(s);
4266
4267         return err;
4268 }
4269
4270 void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
4271 {
4272         struct kmem_cache *s;
4273         void *ret;
4274
4275         if (unlikely(size > KMALLOC_MAX_CACHE_SIZE))
4276                 return kmalloc_large(size, gfpflags);
4277
4278         s = kmalloc_slab(size, gfpflags);
4279
4280         if (unlikely(ZERO_OR_NULL_PTR(s)))
4281                 return s;
4282
4283         ret = slab_alloc(s, gfpflags, caller);
4284
4285         /* Honor the call site pointer we received. */
4286         trace_kmalloc(caller, ret, size, s->size, gfpflags);
4287
4288         return ret;
4289 }
4290
4291 #ifdef CONFIG_NUMA
4292 void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
4293                                         int node, unsigned long caller)
4294 {
4295         struct kmem_cache *s;
4296         void *ret;
4297
4298         if (unlikely(size > KMALLOC_MAX_CACHE_SIZE)) {
4299                 ret = kmalloc_large_node(size, gfpflags, node);
4300
4301                 trace_kmalloc_node(caller, ret,
4302                                    size, PAGE_SIZE << get_order(size),
4303                                    gfpflags, node);
4304
4305                 return ret;
4306         }
4307
4308         s = kmalloc_slab(size, gfpflags);
4309
4310         if (unlikely(ZERO_OR_NULL_PTR(s)))
4311                 return s;
4312
4313         ret = slab_alloc_node(s, gfpflags, node, caller);
4314
4315         /* Honor the call site pointer we received. */
4316         trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
4317
4318         return ret;
4319 }
4320 #endif
4321
4322 #ifdef CONFIG_SYSFS
4323 static int count_inuse(struct page *page)
4324 {
4325         return page->inuse;
4326 }
4327
4328 static int count_total(struct page *page)
4329 {
4330         return page->objects;
4331 }
4332 #endif
4333
4334 #ifdef CONFIG_SLUB_DEBUG
4335 static int validate_slab(struct kmem_cache *s, struct page *page,
4336                                                 unsigned long *map)
4337 {
4338         void *p;
4339         void *addr = page_address(page);
4340
4341         if (!check_slab(s, page) ||
4342                         !on_freelist(s, page, NULL))
4343                 return 0;
4344
4345         /* Now we know that a valid freelist exists */
4346         bitmap_zero(map, page->objects);
4347
4348         get_map(s, page, map);
4349         for_each_object(p, s, addr, page->objects) {
4350                 if (test_bit(slab_index(p, s, addr), map))
4351                         if (!check_object(s, page, p, SLUB_RED_INACTIVE))
4352                                 return 0;
4353         }
4354
4355         for_each_object(p, s, addr, page->objects)
4356                 if (!test_bit(slab_index(p, s, addr), map))
4357                         if (!check_object(s, page, p, SLUB_RED_ACTIVE))
4358                                 return 0;
4359         return 1;
4360 }
4361
4362 static void validate_slab_slab(struct kmem_cache *s, struct page *page,
4363                                                 unsigned long *map)
4364 {
4365         slab_lock(page);
4366         validate_slab(s, page, map);
4367         slab_unlock(page);
4368 }
4369
4370 static int validate_slab_node(struct kmem_cache *s,
4371                 struct kmem_cache_node *n, unsigned long *map)
4372 {
4373         unsigned long count = 0;
4374         struct page *page;
4375         unsigned long flags;
4376
4377         spin_lock_irqsave(&n->list_lock, flags);
4378
4379         list_for_each_entry(page, &n->partial, lru) {
4380                 validate_slab_slab(s, page, map);
4381                 count++;
4382         }
4383         if (count != n->nr_partial)
4384                 pr_err("SLUB %s: %ld partial slabs counted but counter=%ld\n",
4385                        s->name, count, n->nr_partial);
4386
4387         if (!(s->flags & SLAB_STORE_USER))
4388                 goto out;
4389
4390         list_for_each_entry(page, &n->full, lru) {
4391                 validate_slab_slab(s, page, map);
4392                 count++;
4393         }
4394         if (count != atomic_long_read(&n->nr_slabs))
4395                 pr_err("SLUB: %s %ld slabs counted but counter=%ld\n",
4396                        s->name, count, atomic_long_read(&n->nr_slabs));
4397
4398 out:
4399         spin_unlock_irqrestore(&n->list_lock, flags);
4400         return count;
4401 }
4402
4403 static long validate_slab_cache(struct kmem_cache *s)
4404 {
4405         int node;
4406         unsigned long count = 0;
4407         unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
4408                                 sizeof(unsigned long), GFP_KERNEL);
4409         struct kmem_cache_node *n;
4410
4411         if (!map)
4412                 return -ENOMEM;
4413
4414         flush_all(s);
4415         for_each_kmem_cache_node(s, node, n)
4416                 count += validate_slab_node(s, n, map);
4417         kfree(map);
4418         return count;
4419 }
4420 /*
4421  * Generate lists of code addresses where slabcache objects are allocated
4422  * and freed.
4423  */
4424
4425 struct location {
4426         unsigned long count;
4427         unsigned long addr;
4428         long long sum_time;
4429         long min_time;
4430         long max_time;
4431         long min_pid;
4432         long max_pid;
4433         DECLARE_BITMAP(cpus, NR_CPUS);
4434         nodemask_t nodes;
4435 };
4436
4437 struct loc_track {
4438         unsigned long max;
4439         unsigned long count;
4440         struct location *loc;
4441 };
4442
4443 static void free_loc_track(struct loc_track *t)
4444 {
4445         if (t->max)
4446                 free_pages((unsigned long)t->loc,
4447                         get_order(sizeof(struct location) * t->max));
4448 }
4449
4450 static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
4451 {
4452         struct location *l;
4453         int order;
4454
4455         order = get_order(sizeof(struct location) * max);
4456
4457         l = (void *)__get_free_pages(flags, order);
4458         if (!l)
4459                 return 0;
4460
4461         if (t->count) {
4462                 memcpy(l, t->loc, sizeof(struct location) * t->count);
4463                 free_loc_track(t);
4464         }
4465         t->max = max;
4466         t->loc = l;
4467         return 1;
4468 }
4469
4470 static int add_location(struct loc_track *t, struct kmem_cache *s,
4471                                 const struct track *track)
4472 {
4473         long start, end, pos;
4474         struct location *l;
4475         unsigned long caddr;
4476         unsigned long age = jiffies - track->when;
4477
4478         start = -1;
4479         end = t->count;
4480
4481         for ( ; ; ) {
4482                 pos = start + (end - start + 1) / 2;
4483
4484                 /*
4485                  * There is nothing at "end". If we end up there
4486                  * we need to add something to before end.
4487                  */
4488                 if (pos == end)
4489                         break;
4490
4491                 caddr = t->loc[pos].addr;
4492                 if (track->addr == caddr) {
4493
4494                         l = &t->loc[pos];
4495                         l->count++;
4496                         if (track->when) {
4497                                 l->sum_time += age;
4498                                 if (age < l->min_time)
4499                                         l->min_time = age;
4500                                 if (age > l->max_time)
4501                                         l->max_time = age;
4502
4503                                 if (track->pid < l->min_pid)
4504                                         l->min_pid = track->pid;
4505                                 if (track->pid > l->max_pid)
4506                                         l->max_pid = track->pid;
4507
4508                                 cpumask_set_cpu(track->cpu,
4509                                                 to_cpumask(l->cpus));
4510                         }
4511                         node_set(page_to_nid(virt_to_page(track)), l->nodes);
4512                         return 1;
4513                 }
4514
4515                 if (track->addr < caddr)
4516                         end = pos;
4517                 else
4518                         start = pos;
4519         }
4520
4521         /*
4522          * Not found. Insert new tracking element.
4523          */
4524         if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
4525                 return 0;
4526
4527         l = t->loc + pos;
4528         if (pos < t->count)
4529                 memmove(l + 1, l,
4530                         (t->count - pos) * sizeof(struct location));
4531         t->count++;
4532         l->count = 1;
4533         l->addr = track->addr;
4534         l->sum_time = age;
4535         l->min_time = age;
4536         l->max_time = age;
4537         l->min_pid = track->pid;
4538         l->max_pid = track->pid;
4539         cpumask_clear(to_cpumask(l->cpus));
4540         cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
4541         nodes_clear(l->nodes);
4542         node_set(page_to_nid(virt_to_page(track)), l->nodes);
4543         return 1;
4544 }
4545
4546 static void process_slab(struct loc_track *t, struct kmem_cache *s,
4547                 struct page *page, enum track_item alloc,
4548                 unsigned long *map)
4549 {
4550         void *addr = page_address(page);
4551         void *p;
4552
4553         bitmap_zero(map, page->objects);
4554         get_map(s, page, map);
4555
4556         for_each_object(p, s, addr, page->objects)
4557                 if (!test_bit(slab_index(p, s, addr), map))
4558                         add_location(t, s, get_track(s, p, alloc));
4559 }
4560
4561 static int list_locations(struct kmem_cache *s, char *buf,
4562                                         enum track_item alloc)
4563 {
4564         int len = 0;
4565         unsigned long i;
4566         struct loc_track t = { 0, 0, NULL };
4567         int node;
4568         unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
4569                                      sizeof(unsigned long), GFP_KERNEL);
4570         struct kmem_cache_node *n;
4571
4572         if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
4573                                      GFP_TEMPORARY)) {
4574                 kfree(map);
4575                 return sprintf(buf, "Out of memory\n");
4576         }
4577         /* Push back cpu slabs */
4578         flush_all(s);
4579
4580         for_each_kmem_cache_node(s, node, n) {
4581                 unsigned long flags;
4582                 struct page *page;
4583
4584                 if (!atomic_long_read(&n->nr_slabs))
4585                         continue;
4586
4587                 spin_lock_irqsave(&n->list_lock, flags);
4588                 list_for_each_entry(page, &n->partial, lru)
4589                         process_slab(&t, s, page, alloc, map);
4590                 list_for_each_entry(page, &n->full, lru)
4591                         process_slab(&t, s, page, alloc, map);
4592                 spin_unlock_irqrestore(&n->list_lock, flags);
4593         }
4594
4595         for (i = 0; i < t.count; i++) {
4596                 struct location *l = &t.loc[i];
4597
4598                 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
4599                         break;
4600                 len += sprintf(buf + len, "%7ld ", l->count);
4601
4602                 if (l->addr)
4603                         len += sprintf(buf + len, "%pS", (void *)l->addr);
4604                 else
4605                         len += sprintf(buf + len, "<not-available>");
4606
4607                 if (l->sum_time != l->min_time) {
4608                         len += sprintf(buf + len, " age=%ld/%ld/%ld",
4609                                 l->min_time,
4610                                 (long)div_u64(l->sum_time, l->count),
4611                                 l->max_time);
4612                 } else
4613                         len += sprintf(buf + len, " age=%ld",
4614                                 l->min_time);
4615
4616                 if (l->min_pid != l->max_pid)
4617                         len += sprintf(buf + len, " pid=%ld-%ld",
4618                                 l->min_pid, l->max_pid);
4619                 else
4620                         len += sprintf(buf + len, " pid=%ld",
4621                                 l->min_pid);
4622
4623                 if (num_online_cpus() > 1 &&
4624                                 !cpumask_empty(to_cpumask(l->cpus)) &&
4625                                 len < PAGE_SIZE - 60)
4626                         len += scnprintf(buf + len, PAGE_SIZE - len - 50,
4627                                          " cpus=%*pbl",
4628                                          cpumask_pr_args(to_cpumask(l->cpus)));
4629
4630                 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
4631                                 len < PAGE_SIZE - 60)
4632                         len += scnprintf(buf + len, PAGE_SIZE - len - 50,
4633                                          " nodes=%*pbl",
4634                                          nodemask_pr_args(&l->nodes));
4635
4636                 len += sprintf(buf + len, "\n");
4637         }
4638
4639         free_loc_track(&t);
4640         kfree(map);
4641         if (!t.count)
4642                 len += sprintf(buf, "No data\n");
4643         return len;
4644 }
4645 #endif
4646
4647 #ifdef SLUB_RESILIENCY_TEST
4648 static void __init resiliency_test(void)
4649 {
4650         u8 *p;
4651
4652         BUILD_BUG_ON(KMALLOC_MIN_SIZE > 16 || KMALLOC_SHIFT_HIGH < 10);
4653
4654         pr_err("SLUB resiliency testing\n");
4655         pr_err("-----------------------\n");
4656         pr_err("A. Corruption after allocation\n");
4657
4658         p = kzalloc(16, GFP_KERNEL);
4659         p[16] = 0x12;
4660         pr_err("\n1. kmalloc-16: Clobber Redzone/next pointer 0x12->0x%p\n\n",
4661                p + 16);
4662
4663         validate_slab_cache(kmalloc_caches[4]);
4664
4665         /* Hmmm... The next two are dangerous */
4666         p = kzalloc(32, GFP_KERNEL);
4667         p[32 + sizeof(void *)] = 0x34;
4668         pr_err("\n2. kmalloc-32: Clobber next pointer/next slab 0x34 -> -0x%p\n",
4669                p);
4670         pr_err("If allocated object is overwritten then not detectable\n\n");
4671
4672         validate_slab_cache(kmalloc_caches[5]);
4673         p = kzalloc(64, GFP_KERNEL);
4674         p += 64 + (get_cycles() & 0xff) * sizeof(void *);
4675         *p = 0x56;
4676         pr_err("\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
4677                p);
4678         pr_err("If allocated object is overwritten then not detectable\n\n");
4679         validate_slab_cache(kmalloc_caches[6]);
4680
4681         pr_err("\nB. Corruption after free\n");
4682         p = kzalloc(128, GFP_KERNEL);
4683         kfree(p);
4684         *p = 0x78;
4685         pr_err("1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
4686         validate_slab_cache(kmalloc_caches[7]);
4687
4688         p = kzalloc(256, GFP_KERNEL);
4689         kfree(p);
4690         p[50] = 0x9a;
4691         pr_err("\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n", p);
4692         validate_slab_cache(kmalloc_caches[8]);
4693
4694         p = kzalloc(512, GFP_KERNEL);
4695         kfree(p);
4696         p[512] = 0xab;
4697         pr_err("\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
4698         validate_slab_cache(kmalloc_caches[9]);
4699 }
4700 #else
4701 #ifdef CONFIG_SYSFS
4702 static void resiliency_test(void) {};
4703 #endif
4704 #endif
4705
4706 #ifdef CONFIG_SYSFS
4707 enum slab_stat_type {
4708         SL_ALL,                 /* All slabs */
4709         SL_PARTIAL,             /* Only partially allocated slabs */
4710         SL_CPU,                 /* Only slabs used for cpu caches */
4711         SL_OBJECTS,             /* Determine allocated objects not slabs */
4712         SL_TOTAL                /* Determine object capacity not slabs */
4713 };
4714
4715 #define SO_ALL          (1 << SL_ALL)
4716 #define SO_PARTIAL      (1 << SL_PARTIAL)
4717 #define SO_CPU          (1 << SL_CPU)
4718 #define SO_OBJECTS      (1 << SL_OBJECTS)
4719 #define SO_TOTAL        (1 << SL_TOTAL)
4720
4721 static ssize_t show_slab_objects(struct kmem_cache *s,
4722                             char *buf, unsigned long flags)
4723 {
4724         unsigned long total = 0;
4725         int node;
4726         int x;
4727         unsigned long *nodes;
4728
4729         nodes = kzalloc(sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
4730         if (!nodes)
4731                 return -ENOMEM;
4732
4733         if (flags & SO_CPU) {
4734                 int cpu;
4735
4736                 for_each_possible_cpu(cpu) {
4737                         struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab,
4738                                                                cpu);
4739                         int node;
4740                         struct page *page;
4741
4742                         page = READ_ONCE(c->page);
4743                         if (!page)
4744                                 continue;
4745
4746                         node = page_to_nid(page);
4747                         if (flags & SO_TOTAL)
4748                                 x = page->objects;
4749                         else if (flags & SO_OBJECTS)
4750                                 x = page->inuse;
4751                         else
4752                                 x = 1;
4753
4754                         total += x;
4755                         nodes[node] += x;
4756
4757                         page = READ_ONCE(c->partial);
4758                         if (page) {
4759                                 node = page_to_nid(page);
4760                                 if (flags & SO_TOTAL)
4761                                         WARN_ON_ONCE(1);
4762                                 else if (flags & SO_OBJECTS)
4763                                         WARN_ON_ONCE(1);
4764                                 else
4765                                         x = page->pages;
4766                                 total += x;
4767                                 nodes[node] += x;
4768                         }
4769                 }
4770         }
4771
4772         /*
4773          * It is impossible to take "mem_hotplug_lock" here with "kernfs_mutex"
4774          * already held which will conflict with an existing lock order:
4775          *
4776          * mem_hotplug_lock->slab_mutex->kernfs_mutex
4777          *
4778          * We don't really need mem_hotplug_lock (to hold off
4779          * slab_mem_going_offline_callback) here because slab's memory hot
4780          * unplug code doesn't destroy the kmem_cache->node[] data.
4781          */
4782
4783 #ifdef CONFIG_SLUB_DEBUG
4784         if (flags & SO_ALL) {
4785                 struct kmem_cache_node *n;
4786
4787                 for_each_kmem_cache_node(s, node, n) {
4788
4789                         if (flags & SO_TOTAL)
4790                                 x = atomic_long_read(&n->total_objects);
4791                         else if (flags & SO_OBJECTS)
4792                                 x = atomic_long_read(&n->total_objects) -
4793                                         count_partial(n, count_free);
4794                         else
4795                                 x = atomic_long_read(&n->nr_slabs);
4796                         total += x;
4797                         nodes[node] += x;
4798                 }
4799
4800         } else
4801 #endif
4802         if (flags & SO_PARTIAL) {
4803                 struct kmem_cache_node *n;
4804
4805                 for_each_kmem_cache_node(s, node, n) {
4806                         if (flags & SO_TOTAL)
4807                                 x = count_partial(n, count_total);
4808                         else if (flags & SO_OBJECTS)
4809                                 x = count_partial(n, count_inuse);
4810                         else
4811                                 x = n->nr_partial;
4812                         total += x;
4813                         nodes[node] += x;
4814                 }
4815         }
4816         x = sprintf(buf, "%lu", total);
4817 #ifdef CONFIG_NUMA
4818         for (node = 0; node < nr_node_ids; node++)
4819                 if (nodes[node])
4820                         x += sprintf(buf + x, " N%d=%lu",
4821                                         node, nodes[node]);
4822 #endif
4823         kfree(nodes);
4824         return x + sprintf(buf + x, "\n");
4825 }
4826
4827 #ifdef CONFIG_SLUB_DEBUG
4828 static int any_slab_objects(struct kmem_cache *s)
4829 {
4830         int node;
4831         struct kmem_cache_node *n;
4832
4833         for_each_kmem_cache_node(s, node, n)
4834                 if (atomic_long_read(&n->total_objects))
4835                         return 1;
4836
4837         return 0;
4838 }
4839 #endif
4840
4841 #define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
4842 #define to_slab(n) container_of(n, struct kmem_cache, kobj)
4843
4844 struct slab_attribute {
4845         struct attribute attr;
4846         ssize_t (*show)(struct kmem_cache *s, char *buf);
4847         ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
4848 };
4849
4850 #define SLAB_ATTR_RO(_name) \
4851         static struct slab_attribute _name##_attr = \
4852         __ATTR(_name, 0400, _name##_show, NULL)
4853
4854 #define SLAB_ATTR(_name) \
4855         static struct slab_attribute _name##_attr =  \
4856         __ATTR(_name, 0600, _name##_show, _name##_store)
4857
4858 static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
4859 {
4860         return sprintf(buf, "%d\n", s->size);
4861 }
4862 SLAB_ATTR_RO(slab_size);
4863
4864 static ssize_t align_show(struct kmem_cache *s, char *buf)
4865 {
4866         return sprintf(buf, "%d\n", s->align);
4867 }
4868 SLAB_ATTR_RO(align);
4869
4870 static ssize_t object_size_show(struct kmem_cache *s, char *buf)
4871 {
4872         return sprintf(buf, "%d\n", s->object_size);
4873 }
4874 SLAB_ATTR_RO(object_size);
4875
4876 static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
4877 {
4878         return sprintf(buf, "%d\n", oo_objects(s->oo));
4879 }
4880 SLAB_ATTR_RO(objs_per_slab);
4881
4882 static ssize_t order_store(struct kmem_cache *s,
4883                                 const char *buf, size_t length)
4884 {
4885         unsigned long order;
4886         int err;
4887
4888         err = kstrtoul(buf, 10, &order);
4889         if (err)
4890                 return err;
4891
4892         if (order > slub_max_order || order < slub_min_order)
4893                 return -EINVAL;
4894
4895         calculate_sizes(s, order);
4896         return length;
4897 }
4898
4899 static ssize_t order_show(struct kmem_cache *s, char *buf)
4900 {
4901         return sprintf(buf, "%d\n", oo_order(s->oo));
4902 }
4903 SLAB_ATTR(order);
4904
4905 static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
4906 {
4907         return sprintf(buf, "%lu\n", s->min_partial);
4908 }
4909
4910 static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
4911                                  size_t length)
4912 {
4913         unsigned long min;
4914         int err;
4915
4916         err = kstrtoul(buf, 10, &min);
4917         if (err)
4918                 return err;
4919
4920         set_min_partial(s, min);
4921         return length;
4922 }
4923 SLAB_ATTR(min_partial);
4924
4925 static ssize_t cpu_partial_show(struct kmem_cache *s, char *buf)
4926 {
4927         return sprintf(buf, "%u\n", s->cpu_partial);
4928 }
4929
4930 static ssize_t cpu_partial_store(struct kmem_cache *s, const char *buf,
4931                                  size_t length)
4932 {
4933         unsigned int objects;
4934         int err;
4935
4936         err = kstrtouint(buf, 10, &objects);
4937         if (err)
4938                 return err;
4939         if (objects && !kmem_cache_has_cpu_partial(s))
4940                 return -EINVAL;
4941
4942         s->cpu_partial = objects;
4943         flush_all(s);
4944         return length;
4945 }
4946 SLAB_ATTR(cpu_partial);
4947
4948 static ssize_t ctor_show(struct kmem_cache *s, char *buf)
4949 {
4950         if (!s->ctor)
4951                 return 0;
4952         return sprintf(buf, "%pS\n", s->ctor);
4953 }
4954 SLAB_ATTR_RO(ctor);
4955
4956 static ssize_t aliases_show(struct kmem_cache *s, char *buf)
4957 {
4958         return sprintf(buf, "%d\n", s->refcount < 0 ? 0 : s->refcount - 1);
4959 }
4960 SLAB_ATTR_RO(aliases);
4961
4962 static ssize_t partial_show(struct kmem_cache *s, char *buf)
4963 {
4964         return show_slab_objects(s, buf, SO_PARTIAL);
4965 }
4966 SLAB_ATTR_RO(partial);
4967
4968 static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
4969 {
4970         return show_slab_objects(s, buf, SO_CPU);
4971 }
4972 SLAB_ATTR_RO(cpu_slabs);
4973
4974 static ssize_t objects_show(struct kmem_cache *s, char *buf)
4975 {
4976         return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
4977 }
4978 SLAB_ATTR_RO(objects);
4979
4980 static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
4981 {
4982         return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
4983 }
4984 SLAB_ATTR_RO(objects_partial);
4985
4986 static ssize_t slabs_cpu_partial_show(struct kmem_cache *s, char *buf)
4987 {
4988         int objects = 0;
4989         int pages = 0;
4990         int cpu;
4991         int len;
4992
4993         for_each_online_cpu(cpu) {
4994                 struct page *page = per_cpu_ptr(s->cpu_slab, cpu)->partial;
4995
4996                 if (page) {
4997                         pages += page->pages;
4998                         objects += page->pobjects;
4999                 }
5000         }
5001
5002         len = sprintf(buf, "%d(%d)", objects, pages);
5003
5004 #ifdef CONFIG_SMP
5005         for_each_online_cpu(cpu) {
5006                 struct page *page = per_cpu_ptr(s->cpu_slab, cpu) ->partial;
5007
5008                 if (page && len < PAGE_SIZE - 20)
5009                         len += sprintf(buf + len, " C%d=%d(%d)", cpu,
5010                                 page->pobjects, page->pages);
5011         }
5012 #endif
5013         return len + sprintf(buf + len, "\n");
5014 }
5015 SLAB_ATTR_RO(slabs_cpu_partial);
5016
5017 static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
5018 {
5019         return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
5020 }
5021
5022 static ssize_t reclaim_account_store(struct kmem_cache *s,
5023                                 const char *buf, size_t length)
5024 {
5025         s->flags &= ~SLAB_RECLAIM_ACCOUNT;
5026         if (buf[0] == '1')
5027                 s->flags |= SLAB_RECLAIM_ACCOUNT;
5028         return length;
5029 }
5030 SLAB_ATTR(reclaim_account);
5031
5032 static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
5033 {
5034         return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
5035 }
5036 SLAB_ATTR_RO(hwcache_align);
5037
5038 #ifdef CONFIG_ZONE_DMA
5039 static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
5040 {
5041         return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
5042 }
5043 SLAB_ATTR_RO(cache_dma);
5044 #endif
5045
5046 static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
5047 {
5048         return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
5049 }
5050 SLAB_ATTR_RO(destroy_by_rcu);
5051
5052 static ssize_t reserved_show(struct kmem_cache *s, char *buf)
5053 {
5054         return sprintf(buf, "%d\n", s->reserved);
5055 }
5056 SLAB_ATTR_RO(reserved);
5057
5058 #ifdef CONFIG_SLUB_DEBUG
5059 static ssize_t slabs_show(struct kmem_cache *s, char *buf)
5060 {
5061         return show_slab_objects(s, buf, SO_ALL);
5062 }
5063 SLAB_ATTR_RO(slabs);
5064
5065 static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
5066 {
5067         return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
5068 }
5069 SLAB_ATTR_RO(total_objects);
5070
5071 static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
5072 {
5073         return sprintf(buf, "%d\n", !!(s->flags & SLAB_CONSISTENCY_CHECKS));
5074 }
5075
5076 static ssize_t sanity_checks_store(struct kmem_cache *s,
5077                                 const char *buf, size_t length)
5078 {
5079         s->flags &= ~SLAB_CONSISTENCY_CHECKS;
5080         if (buf[0] == '1') {
5081                 s->flags &= ~__CMPXCHG_DOUBLE;
5082                 s->flags |= SLAB_CONSISTENCY_CHECKS;
5083         }
5084         return length;
5085 }
5086 SLAB_ATTR(sanity_checks);
5087
5088 static ssize_t trace_show(struct kmem_cache *s, char *buf)
5089 {
5090         return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
5091 }
5092
5093 static ssize_t trace_store(struct kmem_cache *s, const char *buf,
5094                                                         size_t length)
5095 {
5096         /*
5097          * Tracing a merged cache is going to give confusing results
5098          * as well as cause other issues like converting a mergeable
5099          * cache into an umergeable one.
5100          */
5101         if (s->refcount > 1)
5102                 return -EINVAL;
5103
5104         s->flags &= ~SLAB_TRACE;
5105         if (buf[0] == '1') {
5106                 s->flags &= ~__CMPXCHG_DOUBLE;
5107                 s->flags |= SLAB_TRACE;
5108         }
5109         return length;
5110 }
5111 SLAB_ATTR(trace);
5112
5113 static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
5114 {
5115         return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
5116 }
5117
5118 static ssize_t red_zone_store(struct kmem_cache *s,
5119                                 const char *buf, size_t length)
5120 {
5121         if (any_slab_objects(s))
5122                 return -EBUSY;
5123
5124         s->flags &= ~SLAB_RED_ZONE;
5125         if (buf[0] == '1') {
5126                 s->flags |= SLAB_RED_ZONE;
5127         }
5128         calculate_sizes(s, -1);
5129         return length;
5130 }
5131 SLAB_ATTR(red_zone);
5132
5133 static ssize_t poison_show(struct kmem_cache *s, char *buf)
5134 {
5135         return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
5136 }
5137
5138 static ssize_t poison_store(struct kmem_cache *s,
5139                                 const char *buf, size_t length)
5140 {
5141         if (any_slab_objects(s))
5142                 return -EBUSY;
5143
5144         s->flags &= ~SLAB_POISON;
5145         if (buf[0] == '1') {
5146                 s->flags |= SLAB_POISON;
5147         }
5148         calculate_sizes(s, -1);
5149         return length;
5150 }
5151 SLAB_ATTR(poison);
5152
5153 static ssize_t store_user_show(struct kmem_cache *s, char *buf)
5154 {
5155         return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
5156 }
5157
5158 static ssize_t store_user_store(struct kmem_cache *s,
5159                                 const char *buf, size_t length)
5160 {
5161         if (any_slab_objects(s))
5162                 return -EBUSY;
5163
5164         s->flags &= ~SLAB_STORE_USER;
5165         if (buf[0] == '1') {
5166                 s->flags &= ~__CMPXCHG_DOUBLE;
5167                 s->flags |= SLAB_STORE_USER;
5168         }
5169         calculate_sizes(s, -1);
5170         return length;
5171 }
5172 SLAB_ATTR(store_user);
5173
5174 static ssize_t validate_show(struct kmem_cache *s, char *buf)
5175 {
5176         return 0;
5177 }
5178
5179 static ssize_t validate_store(struct kmem_cache *s,
5180                         const char *buf, size_t length)
5181 {
5182         int ret = -EINVAL;
5183
5184         if (buf[0] == '1') {
5185                 ret = validate_slab_cache(s);
5186                 if (ret >= 0)
5187                         ret = length;
5188         }
5189         return ret;
5190 }
5191 SLAB_ATTR(validate);
5192
5193 static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
5194 {
5195         if (!(s->flags & SLAB_STORE_USER))
5196                 return -ENOSYS;
5197         return list_locations(s, buf, TRACK_ALLOC);
5198 }
5199 SLAB_ATTR_RO(alloc_calls);
5200
5201 static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
5202 {
5203         if (!(s->flags & SLAB_STORE_USER))
5204                 return -ENOSYS;
5205         return list_locations(s, buf, TRACK_FREE);
5206 }
5207 SLAB_ATTR_RO(free_calls);
5208 #endif /* CONFIG_SLUB_DEBUG */
5209
5210 #ifdef CONFIG_FAILSLAB
5211 static ssize_t failslab_show(struct kmem_cache *s, char *buf)
5212 {
5213         return sprintf(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
5214 }
5215
5216 static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
5217                                                         size_t length)
5218 {
5219         if (s->refcount > 1)
5220                 return -EINVAL;
5221
5222         s->flags &= ~SLAB_FAILSLAB;
5223         if (buf[0] == '1')
5224                 s->flags |= SLAB_FAILSLAB;
5225         return length;
5226 }
5227 SLAB_ATTR(failslab);
5228 #endif
5229
5230 static ssize_t shrink_show(struct kmem_cache *s, char *buf)
5231 {
5232         return 0;
5233 }
5234
5235 static ssize_t shrink_store(struct kmem_cache *s,
5236                         const char *buf, size_t length)
5237 {
5238         if (buf[0] == '1')
5239                 kmem_cache_shrink(s);
5240         else
5241                 return -EINVAL;
5242         return length;
5243 }
5244 SLAB_ATTR(shrink);
5245
5246 #ifdef CONFIG_NUMA
5247 static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
5248 {
5249         return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
5250 }
5251
5252 static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
5253                                 const char *buf, size_t length)
5254 {
5255         unsigned long ratio;
5256         int err;
5257
5258         err = kstrtoul(buf, 10, &ratio);
5259         if (err)
5260                 return err;
5261
5262         if (ratio <= 100)
5263                 s->remote_node_defrag_ratio = ratio * 10;
5264
5265         return length;
5266 }
5267 SLAB_ATTR(remote_node_defrag_ratio);
5268 #endif
5269
5270 #ifdef CONFIG_SLUB_STATS
5271 static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
5272 {
5273         unsigned long sum  = 0;
5274         int cpu;
5275         int len;
5276         int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
5277
5278         if (!data)
5279                 return -ENOMEM;
5280
5281         for_each_online_cpu(cpu) {
5282                 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
5283
5284                 data[cpu] = x;
5285                 sum += x;
5286         }
5287
5288         len = sprintf(buf, "%lu", sum);
5289
5290 #ifdef CONFIG_SMP
5291         for_each_online_cpu(cpu) {
5292                 if (data[cpu] && len < PAGE_SIZE - 20)
5293                         len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
5294         }
5295 #endif
5296         kfree(data);
5297         return len + sprintf(buf + len, "\n");
5298 }
5299
5300 static void clear_stat(struct kmem_cache *s, enum stat_item si)
5301 {
5302         int cpu;
5303
5304         for_each_online_cpu(cpu)
5305                 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
5306 }
5307
5308 #define STAT_ATTR(si, text)                                     \
5309 static ssize_t text##_show(struct kmem_cache *s, char *buf)     \
5310 {                                                               \
5311         return show_stat(s, buf, si);                           \
5312 }                                                               \
5313 static ssize_t text##_store(struct kmem_cache *s,               \
5314                                 const char *buf, size_t length) \
5315 {                                                               \
5316         if (buf[0] != '0')                                      \
5317                 return -EINVAL;                                 \
5318         clear_stat(s, si);                                      \
5319         return length;                                          \
5320 }                                                               \
5321 SLAB_ATTR(text);                                                \
5322
5323 STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
5324 STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
5325 STAT_ATTR(FREE_FASTPATH, free_fastpath);
5326 STAT_ATTR(FREE_SLOWPATH, free_slowpath);
5327 STAT_ATTR(FREE_FROZEN, free_frozen);
5328 STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
5329 STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
5330 STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
5331 STAT_ATTR(ALLOC_SLAB, alloc_slab);
5332 STAT_ATTR(ALLOC_REFILL, alloc_refill);
5333 STAT_ATTR(ALLOC_NODE_MISMATCH, alloc_node_mismatch);
5334 STAT_ATTR(FREE_SLAB, free_slab);
5335 STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
5336 STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
5337 STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
5338 STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
5339 STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
5340 STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
5341 STAT_ATTR(DEACTIVATE_BYPASS, deactivate_bypass);
5342 STAT_ATTR(ORDER_FALLBACK, order_fallback);
5343 STAT_ATTR(CMPXCHG_DOUBLE_CPU_FAIL, cmpxchg_double_cpu_fail);
5344 STAT_ATTR(CMPXCHG_DOUBLE_FAIL, cmpxchg_double_fail);
5345 STAT_ATTR(CPU_PARTIAL_ALLOC, cpu_partial_alloc);
5346 STAT_ATTR(CPU_PARTIAL_FREE, cpu_partial_free);
5347 STAT_ATTR(CPU_PARTIAL_NODE, cpu_partial_node);
5348 STAT_ATTR(CPU_PARTIAL_DRAIN, cpu_partial_drain);
5349 #endif
5350
5351 static struct attribute *slab_attrs[] = {
5352         &slab_size_attr.attr,
5353         &object_size_attr.attr,
5354         &objs_per_slab_attr.attr,
5355         &order_attr.attr,
5356         &min_partial_attr.attr,
5357         &cpu_partial_attr.attr,
5358         &objects_attr.attr,
5359         &objects_partial_attr.attr,
5360         &partial_attr.attr,
5361         &cpu_slabs_attr.attr,
5362         &ctor_attr.attr,
5363         &aliases_attr.attr,
5364         &align_attr.attr,
5365         &hwcache_align_attr.attr,
5366         &reclaim_account_attr.attr,
5367         &destroy_by_rcu_attr.attr,
5368         &shrink_attr.attr,
5369         &reserved_attr.attr,
5370         &slabs_cpu_partial_attr.attr,
5371 #ifdef CONFIG_SLUB_DEBUG
5372         &total_objects_attr.attr,
5373         &slabs_attr.attr,
5374         &sanity_checks_attr.attr,
5375         &trace_attr.attr,
5376         &red_zone_attr.attr,
5377         &poison_attr.attr,
5378         &store_user_attr.attr,
5379         &validate_attr.attr,
5380         &alloc_calls_attr.attr,
5381         &free_calls_attr.attr,
5382 #endif
5383 #ifdef CONFIG_ZONE_DMA
5384         &cache_dma_attr.attr,
5385 #endif
5386 #ifdef CONFIG_NUMA
5387         &remote_node_defrag_ratio_attr.attr,
5388 #endif
5389 #ifdef CONFIG_SLUB_STATS
5390         &alloc_fastpath_attr.attr,
5391         &alloc_slowpath_attr.attr,
5392         &free_fastpath_attr.attr,
5393         &free_slowpath_attr.attr,
5394         &free_frozen_attr.attr,
5395         &free_add_partial_attr.attr,
5396         &free_remove_partial_attr.attr,
5397         &alloc_from_partial_attr.attr,
5398         &alloc_slab_attr.attr,
5399         &alloc_refill_attr.attr,
5400         &alloc_node_mismatch_attr.attr,
5401         &free_slab_attr.attr,
5402         &cpuslab_flush_attr.attr,
5403         &deactivate_full_attr.attr,
5404         &deactivate_empty_attr.attr,
5405         &deactivate_to_head_attr.attr,
5406         &deactivate_to_tail_attr.attr,
5407         &deactivate_remote_frees_attr.attr,
5408         &deactivate_bypass_attr.attr,
5409         &order_fallback_attr.attr,
5410         &cmpxchg_double_fail_attr.attr,
5411         &cmpxchg_double_cpu_fail_attr.attr,
5412         &cpu_partial_alloc_attr.attr,
5413         &cpu_partial_free_attr.attr,
5414         &cpu_partial_node_attr.attr,
5415         &cpu_partial_drain_attr.attr,
5416 #endif
5417 #ifdef CONFIG_FAILSLAB
5418         &failslab_attr.attr,
5419 #endif
5420
5421         NULL
5422 };
5423
5424 static struct attribute_group slab_attr_group = {
5425         .attrs = slab_attrs,
5426 };
5427
5428 static ssize_t slab_attr_show(struct kobject *kobj,
5429                                 struct attribute *attr,
5430                                 char *buf)
5431 {
5432         struct slab_attribute *attribute;
5433         struct kmem_cache *s;
5434         int err;
5435
5436         attribute = to_slab_attr(attr);
5437         s = to_slab(kobj);
5438
5439         if (!attribute->show)
5440                 return -EIO;
5441
5442         err = attribute->show(s, buf);
5443
5444         return err;
5445 }
5446
5447 static ssize_t slab_attr_store(struct kobject *kobj,
5448                                 struct attribute *attr,
5449                                 const char *buf, size_t len)
5450 {
5451         struct slab_attribute *attribute;
5452         struct kmem_cache *s;
5453         int err;
5454
5455         attribute = to_slab_attr(attr);
5456         s = to_slab(kobj);
5457
5458         if (!attribute->store)
5459                 return -EIO;
5460
5461         err = attribute->store(s, buf, len);
5462 #ifdef CONFIG_MEMCG
5463         if (slab_state >= FULL && err >= 0 && is_root_cache(s)) {
5464                 struct kmem_cache *c;
5465
5466                 mutex_lock(&slab_mutex);
5467                 if (s->max_attr_size < len)
5468                         s->max_attr_size = len;
5469
5470                 /*
5471                  * This is a best effort propagation, so this function's return
5472                  * value will be determined by the parent cache only. This is
5473                  * basically because not all attributes will have a well
5474                  * defined semantics for rollbacks - most of the actions will
5475                  * have permanent effects.
5476                  *
5477                  * Returning the error value of any of the children that fail
5478                  * is not 100 % defined, in the sense that users seeing the
5479                  * error code won't be able to know anything about the state of
5480                  * the cache.
5481                  *
5482                  * Only returning the error code for the parent cache at least
5483                  * has well defined semantics. The cache being written to
5484                  * directly either failed or succeeded, in which case we loop
5485                  * through the descendants with best-effort propagation.
5486                  */
5487                 for_each_memcg_cache(c, s)
5488                         attribute->store(c, buf, len);
5489                 mutex_unlock(&slab_mutex);
5490         }
5491 #endif
5492         return err;
5493 }
5494
5495 static void memcg_propagate_slab_attrs(struct kmem_cache *s)
5496 {
5497 #ifdef CONFIG_MEMCG
5498         int i;
5499         char *buffer = NULL;
5500         struct kmem_cache *root_cache;
5501
5502         if (is_root_cache(s))
5503                 return;
5504
5505         root_cache = s->memcg_params.root_cache;
5506
5507         /*
5508          * This mean this cache had no attribute written. Therefore, no point
5509          * in copying default values around
5510          */
5511         if (!root_cache->max_attr_size)
5512                 return;
5513
5514         for (i = 0; i < ARRAY_SIZE(slab_attrs); i++) {
5515                 char mbuf[64];
5516                 char *buf;
5517                 struct slab_attribute *attr = to_slab_attr(slab_attrs[i]);
5518                 ssize_t len;
5519
5520                 if (!attr || !attr->store || !attr->show)
5521                         continue;
5522
5523                 /*
5524                  * It is really bad that we have to allocate here, so we will
5525                  * do it only as a fallback. If we actually allocate, though,
5526                  * we can just use the allocated buffer until the end.
5527                  *
5528                  * Most of the slub attributes will tend to be very small in
5529                  * size, but sysfs allows buffers up to a page, so they can
5530                  * theoretically happen.
5531                  */
5532                 if (buffer)
5533                         buf = buffer;
5534                 else if (root_cache->max_attr_size < ARRAY_SIZE(mbuf) &&
5535                          !IS_ENABLED(CONFIG_SLUB_STATS))
5536                         buf = mbuf;
5537                 else {
5538                         buffer = (char *) get_zeroed_page(GFP_KERNEL);
5539                         if (WARN_ON(!buffer))
5540                                 continue;
5541                         buf = buffer;
5542                 }
5543
5544                 len = attr->show(root_cache, buf);
5545                 if (len > 0)
5546                         attr->store(s, buf, len);
5547         }
5548
5549         if (buffer)
5550                 free_page((unsigned long)buffer);
5551 #endif
5552 }
5553
5554 static void kmem_cache_release(struct kobject *k)
5555 {
5556         slab_kmem_cache_release(to_slab(k));
5557 }
5558
5559 static const struct sysfs_ops slab_sysfs_ops = {
5560         .show = slab_attr_show,
5561         .store = slab_attr_store,
5562 };
5563
5564 static struct kobj_type slab_ktype = {
5565         .sysfs_ops = &slab_sysfs_ops,
5566         .release = kmem_cache_release,
5567 };
5568
5569 static int uevent_filter(struct kset *kset, struct kobject *kobj)
5570 {
5571         struct kobj_type *ktype = get_ktype(kobj);
5572
5573         if (ktype == &slab_ktype)
5574                 return 1;
5575         return 0;
5576 }
5577
5578 static const struct kset_uevent_ops slab_uevent_ops = {
5579         .filter = uevent_filter,
5580 };
5581
5582 static struct kset *slab_kset;
5583
5584 static inline struct kset *cache_kset(struct kmem_cache *s)
5585 {
5586 #ifdef CONFIG_MEMCG
5587         if (!is_root_cache(s))
5588                 return s->memcg_params.root_cache->memcg_kset;
5589 #endif
5590         return slab_kset;
5591 }
5592
5593 #define ID_STR_LENGTH 64
5594
5595 /* Create a unique string id for a slab cache:
5596  *
5597  * Format       :[flags-]size
5598  */
5599 static char *create_unique_id(struct kmem_cache *s)
5600 {
5601         char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
5602         char *p = name;
5603
5604         if (!name)
5605                 return ERR_PTR(-ENOMEM);
5606
5607         *p++ = ':';
5608         /*
5609          * First flags affecting slabcache operations. We will only
5610          * get here for aliasable slabs so we do not need to support
5611          * too many flags. The flags here must cover all flags that
5612          * are matched during merging to guarantee that the id is
5613          * unique.
5614          */
5615         if (s->flags & SLAB_CACHE_DMA)
5616                 *p++ = 'd';
5617         if (s->flags & SLAB_RECLAIM_ACCOUNT)
5618                 *p++ = 'a';
5619         if (s->flags & SLAB_CONSISTENCY_CHECKS)
5620                 *p++ = 'F';
5621         if (!(s->flags & SLAB_NOTRACK))
5622                 *p++ = 't';
5623         if (s->flags & SLAB_ACCOUNT)
5624                 *p++ = 'A';
5625         if (p != name + 1)
5626                 *p++ = '-';
5627         p += sprintf(p, "%07d", s->size);
5628
5629         BUG_ON(p > name + ID_STR_LENGTH - 1);
5630         return name;
5631 }
5632
5633 static int sysfs_slab_add(struct kmem_cache *s)
5634 {
5635         int err;
5636         const char *name;
5637         int unmergeable = slab_unmergeable(s);
5638
5639         if (unmergeable) {
5640                 /*
5641                  * Slabcache can never be merged so we can use the name proper.
5642                  * This is typically the case for debug situations. In that
5643                  * case we can catch duplicate names easily.
5644                  */
5645                 sysfs_remove_link(&slab_kset->kobj, s->name);
5646                 name = s->name;
5647         } else {
5648                 /*
5649                  * Create a unique name for the slab as a target
5650                  * for the symlinks.
5651                  */
5652                 name = create_unique_id(s);
5653                 if (IS_ERR(name))
5654                         return PTR_ERR(name);
5655         }
5656
5657         s->kobj.kset = cache_kset(s);
5658         err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, "%s", name);
5659         if (err)
5660                 goto out;
5661
5662         err = sysfs_create_group(&s->kobj, &slab_attr_group);
5663         if (err)
5664                 goto out_del_kobj;
5665
5666 #ifdef CONFIG_MEMCG
5667         if (is_root_cache(s)) {
5668                 s->memcg_kset = kset_create_and_add("cgroup", NULL, &s->kobj);
5669                 if (!s->memcg_kset) {
5670                         err = -ENOMEM;
5671                         goto out_del_kobj;
5672                 }
5673         }
5674 #endif
5675
5676         kobject_uevent(&s->kobj, KOBJ_ADD);
5677         if (!unmergeable) {
5678                 /* Setup first alias */
5679                 sysfs_slab_alias(s, s->name);
5680         }
5681 out:
5682         if (!unmergeable)
5683                 kfree(name);
5684         return err;
5685 out_del_kobj:
5686         kobject_del(&s->kobj);
5687         goto out;
5688 }
5689
5690 void sysfs_slab_remove(struct kmem_cache *s)
5691 {
5692         if (slab_state < FULL)
5693                 /*
5694                  * Sysfs has not been setup yet so no need to remove the
5695                  * cache from sysfs.
5696                  */
5697                 return;
5698
5699 #ifdef CONFIG_MEMCG
5700         kset_unregister(s->memcg_kset);
5701 #endif
5702         kobject_uevent(&s->kobj, KOBJ_REMOVE);
5703         kobject_del(&s->kobj);
5704         kobject_put(&s->kobj);
5705 }
5706
5707 /*
5708  * Need to buffer aliases during bootup until sysfs becomes
5709  * available lest we lose that information.
5710  */
5711 struct saved_alias {
5712         struct kmem_cache *s;
5713         const char *name;
5714         struct saved_alias *next;
5715 };
5716
5717 static struct saved_alias *alias_list;
5718
5719 static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
5720 {
5721         struct saved_alias *al;
5722
5723         if (slab_state == FULL) {
5724                 /*
5725                  * If we have a leftover link then remove it.
5726                  */
5727                 sysfs_remove_link(&slab_kset->kobj, name);
5728                 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
5729         }
5730
5731         al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
5732         if (!al)
5733                 return -ENOMEM;
5734
5735         al->s = s;
5736         al->name = name;
5737         al->next = alias_list;
5738         alias_list = al;
5739         return 0;
5740 }
5741
5742 static int __init slab_sysfs_init(void)
5743 {
5744         struct kmem_cache *s;
5745         int err;
5746
5747         mutex_lock(&slab_mutex);
5748
5749         slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
5750         if (!slab_kset) {
5751                 mutex_unlock(&slab_mutex);
5752                 pr_err("Cannot register slab subsystem.\n");
5753                 return -ENOSYS;
5754         }
5755
5756         slab_state = FULL;
5757
5758         list_for_each_entry(s, &slab_caches, list) {
5759                 err = sysfs_slab_add(s);
5760                 if (err)
5761                         pr_err("SLUB: Unable to add boot slab %s to sysfs\n",
5762                                s->name);
5763         }
5764
5765         while (alias_list) {
5766                 struct saved_alias *al = alias_list;
5767
5768                 alias_list = alias_list->next;
5769                 err = sysfs_slab_alias(al->s, al->name);
5770                 if (err)
5771                         pr_err("SLUB: Unable to add boot slab alias %s to sysfs\n",
5772                                al->name);
5773                 kfree(al);
5774         }
5775
5776         mutex_unlock(&slab_mutex);
5777         resiliency_test();
5778         return 0;
5779 }
5780
5781 __initcall(slab_sysfs_init);
5782 #endif /* CONFIG_SYSFS */
5783
5784 /*
5785  * The /proc/slabinfo ABI
5786  */
5787 #ifdef CONFIG_SLABINFO
5788 void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo)
5789 {
5790         unsigned long nr_slabs = 0;
5791         unsigned long nr_objs = 0;
5792         unsigned long nr_free = 0;
5793         int node;
5794         struct kmem_cache_node *n;
5795
5796         for_each_kmem_cache_node(s, node, n) {
5797                 nr_slabs += node_nr_slabs(n);
5798                 nr_objs += node_nr_objs(n);
5799                 nr_free += count_partial(n, count_free);
5800         }
5801
5802         sinfo->active_objs = nr_objs - nr_free;
5803         sinfo->num_objs = nr_objs;
5804         sinfo->active_slabs = nr_slabs;
5805         sinfo->num_slabs = nr_slabs;
5806         sinfo->objects_per_slab = oo_objects(s->oo);
5807         sinfo->cache_order = oo_order(s->oo);
5808 }
5809
5810 void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *s)
5811 {
5812 }
5813
5814 ssize_t slabinfo_write(struct file *file, const char __user *buffer,
5815                        size_t count, loff_t *ppos)
5816 {
5817         return -EIO;
5818 }
5819 #endif /* CONFIG_SLABINFO */