14c3f9c59bf181d19bbca0c7b3acce22ab8238c8
[cascardo/linux.git] / mm / slab.c
1 /*
2  * linux/mm/slab.c
3  * Written by Mark Hemment, 1996/97.
4  * (markhe@nextd.demon.co.uk)
5  *
6  * kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
7  *
8  * Major cleanup, different bufctl logic, per-cpu arrays
9  *      (c) 2000 Manfred Spraul
10  *
11  * Cleanup, make the head arrays unconditional, preparation for NUMA
12  *      (c) 2002 Manfred Spraul
13  *
14  * An implementation of the Slab Allocator as described in outline in;
15  *      UNIX Internals: The New Frontiers by Uresh Vahalia
16  *      Pub: Prentice Hall      ISBN 0-13-101908-2
17  * or with a little more detail in;
18  *      The Slab Allocator: An Object-Caching Kernel Memory Allocator
19  *      Jeff Bonwick (Sun Microsystems).
20  *      Presented at: USENIX Summer 1994 Technical Conference
21  *
22  * The memory is organized in caches, one cache for each object type.
23  * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
24  * Each cache consists out of many slabs (they are small (usually one
25  * page long) and always contiguous), and each slab contains multiple
26  * initialized objects.
27  *
28  * This means, that your constructor is used only for newly allocated
29  * slabs and you must pass objects with the same initializations to
30  * kmem_cache_free.
31  *
32  * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
33  * normal). If you need a special memory type, then must create a new
34  * cache for that memory type.
35  *
36  * In order to reduce fragmentation, the slabs are sorted in 3 groups:
37  *   full slabs with 0 free objects
38  *   partial slabs
39  *   empty slabs with no allocated objects
40  *
41  * If partial slabs exist, then new allocations come from these slabs,
42  * otherwise from empty slabs or new slabs are allocated.
43  *
44  * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
45  * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
46  *
47  * Each cache has a short per-cpu head array, most allocs
48  * and frees go into that array, and if that array overflows, then 1/2
49  * of the entries in the array are given back into the global cache.
50  * The head array is strictly LIFO and should improve the cache hit rates.
51  * On SMP, it additionally reduces the spinlock operations.
52  *
53  * The c_cpuarray may not be read with enabled local interrupts -
54  * it's changed with a smp_call_function().
55  *
56  * SMP synchronization:
57  *  constructors and destructors are called without any locking.
58  *  Several members in struct kmem_cache and struct slab never change, they
59  *      are accessed without any locking.
60  *  The per-cpu arrays are never accessed from the wrong cpu, no locking,
61  *      and local interrupts are disabled so slab code is preempt-safe.
62  *  The non-constant members are protected with a per-cache irq spinlock.
63  *
64  * Many thanks to Mark Hemment, who wrote another per-cpu slab patch
65  * in 2000 - many ideas in the current implementation are derived from
66  * his patch.
67  *
68  * Further notes from the original documentation:
69  *
70  * 11 April '97.  Started multi-threading - markhe
71  *      The global cache-chain is protected by the mutex 'slab_mutex'.
72  *      The sem is only needed when accessing/extending the cache-chain, which
73  *      can never happen inside an interrupt (kmem_cache_create(),
74  *      kmem_cache_shrink() and kmem_cache_reap()).
75  *
76  *      At present, each engine can be growing a cache.  This should be blocked.
77  *
78  * 15 March 2005. NUMA slab allocator.
79  *      Shai Fultheim <shai@scalex86.org>.
80  *      Shobhit Dayal <shobhit@calsoftinc.com>
81  *      Alok N Kataria <alokk@calsoftinc.com>
82  *      Christoph Lameter <christoph@lameter.com>
83  *
84  *      Modified the slab allocator to be node aware on NUMA systems.
85  *      Each node has its own list of partial, free and full slabs.
86  *      All object allocations for a node occur from node specific slab lists.
87  */
88
89 #include        <linux/slab.h>
90 #include        <linux/mm.h>
91 #include        <linux/poison.h>
92 #include        <linux/swap.h>
93 #include        <linux/cache.h>
94 #include        <linux/interrupt.h>
95 #include        <linux/init.h>
96 #include        <linux/compiler.h>
97 #include        <linux/cpuset.h>
98 #include        <linux/proc_fs.h>
99 #include        <linux/seq_file.h>
100 #include        <linux/notifier.h>
101 #include        <linux/kallsyms.h>
102 #include        <linux/cpu.h>
103 #include        <linux/sysctl.h>
104 #include        <linux/module.h>
105 #include        <linux/rcupdate.h>
106 #include        <linux/string.h>
107 #include        <linux/uaccess.h>
108 #include        <linux/nodemask.h>
109 #include        <linux/kmemleak.h>
110 #include        <linux/mempolicy.h>
111 #include        <linux/mutex.h>
112 #include        <linux/fault-inject.h>
113 #include        <linux/rtmutex.h>
114 #include        <linux/reciprocal_div.h>
115 #include        <linux/debugobjects.h>
116 #include        <linux/kmemcheck.h>
117 #include        <linux/memory.h>
118 #include        <linux/prefetch.h>
119
120 #include        <net/sock.h>
121
122 #include        <asm/cacheflush.h>
123 #include        <asm/tlbflush.h>
124 #include        <asm/page.h>
125
126 #include <trace/events/kmem.h>
127
128 #include        "internal.h"
129
130 #include        "slab.h"
131
132 /*
133  * DEBUG        - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
134  *                0 for faster, smaller code (especially in the critical paths).
135  *
136  * STATS        - 1 to collect stats for /proc/slabinfo.
137  *                0 for faster, smaller code (especially in the critical paths).
138  *
139  * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
140  */
141
142 #ifdef CONFIG_DEBUG_SLAB
143 #define DEBUG           1
144 #define STATS           1
145 #define FORCED_DEBUG    1
146 #else
147 #define DEBUG           0
148 #define STATS           0
149 #define FORCED_DEBUG    0
150 #endif
151
152 /* Shouldn't this be in a header file somewhere? */
153 #define BYTES_PER_WORD          sizeof(void *)
154 #define REDZONE_ALIGN           max(BYTES_PER_WORD, __alignof__(unsigned long long))
155
156 #ifndef ARCH_KMALLOC_FLAGS
157 #define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
158 #endif
159
160 #define FREELIST_BYTE_INDEX (((PAGE_SIZE >> BITS_PER_BYTE) \
161                                 <= SLAB_OBJ_MIN_SIZE) ? 1 : 0)
162
163 #if FREELIST_BYTE_INDEX
164 typedef unsigned char freelist_idx_t;
165 #else
166 typedef unsigned short freelist_idx_t;
167 #endif
168
169 #define SLAB_OBJ_MAX_NUM ((1 << sizeof(freelist_idx_t) * BITS_PER_BYTE) - 1)
170
171 /*
172  * true if a page was allocated from pfmemalloc reserves for network-based
173  * swap
174  */
175 static bool pfmemalloc_active __read_mostly;
176
177 /*
178  * struct array_cache
179  *
180  * Purpose:
181  * - LIFO ordering, to hand out cache-warm objects from _alloc
182  * - reduce the number of linked list operations
183  * - reduce spinlock operations
184  *
185  * The limit is stored in the per-cpu structure to reduce the data cache
186  * footprint.
187  *
188  */
189 struct array_cache {
190         unsigned int avail;
191         unsigned int limit;
192         unsigned int batchcount;
193         unsigned int touched;
194         void *entry[];  /*
195                          * Must have this definition in here for the proper
196                          * alignment of array_cache. Also simplifies accessing
197                          * the entries.
198                          *
199                          * Entries should not be directly dereferenced as
200                          * entries belonging to slabs marked pfmemalloc will
201                          * have the lower bits set SLAB_OBJ_PFMEMALLOC
202                          */
203 };
204
205 struct alien_cache {
206         spinlock_t lock;
207         struct array_cache ac;
208 };
209
210 #define SLAB_OBJ_PFMEMALLOC     1
211 static inline bool is_obj_pfmemalloc(void *objp)
212 {
213         return (unsigned long)objp & SLAB_OBJ_PFMEMALLOC;
214 }
215
216 static inline void set_obj_pfmemalloc(void **objp)
217 {
218         *objp = (void *)((unsigned long)*objp | SLAB_OBJ_PFMEMALLOC);
219         return;
220 }
221
222 static inline void clear_obj_pfmemalloc(void **objp)
223 {
224         *objp = (void *)((unsigned long)*objp & ~SLAB_OBJ_PFMEMALLOC);
225 }
226
227 /*
228  * Need this for bootstrapping a per node allocator.
229  */
230 #define NUM_INIT_LISTS (2 * MAX_NUMNODES)
231 static struct kmem_cache_node __initdata init_kmem_cache_node[NUM_INIT_LISTS];
232 #define CACHE_CACHE 0
233 #define SIZE_NODE (MAX_NUMNODES)
234
235 static int drain_freelist(struct kmem_cache *cache,
236                         struct kmem_cache_node *n, int tofree);
237 static void free_block(struct kmem_cache *cachep, void **objpp, int len,
238                         int node, struct list_head *list);
239 static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list);
240 static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
241 static void cache_reap(struct work_struct *unused);
242
243 static int slab_early_init = 1;
244
245 #define INDEX_NODE kmalloc_index(sizeof(struct kmem_cache_node))
246
247 static void kmem_cache_node_init(struct kmem_cache_node *parent)
248 {
249         INIT_LIST_HEAD(&parent->slabs_full);
250         INIT_LIST_HEAD(&parent->slabs_partial);
251         INIT_LIST_HEAD(&parent->slabs_free);
252         parent->shared = NULL;
253         parent->alien = NULL;
254         parent->colour_next = 0;
255         spin_lock_init(&parent->list_lock);
256         parent->free_objects = 0;
257         parent->free_touched = 0;
258 }
259
260 #define MAKE_LIST(cachep, listp, slab, nodeid)                          \
261         do {                                                            \
262                 INIT_LIST_HEAD(listp);                                  \
263                 list_splice(&get_node(cachep, nodeid)->slab, listp);    \
264         } while (0)
265
266 #define MAKE_ALL_LISTS(cachep, ptr, nodeid)                             \
267         do {                                                            \
268         MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid);  \
269         MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
270         MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid);  \
271         } while (0)
272
273 #define CFLGS_OFF_SLAB          (0x80000000UL)
274 #define OFF_SLAB(x)     ((x)->flags & CFLGS_OFF_SLAB)
275 #define OFF_SLAB_MIN_SIZE (max_t(size_t, PAGE_SIZE >> 5, KMALLOC_MIN_SIZE + 1))
276
277 #define BATCHREFILL_LIMIT       16
278 /*
279  * Optimization question: fewer reaps means less probability for unnessary
280  * cpucache drain/refill cycles.
281  *
282  * OTOH the cpuarrays can contain lots of objects,
283  * which could lock up otherwise freeable slabs.
284  */
285 #define REAPTIMEOUT_AC          (2*HZ)
286 #define REAPTIMEOUT_NODE        (4*HZ)
287
288 #if STATS
289 #define STATS_INC_ACTIVE(x)     ((x)->num_active++)
290 #define STATS_DEC_ACTIVE(x)     ((x)->num_active--)
291 #define STATS_INC_ALLOCED(x)    ((x)->num_allocations++)
292 #define STATS_INC_GROWN(x)      ((x)->grown++)
293 #define STATS_ADD_REAPED(x,y)   ((x)->reaped += (y))
294 #define STATS_SET_HIGH(x)                                               \
295         do {                                                            \
296                 if ((x)->num_active > (x)->high_mark)                   \
297                         (x)->high_mark = (x)->num_active;               \
298         } while (0)
299 #define STATS_INC_ERR(x)        ((x)->errors++)
300 #define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
301 #define STATS_INC_NODEFREES(x)  ((x)->node_frees++)
302 #define STATS_INC_ACOVERFLOW(x)   ((x)->node_overflow++)
303 #define STATS_SET_FREEABLE(x, i)                                        \
304         do {                                                            \
305                 if ((x)->max_freeable < i)                              \
306                         (x)->max_freeable = i;                          \
307         } while (0)
308 #define STATS_INC_ALLOCHIT(x)   atomic_inc(&(x)->allochit)
309 #define STATS_INC_ALLOCMISS(x)  atomic_inc(&(x)->allocmiss)
310 #define STATS_INC_FREEHIT(x)    atomic_inc(&(x)->freehit)
311 #define STATS_INC_FREEMISS(x)   atomic_inc(&(x)->freemiss)
312 #else
313 #define STATS_INC_ACTIVE(x)     do { } while (0)
314 #define STATS_DEC_ACTIVE(x)     do { } while (0)
315 #define STATS_INC_ALLOCED(x)    do { } while (0)
316 #define STATS_INC_GROWN(x)      do { } while (0)
317 #define STATS_ADD_REAPED(x,y)   do { (void)(y); } while (0)
318 #define STATS_SET_HIGH(x)       do { } while (0)
319 #define STATS_INC_ERR(x)        do { } while (0)
320 #define STATS_INC_NODEALLOCS(x) do { } while (0)
321 #define STATS_INC_NODEFREES(x)  do { } while (0)
322 #define STATS_INC_ACOVERFLOW(x)   do { } while (0)
323 #define STATS_SET_FREEABLE(x, i) do { } while (0)
324 #define STATS_INC_ALLOCHIT(x)   do { } while (0)
325 #define STATS_INC_ALLOCMISS(x)  do { } while (0)
326 #define STATS_INC_FREEHIT(x)    do { } while (0)
327 #define STATS_INC_FREEMISS(x)   do { } while (0)
328 #endif
329
330 #if DEBUG
331
332 /*
333  * memory layout of objects:
334  * 0            : objp
335  * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
336  *              the end of an object is aligned with the end of the real
337  *              allocation. Catches writes behind the end of the allocation.
338  * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
339  *              redzone word.
340  * cachep->obj_offset: The real object.
341  * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
342  * cachep->size - 1* BYTES_PER_WORD: last caller address
343  *                                      [BYTES_PER_WORD long]
344  */
345 static int obj_offset(struct kmem_cache *cachep)
346 {
347         return cachep->obj_offset;
348 }
349
350 static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
351 {
352         BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
353         return (unsigned long long*) (objp + obj_offset(cachep) -
354                                       sizeof(unsigned long long));
355 }
356
357 static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
358 {
359         BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
360         if (cachep->flags & SLAB_STORE_USER)
361                 return (unsigned long long *)(objp + cachep->size -
362                                               sizeof(unsigned long long) -
363                                               REDZONE_ALIGN);
364         return (unsigned long long *) (objp + cachep->size -
365                                        sizeof(unsigned long long));
366 }
367
368 static void **dbg_userword(struct kmem_cache *cachep, void *objp)
369 {
370         BUG_ON(!(cachep->flags & SLAB_STORE_USER));
371         return (void **)(objp + cachep->size - BYTES_PER_WORD);
372 }
373
374 #else
375
376 #define obj_offset(x)                   0
377 #define dbg_redzone1(cachep, objp)      ({BUG(); (unsigned long long *)NULL;})
378 #define dbg_redzone2(cachep, objp)      ({BUG(); (unsigned long long *)NULL;})
379 #define dbg_userword(cachep, objp)      ({BUG(); (void **)NULL;})
380
381 #endif
382
383 #define OBJECT_FREE (0)
384 #define OBJECT_ACTIVE (1)
385
386 #ifdef CONFIG_DEBUG_SLAB_LEAK
387
388 static void set_obj_status(struct page *page, int idx, int val)
389 {
390         int freelist_size;
391         char *status;
392         struct kmem_cache *cachep = page->slab_cache;
393
394         freelist_size = cachep->num * sizeof(freelist_idx_t);
395         status = (char *)page->freelist + freelist_size;
396         status[idx] = val;
397 }
398
399 static inline unsigned int get_obj_status(struct page *page, int idx)
400 {
401         int freelist_size;
402         char *status;
403         struct kmem_cache *cachep = page->slab_cache;
404
405         freelist_size = cachep->num * sizeof(freelist_idx_t);
406         status = (char *)page->freelist + freelist_size;
407
408         return status[idx];
409 }
410
411 #else
412 static inline void set_obj_status(struct page *page, int idx, int val) {}
413
414 #endif
415
416 /*
417  * Do not go above this order unless 0 objects fit into the slab or
418  * overridden on the command line.
419  */
420 #define SLAB_MAX_ORDER_HI       1
421 #define SLAB_MAX_ORDER_LO       0
422 static int slab_max_order = SLAB_MAX_ORDER_LO;
423 static bool slab_max_order_set __initdata;
424
425 static inline struct kmem_cache *virt_to_cache(const void *obj)
426 {
427         struct page *page = virt_to_head_page(obj);
428         return page->slab_cache;
429 }
430
431 static inline void *index_to_obj(struct kmem_cache *cache, struct page *page,
432                                  unsigned int idx)
433 {
434         return page->s_mem + cache->size * idx;
435 }
436
437 /*
438  * We want to avoid an expensive divide : (offset / cache->size)
439  *   Using the fact that size is a constant for a particular cache,
440  *   we can replace (offset / cache->size) by
441  *   reciprocal_divide(offset, cache->reciprocal_buffer_size)
442  */
443 static inline unsigned int obj_to_index(const struct kmem_cache *cache,
444                                         const struct page *page, void *obj)
445 {
446         u32 offset = (obj - page->s_mem);
447         return reciprocal_divide(offset, cache->reciprocal_buffer_size);
448 }
449
450 #define BOOT_CPUCACHE_ENTRIES   1
451 /* internal cache of cache description objs */
452 static struct kmem_cache kmem_cache_boot = {
453         .batchcount = 1,
454         .limit = BOOT_CPUCACHE_ENTRIES,
455         .shared = 1,
456         .size = sizeof(struct kmem_cache),
457         .name = "kmem_cache",
458 };
459
460 #define BAD_ALIEN_MAGIC 0x01020304ul
461
462 static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
463
464 static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
465 {
466         return this_cpu_ptr(cachep->cpu_cache);
467 }
468
469 static size_t calculate_freelist_size(int nr_objs, size_t align)
470 {
471         size_t freelist_size;
472
473         freelist_size = nr_objs * sizeof(freelist_idx_t);
474         if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
475                 freelist_size += nr_objs * sizeof(char);
476
477         if (align)
478                 freelist_size = ALIGN(freelist_size, align);
479
480         return freelist_size;
481 }
482
483 static int calculate_nr_objs(size_t slab_size, size_t buffer_size,
484                                 size_t idx_size, size_t align)
485 {
486         int nr_objs;
487         size_t remained_size;
488         size_t freelist_size;
489         int extra_space = 0;
490
491         if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
492                 extra_space = sizeof(char);
493         /*
494          * Ignore padding for the initial guess. The padding
495          * is at most @align-1 bytes, and @buffer_size is at
496          * least @align. In the worst case, this result will
497          * be one greater than the number of objects that fit
498          * into the memory allocation when taking the padding
499          * into account.
500          */
501         nr_objs = slab_size / (buffer_size + idx_size + extra_space);
502
503         /*
504          * This calculated number will be either the right
505          * amount, or one greater than what we want.
506          */
507         remained_size = slab_size - nr_objs * buffer_size;
508         freelist_size = calculate_freelist_size(nr_objs, align);
509         if (remained_size < freelist_size)
510                 nr_objs--;
511
512         return nr_objs;
513 }
514
515 /*
516  * Calculate the number of objects and left-over bytes for a given buffer size.
517  */
518 static void cache_estimate(unsigned long gfporder, size_t buffer_size,
519                            size_t align, int flags, size_t *left_over,
520                            unsigned int *num)
521 {
522         int nr_objs;
523         size_t mgmt_size;
524         size_t slab_size = PAGE_SIZE << gfporder;
525
526         /*
527          * The slab management structure can be either off the slab or
528          * on it. For the latter case, the memory allocated for a
529          * slab is used for:
530          *
531          * - One freelist_idx_t for each object
532          * - Padding to respect alignment of @align
533          * - @buffer_size bytes for each object
534          *
535          * If the slab management structure is off the slab, then the
536          * alignment will already be calculated into the size. Because
537          * the slabs are all pages aligned, the objects will be at the
538          * correct alignment when allocated.
539          */
540         if (flags & CFLGS_OFF_SLAB) {
541                 mgmt_size = 0;
542                 nr_objs = slab_size / buffer_size;
543
544         } else {
545                 nr_objs = calculate_nr_objs(slab_size, buffer_size,
546                                         sizeof(freelist_idx_t), align);
547                 mgmt_size = calculate_freelist_size(nr_objs, align);
548         }
549         *num = nr_objs;
550         *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
551 }
552
553 #if DEBUG
554 #define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
555
556 static void __slab_error(const char *function, struct kmem_cache *cachep,
557                         char *msg)
558 {
559         printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
560                function, cachep->name, msg);
561         dump_stack();
562         add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
563 }
564 #endif
565
566 /*
567  * By default on NUMA we use alien caches to stage the freeing of
568  * objects allocated from other nodes. This causes massive memory
569  * inefficiencies when using fake NUMA setup to split memory into a
570  * large number of small nodes, so it can be disabled on the command
571  * line
572   */
573
574 static int use_alien_caches __read_mostly = 1;
575 static int __init noaliencache_setup(char *s)
576 {
577         use_alien_caches = 0;
578         return 1;
579 }
580 __setup("noaliencache", noaliencache_setup);
581
582 static int __init slab_max_order_setup(char *str)
583 {
584         get_option(&str, &slab_max_order);
585         slab_max_order = slab_max_order < 0 ? 0 :
586                                 min(slab_max_order, MAX_ORDER - 1);
587         slab_max_order_set = true;
588
589         return 1;
590 }
591 __setup("slab_max_order=", slab_max_order_setup);
592
593 #ifdef CONFIG_NUMA
594 /*
595  * Special reaping functions for NUMA systems called from cache_reap().
596  * These take care of doing round robin flushing of alien caches (containing
597  * objects freed on different nodes from which they were allocated) and the
598  * flushing of remote pcps by calling drain_node_pages.
599  */
600 static DEFINE_PER_CPU(unsigned long, slab_reap_node);
601
602 static void init_reap_node(int cpu)
603 {
604         int node;
605
606         node = next_node(cpu_to_mem(cpu), node_online_map);
607         if (node == MAX_NUMNODES)
608                 node = first_node(node_online_map);
609
610         per_cpu(slab_reap_node, cpu) = node;
611 }
612
613 static void next_reap_node(void)
614 {
615         int node = __this_cpu_read(slab_reap_node);
616
617         node = next_node(node, node_online_map);
618         if (unlikely(node >= MAX_NUMNODES))
619                 node = first_node(node_online_map);
620         __this_cpu_write(slab_reap_node, node);
621 }
622
623 #else
624 #define init_reap_node(cpu) do { } while (0)
625 #define next_reap_node(void) do { } while (0)
626 #endif
627
628 /*
629  * Initiate the reap timer running on the target CPU.  We run at around 1 to 2Hz
630  * via the workqueue/eventd.
631  * Add the CPU number into the expiration time to minimize the possibility of
632  * the CPUs getting into lockstep and contending for the global cache chain
633  * lock.
634  */
635 static void start_cpu_timer(int cpu)
636 {
637         struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
638
639         /*
640          * When this gets called from do_initcalls via cpucache_init(),
641          * init_workqueues() has already run, so keventd will be setup
642          * at that time.
643          */
644         if (keventd_up() && reap_work->work.func == NULL) {
645                 init_reap_node(cpu);
646                 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
647                 schedule_delayed_work_on(cpu, reap_work,
648                                         __round_jiffies_relative(HZ, cpu));
649         }
650 }
651
652 static void init_arraycache(struct array_cache *ac, int limit, int batch)
653 {
654         /*
655          * The array_cache structures contain pointers to free object.
656          * However, when such objects are allocated or transferred to another
657          * cache the pointers are not cleared and they could be counted as
658          * valid references during a kmemleak scan. Therefore, kmemleak must
659          * not scan such objects.
660          */
661         kmemleak_no_scan(ac);
662         if (ac) {
663                 ac->avail = 0;
664                 ac->limit = limit;
665                 ac->batchcount = batch;
666                 ac->touched = 0;
667         }
668 }
669
670 static struct array_cache *alloc_arraycache(int node, int entries,
671                                             int batchcount, gfp_t gfp)
672 {
673         size_t memsize = sizeof(void *) * entries + sizeof(struct array_cache);
674         struct array_cache *ac = NULL;
675
676         ac = kmalloc_node(memsize, gfp, node);
677         init_arraycache(ac, entries, batchcount);
678         return ac;
679 }
680
681 static inline bool is_slab_pfmemalloc(struct page *page)
682 {
683         return PageSlabPfmemalloc(page);
684 }
685
686 /* Clears pfmemalloc_active if no slabs have pfmalloc set */
687 static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
688                                                 struct array_cache *ac)
689 {
690         struct kmem_cache_node *n = get_node(cachep, numa_mem_id());
691         struct page *page;
692         unsigned long flags;
693
694         if (!pfmemalloc_active)
695                 return;
696
697         spin_lock_irqsave(&n->list_lock, flags);
698         list_for_each_entry(page, &n->slabs_full, lru)
699                 if (is_slab_pfmemalloc(page))
700                         goto out;
701
702         list_for_each_entry(page, &n->slabs_partial, lru)
703                 if (is_slab_pfmemalloc(page))
704                         goto out;
705
706         list_for_each_entry(page, &n->slabs_free, lru)
707                 if (is_slab_pfmemalloc(page))
708                         goto out;
709
710         pfmemalloc_active = false;
711 out:
712         spin_unlock_irqrestore(&n->list_lock, flags);
713 }
714
715 static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
716                                                 gfp_t flags, bool force_refill)
717 {
718         int i;
719         void *objp = ac->entry[--ac->avail];
720
721         /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
722         if (unlikely(is_obj_pfmemalloc(objp))) {
723                 struct kmem_cache_node *n;
724
725                 if (gfp_pfmemalloc_allowed(flags)) {
726                         clear_obj_pfmemalloc(&objp);
727                         return objp;
728                 }
729
730                 /* The caller cannot use PFMEMALLOC objects, find another one */
731                 for (i = 0; i < ac->avail; i++) {
732                         /* If a !PFMEMALLOC object is found, swap them */
733                         if (!is_obj_pfmemalloc(ac->entry[i])) {
734                                 objp = ac->entry[i];
735                                 ac->entry[i] = ac->entry[ac->avail];
736                                 ac->entry[ac->avail] = objp;
737                                 return objp;
738                         }
739                 }
740
741                 /*
742                  * If there are empty slabs on the slabs_free list and we are
743                  * being forced to refill the cache, mark this one !pfmemalloc.
744                  */
745                 n = get_node(cachep, numa_mem_id());
746                 if (!list_empty(&n->slabs_free) && force_refill) {
747                         struct page *page = virt_to_head_page(objp);
748                         ClearPageSlabPfmemalloc(page);
749                         clear_obj_pfmemalloc(&objp);
750                         recheck_pfmemalloc_active(cachep, ac);
751                         return objp;
752                 }
753
754                 /* No !PFMEMALLOC objects available */
755                 ac->avail++;
756                 objp = NULL;
757         }
758
759         return objp;
760 }
761
762 static inline void *ac_get_obj(struct kmem_cache *cachep,
763                         struct array_cache *ac, gfp_t flags, bool force_refill)
764 {
765         void *objp;
766
767         if (unlikely(sk_memalloc_socks()))
768                 objp = __ac_get_obj(cachep, ac, flags, force_refill);
769         else
770                 objp = ac->entry[--ac->avail];
771
772         return objp;
773 }
774
775 static noinline void *__ac_put_obj(struct kmem_cache *cachep,
776                         struct array_cache *ac, void *objp)
777 {
778         if (unlikely(pfmemalloc_active)) {
779                 /* Some pfmemalloc slabs exist, check if this is one */
780                 struct page *page = virt_to_head_page(objp);
781                 if (PageSlabPfmemalloc(page))
782                         set_obj_pfmemalloc(&objp);
783         }
784
785         return objp;
786 }
787
788 static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
789                                                                 void *objp)
790 {
791         if (unlikely(sk_memalloc_socks()))
792                 objp = __ac_put_obj(cachep, ac, objp);
793
794         ac->entry[ac->avail++] = objp;
795 }
796
797 /*
798  * Transfer objects in one arraycache to another.
799  * Locking must be handled by the caller.
800  *
801  * Return the number of entries transferred.
802  */
803 static int transfer_objects(struct array_cache *to,
804                 struct array_cache *from, unsigned int max)
805 {
806         /* Figure out how many entries to transfer */
807         int nr = min3(from->avail, max, to->limit - to->avail);
808
809         if (!nr)
810                 return 0;
811
812         memcpy(to->entry + to->avail, from->entry + from->avail -nr,
813                         sizeof(void *) *nr);
814
815         from->avail -= nr;
816         to->avail += nr;
817         return nr;
818 }
819
820 #ifndef CONFIG_NUMA
821
822 #define drain_alien_cache(cachep, alien) do { } while (0)
823 #define reap_alien(cachep, n) do { } while (0)
824
825 static inline struct alien_cache **alloc_alien_cache(int node,
826                                                 int limit, gfp_t gfp)
827 {
828         return (struct alien_cache **)BAD_ALIEN_MAGIC;
829 }
830
831 static inline void free_alien_cache(struct alien_cache **ac_ptr)
832 {
833 }
834
835 static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
836 {
837         return 0;
838 }
839
840 static inline void *alternate_node_alloc(struct kmem_cache *cachep,
841                 gfp_t flags)
842 {
843         return NULL;
844 }
845
846 static inline void *____cache_alloc_node(struct kmem_cache *cachep,
847                  gfp_t flags, int nodeid)
848 {
849         return NULL;
850 }
851
852 static inline gfp_t gfp_exact_node(gfp_t flags)
853 {
854         return flags;
855 }
856
857 #else   /* CONFIG_NUMA */
858
859 static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
860 static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
861
862 static struct alien_cache *__alloc_alien_cache(int node, int entries,
863                                                 int batch, gfp_t gfp)
864 {
865         size_t memsize = sizeof(void *) * entries + sizeof(struct alien_cache);
866         struct alien_cache *alc = NULL;
867
868         alc = kmalloc_node(memsize, gfp, node);
869         init_arraycache(&alc->ac, entries, batch);
870         spin_lock_init(&alc->lock);
871         return alc;
872 }
873
874 static struct alien_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
875 {
876         struct alien_cache **alc_ptr;
877         size_t memsize = sizeof(void *) * nr_node_ids;
878         int i;
879
880         if (limit > 1)
881                 limit = 12;
882         alc_ptr = kzalloc_node(memsize, gfp, node);
883         if (!alc_ptr)
884                 return NULL;
885
886         for_each_node(i) {
887                 if (i == node || !node_online(i))
888                         continue;
889                 alc_ptr[i] = __alloc_alien_cache(node, limit, 0xbaadf00d, gfp);
890                 if (!alc_ptr[i]) {
891                         for (i--; i >= 0; i--)
892                                 kfree(alc_ptr[i]);
893                         kfree(alc_ptr);
894                         return NULL;
895                 }
896         }
897         return alc_ptr;
898 }
899
900 static void free_alien_cache(struct alien_cache **alc_ptr)
901 {
902         int i;
903
904         if (!alc_ptr)
905                 return;
906         for_each_node(i)
907             kfree(alc_ptr[i]);
908         kfree(alc_ptr);
909 }
910
911 static void __drain_alien_cache(struct kmem_cache *cachep,
912                                 struct array_cache *ac, int node,
913                                 struct list_head *list)
914 {
915         struct kmem_cache_node *n = get_node(cachep, node);
916
917         if (ac->avail) {
918                 spin_lock(&n->list_lock);
919                 /*
920                  * Stuff objects into the remote nodes shared array first.
921                  * That way we could avoid the overhead of putting the objects
922                  * into the free lists and getting them back later.
923                  */
924                 if (n->shared)
925                         transfer_objects(n->shared, ac, ac->limit);
926
927                 free_block(cachep, ac->entry, ac->avail, node, list);
928                 ac->avail = 0;
929                 spin_unlock(&n->list_lock);
930         }
931 }
932
933 /*
934  * Called from cache_reap() to regularly drain alien caches round robin.
935  */
936 static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
937 {
938         int node = __this_cpu_read(slab_reap_node);
939
940         if (n->alien) {
941                 struct alien_cache *alc = n->alien[node];
942                 struct array_cache *ac;
943
944                 if (alc) {
945                         ac = &alc->ac;
946                         if (ac->avail && spin_trylock_irq(&alc->lock)) {
947                                 LIST_HEAD(list);
948
949                                 __drain_alien_cache(cachep, ac, node, &list);
950                                 spin_unlock_irq(&alc->lock);
951                                 slabs_destroy(cachep, &list);
952                         }
953                 }
954         }
955 }
956
957 static void drain_alien_cache(struct kmem_cache *cachep,
958                                 struct alien_cache **alien)
959 {
960         int i = 0;
961         struct alien_cache *alc;
962         struct array_cache *ac;
963         unsigned long flags;
964
965         for_each_online_node(i) {
966                 alc = alien[i];
967                 if (alc) {
968                         LIST_HEAD(list);
969
970                         ac = &alc->ac;
971                         spin_lock_irqsave(&alc->lock, flags);
972                         __drain_alien_cache(cachep, ac, i, &list);
973                         spin_unlock_irqrestore(&alc->lock, flags);
974                         slabs_destroy(cachep, &list);
975                 }
976         }
977 }
978
979 static int __cache_free_alien(struct kmem_cache *cachep, void *objp,
980                                 int node, int page_node)
981 {
982         struct kmem_cache_node *n;
983         struct alien_cache *alien = NULL;
984         struct array_cache *ac;
985         LIST_HEAD(list);
986
987         n = get_node(cachep, node);
988         STATS_INC_NODEFREES(cachep);
989         if (n->alien && n->alien[page_node]) {
990                 alien = n->alien[page_node];
991                 ac = &alien->ac;
992                 spin_lock(&alien->lock);
993                 if (unlikely(ac->avail == ac->limit)) {
994                         STATS_INC_ACOVERFLOW(cachep);
995                         __drain_alien_cache(cachep, ac, page_node, &list);
996                 }
997                 ac_put_obj(cachep, ac, objp);
998                 spin_unlock(&alien->lock);
999                 slabs_destroy(cachep, &list);
1000         } else {
1001                 n = get_node(cachep, page_node);
1002                 spin_lock(&n->list_lock);
1003                 free_block(cachep, &objp, 1, page_node, &list);
1004                 spin_unlock(&n->list_lock);
1005                 slabs_destroy(cachep, &list);
1006         }
1007         return 1;
1008 }
1009
1010 static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1011 {
1012         int page_node = page_to_nid(virt_to_page(objp));
1013         int node = numa_mem_id();
1014         /*
1015          * Make sure we are not freeing a object from another node to the array
1016          * cache on this cpu.
1017          */
1018         if (likely(node == page_node))
1019                 return 0;
1020
1021         return __cache_free_alien(cachep, objp, node, page_node);
1022 }
1023
1024 /*
1025  * Construct gfp mask to allocate from a specific node but do not direct reclaim
1026  * or warn about failures. kswapd may still wake to reclaim in the background.
1027  */
1028 static inline gfp_t gfp_exact_node(gfp_t flags)
1029 {
1030         return (flags | __GFP_THISNODE | __GFP_NOWARN) & ~__GFP_DIRECT_RECLAIM;
1031 }
1032 #endif
1033
1034 /*
1035  * Allocates and initializes node for a node on each slab cache, used for
1036  * either memory or cpu hotplug.  If memory is being hot-added, the kmem_cache_node
1037  * will be allocated off-node since memory is not yet online for the new node.
1038  * When hotplugging memory or a cpu, existing node are not replaced if
1039  * already in use.
1040  *
1041  * Must hold slab_mutex.
1042  */
1043 static int init_cache_node_node(int node)
1044 {
1045         struct kmem_cache *cachep;
1046         struct kmem_cache_node *n;
1047         const size_t memsize = sizeof(struct kmem_cache_node);
1048
1049         list_for_each_entry(cachep, &slab_caches, list) {
1050                 /*
1051                  * Set up the kmem_cache_node for cpu before we can
1052                  * begin anything. Make sure some other cpu on this
1053                  * node has not already allocated this
1054                  */
1055                 n = get_node(cachep, node);
1056                 if (!n) {
1057                         n = kmalloc_node(memsize, GFP_KERNEL, node);
1058                         if (!n)
1059                                 return -ENOMEM;
1060                         kmem_cache_node_init(n);
1061                         n->next_reap = jiffies + REAPTIMEOUT_NODE +
1062                             ((unsigned long)cachep) % REAPTIMEOUT_NODE;
1063
1064                         /*
1065                          * The kmem_cache_nodes don't come and go as CPUs
1066                          * come and go.  slab_mutex is sufficient
1067                          * protection here.
1068                          */
1069                         cachep->node[node] = n;
1070                 }
1071
1072                 spin_lock_irq(&n->list_lock);
1073                 n->free_limit =
1074                         (1 + nr_cpus_node(node)) *
1075                         cachep->batchcount + cachep->num;
1076                 spin_unlock_irq(&n->list_lock);
1077         }
1078         return 0;
1079 }
1080
1081 static inline int slabs_tofree(struct kmem_cache *cachep,
1082                                                 struct kmem_cache_node *n)
1083 {
1084         return (n->free_objects + cachep->num - 1) / cachep->num;
1085 }
1086
1087 static void cpuup_canceled(long cpu)
1088 {
1089         struct kmem_cache *cachep;
1090         struct kmem_cache_node *n = NULL;
1091         int node = cpu_to_mem(cpu);
1092         const struct cpumask *mask = cpumask_of_node(node);
1093
1094         list_for_each_entry(cachep, &slab_caches, list) {
1095                 struct array_cache *nc;
1096                 struct array_cache *shared;
1097                 struct alien_cache **alien;
1098                 LIST_HEAD(list);
1099
1100                 n = get_node(cachep, node);
1101                 if (!n)
1102                         continue;
1103
1104                 spin_lock_irq(&n->list_lock);
1105
1106                 /* Free limit for this kmem_cache_node */
1107                 n->free_limit -= cachep->batchcount;
1108
1109                 /* cpu is dead; no one can alloc from it. */
1110                 nc = per_cpu_ptr(cachep->cpu_cache, cpu);
1111                 if (nc) {
1112                         free_block(cachep, nc->entry, nc->avail, node, &list);
1113                         nc->avail = 0;
1114                 }
1115
1116                 if (!cpumask_empty(mask)) {
1117                         spin_unlock_irq(&n->list_lock);
1118                         goto free_slab;
1119                 }
1120
1121                 shared = n->shared;
1122                 if (shared) {
1123                         free_block(cachep, shared->entry,
1124                                    shared->avail, node, &list);
1125                         n->shared = NULL;
1126                 }
1127
1128                 alien = n->alien;
1129                 n->alien = NULL;
1130
1131                 spin_unlock_irq(&n->list_lock);
1132
1133                 kfree(shared);
1134                 if (alien) {
1135                         drain_alien_cache(cachep, alien);
1136                         free_alien_cache(alien);
1137                 }
1138
1139 free_slab:
1140                 slabs_destroy(cachep, &list);
1141         }
1142         /*
1143          * In the previous loop, all the objects were freed to
1144          * the respective cache's slabs,  now we can go ahead and
1145          * shrink each nodelist to its limit.
1146          */
1147         list_for_each_entry(cachep, &slab_caches, list) {
1148                 n = get_node(cachep, node);
1149                 if (!n)
1150                         continue;
1151                 drain_freelist(cachep, n, slabs_tofree(cachep, n));
1152         }
1153 }
1154
1155 static int cpuup_prepare(long cpu)
1156 {
1157         struct kmem_cache *cachep;
1158         struct kmem_cache_node *n = NULL;
1159         int node = cpu_to_mem(cpu);
1160         int err;
1161
1162         /*
1163          * We need to do this right in the beginning since
1164          * alloc_arraycache's are going to use this list.
1165          * kmalloc_node allows us to add the slab to the right
1166          * kmem_cache_node and not this cpu's kmem_cache_node
1167          */
1168         err = init_cache_node_node(node);
1169         if (err < 0)
1170                 goto bad;
1171
1172         /*
1173          * Now we can go ahead with allocating the shared arrays and
1174          * array caches
1175          */
1176         list_for_each_entry(cachep, &slab_caches, list) {
1177                 struct array_cache *shared = NULL;
1178                 struct alien_cache **alien = NULL;
1179
1180                 if (cachep->shared) {
1181                         shared = alloc_arraycache(node,
1182                                 cachep->shared * cachep->batchcount,
1183                                 0xbaadf00d, GFP_KERNEL);
1184                         if (!shared)
1185                                 goto bad;
1186                 }
1187                 if (use_alien_caches) {
1188                         alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
1189                         if (!alien) {
1190                                 kfree(shared);
1191                                 goto bad;
1192                         }
1193                 }
1194                 n = get_node(cachep, node);
1195                 BUG_ON(!n);
1196
1197                 spin_lock_irq(&n->list_lock);
1198                 if (!n->shared) {
1199                         /*
1200                          * We are serialised from CPU_DEAD or
1201                          * CPU_UP_CANCELLED by the cpucontrol lock
1202                          */
1203                         n->shared = shared;
1204                         shared = NULL;
1205                 }
1206 #ifdef CONFIG_NUMA
1207                 if (!n->alien) {
1208                         n->alien = alien;
1209                         alien = NULL;
1210                 }
1211 #endif
1212                 spin_unlock_irq(&n->list_lock);
1213                 kfree(shared);
1214                 free_alien_cache(alien);
1215         }
1216
1217         return 0;
1218 bad:
1219         cpuup_canceled(cpu);
1220         return -ENOMEM;
1221 }
1222
1223 static int cpuup_callback(struct notifier_block *nfb,
1224                                     unsigned long action, void *hcpu)
1225 {
1226         long cpu = (long)hcpu;
1227         int err = 0;
1228
1229         switch (action) {
1230         case CPU_UP_PREPARE:
1231         case CPU_UP_PREPARE_FROZEN:
1232                 mutex_lock(&slab_mutex);
1233                 err = cpuup_prepare(cpu);
1234                 mutex_unlock(&slab_mutex);
1235                 break;
1236         case CPU_ONLINE:
1237         case CPU_ONLINE_FROZEN:
1238                 start_cpu_timer(cpu);
1239                 break;
1240 #ifdef CONFIG_HOTPLUG_CPU
1241         case CPU_DOWN_PREPARE:
1242         case CPU_DOWN_PREPARE_FROZEN:
1243                 /*
1244                  * Shutdown cache reaper. Note that the slab_mutex is
1245                  * held so that if cache_reap() is invoked it cannot do
1246                  * anything expensive but will only modify reap_work
1247                  * and reschedule the timer.
1248                 */
1249                 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
1250                 /* Now the cache_reaper is guaranteed to be not running. */
1251                 per_cpu(slab_reap_work, cpu).work.func = NULL;
1252                 break;
1253         case CPU_DOWN_FAILED:
1254         case CPU_DOWN_FAILED_FROZEN:
1255                 start_cpu_timer(cpu);
1256                 break;
1257         case CPU_DEAD:
1258         case CPU_DEAD_FROZEN:
1259                 /*
1260                  * Even if all the cpus of a node are down, we don't free the
1261                  * kmem_cache_node of any cache. This to avoid a race between
1262                  * cpu_down, and a kmalloc allocation from another cpu for
1263                  * memory from the node of the cpu going down.  The node
1264                  * structure is usually allocated from kmem_cache_create() and
1265                  * gets destroyed at kmem_cache_destroy().
1266                  */
1267                 /* fall through */
1268 #endif
1269         case CPU_UP_CANCELED:
1270         case CPU_UP_CANCELED_FROZEN:
1271                 mutex_lock(&slab_mutex);
1272                 cpuup_canceled(cpu);
1273                 mutex_unlock(&slab_mutex);
1274                 break;
1275         }
1276         return notifier_from_errno(err);
1277 }
1278
1279 static struct notifier_block cpucache_notifier = {
1280         &cpuup_callback, NULL, 0
1281 };
1282
1283 #if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1284 /*
1285  * Drains freelist for a node on each slab cache, used for memory hot-remove.
1286  * Returns -EBUSY if all objects cannot be drained so that the node is not
1287  * removed.
1288  *
1289  * Must hold slab_mutex.
1290  */
1291 static int __meminit drain_cache_node_node(int node)
1292 {
1293         struct kmem_cache *cachep;
1294         int ret = 0;
1295
1296         list_for_each_entry(cachep, &slab_caches, list) {
1297                 struct kmem_cache_node *n;
1298
1299                 n = get_node(cachep, node);
1300                 if (!n)
1301                         continue;
1302
1303                 drain_freelist(cachep, n, slabs_tofree(cachep, n));
1304
1305                 if (!list_empty(&n->slabs_full) ||
1306                     !list_empty(&n->slabs_partial)) {
1307                         ret = -EBUSY;
1308                         break;
1309                 }
1310         }
1311         return ret;
1312 }
1313
1314 static int __meminit slab_memory_callback(struct notifier_block *self,
1315                                         unsigned long action, void *arg)
1316 {
1317         struct memory_notify *mnb = arg;
1318         int ret = 0;
1319         int nid;
1320
1321         nid = mnb->status_change_nid;
1322         if (nid < 0)
1323                 goto out;
1324
1325         switch (action) {
1326         case MEM_GOING_ONLINE:
1327                 mutex_lock(&slab_mutex);
1328                 ret = init_cache_node_node(nid);
1329                 mutex_unlock(&slab_mutex);
1330                 break;
1331         case MEM_GOING_OFFLINE:
1332                 mutex_lock(&slab_mutex);
1333                 ret = drain_cache_node_node(nid);
1334                 mutex_unlock(&slab_mutex);
1335                 break;
1336         case MEM_ONLINE:
1337         case MEM_OFFLINE:
1338         case MEM_CANCEL_ONLINE:
1339         case MEM_CANCEL_OFFLINE:
1340                 break;
1341         }
1342 out:
1343         return notifier_from_errno(ret);
1344 }
1345 #endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1346
1347 /*
1348  * swap the static kmem_cache_node with kmalloced memory
1349  */
1350 static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
1351                                 int nodeid)
1352 {
1353         struct kmem_cache_node *ptr;
1354
1355         ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
1356         BUG_ON(!ptr);
1357
1358         memcpy(ptr, list, sizeof(struct kmem_cache_node));
1359         /*
1360          * Do not assume that spinlocks can be initialized via memcpy:
1361          */
1362         spin_lock_init(&ptr->list_lock);
1363
1364         MAKE_ALL_LISTS(cachep, ptr, nodeid);
1365         cachep->node[nodeid] = ptr;
1366 }
1367
1368 /*
1369  * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1370  * size of kmem_cache_node.
1371  */
1372 static void __init set_up_node(struct kmem_cache *cachep, int index)
1373 {
1374         int node;
1375
1376         for_each_online_node(node) {
1377                 cachep->node[node] = &init_kmem_cache_node[index + node];
1378                 cachep->node[node]->next_reap = jiffies +
1379                     REAPTIMEOUT_NODE +
1380                     ((unsigned long)cachep) % REAPTIMEOUT_NODE;
1381         }
1382 }
1383
1384 /*
1385  * Initialisation.  Called after the page allocator have been initialised and
1386  * before smp_init().
1387  */
1388 void __init kmem_cache_init(void)
1389 {
1390         int i;
1391
1392         BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1393                                         sizeof(struct rcu_head));
1394         kmem_cache = &kmem_cache_boot;
1395
1396         if (num_possible_nodes() == 1)
1397                 use_alien_caches = 0;
1398
1399         for (i = 0; i < NUM_INIT_LISTS; i++)
1400                 kmem_cache_node_init(&init_kmem_cache_node[i]);
1401
1402         /*
1403          * Fragmentation resistance on low memory - only use bigger
1404          * page orders on machines with more than 32MB of memory if
1405          * not overridden on the command line.
1406          */
1407         if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
1408                 slab_max_order = SLAB_MAX_ORDER_HI;
1409
1410         /* Bootstrap is tricky, because several objects are allocated
1411          * from caches that do not exist yet:
1412          * 1) initialize the kmem_cache cache: it contains the struct
1413          *    kmem_cache structures of all caches, except kmem_cache itself:
1414          *    kmem_cache is statically allocated.
1415          *    Initially an __init data area is used for the head array and the
1416          *    kmem_cache_node structures, it's replaced with a kmalloc allocated
1417          *    array at the end of the bootstrap.
1418          * 2) Create the first kmalloc cache.
1419          *    The struct kmem_cache for the new cache is allocated normally.
1420          *    An __init data area is used for the head array.
1421          * 3) Create the remaining kmalloc caches, with minimally sized
1422          *    head arrays.
1423          * 4) Replace the __init data head arrays for kmem_cache and the first
1424          *    kmalloc cache with kmalloc allocated arrays.
1425          * 5) Replace the __init data for kmem_cache_node for kmem_cache and
1426          *    the other cache's with kmalloc allocated memory.
1427          * 6) Resize the head arrays of the kmalloc caches to their final sizes.
1428          */
1429
1430         /* 1) create the kmem_cache */
1431
1432         /*
1433          * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
1434          */
1435         create_boot_cache(kmem_cache, "kmem_cache",
1436                 offsetof(struct kmem_cache, node) +
1437                                   nr_node_ids * sizeof(struct kmem_cache_node *),
1438                                   SLAB_HWCACHE_ALIGN);
1439         list_add(&kmem_cache->list, &slab_caches);
1440         slab_state = PARTIAL;
1441
1442         /*
1443          * Initialize the caches that provide memory for the  kmem_cache_node
1444          * structures first.  Without this, further allocations will bug.
1445          */
1446         kmalloc_caches[INDEX_NODE] = create_kmalloc_cache("kmalloc-node",
1447                                 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
1448         slab_state = PARTIAL_NODE;
1449         setup_kmalloc_cache_index_table();
1450
1451         slab_early_init = 0;
1452
1453         /* 5) Replace the bootstrap kmem_cache_node */
1454         {
1455                 int nid;
1456
1457                 for_each_online_node(nid) {
1458                         init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
1459
1460                         init_list(kmalloc_caches[INDEX_NODE],
1461                                           &init_kmem_cache_node[SIZE_NODE + nid], nid);
1462                 }
1463         }
1464
1465         create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
1466 }
1467
1468 void __init kmem_cache_init_late(void)
1469 {
1470         struct kmem_cache *cachep;
1471
1472         slab_state = UP;
1473
1474         /* 6) resize the head arrays to their final sizes */
1475         mutex_lock(&slab_mutex);
1476         list_for_each_entry(cachep, &slab_caches, list)
1477                 if (enable_cpucache(cachep, GFP_NOWAIT))
1478                         BUG();
1479         mutex_unlock(&slab_mutex);
1480
1481         /* Done! */
1482         slab_state = FULL;
1483
1484         /*
1485          * Register a cpu startup notifier callback that initializes
1486          * cpu_cache_get for all new cpus
1487          */
1488         register_cpu_notifier(&cpucache_notifier);
1489
1490 #ifdef CONFIG_NUMA
1491         /*
1492          * Register a memory hotplug callback that initializes and frees
1493          * node.
1494          */
1495         hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1496 #endif
1497
1498         /*
1499          * The reap timers are started later, with a module init call: That part
1500          * of the kernel is not yet operational.
1501          */
1502 }
1503
1504 static int __init cpucache_init(void)
1505 {
1506         int cpu;
1507
1508         /*
1509          * Register the timers that return unneeded pages to the page allocator
1510          */
1511         for_each_online_cpu(cpu)
1512                 start_cpu_timer(cpu);
1513
1514         /* Done! */
1515         slab_state = FULL;
1516         return 0;
1517 }
1518 __initcall(cpucache_init);
1519
1520 static noinline void
1521 slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1522 {
1523 #if DEBUG
1524         struct kmem_cache_node *n;
1525         struct page *page;
1526         unsigned long flags;
1527         int node;
1528         static DEFINE_RATELIMIT_STATE(slab_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
1529                                       DEFAULT_RATELIMIT_BURST);
1530
1531         if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slab_oom_rs))
1532                 return;
1533
1534         printk(KERN_WARNING
1535                 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1536                 nodeid, gfpflags);
1537         printk(KERN_WARNING "  cache: %s, object size: %d, order: %d\n",
1538                 cachep->name, cachep->size, cachep->gfporder);
1539
1540         for_each_kmem_cache_node(cachep, node, n) {
1541                 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1542                 unsigned long active_slabs = 0, num_slabs = 0;
1543
1544                 spin_lock_irqsave(&n->list_lock, flags);
1545                 list_for_each_entry(page, &n->slabs_full, lru) {
1546                         active_objs += cachep->num;
1547                         active_slabs++;
1548                 }
1549                 list_for_each_entry(page, &n->slabs_partial, lru) {
1550                         active_objs += page->active;
1551                         active_slabs++;
1552                 }
1553                 list_for_each_entry(page, &n->slabs_free, lru)
1554                         num_slabs++;
1555
1556                 free_objects += n->free_objects;
1557                 spin_unlock_irqrestore(&n->list_lock, flags);
1558
1559                 num_slabs += active_slabs;
1560                 num_objs = num_slabs * cachep->num;
1561                 printk(KERN_WARNING
1562                         "  node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1563                         node, active_slabs, num_slabs, active_objs, num_objs,
1564                         free_objects);
1565         }
1566 #endif
1567 }
1568
1569 /*
1570  * Interface to system's page allocator. No need to hold the
1571  * kmem_cache_node ->list_lock.
1572  *
1573  * If we requested dmaable memory, we will get it. Even if we
1574  * did not request dmaable memory, we might get it, but that
1575  * would be relatively rare and ignorable.
1576  */
1577 static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1578                                                                 int nodeid)
1579 {
1580         struct page *page;
1581         int nr_pages;
1582
1583         flags |= cachep->allocflags;
1584         if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1585                 flags |= __GFP_RECLAIMABLE;
1586
1587         page = __alloc_pages_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
1588         if (!page) {
1589                 slab_out_of_memory(cachep, flags, nodeid);
1590                 return NULL;
1591         }
1592
1593         if (memcg_charge_slab(page, flags, cachep->gfporder, cachep)) {
1594                 __free_pages(page, cachep->gfporder);
1595                 return NULL;
1596         }
1597
1598         /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
1599         if (page_is_pfmemalloc(page))
1600                 pfmemalloc_active = true;
1601
1602         nr_pages = (1 << cachep->gfporder);
1603         if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1604                 add_zone_page_state(page_zone(page),
1605                         NR_SLAB_RECLAIMABLE, nr_pages);
1606         else
1607                 add_zone_page_state(page_zone(page),
1608                         NR_SLAB_UNRECLAIMABLE, nr_pages);
1609         __SetPageSlab(page);
1610         if (page_is_pfmemalloc(page))
1611                 SetPageSlabPfmemalloc(page);
1612
1613         if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1614                 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1615
1616                 if (cachep->ctor)
1617                         kmemcheck_mark_uninitialized_pages(page, nr_pages);
1618                 else
1619                         kmemcheck_mark_unallocated_pages(page, nr_pages);
1620         }
1621
1622         return page;
1623 }
1624
1625 /*
1626  * Interface to system's page release.
1627  */
1628 static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
1629 {
1630         const unsigned long nr_freed = (1 << cachep->gfporder);
1631
1632         kmemcheck_free_shadow(page, cachep->gfporder);
1633
1634         if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1635                 sub_zone_page_state(page_zone(page),
1636                                 NR_SLAB_RECLAIMABLE, nr_freed);
1637         else
1638                 sub_zone_page_state(page_zone(page),
1639                                 NR_SLAB_UNRECLAIMABLE, nr_freed);
1640
1641         BUG_ON(!PageSlab(page));
1642         __ClearPageSlabPfmemalloc(page);
1643         __ClearPageSlab(page);
1644         page_mapcount_reset(page);
1645         page->mapping = NULL;
1646
1647         if (current->reclaim_state)
1648                 current->reclaim_state->reclaimed_slab += nr_freed;
1649         __free_kmem_pages(page, cachep->gfporder);
1650 }
1651
1652 static void kmem_rcu_free(struct rcu_head *head)
1653 {
1654         struct kmem_cache *cachep;
1655         struct page *page;
1656
1657         page = container_of(head, struct page, rcu_head);
1658         cachep = page->slab_cache;
1659
1660         kmem_freepages(cachep, page);
1661 }
1662
1663 #if DEBUG
1664
1665 #ifdef CONFIG_DEBUG_PAGEALLOC
1666 static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
1667                             unsigned long caller)
1668 {
1669         int size = cachep->object_size;
1670
1671         addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
1672
1673         if (size < 5 * sizeof(unsigned long))
1674                 return;
1675
1676         *addr++ = 0x12345678;
1677         *addr++ = caller;
1678         *addr++ = smp_processor_id();
1679         size -= 3 * sizeof(unsigned long);
1680         {
1681                 unsigned long *sptr = &caller;
1682                 unsigned long svalue;
1683
1684                 while (!kstack_end(sptr)) {
1685                         svalue = *sptr++;
1686                         if (kernel_text_address(svalue)) {
1687                                 *addr++ = svalue;
1688                                 size -= sizeof(unsigned long);
1689                                 if (size <= sizeof(unsigned long))
1690                                         break;
1691                         }
1692                 }
1693
1694         }
1695         *addr++ = 0x87654321;
1696 }
1697 #endif
1698
1699 static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
1700 {
1701         int size = cachep->object_size;
1702         addr = &((char *)addr)[obj_offset(cachep)];
1703
1704         memset(addr, val, size);
1705         *(unsigned char *)(addr + size - 1) = POISON_END;
1706 }
1707
1708 static void dump_line(char *data, int offset, int limit)
1709 {
1710         int i;
1711         unsigned char error = 0;
1712         int bad_count = 0;
1713
1714         printk(KERN_ERR "%03x: ", offset);
1715         for (i = 0; i < limit; i++) {
1716                 if (data[offset + i] != POISON_FREE) {
1717                         error = data[offset + i];
1718                         bad_count++;
1719                 }
1720         }
1721         print_hex_dump(KERN_CONT, "", 0, 16, 1,
1722                         &data[offset], limit, 1);
1723
1724         if (bad_count == 1) {
1725                 error ^= POISON_FREE;
1726                 if (!(error & (error - 1))) {
1727                         printk(KERN_ERR "Single bit error detected. Probably "
1728                                         "bad RAM.\n");
1729 #ifdef CONFIG_X86
1730                         printk(KERN_ERR "Run memtest86+ or a similar memory "
1731                                         "test tool.\n");
1732 #else
1733                         printk(KERN_ERR "Run a memory test tool.\n");
1734 #endif
1735                 }
1736         }
1737 }
1738 #endif
1739
1740 #if DEBUG
1741
1742 static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
1743 {
1744         int i, size;
1745         char *realobj;
1746
1747         if (cachep->flags & SLAB_RED_ZONE) {
1748                 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
1749                         *dbg_redzone1(cachep, objp),
1750                         *dbg_redzone2(cachep, objp));
1751         }
1752
1753         if (cachep->flags & SLAB_STORE_USER) {
1754                 printk(KERN_ERR "Last user: [<%p>](%pSR)\n",
1755                        *dbg_userword(cachep, objp),
1756                        *dbg_userword(cachep, objp));
1757         }
1758         realobj = (char *)objp + obj_offset(cachep);
1759         size = cachep->object_size;
1760         for (i = 0; i < size && lines; i += 16, lines--) {
1761                 int limit;
1762                 limit = 16;
1763                 if (i + limit > size)
1764                         limit = size - i;
1765                 dump_line(realobj, i, limit);
1766         }
1767 }
1768
1769 static void check_poison_obj(struct kmem_cache *cachep, void *objp)
1770 {
1771         char *realobj;
1772         int size, i;
1773         int lines = 0;
1774
1775         realobj = (char *)objp + obj_offset(cachep);
1776         size = cachep->object_size;
1777
1778         for (i = 0; i < size; i++) {
1779                 char exp = POISON_FREE;
1780                 if (i == size - 1)
1781                         exp = POISON_END;
1782                 if (realobj[i] != exp) {
1783                         int limit;
1784                         /* Mismatch ! */
1785                         /* Print header */
1786                         if (lines == 0) {
1787                                 printk(KERN_ERR
1788                                         "Slab corruption (%s): %s start=%p, len=%d\n",
1789                                         print_tainted(), cachep->name, realobj, size);
1790                                 print_objinfo(cachep, objp, 0);
1791                         }
1792                         /* Hexdump the affected line */
1793                         i = (i / 16) * 16;
1794                         limit = 16;
1795                         if (i + limit > size)
1796                                 limit = size - i;
1797                         dump_line(realobj, i, limit);
1798                         i += 16;
1799                         lines++;
1800                         /* Limit to 5 lines */
1801                         if (lines > 5)
1802                                 break;
1803                 }
1804         }
1805         if (lines != 0) {
1806                 /* Print some data about the neighboring objects, if they
1807                  * exist:
1808                  */
1809                 struct page *page = virt_to_head_page(objp);
1810                 unsigned int objnr;
1811
1812                 objnr = obj_to_index(cachep, page, objp);
1813                 if (objnr) {
1814                         objp = index_to_obj(cachep, page, objnr - 1);
1815                         realobj = (char *)objp + obj_offset(cachep);
1816                         printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
1817                                realobj, size);
1818                         print_objinfo(cachep, objp, 2);
1819                 }
1820                 if (objnr + 1 < cachep->num) {
1821                         objp = index_to_obj(cachep, page, objnr + 1);
1822                         realobj = (char *)objp + obj_offset(cachep);
1823                         printk(KERN_ERR "Next obj: start=%p, len=%d\n",
1824                                realobj, size);
1825                         print_objinfo(cachep, objp, 2);
1826                 }
1827         }
1828 }
1829 #endif
1830
1831 #if DEBUG
1832 static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1833                                                 struct page *page)
1834 {
1835         int i;
1836         for (i = 0; i < cachep->num; i++) {
1837                 void *objp = index_to_obj(cachep, page, i);
1838
1839                 if (cachep->flags & SLAB_POISON) {
1840 #ifdef CONFIG_DEBUG_PAGEALLOC
1841                         if (cachep->size % PAGE_SIZE == 0 &&
1842                                         OFF_SLAB(cachep))
1843                                 kernel_map_pages(virt_to_page(objp),
1844                                         cachep->size / PAGE_SIZE, 1);
1845                         else
1846                                 check_poison_obj(cachep, objp);
1847 #else
1848                         check_poison_obj(cachep, objp);
1849 #endif
1850                 }
1851                 if (cachep->flags & SLAB_RED_ZONE) {
1852                         if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1853                                 slab_error(cachep, "start of a freed object "
1854                                            "was overwritten");
1855                         if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1856                                 slab_error(cachep, "end of a freed object "
1857                                            "was overwritten");
1858                 }
1859         }
1860 }
1861 #else
1862 static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1863                                                 struct page *page)
1864 {
1865 }
1866 #endif
1867
1868 /**
1869  * slab_destroy - destroy and release all objects in a slab
1870  * @cachep: cache pointer being destroyed
1871  * @page: page pointer being destroyed
1872  *
1873  * Destroy all the objs in a slab page, and release the mem back to the system.
1874  * Before calling the slab page must have been unlinked from the cache. The
1875  * kmem_cache_node ->list_lock is not held/needed.
1876  */
1877 static void slab_destroy(struct kmem_cache *cachep, struct page *page)
1878 {
1879         void *freelist;
1880
1881         freelist = page->freelist;
1882         slab_destroy_debugcheck(cachep, page);
1883         if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
1884                 call_rcu(&page->rcu_head, kmem_rcu_free);
1885         else
1886                 kmem_freepages(cachep, page);
1887
1888         /*
1889          * From now on, we don't use freelist
1890          * although actual page can be freed in rcu context
1891          */
1892         if (OFF_SLAB(cachep))
1893                 kmem_cache_free(cachep->freelist_cache, freelist);
1894 }
1895
1896 static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list)
1897 {
1898         struct page *page, *n;
1899
1900         list_for_each_entry_safe(page, n, list, lru) {
1901                 list_del(&page->lru);
1902                 slab_destroy(cachep, page);
1903         }
1904 }
1905
1906 /**
1907  * calculate_slab_order - calculate size (page order) of slabs
1908  * @cachep: pointer to the cache that is being created
1909  * @size: size of objects to be created in this cache.
1910  * @align: required alignment for the objects.
1911  * @flags: slab allocation flags
1912  *
1913  * Also calculates the number of objects per slab.
1914  *
1915  * This could be made much more intelligent.  For now, try to avoid using
1916  * high order pages for slabs.  When the gfp() functions are more friendly
1917  * towards high-order requests, this should be changed.
1918  */
1919 static size_t calculate_slab_order(struct kmem_cache *cachep,
1920                         size_t size, size_t align, unsigned long flags)
1921 {
1922         unsigned long offslab_limit;
1923         size_t left_over = 0;
1924         int gfporder;
1925
1926         for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
1927                 unsigned int num;
1928                 size_t remainder;
1929
1930                 cache_estimate(gfporder, size, align, flags, &remainder, &num);
1931                 if (!num)
1932                         continue;
1933
1934                 /* Can't handle number of objects more than SLAB_OBJ_MAX_NUM */
1935                 if (num > SLAB_OBJ_MAX_NUM)
1936                         break;
1937
1938                 if (flags & CFLGS_OFF_SLAB) {
1939                         size_t freelist_size_per_obj = sizeof(freelist_idx_t);
1940                         /*
1941                          * Max number of objs-per-slab for caches which
1942                          * use off-slab slabs. Needed to avoid a possible
1943                          * looping condition in cache_grow().
1944                          */
1945                         if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
1946                                 freelist_size_per_obj += sizeof(char);
1947                         offslab_limit = size;
1948                         offslab_limit /= freelist_size_per_obj;
1949
1950                         if (num > offslab_limit)
1951                                 break;
1952                 }
1953
1954                 /* Found something acceptable - save it away */
1955                 cachep->num = num;
1956                 cachep->gfporder = gfporder;
1957                 left_over = remainder;
1958
1959                 /*
1960                  * A VFS-reclaimable slab tends to have most allocations
1961                  * as GFP_NOFS and we really don't want to have to be allocating
1962                  * higher-order pages when we are unable to shrink dcache.
1963                  */
1964                 if (flags & SLAB_RECLAIM_ACCOUNT)
1965                         break;
1966
1967                 /*
1968                  * Large number of objects is good, but very large slabs are
1969                  * currently bad for the gfp()s.
1970                  */
1971                 if (gfporder >= slab_max_order)
1972                         break;
1973
1974                 /*
1975                  * Acceptable internal fragmentation?
1976                  */
1977                 if (left_over * 8 <= (PAGE_SIZE << gfporder))
1978                         break;
1979         }
1980         return left_over;
1981 }
1982
1983 static struct array_cache __percpu *alloc_kmem_cache_cpus(
1984                 struct kmem_cache *cachep, int entries, int batchcount)
1985 {
1986         int cpu;
1987         size_t size;
1988         struct array_cache __percpu *cpu_cache;
1989
1990         size = sizeof(void *) * entries + sizeof(struct array_cache);
1991         cpu_cache = __alloc_percpu(size, sizeof(void *));
1992
1993         if (!cpu_cache)
1994                 return NULL;
1995
1996         for_each_possible_cpu(cpu) {
1997                 init_arraycache(per_cpu_ptr(cpu_cache, cpu),
1998                                 entries, batchcount);
1999         }
2000
2001         return cpu_cache;
2002 }
2003
2004 static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
2005 {
2006         if (slab_state >= FULL)
2007                 return enable_cpucache(cachep, gfp);
2008
2009         cachep->cpu_cache = alloc_kmem_cache_cpus(cachep, 1, 1);
2010         if (!cachep->cpu_cache)
2011                 return 1;
2012
2013         if (slab_state == DOWN) {
2014                 /* Creation of first cache (kmem_cache). */
2015                 set_up_node(kmem_cache, CACHE_CACHE);
2016         } else if (slab_state == PARTIAL) {
2017                 /* For kmem_cache_node */
2018                 set_up_node(cachep, SIZE_NODE);
2019         } else {
2020                 int node;
2021
2022                 for_each_online_node(node) {
2023                         cachep->node[node] = kmalloc_node(
2024                                 sizeof(struct kmem_cache_node), gfp, node);
2025                         BUG_ON(!cachep->node[node]);
2026                         kmem_cache_node_init(cachep->node[node]);
2027                 }
2028         }
2029
2030         cachep->node[numa_mem_id()]->next_reap =
2031                         jiffies + REAPTIMEOUT_NODE +
2032                         ((unsigned long)cachep) % REAPTIMEOUT_NODE;
2033
2034         cpu_cache_get(cachep)->avail = 0;
2035         cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2036         cpu_cache_get(cachep)->batchcount = 1;
2037         cpu_cache_get(cachep)->touched = 0;
2038         cachep->batchcount = 1;
2039         cachep->limit = BOOT_CPUCACHE_ENTRIES;
2040         return 0;
2041 }
2042
2043 unsigned long kmem_cache_flags(unsigned long object_size,
2044         unsigned long flags, const char *name,
2045         void (*ctor)(void *))
2046 {
2047         return flags;
2048 }
2049
2050 struct kmem_cache *
2051 __kmem_cache_alias(const char *name, size_t size, size_t align,
2052                    unsigned long flags, void (*ctor)(void *))
2053 {
2054         struct kmem_cache *cachep;
2055
2056         cachep = find_mergeable(size, align, flags, name, ctor);
2057         if (cachep) {
2058                 cachep->refcount++;
2059
2060                 /*
2061                  * Adjust the object sizes so that we clear
2062                  * the complete object on kzalloc.
2063                  */
2064                 cachep->object_size = max_t(int, cachep->object_size, size);
2065         }
2066         return cachep;
2067 }
2068
2069 /**
2070  * __kmem_cache_create - Create a cache.
2071  * @cachep: cache management descriptor
2072  * @flags: SLAB flags
2073  *
2074  * Returns a ptr to the cache on success, NULL on failure.
2075  * Cannot be called within a int, but can be interrupted.
2076  * The @ctor is run when new pages are allocated by the cache.
2077  *
2078  * The flags are
2079  *
2080  * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2081  * to catch references to uninitialised memory.
2082  *
2083  * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2084  * for buffer overruns.
2085  *
2086  * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2087  * cacheline.  This can be beneficial if you're counting cycles as closely
2088  * as davem.
2089  */
2090 int
2091 __kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
2092 {
2093         size_t left_over, freelist_size;
2094         size_t ralign = BYTES_PER_WORD;
2095         gfp_t gfp;
2096         int err;
2097         size_t size = cachep->size;
2098
2099 #if DEBUG
2100 #if FORCED_DEBUG
2101         /*
2102          * Enable redzoning and last user accounting, except for caches with
2103          * large objects, if the increased size would increase the object size
2104          * above the next power of two: caches with object sizes just above a
2105          * power of two have a significant amount of internal fragmentation.
2106          */
2107         if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2108                                                 2 * sizeof(unsigned long long)))
2109                 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
2110         if (!(flags & SLAB_DESTROY_BY_RCU))
2111                 flags |= SLAB_POISON;
2112 #endif
2113 #endif
2114
2115         /*
2116          * Check that size is in terms of words.  This is needed to avoid
2117          * unaligned accesses for some archs when redzoning is used, and makes
2118          * sure any on-slab bufctl's are also correctly aligned.
2119          */
2120         if (size & (BYTES_PER_WORD - 1)) {
2121                 size += (BYTES_PER_WORD - 1);
2122                 size &= ~(BYTES_PER_WORD - 1);
2123         }
2124
2125         if (flags & SLAB_RED_ZONE) {
2126                 ralign = REDZONE_ALIGN;
2127                 /* If redzoning, ensure that the second redzone is suitably
2128                  * aligned, by adjusting the object size accordingly. */
2129                 size += REDZONE_ALIGN - 1;
2130                 size &= ~(REDZONE_ALIGN - 1);
2131         }
2132
2133         /* 3) caller mandated alignment */
2134         if (ralign < cachep->align) {
2135                 ralign = cachep->align;
2136         }
2137         /* disable debug if necessary */
2138         if (ralign > __alignof__(unsigned long long))
2139                 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2140         /*
2141          * 4) Store it.
2142          */
2143         cachep->align = ralign;
2144
2145         if (slab_is_available())
2146                 gfp = GFP_KERNEL;
2147         else
2148                 gfp = GFP_NOWAIT;
2149
2150 #if DEBUG
2151
2152         /*
2153          * Both debugging options require word-alignment which is calculated
2154          * into align above.
2155          */
2156         if (flags & SLAB_RED_ZONE) {
2157                 /* add space for red zone words */
2158                 cachep->obj_offset += sizeof(unsigned long long);
2159                 size += 2 * sizeof(unsigned long long);
2160         }
2161         if (flags & SLAB_STORE_USER) {
2162                 /* user store requires one word storage behind the end of
2163                  * the real object. But if the second red zone needs to be
2164                  * aligned to 64 bits, we must allow that much space.
2165                  */
2166                 if (flags & SLAB_RED_ZONE)
2167                         size += REDZONE_ALIGN;
2168                 else
2169                         size += BYTES_PER_WORD;
2170         }
2171 #if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
2172         /*
2173          * To activate debug pagealloc, off-slab management is necessary
2174          * requirement. In early phase of initialization, small sized slab
2175          * doesn't get initialized so it would not be possible. So, we need
2176          * to check size >= 256. It guarantees that all necessary small
2177          * sized slab is initialized in current slab initialization sequence.
2178          */
2179         if (!slab_early_init && size >= kmalloc_size(INDEX_NODE) &&
2180                 size >= 256 && cachep->object_size > cache_line_size() &&
2181                 ALIGN(size, cachep->align) < PAGE_SIZE) {
2182                 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
2183                 size = PAGE_SIZE;
2184         }
2185 #endif
2186 #endif
2187
2188         /*
2189          * Determine if the slab management is 'on' or 'off' slab.
2190          * (bootstrapping cannot cope with offslab caches so don't do
2191          * it too early on. Always use on-slab management when
2192          * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
2193          */
2194         if (size >= OFF_SLAB_MIN_SIZE && !slab_early_init &&
2195             !(flags & SLAB_NOLEAKTRACE))
2196                 /*
2197                  * Size is large, assume best to place the slab management obj
2198                  * off-slab (should allow better packing of objs).
2199                  */
2200                 flags |= CFLGS_OFF_SLAB;
2201
2202         size = ALIGN(size, cachep->align);
2203         /*
2204          * We should restrict the number of objects in a slab to implement
2205          * byte sized index. Refer comment on SLAB_OBJ_MIN_SIZE definition.
2206          */
2207         if (FREELIST_BYTE_INDEX && size < SLAB_OBJ_MIN_SIZE)
2208                 size = ALIGN(SLAB_OBJ_MIN_SIZE, cachep->align);
2209
2210         left_over = calculate_slab_order(cachep, size, cachep->align, flags);
2211
2212         if (!cachep->num)
2213                 return -E2BIG;
2214
2215         freelist_size = calculate_freelist_size(cachep->num, cachep->align);
2216
2217         /*
2218          * If the slab has been placed off-slab, and we have enough space then
2219          * move it on-slab. This is at the expense of any extra colouring.
2220          */
2221         if (flags & CFLGS_OFF_SLAB && left_over >= freelist_size) {
2222                 flags &= ~CFLGS_OFF_SLAB;
2223                 left_over -= freelist_size;
2224         }
2225
2226         if (flags & CFLGS_OFF_SLAB) {
2227                 /* really off slab. No need for manual alignment */
2228                 freelist_size = calculate_freelist_size(cachep->num, 0);
2229
2230 #ifdef CONFIG_PAGE_POISONING
2231                 /* If we're going to use the generic kernel_map_pages()
2232                  * poisoning, then it's going to smash the contents of
2233                  * the redzone and userword anyhow, so switch them off.
2234                  */
2235                 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2236                         flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2237 #endif
2238         }
2239
2240         cachep->colour_off = cache_line_size();
2241         /* Offset must be a multiple of the alignment. */
2242         if (cachep->colour_off < cachep->align)
2243                 cachep->colour_off = cachep->align;
2244         cachep->colour = left_over / cachep->colour_off;
2245         cachep->freelist_size = freelist_size;
2246         cachep->flags = flags;
2247         cachep->allocflags = __GFP_COMP;
2248         if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
2249                 cachep->allocflags |= GFP_DMA;
2250         cachep->size = size;
2251         cachep->reciprocal_buffer_size = reciprocal_value(size);
2252
2253         if (flags & CFLGS_OFF_SLAB) {
2254                 cachep->freelist_cache = kmalloc_slab(freelist_size, 0u);
2255                 /*
2256                  * This is a possibility for one of the kmalloc_{dma,}_caches.
2257                  * But since we go off slab only for object size greater than
2258                  * OFF_SLAB_MIN_SIZE, and kmalloc_{dma,}_caches get created
2259                  * in ascending order,this should not happen at all.
2260                  * But leave a BUG_ON for some lucky dude.
2261                  */
2262                 BUG_ON(ZERO_OR_NULL_PTR(cachep->freelist_cache));
2263         }
2264
2265         err = setup_cpu_cache(cachep, gfp);
2266         if (err) {
2267                 __kmem_cache_release(cachep);
2268                 return err;
2269         }
2270
2271         return 0;
2272 }
2273
2274 #if DEBUG
2275 static void check_irq_off(void)
2276 {
2277         BUG_ON(!irqs_disabled());
2278 }
2279
2280 static void check_irq_on(void)
2281 {
2282         BUG_ON(irqs_disabled());
2283 }
2284
2285 static void check_spinlock_acquired(struct kmem_cache *cachep)
2286 {
2287 #ifdef CONFIG_SMP
2288         check_irq_off();
2289         assert_spin_locked(&get_node(cachep, numa_mem_id())->list_lock);
2290 #endif
2291 }
2292
2293 static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
2294 {
2295 #ifdef CONFIG_SMP
2296         check_irq_off();
2297         assert_spin_locked(&get_node(cachep, node)->list_lock);
2298 #endif
2299 }
2300
2301 #else
2302 #define check_irq_off() do { } while(0)
2303 #define check_irq_on()  do { } while(0)
2304 #define check_spinlock_acquired(x) do { } while(0)
2305 #define check_spinlock_acquired_node(x, y) do { } while(0)
2306 #endif
2307
2308 static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
2309                         struct array_cache *ac,
2310                         int force, int node);
2311
2312 static void do_drain(void *arg)
2313 {
2314         struct kmem_cache *cachep = arg;
2315         struct array_cache *ac;
2316         int node = numa_mem_id();
2317         struct kmem_cache_node *n;
2318         LIST_HEAD(list);
2319
2320         check_irq_off();
2321         ac = cpu_cache_get(cachep);
2322         n = get_node(cachep, node);
2323         spin_lock(&n->list_lock);
2324         free_block(cachep, ac->entry, ac->avail, node, &list);
2325         spin_unlock(&n->list_lock);
2326         slabs_destroy(cachep, &list);
2327         ac->avail = 0;
2328 }
2329
2330 static void drain_cpu_caches(struct kmem_cache *cachep)
2331 {
2332         struct kmem_cache_node *n;
2333         int node;
2334
2335         on_each_cpu(do_drain, cachep, 1);
2336         check_irq_on();
2337         for_each_kmem_cache_node(cachep, node, n)
2338                 if (n->alien)
2339                         drain_alien_cache(cachep, n->alien);
2340
2341         for_each_kmem_cache_node(cachep, node, n)
2342                 drain_array(cachep, n, n->shared, 1, node);
2343 }
2344
2345 /*
2346  * Remove slabs from the list of free slabs.
2347  * Specify the number of slabs to drain in tofree.
2348  *
2349  * Returns the actual number of slabs released.
2350  */
2351 static int drain_freelist(struct kmem_cache *cache,
2352                         struct kmem_cache_node *n, int tofree)
2353 {
2354         struct list_head *p;
2355         int nr_freed;
2356         struct page *page;
2357
2358         nr_freed = 0;
2359         while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
2360
2361                 spin_lock_irq(&n->list_lock);
2362                 p = n->slabs_free.prev;
2363                 if (p == &n->slabs_free) {
2364                         spin_unlock_irq(&n->list_lock);
2365                         goto out;
2366                 }
2367
2368                 page = list_entry(p, struct page, lru);
2369                 list_del(&page->lru);
2370                 /*
2371                  * Safe to drop the lock. The slab is no longer linked
2372                  * to the cache.
2373                  */
2374                 n->free_objects -= cache->num;
2375                 spin_unlock_irq(&n->list_lock);
2376                 slab_destroy(cache, page);
2377                 nr_freed++;
2378         }
2379 out:
2380         return nr_freed;
2381 }
2382
2383 int __kmem_cache_shrink(struct kmem_cache *cachep, bool deactivate)
2384 {
2385         int ret = 0;
2386         int node;
2387         struct kmem_cache_node *n;
2388
2389         drain_cpu_caches(cachep);
2390
2391         check_irq_on();
2392         for_each_kmem_cache_node(cachep, node, n) {
2393                 drain_freelist(cachep, n, slabs_tofree(cachep, n));
2394
2395                 ret += !list_empty(&n->slabs_full) ||
2396                         !list_empty(&n->slabs_partial);
2397         }
2398         return (ret ? 1 : 0);
2399 }
2400
2401 int __kmem_cache_shutdown(struct kmem_cache *cachep)
2402 {
2403         return __kmem_cache_shrink(cachep, false);
2404 }
2405
2406 void __kmem_cache_release(struct kmem_cache *cachep)
2407 {
2408         int i;
2409         struct kmem_cache_node *n;
2410
2411         free_percpu(cachep->cpu_cache);
2412
2413         /* NUMA: free the node structures */
2414         for_each_kmem_cache_node(cachep, i, n) {
2415                 kfree(n->shared);
2416                 free_alien_cache(n->alien);
2417                 kfree(n);
2418                 cachep->node[i] = NULL;
2419         }
2420 }
2421
2422 /*
2423  * Get the memory for a slab management obj.
2424  *
2425  * For a slab cache when the slab descriptor is off-slab, the
2426  * slab descriptor can't come from the same cache which is being created,
2427  * Because if it is the case, that means we defer the creation of
2428  * the kmalloc_{dma,}_cache of size sizeof(slab descriptor) to this point.
2429  * And we eventually call down to __kmem_cache_create(), which
2430  * in turn looks up in the kmalloc_{dma,}_caches for the disired-size one.
2431  * This is a "chicken-and-egg" problem.
2432  *
2433  * So the off-slab slab descriptor shall come from the kmalloc_{dma,}_caches,
2434  * which are all initialized during kmem_cache_init().
2435  */
2436 static void *alloc_slabmgmt(struct kmem_cache *cachep,
2437                                    struct page *page, int colour_off,
2438                                    gfp_t local_flags, int nodeid)
2439 {
2440         void *freelist;
2441         void *addr = page_address(page);
2442
2443         if (OFF_SLAB(cachep)) {
2444                 /* Slab management obj is off-slab. */
2445                 freelist = kmem_cache_alloc_node(cachep->freelist_cache,
2446                                               local_flags, nodeid);
2447                 if (!freelist)
2448                         return NULL;
2449         } else {
2450                 freelist = addr + colour_off;
2451                 colour_off += cachep->freelist_size;
2452         }
2453         page->active = 0;
2454         page->s_mem = addr + colour_off;
2455         return freelist;
2456 }
2457
2458 static inline freelist_idx_t get_free_obj(struct page *page, unsigned int idx)
2459 {
2460         return ((freelist_idx_t *)page->freelist)[idx];
2461 }
2462
2463 static inline void set_free_obj(struct page *page,
2464                                         unsigned int idx, freelist_idx_t val)
2465 {
2466         ((freelist_idx_t *)(page->freelist))[idx] = val;
2467 }
2468
2469 static void cache_init_objs(struct kmem_cache *cachep,
2470                             struct page *page)
2471 {
2472         int i;
2473
2474         for (i = 0; i < cachep->num; i++) {
2475                 void *objp = index_to_obj(cachep, page, i);
2476 #if DEBUG
2477                 /* need to poison the objs? */
2478                 if (cachep->flags & SLAB_POISON)
2479                         poison_obj(cachep, objp, POISON_FREE);
2480                 if (cachep->flags & SLAB_STORE_USER)
2481                         *dbg_userword(cachep, objp) = NULL;
2482
2483                 if (cachep->flags & SLAB_RED_ZONE) {
2484                         *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2485                         *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2486                 }
2487                 /*
2488                  * Constructors are not allowed to allocate memory from the same
2489                  * cache which they are a constructor for.  Otherwise, deadlock.
2490                  * They must also be threaded.
2491                  */
2492                 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
2493                         cachep->ctor(objp + obj_offset(cachep));
2494
2495                 if (cachep->flags & SLAB_RED_ZONE) {
2496                         if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2497                                 slab_error(cachep, "constructor overwrote the"
2498                                            " end of an object");
2499                         if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2500                                 slab_error(cachep, "constructor overwrote the"
2501                                            " start of an object");
2502                 }
2503                 if ((cachep->size % PAGE_SIZE) == 0 &&
2504                             OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
2505                         kernel_map_pages(virt_to_page(objp),
2506                                          cachep->size / PAGE_SIZE, 0);
2507 #else
2508                 if (cachep->ctor)
2509                         cachep->ctor(objp);
2510 #endif
2511                 set_obj_status(page, i, OBJECT_FREE);
2512                 set_free_obj(page, i, i);
2513         }
2514 }
2515
2516 static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
2517 {
2518         if (CONFIG_ZONE_DMA_FLAG) {
2519                 if (flags & GFP_DMA)
2520                         BUG_ON(!(cachep->allocflags & GFP_DMA));
2521                 else
2522                         BUG_ON(cachep->allocflags & GFP_DMA);
2523         }
2524 }
2525
2526 static void *slab_get_obj(struct kmem_cache *cachep, struct page *page)
2527 {
2528         void *objp;
2529
2530         objp = index_to_obj(cachep, page, get_free_obj(page, page->active));
2531         page->active++;
2532
2533         return objp;
2534 }
2535
2536 static void slab_put_obj(struct kmem_cache *cachep,
2537                         struct page *page, void *objp)
2538 {
2539         unsigned int objnr = obj_to_index(cachep, page, objp);
2540 #if DEBUG
2541         unsigned int i;
2542
2543         /* Verify double free bug */
2544         for (i = page->active; i < cachep->num; i++) {
2545                 if (get_free_obj(page, i) == objnr) {
2546                         printk(KERN_ERR "slab: double free detected in cache "
2547                                         "'%s', objp %p\n", cachep->name, objp);
2548                         BUG();
2549                 }
2550         }
2551 #endif
2552         page->active--;
2553         set_free_obj(page, page->active, objnr);
2554 }
2555
2556 /*
2557  * Map pages beginning at addr to the given cache and slab. This is required
2558  * for the slab allocator to be able to lookup the cache and slab of a
2559  * virtual address for kfree, ksize, and slab debugging.
2560  */
2561 static void slab_map_pages(struct kmem_cache *cache, struct page *page,
2562                            void *freelist)
2563 {
2564         page->slab_cache = cache;
2565         page->freelist = freelist;
2566 }
2567
2568 /*
2569  * Grow (by 1) the number of slabs within a cache.  This is called by
2570  * kmem_cache_alloc() when there are no active objs left in a cache.
2571  */
2572 static int cache_grow(struct kmem_cache *cachep,
2573                 gfp_t flags, int nodeid, struct page *page)
2574 {
2575         void *freelist;
2576         size_t offset;
2577         gfp_t local_flags;
2578         struct kmem_cache_node *n;
2579
2580         /*
2581          * Be lazy and only check for valid flags here,  keeping it out of the
2582          * critical path in kmem_cache_alloc().
2583          */
2584         if (unlikely(flags & GFP_SLAB_BUG_MASK)) {
2585                 pr_emerg("gfp: %u\n", flags & GFP_SLAB_BUG_MASK);
2586                 BUG();
2587         }
2588         local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
2589
2590         /* Take the node list lock to change the colour_next on this node */
2591         check_irq_off();
2592         n = get_node(cachep, nodeid);
2593         spin_lock(&n->list_lock);
2594
2595         /* Get colour for the slab, and cal the next value. */
2596         offset = n->colour_next;
2597         n->colour_next++;
2598         if (n->colour_next >= cachep->colour)
2599                 n->colour_next = 0;
2600         spin_unlock(&n->list_lock);
2601
2602         offset *= cachep->colour_off;
2603
2604         if (gfpflags_allow_blocking(local_flags))
2605                 local_irq_enable();
2606
2607         /*
2608          * The test for missing atomic flag is performed here, rather than
2609          * the more obvious place, simply to reduce the critical path length
2610          * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2611          * will eventually be caught here (where it matters).
2612          */
2613         kmem_flagcheck(cachep, flags);
2614
2615         /*
2616          * Get mem for the objs.  Attempt to allocate a physical page from
2617          * 'nodeid'.
2618          */
2619         if (!page)
2620                 page = kmem_getpages(cachep, local_flags, nodeid);
2621         if (!page)
2622                 goto failed;
2623
2624         /* Get slab management. */
2625         freelist = alloc_slabmgmt(cachep, page, offset,
2626                         local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
2627         if (!freelist)
2628                 goto opps1;
2629
2630         slab_map_pages(cachep, page, freelist);
2631
2632         cache_init_objs(cachep, page);
2633
2634         if (gfpflags_allow_blocking(local_flags))
2635                 local_irq_disable();
2636         check_irq_off();
2637         spin_lock(&n->list_lock);
2638
2639         /* Make slab active. */
2640         list_add_tail(&page->lru, &(n->slabs_free));
2641         STATS_INC_GROWN(cachep);
2642         n->free_objects += cachep->num;
2643         spin_unlock(&n->list_lock);
2644         return 1;
2645 opps1:
2646         kmem_freepages(cachep, page);
2647 failed:
2648         if (gfpflags_allow_blocking(local_flags))
2649                 local_irq_disable();
2650         return 0;
2651 }
2652
2653 #if DEBUG
2654
2655 /*
2656  * Perform extra freeing checks:
2657  * - detect bad pointers.
2658  * - POISON/RED_ZONE checking
2659  */
2660 static void kfree_debugcheck(const void *objp)
2661 {
2662         if (!virt_addr_valid(objp)) {
2663                 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
2664                        (unsigned long)objp);
2665                 BUG();
2666         }
2667 }
2668
2669 static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2670 {
2671         unsigned long long redzone1, redzone2;
2672
2673         redzone1 = *dbg_redzone1(cache, obj);
2674         redzone2 = *dbg_redzone2(cache, obj);
2675
2676         /*
2677          * Redzone is ok.
2678          */
2679         if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2680                 return;
2681
2682         if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2683                 slab_error(cache, "double free detected");
2684         else
2685                 slab_error(cache, "memory outside object was overwritten");
2686
2687         printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
2688                         obj, redzone1, redzone2);
2689 }
2690
2691 static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
2692                                    unsigned long caller)
2693 {
2694         unsigned int objnr;
2695         struct page *page;
2696
2697         BUG_ON(virt_to_cache(objp) != cachep);
2698
2699         objp -= obj_offset(cachep);
2700         kfree_debugcheck(objp);
2701         page = virt_to_head_page(objp);
2702
2703         if (cachep->flags & SLAB_RED_ZONE) {
2704                 verify_redzone_free(cachep, objp);
2705                 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2706                 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2707         }
2708         if (cachep->flags & SLAB_STORE_USER)
2709                 *dbg_userword(cachep, objp) = (void *)caller;
2710
2711         objnr = obj_to_index(cachep, page, objp);
2712
2713         BUG_ON(objnr >= cachep->num);
2714         BUG_ON(objp != index_to_obj(cachep, page, objnr));
2715
2716         set_obj_status(page, objnr, OBJECT_FREE);
2717         if (cachep->flags & SLAB_POISON) {
2718 #ifdef CONFIG_DEBUG_PAGEALLOC
2719                 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
2720                         store_stackinfo(cachep, objp, caller);
2721                         kernel_map_pages(virt_to_page(objp),
2722                                          cachep->size / PAGE_SIZE, 0);
2723                 } else {
2724                         poison_obj(cachep, objp, POISON_FREE);
2725                 }
2726 #else
2727                 poison_obj(cachep, objp, POISON_FREE);
2728 #endif
2729         }
2730         return objp;
2731 }
2732
2733 #else
2734 #define kfree_debugcheck(x) do { } while(0)
2735 #define cache_free_debugcheck(x,objp,z) (objp)
2736 #endif
2737
2738 static struct page *get_first_slab(struct kmem_cache_node *n)
2739 {
2740         struct page *page;
2741
2742         page = list_first_entry_or_null(&n->slabs_partial,
2743                         struct page, lru);
2744         if (!page) {
2745                 n->free_touched = 1;
2746                 page = list_first_entry_or_null(&n->slabs_free,
2747                                 struct page, lru);
2748         }
2749
2750         return page;
2751 }
2752
2753 static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
2754                                                         bool force_refill)
2755 {
2756         int batchcount;
2757         struct kmem_cache_node *n;
2758         struct array_cache *ac;
2759         int node;
2760
2761         check_irq_off();
2762         node = numa_mem_id();
2763         if (unlikely(force_refill))
2764                 goto force_grow;
2765 retry:
2766         ac = cpu_cache_get(cachep);
2767         batchcount = ac->batchcount;
2768         if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
2769                 /*
2770                  * If there was little recent activity on this cache, then
2771                  * perform only a partial refill.  Otherwise we could generate
2772                  * refill bouncing.
2773                  */
2774                 batchcount = BATCHREFILL_LIMIT;
2775         }
2776         n = get_node(cachep, node);
2777
2778         BUG_ON(ac->avail > 0 || !n);
2779         spin_lock(&n->list_lock);
2780
2781         /* See if we can refill from the shared array */
2782         if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2783                 n->shared->touched = 1;
2784                 goto alloc_done;
2785         }
2786
2787         while (batchcount > 0) {
2788                 struct page *page;
2789                 /* Get slab alloc is to come from. */
2790                 page = get_first_slab(n);
2791                 if (!page)
2792                         goto must_grow;
2793
2794                 check_spinlock_acquired(cachep);
2795
2796                 /*
2797                  * The slab was either on partial or free list so
2798                  * there must be at least one object available for
2799                  * allocation.
2800                  */
2801                 BUG_ON(page->active >= cachep->num);
2802
2803                 while (page->active < cachep->num && batchcount--) {
2804                         STATS_INC_ALLOCED(cachep);
2805                         STATS_INC_ACTIVE(cachep);
2806                         STATS_SET_HIGH(cachep);
2807
2808                         ac_put_obj(cachep, ac, slab_get_obj(cachep, page));
2809                 }
2810
2811                 /* move slabp to correct slabp list: */
2812                 list_del(&page->lru);
2813                 if (page->active == cachep->num)
2814                         list_add(&page->lru, &n->slabs_full);
2815                 else
2816                         list_add(&page->lru, &n->slabs_partial);
2817         }
2818
2819 must_grow:
2820         n->free_objects -= ac->avail;
2821 alloc_done:
2822         spin_unlock(&n->list_lock);
2823
2824         if (unlikely(!ac->avail)) {
2825                 int x;
2826 force_grow:
2827                 x = cache_grow(cachep, gfp_exact_node(flags), node, NULL);
2828
2829                 /* cache_grow can reenable interrupts, then ac could change. */
2830                 ac = cpu_cache_get(cachep);
2831                 node = numa_mem_id();
2832
2833                 /* no objects in sight? abort */
2834                 if (!x && (ac->avail == 0 || force_refill))
2835                         return NULL;
2836
2837                 if (!ac->avail)         /* objects refilled by interrupt? */
2838                         goto retry;
2839         }
2840         ac->touched = 1;
2841
2842         return ac_get_obj(cachep, ac, flags, force_refill);
2843 }
2844
2845 static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2846                                                 gfp_t flags)
2847 {
2848         might_sleep_if(gfpflags_allow_blocking(flags));
2849 #if DEBUG
2850         kmem_flagcheck(cachep, flags);
2851 #endif
2852 }
2853
2854 #if DEBUG
2855 static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
2856                                 gfp_t flags, void *objp, unsigned long caller)
2857 {
2858         struct page *page;
2859
2860         if (!objp)
2861                 return objp;
2862         if (cachep->flags & SLAB_POISON) {
2863 #ifdef CONFIG_DEBUG_PAGEALLOC
2864                 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
2865                         kernel_map_pages(virt_to_page(objp),
2866                                          cachep->size / PAGE_SIZE, 1);
2867                 else
2868                         check_poison_obj(cachep, objp);
2869 #else
2870                 check_poison_obj(cachep, objp);
2871 #endif
2872                 poison_obj(cachep, objp, POISON_INUSE);
2873         }
2874         if (cachep->flags & SLAB_STORE_USER)
2875                 *dbg_userword(cachep, objp) = (void *)caller;
2876
2877         if (cachep->flags & SLAB_RED_ZONE) {
2878                 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2879                                 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2880                         slab_error(cachep, "double free, or memory outside"
2881                                                 " object was overwritten");
2882                         printk(KERN_ERR
2883                                 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
2884                                 objp, *dbg_redzone1(cachep, objp),
2885                                 *dbg_redzone2(cachep, objp));
2886                 }
2887                 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2888                 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2889         }
2890
2891         page = virt_to_head_page(objp);
2892         set_obj_status(page, obj_to_index(cachep, page, objp), OBJECT_ACTIVE);
2893         objp += obj_offset(cachep);
2894         if (cachep->ctor && cachep->flags & SLAB_POISON)
2895                 cachep->ctor(objp);
2896         if (ARCH_SLAB_MINALIGN &&
2897             ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
2898                 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
2899                        objp, (int)ARCH_SLAB_MINALIGN);
2900         }
2901         return objp;
2902 }
2903 #else
2904 #define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2905 #endif
2906
2907 static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
2908 {
2909         void *objp;
2910         struct array_cache *ac;
2911         bool force_refill = false;
2912
2913         check_irq_off();
2914
2915         ac = cpu_cache_get(cachep);
2916         if (likely(ac->avail)) {
2917                 ac->touched = 1;
2918                 objp = ac_get_obj(cachep, ac, flags, false);
2919
2920                 /*
2921                  * Allow for the possibility all avail objects are not allowed
2922                  * by the current flags
2923                  */
2924                 if (objp) {
2925                         STATS_INC_ALLOCHIT(cachep);
2926                         goto out;
2927                 }
2928                 force_refill = true;
2929         }
2930
2931         STATS_INC_ALLOCMISS(cachep);
2932         objp = cache_alloc_refill(cachep, flags, force_refill);
2933         /*
2934          * the 'ac' may be updated by cache_alloc_refill(),
2935          * and kmemleak_erase() requires its correct value.
2936          */
2937         ac = cpu_cache_get(cachep);
2938
2939 out:
2940         /*
2941          * To avoid a false negative, if an object that is in one of the
2942          * per-CPU caches is leaked, we need to make sure kmemleak doesn't
2943          * treat the array pointers as a reference to the object.
2944          */
2945         if (objp)
2946                 kmemleak_erase(&ac->entry[ac->avail]);
2947         return objp;
2948 }
2949
2950 #ifdef CONFIG_NUMA
2951 /*
2952  * Try allocating on another node if PFA_SPREAD_SLAB is a mempolicy is set.
2953  *
2954  * If we are in_interrupt, then process context, including cpusets and
2955  * mempolicy, may not apply and should not be used for allocation policy.
2956  */
2957 static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
2958 {
2959         int nid_alloc, nid_here;
2960
2961         if (in_interrupt() || (flags & __GFP_THISNODE))
2962                 return NULL;
2963         nid_alloc = nid_here = numa_mem_id();
2964         if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
2965                 nid_alloc = cpuset_slab_spread_node();
2966         else if (current->mempolicy)
2967                 nid_alloc = mempolicy_slab_node();
2968         if (nid_alloc != nid_here)
2969                 return ____cache_alloc_node(cachep, flags, nid_alloc);
2970         return NULL;
2971 }
2972
2973 /*
2974  * Fallback function if there was no memory available and no objects on a
2975  * certain node and fall back is permitted. First we scan all the
2976  * available node for available objects. If that fails then we
2977  * perform an allocation without specifying a node. This allows the page
2978  * allocator to do its reclaim / fallback magic. We then insert the
2979  * slab into the proper nodelist and then allocate from it.
2980  */
2981 static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
2982 {
2983         struct zonelist *zonelist;
2984         gfp_t local_flags;
2985         struct zoneref *z;
2986         struct zone *zone;
2987         enum zone_type high_zoneidx = gfp_zone(flags);
2988         void *obj = NULL;
2989         int nid;
2990         unsigned int cpuset_mems_cookie;
2991
2992         if (flags & __GFP_THISNODE)
2993                 return NULL;
2994
2995         local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
2996
2997 retry_cpuset:
2998         cpuset_mems_cookie = read_mems_allowed_begin();
2999         zonelist = node_zonelist(mempolicy_slab_node(), flags);
3000
3001 retry:
3002         /*
3003          * Look through allowed nodes for objects available
3004          * from existing per node queues.
3005          */
3006         for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3007                 nid = zone_to_nid(zone);
3008
3009                 if (cpuset_zone_allowed(zone, flags) &&
3010                         get_node(cache, nid) &&
3011                         get_node(cache, nid)->free_objects) {
3012                                 obj = ____cache_alloc_node(cache,
3013                                         gfp_exact_node(flags), nid);
3014                                 if (obj)
3015                                         break;
3016                 }
3017         }
3018
3019         if (!obj) {
3020                 /*
3021                  * This allocation will be performed within the constraints
3022                  * of the current cpuset / memory policy requirements.
3023                  * We may trigger various forms of reclaim on the allowed
3024                  * set and go into memory reserves if necessary.
3025                  */
3026                 struct page *page;
3027
3028                 if (gfpflags_allow_blocking(local_flags))
3029                         local_irq_enable();
3030                 kmem_flagcheck(cache, flags);
3031                 page = kmem_getpages(cache, local_flags, numa_mem_id());
3032                 if (gfpflags_allow_blocking(local_flags))
3033                         local_irq_disable();
3034                 if (page) {
3035                         /*
3036                          * Insert into the appropriate per node queues
3037                          */
3038                         nid = page_to_nid(page);
3039                         if (cache_grow(cache, flags, nid, page)) {
3040                                 obj = ____cache_alloc_node(cache,
3041                                         gfp_exact_node(flags), nid);
3042                                 if (!obj)
3043                                         /*
3044                                          * Another processor may allocate the
3045                                          * objects in the slab since we are
3046                                          * not holding any locks.
3047                                          */
3048                                         goto retry;
3049                         } else {
3050                                 /* cache_grow already freed obj */
3051                                 obj = NULL;
3052                         }
3053                 }
3054         }
3055
3056         if (unlikely(!obj && read_mems_allowed_retry(cpuset_mems_cookie)))
3057                 goto retry_cpuset;
3058         return obj;
3059 }
3060
3061 /*
3062  * A interface to enable slab creation on nodeid
3063  */
3064 static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
3065                                 int nodeid)
3066 {
3067         struct page *page;
3068         struct kmem_cache_node *n;
3069         void *obj;
3070         int x;
3071
3072         VM_BUG_ON(nodeid < 0 || nodeid >= MAX_NUMNODES);
3073         n = get_node(cachep, nodeid);
3074         BUG_ON(!n);
3075
3076 retry:
3077         check_irq_off();
3078         spin_lock(&n->list_lock);
3079         page = get_first_slab(n);
3080         if (!page)
3081                 goto must_grow;
3082
3083         check_spinlock_acquired_node(cachep, nodeid);
3084
3085         STATS_INC_NODEALLOCS(cachep);
3086         STATS_INC_ACTIVE(cachep);
3087         STATS_SET_HIGH(cachep);
3088
3089         BUG_ON(page->active == cachep->num);
3090
3091         obj = slab_get_obj(cachep, page);
3092         n->free_objects--;
3093         /* move slabp to correct slabp list: */
3094         list_del(&page->lru);
3095
3096         if (page->active == cachep->num)
3097                 list_add(&page->lru, &n->slabs_full);
3098         else
3099                 list_add(&page->lru, &n->slabs_partial);
3100
3101         spin_unlock(&n->list_lock);
3102         goto done;
3103
3104 must_grow:
3105         spin_unlock(&n->list_lock);
3106         x = cache_grow(cachep, gfp_exact_node(flags), nodeid, NULL);
3107         if (x)
3108                 goto retry;
3109
3110         return fallback_alloc(cachep, flags);
3111
3112 done:
3113         return obj;
3114 }
3115
3116 static __always_inline void *
3117 slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3118                    unsigned long caller)
3119 {
3120         unsigned long save_flags;
3121         void *ptr;
3122         int slab_node = numa_mem_id();
3123
3124         flags &= gfp_allowed_mask;
3125         cachep = slab_pre_alloc_hook(cachep, flags);
3126         if (unlikely(!cachep))
3127                 return NULL;
3128
3129         cache_alloc_debugcheck_before(cachep, flags);
3130         local_irq_save(save_flags);
3131
3132         if (nodeid == NUMA_NO_NODE)
3133                 nodeid = slab_node;
3134
3135         if (unlikely(!get_node(cachep, nodeid))) {
3136                 /* Node not bootstrapped yet */
3137                 ptr = fallback_alloc(cachep, flags);
3138                 goto out;
3139         }
3140
3141         if (nodeid == slab_node) {
3142                 /*
3143                  * Use the locally cached objects if possible.
3144                  * However ____cache_alloc does not allow fallback
3145                  * to other nodes. It may fail while we still have
3146                  * objects on other nodes available.
3147                  */
3148                 ptr = ____cache_alloc(cachep, flags);
3149                 if (ptr)
3150                         goto out;
3151         }
3152         /* ___cache_alloc_node can fall back to other nodes */
3153         ptr = ____cache_alloc_node(cachep, flags, nodeid);
3154   out:
3155         local_irq_restore(save_flags);
3156         ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
3157
3158         if (unlikely(flags & __GFP_ZERO) && ptr)
3159                 memset(ptr, 0, cachep->object_size);
3160
3161         slab_post_alloc_hook(cachep, flags, 1, &ptr);
3162         return ptr;
3163 }
3164
3165 static __always_inline void *
3166 __do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3167 {
3168         void *objp;
3169
3170         if (current->mempolicy || cpuset_do_slab_mem_spread()) {
3171                 objp = alternate_node_alloc(cache, flags);
3172                 if (objp)
3173                         goto out;
3174         }
3175         objp = ____cache_alloc(cache, flags);
3176
3177         /*
3178          * We may just have run out of memory on the local node.
3179          * ____cache_alloc_node() knows how to locate memory on other nodes
3180          */
3181         if (!objp)
3182                 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
3183
3184   out:
3185         return objp;
3186 }
3187 #else
3188
3189 static __always_inline void *
3190 __do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3191 {
3192         return ____cache_alloc(cachep, flags);
3193 }
3194
3195 #endif /* CONFIG_NUMA */
3196
3197 static __always_inline void *
3198 slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
3199 {
3200         unsigned long save_flags;
3201         void *objp;
3202
3203         flags &= gfp_allowed_mask;
3204         cachep = slab_pre_alloc_hook(cachep, flags);
3205         if (unlikely(!cachep))
3206                 return NULL;
3207
3208         cache_alloc_debugcheck_before(cachep, flags);
3209         local_irq_save(save_flags);
3210         objp = __do_cache_alloc(cachep, flags);
3211         local_irq_restore(save_flags);
3212         objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
3213         prefetchw(objp);
3214
3215         if (unlikely(flags & __GFP_ZERO) && objp)
3216                 memset(objp, 0, cachep->object_size);
3217
3218         slab_post_alloc_hook(cachep, flags, 1, &objp);
3219         return objp;
3220 }
3221
3222 /*
3223  * Caller needs to acquire correct kmem_cache_node's list_lock
3224  * @list: List of detached free slabs should be freed by caller
3225  */
3226 static void free_block(struct kmem_cache *cachep, void **objpp,
3227                         int nr_objects, int node, struct list_head *list)
3228 {
3229         int i;
3230         struct kmem_cache_node *n = get_node(cachep, node);
3231
3232         for (i = 0; i < nr_objects; i++) {
3233                 void *objp;
3234                 struct page *page;
3235
3236                 clear_obj_pfmemalloc(&objpp[i]);
3237                 objp = objpp[i];
3238
3239                 page = virt_to_head_page(objp);
3240                 list_del(&page->lru);
3241                 check_spinlock_acquired_node(cachep, node);
3242                 slab_put_obj(cachep, page, objp);
3243                 STATS_DEC_ACTIVE(cachep);
3244                 n->free_objects++;
3245
3246                 /* fixup slab chains */
3247                 if (page->active == 0) {
3248                         if (n->free_objects > n->free_limit) {
3249                                 n->free_objects -= cachep->num;
3250                                 list_add_tail(&page->lru, list);
3251                         } else {
3252                                 list_add(&page->lru, &n->slabs_free);
3253                         }
3254                 } else {
3255                         /* Unconditionally move a slab to the end of the
3256                          * partial list on free - maximum time for the
3257                          * other objects to be freed, too.
3258                          */
3259                         list_add_tail(&page->lru, &n->slabs_partial);
3260                 }
3261         }
3262 }
3263
3264 static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
3265 {
3266         int batchcount;
3267         struct kmem_cache_node *n;
3268         int node = numa_mem_id();
3269         LIST_HEAD(list);
3270
3271         batchcount = ac->batchcount;
3272
3273         check_irq_off();
3274         n = get_node(cachep, node);
3275         spin_lock(&n->list_lock);
3276         if (n->shared) {
3277                 struct array_cache *shared_array = n->shared;
3278                 int max = shared_array->limit - shared_array->avail;
3279                 if (max) {
3280                         if (batchcount > max)
3281                                 batchcount = max;
3282                         memcpy(&(shared_array->entry[shared_array->avail]),
3283                                ac->entry, sizeof(void *) * batchcount);
3284                         shared_array->avail += batchcount;
3285                         goto free_done;
3286                 }
3287         }
3288
3289         free_block(cachep, ac->entry, batchcount, node, &list);
3290 free_done:
3291 #if STATS
3292         {
3293                 int i = 0;
3294                 struct page *page;
3295
3296                 list_for_each_entry(page, &n->slabs_free, lru) {
3297                         BUG_ON(page->active);
3298
3299                         i++;
3300                 }
3301                 STATS_SET_FREEABLE(cachep, i);
3302         }
3303 #endif
3304         spin_unlock(&n->list_lock);
3305         slabs_destroy(cachep, &list);
3306         ac->avail -= batchcount;
3307         memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
3308 }
3309
3310 /*
3311  * Release an obj back to its cache. If the obj has a constructed state, it must
3312  * be in this state _before_ it is released.  Called with disabled ints.
3313  */
3314 static inline void __cache_free(struct kmem_cache *cachep, void *objp,
3315                                 unsigned long caller)
3316 {
3317         struct array_cache *ac = cpu_cache_get(cachep);
3318
3319         check_irq_off();
3320         kmemleak_free_recursive(objp, cachep->flags);
3321         objp = cache_free_debugcheck(cachep, objp, caller);
3322
3323         kmemcheck_slab_free(cachep, objp, cachep->object_size);
3324
3325         /*
3326          * Skip calling cache_free_alien() when the platform is not numa.
3327          * This will avoid cache misses that happen while accessing slabp (which
3328          * is per page memory  reference) to get nodeid. Instead use a global
3329          * variable to skip the call, which is mostly likely to be present in
3330          * the cache.
3331          */
3332         if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
3333                 return;
3334
3335         if (ac->avail < ac->limit) {
3336                 STATS_INC_FREEHIT(cachep);
3337         } else {
3338                 STATS_INC_FREEMISS(cachep);
3339                 cache_flusharray(cachep, ac);
3340         }
3341
3342         ac_put_obj(cachep, ac, objp);
3343 }
3344
3345 /**
3346  * kmem_cache_alloc - Allocate an object
3347  * @cachep: The cache to allocate from.
3348  * @flags: See kmalloc().
3349  *
3350  * Allocate an object from this cache.  The flags are only relevant
3351  * if the cache has no available objects.
3352  */
3353 void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3354 {
3355         void *ret = slab_alloc(cachep, flags, _RET_IP_);
3356
3357         trace_kmem_cache_alloc(_RET_IP_, ret,
3358                                cachep->object_size, cachep->size, flags);
3359
3360         return ret;
3361 }
3362 EXPORT_SYMBOL(kmem_cache_alloc);
3363
3364 static __always_inline void
3365 cache_alloc_debugcheck_after_bulk(struct kmem_cache *s, gfp_t flags,
3366                                   size_t size, void **p, unsigned long caller)
3367 {
3368         size_t i;
3369
3370         for (i = 0; i < size; i++)
3371                 p[i] = cache_alloc_debugcheck_after(s, flags, p[i], caller);
3372 }
3373
3374 int kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t size,
3375                           void **p)
3376 {
3377         size_t i;
3378
3379         s = slab_pre_alloc_hook(s, flags);
3380         if (!s)
3381                 return 0;
3382
3383         cache_alloc_debugcheck_before(s, flags);
3384
3385         local_irq_disable();
3386         for (i = 0; i < size; i++) {
3387                 void *objp = __do_cache_alloc(s, flags);
3388
3389                 if (unlikely(!objp))
3390                         goto error;
3391                 p[i] = objp;
3392         }
3393         local_irq_enable();
3394
3395         cache_alloc_debugcheck_after_bulk(s, flags, size, p, _RET_IP_);
3396
3397         /* Clear memory outside IRQ disabled section */
3398         if (unlikely(flags & __GFP_ZERO))
3399                 for (i = 0; i < size; i++)
3400                         memset(p[i], 0, s->object_size);
3401
3402         slab_post_alloc_hook(s, flags, size, p);
3403         /* FIXME: Trace call missing. Christoph would like a bulk variant */
3404         return size;
3405 error:
3406         local_irq_enable();
3407         cache_alloc_debugcheck_after_bulk(s, flags, i, p, _RET_IP_);
3408         slab_post_alloc_hook(s, flags, i, p);
3409         __kmem_cache_free_bulk(s, i, p);
3410         return 0;
3411 }
3412 EXPORT_SYMBOL(kmem_cache_alloc_bulk);
3413
3414 #ifdef CONFIG_TRACING
3415 void *
3416 kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
3417 {
3418         void *ret;
3419
3420         ret = slab_alloc(cachep, flags, _RET_IP_);
3421
3422         trace_kmalloc(_RET_IP_, ret,
3423                       size, cachep->size, flags);
3424         return ret;
3425 }
3426 EXPORT_SYMBOL(kmem_cache_alloc_trace);
3427 #endif
3428
3429 #ifdef CONFIG_NUMA
3430 /**
3431  * kmem_cache_alloc_node - Allocate an object on the specified node
3432  * @cachep: The cache to allocate from.
3433  * @flags: See kmalloc().
3434  * @nodeid: node number of the target node.
3435  *
3436  * Identical to kmem_cache_alloc but it will allocate memory on the given
3437  * node, which can improve the performance for cpu bound structures.
3438  *
3439  * Fallback to other node is possible if __GFP_THISNODE is not set.
3440  */
3441 void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3442 {
3443         void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
3444
3445         trace_kmem_cache_alloc_node(_RET_IP_, ret,
3446                                     cachep->object_size, cachep->size,
3447                                     flags, nodeid);
3448
3449         return ret;
3450 }
3451 EXPORT_SYMBOL(kmem_cache_alloc_node);
3452
3453 #ifdef CONFIG_TRACING
3454 void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
3455                                   gfp_t flags,
3456                                   int nodeid,
3457                                   size_t size)
3458 {
3459         void *ret;
3460
3461         ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
3462
3463         trace_kmalloc_node(_RET_IP_, ret,
3464                            size, cachep->size,
3465                            flags, nodeid);
3466         return ret;
3467 }
3468 EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
3469 #endif
3470
3471 static __always_inline void *
3472 __do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
3473 {
3474         struct kmem_cache *cachep;
3475
3476         cachep = kmalloc_slab(size, flags);
3477         if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3478                 return cachep;
3479         return kmem_cache_alloc_node_trace(cachep, flags, node, size);
3480 }
3481
3482 void *__kmalloc_node(size_t size, gfp_t flags, int node)
3483 {
3484         return __do_kmalloc_node(size, flags, node, _RET_IP_);
3485 }
3486 EXPORT_SYMBOL(__kmalloc_node);
3487
3488 void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
3489                 int node, unsigned long caller)
3490 {
3491         return __do_kmalloc_node(size, flags, node, caller);
3492 }
3493 EXPORT_SYMBOL(__kmalloc_node_track_caller);
3494 #endif /* CONFIG_NUMA */
3495
3496 /**
3497  * __do_kmalloc - allocate memory
3498  * @size: how many bytes of memory are required.
3499  * @flags: the type of memory to allocate (see kmalloc).
3500  * @caller: function caller for debug tracking of the caller
3501  */
3502 static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3503                                           unsigned long caller)
3504 {
3505         struct kmem_cache *cachep;
3506         void *ret;
3507
3508         cachep = kmalloc_slab(size, flags);
3509         if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3510                 return cachep;
3511         ret = slab_alloc(cachep, flags, caller);
3512
3513         trace_kmalloc(caller, ret,
3514                       size, cachep->size, flags);
3515
3516         return ret;
3517 }
3518
3519 void *__kmalloc(size_t size, gfp_t flags)
3520 {
3521         return __do_kmalloc(size, flags, _RET_IP_);
3522 }
3523 EXPORT_SYMBOL(__kmalloc);
3524
3525 void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
3526 {
3527         return __do_kmalloc(size, flags, caller);
3528 }
3529 EXPORT_SYMBOL(__kmalloc_track_caller);
3530
3531 /**
3532  * kmem_cache_free - Deallocate an object
3533  * @cachep: The cache the allocation was from.
3534  * @objp: The previously allocated object.
3535  *
3536  * Free an object which was previously allocated from this
3537  * cache.
3538  */
3539 void kmem_cache_free(struct kmem_cache *cachep, void *objp)
3540 {
3541         unsigned long flags;
3542         cachep = cache_from_obj(cachep, objp);
3543         if (!cachep)
3544                 return;
3545
3546         local_irq_save(flags);
3547         debug_check_no_locks_freed(objp, cachep->object_size);
3548         if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
3549                 debug_check_no_obj_freed(objp, cachep->object_size);
3550         __cache_free(cachep, objp, _RET_IP_);
3551         local_irq_restore(flags);
3552
3553         trace_kmem_cache_free(_RET_IP_, objp);
3554 }
3555 EXPORT_SYMBOL(kmem_cache_free);
3556
3557 void kmem_cache_free_bulk(struct kmem_cache *orig_s, size_t size, void **p)
3558 {
3559         struct kmem_cache *s;
3560         size_t i;
3561
3562         local_irq_disable();
3563         for (i = 0; i < size; i++) {
3564                 void *objp = p[i];
3565
3566                 if (!orig_s) /* called via kfree_bulk */
3567                         s = virt_to_cache(objp);
3568                 else
3569                         s = cache_from_obj(orig_s, objp);
3570
3571                 debug_check_no_locks_freed(objp, s->object_size);
3572                 if (!(s->flags & SLAB_DEBUG_OBJECTS))
3573                         debug_check_no_obj_freed(objp, s->object_size);
3574
3575                 __cache_free(s, objp, _RET_IP_);
3576         }
3577         local_irq_enable();
3578
3579         /* FIXME: add tracing */
3580 }
3581 EXPORT_SYMBOL(kmem_cache_free_bulk);
3582
3583 /**
3584  * kfree - free previously allocated memory
3585  * @objp: pointer returned by kmalloc.
3586  *
3587  * If @objp is NULL, no operation is performed.
3588  *
3589  * Don't free memory not originally allocated by kmalloc()
3590  * or you will run into trouble.
3591  */
3592 void kfree(const void *objp)
3593 {
3594         struct kmem_cache *c;
3595         unsigned long flags;
3596
3597         trace_kfree(_RET_IP_, objp);
3598
3599         if (unlikely(ZERO_OR_NULL_PTR(objp)))
3600                 return;
3601         local_irq_save(flags);
3602         kfree_debugcheck(objp);
3603         c = virt_to_cache(objp);
3604         debug_check_no_locks_freed(objp, c->object_size);
3605
3606         debug_check_no_obj_freed(objp, c->object_size);
3607         __cache_free(c, (void *)objp, _RET_IP_);
3608         local_irq_restore(flags);
3609 }
3610 EXPORT_SYMBOL(kfree);
3611
3612 /*
3613  * This initializes kmem_cache_node or resizes various caches for all nodes.
3614  */
3615 static int alloc_kmem_cache_node(struct kmem_cache *cachep, gfp_t gfp)
3616 {
3617         int node;
3618         struct kmem_cache_node *n;
3619         struct array_cache *new_shared;
3620         struct alien_cache **new_alien = NULL;
3621
3622         for_each_online_node(node) {
3623
3624                 if (use_alien_caches) {
3625                         new_alien = alloc_alien_cache(node, cachep->limit, gfp);
3626                         if (!new_alien)
3627                                 goto fail;
3628                 }
3629
3630                 new_shared = NULL;
3631                 if (cachep->shared) {
3632                         new_shared = alloc_arraycache(node,
3633                                 cachep->shared*cachep->batchcount,
3634                                         0xbaadf00d, gfp);
3635                         if (!new_shared) {
3636                                 free_alien_cache(new_alien);
3637                                 goto fail;
3638                         }
3639                 }
3640
3641                 n = get_node(cachep, node);
3642                 if (n) {
3643                         struct array_cache *shared = n->shared;
3644                         LIST_HEAD(list);
3645
3646                         spin_lock_irq(&n->list_lock);
3647
3648                         if (shared)
3649                                 free_block(cachep, shared->entry,
3650                                                 shared->avail, node, &list);
3651
3652                         n->shared = new_shared;
3653                         if (!n->alien) {
3654                                 n->alien = new_alien;
3655                                 new_alien = NULL;
3656                         }
3657                         n->free_limit = (1 + nr_cpus_node(node)) *
3658                                         cachep->batchcount + cachep->num;
3659                         spin_unlock_irq(&n->list_lock);
3660                         slabs_destroy(cachep, &list);
3661                         kfree(shared);
3662                         free_alien_cache(new_alien);
3663                         continue;
3664                 }
3665                 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3666                 if (!n) {
3667                         free_alien_cache(new_alien);
3668                         kfree(new_shared);
3669                         goto fail;
3670                 }
3671
3672                 kmem_cache_node_init(n);
3673                 n->next_reap = jiffies + REAPTIMEOUT_NODE +
3674                                 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
3675                 n->shared = new_shared;
3676                 n->alien = new_alien;
3677                 n->free_limit = (1 + nr_cpus_node(node)) *
3678                                         cachep->batchcount + cachep->num;
3679                 cachep->node[node] = n;
3680         }
3681         return 0;
3682
3683 fail:
3684         if (!cachep->list.next) {
3685                 /* Cache is not active yet. Roll back what we did */
3686                 node--;
3687                 while (node >= 0) {
3688                         n = get_node(cachep, node);
3689                         if (n) {
3690                                 kfree(n->shared);
3691                                 free_alien_cache(n->alien);
3692                                 kfree(n);
3693                                 cachep->node[node] = NULL;
3694                         }
3695                         node--;
3696                 }
3697         }
3698         return -ENOMEM;
3699 }
3700
3701 /* Always called with the slab_mutex held */
3702 static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
3703                                 int batchcount, int shared, gfp_t gfp)
3704 {
3705         struct array_cache __percpu *cpu_cache, *prev;
3706         int cpu;
3707
3708         cpu_cache = alloc_kmem_cache_cpus(cachep, limit, batchcount);
3709         if (!cpu_cache)
3710                 return -ENOMEM;
3711
3712         prev = cachep->cpu_cache;
3713         cachep->cpu_cache = cpu_cache;
3714         kick_all_cpus_sync();
3715
3716         check_irq_on();
3717         cachep->batchcount = batchcount;
3718         cachep->limit = limit;
3719         cachep->shared = shared;
3720
3721         if (!prev)
3722                 goto alloc_node;
3723
3724         for_each_online_cpu(cpu) {
3725                 LIST_HEAD(list);
3726                 int node;
3727                 struct kmem_cache_node *n;
3728                 struct array_cache *ac = per_cpu_ptr(prev, cpu);
3729
3730                 node = cpu_to_mem(cpu);
3731                 n = get_node(cachep, node);
3732                 spin_lock_irq(&n->list_lock);
3733                 free_block(cachep, ac->entry, ac->avail, node, &list);
3734                 spin_unlock_irq(&n->list_lock);
3735                 slabs_destroy(cachep, &list);
3736         }
3737         free_percpu(prev);
3738
3739 alloc_node:
3740         return alloc_kmem_cache_node(cachep, gfp);
3741 }
3742
3743 static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3744                                 int batchcount, int shared, gfp_t gfp)
3745 {
3746         int ret;
3747         struct kmem_cache *c;
3748
3749         ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3750
3751         if (slab_state < FULL)
3752                 return ret;
3753
3754         if ((ret < 0) || !is_root_cache(cachep))
3755                 return ret;
3756
3757         lockdep_assert_held(&slab_mutex);
3758         for_each_memcg_cache(c, cachep) {
3759                 /* return value determined by the root cache only */
3760                 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
3761         }
3762
3763         return ret;
3764 }
3765
3766 /* Called with slab_mutex held always */
3767 static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
3768 {
3769         int err;
3770         int limit = 0;
3771         int shared = 0;
3772         int batchcount = 0;
3773
3774         if (!is_root_cache(cachep)) {
3775                 struct kmem_cache *root = memcg_root_cache(cachep);
3776                 limit = root->limit;
3777                 shared = root->shared;
3778                 batchcount = root->batchcount;
3779         }
3780
3781         if (limit && shared && batchcount)
3782                 goto skip_setup;
3783         /*
3784          * The head array serves three purposes:
3785          * - create a LIFO ordering, i.e. return objects that are cache-warm
3786          * - reduce the number of spinlock operations.
3787          * - reduce the number of linked list operations on the slab and
3788          *   bufctl chains: array operations are cheaper.
3789          * The numbers are guessed, we should auto-tune as described by
3790          * Bonwick.
3791          */
3792         if (cachep->size > 131072)
3793                 limit = 1;
3794         else if (cachep->size > PAGE_SIZE)
3795                 limit = 8;
3796         else if (cachep->size > 1024)
3797                 limit = 24;
3798         else if (cachep->size > 256)
3799                 limit = 54;
3800         else
3801                 limit = 120;
3802
3803         /*
3804          * CPU bound tasks (e.g. network routing) can exhibit cpu bound
3805          * allocation behaviour: Most allocs on one cpu, most free operations
3806          * on another cpu. For these cases, an efficient object passing between
3807          * cpus is necessary. This is provided by a shared array. The array
3808          * replaces Bonwick's magazine layer.
3809          * On uniprocessor, it's functionally equivalent (but less efficient)
3810          * to a larger limit. Thus disabled by default.
3811          */
3812         shared = 0;
3813         if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
3814                 shared = 8;
3815
3816 #if DEBUG
3817         /*
3818          * With debugging enabled, large batchcount lead to excessively long
3819          * periods with disabled local interrupts. Limit the batchcount
3820          */
3821         if (limit > 32)
3822                 limit = 32;
3823 #endif
3824         batchcount = (limit + 1) / 2;
3825 skip_setup:
3826         err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3827         if (err)
3828                 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
3829                        cachep->name, -err);
3830         return err;
3831 }
3832
3833 /*
3834  * Drain an array if it contains any elements taking the node lock only if
3835  * necessary. Note that the node listlock also protects the array_cache
3836  * if drain_array() is used on the shared array.
3837  */
3838 static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
3839                          struct array_cache *ac, int force, int node)
3840 {
3841         LIST_HEAD(list);
3842         int tofree;
3843
3844         if (!ac || !ac->avail)
3845                 return;
3846         if (ac->touched && !force) {
3847                 ac->touched = 0;
3848         } else {
3849                 spin_lock_irq(&n->list_lock);
3850                 if (ac->avail) {
3851                         tofree = force ? ac->avail : (ac->limit + 4) / 5;
3852                         if (tofree > ac->avail)
3853                                 tofree = (ac->avail + 1) / 2;
3854                         free_block(cachep, ac->entry, tofree, node, &list);
3855                         ac->avail -= tofree;
3856                         memmove(ac->entry, &(ac->entry[tofree]),
3857                                 sizeof(void *) * ac->avail);
3858                 }
3859                 spin_unlock_irq(&n->list_lock);
3860                 slabs_destroy(cachep, &list);
3861         }
3862 }
3863
3864 /**
3865  * cache_reap - Reclaim memory from caches.
3866  * @w: work descriptor
3867  *
3868  * Called from workqueue/eventd every few seconds.
3869  * Purpose:
3870  * - clear the per-cpu caches for this CPU.
3871  * - return freeable pages to the main free memory pool.
3872  *
3873  * If we cannot acquire the cache chain mutex then just give up - we'll try
3874  * again on the next iteration.
3875  */
3876 static void cache_reap(struct work_struct *w)
3877 {
3878         struct kmem_cache *searchp;
3879         struct kmem_cache_node *n;
3880         int node = numa_mem_id();
3881         struct delayed_work *work = to_delayed_work(w);
3882
3883         if (!mutex_trylock(&slab_mutex))
3884                 /* Give up. Setup the next iteration. */
3885                 goto out;
3886
3887         list_for_each_entry(searchp, &slab_caches, list) {
3888                 check_irq_on();
3889
3890                 /*
3891                  * We only take the node lock if absolutely necessary and we
3892                  * have established with reasonable certainty that
3893                  * we can do some work if the lock was obtained.
3894                  */
3895                 n = get_node(searchp, node);
3896
3897                 reap_alien(searchp, n);
3898
3899                 drain_array(searchp, n, cpu_cache_get(searchp), 0, node);
3900
3901                 /*
3902                  * These are racy checks but it does not matter
3903                  * if we skip one check or scan twice.
3904                  */
3905                 if (time_after(n->next_reap, jiffies))
3906                         goto next;
3907
3908                 n->next_reap = jiffies + REAPTIMEOUT_NODE;
3909
3910                 drain_array(searchp, n, n->shared, 0, node);
3911
3912                 if (n->free_touched)
3913                         n->free_touched = 0;
3914                 else {
3915                         int freed;
3916
3917                         freed = drain_freelist(searchp, n, (n->free_limit +
3918                                 5 * searchp->num - 1) / (5 * searchp->num));
3919                         STATS_ADD_REAPED(searchp, freed);
3920                 }
3921 next:
3922                 cond_resched();
3923         }
3924         check_irq_on();
3925         mutex_unlock(&slab_mutex);
3926         next_reap_node();
3927 out:
3928         /* Set up the next iteration */
3929         schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_AC));
3930 }
3931
3932 #ifdef CONFIG_SLABINFO
3933 void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
3934 {
3935         struct page *page;
3936         unsigned long active_objs;
3937         unsigned long num_objs;
3938         unsigned long active_slabs = 0;
3939         unsigned long num_slabs, free_objects = 0, shared_avail = 0;
3940         const char *name;
3941         char *error = NULL;
3942         int node;
3943         struct kmem_cache_node *n;
3944
3945         active_objs = 0;
3946         num_slabs = 0;
3947         for_each_kmem_cache_node(cachep, node, n) {
3948
3949                 check_irq_on();
3950                 spin_lock_irq(&n->list_lock);
3951
3952                 list_for_each_entry(page, &n->slabs_full, lru) {
3953                         if (page->active != cachep->num && !error)
3954                                 error = "slabs_full accounting error";
3955                         active_objs += cachep->num;
3956                         active_slabs++;
3957                 }
3958                 list_for_each_entry(page, &n->slabs_partial, lru) {
3959                         if (page->active == cachep->num && !error)
3960                                 error = "slabs_partial accounting error";
3961                         if (!page->active && !error)
3962                                 error = "slabs_partial accounting error";
3963                         active_objs += page->active;
3964                         active_slabs++;
3965                 }
3966                 list_for_each_entry(page, &n->slabs_free, lru) {
3967                         if (page->active && !error)
3968                                 error = "slabs_free accounting error";
3969                         num_slabs++;
3970                 }
3971                 free_objects += n->free_objects;
3972                 if (n->shared)
3973                         shared_avail += n->shared->avail;
3974
3975                 spin_unlock_irq(&n->list_lock);
3976         }
3977         num_slabs += active_slabs;
3978         num_objs = num_slabs * cachep->num;
3979         if (num_objs - active_objs != free_objects && !error)
3980                 error = "free_objects accounting error";
3981
3982         name = cachep->name;
3983         if (error)
3984                 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
3985
3986         sinfo->active_objs = active_objs;
3987         sinfo->num_objs = num_objs;
3988         sinfo->active_slabs = active_slabs;
3989         sinfo->num_slabs = num_slabs;
3990         sinfo->shared_avail = shared_avail;
3991         sinfo->limit = cachep->limit;
3992         sinfo->batchcount = cachep->batchcount;
3993         sinfo->shared = cachep->shared;
3994         sinfo->objects_per_slab = cachep->num;
3995         sinfo->cache_order = cachep->gfporder;
3996 }
3997
3998 void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
3999 {
4000 #if STATS
4001         {                       /* node stats */
4002                 unsigned long high = cachep->high_mark;
4003                 unsigned long allocs = cachep->num_allocations;
4004                 unsigned long grown = cachep->grown;
4005                 unsigned long reaped = cachep->reaped;
4006                 unsigned long errors = cachep->errors;
4007                 unsigned long max_freeable = cachep->max_freeable;
4008                 unsigned long node_allocs = cachep->node_allocs;
4009                 unsigned long node_frees = cachep->node_frees;
4010                 unsigned long overflows = cachep->node_overflow;
4011
4012                 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4013                            "%4lu %4lu %4lu %4lu %4lu",
4014                            allocs, high, grown,
4015                            reaped, errors, max_freeable, node_allocs,
4016                            node_frees, overflows);
4017         }
4018         /* cpu stats */
4019         {
4020                 unsigned long allochit = atomic_read(&cachep->allochit);
4021                 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4022                 unsigned long freehit = atomic_read(&cachep->freehit);
4023                 unsigned long freemiss = atomic_read(&cachep->freemiss);
4024
4025                 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
4026                            allochit, allocmiss, freehit, freemiss);
4027         }
4028 #endif
4029 }
4030
4031 #define MAX_SLABINFO_WRITE 128
4032 /**
4033  * slabinfo_write - Tuning for the slab allocator
4034  * @file: unused
4035  * @buffer: user buffer
4036  * @count: data length
4037  * @ppos: unused
4038  */
4039 ssize_t slabinfo_write(struct file *file, const char __user *buffer,
4040                        size_t count, loff_t *ppos)
4041 {
4042         char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
4043         int limit, batchcount, shared, res;
4044         struct kmem_cache *cachep;
4045
4046         if (count > MAX_SLABINFO_WRITE)
4047                 return -EINVAL;
4048         if (copy_from_user(&kbuf, buffer, count))
4049                 return -EFAULT;
4050         kbuf[MAX_SLABINFO_WRITE] = '\0';
4051
4052         tmp = strchr(kbuf, ' ');
4053         if (!tmp)
4054                 return -EINVAL;
4055         *tmp = '\0';
4056         tmp++;
4057         if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4058                 return -EINVAL;
4059
4060         /* Find the cache in the chain of caches. */
4061         mutex_lock(&slab_mutex);
4062         res = -EINVAL;
4063         list_for_each_entry(cachep, &slab_caches, list) {
4064                 if (!strcmp(cachep->name, kbuf)) {
4065                         if (limit < 1 || batchcount < 1 ||
4066                                         batchcount > limit || shared < 0) {
4067                                 res = 0;
4068                         } else {
4069                                 res = do_tune_cpucache(cachep, limit,
4070                                                        batchcount, shared,
4071                                                        GFP_KERNEL);
4072                         }
4073                         break;
4074                 }
4075         }
4076         mutex_unlock(&slab_mutex);
4077         if (res >= 0)
4078                 res = count;
4079         return res;
4080 }
4081
4082 #ifdef CONFIG_DEBUG_SLAB_LEAK
4083
4084 static inline int add_caller(unsigned long *n, unsigned long v)
4085 {
4086         unsigned long *p;
4087         int l;
4088         if (!v)
4089                 return 1;
4090         l = n[1];
4091         p = n + 2;
4092         while (l) {
4093                 int i = l/2;
4094                 unsigned long *q = p + 2 * i;
4095                 if (*q == v) {
4096                         q[1]++;
4097                         return 1;
4098                 }
4099                 if (*q > v) {
4100                         l = i;
4101                 } else {
4102                         p = q + 2;
4103                         l -= i + 1;
4104                 }
4105         }
4106         if (++n[1] == n[0])
4107                 return 0;
4108         memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4109         p[0] = v;
4110         p[1] = 1;
4111         return 1;
4112 }
4113
4114 static void handle_slab(unsigned long *n, struct kmem_cache *c,
4115                                                 struct page *page)
4116 {
4117         void *p;
4118         int i;
4119
4120         if (n[0] == n[1])
4121                 return;
4122         for (i = 0, p = page->s_mem; i < c->num; i++, p += c->size) {
4123                 if (get_obj_status(page, i) != OBJECT_ACTIVE)
4124                         continue;
4125
4126                 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4127                         return;
4128         }
4129 }
4130
4131 static void show_symbol(struct seq_file *m, unsigned long address)
4132 {
4133 #ifdef CONFIG_KALLSYMS
4134         unsigned long offset, size;
4135         char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
4136
4137         if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
4138                 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
4139                 if (modname[0])
4140                         seq_printf(m, " [%s]", modname);
4141                 return;
4142         }
4143 #endif
4144         seq_printf(m, "%p", (void *)address);
4145 }
4146
4147 static int leaks_show(struct seq_file *m, void *p)
4148 {
4149         struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
4150         struct page *page;
4151         struct kmem_cache_node *n;
4152         const char *name;
4153         unsigned long *x = m->private;
4154         int node;
4155         int i;
4156
4157         if (!(cachep->flags & SLAB_STORE_USER))
4158                 return 0;
4159         if (!(cachep->flags & SLAB_RED_ZONE))
4160                 return 0;
4161
4162         /* OK, we can do it */
4163
4164         x[1] = 0;
4165
4166         for_each_kmem_cache_node(cachep, node, n) {
4167
4168                 check_irq_on();
4169                 spin_lock_irq(&n->list_lock);
4170
4171                 list_for_each_entry(page, &n->slabs_full, lru)
4172                         handle_slab(x, cachep, page);
4173                 list_for_each_entry(page, &n->slabs_partial, lru)
4174                         handle_slab(x, cachep, page);
4175                 spin_unlock_irq(&n->list_lock);
4176         }
4177         name = cachep->name;
4178         if (x[0] == x[1]) {
4179                 /* Increase the buffer size */
4180                 mutex_unlock(&slab_mutex);
4181                 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4182                 if (!m->private) {
4183                         /* Too bad, we are really out */
4184                         m->private = x;
4185                         mutex_lock(&slab_mutex);
4186                         return -ENOMEM;
4187                 }
4188                 *(unsigned long *)m->private = x[0] * 2;
4189                 kfree(x);
4190                 mutex_lock(&slab_mutex);
4191                 /* Now make sure this entry will be retried */
4192                 m->count = m->size;
4193                 return 0;
4194         }
4195         for (i = 0; i < x[1]; i++) {
4196                 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4197                 show_symbol(m, x[2*i+2]);
4198                 seq_putc(m, '\n');
4199         }
4200
4201         return 0;
4202 }
4203
4204 static const struct seq_operations slabstats_op = {
4205         .start = slab_start,
4206         .next = slab_next,
4207         .stop = slab_stop,
4208         .show = leaks_show,
4209 };
4210
4211 static int slabstats_open(struct inode *inode, struct file *file)
4212 {
4213         unsigned long *n;
4214
4215         n = __seq_open_private(file, &slabstats_op, PAGE_SIZE);
4216         if (!n)
4217                 return -ENOMEM;
4218
4219         *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4220
4221         return 0;
4222 }
4223
4224 static const struct file_operations proc_slabstats_operations = {
4225         .open           = slabstats_open,
4226         .read           = seq_read,
4227         .llseek         = seq_lseek,
4228         .release        = seq_release_private,
4229 };
4230 #endif
4231
4232 static int __init slab_proc_init(void)
4233 {
4234 #ifdef CONFIG_DEBUG_SLAB_LEAK
4235         proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4236 #endif
4237         return 0;
4238 }
4239 module_init(slab_proc_init);
4240 #endif
4241
4242 /**
4243  * ksize - get the actual amount of memory allocated for a given object
4244  * @objp: Pointer to the object
4245  *
4246  * kmalloc may internally round up allocations and return more memory
4247  * than requested. ksize() can be used to determine the actual amount of
4248  * memory allocated. The caller may use this additional memory, even though
4249  * a smaller amount of memory was initially specified with the kmalloc call.
4250  * The caller must guarantee that objp points to a valid object previously
4251  * allocated with either kmalloc() or kmem_cache_alloc(). The object
4252  * must not be freed during the duration of the call.
4253  */
4254 size_t ksize(const void *objp)
4255 {
4256         BUG_ON(!objp);
4257         if (unlikely(objp == ZERO_SIZE_PTR))
4258                 return 0;
4259
4260         return virt_to_cache(objp)->object_size;
4261 }
4262 EXPORT_SYMBOL(ksize);