1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
/*******************************************************************************
Copyright (c) 2016-2020 NVIDIA Corporation
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*******************************************************************************/
#include "uvm_common.h"
#include "uvm_linux.h"
#include "uvm_global.h"
#include "uvm_kvmalloc.h"
#include "uvm_rb_tree.h"
// To implement realloc for vmalloc-based allocations we need to track the size
// of the original allocation. We can do that by allocating a header along with
// the allocation itself. Since vmalloc is only used for relatively large
// allocations, this overhead is very small.
//
// We don't need this for kmalloc since we can use ksize().
typedef struct
{
size_t alloc_size;
uint8_t ptr[];
} uvm_vmalloc_hdr_t;
typedef struct
{
const char *file;
const char *function;
int line;
uvm_rb_tree_node_t node;
} uvm_kvmalloc_info_t;
typedef enum
{
UVM_KVMALLOC_LEAK_CHECK_NONE = 0,
UVM_KVMALLOC_LEAK_CHECK_BYTES,
UVM_KVMALLOC_LEAK_CHECK_ORIGIN,
UVM_KVMALLOC_LEAK_CHECK_COUNT
} uvm_kvmalloc_leak_check_t;
// This is used just to make sure that the APIs aren't used outside of
// uvm_kvmalloc_init/uvm_kvmalloc_exit. The memory allocation would still work
// fine, but the leak checker would get confused.
static bool g_malloc_initialized = false;
static struct
{
// Current outstanding bytes allocated
atomic_long_t bytes_allocated;
// Number of allocations made which failed their info allocations. Used just
// for sanity checks.
atomic_long_t untracked_allocations;
// Use a raw spinlock rather than a uvm_spinlock_t because the kvmalloc
// layer is initialized and torn down before the thread context layer.
spinlock_t lock;
// Table of all outstanding allocations
uvm_rb_tree_t allocation_info;
struct kmem_cache *info_cache;
} g_uvm_leak_checker;
// Default to byte-count-only leak checking for non-release builds. This can
// always be overridden by the module parameter.
static int uvm_leak_checker = (UVM_IS_DEBUG() || UVM_IS_DEVELOP()) ?
UVM_KVMALLOC_LEAK_CHECK_BYTES :
UVM_KVMALLOC_LEAK_CHECK_NONE;
module_param(uvm_leak_checker, int, S_IRUGO);
MODULE_PARM_DESC(uvm_leak_checker,
"Enable uvm memory leak checking. "
"0 = disabled, 1 = count total bytes allocated and freed, 2 = per-allocation origin tracking.");
NV_STATUS uvm_kvmalloc_init(void)
{
if (uvm_leak_checker >= UVM_KVMALLOC_LEAK_CHECK_ORIGIN) {
spin_lock_init(&g_uvm_leak_checker.lock);
uvm_rb_tree_init(&g_uvm_leak_checker.allocation_info);
g_uvm_leak_checker.info_cache = NV_KMEM_CACHE_CREATE("uvm_kvmalloc_info_t", uvm_kvmalloc_info_t);
if (!g_uvm_leak_checker.info_cache)
return NV_ERR_NO_MEMORY;
}
g_malloc_initialized = true;
return NV_OK;
}
void uvm_kvmalloc_exit(void)
{
if (!g_malloc_initialized)
return;
if (atomic_long_read(&g_uvm_leak_checker.bytes_allocated) > 0) {
printk(KERN_ERR NVIDIA_UVM_PRETTY_PRINTING_PREFIX "!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
printk(KERN_ERR NVIDIA_UVM_PRETTY_PRINTING_PREFIX "Memory leak of %lu bytes detected.%s\n",
atomic_long_read(&g_uvm_leak_checker.bytes_allocated),
uvm_leak_checker < UVM_KVMALLOC_LEAK_CHECK_ORIGIN ?
" insmod with uvm_leak_checker=2 for detailed information." :
"");
printk(KERN_ERR NVIDIA_UVM_PRETTY_PRINTING_PREFIX "!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
if (g_uvm_global.unload_state.ptr)
*g_uvm_global.unload_state.ptr |= UVM_TEST_UNLOAD_STATE_MEMORY_LEAK;
}
if (uvm_leak_checker >= UVM_KVMALLOC_LEAK_CHECK_ORIGIN) {
uvm_rb_tree_node_t *node, *next;
uvm_rb_tree_for_each_safe(node, next, &g_uvm_leak_checker.allocation_info) {
uvm_kvmalloc_info_t *info = container_of(node, uvm_kvmalloc_info_t, node);
printk(KERN_ERR NVIDIA_UVM_PRETTY_PRINTING_PREFIX " Leaked %zu bytes from %s:%d:%s (0x%llx)\n",
uvm_kvsize((void *)((uintptr_t)info->node.key)),
kbasename(info->file),
info->line,
info->function,
info->node.key);
// Free so we don't keep eating up memory while debugging. Note that
// this also removes the entry from the table, frees info, and drops
// the allocated bytes count.
uvm_kvfree((void *)((uintptr_t)info->node.key));
}
if (atomic_long_read(&g_uvm_leak_checker.untracked_allocations) == 0)
UVM_ASSERT(atomic_long_read(&g_uvm_leak_checker.bytes_allocated) == 0);
kmem_cache_destroy_safe(&g_uvm_leak_checker.info_cache);
}
g_malloc_initialized = false;
}
static void insert_info(uvm_kvmalloc_info_t *info)
{
NV_STATUS status;
unsigned long irq_flags;
spin_lock_irqsave(&g_uvm_leak_checker.lock, irq_flags);
status = uvm_rb_tree_insert(&g_uvm_leak_checker.allocation_info, &info->node);
spin_unlock_irqrestore(&g_uvm_leak_checker.lock, irq_flags);
// We shouldn't have duplicates
UVM_ASSERT(status == NV_OK);
}
static uvm_kvmalloc_info_t *remove_info(void *p)
{
uvm_rb_tree_node_t *node;
uvm_kvmalloc_info_t *info = NULL;
unsigned long irq_flags;
spin_lock_irqsave(&g_uvm_leak_checker.lock, irq_flags);
node = uvm_rb_tree_find(&g_uvm_leak_checker.allocation_info, (NvU64)p);
if (node)
uvm_rb_tree_remove(&g_uvm_leak_checker.allocation_info, node);
spin_unlock_irqrestore(&g_uvm_leak_checker.lock, irq_flags);
if (!node) {
UVM_ASSERT(atomic_long_read(&g_uvm_leak_checker.untracked_allocations) > 0);
atomic_long_dec(&g_uvm_leak_checker.untracked_allocations);
}
else {
info = container_of(node, uvm_kvmalloc_info_t, node);
UVM_ASSERT(info->node.key == (NvU64)((uintptr_t)p));
}
return info;
}
static void alloc_tracking_add(void *p, const char *file, int line, const char *function)
{
// Add uvm_kvsize(p) instead of size because uvm_kvsize might be larger (due
// to ksize), and uvm_kvfree only knows about uvm_kvsize
size_t size = uvm_kvsize(p);
uvm_kvmalloc_info_t *info;
UVM_ASSERT(g_malloc_initialized);
if (ZERO_OR_NULL_PTR(p))
return;
atomic_long_add(size, &g_uvm_leak_checker.bytes_allocated);
if (uvm_leak_checker >= UVM_KVMALLOC_LEAK_CHECK_ORIGIN) {
// Silently ignore OOM errors
info = nv_kmem_cache_zalloc(g_uvm_leak_checker.info_cache, NV_UVM_GFP_FLAGS);
if (!info) {
atomic_long_inc(&g_uvm_leak_checker.untracked_allocations);
return;
}
info->node.key = (NvU64)p;
info->file = file;
info->function = function;
info->line = line;
insert_info(info);
}
}
static void alloc_tracking_remove(void *p)
{
size_t size = uvm_kvsize(p);
uvm_kvmalloc_info_t *info;
UVM_ASSERT(g_malloc_initialized);
if (ZERO_OR_NULL_PTR(p))
return;
atomic_long_sub(size, &g_uvm_leak_checker.bytes_allocated);
if (uvm_leak_checker >= UVM_KVMALLOC_LEAK_CHECK_ORIGIN) {
info = remove_info(p);
if (info)
kmem_cache_free(g_uvm_leak_checker.info_cache, info);
}
}
static uvm_vmalloc_hdr_t *get_hdr(void *p)
{
uvm_vmalloc_hdr_t *hdr;
UVM_ASSERT(is_vmalloc_addr(p));
hdr = container_of(p, uvm_vmalloc_hdr_t, ptr);
UVM_ASSERT(hdr->alloc_size > UVM_KMALLOC_THRESHOLD);
return hdr;
}
static void *alloc_internal(size_t size, bool zero_memory)
{
uvm_vmalloc_hdr_t *hdr;
// Make sure that the allocation pointer is suitably-aligned for a natively-
// sized allocation.
BUILD_BUG_ON(offsetof(uvm_vmalloc_hdr_t, ptr) != sizeof(void *));
// Make sure that (sizeof(hdr) + size) is what it should be
BUILD_BUG_ON(sizeof(uvm_vmalloc_hdr_t) != offsetof(uvm_vmalloc_hdr_t, ptr));
if (size <= UVM_KMALLOC_THRESHOLD) {
if (zero_memory)
return kzalloc(size, NV_UVM_GFP_FLAGS);
return kmalloc(size, NV_UVM_GFP_FLAGS);
}
if (zero_memory)
hdr = vzalloc(sizeof(*hdr) + size);
else
hdr = vmalloc(sizeof(*hdr) + size);
if (!hdr)
return NULL;
hdr->alloc_size = size;
return hdr->ptr;
}
void *__uvm_kvmalloc(size_t size, const char *file, int line, const char *function)
{
void *p = alloc_internal(size, false);
if (uvm_leak_checker && p)
alloc_tracking_add(p, file, line, function);
return p;
}
void *__uvm_kvmalloc_zero(size_t size, const char *file, int line, const char *function)
{
void *p = alloc_internal(size, true);
if (uvm_leak_checker && p)
alloc_tracking_add(p, file, line, function);
return p;
}
void uvm_kvfree(void *p)
{
if (!p)
return;
if (uvm_leak_checker)
alloc_tracking_remove(p);
if (is_vmalloc_addr(p))
vfree(get_hdr(p));
else
kfree(p);
}
// Handle reallocs of kmalloc-based allocations
static void *realloc_from_kmalloc(void *p, size_t new_size)
{
void *new_p;
// Simple case: kmalloc -> kmalloc
if (new_size <= UVM_KMALLOC_THRESHOLD)
return krealloc(p, new_size, NV_UVM_GFP_FLAGS);
// kmalloc -> vmalloc
new_p = alloc_internal(new_size, false);
if (!new_p)
return NULL;
memcpy(new_p, p, min(ksize(p), new_size));
kfree(p);
return new_p;
}
// Handle reallocs of vmalloc-based allocations
static void *realloc_from_vmalloc(void *p, size_t new_size)
{
uvm_vmalloc_hdr_t *old_hdr = get_hdr(p);
void *new_p;
if (new_size == 0) {
vfree(old_hdr);
return ZERO_SIZE_PTR; // What krealloc returns for this case
}
if (new_size == old_hdr->alloc_size)
return p;
// vmalloc has no realloc functionality so we need to do a separate alloc +
// copy.
new_p = alloc_internal(new_size, false);
if (!new_p)
return NULL;
memcpy(new_p, p, min(new_size, old_hdr->alloc_size));
vfree(old_hdr);
return new_p;
}
void *__uvm_kvrealloc(void *p, size_t new_size, const char *file, int line, const char *function)
{
void *new_p;
uvm_kvmalloc_info_t *info = NULL;
size_t old_size;
if (ZERO_OR_NULL_PTR(p))
return __uvm_kvmalloc(new_size, file, line, function);
old_size = uvm_kvsize(p);
if (uvm_leak_checker) {
// new_size == 0 is a free, so just remove everything
if (new_size == 0) {
alloc_tracking_remove(p);
}
else {
// Remove the old pointer. If the realloc gives us a new pointer
// with the old one still in the tracking table, that pointer could
// be reallocated by another thread before we remove it from the
// table.
atomic_long_sub(old_size, &g_uvm_leak_checker.bytes_allocated);
if (uvm_leak_checker >= UVM_KVMALLOC_LEAK_CHECK_ORIGIN)
info = remove_info(p);
}
}
if (is_vmalloc_addr(p))
new_p = realloc_from_vmalloc(p, new_size);
else
new_p = realloc_from_kmalloc(p, new_size);
if (uvm_leak_checker) {
if (!new_p) {
// The realloc failed, so put the old info back
atomic_long_add(old_size, &g_uvm_leak_checker.bytes_allocated);
if (uvm_leak_checker >= UVM_KVMALLOC_LEAK_CHECK_ORIGIN && info)
insert_info(info);
}
else if (new_size != 0) {
// Drop the old info and insert the new
if (info)
kmem_cache_free(g_uvm_leak_checker.info_cache, info);
alloc_tracking_add(new_p, file, line, function);
}
}
return new_p;
}
size_t uvm_kvsize(void *p)
{
UVM_ASSERT(g_malloc_initialized);
UVM_ASSERT(p);
if (is_vmalloc_addr(p))
return get_hdr(p)->alloc_size;
return ksize(p);
}
|