| 1 | /*
|
|---|
| 2 | Samba Unix SMB/CIFS implementation.
|
|---|
| 3 |
|
|---|
| 4 | Samba trivial allocation library - new interface
|
|---|
| 5 |
|
|---|
| 6 | NOTE: Please read talloc_guide.txt for full documentation
|
|---|
| 7 |
|
|---|
| 8 | Copyright (C) Andrew Tridgell 2004
|
|---|
| 9 | Copyright (C) Stefan Metzmacher 2006
|
|---|
| 10 |
|
|---|
| 11 | ** NOTE! The following LGPL license applies to the talloc
|
|---|
| 12 | ** library. This does NOT imply that all of Samba is released
|
|---|
| 13 | ** under the LGPL
|
|---|
| 14 |
|
|---|
| 15 | This library is free software; you can redistribute it and/or
|
|---|
| 16 | modify it under the terms of the GNU Lesser General Public
|
|---|
| 17 | License as published by the Free Software Foundation; either
|
|---|
| 18 | version 3 of the License, or (at your option) any later version.
|
|---|
| 19 |
|
|---|
| 20 | This library is distributed in the hope that it will be useful,
|
|---|
| 21 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 22 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|---|
| 23 | Lesser General Public License for more details.
|
|---|
| 24 |
|
|---|
| 25 | You should have received a copy of the GNU Lesser General Public
|
|---|
| 26 | License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /*
|
|---|
| 30 | inspired by http://swapped.cc/halloc/
|
|---|
| 31 | */
|
|---|
| 32 |
|
|---|
| 33 | #include "replace.h"
|
|---|
| 34 | #include "talloc.h"
|
|---|
| 35 |
|
|---|
| 36 | #ifdef TALLOC_BUILD_VERSION_MAJOR
|
|---|
| 37 | #if (TALLOC_VERSION_MAJOR != TALLOC_BUILD_VERSION_MAJOR)
|
|---|
| 38 | #error "TALLOC_VERSION_MAJOR != TALLOC_BUILD_VERSION_MAJOR"
|
|---|
| 39 | #endif
|
|---|
| 40 | #endif
|
|---|
| 41 |
|
|---|
| 42 | #ifdef TALLOC_BUILD_VERSION_MINOR
|
|---|
| 43 | #if (TALLOC_VERSION_MINOR != TALLOC_BUILD_VERSION_MINOR)
|
|---|
| 44 | #error "TALLOC_VERSION_MINOR != TALLOC_BUILD_VERSION_MINOR"
|
|---|
| 45 | #endif
|
|---|
| 46 | #endif
|
|---|
| 47 |
|
|---|
| 48 | /* Special macros that are no-ops except when run under Valgrind on
|
|---|
| 49 | * x86. They've moved a little bit from valgrind 1.0.4 to 1.9.4 */
|
|---|
| 50 | #ifdef HAVE_VALGRIND_MEMCHECK_H
|
|---|
| 51 | /* memcheck.h includes valgrind.h */
|
|---|
| 52 | #include <valgrind/memcheck.h>
|
|---|
| 53 | #elif defined(HAVE_VALGRIND_H)
|
|---|
| 54 | #include <valgrind.h>
|
|---|
| 55 | #endif
|
|---|
| 56 |
|
|---|
| 57 | /* use this to force every realloc to change the pointer, to stress test
|
|---|
| 58 | code that might not cope */
|
|---|
| 59 | #define ALWAYS_REALLOC 0
|
|---|
| 60 |
|
|---|
| 61 |
|
|---|
| 62 | #define MAX_TALLOC_SIZE 0x10000000
|
|---|
| 63 | #define TALLOC_MAGIC_BASE 0xe814ec70
|
|---|
| 64 | #define TALLOC_MAGIC ( \
|
|---|
| 65 | TALLOC_MAGIC_BASE + \
|
|---|
| 66 | (TALLOC_VERSION_MAJOR << 12) + \
|
|---|
| 67 | (TALLOC_VERSION_MINOR << 4) \
|
|---|
| 68 | )
|
|---|
| 69 |
|
|---|
| 70 | #define TALLOC_FLAG_FREE 0x01
|
|---|
| 71 | #define TALLOC_FLAG_LOOP 0x02
|
|---|
| 72 | #define TALLOC_FLAG_POOL 0x04 /* This is a talloc pool */
|
|---|
| 73 | #define TALLOC_FLAG_POOLMEM 0x08 /* This is allocated in a pool */
|
|---|
| 74 | #define TALLOC_MAGIC_REFERENCE ((const char *)1)
|
|---|
| 75 |
|
|---|
| 76 | /* by default we abort when given a bad pointer (such as when talloc_free() is called
|
|---|
| 77 | on a pointer that came from malloc() */
|
|---|
| 78 | #ifndef TALLOC_ABORT
|
|---|
| 79 | #define TALLOC_ABORT(reason) abort()
|
|---|
| 80 | #endif
|
|---|
| 81 |
|
|---|
| 82 | #ifndef discard_const_p
|
|---|
| 83 | #if defined(__intptr_t_defined) || defined(HAVE_INTPTR_T)
|
|---|
| 84 | # define discard_const_p(type, ptr) ((type *)((intptr_t)(ptr)))
|
|---|
| 85 | #else
|
|---|
| 86 | # define discard_const_p(type, ptr) ((type *)(ptr))
|
|---|
| 87 | #endif
|
|---|
| 88 | #endif
|
|---|
| 89 |
|
|---|
| 90 | /* these macros gain us a few percent of speed on gcc */
|
|---|
| 91 | #if (__GNUC__ >= 3)
|
|---|
| 92 | /* the strange !! is to ensure that __builtin_expect() takes either 0 or 1
|
|---|
| 93 | as its first argument */
|
|---|
| 94 | #ifndef likely
|
|---|
| 95 | #define likely(x) __builtin_expect(!!(x), 1)
|
|---|
| 96 | #endif
|
|---|
| 97 | #ifndef unlikely
|
|---|
| 98 | #define unlikely(x) __builtin_expect(!!(x), 0)
|
|---|
| 99 | #endif
|
|---|
| 100 | #else
|
|---|
| 101 | #ifndef likely
|
|---|
| 102 | #define likely(x) (x)
|
|---|
| 103 | #endif
|
|---|
| 104 | #ifndef unlikely
|
|---|
| 105 | #define unlikely(x) (x)
|
|---|
| 106 | #endif
|
|---|
| 107 | #endif
|
|---|
| 108 |
|
|---|
| 109 | /* this null_context is only used if talloc_enable_leak_report() or
|
|---|
| 110 | talloc_enable_leak_report_full() is called, otherwise it remains
|
|---|
| 111 | NULL
|
|---|
| 112 | */
|
|---|
| 113 | static void *null_context;
|
|---|
| 114 | static void *autofree_context;
|
|---|
| 115 |
|
|---|
| 116 | /* used to enable fill of memory on free, which can be useful for
|
|---|
| 117 | * catching use after free errors when valgrind is too slow
|
|---|
| 118 | */
|
|---|
| 119 | static struct {
|
|---|
| 120 | bool initialised;
|
|---|
| 121 | bool enabled;
|
|---|
| 122 | uint8_t fill_value;
|
|---|
| 123 | } talloc_fill;
|
|---|
| 124 |
|
|---|
| 125 | #define TALLOC_FILL_ENV "TALLOC_FREE_FILL"
|
|---|
| 126 |
|
|---|
| 127 | /*
|
|---|
| 128 | * do not wipe the header, to allow the
|
|---|
| 129 | * double-free logic to still work
|
|---|
| 130 | */
|
|---|
| 131 | #define TC_INVALIDATE_FULL_FILL_CHUNK(_tc) do { \
|
|---|
| 132 | if (unlikely(talloc_fill.enabled)) { \
|
|---|
| 133 | size_t _flen = (_tc)->size; \
|
|---|
| 134 | char *_fptr = (char *)TC_PTR_FROM_CHUNK(_tc); \
|
|---|
| 135 | memset(_fptr, talloc_fill.fill_value, _flen); \
|
|---|
| 136 | } \
|
|---|
| 137 | } while (0)
|
|---|
| 138 |
|
|---|
| 139 | #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_NOACCESS)
|
|---|
| 140 | /* Mark the whole chunk as not accessable */
|
|---|
| 141 | #define TC_INVALIDATE_FULL_VALGRIND_CHUNK(_tc) do { \
|
|---|
| 142 | size_t _flen = TC_HDR_SIZE + (_tc)->size; \
|
|---|
| 143 | char *_fptr = (char *)(_tc); \
|
|---|
| 144 | VALGRIND_MAKE_MEM_NOACCESS(_fptr, _flen); \
|
|---|
| 145 | } while(0)
|
|---|
| 146 | #else
|
|---|
| 147 | #define TC_INVALIDATE_FULL_VALGRIND_CHUNK(_tc) do { } while (0)
|
|---|
| 148 | #endif
|
|---|
| 149 |
|
|---|
| 150 | #define TC_INVALIDATE_FULL_CHUNK(_tc) do { \
|
|---|
| 151 | TC_INVALIDATE_FULL_FILL_CHUNK(_tc); \
|
|---|
| 152 | TC_INVALIDATE_FULL_VALGRIND_CHUNK(_tc); \
|
|---|
| 153 | } while (0)
|
|---|
| 154 |
|
|---|
| 155 | #define TC_INVALIDATE_SHRINK_FILL_CHUNK(_tc, _new_size) do { \
|
|---|
| 156 | if (unlikely(talloc_fill.enabled)) { \
|
|---|
| 157 | size_t _flen = (_tc)->size - (_new_size); \
|
|---|
| 158 | char *_fptr = (char *)TC_PTR_FROM_CHUNK(_tc); \
|
|---|
| 159 | _fptr += (_new_size); \
|
|---|
| 160 | memset(_fptr, talloc_fill.fill_value, _flen); \
|
|---|
| 161 | } \
|
|---|
| 162 | } while (0)
|
|---|
| 163 |
|
|---|
| 164 | #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_NOACCESS)
|
|---|
| 165 | /* Mark the unused bytes not accessable */
|
|---|
| 166 | #define TC_INVALIDATE_SHRINK_VALGRIND_CHUNK(_tc, _new_size) do { \
|
|---|
| 167 | size_t _flen = (_tc)->size - (_new_size); \
|
|---|
| 168 | char *_fptr = (char *)TC_PTR_FROM_CHUNK(_tc); \
|
|---|
| 169 | _fptr += (_new_size); \
|
|---|
| 170 | VALGRIND_MAKE_MEM_NOACCESS(_fptr, _flen); \
|
|---|
| 171 | } while (0)
|
|---|
| 172 | #else
|
|---|
| 173 | #define TC_INVALIDATE_SHRINK_VALGRIND_CHUNK(_tc, _new_size) do { } while (0)
|
|---|
| 174 | #endif
|
|---|
| 175 |
|
|---|
| 176 | #define TC_INVALIDATE_SHRINK_CHUNK(_tc, _new_size) do { \
|
|---|
| 177 | TC_INVALIDATE_SHRINK_FILL_CHUNK(_tc, _new_size); \
|
|---|
| 178 | TC_INVALIDATE_SHRINK_VALGRIND_CHUNK(_tc, _new_size); \
|
|---|
| 179 | } while (0)
|
|---|
| 180 |
|
|---|
| 181 | #define TC_UNDEFINE_SHRINK_FILL_CHUNK(_tc, _new_size) do { \
|
|---|
| 182 | if (unlikely(talloc_fill.enabled)) { \
|
|---|
| 183 | size_t _flen = (_tc)->size - (_new_size); \
|
|---|
| 184 | char *_fptr = (char *)TC_PTR_FROM_CHUNK(_tc); \
|
|---|
| 185 | _fptr += (_new_size); \
|
|---|
| 186 | memset(_fptr, talloc_fill.fill_value, _flen); \
|
|---|
| 187 | } \
|
|---|
| 188 | } while (0)
|
|---|
| 189 |
|
|---|
| 190 | #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_UNDEFINED)
|
|---|
| 191 | /* Mark the unused bytes as undefined */
|
|---|
| 192 | #define TC_UNDEFINE_SHRINK_VALGRIND_CHUNK(_tc, _new_size) do { \
|
|---|
| 193 | size_t _flen = (_tc)->size - (_new_size); \
|
|---|
| 194 | char *_fptr = (char *)TC_PTR_FROM_CHUNK(_tc); \
|
|---|
| 195 | _fptr += (_new_size); \
|
|---|
| 196 | VALGRIND_MAKE_MEM_UNDEFINED(_fptr, _flen); \
|
|---|
| 197 | } while (0)
|
|---|
| 198 | #else
|
|---|
| 199 | #define TC_UNDEFINE_SHRINK_VALGRIND_CHUNK(_tc, _new_size) do { } while (0)
|
|---|
| 200 | #endif
|
|---|
| 201 |
|
|---|
| 202 | #define TC_UNDEFINE_SHRINK_CHUNK(_tc, _new_size) do { \
|
|---|
| 203 | TC_UNDEFINE_SHRINK_FILL_CHUNK(_tc, _new_size); \
|
|---|
| 204 | TC_UNDEFINE_SHRINK_VALGRIND_CHUNK(_tc, _new_size); \
|
|---|
| 205 | } while (0)
|
|---|
| 206 |
|
|---|
| 207 | #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_UNDEFINED)
|
|---|
| 208 | /* Mark the new bytes as undefined */
|
|---|
| 209 | #define TC_UNDEFINE_GROW_VALGRIND_CHUNK(_tc, _new_size) do { \
|
|---|
| 210 | size_t _old_used = TC_HDR_SIZE + (_tc)->size; \
|
|---|
| 211 | size_t _new_used = TC_HDR_SIZE + (_new_size); \
|
|---|
| 212 | size_t _flen = _new_used - _old_used; \
|
|---|
| 213 | char *_fptr = _old_used + (char *)(_tc); \
|
|---|
| 214 | VALGRIND_MAKE_MEM_UNDEFINED(_fptr, _flen); \
|
|---|
| 215 | } while (0)
|
|---|
| 216 | #else
|
|---|
| 217 | #define TC_UNDEFINE_GROW_VALGRIND_CHUNK(_tc, _new_size) do { } while (0)
|
|---|
| 218 | #endif
|
|---|
| 219 |
|
|---|
| 220 | #define TC_UNDEFINE_GROW_CHUNK(_tc, _new_size) do { \
|
|---|
| 221 | TC_UNDEFINE_GROW_VALGRIND_CHUNK(_tc, _new_size); \
|
|---|
| 222 | } while (0)
|
|---|
| 223 |
|
|---|
| 224 | struct talloc_reference_handle {
|
|---|
| 225 | struct talloc_reference_handle *next, *prev;
|
|---|
| 226 | void *ptr;
|
|---|
| 227 | const char *location;
|
|---|
| 228 | };
|
|---|
| 229 |
|
|---|
| 230 | typedef int (*talloc_destructor_t)(void *);
|
|---|
| 231 |
|
|---|
| 232 | struct talloc_chunk {
|
|---|
| 233 | struct talloc_chunk *next, *prev;
|
|---|
| 234 | struct talloc_chunk *parent, *child;
|
|---|
| 235 | struct talloc_reference_handle *refs;
|
|---|
| 236 | talloc_destructor_t destructor;
|
|---|
| 237 | const char *name;
|
|---|
| 238 | size_t size;
|
|---|
| 239 | unsigned flags;
|
|---|
| 240 |
|
|---|
| 241 | /*
|
|---|
| 242 | * "pool" has dual use:
|
|---|
| 243 | *
|
|---|
| 244 | * For the talloc pool itself (i.e. TALLOC_FLAG_POOL is set), "pool"
|
|---|
| 245 | * marks the end of the currently allocated area.
|
|---|
| 246 | *
|
|---|
| 247 | * For members of the pool (i.e. TALLOC_FLAG_POOLMEM is set), "pool"
|
|---|
| 248 | * is a pointer to the struct talloc_chunk of the pool that it was
|
|---|
| 249 | * allocated from. This way children can quickly find the pool to chew
|
|---|
| 250 | * from.
|
|---|
| 251 | */
|
|---|
| 252 | void *pool;
|
|---|
| 253 | };
|
|---|
| 254 |
|
|---|
| 255 | /* 16 byte alignment seems to keep everyone happy */
|
|---|
| 256 | #define TC_ALIGN16(s) (((s)+15)&~15)
|
|---|
| 257 | #define TC_HDR_SIZE TC_ALIGN16(sizeof(struct talloc_chunk))
|
|---|
| 258 | #define TC_PTR_FROM_CHUNK(tc) ((void *)(TC_HDR_SIZE + (char*)tc))
|
|---|
| 259 |
|
|---|
| 260 | _PUBLIC_ int talloc_version_major(void)
|
|---|
| 261 | {
|
|---|
| 262 | return TALLOC_VERSION_MAJOR;
|
|---|
| 263 | }
|
|---|
| 264 |
|
|---|
| 265 | _PUBLIC_ int talloc_version_minor(void)
|
|---|
| 266 | {
|
|---|
| 267 | return TALLOC_VERSION_MINOR;
|
|---|
| 268 | }
|
|---|
| 269 |
|
|---|
| 270 | static void (*talloc_log_fn)(const char *message);
|
|---|
| 271 |
|
|---|
| 272 | _PUBLIC_ void talloc_set_log_fn(void (*log_fn)(const char *message))
|
|---|
| 273 | {
|
|---|
| 274 | talloc_log_fn = log_fn;
|
|---|
| 275 | }
|
|---|
| 276 |
|
|---|
| 277 | static void talloc_log(const char *fmt, ...) PRINTF_ATTRIBUTE(1,2);
|
|---|
| 278 | static void talloc_log(const char *fmt, ...)
|
|---|
| 279 | {
|
|---|
| 280 | va_list ap;
|
|---|
| 281 | char *message;
|
|---|
| 282 |
|
|---|
| 283 | if (!talloc_log_fn) {
|
|---|
| 284 | return;
|
|---|
| 285 | }
|
|---|
| 286 |
|
|---|
| 287 | va_start(ap, fmt);
|
|---|
| 288 | message = talloc_vasprintf(NULL, fmt, ap);
|
|---|
| 289 | va_end(ap);
|
|---|
| 290 |
|
|---|
| 291 | talloc_log_fn(message);
|
|---|
| 292 | talloc_free(message);
|
|---|
| 293 | }
|
|---|
| 294 |
|
|---|
| 295 | static void talloc_log_stderr(const char *message)
|
|---|
| 296 | {
|
|---|
| 297 | fprintf(stderr, "%s", message);
|
|---|
| 298 | }
|
|---|
| 299 |
|
|---|
| 300 | _PUBLIC_ void talloc_set_log_stderr(void)
|
|---|
| 301 | {
|
|---|
| 302 | talloc_set_log_fn(talloc_log_stderr);
|
|---|
| 303 | }
|
|---|
| 304 |
|
|---|
| 305 | static void (*talloc_abort_fn)(const char *reason);
|
|---|
| 306 |
|
|---|
| 307 | _PUBLIC_ void talloc_set_abort_fn(void (*abort_fn)(const char *reason))
|
|---|
| 308 | {
|
|---|
| 309 | talloc_abort_fn = abort_fn;
|
|---|
| 310 | }
|
|---|
| 311 |
|
|---|
| 312 | static void talloc_abort(const char *reason)
|
|---|
| 313 | {
|
|---|
| 314 | talloc_log("%s\n", reason);
|
|---|
| 315 |
|
|---|
| 316 | if (!talloc_abort_fn) {
|
|---|
| 317 | TALLOC_ABORT(reason);
|
|---|
| 318 | }
|
|---|
| 319 |
|
|---|
| 320 | talloc_abort_fn(reason);
|
|---|
| 321 | }
|
|---|
| 322 |
|
|---|
| 323 | static void talloc_abort_magic(unsigned magic)
|
|---|
| 324 | {
|
|---|
| 325 | unsigned striped = magic - TALLOC_MAGIC_BASE;
|
|---|
| 326 | unsigned major = (striped & 0xFFFFF000) >> 12;
|
|---|
| 327 | unsigned minor = (striped & 0x00000FF0) >> 4;
|
|---|
| 328 | talloc_log("Bad talloc magic[0x%08X/%u/%u] expected[0x%08X/%u/%u]\n",
|
|---|
| 329 | magic, major, minor,
|
|---|
| 330 | TALLOC_MAGIC, TALLOC_VERSION_MAJOR, TALLOC_VERSION_MINOR);
|
|---|
| 331 | talloc_abort("Bad talloc magic value - wrong talloc version used/mixed");
|
|---|
| 332 | }
|
|---|
| 333 |
|
|---|
| 334 | static void talloc_abort_access_after_free(void)
|
|---|
| 335 | {
|
|---|
| 336 | talloc_abort("Bad talloc magic value - access after free");
|
|---|
| 337 | }
|
|---|
| 338 |
|
|---|
| 339 | static void talloc_abort_unknown_value(void)
|
|---|
| 340 | {
|
|---|
| 341 | talloc_abort("Bad talloc magic value - unknown value");
|
|---|
| 342 | }
|
|---|
| 343 |
|
|---|
| 344 | /* panic if we get a bad magic value */
|
|---|
| 345 | static inline struct talloc_chunk *talloc_chunk_from_ptr(const void *ptr)
|
|---|
| 346 | {
|
|---|
| 347 | const char *pp = (const char *)ptr;
|
|---|
| 348 | struct talloc_chunk *tc = discard_const_p(struct talloc_chunk, pp - TC_HDR_SIZE);
|
|---|
| 349 | if (unlikely((tc->flags & (TALLOC_FLAG_FREE | ~0xF)) != TALLOC_MAGIC)) {
|
|---|
| 350 | if ((tc->flags & (~0xFFF)) == TALLOC_MAGIC_BASE) {
|
|---|
| 351 | talloc_abort_magic(tc->flags & (~0xF));
|
|---|
| 352 | return NULL;
|
|---|
| 353 | }
|
|---|
| 354 |
|
|---|
| 355 | if (tc->flags & TALLOC_FLAG_FREE) {
|
|---|
| 356 | talloc_log("talloc: access after free error - first free may be at %s\n", tc->name);
|
|---|
| 357 | talloc_abort_access_after_free();
|
|---|
| 358 | return NULL;
|
|---|
| 359 | } else {
|
|---|
| 360 | talloc_abort_unknown_value();
|
|---|
| 361 | return NULL;
|
|---|
| 362 | }
|
|---|
| 363 | }
|
|---|
| 364 | return tc;
|
|---|
| 365 | }
|
|---|
| 366 |
|
|---|
| 367 | /* hook into the front of the list */
|
|---|
| 368 | #define _TLIST_ADD(list, p) \
|
|---|
| 369 | do { \
|
|---|
| 370 | if (!(list)) { \
|
|---|
| 371 | (list) = (p); \
|
|---|
| 372 | (p)->next = (p)->prev = NULL; \
|
|---|
| 373 | } else { \
|
|---|
| 374 | (list)->prev = (p); \
|
|---|
| 375 | (p)->next = (list); \
|
|---|
| 376 | (p)->prev = NULL; \
|
|---|
| 377 | (list) = (p); \
|
|---|
| 378 | }\
|
|---|
| 379 | } while (0)
|
|---|
| 380 |
|
|---|
| 381 | /* remove an element from a list - element doesn't have to be in list. */
|
|---|
| 382 | #define _TLIST_REMOVE(list, p) \
|
|---|
| 383 | do { \
|
|---|
| 384 | if ((p) == (list)) { \
|
|---|
| 385 | (list) = (p)->next; \
|
|---|
| 386 | if (list) (list)->prev = NULL; \
|
|---|
| 387 | } else { \
|
|---|
| 388 | if ((p)->prev) (p)->prev->next = (p)->next; \
|
|---|
| 389 | if ((p)->next) (p)->next->prev = (p)->prev; \
|
|---|
| 390 | } \
|
|---|
| 391 | if ((p) && ((p) != (list))) (p)->next = (p)->prev = NULL; \
|
|---|
| 392 | } while (0)
|
|---|
| 393 |
|
|---|
| 394 |
|
|---|
| 395 | /*
|
|---|
| 396 | return the parent chunk of a pointer
|
|---|
| 397 | */
|
|---|
| 398 | static inline struct talloc_chunk *talloc_parent_chunk(const void *ptr)
|
|---|
| 399 | {
|
|---|
| 400 | struct talloc_chunk *tc;
|
|---|
| 401 |
|
|---|
| 402 | if (unlikely(ptr == NULL)) {
|
|---|
| 403 | return NULL;
|
|---|
| 404 | }
|
|---|
| 405 |
|
|---|
| 406 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 407 | while (tc->prev) tc=tc->prev;
|
|---|
| 408 |
|
|---|
| 409 | return tc->parent;
|
|---|
| 410 | }
|
|---|
| 411 |
|
|---|
| 412 | _PUBLIC_ void *talloc_parent(const void *ptr)
|
|---|
| 413 | {
|
|---|
| 414 | struct talloc_chunk *tc = talloc_parent_chunk(ptr);
|
|---|
| 415 | return tc? TC_PTR_FROM_CHUNK(tc) : NULL;
|
|---|
| 416 | }
|
|---|
| 417 |
|
|---|
| 418 | /*
|
|---|
| 419 | find parents name
|
|---|
| 420 | */
|
|---|
| 421 | _PUBLIC_ const char *talloc_parent_name(const void *ptr)
|
|---|
| 422 | {
|
|---|
| 423 | struct talloc_chunk *tc = talloc_parent_chunk(ptr);
|
|---|
| 424 | return tc? tc->name : NULL;
|
|---|
| 425 | }
|
|---|
| 426 |
|
|---|
| 427 | /*
|
|---|
| 428 | A pool carries an in-pool object count count in the first 16 bytes.
|
|---|
| 429 | bytes. This is done to support talloc_steal() to a parent outside of the
|
|---|
| 430 | pool. The count includes the pool itself, so a talloc_free() on a pool will
|
|---|
| 431 | only destroy the pool if the count has dropped to zero. A talloc_free() of a
|
|---|
| 432 | pool member will reduce the count, and eventually also call free(3) on the
|
|---|
| 433 | pool memory.
|
|---|
| 434 |
|
|---|
| 435 | The object count is not put into "struct talloc_chunk" because it is only
|
|---|
| 436 | relevant for talloc pools and the alignment to 16 bytes would increase the
|
|---|
| 437 | memory footprint of each talloc chunk by those 16 bytes.
|
|---|
| 438 | */
|
|---|
| 439 |
|
|---|
| 440 | #define TALLOC_POOL_HDR_SIZE 16
|
|---|
| 441 |
|
|---|
| 442 | #define TC_POOL_SPACE_LEFT(_pool_tc) \
|
|---|
| 443 | PTR_DIFF(TC_HDR_SIZE + (_pool_tc)->size + (char *)(_pool_tc), \
|
|---|
| 444 | (_pool_tc)->pool)
|
|---|
| 445 |
|
|---|
| 446 | #define TC_POOL_FIRST_CHUNK(_pool_tc) \
|
|---|
| 447 | ((void *)(TC_HDR_SIZE + TALLOC_POOL_HDR_SIZE + (char *)(_pool_tc)))
|
|---|
| 448 |
|
|---|
| 449 | #define TC_POOLMEM_CHUNK_SIZE(_tc) \
|
|---|
| 450 | TC_ALIGN16(TC_HDR_SIZE + (_tc)->size)
|
|---|
| 451 |
|
|---|
| 452 | #define TC_POOLMEM_NEXT_CHUNK(_tc) \
|
|---|
| 453 | ((void *)(TC_POOLMEM_CHUNK_SIZE(tc) + (char*)(_tc)))
|
|---|
| 454 |
|
|---|
| 455 | /* Mark the whole remaining pool as not accessable */
|
|---|
| 456 | #define TC_INVALIDATE_FILL_POOL(_pool_tc) do { \
|
|---|
| 457 | if (unlikely(talloc_fill.enabled)) { \
|
|---|
| 458 | size_t _flen = TC_POOL_SPACE_LEFT(_pool_tc); \
|
|---|
| 459 | char *_fptr = (char *)(_pool_tc)->pool; \
|
|---|
| 460 | memset(_fptr, talloc_fill.fill_value, _flen); \
|
|---|
| 461 | } \
|
|---|
| 462 | } while(0)
|
|---|
| 463 |
|
|---|
| 464 | #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_NOACCESS)
|
|---|
| 465 | /* Mark the whole remaining pool as not accessable */
|
|---|
| 466 | #define TC_INVALIDATE_VALGRIND_POOL(_pool_tc) do { \
|
|---|
| 467 | size_t _flen = TC_POOL_SPACE_LEFT(_pool_tc); \
|
|---|
| 468 | char *_fptr = (char *)(_pool_tc)->pool; \
|
|---|
| 469 | VALGRIND_MAKE_MEM_NOACCESS(_fptr, _flen); \
|
|---|
| 470 | } while(0)
|
|---|
| 471 | #else
|
|---|
| 472 | #define TC_INVALIDATE_VALGRIND_POOL(_pool_tc) do { } while (0)
|
|---|
| 473 | #endif
|
|---|
| 474 |
|
|---|
| 475 | #define TC_INVALIDATE_POOL(_pool_tc) do { \
|
|---|
| 476 | TC_INVALIDATE_FILL_POOL(_pool_tc); \
|
|---|
| 477 | TC_INVALIDATE_VALGRIND_POOL(_pool_tc); \
|
|---|
| 478 | } while (0)
|
|---|
| 479 |
|
|---|
| 480 | static unsigned int *talloc_pool_objectcount(struct talloc_chunk *tc)
|
|---|
| 481 | {
|
|---|
| 482 | return (unsigned int *)((char *)tc + TC_HDR_SIZE);
|
|---|
| 483 | }
|
|---|
| 484 |
|
|---|
| 485 | /*
|
|---|
| 486 | Allocate from a pool
|
|---|
| 487 | */
|
|---|
| 488 |
|
|---|
| 489 | static struct talloc_chunk *talloc_alloc_pool(struct talloc_chunk *parent,
|
|---|
| 490 | size_t size)
|
|---|
| 491 | {
|
|---|
| 492 | struct talloc_chunk *pool_ctx = NULL;
|
|---|
| 493 | size_t space_left;
|
|---|
| 494 | struct talloc_chunk *result;
|
|---|
| 495 | size_t chunk_size;
|
|---|
| 496 |
|
|---|
| 497 | if (parent == NULL) {
|
|---|
| 498 | return NULL;
|
|---|
| 499 | }
|
|---|
| 500 |
|
|---|
| 501 | if (parent->flags & TALLOC_FLAG_POOL) {
|
|---|
| 502 | pool_ctx = parent;
|
|---|
| 503 | }
|
|---|
| 504 | else if (parent->flags & TALLOC_FLAG_POOLMEM) {
|
|---|
| 505 | pool_ctx = (struct talloc_chunk *)parent->pool;
|
|---|
| 506 | }
|
|---|
| 507 |
|
|---|
| 508 | if (pool_ctx == NULL) {
|
|---|
| 509 | return NULL;
|
|---|
| 510 | }
|
|---|
| 511 |
|
|---|
| 512 | space_left = TC_POOL_SPACE_LEFT(pool_ctx);
|
|---|
| 513 |
|
|---|
| 514 | /*
|
|---|
| 515 | * Align size to 16 bytes
|
|---|
| 516 | */
|
|---|
| 517 | chunk_size = TC_ALIGN16(size);
|
|---|
| 518 |
|
|---|
| 519 | if (space_left < chunk_size) {
|
|---|
| 520 | return NULL;
|
|---|
| 521 | }
|
|---|
| 522 |
|
|---|
| 523 | result = (struct talloc_chunk *)pool_ctx->pool;
|
|---|
| 524 |
|
|---|
| 525 | #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_UNDEFINED)
|
|---|
| 526 | VALGRIND_MAKE_MEM_UNDEFINED(result, size);
|
|---|
| 527 | #endif
|
|---|
| 528 |
|
|---|
| 529 | pool_ctx->pool = (void *)((char *)result + chunk_size);
|
|---|
| 530 |
|
|---|
| 531 | result->flags = TALLOC_MAGIC | TALLOC_FLAG_POOLMEM;
|
|---|
| 532 | result->pool = pool_ctx;
|
|---|
| 533 |
|
|---|
| 534 | *talloc_pool_objectcount(pool_ctx) += 1;
|
|---|
| 535 |
|
|---|
| 536 | return result;
|
|---|
| 537 | }
|
|---|
| 538 |
|
|---|
| 539 | /*
|
|---|
| 540 | Allocate a bit of memory as a child of an existing pointer
|
|---|
| 541 | */
|
|---|
| 542 | static inline void *__talloc(const void *context, size_t size)
|
|---|
| 543 | {
|
|---|
| 544 | struct talloc_chunk *tc = NULL;
|
|---|
| 545 |
|
|---|
| 546 | if (unlikely(context == NULL)) {
|
|---|
| 547 | context = null_context;
|
|---|
| 548 | }
|
|---|
| 549 |
|
|---|
| 550 | if (unlikely(size >= MAX_TALLOC_SIZE)) {
|
|---|
| 551 | return NULL;
|
|---|
| 552 | }
|
|---|
| 553 |
|
|---|
| 554 | if (context != NULL) {
|
|---|
| 555 | tc = talloc_alloc_pool(talloc_chunk_from_ptr(context),
|
|---|
| 556 | TC_HDR_SIZE+size);
|
|---|
| 557 | }
|
|---|
| 558 |
|
|---|
| 559 | if (tc == NULL) {
|
|---|
| 560 | tc = (struct talloc_chunk *)malloc(TC_HDR_SIZE+size);
|
|---|
| 561 | if (unlikely(tc == NULL)) return NULL;
|
|---|
| 562 | tc->flags = TALLOC_MAGIC;
|
|---|
| 563 | tc->pool = NULL;
|
|---|
| 564 | }
|
|---|
| 565 |
|
|---|
| 566 | tc->size = size;
|
|---|
| 567 | tc->destructor = NULL;
|
|---|
| 568 | tc->child = NULL;
|
|---|
| 569 | tc->name = NULL;
|
|---|
| 570 | tc->refs = NULL;
|
|---|
| 571 |
|
|---|
| 572 | if (likely(context)) {
|
|---|
| 573 | struct talloc_chunk *parent = talloc_chunk_from_ptr(context);
|
|---|
| 574 |
|
|---|
| 575 | if (parent->child) {
|
|---|
| 576 | parent->child->parent = NULL;
|
|---|
| 577 | tc->next = parent->child;
|
|---|
| 578 | tc->next->prev = tc;
|
|---|
| 579 | } else {
|
|---|
| 580 | tc->next = NULL;
|
|---|
| 581 | }
|
|---|
| 582 | tc->parent = parent;
|
|---|
| 583 | tc->prev = NULL;
|
|---|
| 584 | parent->child = tc;
|
|---|
| 585 | } else {
|
|---|
| 586 | tc->next = tc->prev = tc->parent = NULL;
|
|---|
| 587 | }
|
|---|
| 588 |
|
|---|
| 589 | return TC_PTR_FROM_CHUNK(tc);
|
|---|
| 590 | }
|
|---|
| 591 |
|
|---|
| 592 | /*
|
|---|
| 593 | * Create a talloc pool
|
|---|
| 594 | */
|
|---|
| 595 |
|
|---|
| 596 | _PUBLIC_ void *talloc_pool(const void *context, size_t size)
|
|---|
| 597 | {
|
|---|
| 598 | void *result = __talloc(context, size + TALLOC_POOL_HDR_SIZE);
|
|---|
| 599 | struct talloc_chunk *tc;
|
|---|
| 600 |
|
|---|
| 601 | if (unlikely(result == NULL)) {
|
|---|
| 602 | return NULL;
|
|---|
| 603 | }
|
|---|
| 604 |
|
|---|
| 605 | tc = talloc_chunk_from_ptr(result);
|
|---|
| 606 |
|
|---|
| 607 | tc->flags |= TALLOC_FLAG_POOL;
|
|---|
| 608 | tc->pool = TC_POOL_FIRST_CHUNK(tc);
|
|---|
| 609 |
|
|---|
| 610 | *talloc_pool_objectcount(tc) = 1;
|
|---|
| 611 |
|
|---|
| 612 | TC_INVALIDATE_POOL(tc);
|
|---|
| 613 |
|
|---|
| 614 | return result;
|
|---|
| 615 | }
|
|---|
| 616 |
|
|---|
| 617 | /*
|
|---|
| 618 | setup a destructor to be called on free of a pointer
|
|---|
| 619 | the destructor should return 0 on success, or -1 on failure.
|
|---|
| 620 | if the destructor fails then the free is failed, and the memory can
|
|---|
| 621 | be continued to be used
|
|---|
| 622 | */
|
|---|
| 623 | _PUBLIC_ void _talloc_set_destructor(const void *ptr, int (*destructor)(void *))
|
|---|
| 624 | {
|
|---|
| 625 | struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 626 | tc->destructor = destructor;
|
|---|
| 627 | }
|
|---|
| 628 |
|
|---|
| 629 | /*
|
|---|
| 630 | increase the reference count on a piece of memory.
|
|---|
| 631 | */
|
|---|
| 632 | _PUBLIC_ int talloc_increase_ref_count(const void *ptr)
|
|---|
| 633 | {
|
|---|
| 634 | if (unlikely(!talloc_reference(null_context, ptr))) {
|
|---|
| 635 | return -1;
|
|---|
| 636 | }
|
|---|
| 637 | return 0;
|
|---|
| 638 | }
|
|---|
| 639 |
|
|---|
| 640 | /*
|
|---|
| 641 | helper for talloc_reference()
|
|---|
| 642 |
|
|---|
| 643 | this is referenced by a function pointer and should not be inline
|
|---|
| 644 | */
|
|---|
| 645 | static int talloc_reference_destructor(struct talloc_reference_handle *handle)
|
|---|
| 646 | {
|
|---|
| 647 | struct talloc_chunk *ptr_tc = talloc_chunk_from_ptr(handle->ptr);
|
|---|
| 648 | _TLIST_REMOVE(ptr_tc->refs, handle);
|
|---|
| 649 | return 0;
|
|---|
| 650 | }
|
|---|
| 651 |
|
|---|
| 652 | /*
|
|---|
| 653 | more efficient way to add a name to a pointer - the name must point to a
|
|---|
| 654 | true string constant
|
|---|
| 655 | */
|
|---|
| 656 | static inline void _talloc_set_name_const(const void *ptr, const char *name)
|
|---|
| 657 | {
|
|---|
| 658 | struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 659 | tc->name = name;
|
|---|
| 660 | }
|
|---|
| 661 |
|
|---|
| 662 | /*
|
|---|
| 663 | internal talloc_named_const()
|
|---|
| 664 | */
|
|---|
| 665 | static inline void *_talloc_named_const(const void *context, size_t size, const char *name)
|
|---|
| 666 | {
|
|---|
| 667 | void *ptr;
|
|---|
| 668 |
|
|---|
| 669 | ptr = __talloc(context, size);
|
|---|
| 670 | if (unlikely(ptr == NULL)) {
|
|---|
| 671 | return NULL;
|
|---|
| 672 | }
|
|---|
| 673 |
|
|---|
| 674 | _talloc_set_name_const(ptr, name);
|
|---|
| 675 |
|
|---|
| 676 | return ptr;
|
|---|
| 677 | }
|
|---|
| 678 |
|
|---|
| 679 | /*
|
|---|
| 680 | make a secondary reference to a pointer, hanging off the given context.
|
|---|
| 681 | the pointer remains valid until both the original caller and this given
|
|---|
| 682 | context are freed.
|
|---|
| 683 |
|
|---|
| 684 | the major use for this is when two different structures need to reference the
|
|---|
| 685 | same underlying data, and you want to be able to free the two instances separately,
|
|---|
| 686 | and in either order
|
|---|
| 687 | */
|
|---|
| 688 | _PUBLIC_ void *_talloc_reference_loc(const void *context, const void *ptr, const char *location)
|
|---|
| 689 | {
|
|---|
| 690 | struct talloc_chunk *tc;
|
|---|
| 691 | struct talloc_reference_handle *handle;
|
|---|
| 692 | if (unlikely(ptr == NULL)) return NULL;
|
|---|
| 693 |
|
|---|
| 694 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 695 | handle = (struct talloc_reference_handle *)_talloc_named_const(context,
|
|---|
| 696 | sizeof(struct talloc_reference_handle),
|
|---|
| 697 | TALLOC_MAGIC_REFERENCE);
|
|---|
| 698 | if (unlikely(handle == NULL)) return NULL;
|
|---|
| 699 |
|
|---|
| 700 | /* note that we hang the destructor off the handle, not the
|
|---|
| 701 | main context as that allows the caller to still setup their
|
|---|
| 702 | own destructor on the context if they want to */
|
|---|
| 703 | talloc_set_destructor(handle, talloc_reference_destructor);
|
|---|
| 704 | handle->ptr = discard_const_p(void, ptr);
|
|---|
| 705 | handle->location = location;
|
|---|
| 706 | _TLIST_ADD(tc->refs, handle);
|
|---|
| 707 | return handle->ptr;
|
|---|
| 708 | }
|
|---|
| 709 |
|
|---|
| 710 | static void *_talloc_steal_internal(const void *new_ctx, const void *ptr);
|
|---|
| 711 |
|
|---|
| 712 | static inline void _talloc_free_poolmem(struct talloc_chunk *tc,
|
|---|
| 713 | const char *location)
|
|---|
| 714 | {
|
|---|
| 715 | struct talloc_chunk *pool;
|
|---|
| 716 | void *next_tc;
|
|---|
| 717 | unsigned int *pool_object_count;
|
|---|
| 718 |
|
|---|
| 719 | pool = (struct talloc_chunk *)tc->pool;
|
|---|
| 720 | next_tc = TC_POOLMEM_NEXT_CHUNK(tc);
|
|---|
| 721 |
|
|---|
| 722 | tc->flags |= TALLOC_FLAG_FREE;
|
|---|
| 723 |
|
|---|
| 724 | /* we mark the freed memory with where we called the free
|
|---|
| 725 | * from. This means on a double free error we can report where
|
|---|
| 726 | * the first free came from
|
|---|
| 727 | */
|
|---|
| 728 | tc->name = location;
|
|---|
| 729 |
|
|---|
| 730 | TC_INVALIDATE_FULL_CHUNK(tc);
|
|---|
| 731 |
|
|---|
| 732 | pool_object_count = talloc_pool_objectcount(pool);
|
|---|
| 733 |
|
|---|
| 734 | if (unlikely(*pool_object_count == 0)) {
|
|---|
| 735 | talloc_abort("Pool object count zero!");
|
|---|
| 736 | return;
|
|---|
| 737 | }
|
|---|
| 738 |
|
|---|
| 739 | *pool_object_count -= 1;
|
|---|
| 740 |
|
|---|
| 741 | if (unlikely(*pool_object_count == 1 && !(pool->flags & TALLOC_FLAG_FREE))) {
|
|---|
| 742 | /*
|
|---|
| 743 | * if there is just one object left in the pool
|
|---|
| 744 | * and pool->flags does not have TALLOC_FLAG_FREE,
|
|---|
| 745 | * it means this is the pool itself and
|
|---|
| 746 | * the rest is available for new objects
|
|---|
| 747 | * again.
|
|---|
| 748 | */
|
|---|
| 749 | pool->pool = TC_POOL_FIRST_CHUNK(pool);
|
|---|
| 750 | TC_INVALIDATE_POOL(pool);
|
|---|
| 751 | } else if (unlikely(*pool_object_count == 0)) {
|
|---|
| 752 | /*
|
|---|
| 753 | * we mark the freed memory with where we called the free
|
|---|
| 754 | * from. This means on a double free error we can report where
|
|---|
| 755 | * the first free came from
|
|---|
| 756 | */
|
|---|
| 757 | pool->name = location;
|
|---|
| 758 |
|
|---|
| 759 | TC_INVALIDATE_FULL_CHUNK(pool);
|
|---|
| 760 | free(pool);
|
|---|
| 761 | } else if (pool->pool == next_tc) {
|
|---|
| 762 | /*
|
|---|
| 763 | * if pool->pool still points to end of
|
|---|
| 764 | * 'tc' (which is stored in the 'next_tc' variable),
|
|---|
| 765 | * we can reclaim the memory of 'tc'.
|
|---|
| 766 | */
|
|---|
| 767 | pool->pool = tc;
|
|---|
| 768 | }
|
|---|
| 769 | }
|
|---|
| 770 |
|
|---|
| 771 | static inline void _talloc_free_children_internal(struct talloc_chunk *tc,
|
|---|
| 772 | void *ptr,
|
|---|
| 773 | const char *location);
|
|---|
| 774 |
|
|---|
| 775 | /*
|
|---|
| 776 | internal talloc_free call
|
|---|
| 777 | */
|
|---|
| 778 | static inline int _talloc_free_internal(void *ptr, const char *location)
|
|---|
| 779 | {
|
|---|
| 780 | struct talloc_chunk *tc;
|
|---|
| 781 |
|
|---|
| 782 | if (unlikely(ptr == NULL)) {
|
|---|
| 783 | return -1;
|
|---|
| 784 | }
|
|---|
| 785 |
|
|---|
| 786 | /* possibly initialised the talloc fill value */
|
|---|
| 787 | if (unlikely(!talloc_fill.initialised)) {
|
|---|
| 788 | const char *fill = getenv(TALLOC_FILL_ENV);
|
|---|
| 789 | if (fill != NULL) {
|
|---|
| 790 | talloc_fill.enabled = true;
|
|---|
| 791 | talloc_fill.fill_value = strtoul(fill, NULL, 0);
|
|---|
| 792 | }
|
|---|
| 793 | talloc_fill.initialised = true;
|
|---|
| 794 | }
|
|---|
| 795 |
|
|---|
| 796 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 797 |
|
|---|
| 798 | if (unlikely(tc->refs)) {
|
|---|
| 799 | int is_child;
|
|---|
| 800 | /* check if this is a reference from a child or
|
|---|
| 801 | * grandchild back to it's parent or grandparent
|
|---|
| 802 | *
|
|---|
| 803 | * in that case we need to remove the reference and
|
|---|
| 804 | * call another instance of talloc_free() on the current
|
|---|
| 805 | * pointer.
|
|---|
| 806 | */
|
|---|
| 807 | is_child = talloc_is_parent(tc->refs, ptr);
|
|---|
| 808 | _talloc_free_internal(tc->refs, location);
|
|---|
| 809 | if (is_child) {
|
|---|
| 810 | return _talloc_free_internal(ptr, location);
|
|---|
| 811 | }
|
|---|
| 812 | return -1;
|
|---|
| 813 | }
|
|---|
| 814 |
|
|---|
| 815 | if (unlikely(tc->flags & TALLOC_FLAG_LOOP)) {
|
|---|
| 816 | /* we have a free loop - stop looping */
|
|---|
| 817 | return 0;
|
|---|
| 818 | }
|
|---|
| 819 |
|
|---|
| 820 | if (unlikely(tc->destructor)) {
|
|---|
| 821 | talloc_destructor_t d = tc->destructor;
|
|---|
| 822 | if (d == (talloc_destructor_t)-1) {
|
|---|
| 823 | return -1;
|
|---|
| 824 | }
|
|---|
| 825 | tc->destructor = (talloc_destructor_t)-1;
|
|---|
| 826 | if (d(ptr) == -1) {
|
|---|
| 827 | tc->destructor = d;
|
|---|
| 828 | return -1;
|
|---|
| 829 | }
|
|---|
| 830 | tc->destructor = NULL;
|
|---|
| 831 | }
|
|---|
| 832 |
|
|---|
| 833 | if (tc->parent) {
|
|---|
| 834 | _TLIST_REMOVE(tc->parent->child, tc);
|
|---|
| 835 | if (tc->parent->child) {
|
|---|
| 836 | tc->parent->child->parent = tc->parent;
|
|---|
| 837 | }
|
|---|
| 838 | } else {
|
|---|
| 839 | if (tc->prev) tc->prev->next = tc->next;
|
|---|
| 840 | if (tc->next) tc->next->prev = tc->prev;
|
|---|
| 841 | }
|
|---|
| 842 |
|
|---|
| 843 | tc->flags |= TALLOC_FLAG_LOOP;
|
|---|
| 844 |
|
|---|
| 845 | _talloc_free_children_internal(tc, ptr, location);
|
|---|
| 846 |
|
|---|
| 847 | tc->flags |= TALLOC_FLAG_FREE;
|
|---|
| 848 |
|
|---|
| 849 | /* we mark the freed memory with where we called the free
|
|---|
| 850 | * from. This means on a double free error we can report where
|
|---|
| 851 | * the first free came from
|
|---|
| 852 | */
|
|---|
| 853 | tc->name = location;
|
|---|
| 854 |
|
|---|
| 855 | if (tc->flags & TALLOC_FLAG_POOL) {
|
|---|
| 856 | unsigned int *pool_object_count;
|
|---|
| 857 |
|
|---|
| 858 | pool_object_count = talloc_pool_objectcount(tc);
|
|---|
| 859 |
|
|---|
| 860 | if (unlikely(*pool_object_count == 0)) {
|
|---|
| 861 | talloc_abort("Pool object count zero!");
|
|---|
| 862 | return 0;
|
|---|
| 863 | }
|
|---|
| 864 |
|
|---|
| 865 | *pool_object_count -= 1;
|
|---|
| 866 |
|
|---|
| 867 | if (unlikely(*pool_object_count == 0)) {
|
|---|
| 868 | TC_INVALIDATE_FULL_CHUNK(tc);
|
|---|
| 869 | free(tc);
|
|---|
| 870 | }
|
|---|
| 871 | } else if (tc->flags & TALLOC_FLAG_POOLMEM) {
|
|---|
| 872 | _talloc_free_poolmem(tc, location);
|
|---|
| 873 | } else {
|
|---|
| 874 | TC_INVALIDATE_FULL_CHUNK(tc);
|
|---|
| 875 | free(tc);
|
|---|
| 876 | }
|
|---|
| 877 | return 0;
|
|---|
| 878 | }
|
|---|
| 879 |
|
|---|
| 880 | /*
|
|---|
| 881 | move a lump of memory from one talloc context to another return the
|
|---|
| 882 | ptr on success, or NULL if it could not be transferred.
|
|---|
| 883 | passing NULL as ptr will always return NULL with no side effects.
|
|---|
| 884 | */
|
|---|
| 885 | static void *_talloc_steal_internal(const void *new_ctx, const void *ptr)
|
|---|
| 886 | {
|
|---|
| 887 | struct talloc_chunk *tc, *new_tc;
|
|---|
| 888 |
|
|---|
| 889 | if (unlikely(!ptr)) {
|
|---|
| 890 | return NULL;
|
|---|
| 891 | }
|
|---|
| 892 |
|
|---|
| 893 | if (unlikely(new_ctx == NULL)) {
|
|---|
| 894 | new_ctx = null_context;
|
|---|
| 895 | }
|
|---|
| 896 |
|
|---|
| 897 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 898 |
|
|---|
| 899 | if (unlikely(new_ctx == NULL)) {
|
|---|
| 900 | if (tc->parent) {
|
|---|
| 901 | _TLIST_REMOVE(tc->parent->child, tc);
|
|---|
| 902 | if (tc->parent->child) {
|
|---|
| 903 | tc->parent->child->parent = tc->parent;
|
|---|
| 904 | }
|
|---|
| 905 | } else {
|
|---|
| 906 | if (tc->prev) tc->prev->next = tc->next;
|
|---|
| 907 | if (tc->next) tc->next->prev = tc->prev;
|
|---|
| 908 | }
|
|---|
| 909 |
|
|---|
| 910 | tc->parent = tc->next = tc->prev = NULL;
|
|---|
| 911 | return discard_const_p(void, ptr);
|
|---|
| 912 | }
|
|---|
| 913 |
|
|---|
| 914 | new_tc = talloc_chunk_from_ptr(new_ctx);
|
|---|
| 915 |
|
|---|
| 916 | if (unlikely(tc == new_tc || tc->parent == new_tc)) {
|
|---|
| 917 | return discard_const_p(void, ptr);
|
|---|
| 918 | }
|
|---|
| 919 |
|
|---|
| 920 | if (tc->parent) {
|
|---|
| 921 | _TLIST_REMOVE(tc->parent->child, tc);
|
|---|
| 922 | if (tc->parent->child) {
|
|---|
| 923 | tc->parent->child->parent = tc->parent;
|
|---|
| 924 | }
|
|---|
| 925 | } else {
|
|---|
| 926 | if (tc->prev) tc->prev->next = tc->next;
|
|---|
| 927 | if (tc->next) tc->next->prev = tc->prev;
|
|---|
| 928 | }
|
|---|
| 929 |
|
|---|
| 930 | tc->parent = new_tc;
|
|---|
| 931 | if (new_tc->child) new_tc->child->parent = NULL;
|
|---|
| 932 | _TLIST_ADD(new_tc->child, tc);
|
|---|
| 933 |
|
|---|
| 934 | return discard_const_p(void, ptr);
|
|---|
| 935 | }
|
|---|
| 936 |
|
|---|
| 937 | /*
|
|---|
| 938 | move a lump of memory from one talloc context to another return the
|
|---|
| 939 | ptr on success, or NULL if it could not be transferred.
|
|---|
| 940 | passing NULL as ptr will always return NULL with no side effects.
|
|---|
| 941 | */
|
|---|
| 942 | _PUBLIC_ void *_talloc_steal_loc(const void *new_ctx, const void *ptr, const char *location)
|
|---|
| 943 | {
|
|---|
| 944 | struct talloc_chunk *tc;
|
|---|
| 945 |
|
|---|
| 946 | if (unlikely(ptr == NULL)) {
|
|---|
| 947 | return NULL;
|
|---|
| 948 | }
|
|---|
| 949 |
|
|---|
| 950 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 951 |
|
|---|
| 952 | if (unlikely(tc->refs != NULL) && talloc_parent(ptr) != new_ctx) {
|
|---|
| 953 | struct talloc_reference_handle *h;
|
|---|
| 954 |
|
|---|
| 955 | talloc_log("WARNING: talloc_steal with references at %s\n",
|
|---|
| 956 | location);
|
|---|
| 957 |
|
|---|
| 958 | for (h=tc->refs; h; h=h->next) {
|
|---|
| 959 | talloc_log("\treference at %s\n",
|
|---|
| 960 | h->location);
|
|---|
| 961 | }
|
|---|
| 962 | }
|
|---|
| 963 |
|
|---|
| 964 | #if 0
|
|---|
| 965 | /* this test is probably too expensive to have on in the
|
|---|
| 966 | normal build, but it useful for debugging */
|
|---|
| 967 | if (talloc_is_parent(new_ctx, ptr)) {
|
|---|
| 968 | talloc_log("WARNING: stealing into talloc child at %s\n", location);
|
|---|
| 969 | }
|
|---|
| 970 | #endif
|
|---|
| 971 |
|
|---|
| 972 | return _talloc_steal_internal(new_ctx, ptr);
|
|---|
| 973 | }
|
|---|
| 974 |
|
|---|
| 975 | /*
|
|---|
| 976 | this is like a talloc_steal(), but you must supply the old
|
|---|
| 977 | parent. This resolves the ambiguity in a talloc_steal() which is
|
|---|
| 978 | called on a context that has more than one parent (via references)
|
|---|
| 979 |
|
|---|
| 980 | The old parent can be either a reference or a parent
|
|---|
| 981 | */
|
|---|
| 982 | _PUBLIC_ void *talloc_reparent(const void *old_parent, const void *new_parent, const void *ptr)
|
|---|
| 983 | {
|
|---|
| 984 | struct talloc_chunk *tc;
|
|---|
| 985 | struct talloc_reference_handle *h;
|
|---|
| 986 |
|
|---|
| 987 | if (unlikely(ptr == NULL)) {
|
|---|
| 988 | return NULL;
|
|---|
| 989 | }
|
|---|
| 990 |
|
|---|
| 991 | if (old_parent == talloc_parent(ptr)) {
|
|---|
| 992 | return _talloc_steal_internal(new_parent, ptr);
|
|---|
| 993 | }
|
|---|
| 994 |
|
|---|
| 995 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 996 | for (h=tc->refs;h;h=h->next) {
|
|---|
| 997 | if (talloc_parent(h) == old_parent) {
|
|---|
| 998 | if (_talloc_steal_internal(new_parent, h) != h) {
|
|---|
| 999 | return NULL;
|
|---|
| 1000 | }
|
|---|
| 1001 | return discard_const_p(void, ptr);
|
|---|
| 1002 | }
|
|---|
| 1003 | }
|
|---|
| 1004 |
|
|---|
| 1005 | /* it wasn't a parent */
|
|---|
| 1006 | return NULL;
|
|---|
| 1007 | }
|
|---|
| 1008 |
|
|---|
| 1009 | /*
|
|---|
| 1010 | remove a secondary reference to a pointer. This undo's what
|
|---|
| 1011 | talloc_reference() has done. The context and pointer arguments
|
|---|
| 1012 | must match those given to a talloc_reference()
|
|---|
| 1013 | */
|
|---|
| 1014 | static inline int talloc_unreference(const void *context, const void *ptr)
|
|---|
| 1015 | {
|
|---|
| 1016 | struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1017 | struct talloc_reference_handle *h;
|
|---|
| 1018 |
|
|---|
| 1019 | if (unlikely(context == NULL)) {
|
|---|
| 1020 | context = null_context;
|
|---|
| 1021 | }
|
|---|
| 1022 |
|
|---|
| 1023 | for (h=tc->refs;h;h=h->next) {
|
|---|
| 1024 | struct talloc_chunk *p = talloc_parent_chunk(h);
|
|---|
| 1025 | if (p == NULL) {
|
|---|
| 1026 | if (context == NULL) break;
|
|---|
| 1027 | } else if (TC_PTR_FROM_CHUNK(p) == context) {
|
|---|
| 1028 | break;
|
|---|
| 1029 | }
|
|---|
| 1030 | }
|
|---|
| 1031 | if (h == NULL) {
|
|---|
| 1032 | return -1;
|
|---|
| 1033 | }
|
|---|
| 1034 |
|
|---|
| 1035 | return _talloc_free_internal(h, __location__);
|
|---|
| 1036 | }
|
|---|
| 1037 |
|
|---|
| 1038 | /*
|
|---|
| 1039 | remove a specific parent context from a pointer. This is a more
|
|---|
| 1040 | controlled varient of talloc_free()
|
|---|
| 1041 | */
|
|---|
| 1042 | _PUBLIC_ int talloc_unlink(const void *context, void *ptr)
|
|---|
| 1043 | {
|
|---|
| 1044 | struct talloc_chunk *tc_p, *new_p;
|
|---|
| 1045 | void *new_parent;
|
|---|
| 1046 |
|
|---|
| 1047 | if (ptr == NULL) {
|
|---|
| 1048 | return -1;
|
|---|
| 1049 | }
|
|---|
| 1050 |
|
|---|
| 1051 | if (context == NULL) {
|
|---|
| 1052 | context = null_context;
|
|---|
| 1053 | }
|
|---|
| 1054 |
|
|---|
| 1055 | if (talloc_unreference(context, ptr) == 0) {
|
|---|
| 1056 | return 0;
|
|---|
| 1057 | }
|
|---|
| 1058 |
|
|---|
| 1059 | if (context == NULL) {
|
|---|
| 1060 | if (talloc_parent_chunk(ptr) != NULL) {
|
|---|
| 1061 | return -1;
|
|---|
| 1062 | }
|
|---|
| 1063 | } else {
|
|---|
| 1064 | if (talloc_chunk_from_ptr(context) != talloc_parent_chunk(ptr)) {
|
|---|
| 1065 | return -1;
|
|---|
| 1066 | }
|
|---|
| 1067 | }
|
|---|
| 1068 |
|
|---|
| 1069 | tc_p = talloc_chunk_from_ptr(ptr);
|
|---|
| 1070 |
|
|---|
| 1071 | if (tc_p->refs == NULL) {
|
|---|
| 1072 | return _talloc_free_internal(ptr, __location__);
|
|---|
| 1073 | }
|
|---|
| 1074 |
|
|---|
| 1075 | new_p = talloc_parent_chunk(tc_p->refs);
|
|---|
| 1076 | if (new_p) {
|
|---|
| 1077 | new_parent = TC_PTR_FROM_CHUNK(new_p);
|
|---|
| 1078 | } else {
|
|---|
| 1079 | new_parent = NULL;
|
|---|
| 1080 | }
|
|---|
| 1081 |
|
|---|
| 1082 | if (talloc_unreference(new_parent, ptr) != 0) {
|
|---|
| 1083 | return -1;
|
|---|
| 1084 | }
|
|---|
| 1085 |
|
|---|
| 1086 | _talloc_steal_internal(new_parent, ptr);
|
|---|
| 1087 |
|
|---|
| 1088 | return 0;
|
|---|
| 1089 | }
|
|---|
| 1090 |
|
|---|
| 1091 | /*
|
|---|
| 1092 | add a name to an existing pointer - va_list version
|
|---|
| 1093 | */
|
|---|
| 1094 | static inline const char *talloc_set_name_v(const void *ptr, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0);
|
|---|
| 1095 |
|
|---|
| 1096 | static inline const char *talloc_set_name_v(const void *ptr, const char *fmt, va_list ap)
|
|---|
| 1097 | {
|
|---|
| 1098 | struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1099 | tc->name = talloc_vasprintf(ptr, fmt, ap);
|
|---|
| 1100 | if (likely(tc->name)) {
|
|---|
| 1101 | _talloc_set_name_const(tc->name, ".name");
|
|---|
| 1102 | }
|
|---|
| 1103 | return tc->name;
|
|---|
| 1104 | }
|
|---|
| 1105 |
|
|---|
| 1106 | /*
|
|---|
| 1107 | add a name to an existing pointer
|
|---|
| 1108 | */
|
|---|
| 1109 | _PUBLIC_ const char *talloc_set_name(const void *ptr, const char *fmt, ...)
|
|---|
| 1110 | {
|
|---|
| 1111 | const char *name;
|
|---|
| 1112 | va_list ap;
|
|---|
| 1113 | va_start(ap, fmt);
|
|---|
| 1114 | name = talloc_set_name_v(ptr, fmt, ap);
|
|---|
| 1115 | va_end(ap);
|
|---|
| 1116 | return name;
|
|---|
| 1117 | }
|
|---|
| 1118 |
|
|---|
| 1119 |
|
|---|
| 1120 | /*
|
|---|
| 1121 | create a named talloc pointer. Any talloc pointer can be named, and
|
|---|
| 1122 | talloc_named() operates just like talloc() except that it allows you
|
|---|
| 1123 | to name the pointer.
|
|---|
| 1124 | */
|
|---|
| 1125 | _PUBLIC_ void *talloc_named(const void *context, size_t size, const char *fmt, ...)
|
|---|
| 1126 | {
|
|---|
| 1127 | va_list ap;
|
|---|
| 1128 | void *ptr;
|
|---|
| 1129 | const char *name;
|
|---|
| 1130 |
|
|---|
| 1131 | ptr = __talloc(context, size);
|
|---|
| 1132 | if (unlikely(ptr == NULL)) return NULL;
|
|---|
| 1133 |
|
|---|
| 1134 | va_start(ap, fmt);
|
|---|
| 1135 | name = talloc_set_name_v(ptr, fmt, ap);
|
|---|
| 1136 | va_end(ap);
|
|---|
| 1137 |
|
|---|
| 1138 | if (unlikely(name == NULL)) {
|
|---|
| 1139 | _talloc_free_internal(ptr, __location__);
|
|---|
| 1140 | return NULL;
|
|---|
| 1141 | }
|
|---|
| 1142 |
|
|---|
| 1143 | return ptr;
|
|---|
| 1144 | }
|
|---|
| 1145 |
|
|---|
| 1146 | /*
|
|---|
| 1147 | return the name of a talloc ptr, or "UNNAMED"
|
|---|
| 1148 | */
|
|---|
| 1149 | _PUBLIC_ const char *talloc_get_name(const void *ptr)
|
|---|
| 1150 | {
|
|---|
| 1151 | struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1152 | if (unlikely(tc->name == TALLOC_MAGIC_REFERENCE)) {
|
|---|
| 1153 | return ".reference";
|
|---|
| 1154 | }
|
|---|
| 1155 | if (likely(tc->name)) {
|
|---|
| 1156 | return tc->name;
|
|---|
| 1157 | }
|
|---|
| 1158 | return "UNNAMED";
|
|---|
| 1159 | }
|
|---|
| 1160 |
|
|---|
| 1161 |
|
|---|
| 1162 | /*
|
|---|
| 1163 | check if a pointer has the given name. If it does, return the pointer,
|
|---|
| 1164 | otherwise return NULL
|
|---|
| 1165 | */
|
|---|
| 1166 | _PUBLIC_ void *talloc_check_name(const void *ptr, const char *name)
|
|---|
| 1167 | {
|
|---|
| 1168 | const char *pname;
|
|---|
| 1169 | if (unlikely(ptr == NULL)) return NULL;
|
|---|
| 1170 | pname = talloc_get_name(ptr);
|
|---|
| 1171 | if (likely(pname == name || strcmp(pname, name) == 0)) {
|
|---|
| 1172 | return discard_const_p(void, ptr);
|
|---|
| 1173 | }
|
|---|
| 1174 | return NULL;
|
|---|
| 1175 | }
|
|---|
| 1176 |
|
|---|
| 1177 | static void talloc_abort_type_missmatch(const char *location,
|
|---|
| 1178 | const char *name,
|
|---|
| 1179 | const char *expected)
|
|---|
| 1180 | {
|
|---|
| 1181 | const char *reason;
|
|---|
| 1182 |
|
|---|
| 1183 | reason = talloc_asprintf(NULL,
|
|---|
| 1184 | "%s: Type mismatch: name[%s] expected[%s]",
|
|---|
| 1185 | location,
|
|---|
| 1186 | name?name:"NULL",
|
|---|
| 1187 | expected);
|
|---|
| 1188 | if (!reason) {
|
|---|
| 1189 | reason = "Type mismatch";
|
|---|
| 1190 | }
|
|---|
| 1191 |
|
|---|
| 1192 | talloc_abort(reason);
|
|---|
| 1193 | }
|
|---|
| 1194 |
|
|---|
| 1195 | _PUBLIC_ void *_talloc_get_type_abort(const void *ptr, const char *name, const char *location)
|
|---|
| 1196 | {
|
|---|
| 1197 | const char *pname;
|
|---|
| 1198 |
|
|---|
| 1199 | if (unlikely(ptr == NULL)) {
|
|---|
| 1200 | talloc_abort_type_missmatch(location, NULL, name);
|
|---|
| 1201 | return NULL;
|
|---|
| 1202 | }
|
|---|
| 1203 |
|
|---|
| 1204 | pname = talloc_get_name(ptr);
|
|---|
| 1205 | if (likely(pname == name || strcmp(pname, name) == 0)) {
|
|---|
| 1206 | return discard_const_p(void, ptr);
|
|---|
| 1207 | }
|
|---|
| 1208 |
|
|---|
| 1209 | talloc_abort_type_missmatch(location, pname, name);
|
|---|
| 1210 | return NULL;
|
|---|
| 1211 | }
|
|---|
| 1212 |
|
|---|
| 1213 | /*
|
|---|
| 1214 | this is for compatibility with older versions of talloc
|
|---|
| 1215 | */
|
|---|
| 1216 | _PUBLIC_ void *talloc_init(const char *fmt, ...)
|
|---|
| 1217 | {
|
|---|
| 1218 | va_list ap;
|
|---|
| 1219 | void *ptr;
|
|---|
| 1220 | const char *name;
|
|---|
| 1221 |
|
|---|
| 1222 | ptr = __talloc(NULL, 0);
|
|---|
| 1223 | if (unlikely(ptr == NULL)) return NULL;
|
|---|
| 1224 |
|
|---|
| 1225 | va_start(ap, fmt);
|
|---|
| 1226 | name = talloc_set_name_v(ptr, fmt, ap);
|
|---|
| 1227 | va_end(ap);
|
|---|
| 1228 |
|
|---|
| 1229 | if (unlikely(name == NULL)) {
|
|---|
| 1230 | _talloc_free_internal(ptr, __location__);
|
|---|
| 1231 | return NULL;
|
|---|
| 1232 | }
|
|---|
| 1233 |
|
|---|
| 1234 | return ptr;
|
|---|
| 1235 | }
|
|---|
| 1236 |
|
|---|
| 1237 | static inline void _talloc_free_children_internal(struct talloc_chunk *tc,
|
|---|
| 1238 | void *ptr,
|
|---|
| 1239 | const char *location)
|
|---|
| 1240 | {
|
|---|
| 1241 | while (tc->child) {
|
|---|
| 1242 | /* we need to work out who will own an abandoned child
|
|---|
| 1243 | if it cannot be freed. In priority order, the first
|
|---|
| 1244 | choice is owner of any remaining reference to this
|
|---|
| 1245 | pointer, the second choice is our parent, and the
|
|---|
| 1246 | final choice is the null context. */
|
|---|
| 1247 | void *child = TC_PTR_FROM_CHUNK(tc->child);
|
|---|
| 1248 | const void *new_parent = null_context;
|
|---|
| 1249 | struct talloc_chunk *old_parent = NULL;
|
|---|
| 1250 | if (unlikely(tc->child->refs)) {
|
|---|
| 1251 | struct talloc_chunk *p = talloc_parent_chunk(tc->child->refs);
|
|---|
| 1252 | if (p) new_parent = TC_PTR_FROM_CHUNK(p);
|
|---|
| 1253 | }
|
|---|
| 1254 | /* finding the parent here is potentially quite
|
|---|
| 1255 | expensive, but the alternative, which is to change
|
|---|
| 1256 | talloc to always have a valid tc->parent pointer,
|
|---|
| 1257 | makes realloc more expensive where there are a
|
|---|
| 1258 | large number of children.
|
|---|
| 1259 |
|
|---|
| 1260 | The reason we need the parent pointer here is that
|
|---|
| 1261 | if _talloc_free_internal() fails due to references
|
|---|
| 1262 | or a failing destructor we need to re-parent, but
|
|---|
| 1263 | the free call can invalidate the prev pointer.
|
|---|
| 1264 | */
|
|---|
| 1265 | if (new_parent == null_context && (tc->child->refs || tc->child->destructor)) {
|
|---|
| 1266 | old_parent = talloc_parent_chunk(ptr);
|
|---|
| 1267 | }
|
|---|
| 1268 | if (unlikely(_talloc_free_internal(child, location) == -1)) {
|
|---|
| 1269 | if (new_parent == null_context) {
|
|---|
| 1270 | struct talloc_chunk *p = old_parent;
|
|---|
| 1271 | if (p) new_parent = TC_PTR_FROM_CHUNK(p);
|
|---|
| 1272 | }
|
|---|
| 1273 | _talloc_steal_internal(new_parent, child);
|
|---|
| 1274 | }
|
|---|
| 1275 | }
|
|---|
| 1276 | }
|
|---|
| 1277 |
|
|---|
| 1278 | /*
|
|---|
| 1279 | this is a replacement for the Samba3 talloc_destroy_pool functionality. It
|
|---|
| 1280 | should probably not be used in new code. It's in here to keep the talloc
|
|---|
| 1281 | code consistent across Samba 3 and 4.
|
|---|
| 1282 | */
|
|---|
| 1283 | _PUBLIC_ void talloc_free_children(void *ptr)
|
|---|
| 1284 | {
|
|---|
| 1285 | struct talloc_chunk *tc;
|
|---|
| 1286 |
|
|---|
| 1287 | if (unlikely(ptr == NULL)) {
|
|---|
| 1288 | return;
|
|---|
| 1289 | }
|
|---|
| 1290 |
|
|---|
| 1291 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1292 |
|
|---|
| 1293 | _talloc_free_children_internal(tc, ptr, __location__);
|
|---|
| 1294 | }
|
|---|
| 1295 |
|
|---|
| 1296 | /*
|
|---|
| 1297 | Allocate a bit of memory as a child of an existing pointer
|
|---|
| 1298 | */
|
|---|
| 1299 | _PUBLIC_ void *_talloc(const void *context, size_t size)
|
|---|
| 1300 | {
|
|---|
| 1301 | return __talloc(context, size);
|
|---|
| 1302 | }
|
|---|
| 1303 |
|
|---|
| 1304 | /*
|
|---|
| 1305 | externally callable talloc_set_name_const()
|
|---|
| 1306 | */
|
|---|
| 1307 | _PUBLIC_ void talloc_set_name_const(const void *ptr, const char *name)
|
|---|
| 1308 | {
|
|---|
| 1309 | _talloc_set_name_const(ptr, name);
|
|---|
| 1310 | }
|
|---|
| 1311 |
|
|---|
| 1312 | /*
|
|---|
| 1313 | create a named talloc pointer. Any talloc pointer can be named, and
|
|---|
| 1314 | talloc_named() operates just like talloc() except that it allows you
|
|---|
| 1315 | to name the pointer.
|
|---|
| 1316 | */
|
|---|
| 1317 | _PUBLIC_ void *talloc_named_const(const void *context, size_t size, const char *name)
|
|---|
| 1318 | {
|
|---|
| 1319 | return _talloc_named_const(context, size, name);
|
|---|
| 1320 | }
|
|---|
| 1321 |
|
|---|
| 1322 | /*
|
|---|
| 1323 | free a talloc pointer. This also frees all child pointers of this
|
|---|
| 1324 | pointer recursively
|
|---|
| 1325 |
|
|---|
| 1326 | return 0 if the memory is actually freed, otherwise -1. The memory
|
|---|
| 1327 | will not be freed if the ref_count is > 1 or the destructor (if
|
|---|
| 1328 | any) returns non-zero
|
|---|
| 1329 | */
|
|---|
| 1330 | _PUBLIC_ int _talloc_free(void *ptr, const char *location)
|
|---|
| 1331 | {
|
|---|
| 1332 | struct talloc_chunk *tc;
|
|---|
| 1333 |
|
|---|
| 1334 | if (unlikely(ptr == NULL)) {
|
|---|
| 1335 | return -1;
|
|---|
| 1336 | }
|
|---|
| 1337 |
|
|---|
| 1338 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1339 |
|
|---|
| 1340 | if (unlikely(tc->refs != NULL)) {
|
|---|
| 1341 | struct talloc_reference_handle *h;
|
|---|
| 1342 |
|
|---|
| 1343 | if (talloc_parent(ptr) == null_context && tc->refs->next == NULL) {
|
|---|
| 1344 | /* in this case we do know which parent should
|
|---|
| 1345 | get this pointer, as there is really only
|
|---|
| 1346 | one parent */
|
|---|
| 1347 | return talloc_unlink(null_context, ptr);
|
|---|
| 1348 | }
|
|---|
| 1349 |
|
|---|
| 1350 | talloc_log("ERROR: talloc_free with references at %s\n",
|
|---|
| 1351 | location);
|
|---|
| 1352 |
|
|---|
| 1353 | for (h=tc->refs; h; h=h->next) {
|
|---|
| 1354 | talloc_log("\treference at %s\n",
|
|---|
| 1355 | h->location);
|
|---|
| 1356 | }
|
|---|
| 1357 | return -1;
|
|---|
| 1358 | }
|
|---|
| 1359 |
|
|---|
| 1360 | return _talloc_free_internal(ptr, location);
|
|---|
| 1361 | }
|
|---|
| 1362 |
|
|---|
| 1363 |
|
|---|
| 1364 |
|
|---|
| 1365 | /*
|
|---|
| 1366 | A talloc version of realloc. The context argument is only used if
|
|---|
| 1367 | ptr is NULL
|
|---|
| 1368 | */
|
|---|
| 1369 | _PUBLIC_ void *_talloc_realloc(const void *context, void *ptr, size_t size, const char *name)
|
|---|
| 1370 | {
|
|---|
| 1371 | struct talloc_chunk *tc;
|
|---|
| 1372 | void *new_ptr;
|
|---|
| 1373 | bool malloced = false;
|
|---|
| 1374 | struct talloc_chunk *pool_tc = NULL;
|
|---|
| 1375 |
|
|---|
| 1376 | /* size zero is equivalent to free() */
|
|---|
| 1377 | if (unlikely(size == 0)) {
|
|---|
| 1378 | talloc_unlink(context, ptr);
|
|---|
| 1379 | return NULL;
|
|---|
| 1380 | }
|
|---|
| 1381 |
|
|---|
| 1382 | if (unlikely(size >= MAX_TALLOC_SIZE)) {
|
|---|
| 1383 | return NULL;
|
|---|
| 1384 | }
|
|---|
| 1385 |
|
|---|
| 1386 | /* realloc(NULL) is equivalent to malloc() */
|
|---|
| 1387 | if (ptr == NULL) {
|
|---|
| 1388 | return _talloc_named_const(context, size, name);
|
|---|
| 1389 | }
|
|---|
| 1390 |
|
|---|
| 1391 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1392 |
|
|---|
| 1393 | /* don't allow realloc on referenced pointers */
|
|---|
| 1394 | if (unlikely(tc->refs)) {
|
|---|
| 1395 | return NULL;
|
|---|
| 1396 | }
|
|---|
| 1397 |
|
|---|
| 1398 | /* don't let anybody try to realloc a talloc_pool */
|
|---|
| 1399 | if (unlikely(tc->flags & TALLOC_FLAG_POOL)) {
|
|---|
| 1400 | return NULL;
|
|---|
| 1401 | }
|
|---|
| 1402 |
|
|---|
| 1403 | /* don't let anybody try to realloc a talloc_pool */
|
|---|
| 1404 | if (unlikely(tc->flags & TALLOC_FLAG_POOLMEM)) {
|
|---|
| 1405 | pool_tc = (struct talloc_chunk *)tc->pool;
|
|---|
| 1406 | }
|
|---|
| 1407 |
|
|---|
| 1408 | #if (ALWAYS_REALLOC == 0)
|
|---|
| 1409 | /* don't shrink if we have less than 1k to gain */
|
|---|
| 1410 | if (size < tc->size) {
|
|---|
| 1411 | if (pool_tc) {
|
|---|
| 1412 | void *next_tc = TC_POOLMEM_NEXT_CHUNK(tc);
|
|---|
| 1413 | TC_INVALIDATE_SHRINK_CHUNK(tc, size);
|
|---|
| 1414 | tc->size = size;
|
|---|
| 1415 | if (next_tc == pool_tc->pool) {
|
|---|
| 1416 | pool_tc->pool = TC_POOLMEM_NEXT_CHUNK(tc);
|
|---|
| 1417 | }
|
|---|
| 1418 | return ptr;
|
|---|
| 1419 | } else if ((tc->size - size) < 1024) {
|
|---|
| 1420 | /*
|
|---|
| 1421 | * if we call TC_INVALIDATE_SHRINK_CHUNK() here
|
|---|
| 1422 | * we would need to call TC_UNDEFINE_GROW_CHUNK()
|
|---|
| 1423 | * after each realloc call, which slows down
|
|---|
| 1424 | * testing a lot :-(.
|
|---|
| 1425 | *
|
|---|
| 1426 | * That is why we only mark memory as undefined here.
|
|---|
| 1427 | */
|
|---|
| 1428 | TC_UNDEFINE_SHRINK_CHUNK(tc, size);
|
|---|
| 1429 |
|
|---|
| 1430 | /* do not shrink if we have less than 1k to gain */
|
|---|
| 1431 | tc->size = size;
|
|---|
| 1432 | return ptr;
|
|---|
| 1433 | }
|
|---|
| 1434 | } else if (tc->size == size) {
|
|---|
| 1435 | /*
|
|---|
| 1436 | * do not change the pointer if it is exactly
|
|---|
| 1437 | * the same size.
|
|---|
| 1438 | */
|
|---|
| 1439 | return ptr;
|
|---|
| 1440 | }
|
|---|
| 1441 | #endif
|
|---|
| 1442 |
|
|---|
| 1443 | /* by resetting magic we catch users of the old memory */
|
|---|
| 1444 | tc->flags |= TALLOC_FLAG_FREE;
|
|---|
| 1445 |
|
|---|
| 1446 | #if ALWAYS_REALLOC
|
|---|
| 1447 | if (pool_tc) {
|
|---|
| 1448 | new_ptr = talloc_alloc_pool(tc, size + TC_HDR_SIZE);
|
|---|
| 1449 | *talloc_pool_objectcount(pool_tc) -= 1;
|
|---|
| 1450 |
|
|---|
| 1451 | if (new_ptr == NULL) {
|
|---|
| 1452 | new_ptr = malloc(TC_HDR_SIZE+size);
|
|---|
| 1453 | malloced = true;
|
|---|
| 1454 | }
|
|---|
| 1455 |
|
|---|
| 1456 | if (new_ptr) {
|
|---|
| 1457 | memcpy(new_ptr, tc, MIN(tc->size,size) + TC_HDR_SIZE);
|
|---|
| 1458 | TC_INVALIDATE_FULL_CHUNK(tc);
|
|---|
| 1459 | }
|
|---|
| 1460 | } else {
|
|---|
| 1461 | new_ptr = malloc(size + TC_HDR_SIZE);
|
|---|
| 1462 | if (new_ptr) {
|
|---|
| 1463 | memcpy(new_ptr, tc, MIN(tc->size, size) + TC_HDR_SIZE);
|
|---|
| 1464 | free(tc);
|
|---|
| 1465 | }
|
|---|
| 1466 | }
|
|---|
| 1467 | #else
|
|---|
| 1468 | if (pool_tc) {
|
|---|
| 1469 | void *next_tc = TC_POOLMEM_NEXT_CHUNK(tc);
|
|---|
| 1470 | size_t old_chunk_size = TC_POOLMEM_CHUNK_SIZE(tc);
|
|---|
| 1471 | size_t new_chunk_size = TC_ALIGN16(TC_HDR_SIZE + size);
|
|---|
| 1472 | size_t space_needed;
|
|---|
| 1473 | size_t space_left;
|
|---|
| 1474 | unsigned int chunk_count = *talloc_pool_objectcount(pool_tc);
|
|---|
| 1475 |
|
|---|
| 1476 | if (!(pool_tc->flags & TALLOC_FLAG_FREE)) {
|
|---|
| 1477 | chunk_count -= 1;
|
|---|
| 1478 | }
|
|---|
| 1479 |
|
|---|
| 1480 | if (chunk_count == 1) {
|
|---|
| 1481 | /*
|
|---|
| 1482 | * optimize for the case where 'tc' is the only
|
|---|
| 1483 | * chunk in the pool.
|
|---|
| 1484 | */
|
|---|
| 1485 | space_needed = new_chunk_size;
|
|---|
| 1486 | space_left = pool_tc->size - TALLOC_POOL_HDR_SIZE;
|
|---|
| 1487 |
|
|---|
| 1488 | if (space_left >= space_needed) {
|
|---|
| 1489 | size_t old_used = TC_HDR_SIZE + tc->size;
|
|---|
| 1490 | size_t new_used = TC_HDR_SIZE + size;
|
|---|
| 1491 | pool_tc->pool = TC_POOL_FIRST_CHUNK(pool_tc);
|
|---|
| 1492 | #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_UNDEFINED)
|
|---|
| 1493 | /*
|
|---|
| 1494 | * we need to prepare the memmove into
|
|---|
| 1495 | * the unaccessable area.
|
|---|
| 1496 | */
|
|---|
| 1497 | {
|
|---|
| 1498 | size_t diff = PTR_DIFF(tc, pool_tc->pool);
|
|---|
| 1499 | size_t flen = MIN(diff, old_used);
|
|---|
| 1500 | char *fptr = (char *)pool_tc->pool;
|
|---|
| 1501 | VALGRIND_MAKE_MEM_UNDEFINED(fptr, flen);
|
|---|
| 1502 | }
|
|---|
| 1503 | #endif
|
|---|
| 1504 | memmove(pool_tc->pool, tc, old_used);
|
|---|
| 1505 | new_ptr = pool_tc->pool;
|
|---|
| 1506 |
|
|---|
| 1507 | tc = (struct talloc_chunk *)new_ptr;
|
|---|
| 1508 | TC_UNDEFINE_GROW_CHUNK(tc, size);
|
|---|
| 1509 |
|
|---|
| 1510 | /*
|
|---|
| 1511 | * first we do not align the pool pointer
|
|---|
| 1512 | * because we want to invalidate the padding
|
|---|
| 1513 | * too.
|
|---|
| 1514 | */
|
|---|
| 1515 | pool_tc->pool = new_used + (char *)new_ptr;
|
|---|
| 1516 | TC_INVALIDATE_POOL(pool_tc);
|
|---|
| 1517 |
|
|---|
| 1518 | /* now the aligned pointer */
|
|---|
| 1519 | pool_tc->pool = new_chunk_size + (char *)new_ptr;
|
|---|
| 1520 | goto got_new_ptr;
|
|---|
| 1521 | }
|
|---|
| 1522 |
|
|---|
| 1523 | next_tc = NULL;
|
|---|
| 1524 | }
|
|---|
| 1525 |
|
|---|
| 1526 | if (new_chunk_size == old_chunk_size) {
|
|---|
| 1527 | TC_UNDEFINE_GROW_CHUNK(tc, size);
|
|---|
| 1528 | tc->flags &= ~TALLOC_FLAG_FREE;
|
|---|
| 1529 | tc->size = size;
|
|---|
| 1530 | return ptr;
|
|---|
| 1531 | }
|
|---|
| 1532 |
|
|---|
| 1533 | if (next_tc == pool_tc->pool) {
|
|---|
| 1534 | /*
|
|---|
| 1535 | * optimize for the case where 'tc' is the last
|
|---|
| 1536 | * chunk in the pool.
|
|---|
| 1537 | */
|
|---|
| 1538 | space_needed = new_chunk_size - old_chunk_size;
|
|---|
| 1539 | space_left = TC_POOL_SPACE_LEFT(pool_tc);
|
|---|
| 1540 |
|
|---|
| 1541 | if (space_left >= space_needed) {
|
|---|
| 1542 | TC_UNDEFINE_GROW_CHUNK(tc, size);
|
|---|
| 1543 | tc->flags &= ~TALLOC_FLAG_FREE;
|
|---|
| 1544 | tc->size = size;
|
|---|
| 1545 | pool_tc->pool = TC_POOLMEM_NEXT_CHUNK(tc);
|
|---|
| 1546 | return ptr;
|
|---|
| 1547 | }
|
|---|
| 1548 | }
|
|---|
| 1549 |
|
|---|
| 1550 | new_ptr = talloc_alloc_pool(tc, size + TC_HDR_SIZE);
|
|---|
| 1551 |
|
|---|
| 1552 | if (new_ptr == NULL) {
|
|---|
| 1553 | new_ptr = malloc(TC_HDR_SIZE+size);
|
|---|
| 1554 | malloced = true;
|
|---|
| 1555 | }
|
|---|
| 1556 |
|
|---|
| 1557 | if (new_ptr) {
|
|---|
| 1558 | memcpy(new_ptr, tc, MIN(tc->size,size) + TC_HDR_SIZE);
|
|---|
| 1559 |
|
|---|
| 1560 | _talloc_free_poolmem(tc, __location__ "_talloc_realloc");
|
|---|
| 1561 | }
|
|---|
| 1562 | }
|
|---|
| 1563 | else {
|
|---|
| 1564 | new_ptr = realloc(tc, size + TC_HDR_SIZE);
|
|---|
| 1565 | }
|
|---|
| 1566 | got_new_ptr:
|
|---|
| 1567 | #endif
|
|---|
| 1568 | if (unlikely(!new_ptr)) {
|
|---|
| 1569 | tc->flags &= ~TALLOC_FLAG_FREE;
|
|---|
| 1570 | return NULL;
|
|---|
| 1571 | }
|
|---|
| 1572 |
|
|---|
| 1573 | tc = (struct talloc_chunk *)new_ptr;
|
|---|
| 1574 | tc->flags &= ~TALLOC_FLAG_FREE;
|
|---|
| 1575 | if (malloced) {
|
|---|
| 1576 | tc->flags &= ~TALLOC_FLAG_POOLMEM;
|
|---|
| 1577 | }
|
|---|
| 1578 | if (tc->parent) {
|
|---|
| 1579 | tc->parent->child = tc;
|
|---|
| 1580 | }
|
|---|
| 1581 | if (tc->child) {
|
|---|
| 1582 | tc->child->parent = tc;
|
|---|
| 1583 | }
|
|---|
| 1584 |
|
|---|
| 1585 | if (tc->prev) {
|
|---|
| 1586 | tc->prev->next = tc;
|
|---|
| 1587 | }
|
|---|
| 1588 | if (tc->next) {
|
|---|
| 1589 | tc->next->prev = tc;
|
|---|
| 1590 | }
|
|---|
| 1591 |
|
|---|
| 1592 | tc->size = size;
|
|---|
| 1593 | _talloc_set_name_const(TC_PTR_FROM_CHUNK(tc), name);
|
|---|
| 1594 |
|
|---|
| 1595 | return TC_PTR_FROM_CHUNK(tc);
|
|---|
| 1596 | }
|
|---|
| 1597 |
|
|---|
| 1598 | /*
|
|---|
| 1599 | a wrapper around talloc_steal() for situations where you are moving a pointer
|
|---|
| 1600 | between two structures, and want the old pointer to be set to NULL
|
|---|
| 1601 | */
|
|---|
| 1602 | _PUBLIC_ void *_talloc_move(const void *new_ctx, const void *_pptr)
|
|---|
| 1603 | {
|
|---|
| 1604 | const void **pptr = discard_const_p(const void *,_pptr);
|
|---|
| 1605 | void *ret = talloc_steal(new_ctx, discard_const_p(void, *pptr));
|
|---|
| 1606 | (*pptr) = NULL;
|
|---|
| 1607 | return ret;
|
|---|
| 1608 | }
|
|---|
| 1609 |
|
|---|
| 1610 | /*
|
|---|
| 1611 | return the total size of a talloc pool (subtree)
|
|---|
| 1612 | */
|
|---|
| 1613 | _PUBLIC_ size_t talloc_total_size(const void *ptr)
|
|---|
| 1614 | {
|
|---|
| 1615 | size_t total = 0;
|
|---|
| 1616 | struct talloc_chunk *c, *tc;
|
|---|
| 1617 |
|
|---|
| 1618 | if (ptr == NULL) {
|
|---|
| 1619 | ptr = null_context;
|
|---|
| 1620 | }
|
|---|
| 1621 | if (ptr == NULL) {
|
|---|
| 1622 | return 0;
|
|---|
| 1623 | }
|
|---|
| 1624 |
|
|---|
| 1625 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1626 |
|
|---|
| 1627 | if (tc->flags & TALLOC_FLAG_LOOP) {
|
|---|
| 1628 | return 0;
|
|---|
| 1629 | }
|
|---|
| 1630 |
|
|---|
| 1631 | tc->flags |= TALLOC_FLAG_LOOP;
|
|---|
| 1632 |
|
|---|
| 1633 | if (likely(tc->name != TALLOC_MAGIC_REFERENCE)) {
|
|---|
| 1634 | total = tc->size;
|
|---|
| 1635 | }
|
|---|
| 1636 | for (c=tc->child;c;c=c->next) {
|
|---|
| 1637 | total += talloc_total_size(TC_PTR_FROM_CHUNK(c));
|
|---|
| 1638 | }
|
|---|
| 1639 |
|
|---|
| 1640 | tc->flags &= ~TALLOC_FLAG_LOOP;
|
|---|
| 1641 |
|
|---|
| 1642 | return total;
|
|---|
| 1643 | }
|
|---|
| 1644 |
|
|---|
| 1645 | /*
|
|---|
| 1646 | return the total number of blocks in a talloc pool (subtree)
|
|---|
| 1647 | */
|
|---|
| 1648 | _PUBLIC_ size_t talloc_total_blocks(const void *ptr)
|
|---|
| 1649 | {
|
|---|
| 1650 | size_t total = 0;
|
|---|
| 1651 | struct talloc_chunk *c, *tc;
|
|---|
| 1652 |
|
|---|
| 1653 | if (ptr == NULL) {
|
|---|
| 1654 | ptr = null_context;
|
|---|
| 1655 | }
|
|---|
| 1656 | if (ptr == NULL) {
|
|---|
| 1657 | return 0;
|
|---|
| 1658 | }
|
|---|
| 1659 |
|
|---|
| 1660 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1661 |
|
|---|
| 1662 | if (tc->flags & TALLOC_FLAG_LOOP) {
|
|---|
| 1663 | return 0;
|
|---|
| 1664 | }
|
|---|
| 1665 |
|
|---|
| 1666 | tc->flags |= TALLOC_FLAG_LOOP;
|
|---|
| 1667 |
|
|---|
| 1668 | total++;
|
|---|
| 1669 | for (c=tc->child;c;c=c->next) {
|
|---|
| 1670 | total += talloc_total_blocks(TC_PTR_FROM_CHUNK(c));
|
|---|
| 1671 | }
|
|---|
| 1672 |
|
|---|
| 1673 | tc->flags &= ~TALLOC_FLAG_LOOP;
|
|---|
| 1674 |
|
|---|
| 1675 | return total;
|
|---|
| 1676 | }
|
|---|
| 1677 |
|
|---|
| 1678 | /*
|
|---|
| 1679 | return the number of external references to a pointer
|
|---|
| 1680 | */
|
|---|
| 1681 | _PUBLIC_ size_t talloc_reference_count(const void *ptr)
|
|---|
| 1682 | {
|
|---|
| 1683 | struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1684 | struct talloc_reference_handle *h;
|
|---|
| 1685 | size_t ret = 0;
|
|---|
| 1686 |
|
|---|
| 1687 | for (h=tc->refs;h;h=h->next) {
|
|---|
| 1688 | ret++;
|
|---|
| 1689 | }
|
|---|
| 1690 | return ret;
|
|---|
| 1691 | }
|
|---|
| 1692 |
|
|---|
| 1693 | /*
|
|---|
| 1694 | report on memory usage by all children of a pointer, giving a full tree view
|
|---|
| 1695 | */
|
|---|
| 1696 | _PUBLIC_ void talloc_report_depth_cb(const void *ptr, int depth, int max_depth,
|
|---|
| 1697 | void (*callback)(const void *ptr,
|
|---|
| 1698 | int depth, int max_depth,
|
|---|
| 1699 | int is_ref,
|
|---|
| 1700 | void *private_data),
|
|---|
| 1701 | void *private_data)
|
|---|
| 1702 | {
|
|---|
| 1703 | struct talloc_chunk *c, *tc;
|
|---|
| 1704 |
|
|---|
| 1705 | if (ptr == NULL) {
|
|---|
| 1706 | ptr = null_context;
|
|---|
| 1707 | }
|
|---|
| 1708 | if (ptr == NULL) return;
|
|---|
| 1709 |
|
|---|
| 1710 | tc = talloc_chunk_from_ptr(ptr);
|
|---|
| 1711 |
|
|---|
| 1712 | if (tc->flags & TALLOC_FLAG_LOOP) {
|
|---|
| 1713 | return;
|
|---|
| 1714 | }
|
|---|
| 1715 |
|
|---|
| 1716 | callback(ptr, depth, max_depth, 0, private_data);
|
|---|
| 1717 |
|
|---|
| 1718 | if (max_depth >= 0 && depth >= max_depth) {
|
|---|
| 1719 | return;
|
|---|
| 1720 | }
|
|---|
| 1721 |
|
|---|
| 1722 | tc->flags |= TALLOC_FLAG_LOOP;
|
|---|
| 1723 | for (c=tc->child;c;c=c->next) {
|
|---|
| 1724 | if (c->name == TALLOC_MAGIC_REFERENCE) {
|
|---|
| 1725 | struct talloc_reference_handle *h = (struct talloc_reference_handle *)TC_PTR_FROM_CHUNK(c);
|
|---|
| 1726 | callback(h->ptr, depth + 1, max_depth, 1, private_data);
|
|---|
| 1727 | } else {
|
|---|
| 1728 | talloc_report_depth_cb(TC_PTR_FROM_CHUNK(c), depth + 1, max_depth, callback, private_data);
|
|---|
| 1729 | }
|
|---|
| 1730 | }
|
|---|
| 1731 | tc->flags &= ~TALLOC_FLAG_LOOP;
|
|---|
| 1732 | }
|
|---|
| 1733 |
|
|---|
| 1734 | static void talloc_report_depth_FILE_helper(const void *ptr, int depth, int max_depth, int is_ref, void *_f)
|
|---|
| 1735 | {
|
|---|
| 1736 | const char *name = talloc_get_name(ptr);
|
|---|
| 1737 | FILE *f = (FILE *)_f;
|
|---|
| 1738 |
|
|---|
| 1739 | if (is_ref) {
|
|---|
| 1740 | fprintf(f, "%*sreference to: %s\n", depth*4, "", name);
|
|---|
| 1741 | return;
|
|---|
| 1742 | }
|
|---|
| 1743 |
|
|---|
| 1744 | if (depth == 0) {
|
|---|
| 1745 | fprintf(f,"%stalloc report on '%s' (total %6lu bytes in %3lu blocks)\n",
|
|---|
| 1746 | (max_depth < 0 ? "full " :""), name,
|
|---|
| 1747 | (unsigned long)talloc_total_size(ptr),
|
|---|
| 1748 | (unsigned long)talloc_total_blocks(ptr));
|
|---|
| 1749 | return;
|
|---|
| 1750 | }
|
|---|
| 1751 |
|
|---|
| 1752 | fprintf(f, "%*s%-30s contains %6lu bytes in %3lu blocks (ref %d) %p\n",
|
|---|
| 1753 | depth*4, "",
|
|---|
| 1754 | name,
|
|---|
| 1755 | (unsigned long)talloc_total_size(ptr),
|
|---|
| 1756 | (unsigned long)talloc_total_blocks(ptr),
|
|---|
| 1757 | (int)talloc_reference_count(ptr), ptr);
|
|---|
| 1758 |
|
|---|
| 1759 | #if 0
|
|---|
| 1760 | fprintf(f, "content: ");
|
|---|
| 1761 | if (talloc_total_size(ptr)) {
|
|---|
| 1762 | int tot = talloc_total_size(ptr);
|
|---|
| 1763 | int i;
|
|---|
| 1764 |
|
|---|
| 1765 | for (i = 0; i < tot; i++) {
|
|---|
| 1766 | if ((((char *)ptr)[i] > 31) && (((char *)ptr)[i] < 126)) {
|
|---|
| 1767 | fprintf(f, "%c", ((char *)ptr)[i]);
|
|---|
| 1768 | } else {
|
|---|
| 1769 | fprintf(f, "~%02x", ((char *)ptr)[i]);
|
|---|
| 1770 | }
|
|---|
| 1771 | }
|
|---|
| 1772 | }
|
|---|
| 1773 | fprintf(f, "\n");
|
|---|
| 1774 | #endif
|
|---|
| 1775 | }
|
|---|
| 1776 |
|
|---|
| 1777 | /*
|
|---|
| 1778 | report on memory usage by all children of a pointer, giving a full tree view
|
|---|
| 1779 | */
|
|---|
| 1780 | _PUBLIC_ void talloc_report_depth_file(const void *ptr, int depth, int max_depth, FILE *f)
|
|---|
| 1781 | {
|
|---|
| 1782 | if (f) {
|
|---|
| 1783 | talloc_report_depth_cb(ptr, depth, max_depth, talloc_report_depth_FILE_helper, f);
|
|---|
| 1784 | fflush(f);
|
|---|
| 1785 | }
|
|---|
| 1786 | }
|
|---|
| 1787 |
|
|---|
| 1788 | /*
|
|---|
| 1789 | report on memory usage by all children of a pointer, giving a full tree view
|
|---|
| 1790 | */
|
|---|
| 1791 | _PUBLIC_ void talloc_report_full(const void *ptr, FILE *f)
|
|---|
| 1792 | {
|
|---|
| 1793 | talloc_report_depth_file(ptr, 0, -1, f);
|
|---|
| 1794 | }
|
|---|
| 1795 |
|
|---|
| 1796 | /*
|
|---|
| 1797 | report on memory usage by all children of a pointer
|
|---|
| 1798 | */
|
|---|
| 1799 | _PUBLIC_ void talloc_report(const void *ptr, FILE *f)
|
|---|
| 1800 | {
|
|---|
| 1801 | talloc_report_depth_file(ptr, 0, 1, f);
|
|---|
| 1802 | }
|
|---|
| 1803 |
|
|---|
| 1804 | /*
|
|---|
| 1805 | report on any memory hanging off the null context
|
|---|
| 1806 | */
|
|---|
| 1807 | static void talloc_report_null(void)
|
|---|
| 1808 | {
|
|---|
| 1809 | if (talloc_total_size(null_context) != 0) {
|
|---|
| 1810 | talloc_report(null_context, stderr);
|
|---|
| 1811 | }
|
|---|
| 1812 | }
|
|---|
| 1813 |
|
|---|
| 1814 | /*
|
|---|
| 1815 | report on any memory hanging off the null context
|
|---|
| 1816 | */
|
|---|
| 1817 | static void talloc_report_null_full(void)
|
|---|
| 1818 | {
|
|---|
| 1819 | if (talloc_total_size(null_context) != 0) {
|
|---|
| 1820 | talloc_report_full(null_context, stderr);
|
|---|
| 1821 | }
|
|---|
| 1822 | }
|
|---|
| 1823 |
|
|---|
| 1824 | /*
|
|---|
| 1825 | enable tracking of the NULL context
|
|---|
| 1826 | */
|
|---|
| 1827 | _PUBLIC_ void talloc_enable_null_tracking(void)
|
|---|
| 1828 | {
|
|---|
| 1829 | if (null_context == NULL) {
|
|---|
| 1830 | null_context = _talloc_named_const(NULL, 0, "null_context");
|
|---|
| 1831 | if (autofree_context != NULL) {
|
|---|
| 1832 | talloc_reparent(NULL, null_context, autofree_context);
|
|---|
| 1833 | }
|
|---|
| 1834 | }
|
|---|
| 1835 | }
|
|---|
| 1836 |
|
|---|
| 1837 | /*
|
|---|
| 1838 | enable tracking of the NULL context, not moving the autofree context
|
|---|
| 1839 | into the NULL context. This is needed for the talloc testsuite
|
|---|
| 1840 | */
|
|---|
| 1841 | _PUBLIC_ void talloc_enable_null_tracking_no_autofree(void)
|
|---|
| 1842 | {
|
|---|
| 1843 | if (null_context == NULL) {
|
|---|
| 1844 | null_context = _talloc_named_const(NULL, 0, "null_context");
|
|---|
| 1845 | }
|
|---|
| 1846 | }
|
|---|
| 1847 |
|
|---|
| 1848 | /*
|
|---|
| 1849 | disable tracking of the NULL context
|
|---|
| 1850 | */
|
|---|
| 1851 | _PUBLIC_ void talloc_disable_null_tracking(void)
|
|---|
| 1852 | {
|
|---|
| 1853 | if (null_context != NULL) {
|
|---|
| 1854 | /* we have to move any children onto the real NULL
|
|---|
| 1855 | context */
|
|---|
| 1856 | struct talloc_chunk *tc, *tc2;
|
|---|
| 1857 | tc = talloc_chunk_from_ptr(null_context);
|
|---|
| 1858 | for (tc2 = tc->child; tc2; tc2=tc2->next) {
|
|---|
| 1859 | if (tc2->parent == tc) tc2->parent = NULL;
|
|---|
| 1860 | if (tc2->prev == tc) tc2->prev = NULL;
|
|---|
| 1861 | }
|
|---|
| 1862 | for (tc2 = tc->next; tc2; tc2=tc2->next) {
|
|---|
| 1863 | if (tc2->parent == tc) tc2->parent = NULL;
|
|---|
| 1864 | if (tc2->prev == tc) tc2->prev = NULL;
|
|---|
| 1865 | }
|
|---|
| 1866 | tc->child = NULL;
|
|---|
| 1867 | tc->next = NULL;
|
|---|
| 1868 | }
|
|---|
| 1869 | talloc_free(null_context);
|
|---|
| 1870 | null_context = NULL;
|
|---|
| 1871 | }
|
|---|
| 1872 |
|
|---|
| 1873 | /*
|
|---|
| 1874 | enable leak reporting on exit
|
|---|
| 1875 | */
|
|---|
| 1876 | _PUBLIC_ void talloc_enable_leak_report(void)
|
|---|
| 1877 | {
|
|---|
| 1878 | talloc_enable_null_tracking();
|
|---|
| 1879 | atexit(talloc_report_null);
|
|---|
| 1880 | }
|
|---|
| 1881 |
|
|---|
| 1882 | /*
|
|---|
| 1883 | enable full leak reporting on exit
|
|---|
| 1884 | */
|
|---|
| 1885 | _PUBLIC_ void talloc_enable_leak_report_full(void)
|
|---|
| 1886 | {
|
|---|
| 1887 | talloc_enable_null_tracking();
|
|---|
| 1888 | atexit(talloc_report_null_full);
|
|---|
| 1889 | }
|
|---|
| 1890 |
|
|---|
| 1891 | /*
|
|---|
| 1892 | talloc and zero memory.
|
|---|
| 1893 | */
|
|---|
| 1894 | _PUBLIC_ void *_talloc_zero(const void *ctx, size_t size, const char *name)
|
|---|
| 1895 | {
|
|---|
| 1896 | void *p = _talloc_named_const(ctx, size, name);
|
|---|
| 1897 |
|
|---|
| 1898 | if (p) {
|
|---|
| 1899 | memset(p, '\0', size);
|
|---|
| 1900 | }
|
|---|
| 1901 |
|
|---|
| 1902 | return p;
|
|---|
| 1903 | }
|
|---|
| 1904 |
|
|---|
| 1905 | /*
|
|---|
| 1906 | memdup with a talloc.
|
|---|
| 1907 | */
|
|---|
| 1908 | _PUBLIC_ void *_talloc_memdup(const void *t, const void *p, size_t size, const char *name)
|
|---|
| 1909 | {
|
|---|
| 1910 | void *newp = _talloc_named_const(t, size, name);
|
|---|
| 1911 |
|
|---|
| 1912 | if (likely(newp)) {
|
|---|
| 1913 | memcpy(newp, p, size);
|
|---|
| 1914 | }
|
|---|
| 1915 |
|
|---|
| 1916 | return newp;
|
|---|
| 1917 | }
|
|---|
| 1918 |
|
|---|
| 1919 | static inline char *__talloc_strlendup(const void *t, const char *p, size_t len)
|
|---|
| 1920 | {
|
|---|
| 1921 | char *ret;
|
|---|
| 1922 |
|
|---|
| 1923 | ret = (char *)__talloc(t, len + 1);
|
|---|
| 1924 | if (unlikely(!ret)) return NULL;
|
|---|
| 1925 |
|
|---|
| 1926 | memcpy(ret, p, len);
|
|---|
| 1927 | ret[len] = 0;
|
|---|
| 1928 |
|
|---|
| 1929 | _talloc_set_name_const(ret, ret);
|
|---|
| 1930 | return ret;
|
|---|
| 1931 | }
|
|---|
| 1932 |
|
|---|
| 1933 | /*
|
|---|
| 1934 | strdup with a talloc
|
|---|
| 1935 | */
|
|---|
| 1936 | _PUBLIC_ char *talloc_strdup(const void *t, const char *p)
|
|---|
| 1937 | {
|
|---|
| 1938 | if (unlikely(!p)) return NULL;
|
|---|
| 1939 | return __talloc_strlendup(t, p, strlen(p));
|
|---|
| 1940 | }
|
|---|
| 1941 |
|
|---|
| 1942 | /*
|
|---|
| 1943 | strndup with a talloc
|
|---|
| 1944 | */
|
|---|
| 1945 | _PUBLIC_ char *talloc_strndup(const void *t, const char *p, size_t n)
|
|---|
| 1946 | {
|
|---|
| 1947 | if (unlikely(!p)) return NULL;
|
|---|
| 1948 | return __talloc_strlendup(t, p, strnlen(p, n));
|
|---|
| 1949 | }
|
|---|
| 1950 |
|
|---|
| 1951 | static inline char *__talloc_strlendup_append(char *s, size_t slen,
|
|---|
| 1952 | const char *a, size_t alen)
|
|---|
| 1953 | {
|
|---|
| 1954 | char *ret;
|
|---|
| 1955 |
|
|---|
| 1956 | ret = talloc_realloc(NULL, s, char, slen + alen + 1);
|
|---|
| 1957 | if (unlikely(!ret)) return NULL;
|
|---|
| 1958 |
|
|---|
| 1959 | /* append the string and the trailing \0 */
|
|---|
| 1960 | memcpy(&ret[slen], a, alen);
|
|---|
| 1961 | ret[slen+alen] = 0;
|
|---|
| 1962 |
|
|---|
| 1963 | _talloc_set_name_const(ret, ret);
|
|---|
| 1964 | return ret;
|
|---|
| 1965 | }
|
|---|
| 1966 |
|
|---|
| 1967 | /*
|
|---|
| 1968 | * Appends at the end of the string.
|
|---|
| 1969 | */
|
|---|
| 1970 | _PUBLIC_ char *talloc_strdup_append(char *s, const char *a)
|
|---|
| 1971 | {
|
|---|
| 1972 | if (unlikely(!s)) {
|
|---|
| 1973 | return talloc_strdup(NULL, a);
|
|---|
| 1974 | }
|
|---|
| 1975 |
|
|---|
| 1976 | if (unlikely(!a)) {
|
|---|
| 1977 | return s;
|
|---|
| 1978 | }
|
|---|
| 1979 |
|
|---|
| 1980 | return __talloc_strlendup_append(s, strlen(s), a, strlen(a));
|
|---|
| 1981 | }
|
|---|
| 1982 |
|
|---|
| 1983 | /*
|
|---|
| 1984 | * Appends at the end of the talloc'ed buffer,
|
|---|
| 1985 | * not the end of the string.
|
|---|
| 1986 | */
|
|---|
| 1987 | _PUBLIC_ char *talloc_strdup_append_buffer(char *s, const char *a)
|
|---|
| 1988 | {
|
|---|
| 1989 | size_t slen;
|
|---|
| 1990 |
|
|---|
| 1991 | if (unlikely(!s)) {
|
|---|
| 1992 | return talloc_strdup(NULL, a);
|
|---|
| 1993 | }
|
|---|
| 1994 |
|
|---|
| 1995 | if (unlikely(!a)) {
|
|---|
| 1996 | return s;
|
|---|
| 1997 | }
|
|---|
| 1998 |
|
|---|
| 1999 | slen = talloc_get_size(s);
|
|---|
| 2000 | if (likely(slen > 0)) {
|
|---|
| 2001 | slen--;
|
|---|
| 2002 | }
|
|---|
| 2003 |
|
|---|
| 2004 | return __talloc_strlendup_append(s, slen, a, strlen(a));
|
|---|
| 2005 | }
|
|---|
| 2006 |
|
|---|
| 2007 | /*
|
|---|
| 2008 | * Appends at the end of the string.
|
|---|
| 2009 | */
|
|---|
| 2010 | _PUBLIC_ char *talloc_strndup_append(char *s, const char *a, size_t n)
|
|---|
| 2011 | {
|
|---|
| 2012 | if (unlikely(!s)) {
|
|---|
| 2013 | return talloc_strdup(NULL, a);
|
|---|
| 2014 | }
|
|---|
| 2015 |
|
|---|
| 2016 | if (unlikely(!a)) {
|
|---|
| 2017 | return s;
|
|---|
| 2018 | }
|
|---|
| 2019 |
|
|---|
| 2020 | return __talloc_strlendup_append(s, strlen(s), a, strnlen(a, n));
|
|---|
| 2021 | }
|
|---|
| 2022 |
|
|---|
| 2023 | /*
|
|---|
| 2024 | * Appends at the end of the talloc'ed buffer,
|
|---|
| 2025 | * not the end of the string.
|
|---|
| 2026 | */
|
|---|
| 2027 | _PUBLIC_ char *talloc_strndup_append_buffer(char *s, const char *a, size_t n)
|
|---|
| 2028 | {
|
|---|
| 2029 | size_t slen;
|
|---|
| 2030 |
|
|---|
| 2031 | if (unlikely(!s)) {
|
|---|
| 2032 | return talloc_strdup(NULL, a);
|
|---|
| 2033 | }
|
|---|
| 2034 |
|
|---|
| 2035 | if (unlikely(!a)) {
|
|---|
| 2036 | return s;
|
|---|
| 2037 | }
|
|---|
| 2038 |
|
|---|
| 2039 | slen = talloc_get_size(s);
|
|---|
| 2040 | if (likely(slen > 0)) {
|
|---|
| 2041 | slen--;
|
|---|
| 2042 | }
|
|---|
| 2043 |
|
|---|
| 2044 | return __talloc_strlendup_append(s, slen, a, strnlen(a, n));
|
|---|
| 2045 | }
|
|---|
| 2046 |
|
|---|
| 2047 | #ifndef HAVE_VA_COPY
|
|---|
| 2048 | #ifdef HAVE___VA_COPY
|
|---|
| 2049 | #define va_copy(dest, src) __va_copy(dest, src)
|
|---|
| 2050 | #else
|
|---|
| 2051 | #define va_copy(dest, src) (dest) = (src)
|
|---|
| 2052 | #endif
|
|---|
| 2053 | #endif
|
|---|
| 2054 |
|
|---|
| 2055 | _PUBLIC_ char *talloc_vasprintf(const void *t, const char *fmt, va_list ap)
|
|---|
| 2056 | {
|
|---|
| 2057 | int len;
|
|---|
| 2058 | char *ret;
|
|---|
| 2059 | va_list ap2;
|
|---|
| 2060 | char c;
|
|---|
| 2061 |
|
|---|
| 2062 | /* this call looks strange, but it makes it work on older solaris boxes */
|
|---|
| 2063 | va_copy(ap2, ap);
|
|---|
| 2064 | len = vsnprintf(&c, 1, fmt, ap2);
|
|---|
| 2065 | va_end(ap2);
|
|---|
| 2066 | if (unlikely(len < 0)) {
|
|---|
| 2067 | return NULL;
|
|---|
| 2068 | }
|
|---|
| 2069 |
|
|---|
| 2070 | ret = (char *)__talloc(t, len+1);
|
|---|
| 2071 | if (unlikely(!ret)) return NULL;
|
|---|
| 2072 |
|
|---|
| 2073 | va_copy(ap2, ap);
|
|---|
| 2074 | vsnprintf(ret, len+1, fmt, ap2);
|
|---|
| 2075 | va_end(ap2);
|
|---|
| 2076 |
|
|---|
| 2077 | _talloc_set_name_const(ret, ret);
|
|---|
| 2078 | return ret;
|
|---|
| 2079 | }
|
|---|
| 2080 |
|
|---|
| 2081 |
|
|---|
| 2082 | /*
|
|---|
| 2083 | Perform string formatting, and return a pointer to newly allocated
|
|---|
| 2084 | memory holding the result, inside a memory pool.
|
|---|
| 2085 | */
|
|---|
| 2086 | _PUBLIC_ char *talloc_asprintf(const void *t, const char *fmt, ...)
|
|---|
| 2087 | {
|
|---|
| 2088 | va_list ap;
|
|---|
| 2089 | char *ret;
|
|---|
| 2090 |
|
|---|
| 2091 | va_start(ap, fmt);
|
|---|
| 2092 | ret = talloc_vasprintf(t, fmt, ap);
|
|---|
| 2093 | va_end(ap);
|
|---|
| 2094 | return ret;
|
|---|
| 2095 | }
|
|---|
| 2096 |
|
|---|
| 2097 | static inline char *__talloc_vaslenprintf_append(char *s, size_t slen,
|
|---|
| 2098 | const char *fmt, va_list ap)
|
|---|
| 2099 | PRINTF_ATTRIBUTE(3,0);
|
|---|
| 2100 |
|
|---|
| 2101 | static inline char *__talloc_vaslenprintf_append(char *s, size_t slen,
|
|---|
| 2102 | const char *fmt, va_list ap)
|
|---|
| 2103 | {
|
|---|
| 2104 | ssize_t alen;
|
|---|
| 2105 | va_list ap2;
|
|---|
| 2106 | char c;
|
|---|
| 2107 |
|
|---|
| 2108 | va_copy(ap2, ap);
|
|---|
| 2109 | alen = vsnprintf(&c, 1, fmt, ap2);
|
|---|
| 2110 | va_end(ap2);
|
|---|
| 2111 |
|
|---|
| 2112 | if (alen <= 0) {
|
|---|
| 2113 | /* Either the vsnprintf failed or the format resulted in
|
|---|
| 2114 | * no characters being formatted. In the former case, we
|
|---|
| 2115 | * ought to return NULL, in the latter we ought to return
|
|---|
| 2116 | * the original string. Most current callers of this
|
|---|
| 2117 | * function expect it to never return NULL.
|
|---|
| 2118 | */
|
|---|
| 2119 | return s;
|
|---|
| 2120 | }
|
|---|
| 2121 |
|
|---|
| 2122 | s = talloc_realloc(NULL, s, char, slen + alen + 1);
|
|---|
| 2123 | if (!s) return NULL;
|
|---|
| 2124 |
|
|---|
| 2125 | va_copy(ap2, ap);
|
|---|
| 2126 | vsnprintf(s + slen, alen + 1, fmt, ap2);
|
|---|
| 2127 | va_end(ap2);
|
|---|
| 2128 |
|
|---|
| 2129 | _talloc_set_name_const(s, s);
|
|---|
| 2130 | return s;
|
|---|
| 2131 | }
|
|---|
| 2132 |
|
|---|
| 2133 | /**
|
|---|
| 2134 | * Realloc @p s to append the formatted result of @p fmt and @p ap,
|
|---|
| 2135 | * and return @p s, which may have moved. Good for gradually
|
|---|
| 2136 | * accumulating output into a string buffer. Appends at the end
|
|---|
| 2137 | * of the string.
|
|---|
| 2138 | **/
|
|---|
| 2139 | _PUBLIC_ char *talloc_vasprintf_append(char *s, const char *fmt, va_list ap)
|
|---|
| 2140 | {
|
|---|
| 2141 | if (unlikely(!s)) {
|
|---|
| 2142 | return talloc_vasprintf(NULL, fmt, ap);
|
|---|
| 2143 | }
|
|---|
| 2144 |
|
|---|
| 2145 | return __talloc_vaslenprintf_append(s, strlen(s), fmt, ap);
|
|---|
| 2146 | }
|
|---|
| 2147 |
|
|---|
| 2148 | /**
|
|---|
| 2149 | * Realloc @p s to append the formatted result of @p fmt and @p ap,
|
|---|
| 2150 | * and return @p s, which may have moved. Always appends at the
|
|---|
| 2151 | * end of the talloc'ed buffer, not the end of the string.
|
|---|
| 2152 | **/
|
|---|
| 2153 | _PUBLIC_ char *talloc_vasprintf_append_buffer(char *s, const char *fmt, va_list ap)
|
|---|
| 2154 | {
|
|---|
| 2155 | size_t slen;
|
|---|
| 2156 |
|
|---|
| 2157 | if (unlikely(!s)) {
|
|---|
| 2158 | return talloc_vasprintf(NULL, fmt, ap);
|
|---|
| 2159 | }
|
|---|
| 2160 |
|
|---|
| 2161 | slen = talloc_get_size(s);
|
|---|
| 2162 | if (likely(slen > 0)) {
|
|---|
| 2163 | slen--;
|
|---|
| 2164 | }
|
|---|
| 2165 |
|
|---|
| 2166 | return __talloc_vaslenprintf_append(s, slen, fmt, ap);
|
|---|
| 2167 | }
|
|---|
| 2168 |
|
|---|
| 2169 | /*
|
|---|
| 2170 | Realloc @p s to append the formatted result of @p fmt and return @p
|
|---|
| 2171 | s, which may have moved. Good for gradually accumulating output
|
|---|
| 2172 | into a string buffer.
|
|---|
| 2173 | */
|
|---|
| 2174 | _PUBLIC_ char *talloc_asprintf_append(char *s, const char *fmt, ...)
|
|---|
| 2175 | {
|
|---|
| 2176 | va_list ap;
|
|---|
| 2177 |
|
|---|
| 2178 | va_start(ap, fmt);
|
|---|
| 2179 | s = talloc_vasprintf_append(s, fmt, ap);
|
|---|
| 2180 | va_end(ap);
|
|---|
| 2181 | return s;
|
|---|
| 2182 | }
|
|---|
| 2183 |
|
|---|
| 2184 | /*
|
|---|
| 2185 | Realloc @p s to append the formatted result of @p fmt and return @p
|
|---|
| 2186 | s, which may have moved. Good for gradually accumulating output
|
|---|
| 2187 | into a buffer.
|
|---|
| 2188 | */
|
|---|
| 2189 | _PUBLIC_ char *talloc_asprintf_append_buffer(char *s, const char *fmt, ...)
|
|---|
| 2190 | {
|
|---|
| 2191 | va_list ap;
|
|---|
| 2192 |
|
|---|
| 2193 | va_start(ap, fmt);
|
|---|
| 2194 | s = talloc_vasprintf_append_buffer(s, fmt, ap);
|
|---|
| 2195 | va_end(ap);
|
|---|
| 2196 | return s;
|
|---|
| 2197 | }
|
|---|
| 2198 |
|
|---|
| 2199 | /*
|
|---|
| 2200 | alloc an array, checking for integer overflow in the array size
|
|---|
| 2201 | */
|
|---|
| 2202 | _PUBLIC_ void *_talloc_array(const void *ctx, size_t el_size, unsigned count, const char *name)
|
|---|
| 2203 | {
|
|---|
| 2204 | if (count >= MAX_TALLOC_SIZE/el_size) {
|
|---|
| 2205 | return NULL;
|
|---|
| 2206 | }
|
|---|
| 2207 | return _talloc_named_const(ctx, el_size * count, name);
|
|---|
| 2208 | }
|
|---|
| 2209 |
|
|---|
| 2210 | /*
|
|---|
| 2211 | alloc an zero array, checking for integer overflow in the array size
|
|---|
| 2212 | */
|
|---|
| 2213 | _PUBLIC_ void *_talloc_zero_array(const void *ctx, size_t el_size, unsigned count, const char *name)
|
|---|
| 2214 | {
|
|---|
| 2215 | if (count >= MAX_TALLOC_SIZE/el_size) {
|
|---|
| 2216 | return NULL;
|
|---|
| 2217 | }
|
|---|
| 2218 | return _talloc_zero(ctx, el_size * count, name);
|
|---|
| 2219 | }
|
|---|
| 2220 |
|
|---|
| 2221 | /*
|
|---|
| 2222 | realloc an array, checking for integer overflow in the array size
|
|---|
| 2223 | */
|
|---|
| 2224 | _PUBLIC_ void *_talloc_realloc_array(const void *ctx, void *ptr, size_t el_size, unsigned count, const char *name)
|
|---|
| 2225 | {
|
|---|
| 2226 | if (count >= MAX_TALLOC_SIZE/el_size) {
|
|---|
| 2227 | return NULL;
|
|---|
| 2228 | }
|
|---|
| 2229 | return _talloc_realloc(ctx, ptr, el_size * count, name);
|
|---|
| 2230 | }
|
|---|
| 2231 |
|
|---|
| 2232 | /*
|
|---|
| 2233 | a function version of talloc_realloc(), so it can be passed as a function pointer
|
|---|
| 2234 | to libraries that want a realloc function (a realloc function encapsulates
|
|---|
| 2235 | all the basic capabilities of an allocation library, which is why this is useful)
|
|---|
| 2236 | */
|
|---|
| 2237 | _PUBLIC_ void *talloc_realloc_fn(const void *context, void *ptr, size_t size)
|
|---|
| 2238 | {
|
|---|
| 2239 | return _talloc_realloc(context, ptr, size, NULL);
|
|---|
| 2240 | }
|
|---|
| 2241 |
|
|---|
| 2242 |
|
|---|
| 2243 | static int talloc_autofree_destructor(void *ptr)
|
|---|
| 2244 | {
|
|---|
| 2245 | autofree_context = NULL;
|
|---|
| 2246 | return 0;
|
|---|
| 2247 | }
|
|---|
| 2248 |
|
|---|
| 2249 | static void talloc_autofree(void)
|
|---|
| 2250 | {
|
|---|
| 2251 | talloc_free(autofree_context);
|
|---|
| 2252 | }
|
|---|
| 2253 |
|
|---|
| 2254 | /*
|
|---|
| 2255 | return a context which will be auto-freed on exit
|
|---|
| 2256 | this is useful for reducing the noise in leak reports
|
|---|
| 2257 | */
|
|---|
| 2258 | _PUBLIC_ void *talloc_autofree_context(void)
|
|---|
| 2259 | {
|
|---|
| 2260 | if (autofree_context == NULL) {
|
|---|
| 2261 | autofree_context = _talloc_named_const(NULL, 0, "autofree_context");
|
|---|
| 2262 | talloc_set_destructor(autofree_context, talloc_autofree_destructor);
|
|---|
| 2263 | atexit(talloc_autofree);
|
|---|
| 2264 | }
|
|---|
| 2265 | return autofree_context;
|
|---|
| 2266 | }
|
|---|
| 2267 |
|
|---|
| 2268 | _PUBLIC_ size_t talloc_get_size(const void *context)
|
|---|
| 2269 | {
|
|---|
| 2270 | struct talloc_chunk *tc;
|
|---|
| 2271 |
|
|---|
| 2272 | if (context == NULL) {
|
|---|
| 2273 | context = null_context;
|
|---|
| 2274 | }
|
|---|
| 2275 | if (context == NULL) {
|
|---|
| 2276 | return 0;
|
|---|
| 2277 | }
|
|---|
| 2278 |
|
|---|
| 2279 | tc = talloc_chunk_from_ptr(context);
|
|---|
| 2280 |
|
|---|
| 2281 | return tc->size;
|
|---|
| 2282 | }
|
|---|
| 2283 |
|
|---|
| 2284 | /*
|
|---|
| 2285 | find a parent of this context that has the given name, if any
|
|---|
| 2286 | */
|
|---|
| 2287 | _PUBLIC_ void *talloc_find_parent_byname(const void *context, const char *name)
|
|---|
| 2288 | {
|
|---|
| 2289 | struct talloc_chunk *tc;
|
|---|
| 2290 |
|
|---|
| 2291 | if (context == NULL) {
|
|---|
| 2292 | return NULL;
|
|---|
| 2293 | }
|
|---|
| 2294 |
|
|---|
| 2295 | tc = talloc_chunk_from_ptr(context);
|
|---|
| 2296 | while (tc) {
|
|---|
| 2297 | if (tc->name && strcmp(tc->name, name) == 0) {
|
|---|
| 2298 | return TC_PTR_FROM_CHUNK(tc);
|
|---|
| 2299 | }
|
|---|
| 2300 | while (tc && tc->prev) tc = tc->prev;
|
|---|
| 2301 | if (tc) {
|
|---|
| 2302 | tc = tc->parent;
|
|---|
| 2303 | }
|
|---|
| 2304 | }
|
|---|
| 2305 | return NULL;
|
|---|
| 2306 | }
|
|---|
| 2307 |
|
|---|
| 2308 | /*
|
|---|
| 2309 | show the parentage of a context
|
|---|
| 2310 | */
|
|---|
| 2311 | _PUBLIC_ void talloc_show_parents(const void *context, FILE *file)
|
|---|
| 2312 | {
|
|---|
| 2313 | struct talloc_chunk *tc;
|
|---|
| 2314 |
|
|---|
| 2315 | if (context == NULL) {
|
|---|
| 2316 | fprintf(file, "talloc no parents for NULL\n");
|
|---|
| 2317 | return;
|
|---|
| 2318 | }
|
|---|
| 2319 |
|
|---|
| 2320 | tc = talloc_chunk_from_ptr(context);
|
|---|
| 2321 | fprintf(file, "talloc parents of '%s'\n", talloc_get_name(context));
|
|---|
| 2322 | while (tc) {
|
|---|
| 2323 | fprintf(file, "\t'%s'\n", talloc_get_name(TC_PTR_FROM_CHUNK(tc)));
|
|---|
| 2324 | while (tc && tc->prev) tc = tc->prev;
|
|---|
| 2325 | if (tc) {
|
|---|
| 2326 | tc = tc->parent;
|
|---|
| 2327 | }
|
|---|
| 2328 | }
|
|---|
| 2329 | fflush(file);
|
|---|
| 2330 | }
|
|---|
| 2331 |
|
|---|
| 2332 | /*
|
|---|
| 2333 | return 1 if ptr is a parent of context
|
|---|
| 2334 | */
|
|---|
| 2335 | static int _talloc_is_parent(const void *context, const void *ptr, int depth)
|
|---|
| 2336 | {
|
|---|
| 2337 | struct talloc_chunk *tc;
|
|---|
| 2338 |
|
|---|
| 2339 | if (context == NULL) {
|
|---|
| 2340 | return 0;
|
|---|
| 2341 | }
|
|---|
| 2342 |
|
|---|
| 2343 | tc = talloc_chunk_from_ptr(context);
|
|---|
| 2344 | while (tc && depth > 0) {
|
|---|
| 2345 | if (TC_PTR_FROM_CHUNK(tc) == ptr) return 1;
|
|---|
| 2346 | while (tc && tc->prev) tc = tc->prev;
|
|---|
| 2347 | if (tc) {
|
|---|
| 2348 | tc = tc->parent;
|
|---|
| 2349 | depth--;
|
|---|
| 2350 | }
|
|---|
| 2351 | }
|
|---|
| 2352 | return 0;
|
|---|
| 2353 | }
|
|---|
| 2354 |
|
|---|
| 2355 | /*
|
|---|
| 2356 | return 1 if ptr is a parent of context
|
|---|
| 2357 | */
|
|---|
| 2358 | _PUBLIC_ int talloc_is_parent(const void *context, const void *ptr)
|
|---|
| 2359 | {
|
|---|
| 2360 | return _talloc_is_parent(context, ptr, TALLOC_MAX_DEPTH);
|
|---|
| 2361 | }
|
|---|