]> git.proxmox.com Git - mirror_spl-debian.git/blame - module/spl/spl-kmem.c
New upstream version 0.7.2
[mirror_spl-debian.git] / module / spl / spl-kmem.c
CommitLineData
10946b02 1/*
716154c5
BB
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5 8 * This file is part of the SPL, Solaris Porting Layer.
3d6af2dd 9 * For details, see <http://zfsonlinux.org/>.
715f6251 10 *
716154c5
BB
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
715f6251 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
716154c5 22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
36b313da 23 */
36b313da 24
10946b02
AX
25#include <sys/debug.h>
26#include <sys/sysmacros.h>
27#include <sys/kmem.h>
28#include <sys/vmem.h>
29#include <linux/mm.h>
30#include <linux/ratelimit.h>
36b313da
BB
31
32/*
10946b02
AX
33 * As a general rule kmem_alloc() allocations should be small, preferably
34 * just a few pages since they must by physically contiguous. Therefore, a
35 * rate limited warning will be printed to the console for any kmem_alloc()
36 * which exceeds a reasonable threshold.
37 *
ec06701b 38 * The default warning threshold is set to sixteen pages but capped at 64K to
10946b02
AX
39 * accommodate systems using large pages. This value was selected to be small
40 * enough to ensure the largest allocations are quickly noticed and fixed.
41 * But large enough to avoid logging any warnings when a allocation size is
42 * larger than optimal but not a serious concern. Since this value is tunable,
43 * developers are encouraged to set it lower when testing so any new largish
44 * allocations are quickly caught. These warnings may be disabled by setting
45 * the threshold to zero.
46 */
ec06701b 47unsigned int spl_kmem_alloc_warn = MIN(16 * PAGE_SIZE, 64 * 1024);
10946b02
AX
48module_param(spl_kmem_alloc_warn, uint, 0644);
49MODULE_PARM_DESC(spl_kmem_alloc_warn,
50 "Warning threshold in bytes for a kmem_alloc()");
51EXPORT_SYMBOL(spl_kmem_alloc_warn);
52
53/*
54 * Large kmem_alloc() allocations will fail if they exceed KMALLOC_MAX_SIZE.
55 * Allocations which are marginally smaller than this limit may succeed but
56 * should still be avoided due to the expense of locating a contiguous range
57 * of free pages. Therefore, a maximum kmem size with reasonable safely
58 * margin of 4x is set. Kmem_alloc() allocations larger than this maximum
59 * will quickly fail. Vmem_alloc() allocations less than or equal to this
60 * value will use kmalloc(), but shift to vmalloc() when exceeding this value.
61 */
62unsigned int spl_kmem_alloc_max = (KMALLOC_MAX_SIZE >> 2);
63module_param(spl_kmem_alloc_max, uint, 0644);
64MODULE_PARM_DESC(spl_kmem_alloc_max,
65 "Maximum size in bytes for a kmem_alloc()");
66EXPORT_SYMBOL(spl_kmem_alloc_max);
4ab13d3b 67
b868e22f
BB
68int
69kmem_debugging(void)
70{
10946b02 71 return (0);
b868e22f
BB
72}
73EXPORT_SYMBOL(kmem_debugging);
74
e6de04b7
BB
75char *
76kmem_vasprintf(const char *fmt, va_list ap)
77{
78 va_list aq;
79 char *ptr;
80
e6de04b7 81 do {
2c762de8 82 va_copy(aq, ap);
10946b02 83 ptr = kvasprintf(kmem_flags_convert(KM_SLEEP), fmt, aq);
2c762de8 84 va_end(aq);
e6de04b7 85 } while (ptr == NULL);
e6de04b7 86
10946b02 87 return (ptr);
e6de04b7
BB
88}
89EXPORT_SYMBOL(kmem_vasprintf);
90
b868e22f
BB
91char *
92kmem_asprintf(const char *fmt, ...)
93{
e6de04b7 94 va_list ap;
b868e22f
BB
95 char *ptr;
96
b868e22f 97 do {
2c762de8 98 va_start(ap, fmt);
10946b02 99 ptr = kvasprintf(kmem_flags_convert(KM_SLEEP), fmt, ap);
2c762de8 100 va_end(ap);
b868e22f 101 } while (ptr == NULL);
b868e22f 102
10946b02 103 return (ptr);
b868e22f
BB
104}
105EXPORT_SYMBOL(kmem_asprintf);
106
10129680
BB
107static char *
108__strdup(const char *str, int flags)
109{
110 char *ptr;
111 int n;
112
113 n = strlen(str);
10946b02 114 ptr = kmalloc(n + 1, kmem_flags_convert(flags));
10129680
BB
115 if (ptr)
116 memcpy(ptr, str, n + 1);
117
10946b02 118 return (ptr);
10129680
BB
119}
120
121char *
122strdup(const char *str)
123{
10946b02 124 return (__strdup(str, KM_SLEEP));
10129680
BB
125}
126EXPORT_SYMBOL(strdup);
127
128void
129strfree(char *str)
130{
41f84a8d 131 kfree(str);
10129680
BB
132}
133EXPORT_SYMBOL(strfree);
134
f1ca4da6 135/*
10946b02
AX
136 * Limit the number of large allocation stack traces dumped to not more than
137 * 5 every 60 seconds to prevent denial-of-service attacks from debug code.
138 */
139DEFINE_RATELIMIT_STATE(kmem_alloc_ratelimit_state, 60 * HZ, 5);
140
141/*
142 * General purpose unified implementation of kmem_alloc(). It is an
143 * amalgamation of Linux and Illumos allocator design. It should never be
144 * exported to ensure that code using kmem_alloc()/kmem_zalloc() remains
145 * relatively portable. Consumers may only access this function through
146 * wrappers that enforce the common flags to ensure portability.
147 */
148inline void *
149spl_kmem_alloc_impl(size_t size, int flags, int node)
150{
151 gfp_t lflags = kmem_flags_convert(flags);
152 int use_vmem = 0;
153 void *ptr;
154
155 /*
156 * Log abnormally large allocations and rate limit the console output.
157 * Allocations larger than spl_kmem_alloc_warn should be performed
158 * through the vmem_alloc()/vmem_zalloc() interfaces.
159 */
160 if ((spl_kmem_alloc_warn > 0) && (size > spl_kmem_alloc_warn) &&
161 !(flags & KM_VMEM) && __ratelimit(&kmem_alloc_ratelimit_state)) {
162 printk(KERN_WARNING
163 "Large kmem_alloc(%lu, 0x%x), please file an issue at:\n"
164 "https://github.com/zfsonlinux/zfs/issues/new\n",
165 (unsigned long)size, flags);
166 dump_stack();
167 }
168
169 /*
170 * Use a loop because kmalloc_node() can fail when GFP_KERNEL is used
171 * unlike kmem_alloc() with KM_SLEEP on Illumos.
172 */
173 do {
174 /*
175 * Calling kmalloc_node() when the size >= spl_kmem_alloc_max
176 * is unsafe. This must fail for all for kmem_alloc() and
177 * kmem_zalloc() callers.
178 *
179 * For vmem_alloc() and vmem_zalloc() callers it is permissible
180 * to use __vmalloc(). However, in general use of __vmalloc()
181 * is strongly discouraged because a global lock must be
182 * acquired. Contention on this lock can significantly
183 * impact performance so frequently manipulating the virtual
184 * address space is strongly discouraged.
185 */
186 if ((size > spl_kmem_alloc_max) || use_vmem) {
187 if (flags & KM_VMEM) {
879bbbc7 188 ptr = __vmalloc(size, lflags, PAGE_KERNEL);
10946b02
AX
189 } else {
190 return (NULL);
191 }
192 } else {
193 ptr = kmalloc_node(size, lflags, node);
194 }
195
196 if (likely(ptr) || (flags & KM_NOSLEEP))
197 return (ptr);
198
199 /*
200 * For vmem_alloc() and vmem_zalloc() callers retry immediately
879bbbc7 201 * using __vmalloc() which is unlikely to fail.
10946b02
AX
202 */
203 if ((flags & KM_VMEM) && (use_vmem == 0)) {
204 use_vmem = 1;
205 continue;
206 }
207
208 if (unlikely(__ratelimit(&kmem_alloc_ratelimit_state))) {
209 printk(KERN_WARNING
210 "Possible memory allocation deadlock: "
211 "size=%lu lflags=0x%x",
212 (unsigned long)size, lflags);
213 dump_stack();
214 }
215
216 /*
217 * Use cond_resched() instead of congestion_wait() to avoid
218 * deadlocking systems where there are no block devices.
219 */
220 cond_resched();
221 } while (1);
222
223 return (NULL);
224}
225
226inline void
227spl_kmem_free_impl(const void *buf, size_t size)
228{
229 if (is_vmalloc_addr(buf))
230 vfree(buf);
231 else
232 kfree(buf);
233}
234
235/*
236 * Memory allocation and accounting for kmem_* * style allocations. When
237 * DEBUG_KMEM is enabled the total memory allocated will be tracked and
238 * any memory leaked will be reported during module unload.
239 *
240 * ./configure --enable-debug-kmem
f1ca4da6 241 */
242#ifdef DEBUG_KMEM
d04c8a56 243
f1ca4da6 244/* Shim layer memory accounting */
10946b02 245#ifdef HAVE_ATOMIC64_T
550f1705 246atomic64_t kmem_alloc_used = ATOMIC64_INIT(0);
a0f6da3d 247unsigned long long kmem_alloc_max = 0;
10946b02 248#else /* HAVE_ATOMIC64_T */
d04c8a56
BB
249atomic_t kmem_alloc_used = ATOMIC_INIT(0);
250unsigned long long kmem_alloc_max = 0;
10946b02 251#endif /* HAVE_ATOMIC64_T */
79b31f36 252
ff449ac4 253EXPORT_SYMBOL(kmem_alloc_used);
254EXPORT_SYMBOL(kmem_alloc_max);
ff449ac4 255
10946b02
AX
256inline void *
257spl_kmem_alloc_debug(size_t size, int flags, int node)
258{
259 void *ptr;
260
261 ptr = spl_kmem_alloc_impl(size, flags, node);
262 if (ptr) {
263 kmem_alloc_used_add(size);
264 if (unlikely(kmem_alloc_used_read() > kmem_alloc_max))
265 kmem_alloc_max = kmem_alloc_used_read();
266 }
267
268 return (ptr);
269}
270
271inline void
272spl_kmem_free_debug(const void *ptr, size_t size)
273{
274 kmem_alloc_used_sub(size);
275 spl_kmem_free_impl(ptr, size);
276}
277
278/*
279 * When DEBUG_KMEM_TRACKING is enabled not only will total bytes be tracked
055ffd98
BB
280 * but also the location of every alloc and free. When the SPL module is
281 * unloaded a list of all leaked addresses and where they were allocated
282 * will be dumped to the console. Enabling this feature has a significant
283 * impact on performance but it makes finding memory leaks straight forward.
284 *
285 * Not surprisingly with debugging enabled the xmem_locks are very highly
286 * contended particularly on xfree(). If we want to run with this detailed
287 * debugging enabled for anything other than debugging we need to minimize
288 * the contention by moving to a lock per xmem_table entry model.
10946b02
AX
289 *
290 * ./configure --enable-debug-kmem-tracking
a0f6da3d 291 */
10946b02 292#ifdef DEBUG_KMEM_TRACKING
a0f6da3d 293
10946b02
AX
294#include <linux/hash.h>
295#include <linux/ctype.h>
a0f6da3d 296
10946b02
AX
297#define KMEM_HASH_BITS 10
298#define KMEM_TABLE_SIZE (1 << KMEM_HASH_BITS)
a0f6da3d 299
300typedef struct kmem_debug {
10946b02
AX
301 struct hlist_node kd_hlist; /* Hash node linkage */
302 struct list_head kd_list; /* List of all allocations */
303 void *kd_addr; /* Allocation pointer */
304 size_t kd_size; /* Allocation size */
305 const char *kd_func; /* Allocation function */
306 int kd_line; /* Allocation line */
a0f6da3d 307} kmem_debug_t;
308
10946b02
AX
309static spinlock_t kmem_lock;
310static struct hlist_head kmem_table[KMEM_TABLE_SIZE];
311static struct list_head kmem_list;
a0f6da3d 312
313static kmem_debug_t *
10946b02
AX
314kmem_del_init(spinlock_t *lock, struct hlist_head *table,
315 int bits, const void *addr)
a0f6da3d 316{
317 struct hlist_head *head;
318 struct hlist_node *node;
319 struct kmem_debug *p;
320 unsigned long flags;
a0f6da3d 321
322 spin_lock_irqsave(lock, flags);
323
80093b6f
AX
324 head = &table[hash_ptr((void *)addr, bits)];
325 hlist_for_each(node, head) {
326 p = list_entry(node, struct kmem_debug, kd_hlist);
a0f6da3d 327 if (p->kd_addr == addr) {
328 hlist_del_init(&p->kd_hlist);
329 list_del_init(&p->kd_list);
330 spin_unlock_irqrestore(lock, flags);
10946b02 331 return (p);
a0f6da3d 332 }
333 }
334
335 spin_unlock_irqrestore(lock, flags);
336
10946b02 337 return (NULL);
a0f6da3d 338}
339
10946b02
AX
340inline void *
341spl_kmem_alloc_track(size_t size, int flags,
342 const char *func, int line, int node)
a0f6da3d 343{
344 void *ptr = NULL;
345 kmem_debug_t *dptr;
346 unsigned long irq_flags;
c8e60837 347
10946b02
AX
348 dptr = kmalloc(sizeof (kmem_debug_t), kmem_flags_convert(flags));
349 if (dptr == NULL)
350 return (NULL);
a0f6da3d 351
10946b02
AX
352 dptr->kd_func = __strdup(func, flags);
353 if (dptr->kd_func == NULL) {
354 kfree(dptr);
355 return (NULL);
356 }
a0f6da3d 357
10946b02
AX
358 ptr = spl_kmem_alloc_debug(size, flags, node);
359 if (ptr == NULL) {
360 kfree(dptr->kd_func);
361 kfree(dptr);
362 return (NULL);
363 }
a0f6da3d 364
10946b02
AX
365 INIT_HLIST_NODE(&dptr->kd_hlist);
366 INIT_LIST_HEAD(&dptr->kd_list);
a0f6da3d 367
10946b02
AX
368 dptr->kd_addr = ptr;
369 dptr->kd_size = size;
370 dptr->kd_line = line;
a0f6da3d 371
10946b02
AX
372 spin_lock_irqsave(&kmem_lock, irq_flags);
373 hlist_add_head(&dptr->kd_hlist,
374 &kmem_table[hash_ptr(ptr, KMEM_HASH_BITS)]);
375 list_add_tail(&dptr->kd_list, &kmem_list);
376 spin_unlock_irqrestore(&kmem_lock, irq_flags);
a0f6da3d 377
10946b02 378 return (ptr);
a0f6da3d 379}
a0f6da3d 380
10946b02
AX
381inline void
382spl_kmem_free_track(const void *ptr, size_t size)
a0f6da3d 383{
384 kmem_debug_t *dptr;
a0f6da3d 385
0f836a62
AX
386 /* Ignore NULL pointer since we haven't tracked it at all*/
387 if (ptr == NULL)
388 return;
389
10129680 390 /* Must exist in hash due to kmem_alloc() */
10946b02
AX
391 dptr = kmem_del_init(&kmem_lock, kmem_table, KMEM_HASH_BITS, ptr);
392 ASSERT3P(dptr, !=, NULL);
393 ASSERT3S(dptr->kd_size, ==, size);
a0f6da3d 394
c8e60837 395 kfree(dptr->kd_func);
a0f6da3d 396 kfree(dptr);
397
10946b02 398 spl_kmem_free_debug(ptr, size);
a0f6da3d 399}
10946b02
AX
400#endif /* DEBUG_KMEM_TRACKING */
401#endif /* DEBUG_KMEM */
a0f6da3d 402
10946b02
AX
403/*
404 * Public kmem_alloc(), kmem_zalloc() and kmem_free() interfaces.
405 */
a0f6da3d 406void *
10946b02 407spl_kmem_alloc(size_t size, int flags, const char *func, int line)
a0f6da3d 408{
10946b02 409 ASSERT0(flags & ~KM_PUBLIC_MASK);
a0f6da3d 410
10946b02
AX
411#if !defined(DEBUG_KMEM)
412 return (spl_kmem_alloc_impl(size, flags, NUMA_NO_NODE));
413#elif !defined(DEBUG_KMEM_TRACKING)
414 return (spl_kmem_alloc_debug(size, flags, NUMA_NO_NODE));
415#else
416 return (spl_kmem_alloc_track(size, flags, func, line, NUMA_NO_NODE));
417#endif
418}
419EXPORT_SYMBOL(spl_kmem_alloc);
a0f6da3d 420
10946b02
AX
421void *
422spl_kmem_zalloc(size_t size, int flags, const char *func, int line)
423{
424 ASSERT0(flags & ~KM_PUBLIC_MASK);
a0f6da3d 425
10946b02 426 flags |= KM_ZERO;
a0f6da3d 427
10946b02
AX
428#if !defined(DEBUG_KMEM)
429 return (spl_kmem_alloc_impl(size, flags, NUMA_NO_NODE));
430#elif !defined(DEBUG_KMEM_TRACKING)
431 return (spl_kmem_alloc_debug(size, flags, NUMA_NO_NODE));
432#else
433 return (spl_kmem_alloc_track(size, flags, func, line, NUMA_NO_NODE));
434#endif
a0f6da3d 435}
10946b02 436EXPORT_SYMBOL(spl_kmem_zalloc);
a0f6da3d 437
438void
10946b02 439spl_kmem_free(const void *buf, size_t size)
a0f6da3d 440{
10946b02
AX
441#if !defined(DEBUG_KMEM)
442 return (spl_kmem_free_impl(buf, size));
443#elif !defined(DEBUG_KMEM_TRACKING)
444 return (spl_kmem_free_debug(buf, size));
445#else
446 return (spl_kmem_free_track(buf, size));
447#endif
a0f6da3d 448}
10946b02 449EXPORT_SYMBOL(spl_kmem_free);
a0f6da3d 450
10946b02
AX
451#if defined(DEBUG_KMEM) && defined(DEBUG_KMEM_TRACKING)
452static char *
453spl_sprintf_addr(kmem_debug_t *kd, char *str, int len, int min)
a0f6da3d 454{
10946b02
AX
455 int size = ((len - 1) < kd->kd_size) ? (len - 1) : kd->kd_size;
456 int i, flag = 1;
457
458 ASSERT(str != NULL && len >= 17);
459 memset(str, 0, len);
a0f6da3d 460
10129680 461 /*
10946b02
AX
462 * Check for a fully printable string, and while we are at
463 * it place the printable characters in the passed buffer.
10129680 464 */
10946b02
AX
465 for (i = 0; i < size; i++) {
466 str[i] = ((char *)(kd->kd_addr))[i];
467 if (isprint(str[i])) {
468 continue;
469 } else {
470 /*
471 * Minimum number of printable characters found
472 * to make it worthwhile to print this as ascii.
473 */
474 if (i > min)
475 break;
a0f6da3d 476
10946b02
AX
477 flag = 0;
478 break;
479 }
a0f6da3d 480 }
481
10946b02
AX
482 if (!flag) {
483 sprintf(str, "%02x%02x%02x%02x%02x%02x%02x%02x",
484 *((uint8_t *)kd->kd_addr),
485 *((uint8_t *)kd->kd_addr + 2),
486 *((uint8_t *)kd->kd_addr + 4),
487 *((uint8_t *)kd->kd_addr + 6),
488 *((uint8_t *)kd->kd_addr + 8),
489 *((uint8_t *)kd->kd_addr + 10),
490 *((uint8_t *)kd->kd_addr + 12),
491 *((uint8_t *)kd->kd_addr + 14));
a0f6da3d 492 }
10129680 493
10946b02 494 return (str);
a0f6da3d 495}
a0f6da3d 496
10946b02
AX
497static int
498spl_kmem_init_tracking(struct list_head *list, spinlock_t *lock, int size)
a0f6da3d 499{
10946b02 500 int i;
a0f6da3d 501
10946b02
AX
502 spin_lock_init(lock);
503 INIT_LIST_HEAD(list);
a0f6da3d 504
10946b02
AX
505 for (i = 0; i < size; i++)
506 INIT_HLIST_HEAD(&kmem_table[i]);
a0f6da3d 507
10946b02 508 return (0);
a0f6da3d 509}
a0f6da3d 510
10946b02
AX
511static void
512spl_kmem_fini_tracking(struct list_head *list, spinlock_t *lock)
a0f6da3d 513{
10946b02
AX
514 unsigned long flags;
515 kmem_debug_t *kd;
516 char str[17];
a0f6da3d 517
10946b02
AX
518 spin_lock_irqsave(lock, flags);
519 if (!list_empty(list))
520 printk(KERN_WARNING "%-16s %-5s %-16s %s:%s\n", "address",
521 "size", "data", "func", "line");
10129680 522
10946b02
AX
523 list_for_each_entry(kd, list, kd_list)
524 printk(KERN_WARNING "%p %-5d %-16s %s:%d\n", kd->kd_addr,
525 (int)kd->kd_size, spl_sprintf_addr(kd, str, 17, 8),
526 kd->kd_func, kd->kd_line);
a0f6da3d 527
10946b02 528 spin_unlock_irqrestore(lock, flags);
a0f6da3d 529}
10946b02 530#endif /* DEBUG_KMEM && DEBUG_KMEM_TRACKING */
a0f6da3d 531
10946b02
AX
532int
533spl_kmem_init(void)
a0f6da3d 534{
10946b02
AX
535#ifdef DEBUG_KMEM
536 kmem_alloc_used_set(0);
a0f6da3d 537
10946b02
AX
538#ifdef DEBUG_KMEM_TRACKING
539 spl_kmem_init_tracking(&kmem_list, &kmem_lock, KMEM_TABLE_SIZE);
540#endif /* DEBUG_KMEM_TRACKING */
541#endif /* DEBUG_KMEM */
a0f6da3d 542
10946b02 543 return (0);
a1502d76 544}
545
ff449ac4 546void
547spl_kmem_fini(void)
548{
549#ifdef DEBUG_KMEM
10946b02
AX
550 /*
551 * Display all unreclaimed memory addresses, including the
ff449ac4 552 * allocation size and the first few bytes of what's located
553 * at that address to aid in debugging. Performance is not
10946b02
AX
554 * a serious concern here since it is module unload time.
555 */
d04c8a56 556 if (kmem_alloc_used_read() != 0)
10946b02
AX
557 printk(KERN_WARNING "kmem leaked %ld/%llu bytes\n",
558 (unsigned long)kmem_alloc_used_read(), kmem_alloc_max);
2fb9b26a 559
10946b02 560#ifdef DEBUG_KMEM_TRACKING
ff449ac4 561 spl_kmem_fini_tracking(&kmem_list, &kmem_lock);
10946b02 562#endif /* DEBUG_KMEM_TRACKING */
ff449ac4 563#endif /* DEBUG_KMEM */
5d86345d 564}