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
|
/*
* Copyright (C) 2006 Giridhar Pemmasani
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#define _WRAPMEM_C_
#include "ntoskernel.h"
struct slack_alloc_info {
struct nt_list list;
size_t size;
};
static struct nt_list allocs;
static struct nt_list slack_allocs;
static NT_SPIN_LOCK alloc_lock;
#if defined(ALLOC_DEBUG)
struct alloc_info {
enum alloc_type type;
size_t size;
#if ALLOC_DEBUG > 1
struct nt_list list;
const char *file;
int line;
#if ALLOC_DEBUG > 2
ULONG tag;
#endif
#endif
};
static atomic_t alloc_sizes[ALLOC_TYPE_MAX];
#endif
int wrapmem_init(void)
{
InitializeListHead(&allocs);
InitializeListHead(&slack_allocs);
nt_spin_lock_init(&alloc_lock);
return 0;
}
void wrapmem_exit(void)
{
enum alloc_type type;
struct nt_list *ent;
/* free all pointers on the slack list */
nt_spin_lock(&alloc_lock);
while ((ent = RemoveHeadList(&slack_allocs))) {
struct slack_alloc_info *info;
info = container_of(ent, struct slack_alloc_info, list);
#ifdef ALLOC_DEBUG
atomic_sub(info->size, &alloc_sizes[ALLOC_TYPE_SLACK]);
#endif
kfree(info);
}
nt_spin_unlock(&alloc_lock);
type = 0;
#ifdef ALLOC_DEBUG
for (type = 0; type < ALLOC_TYPE_MAX; type++) {
int n = atomic_read(&alloc_sizes[type]);
if (n)
WARNING("%d bytes of memory in %d leaking", n, type);
}
#if ALLOC_DEBUG > 1
nt_spin_lock(&alloc_lock);
while ((ent = RemoveHeadList(&allocs))) {
struct alloc_info *info;
info = container_of(ent, struct alloc_info, list);
atomic_sub(info->size, &alloc_sizes[ALLOC_TYPE_SLACK]);
WARNING("memory in %d of size %lu allocated at %s(%d) "
#if ALLOC_DEBUG > 2
"with tag 0x%08X "
#endif
"leaking; freeing it now", info->type, info->size,
info->file, info->line
#if ALLOC_DEBUG > 2
, info->tag
#endif
);
if (info->type == ALLOC_TYPE_ATOMIC ||
info->type == ALLOC_TYPE_NON_ATOMIC)
kfree(info);
else if (info->type == ALLOC_TYPE_VMALLOC)
vfree(info);
else
WARNING("invalid type: %d; not freed", info->type);
}
nt_spin_unlock(&alloc_lock);
#endif
#endif
return;
}
void wrapmem_info(void)
{
#ifdef ALLOC_DEBUG
enum alloc_type type;
for (type = 0; type < ALLOC_TYPE_MAX; type++)
INFO("total size of allocations in %d: %d",
type, atomic_read(&alloc_sizes[type]));
#endif
}
/* allocate memory and add it to list of allocated pointers; if a
* driver doesn't free this memory for any reason (buggy driver or we
* allocate space behind driver's back since we need more space than
* corresponding Windows structure provides etc.), this gets freed
* automatically when module is unloaded
*/
void *slack_kmalloc(size_t size)
{
struct slack_alloc_info *info;
unsigned int flags, n;
void *ptr;
TRACEENTER4("size = %lu", (unsigned long)size);
if (current_irql() < DISPATCH_LEVEL)
flags = GFP_KERNEL;
else
flags = GFP_ATOMIC;
n = size + sizeof(*info);
info = kmalloc(n, flags);
if (!info)
return NULL;
info->size = size;
ptr = info + 1;
nt_spin_lock(&alloc_lock);
InsertTailList(&slack_allocs, &info->list);
nt_spin_unlock(&alloc_lock);
#ifdef ALLOC_DEBUG
atomic_add(size, &alloc_sizes[ALLOC_TYPE_SLACK]);
#endif
DBGTRACE4("%p, %p", info, ptr);
TRACEEXIT4(return ptr);
}
/* free pointer and remove from list of allocated pointers */
void slack_kfree(void *ptr)
{
struct slack_alloc_info *info;
TRACEENTER4("%p", ptr);
info = ptr - sizeof(*info);
nt_spin_lock(&alloc_lock);
RemoveEntryList(&info->list);
nt_spin_unlock(&alloc_lock);
#ifdef ALLOC_DEBUG
atomic_sub(info->size, &alloc_sizes[ALLOC_TYPE_SLACK]);
#endif
kfree(info);
TRACEEXIT4(return);
}
#if defined(ALLOC_DEBUG)
void *wrap_kmalloc(size_t size, unsigned flags, const char *file, int line)
{
struct alloc_info *info;
info = kmalloc(size + sizeof(*info), flags);
if (!info)
return NULL;
if (flags & GFP_ATOMIC)
info->type = ALLOC_TYPE_ATOMIC;
else
info->type = ALLOC_TYPE_NON_ATOMIC;
info->size = size;
atomic_add(size, &alloc_sizes[info->type]);
#if ALLOC_DEBUG > 1
info->file = file;
info->line = line;
#if ALLOC_DEBUG > 2
info->tag = 0;
#endif
nt_spin_lock(&alloc_lock);
InsertTailList(&allocs, &info->list);
nt_spin_unlock(&alloc_lock);
#endif
return (info + 1);
}
void wrap_kfree(void *ptr)
{
struct alloc_info *info;
info = ptr - sizeof(*info);
atomic_sub(info->size, &alloc_sizes[info->type]);
#if ALLOC_DEBUG > 1
nt_spin_lock(&alloc_lock);
RemoveEntryList(&info->list);
nt_spin_unlock(&alloc_lock);
if (!(info->type == ALLOC_TYPE_ATOMIC ||
info->type == ALLOC_TYPE_NON_ATOMIC))
WARNING("invliad type: %d", info->type);
#endif
kfree(info);
}
void *wrap_vmalloc(unsigned long size, const char *file, int line)
{
struct alloc_info *info;
info = vmalloc(size + sizeof(*info));
if (!info)
return NULL;
info->type = ALLOC_TYPE_VMALLOC;
info->size = size;
atomic_add(size, &alloc_sizes[info->type]);
#if ALLOC_DEBUG > 1
info->file = file;
info->line = line;
#if ALLOC_DEBUG > 2
info->tag = 0;
#endif
nt_spin_lock(&alloc_lock);
InsertTailList(&allocs, &info->list);
nt_spin_unlock(&alloc_lock);
#endif
return (info + 1);
}
void *wrap__vmalloc(unsigned long size, unsigned int gfp_mask, pgprot_t prot,
const char *file, int line)
{
struct alloc_info *info;
info = __vmalloc(size + sizeof(*info), gfp_mask, prot);
if (!info)
return NULL;
info->type = ALLOC_TYPE_VMALLOC;
info->size = size;
atomic_add(size, &alloc_sizes[info->type]);
#if ALLOC_DEBUG > 1
info->file = file;
info->line = line;
#if ALLOC_DEBUG > 2
info->tag = 0;
#endif
nt_spin_lock(&alloc_lock);
InsertTailList(&allocs, &info->list);
nt_spin_unlock(&alloc_lock);
#endif
return (info + 1);
}
void wrap_vfree(void *ptr)
{
struct alloc_info *info;
info = ptr - sizeof(*info);
atomic_sub(info->size, &alloc_sizes[info->type]);
#if ALLOC_DEBUG > 1
nt_spin_lock(&alloc_lock);
RemoveEntryList(&info->list);
nt_spin_unlock(&alloc_lock);
if (info->type != ALLOC_TYPE_VMALLOC)
WARNING("invliad type: %d", info->type);
#endif
vfree(info);
}
#if ALLOC_DEBUG > 1
void *wrap_ExAllocatePoolWithTag(enum pool_type pool_type, SIZE_T size,
ULONG tag, const char *file, int line)
{
void *addr;
no_warn_unused struct alloc_info *info;
TRACEENTER4("pool_type: %d, size: %lu, tag: %u", pool_type,
size, tag);
if (size <= KMALLOC_THRESHOLD) {
if (current_irql() < DISPATCH_LEVEL)
addr = wrap_kmalloc(size, GFP_KERNEL, file, line);
else
addr = wrap_kmalloc(size, GFP_ATOMIC, file, line);
} else {
if (current_irql() < DISPATCH_LEVEL)
addr = wrap_vmalloc(size, file, line);
else
addr = wrap__vmalloc(size, GFP_ATOMIC | __GFP_HIGHMEM,
PAGE_KERNEL, file, line);
}
#if ALLOC_DEBUG > 2
info = addr - sizeof(*info);
info->tag = tag;
#endif
TRACEEXIT4(return addr);
}
#endif
int alloc_size(enum alloc_type type)
{
if (type >= 0 && type < ALLOC_TYPE_MAX)
return atomic_read(&alloc_sizes[type]);
else
return -EINVAL;
}
#endif // ALLOC_DEBUG
|