blob: 081f1b8d9a7b21ae5fb4824fd3e08200fc7f0071 [file] [log] [blame]
Christoph Lameter039363f2012-07-06 15:25:10 -05001/*
2 * Slab allocator functions that are independent of the allocator strategy
3 *
4 * (C) 2012 Christoph Lameter <cl@linux.com>
5 */
6#include <linux/slab.h>
7
8#include <linux/mm.h>
9#include <linux/poison.h>
10#include <linux/interrupt.h>
11#include <linux/memory.h>
12#include <linux/compiler.h>
13#include <linux/module.h>
Christoph Lameter20cea962012-07-06 15:25:13 -050014#include <linux/cpu.h>
15#include <linux/uaccess.h>
Glauber Costab7454ad2012-10-19 18:20:25 +040016#include <linux/seq_file.h>
17#include <linux/proc_fs.h>
Christoph Lameter039363f2012-07-06 15:25:10 -050018#include <asm/cacheflush.h>
19#include <asm/tlbflush.h>
20#include <asm/page.h>
Glauber Costa2633d7a2012-12-18 14:22:34 -080021#include <linux/memcontrol.h>
Christoph Lameter039363f2012-07-06 15:25:10 -050022
Christoph Lameter97d06602012-07-06 15:25:11 -050023#include "slab.h"
24
25enum slab_state slab_state;
Christoph Lameter18004c52012-07-06 15:25:12 -050026LIST_HEAD(slab_caches);
27DEFINE_MUTEX(slab_mutex);
Christoph Lameter9b030cb2012-09-05 00:20:33 +000028struct kmem_cache *kmem_cache;
Christoph Lameter97d06602012-07-06 15:25:11 -050029
Shuah Khan77be4b12012-08-16 00:09:46 -070030#ifdef CONFIG_DEBUG_VM
Glauber Costa2633d7a2012-12-18 14:22:34 -080031static int kmem_cache_sanity_check(struct mem_cgroup *memcg, const char *name,
32 size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -070033{
34 struct kmem_cache *s = NULL;
35
36 if (!name || in_interrupt() || size < sizeof(void *) ||
37 size > KMALLOC_MAX_SIZE) {
38 pr_err("kmem_cache_create(%s) integrity check failed\n", name);
39 return -EINVAL;
40 }
41
42 list_for_each_entry(s, &slab_caches, list) {
43 char tmp;
44 int res;
45
46 /*
47 * This happens when the module gets unloaded and doesn't
48 * destroy its slab cache and no-one else reuses the vmalloc
49 * area of the module. Print a warning.
50 */
51 res = probe_kernel_address(s->name, tmp);
52 if (res) {
53 pr_err("Slab cache with size %d has lost its name\n",
54 s->object_size);
55 continue;
56 }
57
Glauber Costa2633d7a2012-12-18 14:22:34 -080058 /*
59 * For simplicity, we won't check this in the list of memcg
60 * caches. We have control over memcg naming, and if there
61 * aren't duplicates in the global list, there won't be any
62 * duplicates in the memcg lists as well.
63 */
64 if (!memcg && !strcmp(s->name, name)) {
Shuah Khan77be4b12012-08-16 00:09:46 -070065 pr_err("%s (%s): Cache name already exists.\n",
66 __func__, name);
67 dump_stack();
68 s = NULL;
69 return -EINVAL;
70 }
71 }
72
73 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
74 return 0;
75}
76#else
Glauber Costa2633d7a2012-12-18 14:22:34 -080077static inline int kmem_cache_sanity_check(struct mem_cgroup *memcg,
78 const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -070079{
80 return 0;
81}
82#endif
83
Glauber Costa55007d82012-12-18 14:22:38 -080084#ifdef CONFIG_MEMCG_KMEM
85int memcg_update_all_caches(int num_memcgs)
86{
87 struct kmem_cache *s;
88 int ret = 0;
89 mutex_lock(&slab_mutex);
90
91 list_for_each_entry(s, &slab_caches, list) {
92 if (!is_root_cache(s))
93 continue;
94
95 ret = memcg_update_cache_size(s, num_memcgs);
96 /*
97 * See comment in memcontrol.c, memcg_update_cache_size:
98 * Instead of freeing the memory, we'll just leave the caches
99 * up to this point in an updated state.
100 */
101 if (ret)
102 goto out;
103 }
104
105 memcg_update_array_size(num_memcgs);
106out:
107 mutex_unlock(&slab_mutex);
108 return ret;
109}
110#endif
111
Christoph Lameter039363f2012-07-06 15:25:10 -0500112/*
Christoph Lameter45906852012-11-28 16:23:16 +0000113 * Figure out what the alignment of the objects will be given a set of
114 * flags, a user specified alignment and the size of the objects.
115 */
116unsigned long calculate_alignment(unsigned long flags,
117 unsigned long align, unsigned long size)
118{
119 /*
120 * If the user wants hardware cache aligned objects then follow that
121 * suggestion if the object is sufficiently large.
122 *
123 * The hardware cache alignment cannot override the specified
124 * alignment though. If that is greater then use it.
125 */
126 if (flags & SLAB_HWCACHE_ALIGN) {
127 unsigned long ralign = cache_line_size();
128 while (size <= ralign / 2)
129 ralign /= 2;
130 align = max(align, ralign);
131 }
132
133 if (align < ARCH_SLAB_MINALIGN)
134 align = ARCH_SLAB_MINALIGN;
135
136 return ALIGN(align, sizeof(void *));
137}
138
139
140/*
Christoph Lameter039363f2012-07-06 15:25:10 -0500141 * kmem_cache_create - Create a cache.
142 * @name: A string which is used in /proc/slabinfo to identify this cache.
143 * @size: The size of objects to be created in this cache.
144 * @align: The required alignment for the objects.
145 * @flags: SLAB flags
146 * @ctor: A constructor for the objects.
147 *
148 * Returns a ptr to the cache on success, NULL on failure.
149 * Cannot be called within a interrupt, but can be interrupted.
150 * The @ctor is run when new pages are allocated by the cache.
151 *
152 * The flags are
153 *
154 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
155 * to catch references to uninitialised memory.
156 *
157 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
158 * for buffer overruns.
159 *
160 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
161 * cacheline. This can be beneficial if you're counting cycles as closely
162 * as davem.
163 */
164
Glauber Costa2633d7a2012-12-18 14:22:34 -0800165struct kmem_cache *
166kmem_cache_create_memcg(struct mem_cgroup *memcg, const char *name, size_t size,
167 size_t align, unsigned long flags, void (*ctor)(void *))
Christoph Lameter039363f2012-07-06 15:25:10 -0500168{
169 struct kmem_cache *s = NULL;
Christoph Lameter686d5502012-09-05 00:20:33 +0000170 int err = 0;
Christoph Lameter039363f2012-07-06 15:25:10 -0500171
Pekka Enbergb9205362012-08-16 10:12:18 +0300172 get_online_cpus();
173 mutex_lock(&slab_mutex);
Christoph Lameter686d5502012-09-05 00:20:33 +0000174
Glauber Costa2633d7a2012-12-18 14:22:34 -0800175 if (!kmem_cache_sanity_check(memcg, name, size) == 0)
Christoph Lameter686d5502012-09-05 00:20:33 +0000176 goto out_locked;
177
Glauber Costad8843922012-10-17 15:36:51 +0400178 /*
179 * Some allocators will constraint the set of valid flags to a subset
180 * of all flags. We expect them to define CACHE_CREATE_MASK in this
181 * case, and we'll just provide them with a sanitized version of the
182 * passed flags.
183 */
184 flags &= CACHE_CREATE_MASK;
Christoph Lameter686d5502012-09-05 00:20:33 +0000185
Glauber Costa2633d7a2012-12-18 14:22:34 -0800186 s = __kmem_cache_alias(memcg, name, size, align, flags, ctor);
Christoph Lametercbb79692012-09-05 00:18:32 +0000187 if (s)
188 goto out_locked;
189
Christoph Lameter278b1bb2012-09-05 00:20:34 +0000190 s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL);
Christoph Lameterdb265ec2012-09-04 23:18:33 +0000191 if (s) {
Christoph Lameter8a13a4c2012-09-04 23:18:33 +0000192 s->object_size = s->size = size;
Christoph Lameter45906852012-11-28 16:23:16 +0000193 s->align = calculate_alignment(flags, align, size);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +0000194 s->ctor = ctor;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800195
196 if (memcg_register_cache(memcg, s)) {
197 kmem_cache_free(kmem_cache, s);
198 err = -ENOMEM;
199 goto out_locked;
200 }
201
Christoph Lameter8a13a4c2012-09-04 23:18:33 +0000202 s->name = kstrdup(name, GFP_KERNEL);
203 if (!s->name) {
204 kmem_cache_free(kmem_cache, s);
205 err = -ENOMEM;
206 goto out_locked;
207 }
208
209 err = __kmem_cache_create(s, flags);
Christoph Lametercce89f42012-09-04 23:38:33 +0000210 if (!err) {
Christoph Lametercce89f42012-09-04 23:38:33 +0000211 s->refcount = 1;
Christoph Lameterdb265ec2012-09-04 23:18:33 +0000212 list_add(&s->list, &slab_caches);
Glauber Costa2633d7a2012-12-18 14:22:34 -0800213 memcg_cache_list_add(memcg, s);
Christoph Lametercce89f42012-09-04 23:38:33 +0000214 } else {
Christoph Lameter8a13a4c2012-09-04 23:18:33 +0000215 kfree(s->name);
Christoph Lameter278b1bb2012-09-05 00:20:34 +0000216 kmem_cache_free(kmem_cache, s);
217 }
Christoph Lameter8a13a4c2012-09-04 23:18:33 +0000218 } else
Christoph Lameter278b1bb2012-09-05 00:20:34 +0000219 err = -ENOMEM;
Christoph Lameter7c9adf52012-09-04 23:38:33 +0000220
Christoph Lameter686d5502012-09-05 00:20:33 +0000221out_locked:
Christoph Lameter20cea962012-07-06 15:25:13 -0500222 mutex_unlock(&slab_mutex);
223 put_online_cpus();
224
Christoph Lameter686d5502012-09-05 00:20:33 +0000225 if (err) {
226
227 if (flags & SLAB_PANIC)
228 panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n",
229 name, err);
230 else {
231 printk(KERN_WARNING "kmem_cache_create(%s) failed with error %d",
232 name, err);
233 dump_stack();
234 }
235
236 return NULL;
237 }
Christoph Lameter039363f2012-07-06 15:25:10 -0500238
239 return s;
240}
Glauber Costa2633d7a2012-12-18 14:22:34 -0800241
242struct kmem_cache *
243kmem_cache_create(const char *name, size_t size, size_t align,
244 unsigned long flags, void (*ctor)(void *))
245{
246 return kmem_cache_create_memcg(NULL, name, size, align, flags, ctor);
247}
Christoph Lameter039363f2012-07-06 15:25:10 -0500248EXPORT_SYMBOL(kmem_cache_create);
Christoph Lameter97d06602012-07-06 15:25:11 -0500249
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000250void kmem_cache_destroy(struct kmem_cache *s)
251{
Glauber Costa7cf27982012-12-18 14:22:55 -0800252 /* Destroy all the children caches if we aren't a memcg cache */
253 kmem_cache_destroy_memcg_children(s);
254
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000255 get_online_cpus();
256 mutex_lock(&slab_mutex);
257 s->refcount--;
258 if (!s->refcount) {
259 list_del(&s->list);
260
261 if (!__kmem_cache_shutdown(s)) {
Jiri Kosina210ed9d2012-10-08 09:26:01 +0200262 mutex_unlock(&slab_mutex);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000263 if (s->flags & SLAB_DESTROY_BY_RCU)
264 rcu_barrier();
265
Glauber Costa2633d7a2012-12-18 14:22:34 -0800266 memcg_release_cache(s);
Christoph Lameterdb265ec2012-09-04 23:18:33 +0000267 kfree(s->name);
Christoph Lameter8f4c7652012-09-05 00:18:32 +0000268 kmem_cache_free(kmem_cache, s);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000269 } else {
270 list_add(&s->list, &slab_caches);
Jiri Kosina210ed9d2012-10-08 09:26:01 +0200271 mutex_unlock(&slab_mutex);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000272 printk(KERN_ERR "kmem_cache_destroy %s: Slab cache still has objects\n",
273 s->name);
274 dump_stack();
275 }
Jiri Kosina210ed9d2012-10-08 09:26:01 +0200276 } else {
277 mutex_unlock(&slab_mutex);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000278 }
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000279 put_online_cpus();
280}
281EXPORT_SYMBOL(kmem_cache_destroy);
282
Christoph Lameter97d06602012-07-06 15:25:11 -0500283int slab_is_available(void)
284{
285 return slab_state >= UP;
286}
Glauber Costab7454ad2012-10-19 18:20:25 +0400287
Christoph Lameter45530c42012-11-28 16:23:07 +0000288#ifndef CONFIG_SLOB
289/* Create a cache during boot when no slab services are available yet */
290void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t size,
291 unsigned long flags)
292{
293 int err;
294
295 s->name = name;
296 s->size = s->object_size = size;
Christoph Lameter45906852012-11-28 16:23:16 +0000297 s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size);
Christoph Lameter45530c42012-11-28 16:23:07 +0000298 err = __kmem_cache_create(s, flags);
299
300 if (err)
301 panic("Creation of kmalloc slab %s size=%zd failed. Reason %d\n",
302 name, size, err);
303
304 s->refcount = -1; /* Exempt from merging for now */
305}
306
307struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size,
308 unsigned long flags)
309{
310 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
311
312 if (!s)
313 panic("Out of memory when creating slab %s\n", name);
314
315 create_boot_cache(s, name, size, flags);
316 list_add(&s->list, &slab_caches);
317 s->refcount = 1;
318 return s;
319}
320
321#endif /* !CONFIG_SLOB */
322
323
Glauber Costab7454ad2012-10-19 18:20:25 +0400324#ifdef CONFIG_SLABINFO
Glauber Costa749c5412012-12-18 14:23:01 -0800325void print_slabinfo_header(struct seq_file *m)
Glauber Costabcee6e22012-10-19 18:20:26 +0400326{
327 /*
328 * Output format version, so at least we can change it
329 * without _too_ many complaints.
330 */
331#ifdef CONFIG_DEBUG_SLAB
332 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
333#else
334 seq_puts(m, "slabinfo - version: 2.1\n");
335#endif
336 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
337 "<objperslab> <pagesperslab>");
338 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
339 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
340#ifdef CONFIG_DEBUG_SLAB
341 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
342 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
343 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
344#endif
345 seq_putc(m, '\n');
346}
347
Glauber Costab7454ad2012-10-19 18:20:25 +0400348static void *s_start(struct seq_file *m, loff_t *pos)
349{
350 loff_t n = *pos;
351
352 mutex_lock(&slab_mutex);
353 if (!n)
354 print_slabinfo_header(m);
355
356 return seq_list_start(&slab_caches, *pos);
357}
358
359static void *s_next(struct seq_file *m, void *p, loff_t *pos)
360{
361 return seq_list_next(p, &slab_caches, pos);
362}
363
364static void s_stop(struct seq_file *m, void *p)
365{
366 mutex_unlock(&slab_mutex);
367}
368
Glauber Costa749c5412012-12-18 14:23:01 -0800369static void
370memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
Glauber Costab7454ad2012-10-19 18:20:25 +0400371{
Glauber Costa749c5412012-12-18 14:23:01 -0800372 struct kmem_cache *c;
373 struct slabinfo sinfo;
374 int i;
375
376 if (!is_root_cache(s))
377 return;
378
379 for_each_memcg_cache_index(i) {
380 c = cache_from_memcg(s, i);
381 if (!c)
382 continue;
383
384 memset(&sinfo, 0, sizeof(sinfo));
385 get_slabinfo(c, &sinfo);
386
387 info->active_slabs += sinfo.active_slabs;
388 info->num_slabs += sinfo.num_slabs;
389 info->shared_avail += sinfo.shared_avail;
390 info->active_objs += sinfo.active_objs;
391 info->num_objs += sinfo.num_objs;
392 }
393}
394
395int cache_show(struct kmem_cache *s, struct seq_file *m)
396{
Glauber Costa0d7561c2012-10-19 18:20:27 +0400397 struct slabinfo sinfo;
398
399 memset(&sinfo, 0, sizeof(sinfo));
400 get_slabinfo(s, &sinfo);
401
Glauber Costa749c5412012-12-18 14:23:01 -0800402 memcg_accumulate_slabinfo(s, &sinfo);
403
Glauber Costa0d7561c2012-10-19 18:20:27 +0400404 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Glauber Costa749c5412012-12-18 14:23:01 -0800405 cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size,
Glauber Costa0d7561c2012-10-19 18:20:27 +0400406 sinfo.objects_per_slab, (1 << sinfo.cache_order));
407
408 seq_printf(m, " : tunables %4u %4u %4u",
409 sinfo.limit, sinfo.batchcount, sinfo.shared);
410 seq_printf(m, " : slabdata %6lu %6lu %6lu",
411 sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
412 slabinfo_show_stats(m, s);
413 seq_putc(m, '\n');
414 return 0;
Glauber Costab7454ad2012-10-19 18:20:25 +0400415}
416
Glauber Costa749c5412012-12-18 14:23:01 -0800417static int s_show(struct seq_file *m, void *p)
418{
419 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
420
421 if (!is_root_cache(s))
422 return 0;
423 return cache_show(s, m);
424}
425
Glauber Costab7454ad2012-10-19 18:20:25 +0400426/*
427 * slabinfo_op - iterator that generates /proc/slabinfo
428 *
429 * Output layout:
430 * cache-name
431 * num-active-objs
432 * total-objs
433 * object size
434 * num-active-slabs
435 * total-slabs
436 * num-pages-per-slab
437 * + further values on SMP and with statistics enabled
438 */
439static const struct seq_operations slabinfo_op = {
440 .start = s_start,
441 .next = s_next,
442 .stop = s_stop,
443 .show = s_show,
444};
445
446static int slabinfo_open(struct inode *inode, struct file *file)
447{
448 return seq_open(file, &slabinfo_op);
449}
450
451static const struct file_operations proc_slabinfo_operations = {
452 .open = slabinfo_open,
453 .read = seq_read,
454 .write = slabinfo_write,
455 .llseek = seq_lseek,
456 .release = seq_release,
457};
458
459static int __init slab_proc_init(void)
460{
461 proc_create("slabinfo", S_IRUSR, NULL, &proc_slabinfo_operations);
462 return 0;
463}
464module_init(slab_proc_init);
465#endif /* CONFIG_SLABINFO */