[Telemetry] Reenable unused-import lint check for telemetry.
[chromium-blink-merge.git] / third_party / talloc / talloc.c
blob4bcd65d18bb24ecc9f88c843a1236e470c006fdb
1 /*
2 Samba Unix SMB/CIFS implementation.
4 Samba trivial allocation library - new interface
6 NOTE: Please read talloc_guide.txt for full documentation
8 Copyright (C) Andrew Tridgell 2004
9 Copyright (C) Stefan Metzmacher 2006
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
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.
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.
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/>.
30 inspired by http://swapped.cc/halloc/
33 /* Commented out for building within Chromium */
34 /* #include "replace.h" */
35 #include "talloc.h"
37 #ifdef TALLOC_BUILD_VERSION_MAJOR
38 #if (TALLOC_VERSION_MAJOR != TALLOC_BUILD_VERSION_MAJOR)
39 #error "TALLOC_VERSION_MAJOR != TALLOC_BUILD_VERSION_MAJOR"
40 #endif
41 #endif
43 #ifdef TALLOC_BUILD_VERSION_MINOR
44 #if (TALLOC_VERSION_MINOR != TALLOC_BUILD_VERSION_MINOR)
45 #error "TALLOC_VERSION_MINOR != TALLOC_BUILD_VERSION_MINOR"
46 #endif
47 #endif
49 /* use this to force every realloc to change the pointer, to stress test
50 code that might not cope */
51 #define ALWAYS_REALLOC 0
54 #define MAX_TALLOC_SIZE 0x10000000
55 #define TALLOC_MAGIC_BASE 0xe814ec70
56 #define TALLOC_MAGIC ( \
57 TALLOC_MAGIC_BASE + \
58 (TALLOC_VERSION_MAJOR << 12) + \
59 (TALLOC_VERSION_MINOR << 4) \
62 #define TALLOC_FLAG_FREE 0x01
63 #define TALLOC_FLAG_LOOP 0x02
64 #define TALLOC_FLAG_POOL 0x04 /* This is a talloc pool */
65 #define TALLOC_FLAG_POOLMEM 0x08 /* This is allocated in a pool */
66 #define TALLOC_MAGIC_REFERENCE ((const char *)1)
68 /* by default we abort when given a bad pointer (such as when talloc_free() is called
69 on a pointer that came from malloc() */
70 #ifndef TALLOC_ABORT
71 #define TALLOC_ABORT(reason) abort()
72 #endif
74 #ifndef discard_const_p
75 #if defined(__intptr_t_defined) || defined(HAVE_INTPTR_T)
76 # define discard_const_p(type, ptr) ((type *)((intptr_t)(ptr)))
77 #else
78 # define discard_const_p(type, ptr) ((type *)(ptr))
79 #endif
80 #endif
82 /* these macros gain us a few percent of speed on gcc */
83 #if (__GNUC__ >= 3)
84 /* the strange !! is to ensure that __builtin_expect() takes either 0 or 1
85 as its first argument */
86 #ifndef likely
87 #define likely(x) __builtin_expect(!!(x), 1)
88 #endif
89 #ifndef unlikely
90 #define unlikely(x) __builtin_expect(!!(x), 0)
91 #endif
92 #else
93 #ifndef likely
94 #define likely(x) (x)
95 #endif
96 #ifndef unlikely
97 #define unlikely(x) (x)
98 #endif
99 #endif
101 /* inline isn't supported in C files in Visual Studio 2008 on Windows */
102 #ifdef _MSC_VER
103 #define INLINE
104 #else
105 #define INLINE inline
106 #endif
108 /* this null_context is only used if talloc_enable_leak_report() or
109 talloc_enable_leak_report_full() is called, otherwise it remains
110 NULL
112 static void *null_context;
113 static void *autofree_context;
115 struct talloc_reference_handle {
116 struct talloc_reference_handle *next, *prev;
117 void *ptr;
118 const char *location;
121 typedef int (*talloc_destructor_t)(void *);
123 struct talloc_chunk {
124 struct talloc_chunk *next, *prev;
125 struct talloc_chunk *parent, *child;
126 struct talloc_reference_handle *refs;
127 talloc_destructor_t destructor;
128 const char *name;
129 size_t size;
130 unsigned flags;
133 * "pool" has dual use:
135 * For the talloc pool itself (i.e. TALLOC_FLAG_POOL is set), "pool"
136 * marks the end of the currently allocated area.
138 * For members of the pool (i.e. TALLOC_FLAG_POOLMEM is set), "pool"
139 * is a pointer to the struct talloc_chunk of the pool that it was
140 * allocated from. This way children can quickly find the pool to chew
141 * from.
143 void *pool;
146 /* 16 byte alignment seems to keep everyone happy */
147 #define TC_HDR_SIZE ((sizeof(struct talloc_chunk)+15)&~15)
148 #define TC_PTR_FROM_CHUNK(tc) ((void *)(TC_HDR_SIZE + (char*)tc))
150 int talloc_version_major(void)
152 return TALLOC_VERSION_MAJOR;
155 int talloc_version_minor(void)
157 return TALLOC_VERSION_MINOR;
160 static void (*talloc_log_fn)(const char *message);
162 void talloc_set_log_fn(void (*log_fn)(const char *message))
164 talloc_log_fn = log_fn;
167 static void talloc_log(const char *fmt, ...) PRINTF_ATTRIBUTE(1,2);
168 static void talloc_log(const char *fmt, ...)
170 va_list ap;
171 char *message;
173 if (!talloc_log_fn) {
174 return;
177 va_start(ap, fmt);
178 message = talloc_vasprintf(NULL, fmt, ap);
179 va_end(ap);
181 talloc_log_fn(message);
182 talloc_free(message);
185 static void talloc_log_stderr(const char *message)
187 fprintf(stderr, "%s", message);
190 void talloc_set_log_stderr(void)
192 talloc_set_log_fn(talloc_log_stderr);
195 static void (*talloc_abort_fn)(const char *reason);
197 void talloc_set_abort_fn(void (*abort_fn)(const char *reason))
199 talloc_abort_fn = abort_fn;
202 static void talloc_abort(const char *reason)
204 talloc_log("%s\n", reason);
206 if (!talloc_abort_fn) {
207 TALLOC_ABORT(reason);
210 talloc_abort_fn(reason);
213 static void talloc_abort_magic(unsigned magic)
215 unsigned striped = magic - TALLOC_MAGIC_BASE;
216 unsigned major = (striped & 0xFFFFF000) >> 12;
217 unsigned minor = (striped & 0x00000FF0) >> 4;
218 talloc_log("Bad talloc magic[0x%08X/%u/%u] expected[0x%08X/%u/%u]\n",
219 magic, major, minor,
220 TALLOC_MAGIC, TALLOC_VERSION_MAJOR, TALLOC_VERSION_MINOR);
221 talloc_abort("Bad talloc magic value - wrong talloc version used/mixed");
224 static void talloc_abort_double_free(void)
226 talloc_abort("Bad talloc magic value - double free");
229 static void talloc_abort_unknown_value(void)
231 talloc_abort("Bad talloc magic value - unknown value");
234 /* panic if we get a bad magic value */
235 static INLINE struct talloc_chunk *talloc_chunk_from_ptr(const void *ptr)
237 const char *pp = (const char *)ptr;
238 struct talloc_chunk *tc = discard_const_p(struct talloc_chunk, pp - TC_HDR_SIZE);
239 if (unlikely((tc->flags & (TALLOC_FLAG_FREE | ~0xF)) != TALLOC_MAGIC)) {
240 if ((tc->flags & (~0xFFF)) == TALLOC_MAGIC_BASE) {
241 talloc_abort_magic(tc->flags & (~0xF));
242 return NULL;
245 if (tc->flags & TALLOC_FLAG_FREE) {
246 talloc_log("talloc: double free error - first free may be at %s\n", tc->name);
247 talloc_abort_double_free();
248 return NULL;
249 } else {
250 talloc_abort_unknown_value();
251 return NULL;
254 return tc;
257 /* hook into the front of the list */
258 #define _TLIST_ADD(list, p) \
259 do { \
260 if (!(list)) { \
261 (list) = (p); \
262 (p)->next = (p)->prev = NULL; \
263 } else { \
264 (list)->prev = (p); \
265 (p)->next = (list); \
266 (p)->prev = NULL; \
267 (list) = (p); \
269 } while (0)
271 /* remove an element from a list - element doesn't have to be in list. */
272 #define _TLIST_REMOVE(list, p) \
273 do { \
274 if ((p) == (list)) { \
275 (list) = (p)->next; \
276 if (list) (list)->prev = NULL; \
277 } else { \
278 if ((p)->prev) (p)->prev->next = (p)->next; \
279 if ((p)->next) (p)->next->prev = (p)->prev; \
281 if ((p) && ((p) != (list))) (p)->next = (p)->prev = NULL; \
282 } while (0)
286 return the parent chunk of a pointer
288 static INLINE struct talloc_chunk *talloc_parent_chunk(const void *ptr)
290 struct talloc_chunk *tc;
292 if (unlikely(ptr == NULL)) {
293 return NULL;
296 tc = talloc_chunk_from_ptr(ptr);
297 while (tc->prev) tc=tc->prev;
299 return tc->parent;
302 void *talloc_parent(const void *ptr)
304 struct talloc_chunk *tc = talloc_parent_chunk(ptr);
305 return tc? TC_PTR_FROM_CHUNK(tc) : NULL;
309 find parents name
311 const char *talloc_parent_name(const void *ptr)
313 struct talloc_chunk *tc = talloc_parent_chunk(ptr);
314 return tc? tc->name : NULL;
318 A pool carries an in-pool object count count in the first 16 bytes.
319 bytes. This is done to support talloc_steal() to a parent outside of the
320 pool. The count includes the pool itself, so a talloc_free() on a pool will
321 only destroy the pool if the count has dropped to zero. A talloc_free() of a
322 pool member will reduce the count, and eventually also call free(3) on the
323 pool memory.
325 The object count is not put into "struct talloc_chunk" because it is only
326 relevant for talloc pools and the alignment to 16 bytes would increase the
327 memory footprint of each talloc chunk by those 16 bytes.
330 #define TALLOC_POOL_HDR_SIZE 16
332 static unsigned int *talloc_pool_objectcount(struct talloc_chunk *tc)
334 return (unsigned int *)((char *)tc + sizeof(struct talloc_chunk));
338 Allocate from a pool
341 static struct talloc_chunk *talloc_alloc_pool(struct talloc_chunk *parent,
342 size_t size)
344 struct talloc_chunk *pool_ctx = NULL;
345 size_t space_left;
346 struct talloc_chunk *result;
347 size_t chunk_size;
349 if (parent == NULL) {
350 return NULL;
353 if (parent->flags & TALLOC_FLAG_POOL) {
354 pool_ctx = parent;
356 else if (parent->flags & TALLOC_FLAG_POOLMEM) {
357 pool_ctx = (struct talloc_chunk *)parent->pool;
360 if (pool_ctx == NULL) {
361 return NULL;
364 space_left = ((char *)pool_ctx + TC_HDR_SIZE + pool_ctx->size)
365 - ((char *)pool_ctx->pool);
368 * Align size to 16 bytes
370 chunk_size = ((size + 15) & ~15);
372 if (space_left < chunk_size) {
373 return NULL;
376 result = (struct talloc_chunk *)pool_ctx->pool;
378 #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_UNDEFINED)
379 VALGRIND_MAKE_MEM_UNDEFINED(result, size);
380 #endif
382 pool_ctx->pool = (void *)((char *)result + chunk_size);
384 result->flags = TALLOC_MAGIC | TALLOC_FLAG_POOLMEM;
385 result->pool = pool_ctx;
387 *talloc_pool_objectcount(pool_ctx) += 1;
389 return result;
393 Allocate a bit of memory as a child of an existing pointer
395 static INLINE void *__talloc(const void *context, size_t size)
397 struct talloc_chunk *tc = NULL;
399 if (unlikely(context == NULL)) {
400 context = null_context;
403 if (unlikely(size >= MAX_TALLOC_SIZE)) {
404 return NULL;
407 if (context != NULL) {
408 tc = talloc_alloc_pool(talloc_chunk_from_ptr(context),
409 TC_HDR_SIZE+size);
412 if (tc == NULL) {
413 tc = (struct talloc_chunk *)malloc(TC_HDR_SIZE+size);
414 if (unlikely(tc == NULL)) return NULL;
415 tc->flags = TALLOC_MAGIC;
416 tc->pool = NULL;
419 tc->size = size;
420 tc->destructor = NULL;
421 tc->child = NULL;
422 tc->name = NULL;
423 tc->refs = NULL;
425 if (likely(context)) {
426 struct talloc_chunk *parent = talloc_chunk_from_ptr(context);
428 if (parent->child) {
429 parent->child->parent = NULL;
430 tc->next = parent->child;
431 tc->next->prev = tc;
432 } else {
433 tc->next = NULL;
435 tc->parent = parent;
436 tc->prev = NULL;
437 parent->child = tc;
438 } else {
439 tc->next = tc->prev = tc->parent = NULL;
442 return TC_PTR_FROM_CHUNK(tc);
446 * Create a talloc pool
449 void *talloc_pool(const void *context, size_t size)
451 void *result = __talloc(context, size + TALLOC_POOL_HDR_SIZE);
452 struct talloc_chunk *tc;
454 if (unlikely(result == NULL)) {
455 return NULL;
458 tc = talloc_chunk_from_ptr(result);
460 tc->flags |= TALLOC_FLAG_POOL;
461 tc->pool = (char *)result + TALLOC_POOL_HDR_SIZE;
463 *talloc_pool_objectcount(tc) = 1;
465 #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_NOACCESS)
466 VALGRIND_MAKE_MEM_NOACCESS(tc->pool, size);
467 #endif
469 return result;
473 setup a destructor to be called on free of a pointer
474 the destructor should return 0 on success, or -1 on failure.
475 if the destructor fails then the free is failed, and the memory can
476 be continued to be used
478 void _talloc_set_destructor(const void *ptr, int (*destructor)(void *))
480 struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
481 tc->destructor = destructor;
485 increase the reference count on a piece of memory.
487 int talloc_increase_ref_count(const void *ptr)
489 if (unlikely(!talloc_reference(null_context, ptr))) {
490 return -1;
492 return 0;
496 helper for talloc_reference()
498 this is referenced by a function pointer and should not be inline
500 static int talloc_reference_destructor(struct talloc_reference_handle *handle)
502 struct talloc_chunk *ptr_tc = talloc_chunk_from_ptr(handle->ptr);
503 _TLIST_REMOVE(ptr_tc->refs, handle);
504 return 0;
508 more efficient way to add a name to a pointer - the name must point to a
509 true string constant
511 static INLINE void _talloc_set_name_const(const void *ptr, const char *name)
513 struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
514 tc->name = name;
518 internal talloc_named_const()
520 static INLINE void *_talloc_named_const(const void *context, size_t size, const char *name)
522 void *ptr;
524 ptr = __talloc(context, size);
525 if (unlikely(ptr == NULL)) {
526 return NULL;
529 _talloc_set_name_const(ptr, name);
531 return ptr;
535 make a secondary reference to a pointer, hanging off the given context.
536 the pointer remains valid until both the original caller and this given
537 context are freed.
539 the major use for this is when two different structures need to reference the
540 same underlying data, and you want to be able to free the two instances separately,
541 and in either order
543 void *_talloc_reference_loc(const void *context, const void *ptr, const char *location)
545 struct talloc_chunk *tc;
546 struct talloc_reference_handle *handle;
547 if (unlikely(ptr == NULL)) return NULL;
549 tc = talloc_chunk_from_ptr(ptr);
550 handle = (struct talloc_reference_handle *)_talloc_named_const(context,
551 sizeof(struct talloc_reference_handle),
552 TALLOC_MAGIC_REFERENCE);
553 if (unlikely(handle == NULL)) return NULL;
555 /* note that we hang the destructor off the handle, not the
556 main context as that allows the caller to still setup their
557 own destructor on the context if they want to */
558 talloc_set_destructor(handle, talloc_reference_destructor);
559 handle->ptr = discard_const_p(void, ptr);
560 handle->location = location;
561 _TLIST_ADD(tc->refs, handle);
562 return handle->ptr;
565 static void *_talloc_steal_internal(const void *new_ctx, const void *ptr);
568 internal talloc_free call
570 static INLINE int _talloc_free_internal(void *ptr, const char *location)
572 struct talloc_chunk *tc;
574 if (unlikely(ptr == NULL)) {
575 return -1;
578 tc = talloc_chunk_from_ptr(ptr);
580 if (unlikely(tc->refs)) {
581 int is_child;
582 /* check this is a reference from a child or grantchild
583 * back to it's parent or grantparent
585 * in that case we need to remove the reference and
586 * call another instance of talloc_free() on the current
587 * pointer.
589 is_child = talloc_is_parent(tc->refs, ptr);
590 _talloc_free_internal(tc->refs, location);
591 if (is_child) {
592 return _talloc_free_internal(ptr, location);
594 return -1;
597 if (unlikely(tc->flags & TALLOC_FLAG_LOOP)) {
598 /* we have a free loop - stop looping */
599 return 0;
602 if (unlikely(tc->destructor)) {
603 talloc_destructor_t d = tc->destructor;
604 if (d == (talloc_destructor_t)-1) {
605 return -1;
607 tc->destructor = (talloc_destructor_t)-1;
608 if (d(ptr) == -1) {
609 tc->destructor = d;
610 return -1;
612 tc->destructor = NULL;
615 if (tc->parent) {
616 _TLIST_REMOVE(tc->parent->child, tc);
617 if (tc->parent->child) {
618 tc->parent->child->parent = tc->parent;
620 } else {
621 if (tc->prev) tc->prev->next = tc->next;
622 if (tc->next) tc->next->prev = tc->prev;
625 tc->flags |= TALLOC_FLAG_LOOP;
627 while (tc->child) {
628 /* we need to work out who will own an abandoned child
629 if it cannot be freed. In priority order, the first
630 choice is owner of any remaining reference to this
631 pointer, the second choice is our parent, and the
632 final choice is the null context. */
633 void *child = TC_PTR_FROM_CHUNK(tc->child);
634 const void *new_parent = null_context;
635 if (unlikely(tc->child->refs)) {
636 struct talloc_chunk *p = talloc_parent_chunk(tc->child->refs);
637 if (p) new_parent = TC_PTR_FROM_CHUNK(p);
639 if (unlikely(_talloc_free_internal(child, location) == -1)) {
640 if (new_parent == null_context) {
641 struct talloc_chunk *p = talloc_parent_chunk(ptr);
642 if (p) new_parent = TC_PTR_FROM_CHUNK(p);
644 _talloc_steal_internal(new_parent, child);
648 tc->flags |= TALLOC_FLAG_FREE;
650 /* we mark the freed memory with where we called the free
651 * from. This means on a double free error we can report where
652 * the first free came from
654 tc->name = location;
656 if (tc->flags & (TALLOC_FLAG_POOL|TALLOC_FLAG_POOLMEM)) {
657 struct talloc_chunk *pool;
658 unsigned int *pool_object_count;
660 pool = (tc->flags & TALLOC_FLAG_POOL)
661 ? tc : (struct talloc_chunk *)tc->pool;
663 pool_object_count = talloc_pool_objectcount(pool);
665 if (*pool_object_count == 0) {
666 talloc_abort("Pool object count zero!");
667 return 0;
670 *pool_object_count -= 1;
672 if (*pool_object_count == 0) {
673 free(pool);
676 else {
677 free(tc);
679 return 0;
683 move a lump of memory from one talloc context to another return the
684 ptr on success, or NULL if it could not be transferred.
685 passing NULL as ptr will always return NULL with no side effects.
687 static void *_talloc_steal_internal(const void *new_ctx, const void *ptr)
689 struct talloc_chunk *tc, *new_tc;
691 if (unlikely(!ptr)) {
692 return NULL;
695 if (unlikely(new_ctx == NULL)) {
696 new_ctx = null_context;
699 tc = talloc_chunk_from_ptr(ptr);
701 if (unlikely(new_ctx == NULL)) {
702 if (tc->parent) {
703 _TLIST_REMOVE(tc->parent->child, tc);
704 if (tc->parent->child) {
705 tc->parent->child->parent = tc->parent;
707 } else {
708 if (tc->prev) tc->prev->next = tc->next;
709 if (tc->next) tc->next->prev = tc->prev;
712 tc->parent = tc->next = tc->prev = NULL;
713 return discard_const_p(void, ptr);
716 new_tc = talloc_chunk_from_ptr(new_ctx);
718 if (unlikely(tc == new_tc || tc->parent == new_tc)) {
719 return discard_const_p(void, ptr);
722 if (tc->parent) {
723 _TLIST_REMOVE(tc->parent->child, tc);
724 if (tc->parent->child) {
725 tc->parent->child->parent = tc->parent;
727 } else {
728 if (tc->prev) tc->prev->next = tc->next;
729 if (tc->next) tc->next->prev = tc->prev;
732 tc->parent = new_tc;
733 if (new_tc->child) new_tc->child->parent = NULL;
734 _TLIST_ADD(new_tc->child, tc);
736 return discard_const_p(void, ptr);
740 move a lump of memory from one talloc context to another return the
741 ptr on success, or NULL if it could not be transferred.
742 passing NULL as ptr will always return NULL with no side effects.
744 void *_talloc_steal_loc(const void *new_ctx, const void *ptr, const char *location)
746 struct talloc_chunk *tc;
748 if (unlikely(ptr == NULL)) {
749 return NULL;
752 tc = talloc_chunk_from_ptr(ptr);
754 if (unlikely(tc->refs != NULL) && talloc_parent(ptr) != new_ctx) {
755 struct talloc_reference_handle *h;
757 talloc_log("WARNING: talloc_steal with references at %s\n",
758 location);
760 for (h=tc->refs; h; h=h->next) {
761 talloc_log("\treference at %s\n",
762 h->location);
766 return _talloc_steal_internal(new_ctx, ptr);
770 this is like a talloc_steal(), but you must supply the old
771 parent. This resolves the ambiguity in a talloc_steal() which is
772 called on a context that has more than one parent (via references)
774 The old parent can be either a reference or a parent
776 void *talloc_reparent(const void *old_parent, const void *new_parent, const void *ptr)
778 struct talloc_chunk *tc;
779 struct talloc_reference_handle *h;
781 if (unlikely(ptr == NULL)) {
782 return NULL;
785 if (old_parent == talloc_parent(ptr)) {
786 return _talloc_steal_internal(new_parent, ptr);
789 tc = talloc_chunk_from_ptr(ptr);
790 for (h=tc->refs;h;h=h->next) {
791 if (talloc_parent(h) == old_parent) {
792 if (_talloc_steal_internal(new_parent, h) != h) {
793 return NULL;
795 return discard_const_p(void, ptr);
799 /* it wasn't a parent */
800 return NULL;
804 remove a secondary reference to a pointer. This undo's what
805 talloc_reference() has done. The context and pointer arguments
806 must match those given to a talloc_reference()
808 static INLINE int talloc_unreference(const void *context, const void *ptr)
810 struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
811 struct talloc_reference_handle *h;
813 if (unlikely(context == NULL)) {
814 context = null_context;
817 for (h=tc->refs;h;h=h->next) {
818 struct talloc_chunk *p = talloc_parent_chunk(h);
819 if (p == NULL) {
820 if (context == NULL) break;
821 } else if (TC_PTR_FROM_CHUNK(p) == context) {
822 break;
825 if (h == NULL) {
826 return -1;
829 return _talloc_free_internal(h, __location__);
833 remove a specific parent context from a pointer. This is a more
834 controlled varient of talloc_free()
836 int talloc_unlink(const void *context, void *ptr)
838 struct talloc_chunk *tc_p, *new_p;
839 void *new_parent;
841 if (ptr == NULL) {
842 return -1;
845 if (context == NULL) {
846 context = null_context;
849 if (talloc_unreference(context, ptr) == 0) {
850 return 0;
853 if (context == NULL) {
854 if (talloc_parent_chunk(ptr) != NULL) {
855 return -1;
857 } else {
858 if (talloc_chunk_from_ptr(context) != talloc_parent_chunk(ptr)) {
859 return -1;
863 tc_p = talloc_chunk_from_ptr(ptr);
865 if (tc_p->refs == NULL) {
866 return _talloc_free_internal(ptr, __location__);
869 new_p = talloc_parent_chunk(tc_p->refs);
870 if (new_p) {
871 new_parent = TC_PTR_FROM_CHUNK(new_p);
872 } else {
873 new_parent = NULL;
876 if (talloc_unreference(new_parent, ptr) != 0) {
877 return -1;
880 _talloc_steal_internal(new_parent, ptr);
882 return 0;
886 add a name to an existing pointer - va_list version
888 static INLINE const char *talloc_set_name_v(const void *ptr, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0);
890 static INLINE const char *talloc_set_name_v(const void *ptr, const char *fmt, va_list ap)
892 struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
893 tc->name = talloc_vasprintf(ptr, fmt, ap);
894 if (likely(tc->name)) {
895 _talloc_set_name_const(tc->name, ".name");
897 return tc->name;
901 add a name to an existing pointer
903 const char *talloc_set_name(const void *ptr, const char *fmt, ...)
905 const char *name;
906 va_list ap;
907 va_start(ap, fmt);
908 name = talloc_set_name_v(ptr, fmt, ap);
909 va_end(ap);
910 return name;
915 create a named talloc pointer. Any talloc pointer can be named, and
916 talloc_named() operates just like talloc() except that it allows you
917 to name the pointer.
919 void *talloc_named(const void *context, size_t size, const char *fmt, ...)
921 va_list ap;
922 void *ptr;
923 const char *name;
925 ptr = __talloc(context, size);
926 if (unlikely(ptr == NULL)) return NULL;
928 va_start(ap, fmt);
929 name = talloc_set_name_v(ptr, fmt, ap);
930 va_end(ap);
932 if (unlikely(name == NULL)) {
933 _talloc_free_internal(ptr, __location__);
934 return NULL;
937 return ptr;
941 return the name of a talloc ptr, or "UNNAMED"
943 const char *talloc_get_name(const void *ptr)
945 struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
946 if (unlikely(tc->name == TALLOC_MAGIC_REFERENCE)) {
947 return ".reference";
949 if (likely(tc->name)) {
950 return tc->name;
952 return "UNNAMED";
957 check if a pointer has the given name. If it does, return the pointer,
958 otherwise return NULL
960 void *talloc_check_name(const void *ptr, const char *name)
962 const char *pname;
963 if (unlikely(ptr == NULL)) return NULL;
964 pname = talloc_get_name(ptr);
965 if (likely(pname == name || strcmp(pname, name) == 0)) {
966 return discard_const_p(void, ptr);
968 return NULL;
971 static void talloc_abort_type_missmatch(const char *location,
972 const char *name,
973 const char *expected)
975 const char *reason;
977 reason = talloc_asprintf(NULL,
978 "%s: Type mismatch: name[%s] expected[%s]",
979 location,
980 name?name:"NULL",
981 expected);
982 if (!reason) {
983 reason = "Type mismatch";
986 talloc_abort(reason);
989 void *_talloc_get_type_abort(const void *ptr, const char *name, const char *location)
991 const char *pname;
993 if (unlikely(ptr == NULL)) {
994 talloc_abort_type_missmatch(location, NULL, name);
995 return NULL;
998 pname = talloc_get_name(ptr);
999 if (likely(pname == name || strcmp(pname, name) == 0)) {
1000 return discard_const_p(void, ptr);
1003 talloc_abort_type_missmatch(location, pname, name);
1004 return NULL;
1008 this is for compatibility with older versions of talloc
1010 void *talloc_init(const char *fmt, ...)
1012 va_list ap;
1013 void *ptr;
1014 const char *name;
1017 * samba3 expects talloc_report_depth_cb(NULL, ...)
1018 * reports all talloc'ed memory, so we need to enable
1019 * null_tracking
1021 talloc_enable_null_tracking();
1023 ptr = __talloc(NULL, 0);
1024 if (unlikely(ptr == NULL)) return NULL;
1026 va_start(ap, fmt);
1027 name = talloc_set_name_v(ptr, fmt, ap);
1028 va_end(ap);
1030 if (unlikely(name == NULL)) {
1031 _talloc_free_internal(ptr, __location__);
1032 return NULL;
1035 return ptr;
1039 this is a replacement for the Samba3 talloc_destroy_pool functionality. It
1040 should probably not be used in new code. It's in here to keep the talloc
1041 code consistent across Samba 3 and 4.
1043 void talloc_free_children(void *ptr)
1045 struct talloc_chunk *tc;
1047 if (unlikely(ptr == NULL)) {
1048 return;
1051 tc = talloc_chunk_from_ptr(ptr);
1053 while (tc->child) {
1054 /* we need to work out who will own an abandoned child
1055 if it cannot be freed. In priority order, the first
1056 choice is owner of any remaining reference to this
1057 pointer, the second choice is our parent, and the
1058 final choice is the null context. */
1059 void *child = TC_PTR_FROM_CHUNK(tc->child);
1060 const void *new_parent = null_context;
1061 if (unlikely(tc->child->refs)) {
1062 struct talloc_chunk *p = talloc_parent_chunk(tc->child->refs);
1063 if (p) new_parent = TC_PTR_FROM_CHUNK(p);
1065 if (unlikely(talloc_free(child) == -1)) {
1066 if (new_parent == null_context) {
1067 struct talloc_chunk *p = talloc_parent_chunk(ptr);
1068 if (p) new_parent = TC_PTR_FROM_CHUNK(p);
1070 _talloc_steal_internal(new_parent, child);
1074 if ((tc->flags & TALLOC_FLAG_POOL)
1075 && (*talloc_pool_objectcount(tc) == 1)) {
1076 tc->pool = ((char *)tc + TC_HDR_SIZE + TALLOC_POOL_HDR_SIZE);
1077 #if defined(DEVELOPER) && defined(VALGRIND_MAKE_MEM_NOACCESS)
1078 VALGRIND_MAKE_MEM_NOACCESS(
1079 tc->pool, tc->size - TALLOC_POOL_HDR_SIZE);
1080 #endif
1085 Allocate a bit of memory as a child of an existing pointer
1087 void *_talloc(const void *context, size_t size)
1089 return __talloc(context, size);
1093 externally callable talloc_set_name_const()
1095 void talloc_set_name_const(const void *ptr, const char *name)
1097 _talloc_set_name_const(ptr, name);
1101 create a named talloc pointer. Any talloc pointer can be named, and
1102 talloc_named() operates just like talloc() except that it allows you
1103 to name the pointer.
1105 void *talloc_named_const(const void *context, size_t size, const char *name)
1107 return _talloc_named_const(context, size, name);
1111 free a talloc pointer. This also frees all child pointers of this
1112 pointer recursively
1114 return 0 if the memory is actually freed, otherwise -1. The memory
1115 will not be freed if the ref_count is > 1 or the destructor (if
1116 any) returns non-zero
1118 int _talloc_free(void *ptr, const char *location)
1120 struct talloc_chunk *tc;
1122 if (unlikely(ptr == NULL)) {
1123 return -1;
1126 tc = talloc_chunk_from_ptr(ptr);
1128 if (unlikely(tc->refs != NULL)) {
1129 struct talloc_reference_handle *h;
1131 talloc_log("ERROR: talloc_free with references at %s\n",
1132 location);
1134 for (h=tc->refs; h; h=h->next) {
1135 talloc_log("\treference at %s\n",
1136 h->location);
1138 return -1;
1141 return _talloc_free_internal(ptr, location);
1145 static INLINE size_t min_size(size_t a, size_t b)
1147 return a > b ? b : a;
1151 A talloc version of realloc. The context argument is only used if
1152 ptr is NULL
1154 void *_talloc_realloc(const void *context, void *ptr, size_t size, const char *name)
1156 struct talloc_chunk *tc;
1157 void *new_ptr;
1158 int malloced = 0;
1160 /* size zero is equivalent to free() */
1161 if (unlikely(size == 0)) {
1162 talloc_unlink(context, ptr);
1163 return NULL;
1166 if (unlikely(size >= MAX_TALLOC_SIZE)) {
1167 return NULL;
1170 /* realloc(NULL) is equivalent to malloc() */
1171 if (ptr == NULL) {
1172 return _talloc_named_const(context, size, name);
1175 tc = talloc_chunk_from_ptr(ptr);
1177 /* don't allow realloc on referenced pointers */
1178 if (unlikely(tc->refs)) {
1179 return NULL;
1182 /* don't let anybody try to realloc a talloc_pool */
1183 if (unlikely(tc->flags & TALLOC_FLAG_POOL)) {
1184 return NULL;
1187 /* don't shrink if we have less than 1k to gain */
1188 if ((size < tc->size) && ((tc->size - size) < 1024)) {
1189 tc->size = size;
1190 return ptr;
1193 /* by resetting magic we catch users of the old memory */
1194 tc->flags |= TALLOC_FLAG_FREE;
1196 #if ALWAYS_REALLOC
1197 new_ptr = malloc(size + TC_HDR_SIZE);
1198 if (new_ptr) {
1199 memcpy(new_ptr, tc, tc->size + TC_HDR_SIZE);
1200 free(tc);
1202 #else
1203 if (tc->flags & TALLOC_FLAG_POOLMEM) {
1205 new_ptr = talloc_alloc_pool(tc, size + TC_HDR_SIZE);
1206 *talloc_pool_objectcount((struct talloc_chunk *)
1207 (tc->pool)) -= 1;
1209 if (new_ptr == NULL) {
1210 new_ptr = malloc(TC_HDR_SIZE+size);
1211 malloced = 1;
1214 if (new_ptr) {
1215 memcpy(new_ptr, tc, min_size(tc->size,size) + TC_HDR_SIZE);
1218 else {
1219 new_ptr = realloc(tc, size + TC_HDR_SIZE);
1221 #endif
1222 if (unlikely(!new_ptr)) {
1223 tc->flags &= ~TALLOC_FLAG_FREE;
1224 return NULL;
1227 tc = (struct talloc_chunk *)new_ptr;
1228 tc->flags &= ~TALLOC_FLAG_FREE;
1229 if (malloced) {
1230 tc->flags &= ~TALLOC_FLAG_POOLMEM;
1232 if (tc->parent) {
1233 tc->parent->child = tc;
1235 if (tc->child) {
1236 tc->child->parent = tc;
1239 if (tc->prev) {
1240 tc->prev->next = tc;
1242 if (tc->next) {
1243 tc->next->prev = tc;
1246 tc->size = size;
1247 _talloc_set_name_const(TC_PTR_FROM_CHUNK(tc), name);
1249 return TC_PTR_FROM_CHUNK(tc);
1253 a wrapper around talloc_steal() for situations where you are moving a pointer
1254 between two structures, and want the old pointer to be set to NULL
1256 void *_talloc_move(const void *new_ctx, const void *_pptr)
1258 const void **pptr = discard_const_p(const void *,_pptr);
1259 void *ret = talloc_steal(new_ctx, discard_const_p(void, *pptr));
1260 (*pptr) = NULL;
1261 return ret;
1265 return the total size of a talloc pool (subtree)
1267 size_t talloc_total_size(const void *ptr)
1269 size_t total = 0;
1270 struct talloc_chunk *c, *tc;
1272 if (ptr == NULL) {
1273 ptr = null_context;
1275 if (ptr == NULL) {
1276 return 0;
1279 tc = talloc_chunk_from_ptr(ptr);
1281 if (tc->flags & TALLOC_FLAG_LOOP) {
1282 return 0;
1285 tc->flags |= TALLOC_FLAG_LOOP;
1287 if (likely(tc->name != TALLOC_MAGIC_REFERENCE)) {
1288 total = tc->size;
1290 for (c=tc->child;c;c=c->next) {
1291 total += talloc_total_size(TC_PTR_FROM_CHUNK(c));
1294 tc->flags &= ~TALLOC_FLAG_LOOP;
1296 return total;
1300 return the total number of blocks in a talloc pool (subtree)
1302 size_t talloc_total_blocks(const void *ptr)
1304 size_t total = 0;
1305 struct talloc_chunk *c, *tc;
1307 if (ptr == NULL) {
1308 ptr = null_context;
1310 if (ptr == NULL) {
1311 return 0;
1314 tc = talloc_chunk_from_ptr(ptr);
1316 if (tc->flags & TALLOC_FLAG_LOOP) {
1317 return 0;
1320 tc->flags |= TALLOC_FLAG_LOOP;
1322 total++;
1323 for (c=tc->child;c;c=c->next) {
1324 total += talloc_total_blocks(TC_PTR_FROM_CHUNK(c));
1327 tc->flags &= ~TALLOC_FLAG_LOOP;
1329 return total;
1333 return the number of external references to a pointer
1335 size_t talloc_reference_count(const void *ptr)
1337 struct talloc_chunk *tc = talloc_chunk_from_ptr(ptr);
1338 struct talloc_reference_handle *h;
1339 size_t ret = 0;
1341 for (h=tc->refs;h;h=h->next) {
1342 ret++;
1344 return ret;
1348 report on memory usage by all children of a pointer, giving a full tree view
1350 void talloc_report_depth_cb(const void *ptr, int depth, int max_depth,
1351 void (*callback)(const void *ptr,
1352 int depth, int max_depth,
1353 int is_ref,
1354 void *private_data),
1355 void *private_data)
1357 struct talloc_chunk *c, *tc;
1359 if (ptr == NULL) {
1360 ptr = null_context;
1362 if (ptr == NULL) return;
1364 tc = talloc_chunk_from_ptr(ptr);
1366 if (tc->flags & TALLOC_FLAG_LOOP) {
1367 return;
1370 callback(ptr, depth, max_depth, 0, private_data);
1372 if (max_depth >= 0 && depth >= max_depth) {
1373 return;
1376 tc->flags |= TALLOC_FLAG_LOOP;
1377 for (c=tc->child;c;c=c->next) {
1378 if (c->name == TALLOC_MAGIC_REFERENCE) {
1379 struct talloc_reference_handle *h = (struct talloc_reference_handle *)TC_PTR_FROM_CHUNK(c);
1380 callback(h->ptr, depth + 1, max_depth, 1, private_data);
1381 } else {
1382 talloc_report_depth_cb(TC_PTR_FROM_CHUNK(c), depth + 1, max_depth, callback, private_data);
1385 tc->flags &= ~TALLOC_FLAG_LOOP;
1388 static void talloc_report_depth_FILE_helper(const void *ptr, int depth, int max_depth, int is_ref, void *_f)
1390 const char *name = talloc_get_name(ptr);
1391 FILE *f = (FILE *)_f;
1393 if (is_ref) {
1394 fprintf(f, "%*sreference to: %s\n", depth*4, "", name);
1395 return;
1398 if (depth == 0) {
1399 fprintf(f,"%stalloc report on '%s' (total %6lu bytes in %3lu blocks)\n",
1400 (max_depth < 0 ? "full " :""), name,
1401 (unsigned long)talloc_total_size(ptr),
1402 (unsigned long)talloc_total_blocks(ptr));
1403 return;
1406 fprintf(f, "%*s%-30s contains %6lu bytes in %3lu blocks (ref %d) %p\n",
1407 depth*4, "",
1408 name,
1409 (unsigned long)talloc_total_size(ptr),
1410 (unsigned long)talloc_total_blocks(ptr),
1411 (int)talloc_reference_count(ptr), ptr);
1413 #if 0
1414 fprintf(f, "content: ");
1415 if (talloc_total_size(ptr)) {
1416 int tot = talloc_total_size(ptr);
1417 int i;
1419 for (i = 0; i < tot; i++) {
1420 if ((((char *)ptr)[i] > 31) && (((char *)ptr)[i] < 126)) {
1421 fprintf(f, "%c", ((char *)ptr)[i]);
1422 } else {
1423 fprintf(f, "~%02x", ((char *)ptr)[i]);
1427 fprintf(f, "\n");
1428 #endif
1432 report on memory usage by all children of a pointer, giving a full tree view
1434 void talloc_report_depth_file(const void *ptr, int depth, int max_depth, FILE *f)
1436 if (f) {
1437 talloc_report_depth_cb(ptr, depth, max_depth, talloc_report_depth_FILE_helper, f);
1438 fflush(f);
1443 report on memory usage by all children of a pointer, giving a full tree view
1445 void talloc_report_full(const void *ptr, FILE *f)
1447 talloc_report_depth_file(ptr, 0, -1, f);
1451 report on memory usage by all children of a pointer
1453 void talloc_report(const void *ptr, FILE *f)
1455 talloc_report_depth_file(ptr, 0, 1, f);
1459 report on any memory hanging off the null context
1461 static void talloc_report_null(void)
1463 if (talloc_total_size(null_context) != 0) {
1464 talloc_report(null_context, stderr);
1469 report on any memory hanging off the null context
1471 static void talloc_report_null_full(void)
1473 if (talloc_total_size(null_context) != 0) {
1474 talloc_report_full(null_context, stderr);
1479 enable tracking of the NULL context
1481 void talloc_enable_null_tracking(void)
1483 if (null_context == NULL) {
1484 null_context = _talloc_named_const(NULL, 0, "null_context");
1485 if (autofree_context != NULL) {
1486 talloc_reparent(NULL, null_context, autofree_context);
1492 enable tracking of the NULL context, not moving the autofree context
1493 into the NULL context. This is needed for the talloc testsuite
1495 void talloc_enable_null_tracking_no_autofree(void)
1497 if (null_context == NULL) {
1498 null_context = _talloc_named_const(NULL, 0, "null_context");
1503 disable tracking of the NULL context
1505 void talloc_disable_null_tracking(void)
1507 if (null_context != NULL) {
1508 /* we have to move any children onto the real NULL
1509 context */
1510 struct talloc_chunk *tc, *tc2;
1511 tc = talloc_chunk_from_ptr(null_context);
1512 for (tc2 = tc->child; tc2; tc2=tc2->next) {
1513 if (tc2->parent == tc) tc2->parent = NULL;
1514 if (tc2->prev == tc) tc2->prev = NULL;
1516 for (tc2 = tc->next; tc2; tc2=tc2->next) {
1517 if (tc2->parent == tc) tc2->parent = NULL;
1518 if (tc2->prev == tc) tc2->prev = NULL;
1520 tc->child = NULL;
1521 tc->next = NULL;
1523 talloc_free(null_context);
1524 null_context = NULL;
1528 enable leak reporting on exit
1530 void talloc_enable_leak_report(void)
1532 talloc_enable_null_tracking();
1533 atexit(talloc_report_null);
1537 enable full leak reporting on exit
1539 void talloc_enable_leak_report_full(void)
1541 talloc_enable_null_tracking();
1542 atexit(talloc_report_null_full);
1546 talloc and zero memory.
1548 void *_talloc_zero(const void *ctx, size_t size, const char *name)
1550 void *p = _talloc_named_const(ctx, size, name);
1552 if (p) {
1553 memset(p, '\0', size);
1556 return p;
1560 memdup with a talloc.
1562 void *_talloc_memdup(const void *t, const void *p, size_t size, const char *name)
1564 void *newp = _talloc_named_const(t, size, name);
1566 if (likely(newp)) {
1567 memcpy(newp, p, size);
1570 return newp;
1573 static INLINE char *__talloc_strlendup(const void *t, const char *p, size_t len)
1575 char *ret;
1577 ret = (char *)__talloc(t, len + 1);
1578 if (unlikely(!ret)) return NULL;
1580 memcpy(ret, p, len);
1581 ret[len] = 0;
1583 _talloc_set_name_const(ret, ret);
1584 return ret;
1588 strdup with a talloc
1590 char *talloc_strdup(const void *t, const char *p)
1592 if (unlikely(!p)) return NULL;
1593 return __talloc_strlendup(t, p, strlen(p));
1596 #ifndef HAVE_STRNLEN
1597 #define strnlen rep_strnlen
1598 static size_t rep_strnlen(const char* s, size_t n)
1600 if (unlikely(!s)) return 0;
1601 int i = 0;
1602 while (i < n && *s++ != '\0')
1603 ++i;
1604 return i;
1606 #endif
1609 strndup with a talloc
1611 char *talloc_strndup(const void *t, const char *p, size_t n)
1613 if (unlikely(!p)) return NULL;
1614 return __talloc_strlendup(t, p, strnlen(p, n));
1617 static INLINE char *__talloc_strlendup_append(char *s, size_t slen,
1618 const char *a, size_t alen)
1620 char *ret;
1622 ret = talloc_realloc(NULL, s, char, slen + alen + 1);
1623 if (unlikely(!ret)) return NULL;
1625 /* append the string and the trailing \0 */
1626 memcpy(&ret[slen], a, alen);
1627 ret[slen+alen] = 0;
1629 _talloc_set_name_const(ret, ret);
1630 return ret;
1634 * Appends at the end of the string.
1636 char *talloc_strdup_append(char *s, const char *a)
1638 if (unlikely(!s)) {
1639 return talloc_strdup(NULL, a);
1642 if (unlikely(!a)) {
1643 return s;
1646 return __talloc_strlendup_append(s, strlen(s), a, strlen(a));
1650 * Appends at the end of the talloc'ed buffer,
1651 * not the end of the string.
1653 char *talloc_strdup_append_buffer(char *s, const char *a)
1655 size_t slen;
1657 if (unlikely(!s)) {
1658 return talloc_strdup(NULL, a);
1661 if (unlikely(!a)) {
1662 return s;
1665 slen = talloc_get_size(s);
1666 if (likely(slen > 0)) {
1667 slen--;
1670 return __talloc_strlendup_append(s, slen, a, strlen(a));
1674 * Appends at the end of the string.
1676 char *talloc_strndup_append(char *s, const char *a, size_t n)
1678 if (unlikely(!s)) {
1679 return talloc_strdup(NULL, a);
1682 if (unlikely(!a)) {
1683 return s;
1686 return __talloc_strlendup_append(s, strlen(s), a, strnlen(a, n));
1690 * Appends at the end of the talloc'ed buffer,
1691 * not the end of the string.
1693 char *talloc_strndup_append_buffer(char *s, const char *a, size_t n)
1695 size_t slen;
1697 if (unlikely(!s)) {
1698 return talloc_strdup(NULL, a);
1701 if (unlikely(!a)) {
1702 return s;
1705 slen = talloc_get_size(s);
1706 if (likely(slen > 0)) {
1707 slen--;
1710 return __talloc_strlendup_append(s, slen, a, strnlen(a, n));
1713 #ifndef HAVE_VA_COPY
1714 #ifdef HAVE___VA_COPY
1715 #define va_copy(dest, src) __va_copy(dest, src)
1716 #else
1717 #define va_copy(dest, src) (dest) = (src)
1718 #endif
1719 #endif
1721 char *talloc_vasprintf(const void *t, const char *fmt, va_list ap)
1723 int len;
1724 char *ret;
1725 va_list ap2;
1727 va_copy(ap2, ap);
1728 len = vsnprintf(NULL, 0, fmt, ap2);
1729 va_end(ap2);
1730 if (unlikely(len < 0)) {
1731 return NULL;
1734 ret = (char *)__talloc(t, len+1);
1735 if (unlikely(!ret)) return NULL;
1737 va_copy(ap2, ap);
1738 vsnprintf(ret, len+1, fmt, ap2);
1739 va_end(ap2);
1741 _talloc_set_name_const(ret, ret);
1742 return ret;
1747 Perform string formatting, and return a pointer to newly allocated
1748 memory holding the result, inside a memory pool.
1750 char *talloc_asprintf(const void *t, const char *fmt, ...)
1752 va_list ap;
1753 char *ret;
1755 va_start(ap, fmt);
1756 ret = talloc_vasprintf(t, fmt, ap);
1757 va_end(ap);
1758 return ret;
1761 static INLINE char *__talloc_vaslenprintf_append(char *s, size_t slen,
1762 const char *fmt, va_list ap)
1763 PRINTF_ATTRIBUTE(3,0);
1765 static INLINE char *__talloc_vaslenprintf_append(char *s, size_t slen,
1766 const char *fmt, va_list ap)
1768 /* ssize_t isn't present on Windows. */
1769 #ifndef _MSC_VER
1770 ssize_t alen;
1771 #else
1772 size_t alen;
1773 #endif
1774 va_list ap2;
1776 va_copy(ap2, ap);
1777 alen = vsnprintf(NULL, 0, fmt, ap2);
1778 va_end(ap2);
1780 if (alen <= 0) {
1781 /* Either the vsnprintf failed or the format resulted in
1782 * no characters being formatted. In the former case, we
1783 * ought to return NULL, in the latter we ought to return
1784 * the original string. Most current callers of this
1785 * function expect it to never return NULL.
1787 return s;
1790 s = talloc_realloc(NULL, s, char, slen + alen + 1);
1791 if (!s) return NULL;
1793 va_copy(ap2, ap);
1794 vsnprintf(s + slen, alen + 1, fmt, ap2);
1795 va_end(ap2);
1797 _talloc_set_name_const(s, s);
1798 return s;
1802 * Realloc @p s to append the formatted result of @p fmt and @p ap,
1803 * and return @p s, which may have moved. Good for gradually
1804 * accumulating output into a string buffer. Appends at the end
1805 * of the string.
1807 char *talloc_vasprintf_append(char *s, const char *fmt, va_list ap)
1809 if (unlikely(!s)) {
1810 return talloc_vasprintf(NULL, fmt, ap);
1813 return __talloc_vaslenprintf_append(s, strlen(s), fmt, ap);
1817 * Realloc @p s to append the formatted result of @p fmt and @p ap,
1818 * and return @p s, which may have moved. Always appends at the
1819 * end of the talloc'ed buffer, not the end of the string.
1821 char *talloc_vasprintf_append_buffer(char *s, const char *fmt, va_list ap)
1823 size_t slen;
1825 if (unlikely(!s)) {
1826 return talloc_vasprintf(NULL, fmt, ap);
1829 slen = talloc_get_size(s);
1830 if (likely(slen > 0)) {
1831 slen--;
1834 return __talloc_vaslenprintf_append(s, slen, fmt, ap);
1838 Realloc @p s to append the formatted result of @p fmt and return @p
1839 s, which may have moved. Good for gradually accumulating output
1840 into a string buffer.
1842 char *talloc_asprintf_append(char *s, const char *fmt, ...)
1844 va_list ap;
1846 va_start(ap, fmt);
1847 s = talloc_vasprintf_append(s, fmt, ap);
1848 va_end(ap);
1849 return s;
1853 Realloc @p s to append the formatted result of @p fmt and return @p
1854 s, which may have moved. Good for gradually accumulating output
1855 into a buffer.
1857 char *talloc_asprintf_append_buffer(char *s, const char *fmt, ...)
1859 va_list ap;
1861 va_start(ap, fmt);
1862 s = talloc_vasprintf_append_buffer(s, fmt, ap);
1863 va_end(ap);
1864 return s;
1868 alloc an array, checking for integer overflow in the array size
1870 void *_talloc_array(const void *ctx, size_t el_size, unsigned count, const char *name)
1872 if (count >= MAX_TALLOC_SIZE/el_size) {
1873 return NULL;
1875 return _talloc_named_const(ctx, el_size * count, name);
1879 alloc an zero array, checking for integer overflow in the array size
1881 void *_talloc_zero_array(const void *ctx, size_t el_size, unsigned count, const char *name)
1883 if (count >= MAX_TALLOC_SIZE/el_size) {
1884 return NULL;
1886 return _talloc_zero(ctx, el_size * count, name);
1890 realloc an array, checking for integer overflow in the array size
1892 void *_talloc_realloc_array(const void *ctx, void *ptr, size_t el_size, unsigned count, const char *name)
1894 if (count >= MAX_TALLOC_SIZE/el_size) {
1895 return NULL;
1897 return _talloc_realloc(ctx, ptr, el_size * count, name);
1901 a function version of talloc_realloc(), so it can be passed as a function pointer
1902 to libraries that want a realloc function (a realloc function encapsulates
1903 all the basic capabilities of an allocation library, which is why this is useful)
1905 void *talloc_realloc_fn(const void *context, void *ptr, size_t size)
1907 return _talloc_realloc(context, ptr, size, NULL);
1911 static int talloc_autofree_destructor(void *ptr)
1913 autofree_context = NULL;
1914 return 0;
1917 static void talloc_autofree(void)
1919 talloc_free(autofree_context);
1923 return a context which will be auto-freed on exit
1924 this is useful for reducing the noise in leak reports
1926 void *talloc_autofree_context(void)
1928 if (autofree_context == NULL) {
1929 autofree_context = _talloc_named_const(NULL, 0, "autofree_context");
1930 talloc_set_destructor(autofree_context, talloc_autofree_destructor);
1931 atexit(talloc_autofree);
1933 return autofree_context;
1936 size_t talloc_get_size(const void *context)
1938 struct talloc_chunk *tc;
1940 if (context == NULL) {
1941 context = null_context;
1943 if (context == NULL) {
1944 return 0;
1947 tc = talloc_chunk_from_ptr(context);
1949 return tc->size;
1953 find a parent of this context that has the given name, if any
1955 void *talloc_find_parent_byname(const void *context, const char *name)
1957 struct talloc_chunk *tc;
1959 if (context == NULL) {
1960 return NULL;
1963 tc = talloc_chunk_from_ptr(context);
1964 while (tc) {
1965 if (tc->name && strcmp(tc->name, name) == 0) {
1966 return TC_PTR_FROM_CHUNK(tc);
1968 while (tc && tc->prev) tc = tc->prev;
1969 if (tc) {
1970 tc = tc->parent;
1973 return NULL;
1977 show the parentage of a context
1979 void talloc_show_parents(const void *context, FILE *file)
1981 struct talloc_chunk *tc;
1983 if (context == NULL) {
1984 fprintf(file, "talloc no parents for NULL\n");
1985 return;
1988 tc = talloc_chunk_from_ptr(context);
1989 fprintf(file, "talloc parents of '%s'\n", talloc_get_name(context));
1990 while (tc) {
1991 fprintf(file, "\t'%s'\n", talloc_get_name(TC_PTR_FROM_CHUNK(tc)));
1992 while (tc && tc->prev) tc = tc->prev;
1993 if (tc) {
1994 tc = tc->parent;
1997 fflush(file);
2001 return 1 if ptr is a parent of context
2003 int talloc_is_parent(const void *context, const void *ptr)
2005 struct talloc_chunk *tc;
2007 if (context == NULL) {
2008 return 0;
2011 tc = talloc_chunk_from_ptr(context);
2012 while (tc) {
2013 if (TC_PTR_FROM_CHUNK(tc) == ptr) return 1;
2014 while (tc && tc->prev) tc = tc->prev;
2015 if (tc) {
2016 tc = tc->parent;
2019 return 0;