s4:auth Move struct auth_usersupplied_info to a common location
[samba.git] / lib / talloc / talloc.h
index f3aa6def63eef49fbeb4e93798ecd755ce6b5765..c59fd352ed07f8fa47ceca536d2190c0e07fa515 100644 (file)
 #include <stdio.h>
 #include <stdarg.h>
 
-/** \mainpage
- *
- * \section intro_sec Introduction
- *
- * Talloc is a hierarchical, reference counted memory pool system with
- * destructors. Quite a mouthful really, but not too bad once you get used to
- * it.
- *
- * Perhaps the biggest difference from other memory pool systems is that there
- * is no distinction between a "talloc context" and a "talloc pointer". Any
- * pointer returned from talloc() is itself a valid talloc context. This means
- * you can do this:
- *
- * \code
- * struct foo *X = talloc(mem_ctx, struct foo);
- * X->name = talloc_strdup(X, "foo");
- * \endcode
- *
- * and the pointer X->name would be a "child" of the talloc context "X" which
- * is itself a child of mem_ctx. So if you do talloc_free(mem_ctx) then it is
- * all destroyed, whereas if you do talloc_free(X) then just X and X->name are
- * destroyed, and if you do talloc_free(X->name) then just the name element of
- * X is destroyed.
- *
- * If you think about this, then what this effectively gives you is an n-ary
- * tree, where you can free any part of the tree with talloc_free().
- *
- * To start, you should probably first look at the definitions of
- * ::TALLOC_CTX, talloc_init(), talloc() and talloc_free().
- *
- * \section named_blocks Named blocks
- *
- * Every talloc chunk has a name that can be used as a dynamic type-checking
- * system. If for some reason like a callback function you had to cast a
- * "struct foo *" to a "void *" variable, later you can safely reassign the
- * "void *" pointer to a "struct foo *" by using the talloc_get_type() or
- * talloc_get_type_abort() macros.
- *
- * \code
- * struct foo *X = talloc_get_type_abort(ptr, struct foo);
- * \endcode
- *
- * This will abort if "ptr" does not contain a pointer that has been created
- * with talloc(mem_ctx, struct foo).
- *
- * \section multi_threading Multi-Threading
- *
- * talloc itself does not deal with threads. It is thread-safe (assuming the
- * underlying "malloc" is), as long as each thread uses different memory
- * contexts.
- *
- * If two threads uses the same context then they need to synchronize in order
- * to be safe. In particular:
- *
- *
- * - when using talloc_enable_leak_report(), giving directly NULL as a
- *   parent context implicitly refers to a hidden "null context" global
- *   variable, so this should not be used in a multi-threaded environment
- *   without proper synchronization
- * - the context returned by talloc_autofree_context() is also global so
- *   shouldn't be used by several threads simultaneously without
- *   synchronization.
- */
-
-/** \defgroup talloc_basic Basic Talloc Routines
- *
- * This module contains the basic talloc routines that are used in everyday
- * programming.
- */
-
-/**
- * \defgroup talloc_ref Talloc References
- *
- * This module contains the definitions around talloc references
- */
-
-/**
- * \defgroup talloc_array Array routines
- *
- * Talloc contains some handy helpers for handling Arrays conveniently
- */
-
 /**
- * \defgroup talloc_string String handling routines
+ * @defgroup talloc The talloc API
  *
- * Talloc contains some handy string handling functions
- */
-
-/**
- * \defgroup talloc_debug Debugging support routines
- *
- * To aid memory debugging, talloc contains routines to inspect the currently
- * allocated memory hierarchy.
- */
-
-/**
- * \defgroup talloc_internal Internal routines
+ * talloc is a hierarchical, reference counted memory pool system with
+ * destructors. It is the core memory allocator used in Samba.
  *
- * To achieve type-safety, talloc.h defines a lot of macros with type
- * casts. These macros define the user interface to the internal routines you
- * find here. You should not really use these routines directly but go through
- * the external API.
+ * @{
  */
 
-/**
- * \defgroup talloc_undoc Default group of undocumented stuff
- *
- * This should be empty...
- */
+#define TALLOC_VERSION_MAJOR 2
+#define TALLOC_VERSION_MINOR 0
 
-/*\{*/
+int talloc_version_major(void);
+int talloc_version_minor(void);
 
 /**
- * \typedef TALLOC_CTX
- * \brief Define a talloc parent type
- * \ingroup talloc_basic
+ * @brief Define a talloc parent type
  *
  * As talloc is a hierarchial memory allocator, every talloc chunk is a
  * potential parent to other talloc chunks. So defining a separate type for a
  * as it provides an indicator for function arguments. You will frequently
  * write code like
  *
- * \code
- * struct foo *foo_create(TALLOC_CTX *mem_ctx)
- * {
- *     struct foo *result;
- *     result = talloc(mem_ctx, struct foo);
- *     if (result == NULL) return NULL;
- *     ... initialize foo ...
- *     return result;
- * }
- * \endcode
+ * @code
+ *      struct foo *foo_create(TALLOC_CTX *mem_ctx)
+ *      {
+ *              struct foo *result;
+ *              result = talloc(mem_ctx, struct foo);
+ *              if (result == NULL) return NULL;
+ *                      ... initialize foo ...
+ *              return result;
+ *      }
+ * @endcode
  *
  * In this type of allocating functions it is handy to have a general
  * TALLOC_CTX type to indicate which parent to put allocated structures on.
@@ -194,12 +95,136 @@ typedef void TALLOC_CTX;
 #endif
 #endif
 
+#ifdef DOXYGEN
+/**
+ * @brief Create a new talloc context.
+ *
+ * The talloc() macro is the core of the talloc library. It takes a memory
+ * context and a type, and returns a pointer to a new area of memory of the
+ * given type.
+ *
+ * The returned pointer is itself a talloc context, so you can use it as the
+ * context argument to more calls to talloc if you wish.
+ *
+ * The returned pointer is a "child" of the supplied context. This means that if
+ * you talloc_free() the context then the new child disappears as well.
+ * Alternatively you can free just the child.
+ *
+ * @param[in]  ctx      A talloc context to create a new reference on or NULL to
+ *                      create a new top level context.
+ *
+ * @param[in]  type     The type of memory to allocate.
+ *
+ * @return              A type casted talloc context or NULL on error.
+ *
+ * @code
+ *      unsigned int *a, *b;
+ *
+ *      a = talloc(NULL, unsigned int);
+ *      b = talloc(a, unsigned int);
+ * @endcode
+ *
+ * @see talloc_zero
+ * @see talloc_array
+ * @see talloc_steal
+ * @see talloc_free
+ */
+void *talloc(const void *ctx, #type);
+#else
+#define talloc(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type)
+void *_talloc(const void *context, size_t size);
+#endif
+
+/**
+ * @brief Create a new top level talloc context.
+ *
+ * This function creates a zero length named talloc context as a top level
+ * context. It is equivalent to:
+ *
+ * @code
+ *      talloc_named(NULL, 0, fmt, ...);
+ * @endcode
+ * @param[in]  fmt      Format string for the name.
+ *
+ * @param[in]  ...      Additional printf-style arguments.
+ *
+ * @return              The allocated memory chunk, NULL on error.
+ *
+ * @see talloc_named()
+ */
+void *talloc_init(const char *fmt, ...) PRINTF_ATTRIBUTE(1,2);
+
+#ifdef DOXYGEN
+/**
+ * @brief Free a chunk of talloc memory.
+ *
+ * This function frees a piece of talloc memory, and all its children. It
+ * operates recursively on its children. You can call talloc_free() on any
+ * pointer returned by talloc().
+ *
+ * If this pointer has an additional parent when talloc_free() is called then
+ * the memory is not actually released, but instead the most recently
+ * established parent is destroyed. See talloc_reference() for details on
+ * establishing additional parents.
+ *
+ * For more control on which parent is removed, see talloc_unlink().
+ *
+ * From the 2.0 version of talloc, as a special case, talloc_free() is
+ * refused on pointers that have more than one parent, as talloc would
+ * have no way of knowing which parent should be removed. To free a
+ * pointer that has more than one parent please use talloc_unlink().
+ *
+ * To help you find problems in your code caused by this behaviour, if
+ * you do try and free a pointer with more than one parent then the
+ * talloc logging function will be called to give output like this:
+ *
+ * @code
+ *   ERROR: talloc_free with references at some_dir/source/foo.c:123
+ *     reference at some_dir/source/other.c:325
+ *     reference at some_dir/source/third.c:121
+ * @endcode
+ *
+ * Please see the documentation for talloc_set_log_fn() and
+ * talloc_set_log_stderr() for more information on talloc logging
+ * functions.
+ *
+ * @param[in]  ptr      The chunk to be freed.
+ *
+ * @return              Returns 0 on success and -1 on error. The only possible
+ *                      failure condition is if the pointer had a destructor
+ *                      attached to it and the destructor returned -1.
+ *
+ * Example:
+ * @code
+ *      unsigned int *a, *b;
+ *      a = talloc(NULL, unsigned int);
+ *      b = talloc(a, unsigned int);
+ *
+ *      talloc_free(a); // Frees a and b
+ * @endcode
+ *
+ * @see talloc_set_destructor()
+ * @see talloc_unlink()
+ */
+int talloc_free(void *ptr);
+#else
+#define talloc_free(ctx) _talloc_free(ctx, __location__)
+int _talloc_free(void *ptr, const char *location);
+#endif
+
+/**
+ * @brief Free a talloc chunk's children.
+ *
+ * The function walks along the list of all children of a talloc context and
+ * talloc_free()s only the children, not the context itself.
+ *
+ * @param[in]  ptr      The chunk that you want to free the children of.
+ */
+void talloc_free_children(void *ptr);
+
+#ifdef DOXYGEN
 /**
- * \def talloc_set_destructor
- * \brief Assign a function to be called when a chunk is freed
- * \param ptr The talloc chunk to add a destructor to
- * \param function The destructor function to be called
- * \ingroup talloc_basic
+ * @brief Assign a destructor function to be called when a chunk is freed.
  *
  * The function talloc_set_destructor() sets the "destructor" for the pointer
  * "ptr". A destructor is a function that is called when the memory used by a
@@ -222,34 +247,77 @@ typedef void TALLOC_CTX;
  * destructor for then talloc_free() will return -1 and the free will be
  * ignored. This would be a pointless operation anyway, as the destructor is
  * only called when the memory is just about to go away.
+ *
+ * @param[in]  ptr      The talloc chunk to add a destructor to.
+ *
+ * @param[in]  destructor  The destructor function to be called. NULL to remove
+ *                         it.
+ *
+ * Example:
+ * @code
+ *      static int destroy_fd(int *fd) {
+ *              close(*fd);
+ *              return 0;
+ *      }
+ *
+ *      int *open_file(const char *filename) {
+ *              int *fd = talloc(NULL, int);
+ *              *fd = open(filename, O_RDONLY);
+ *              if (*fd < 0) {
+ *                      talloc_free(fd);
+ *                      return NULL;
+ *              }
+ *              // Whenever they free this, we close the file.
+ *              talloc_set_destructor(fd, destroy_fd);
+ *              return fd;
+ *      }
+ * @endcode
+ *
+ * @see talloc()
+ * @see talloc_free()
  */
+void talloc_set_destructor(const void *ptr, int (*destructor)(void *));
 
 /**
- * \def talloc_steal(ctx, ptr)
- * \brief Change a talloc chunk's parent
- * \param ctx The new parent context
- * \param ptr The talloc chunk to move
- * \return ptr
- * \ingroup talloc_basic
+ * @brief Change a talloc chunk's parent.
  *
  * The talloc_steal() function changes the parent context of a talloc
  * pointer. It is typically used when the context that the pointer is
  * currently a child of is going to be freed and you wish to keep the
  * memory for a longer time.
  *
- * The talloc_steal() function returns the pointer that you pass it. It
- * does not have any failure modes.
- *
- * NOTE: It is possible to produce loops in the parent/child relationship
- * if you are not careful with talloc_steal(). No guarantees are provided
- * as to your sanity or the safety of your data if you do this.
- *
  * To make the changed hierarchy less error-prone, you might consider to use
  * talloc_move().
  *
- * talloc_steal (ctx, NULL) will return NULL with no sideeffects.
+ * If you try and call talloc_steal() on a pointer that has more than one
+ * parent then the result is ambiguous. Talloc will choose to remove the
+ * parent that is currently indicated by talloc_parent() and replace it with
+ * the chosen parent. You will also get a message like this via the talloc
+ * logging functions:
+ *
+ * @code
+ *   WARNING: talloc_steal with references at some_dir/source/foo.c:123
+ *     reference at some_dir/source/other.c:325
+ *     reference at some_dir/source/third.c:121
+ * @endcode
+ *
+ * To unambiguously change the parent of a pointer please see the function
+ * talloc_reparent(). See the talloc_set_log_fn() documentation for more
+ * information on talloc logging.
+ *
+ * @param[in]  new_ctx  The new parent context.
+ *
+ * @param[in]  ptr      The talloc chunk to move.
+ *
+ * @return              Returns the pointer that you pass it. It does not have
+ *                      any failure modes.
+ *
+ * @note It is possible to produce loops in the parent/child relationship
+ * if you are not careful with talloc_steal(). No guarantees are provided
+ * as to your sanity or the safety of your data if you do this.
  */
-
+void *talloc_steal(const void *new_ctx, const void *ptr);
+#else /* DOXYGEN */
 /* try to make talloc_set_destructor() and talloc_steal() type safe,
    if we have a recent gcc */
 #if (__GNUC__ >= 3)
@@ -261,359 +329,444 @@ typedef void TALLOC_CTX;
        } while(0)
 /* this extremely strange macro is to avoid some braindamaged warning
    stupidity in gcc 4.1.x */
-#define talloc_steal(ctx, ptr) ({ _TALLOC_TYPEOF(ptr) __talloc_steal_ret = (_TALLOC_TYPEOF(ptr))_talloc_steal((ctx),(ptr)); __talloc_steal_ret; })
-#else
+#define talloc_steal(ctx, ptr) ({ _TALLOC_TYPEOF(ptr) __talloc_steal_ret = (_TALLOC_TYPEOF(ptr))_talloc_steal_loc((ctx),(ptr), __location__); __talloc_steal_ret; })
+#else /* __GNUC__ >= 3 */
 #define talloc_set_destructor(ptr, function) \
        _talloc_set_destructor((ptr), (int (*)(void *))(function))
 #define _TALLOC_TYPEOF(ptr) void *
-#define talloc_steal(ctx, ptr) (_TALLOC_TYPEOF(ptr))_talloc_steal((ctx),(ptr))
-#endif
+#define talloc_steal(ctx, ptr) (_TALLOC_TYPEOF(ptr))_talloc_steal_loc((ctx),(ptr), __location__)
+#endif /* __GNUC__ >= 3 */
+void _talloc_set_destructor(const void *ptr, int (*_destructor)(void *));
+void *_talloc_steal_loc(const void *new_ctx, const void *ptr, const char *location);
+#endif /* DOXYGEN */
 
 /**
- * \def talloc_reference(ctx, ptr)
- * \brief Create an additional talloc parent to a pointer
- * \param ctx The additional parent
- * \param ptr The pointer you want to create an additional parent for
- * \return ptr
- * \ingroup talloc_ref
+ * @brief Assign a name to a talloc chunk.
  *
- * The talloc_reference() function makes "context" an additional parent of
- * "ptr".
+ * Each talloc pointer has a "name". The name is used principally for
+ * debugging purposes, although it is also possible to set and get the name on
+ * a pointer in as a way of "marking" pointers in your code.
  *
- * The return value of talloc_reference() is always the original pointer
- * "ptr", unless talloc ran out of memory in creating the reference in which
- * case it will return NULL (each additional reference consumes around 48
- * bytes of memory on intel x86 platforms).
+ * The main use for names on pointer is for "talloc reports". See
+ * talloc_report() and talloc_report_full() for details. Also see
+ * talloc_enable_leak_report() and talloc_enable_leak_report_full().
  *
- * If "ptr" is NULL, then the function is a no-op, and simply returns NULL.
+ * The talloc_set_name() function allocates memory as a child of the
+ * pointer. It is logically equivalent to:
  *
- * After creating a reference you can free it in one of the following ways:
+ * @code
+ *      talloc_set_name_const(ptr, talloc_asprintf(ptr, fmt, ...));
+ * @endcode
  *
- * - you can talloc_free() any parent of the original pointer. That
- *   will reduce the number of parents of this pointer by 1, and will
- *   cause this pointer to be freed if it runs out of parents.
+ * @param[in]  ptr      The talloc chunk to assign a name to.
  *
- * - you can talloc_free() the pointer itself. That will destroy the
- *   most recently established parent to the pointer and leave the
- *   pointer as a child of its current parent.
+ * @param[in]  fmt      Format string for the name.
  *
- * For more control on which parent to remove, see talloc_unlink()
+ * @param[in]  ...      Add printf-style additional arguments.
+ *
+ * @return              The assigned name, NULL on error.
+ *
+ * @note Multiple calls to talloc_set_name() will allocate more memory without
+ * releasing the name. All of the memory is released when the ptr is freed
+ * using talloc_free().
  */
-#define talloc_reference(ctx, ptr) (_TALLOC_TYPEOF(ptr))_talloc_reference((ctx),(ptr))
-
+const char *talloc_set_name(const void *ptr, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
 
+#ifdef DOXYGEN
 /**
- * \def talloc_move(ctx, ptr)
- * \brief Change a talloc chunk's parent
- * \param ctx The new parent context
- * \param ptr Pointer to the talloc chunk to move
- * \return ptr
- * \ingroup talloc_basic
+ * @brief Change a talloc chunk's parent.
  *
- * talloc_move() has the same effect as talloc_steal(), and additionally sets
+ * This function has the same effect as talloc_steal(), and additionally sets
  * the source pointer to NULL. You would use it like this:
  *
- * \code
- * struct foo *X = talloc(tmp_ctx, struct foo);
- * struct foo *Y;
- * Y = talloc_move(new_ctx, &X);
- * \endcode
+ * @code
+ *      struct foo *X = talloc(tmp_ctx, struct foo);
+ *      struct foo *Y;
+ *      Y = talloc_move(new_ctx, &X);
+ * @endcode
+ *
+ * @param[in]  new_ctx  The new parent context.
+ *
+ * @param[in]  ptr      Pointer to the talloc chunk to move.
+ *
+ * @return              The pointer of the talloc chunk it has been moved to,
+ *                      NULL on error.
  */
+void *talloc_move(const void *new_ctx, const void *ptr);
+#else
 #define talloc_move(ctx, ptr) (_TALLOC_TYPEOF(*(ptr)))_talloc_move((ctx),(void *)(ptr))
+void *_talloc_move(const void *new_ctx, const void *pptr);
+#endif
 
-/* useful macros for creating type checked pointers */
+/**
+ * @brief Assign a name to a talloc chunk.
+ *
+ * The function is just like talloc_set_name(), but it takes a string constant,
+ * and is much faster. It is extensively used by the "auto naming" macros, such
+ * as talloc_p().
+ *
+ * This function does not allocate any memory. It just copies the supplied
+ * pointer into the internal representation of the talloc ptr. This means you
+ * must not pass a name pointer to memory that will disappear before the ptr
+ * is freed with talloc_free().
+ *
+ * @param[in]  ptr      The talloc chunk to assign a name to.
+ *
+ * @param[in]  name     Format string for the name.
+ */
+void talloc_set_name_const(const void *ptr, const char *name);
 
 /**
- * \def talloc(ctx, type)
- * \brief Main entry point to allocate structures
- * \param ctx The talloc context to hang the result off
- * \param type The type that we want to allocate
- * \return Pointer to a piece of memory, properly cast to "type *"
- * \ingroup talloc_basic
+ * @brief Create a named talloc chunk.
  *
- * The talloc() macro is the core of the talloc library. It takes a memory
- * context and a type, and returns a pointer to a new area of memory of the
- * given type.
+ * The talloc_named() function creates a named talloc pointer. It is
+ * equivalent to:
  *
- * The returned pointer is itself a talloc context, so you can use it as the
- * context argument to more calls to talloc if you wish.
+ * @code
+ *      ptr = talloc_size(context, size);
+ *      talloc_set_name(ptr, fmt, ....);
+ * @endcode
+ *
+ * @param[in]  context  The talloc context to hang the result off.
+ *
+ * @param[in]  size     Number of char's that you want to allocate.
+ *
+ * @param[in]  fmt      Format string for the name.
  *
- * The returned pointer is a "child" of the supplied context. This means that
- * if you talloc_free() the context then the new child disappears as
- * well. Alternatively you can free just the child.
+ * @param[in]  ...      Additional printf-style arguments.
  *
- * The context argument to talloc() can be NULL, in which case a new top
- * level context is created.
+ * @return              The allocated memory chunk, NULL on error.
+ *
+ * @see talloc_set_name()
  */
-#define talloc(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type)
+void *talloc_named(const void *context, size_t size,
+                  const char *fmt, ...) PRINTF_ATTRIBUTE(3,4);
+
+/**
+ * @brief Basic routine to allocate a chunk of memory.
+ *
+ * This is equivalent to:
+ *
+ * @code
+ *      ptr = talloc_size(context, size);
+ *      talloc_set_name_const(ptr, name);
+ * @endcode
+ *
+ * @param[in]  context  The parent context.
+ *
+ * @param[in]  size     The number of char's that we want to allocate.
+ *
+ * @param[in]  name     The name the talloc block has.
+ *
+ * @return             The allocated memory chunk, NULL on error.
+ */
+void *talloc_named_const(const void *context, size_t size, const char *name);
 
+#ifdef DOXYGEN
 /**
- * \def talloc_size(ctx, size)
- * \brief Untyped allocation
- * \param ctx The talloc context to hang the result off
- * \param size Number of char's that you want to allocate
- * \return The allocated memory chunk
- * \ingroup talloc_basic
+ * @brief Untyped allocation.
+ *
+ * The function should be used when you don't have a convenient type to pass to
+ * talloc(). Unlike talloc(), it is not type safe (as it returns a void *), so
+ * you are on your own for type checking.
+ *
+ * Best to use talloc() or talloc_array() instead.
  *
- * The function talloc_size() should be used when you don't have a convenient
- * type to pass to talloc(). Unlike talloc(), it is not type safe (as it
- * returns a void *), so you are on your own for type checking.
+ * @param[in]  ctx     The talloc context to hang the result off.
+ *
+ * @param[in]  size    Number of char's that you want to allocate.
+ *
+ * @return             The allocated memory chunk, NULL on error.
+ *
+ * Example:
+ * @code
+ *      void *mem = talloc_size(NULL, 100);
+ * @endcode
  */
+void *talloc_size(const void *ctx, size_t size);
+#else
 #define talloc_size(ctx, size) talloc_named_const(ctx, size, __location__)
+#endif
 
+#ifdef DOXYGEN
 /**
- * \def talloc_ptrtype(ctx, ptr)
- * \brief Allocate into a typed pointer
- * \param ctx The talloc context to hang the result off
- * \param ptr The pointer you want to assign the result to
- * \result The allocated memory chunk, properly cast
- * \ingroup talloc_basic
+ * @brief Allocate into a typed pointer.
  *
- * The talloc_ptrtype() macro should be used when you have a pointer and
- * want to allocate memory to point at with this pointer. When compiling
- * with gcc >= 3 it is typesafe. Note this is a wrapper of talloc_size()
- * and talloc_get_name() will return the current location in the source file.
- * and not the type.
+ * The talloc_ptrtype() macro should be used when you have a pointer and want
+ * to allocate memory to point at with this pointer. When compiling with
+ * gcc >= 3 it is typesafe. Note this is a wrapper of talloc_size() and
+ * talloc_get_name() will return the current location in the source file and
+ * not the type.
+ *
+ * @param[in]  ctx      The talloc context to hang the result off.
+ *
+ * @param[in]  type     The pointer you want to assign the result to.
+ *
+ * @return              The properly casted allocated memory chunk, NULL on
+ *                      error.
+ *
+ * Example:
+ * @code
+ *       unsigned int *a = talloc_ptrtype(NULL, a);
+ * @endcode
  */
+void *talloc_ptrtype(const void *ctx, #type);
+#else
 #define talloc_ptrtype(ctx, ptr) (_TALLOC_TYPEOF(ptr))talloc_size(ctx, sizeof(*(ptr)))
+#endif
 
+#ifdef DOXYGEN
 /**
- * \def talloc_new(ctx)
- * \brief Allocate a new 0-sized talloc chunk
- * \param ctx The talloc parent context
- * \return A new talloc chunk
- * \ingroup talloc_basic
+ * @brief Allocate a new 0-sized talloc chunk.
  *
  * This is a utility macro that creates a new memory context hanging off an
- * exiting context, automatically naming it "talloc_new: __location__" where
+ * existing context, automatically naming it "talloc_new: __location__" where
  * __location__ is the source line it is called from. It is particularly
  * useful for creating a new temporary working context.
+ *
+ * @param[in]  ctx      The talloc parent context.
+ *
+ * @return              A new talloc chunk, NULL on error.
  */
+void *talloc_new(const void *ctx);
+#else
 #define talloc_new(ctx) talloc_named_const(ctx, 0, "talloc_new: " __location__)
+#endif
 
+#ifdef DOXYGEN
 /**
- * \def talloc_zero(ctx, type)
- * \brief Allocate a 0-initizialized structure
- * \param ctx The talloc context to hang the result off
- * \param type The type that we want to allocate
- * \return Pointer to a piece of memory, properly cast to "type *"
- * \ingroup talloc_basic
+ * @brief Allocate a 0-initizialized structure.
+ *
+ * The macro is equivalent to:
+ *
+ * @code
+ *      ptr = talloc(ctx, type);
+ *      if (ptr) memset(ptr, 0, sizeof(type));
+ * @endcode
+ *
+ * @param[in]  ctx      The talloc context to hang the result off.
+ *
+ * @param[in]  type     The type that we want to allocate.
  *
- * The talloc_zero() macro is equivalent to:
+ * @return              Pointer to a piece of memory, properly cast to 'type *',
+ *                      NULL on error.
  *
- * \code
- * ptr = talloc(ctx, type);
- * if (ptr) memset(ptr, 0, sizeof(type));
- * \endcode
+ * Example:
+ * @code
+ *      unsigned int *a, *b;
+ *      a = talloc_zero(NULL, unsigned int);
+ *      b = talloc_zero(a, unsigned int);
+ * @endcode
+ *
+ * @see talloc()
+ * @see talloc_zero_size()
+ * @see talloc_zero_array()
  */
-#define talloc_zero(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type)
+void *talloc_zero(const void *ctx, #type);
 
 /**
- * \def talloc_zero_size(ctx, size)
- * \brief Untyped, 0-initialized allocation
- * \param ctx The talloc context to hang the result off
- * \param size Number of char's that you want to allocate
- * \return The allocated memory chunk
- * \ingroup talloc_basic
+ * @brief Allocate untyped, 0-initialized memory.
  *
- * The talloc_zero_size() macro is equivalent to:
+ * @param[in]  ctx      The talloc context to hang the result off.
  *
- * \code
- * ptr = talloc_size(ctx, size);
- * if (ptr) memset(ptr, 0, size);
- * \endcode
+ * @param[in]  size     Number of char's that you want to allocate.
+ *
+ * @return              The allocated memory chunk.
  */
-
+void *talloc_zero_size(const void *ctx, size_t size);
+#else
+#define talloc_zero(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type)
 #define talloc_zero_size(ctx, size) _talloc_zero(ctx, size, __location__)
-
-#define talloc_zero_array(ctx, type, count) (type *)_talloc_zero_array(ctx, sizeof(type), count, #type)
+void *_talloc_zero(const void *ctx, size_t size, const char *name);
+#endif
 
 /**
- * \def talloc_array(ctx, type, count)
- * \brief Allocate an array
- * \param ctx The talloc context to hang the result off
- * \param type The type that we want to allocate
- * \param count The number of "type" elements you want to allocate
- * \return The allocated result, properly cast to "type *"
- * \ingroup talloc_array
+ * @brief Return the name of a talloc chunk.
  *
- * The talloc_array() macro is equivalent to::
+ * @param[in]  ptr      The talloc chunk.
  *
- * \code
- * (type *)talloc_size(ctx, sizeof(type) * count);
- * \endcode
+ * @return              The current name for the given talloc pointer.
  *
- * except that it provides integer overflow protection for the multiply,
- * returning NULL if the multiply overflows.
+ * @see talloc_set_name()
  */
-#define talloc_array(ctx, type, count) (type *)_talloc_array(ctx, sizeof(type), count, #type)
+const char *talloc_get_name(const void *ptr);
 
 /**
- * \def talloc_array_size(ctx, size, count)
- * \brief Allocate an array
- * \param ctx The talloc context to hang the result off
- * \param size The size of an array element
- * \param count The number of "type" elements you want to allocate
- * \return The allocated result, properly cast to "type *"
- * \ingroup talloc_array
+ * @brief Verify that a talloc chunk carries a specified name.
+ *
+ * This function checks if a pointer has the specified name. If it does
+ * then the pointer is returned.
  *
- * The talloc_array_size() function is useful when the type is not
- * known. It operates in the same way as talloc_array(), but takes a size
- * instead of a type.
+ * @param[in]  ptr       The talloc chunk to check.
+ *
+ * @param[in]  name      The name to check against.
+ *
+ * @return               The pointer if the name matches, NULL if it doesn't.
  */
-#define talloc_array_size(ctx, size, count) _talloc_array(ctx, size, count, __location__)
+void *talloc_check_name(const void *ptr, const char *name);
 
 /**
- * \def talloc_array_ptrtype(ctx, ptr, count)
- * \brief Allocate an array into a typed pointer
- * \param ctx The talloc context to hang the result off
- * \param ptr The pointer you want to assign the result to
- * \param count The number of elements you want to allocate
- * \result The allocated memory chunk, properly cast
- * \ingroup talloc_array
+ * @brief Get the parent chunk of a pointer.
  *
- * The talloc_array_ptrtype() macro should be used when you have a pointer to
- * an array and want to allocate memory of an array to point at with this
- * pointer. When compiling with gcc >= 3 it is typesafe. Note this is a
- * wrapper of talloc_array_size() and talloc_get_name() will return the
- * current location in the source file.  and not the type.
+ * @param[in]  ptr      The talloc pointer to inspect.
+ *
+ * @return              The talloc parent of ptr, NULL on error.
  */
-#define talloc_array_ptrtype(ctx, ptr, count) (_TALLOC_TYPEOF(ptr))talloc_array_size(ctx, sizeof(*(ptr)), count)
+void *talloc_parent(const void *ptr);
 
 /**
- * \def talloc_array_length(ctx)
- * \brief Return the number of elements in a talloc'ed array
- * \param ctx The talloc'ed array
- * \return The number of elements in ctx
- * \ingroup talloc_array
+ * @brief Get a talloc chunk's parent name.
  *
- * A talloc chunk carries its own size, so for talloc'ed arrays it is not
- * necessary to store the number of elements explicitly.
+ * @param[in]  ptr      The talloc pointer to inspect.
+ *
+ * @return              The name of ptr's parent chunk.
  */
-#define talloc_array_length(ctx) ((ctx) ? talloc_get_size(ctx)/sizeof(*ctx) : 0)
+const char *talloc_parent_name(const void *ptr);
 
 /**
- * \def talloc_realloc(ctx, p, type, count)
- * \brief Change the size of a talloc array
- * \param ctx The parent context used if "p" is NULL
- * \param p The chunk to be resized
- * \param type The type of the array element inside p
- * \param count The intended number of array elements
- * \return The new array
- * \ingroup talloc_array
- *
- * The talloc_realloc() macro changes the size of a talloc
- * pointer. The "count" argument is the number of elements of type "type"
- * that you want the resulting pointer to hold.
+ * @brief Get the total size of a talloc chunk including its children.
  *
- * talloc_realloc() has the following equivalences::
+ * The function returns the total size in bytes used by this pointer and all
+ * child pointers. Mostly useful for debugging.
  *
- * \code
- * talloc_realloc(context, NULL, type, 1) ==> talloc(context, type);
- * talloc_realloc(context, NULL, type, N) ==> talloc_array(context, type, N);
- * talloc_realloc(context, ptr, type, 0)  ==> talloc_free(ptr);
- * \endcode
+ * Passing NULL is allowed, but it will only give a meaningful result if
+ * talloc_enable_leak_report() or talloc_enable_leak_report_full() has
+ * been called.
  *
- * The "context" argument is only used if "ptr" is NULL, otherwise it is
- * ignored.
+ * @param[in]  ptr      The talloc chunk.
  *
- * talloc_realloc() returns the new pointer, or NULL on failure. The call
- * will fail either due to a lack of memory, or because the pointer has
- * more than one parent (see talloc_reference()).
+ * @return              The total size.
  */
-#define talloc_realloc(ctx, p, type, count) (type *)_talloc_realloc_array(ctx, p, sizeof(type), count, #type)
+size_t talloc_total_size(const void *ptr);
 
 /**
- * \def talloc_realloc_size(ctx, ptr, size)
- * \brief Untyped realloc
- * \param ctx The parent context used if "ptr" is NULL
- * \param ptr The chunk to be resized
- * \param size The new chunk size
- * \return The new chunk
- * \ingroup talloc_array
+ * @brief Get the number of talloc chunks hanging off a chunk.
+ *
+ * The talloc_total_blocks() function returns the total memory block
+ * count used by this pointer and all child pointers. Mostly useful for
+ * debugging.
+ *
+ * Passing NULL is allowed, but it will only give a meaningful result if
+ * talloc_enable_leak_report() or talloc_enable_leak_report_full() has
+ * been called.
+ *
+ * @param[in]  ptr      The talloc chunk.
  *
- * The talloc_realloc_size() function is useful when the type is not known so
- * the typesafe talloc_realloc() cannot be used.
+ * @return              The total size.
  */
-#define talloc_realloc_size(ctx, ptr, size) _talloc_realloc(ctx, ptr, size, __location__)
+size_t talloc_total_blocks(const void *ptr);
 
+#ifdef DOXYGEN
 /**
- * \def talloc_memdup(t, p, size)
- * \brief Duplicate a memory area into a talloc chunk
- * \param t The talloc context to hang the result off
- * \param p The memory chunk you want to duplicate
- * \param size Number of char's that you want copy
- * \return The allocated memory chunk
- * \ingroup talloc_basic
+ * @brief Duplicate a memory area into a talloc chunk.
+ *
+ * The function is equivalent to:
+ *
+ * @code
+ *      ptr = talloc_size(ctx, size);
+ *      if (ptr) memcpy(ptr, p, size);
+ * @endcode
  *
- * The talloc_memdup() function is equivalent to::
+ * @param[in]  t        The talloc context to hang the result off.
  *
- * \code
- * ptr = talloc_size(ctx, size);
- * if (ptr) memcpy(ptr, p, size);
- * \endcode
+ * @param[in]  p        The memory chunk you want to duplicate.
+ *
+ * @param[in]  size     Number of char's that you want copy.
+ *
+ * @return              The allocated memory chunk.
+ *
+ * @see talloc_size()
  */
+void *talloc_memdup(const void *t, const void *p, size_t size);
+#else
 #define talloc_memdup(t, p, size) _talloc_memdup(t, p, size, __location__)
+void *_talloc_memdup(const void *t, const void *p, size_t size, const char *name);
+#endif
 
+#ifdef DOXYGEN
 /**
- * \def talloc_set_type(ptr, type)
- * \brief Assign a type to a talloc chunk
- * \param ptr The talloc chunk to assign the type to
- * \param type The type to assign
- * \ingroup talloc_basic
+ * @brief Assign a type to a talloc chunk.
+ *
+ * This macro allows you to force the name of a pointer to be a particular type.
+ * This can be used in conjunction with talloc_get_type() to do type checking on
+ * void* pointers.
+ *
+ * It is equivalent to this:
  *
- * This macro allows you to force the name of a pointer to be a
- * particular type. This can be used in conjunction with
- * talloc_get_type() to do type checking on void* pointers.
+ * @code
+ *      talloc_set_name_const(ptr, #type)
+ * @endcode
  *
- * It is equivalent to this::
+ * @param[in]  ptr      The talloc chunk to assign the type to.
  *
- * \code
- * talloc_set_name_const(ptr, #type)
- * \endcode
+ * @param[in]  type     The type to assign.
  */
-#define talloc_set_type(ptr, type) talloc_set_name_const(ptr, #type)
+void talloc_set_type(const char *ptr, #type);
 
 /**
- * \def talloc_get_type(ptr, type)
- * \brief Get a typed pointer out of a talloc pointer
- * \param ptr The talloc pointer to check
- * \param type The type to check against
- * \return ptr, properly cast, or NULL
- * \ingroup talloc_basic
+ * @brief Get a typed pointer out of a talloc pointer.
  *
  * This macro allows you to do type checking on talloc pointers. It is
  * particularly useful for void* private pointers. It is equivalent to
  * this:
  *
- * \code
- * (type *)talloc_check_name(ptr, #type)
- * \endcode
+ * @code
+ *      (type *)talloc_check_name(ptr, #type)
+ * @endcode
+ *
+ * @param[in]  ptr      The talloc pointer to check.
+ *
+ * @param[in]  type     The type to check against.
+ *
+ * @return              The properly casted pointer given by ptr, NULL on error.
  */
-
+type *talloc_get_type(const void *ptr, #type);
+#else
+#define talloc_set_type(ptr, type) talloc_set_name_const(ptr, #type)
 #define talloc_get_type(ptr, type) (type *)talloc_check_name(ptr, #type)
+#endif
 
+#ifdef DOXYGEN
 /**
- * \def talloc_get_type_abort(ptr, type)
- * \brief Helper macro to safely turn a void * into a typed pointer
- * \param ptr The void * to convert
- * \param type The type that this chunk contains
- * \return Same value as ptr, type-checked and properly cast
- * \ingroup talloc_basic
+ * @brief Safely turn a void pointer into a typed pointer.
  *
  * This macro is used together with talloc(mem_ctx, struct foo). If you had to
- * assing the talloc chunk pointer to some void * variable,
+ * assing the talloc chunk pointer to some void pointer variable,
  * talloc_get_type_abort() is the recommended way to get the convert the void
  * pointer back to a typed pointer.
+ *
+ * @param[in]  ptr      The void pointer to convert.
+ *
+ * @param[in]  type     The type that this chunk contains
+ *
+ * @return              The same value as ptr, type-checked and properly cast.
  */
+void *talloc_get_type_abort(const void *ptr, #type);
+#else
 #define talloc_get_type_abort(ptr, type) (type *)_talloc_get_type_abort(ptr, #type, __location__)
+void *_talloc_get_type_abort(const void *ptr, const char *name, const char *location);
+#endif
+
+/**
+ * @brief Find a parent context by name.
+ *
+ * Find a parent memory context of the current context that has the given
+ * name. This can be very useful in complex programs where it may be
+ * difficult to pass all information down to the level you need, but you
+ * know the structure you want is a parent of another context.
+ *
+ * @param[in]  ctx      The talloc chunk to start from.
+ *
+ * @param[in]  name     The name of the parent we look for.
+ *
+ * @return              The memory context we are looking for, NULL if not
+ *                      found.
+ */
+void *talloc_find_parent_byname(const void *ctx, const char *name);
 
+#ifdef DOXYGEN
 /**
- * \def talloc_find_parent_bytype(ptr, type)
- * \brief Find a parent context by type
- * \param ptr The talloc chunk to start from
- * \param type The type of the parent to look for
- * \ingroup talloc_basic
+ * @brief Find a parent context by type.
  *
  * Find a parent memory context of the current context that has the given
  * name. This can be very useful in complex programs where it may be
@@ -621,29 +774,21 @@ typedef void TALLOC_CTX;
  * know the structure you want is a parent of another context.
  *
  * Like talloc_find_parent_byname() but takes a type, making it typesafe.
+ *
+ * @param[in]  ptr      The talloc chunk to start from.
+ *
+ * @param[in]  type     The type of the parent to look for.
+ *
+ * @return              The memory context we are looking for, NULL if not
+ *                      found.
  */
+void *talloc_find_parent_bytype(const void *ptr, #type);
+#else
 #define talloc_find_parent_bytype(ptr, type) (type *)talloc_find_parent_byname(ptr, #type)
-
-#if TALLOC_DEPRECATED
-#define talloc_zero_p(ctx, type) talloc_zero(ctx, type)
-#define talloc_p(ctx, type) talloc(ctx, type)
-#define talloc_array_p(ctx, type, count) talloc_array(ctx, type, count)
-#define talloc_realloc_p(ctx, p, type, count) talloc_realloc(ctx, p, type, count)
-#define talloc_destroy(ctx) talloc_free(ctx)
-#define talloc_append_string(c, s, a) (s?talloc_strdup_append(s,a):talloc_strdup(c, a))
 #endif
 
-#define TALLOC_FREE(ctx) do { talloc_free(ctx); ctx=NULL; } while(0)
-
-/* The following definitions come from talloc.c  */
-void *_talloc(const void *context, size_t size);
-
 /**
- * \brief Allocate a talloc pool
- * \param context The talloc context to hang the result off
- * \param size Size of the talloc pool
- * \result The talloc pool
- * \ingroup talloc_basic
+ * @brief Allocate a talloc pool.
  *
  * A talloc pool is a pure optimization for specific situations. In the
  * release process for Samba 3.2 we found out that we had become considerably
@@ -671,263 +816,666 @@ void *_talloc(const void *context, size_t size);
  * The downside of a talloc pool is that if you talloc_move() a child of a
  * talloc pool to a talloc parent outside the pool, the whole pool memory is
  * not free(3)'ed until that moved chunk is also talloc_free()ed.
+ *
+ * @param[in]  context  The talloc context to hang the result off.
+ *
+ * @param[in]  size     Size of the talloc pool.
+ *
+ * @return              The allocated talloc pool, NULL on error.
  */
 void *talloc_pool(const void *context, size_t size);
-void _talloc_set_destructor(const void *ptr, int (*destructor)(void *));
 
 /**
- * \brief Increase the reference count of a talloc chunk
- * \param ptr
- * \return success?
- * \ingroup talloc_ref
+ * @brief Free a talloc chunk and NULL out the pointer.
+ *
+ * TALLOC_FREE() frees a pointer and sets it to NULL. Use this if you want
+ * immediate feedback (i.e. crash) if you use a pointer after having free'ed
+ * it.
+ *
+ * @param[in]  ctx      The chunk to be freed.
+ */
+#define TALLOC_FREE(ctx) do { talloc_free(ctx); ctx=NULL; } while(0)
+
+/* @} ******************************************************************/
+
+/**
+ * \defgroup talloc_ref The talloc reference function.
+ * @ingroup talloc
+ *
+ * This module contains the definitions around talloc references
+ *
+ * @{
+ */
+
+/**
+ * @brief Increase the reference count of a talloc chunk.
  *
  * The talloc_increase_ref_count(ptr) function is exactly equivalent to:
  *
- * \code
- * talloc_reference(NULL, ptr);
- * \endcode
+ * @code
+ *      talloc_reference(NULL, ptr);
+ * @endcode
  *
  * You can use either syntax, depending on which you think is clearer in
  * your code.
  *
- * It returns 0 on success and -1 on failure.
+ * @param[in]  ptr      The pointer to increase the reference count.
+ *
+ * @return              0 on success, -1 on error.
  */
 int talloc_increase_ref_count(const void *ptr);
 
 /**
- * \brief Return the number of references to a talloc chunk
- * \param ptr The chunk you are interested in
- * \return Number of refs
- * \ingroup talloc_ref
+ * @brief Get the number of references to a talloc chunk.
+ *
+ * @param[in]  ptr      The pointer to retrieve the reference count from.
+ *
+ * @return              The number of references.
  */
 size_t talloc_reference_count(const void *ptr);
-void *_talloc_reference(const void *context, const void *ptr);
 
+#ifdef DOXYGEN
 /**
- * \brief Remove a specific parent from a talloc chunk
- * \param context The talloc parent to remove
- * \param ptr The talloc ptr you want to remove the parent from
- * \ingroup talloc_ref
+ * @brief Create an additional talloc parent to a pointer.
+ *
+ * The talloc_reference() function makes "context" an additional parent of
+ * ptr. Each additional reference consumes around 48 bytes of memory on intel
+ * x86 platforms.
  *
- * The talloc_unlink() function removes a specific parent from ptr. The
- * context passed must either be a context used in talloc_reference() with
- * this pointer, or must be a direct parent of ptr.
+ * If ptr is NULL, then the function is a no-op, and simply returns NULL.
  *
- * Note that if the parent has already been removed using talloc_free() then
- * this function will fail and will return -1.  Likewise, if "ptr" is NULL,
- * then the function will make no modifications and return -1.
+ * After creating a reference you can free it in one of the following ways:
+ *
+ * - you can talloc_free() any parent of the original pointer. That
+ *   will reduce the number of parents of this pointer by 1, and will
+ *   cause this pointer to be freed if it runs out of parents.
+ *
+ * - you can talloc_free() the pointer itself. That will destroy the
+ *   most recently established parent to the pointer and leave the
+ *   pointer as a child of its current parent.
+ *
+ * For more control on which parent to remove, see talloc_unlink()
+ * @param[in]  ctx      The additional parent.
+ *
+ * @param[in]  ptr      The pointer you want to create an additional parent for.
+ *
+ * @return              The original pointer 'ptr', NULL if talloc ran out of
+ *                      memory in creating the reference.
+ *
+ * Example:
+ * @code
+ *      unsigned int *a, *b, *c;
+ *      a = talloc(NULL, unsigned int);
+ *      b = talloc(NULL, unsigned int);
+ *      c = talloc(a, unsigned int);
+ *      // b also serves as a parent of c.
+ *      talloc_reference(b, c);
+ * @endcode
+ *
+ * @see talloc_unlink()
+ */
+void *talloc_reference(const void *ctx, const void *ptr);
+#else
+#define talloc_reference(ctx, ptr) (_TALLOC_TYPEOF(ptr))_talloc_reference_loc((ctx),(ptr), __location__)
+void *_talloc_reference_loc(const void *context, const void *ptr, const char *location);
+#endif
+
+/**
+ * @brief Remove a specific parent from a talloc chunk.
+ *
+ * The function removes a specific parent from ptr. The context passed must
+ * either be a context used in talloc_reference() with this pointer, or must be
+ * a direct parent of ptr.
  *
  * Usually you can just use talloc_free() instead of talloc_unlink(), but
  * sometimes it is useful to have the additional control on which parent is
  * removed.
+ *
+ * @param[in]  context  The talloc parent to remove.
+ *
+ * @param[in]  ptr      The talloc ptr you want to remove the parent from.
+ *
+ * @return              0 on success, -1 on error.
+ *
+ * @note If the parent has already been removed using talloc_free() then
+ * this function will fail and will return -1.  Likewise, if ptr is NULL,
+ * then the function will make no modifications and return -1.
+ *
+ * Example:
+ * @code
+ *      unsigned int *a, *b, *c;
+ *      a = talloc(NULL, unsigned int);
+ *      b = talloc(NULL, unsigned int);
+ *      c = talloc(a, unsigned int);
+ *      // b also serves as a parent of c.
+ *      talloc_reference(b, c);
+ *      talloc_unlink(b, c);
+ * @endcode
  */
 int talloc_unlink(const void *context, void *ptr);
 
 /**
- * \brief Assign a name to a talloc chunk
- * \param ptr The talloc chunk to assign a name to
- * \param fmt Format string for the name
- * \param ... printf-style additional arguments
- * \return The assigned name
- * \ingroup talloc_basic
+ * @brief Provide a talloc context that is freed at program exit.
  *
- * Each talloc pointer has a "name". The name is used principally for
- * debugging purposes, although it is also possible to set and get the name on
- * a pointer in as a way of "marking" pointers in your code.
+ * This is a handy utility function that returns a talloc context
+ * which will be automatically freed on program exit. This can be used
+ * to reduce the noise in memory leak reports.
  *
- * The main use for names on pointer is for "talloc reports". See
- * talloc_report() and talloc_report_full() for details. Also see
- * talloc_enable_leak_report() and talloc_enable_leak_report_full().
+ * @return              A talloc context, NULL on error.
+ */
+void *talloc_autofree_context(void);
+
+/**
+ * @brief Get the size of a talloc chunk.
  *
- * The talloc_set_name() function allocates memory as a child of the
- * pointer. It is logically equivalent to:
+ * This function lets you know the amount of memory alloced so far by
+ * this context. It does NOT account for subcontext memory.
+ * This can be used to calculate the size of an array.
  *
- * \code
- * talloc_set_name_const(ptr, talloc_asprintf(ptr, fmt, ...));
- * \endcode
+ * @param[in]  ctx      The talloc chunk.
  *
- * Note that multiple calls to talloc_set_name() will allocate more memory
- * without releasing the name. All of the memory is released when the ptr is
- * freed using talloc_free().
+ * @return              The size of the talloc chunk.
  */
-const char *talloc_set_name(const void *ptr, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
+size_t talloc_get_size(const void *ctx);
 
 /**
- * \brief Assign a name to a talloc chunk
- * \param ptr The talloc chunk to assign a name to
- * \param name Format string for the name
- * \ingroup talloc_basic
+ * @brief Show the parentage of a context.
  *
- * The function talloc_set_name_const() is just like talloc_set_name(), but it
- * takes a string constant, and is much faster. It is extensively used by the
- * "auto naming" macros, such as talloc_p().
+ * @param[in]  context            The talloc context to look at.
  *
- * This function does not allocate any memory. It just copies the supplied
- * pointer into the internal representation of the talloc ptr. This means you
- * must not pass a name pointer to memory that will disappear before the ptr
- * is freed with talloc_free().
+ * @param[in]  file               The output to use, a file, stdout or stderr.
  */
-void talloc_set_name_const(const void *ptr, const char *name);
+void talloc_show_parents(const void *context, FILE *file);
 
 /**
- * \brief Create a named talloc chunk
- * \param context The talloc context to hang the result off
- * \param size Number of char's that you want to allocate
- * \param fmt Format string for the name
- * \param ... printf-style additional arguments
- * \return The allocated memory chunk
- * \ingroup talloc_basic
+ * @brief Check if a context is parent of a talloc chunk.
  *
- * The talloc_named() function creates a named talloc pointer. It is
- * equivalent to:
+ * This checks if context is referenced in the talloc hierarchy above ptr.
+ *
+ * @param[in]  context  The assumed talloc context.
  *
- * \code
- * ptr = talloc_size(context, size);
- * talloc_set_name(ptr, fmt, ....);
- * \endcode
+ * @param[in]  ptr      The talloc chunk to check.
  *
+ * @return              Return 1 if this is the case, 0 if not.
  */
-void *talloc_named(const void *context, size_t size, 
-                  const char *fmt, ...) PRINTF_ATTRIBUTE(3,4);
+int talloc_is_parent(const void *context, const void *ptr);
 
 /**
- * \brief Basic routine to allocate a chunk of memory
- * \param context The parent context
- * \param size The number of char's that we want to allocate
- * \param name The name the talloc block has
- * \return The allocated chunk
- * \ingroup talloc_basic
+ * @brief Change the parent context of a talloc pointer.
  *
- * This is equivalent to:
+ * The function changes the parent context of a talloc pointer. It is typically
+ * used when the context that the pointer is currently a child of is going to be
+ * freed and you wish to keep the memory for a longer time.
+ *
+ * The difference between talloc_reparent() and talloc_steal() is that
+ * talloc_reparent() can specify which parent you wish to change. This is
+ * useful when a pointer has multiple parents via references.
+ *
+ * @param[in]  old_parent
+ * @param[in]  new_parent
+ * @param[in]  ptr
  *
- * \code
- * ptr = talloc_size(context, size);
- * talloc_set_name_const(ptr, name);
- * \endcode
+ * @return              Return the pointer you passed. It does not have any
+ *                      failure modes.
  */
-void *talloc_named_const(const void *context, size_t size, const char *name);
+void *talloc_reparent(const void *old_parent, const void *new_parent, const void *ptr);
+
+/* @} ******************************************************************/
 
 /**
- * \brief Return the name of a talloc chunk
- * \param ptr The talloc chunk
- * \return The name
- * \ingroup talloc_basic
+ * @defgroup talloc_array The talloc array functions
+ * @ingroup talloc
+ *
+ * Talloc contains some handy helpers for handling Arrays conveniently
  *
- * This returns the current name for the given talloc pointer. See
- * talloc_set_name() for details.
+ * @{
  */
-const char *talloc_get_name(const void *ptr);
 
+#ifdef DOXYGEN
 /**
- * \brief Verify that a talloc chunk carries a specified name
- * \param ptr The talloc chunk to check
- * \param name The name to check agains
- * \ingroup talloc_basic
+ * @brief Allocate an array.
  *
- * This function checks if a pointer has the specified name. If it does
- * then the pointer is returned. It it doesn't then NULL is returned.
+ * The macro is equivalent to:
+ *
+ * @code
+ *      (type *)talloc_size(ctx, sizeof(type) * count);
+ * @endcode
+ *
+ * except that it provides integer overflow protection for the multiply,
+ * returning NULL if the multiply overflows.
+ *
+ * @param[in]  ctx      The talloc context to hang the result off.
+ *
+ * @param[in]  type     The type that we want to allocate.
+ *
+ * @param[in]  count    The number of 'type' elements you want to allocate.
+ *
+ * @return              The allocated result, properly cast to 'type *', NULL on
+ *                      error.
+ *
+ * Example:
+ * @code
+ *      unsigned int *a, *b;
+ *      a = talloc_zero(NULL, unsigned int);
+ *      b = talloc_array(a, unsigned int, 100);
+ * @endcode
+ *
+ * @see talloc()
+ * @see talloc_array_zero()
  */
-void *talloc_check_name(const void *ptr, const char *name);
+void *talloc_array(const void *ctx, #type, unsigned count);
+#else
+#define talloc_array(ctx, type, count) (type *)_talloc_array(ctx, sizeof(type), count, #type)
+void *_talloc_array(const void *ctx, size_t el_size, unsigned count, const char *name);
+#endif
 
-void *_talloc_get_type_abort(const void *ptr, const char *name, const char *location);
-void *talloc_parent(const void *ptr);
-const char *talloc_parent_name(const void *ptr);
+#ifdef DOXYGEN
+/**
+ * @brief Allocate an array.
+ *
+ * @param[in]  ctx      The talloc context to hang the result off.
+ *
+ * @param[in]  size     The size of an array element.
+ *
+ * @param[in]  count    The number of elements you want to allocate.
+ *
+ * @return              The allocated result, NULL on error.
+ */
+void *talloc_array_size(const void *ctx, size_t size, unsigned count);
+#else
+#define talloc_array_size(ctx, size, count) _talloc_array(ctx, size, count, __location__)
+#endif
 
+#ifdef DOXYGEN
 /**
- * \brief Create a new top level talloc context
- * \param fmt Format string for the name
- * \param ... printf-style additional arguments
- * \return The allocated memory chunk
- * \ingroup talloc_basic
+ * @brief Allocate an array into a typed pointer.
  *
- * This function creates a zero length named talloc context as a top level
- * context. It is equivalent to:
+ * The macro should be used when you have a pointer to an array and want to
+ * allocate memory of an array to point at with this pointer. When compiling
+ * with gcc >= 3 it is typesafe. Note this is a wrapper of talloc_array_size()
+ * and talloc_get_name() will return the current location in the source file
+ * and not the type.
  *
- * \code
- *   talloc_named(NULL, 0, fmt, ...);
- * \endcode
+ * @param[in]  ctx      The talloc context to hang the result off.
+ *
+ * @param[in]  ptr      The pointer you want to assign the result to.
+ *
+ * @param[in]  count    The number of elements you want to allocate.
+ *
+ * @return              The allocated memory chunk, properly casted. NULL on
+ *                      error.
  */
-void *talloc_init(const char *fmt, ...) PRINTF_ATTRIBUTE(1,2);
+void *talloc_array_ptrtype(const void *ctx, const void *ptr, unsigned count);
+#else
+#define talloc_array_ptrtype(ctx, ptr, count) (_TALLOC_TYPEOF(ptr))talloc_array_size(ctx, sizeof(*(ptr)), count)
+#endif
 
+#ifdef DOXYGEN
 /**
- * \brief Free a chunk of talloc memory
- * \param ptr The chunk to be freed
- * \return success?
- * \ingroup talloc_basic
+ * @brief Get the number of elements in a talloc'ed array.
  *
- * The talloc_free() function frees a piece of talloc memory, and all its
- * children. You can call talloc_free() on any pointer returned by talloc().
+ * A talloc chunk carries its own size, so for talloc'ed arrays it is not
+ * necessary to store the number of elements explicitly.
  *
- * The return value of talloc_free() indicates success or failure, with 0
- * returned for success and -1 for failure. The only possible failure
- * condition is if the pointer had a destructor attached to it and the
- * destructor returned -1. See talloc_set_destructor() for details on
- * destructors.
+ * @param[in]  ctx      The allocated array.
  *
- * If this pointer has an additional parent when talloc_free() is called
- * then the memory is not actually released, but instead the most
- * recently established parent is destroyed. See talloc_reference() for
- * details on establishing additional parents.
+ * @return              The number of elements in ctx.
+ */
+size_t talloc_array_length(const void *ctx);
+#else
+#define talloc_array_length(ctx) (talloc_get_size(ctx)/sizeof(*ctx))
+#endif
+
+#ifdef DOXYGEN
+/**
+ * @brief Allocate a zero-initialized array
+ *
+ * @param[in]  ctx      The talloc context to hang the result off.
+ *
+ * @param[in]  type     The type that we want to allocate.
  *
- * For more control on which parent is removed, see talloc_unlink()
+ * @param[in]  count    The number of "type" elements you want to allocate.
  *
- * talloc_free() operates recursively on its children.
+ * @return              The allocated result casted to "type *", NULL on error.
+ *
+ * The talloc_zero_array() macro is equivalent to:
+ *
+ * @code
+ *     ptr = talloc_array(ctx, type, count);
+ *     if (ptr) memset(ptr, sizeof(type) * count);
+ * @endcode
  */
-int talloc_free(void *ptr);
+void *talloc_zero_array(const void *ctx, #type, unsigned count);
+#else
+#define talloc_zero_array(ctx, type, count) (type *)_talloc_zero_array(ctx, sizeof(type), count, #type)
+void *_talloc_zero_array(const void *ctx,
+                        size_t el_size,
+                        unsigned count,
+                        const char *name);
+#endif
 
+#ifdef DOXYGEN
 /**
- * \brief Free a talloc chunk's children
- * \param ptr The chunk that you want to free the children of
- * \return success?
- * \ingroup talloc_basic
+ * @brief Change the size of a talloc array.
+ *
+ * The macro changes the size of a talloc pointer. The 'count' argument is the
+ * number of elements of type 'type' that you want the resulting pointer to
+ * hold.
+ *
+ * talloc_realloc() has the following equivalences:
  *
- * The talloc_free_children() walks along the list of all children of a talloc
- * context and talloc_free()s only the children, not the context itself.
+ * @code
+ *      talloc_realloc(ctx, NULL, type, 1) ==> talloc(ctx, type);
+ *      talloc_realloc(ctx, NULL, type, N) ==> talloc_array(ctx, type, N);
+ *      talloc_realloc(ctx, ptr, type, 0)  ==> talloc_free(ptr);
+ * @endcode
+ *
+ * The "context" argument is only used if "ptr" is NULL, otherwise it is
+ * ignored.
+ *
+ * @param[in]  ctx      The parent context used if ptr is NULL.
+ *
+ * @param[in]  ptr      The chunk to be resized.
+ *
+ * @param[in]  type     The type of the array element inside ptr.
+ *
+ * @param[in]  count    The intended number of array elements.
+ *
+ * @return              The new array, NULL on error. The call will fail either
+ *                      due to a lack of memory, or because the pointer has more
+ *                      than one parent (see talloc_reference()).
  */
-void talloc_free_children(void *ptr);
+void *talloc_realloc(const void *ctx, void *ptr, #type, size_t count);
+#else
+#define talloc_realloc(ctx, p, type, count) (type *)_talloc_realloc_array(ctx, p, sizeof(type), count, #type)
+void *_talloc_realloc_array(const void *ctx, void *ptr, size_t el_size, unsigned count, const char *name);
+#endif
+
+#ifdef DOXYGEN
+/**
+ * @brief Untyped realloc to change the size of a talloc array.
+ *
+ * The macro is useful when the type is not known so the typesafe
+ * talloc_realloc() cannot be used.
+ *
+ * @param[in]  ctx      The parent context used if 'ptr' is NULL.
+ *
+ * @param[in]  ptr      The chunk to be resized.
+ *
+ * @param[in]  size     The new chunk size.
+ *
+ * @return              The new array, NULL on error.
+ */
+void *talloc_realloc_size(const void *ctx, void *ptr, size_t size);
+#else
+#define talloc_realloc_size(ctx, ptr, size) _talloc_realloc(ctx, ptr, size, __location__)
 void *_talloc_realloc(const void *context, void *ptr, size_t size, const char *name);
-void *_talloc_steal(const void *new_ctx, const void *ptr);
-void *_talloc_move(const void *new_ctx, const void *pptr);
+#endif
 
 /**
- * \brief Return the total size of a talloc chunk including its children
- * \param ptr The talloc chunk
- * \return The total size
- * \ingroup talloc_basic
+ * @brief Provide a function version of talloc_realloc_size.
  *
- * The talloc_total_size() function returns the total size in bytes used
- * by this pointer and all child pointers. Mostly useful for debugging.
+ * This is a non-macro version of talloc_realloc(), which is useful as
+ * libraries sometimes want a ralloc function pointer. A realloc()
+ * implementation encapsulates the functionality of malloc(), free() and
+ * realloc() in one call, which is why it is useful to be able to pass around
+ * a single function pointer.
  *
- * Passing NULL is allowed, but it will only give a meaningful result if
- * talloc_enable_leak_report() or talloc_enable_leak_report_full() has
- * been called.
+ * @param[in]  context  The parent context used if ptr is NULL.
+ *
+ * @param[in]  ptr      The chunk to be resized.
+ *
+ * @param[in]  size     The new chunk size.
+ *
+ * @return              The new chunk, NULL on error.
  */
-size_t talloc_total_size(const void *ptr);
+void *talloc_realloc_fn(const void *context, void *ptr, size_t size);
+
+/* @} ******************************************************************/
 
 /**
- * \brief Return the number of talloc chunks hanging off a chunk
- * \param ptr The talloc chunk
- * \return The total size
- * \ingroup talloc_basic
+ * @defgroup talloc_string The talloc string functions.
+ * @ingroup talloc
  *
- * The talloc_total_blocks() function returns the total memory block
- * count used by this pointer and all child pointers. Mostly useful for
- * debugging.
+ * talloc string allocation and manipulation functions.
+ * @{
+ */
+
+/**
+ * @brief Duplicate a string into a talloc chunk.
  *
- * Passing NULL is allowed, but it will only give a meaningful result if
- * talloc_enable_leak_report() or talloc_enable_leak_report_full() has
- * been called.
+ * This function is equivalent to:
+ *
+ * @code
+ *      ptr = talloc_size(ctx, strlen(p)+1);
+ *      if (ptr) memcpy(ptr, p, strlen(p)+1);
+ * @endcode
+ *
+ * This functions sets the name of the new pointer to the passed
+ * string. This is equivalent to:
+ *
+ * @code
+ *      talloc_set_name_const(ptr, ptr)
+ * @endcode
+ *
+ * @param[in]  t        The talloc context to hang the result off.
+ *
+ * @param[in]  p        The string you want to duplicate.
+ *
+ * @return              The duplicated string, NULL on error.
  */
-size_t talloc_total_blocks(const void *ptr);
+char *talloc_strdup(const void *t, const char *p);
 
 /**
- * \brief Walk a complete talloc hierarchy
- * \param ptr The talloc chunk
- * \param depth Internal parameter to control recursion. Call with 0.
- * \param max_depth Maximum recursion level.
- * \param callback Function to be called on every chunk
- * \param private_data Private pointer passed to callback
- * \ingroup talloc_debug
+ * @brief Append a string to given string and duplicate the result.
+ *
+ * @param[in]  s        The destination to append to.
+ *
+ * @param[in]  a        The string you want to append.
+ *
+ * @return              The duplicated string, NULL on error.
+ *
+ * @see talloc_strdup()
+ */
+char *talloc_strdup_append(char *s, const char *a);
+
+/**
+ * @brief Append a string to a given buffer and duplicate the result.
+ *
+ * @param[in]  s        The destination buffer to append to.
+ *
+ * @param[in]  a        The string you want to append.
+ *
+ * @return              The duplicated string, NULL on error.
+ *
+ * @see talloc_strdup()
+ */
+char *talloc_strdup_append_buffer(char *s, const char *a);
+
+/**
+ * @brief Duplicate a length-limited string into a talloc chunk.
+ *
+ * This function is the talloc equivalent of the C library function strndup(3).
+ *
+ * This functions sets the name of the new pointer to the passed string. This is
+ * equivalent to:
+ *
+ * @code
+ *      talloc_set_name_const(ptr, ptr)
+ * @endcode
+ *
+ * @param[in]  t        The talloc context to hang the result off.
+ *
+ * @param[in]  p        The string you want to duplicate.
+ *
+ * @param[in]  n        The maximum string length to duplicate.
+ *
+ * @return              The duplicated string, NULL on error.
+ */
+char *talloc_strndup(const void *t, const char *p, size_t n);
+
+/**
+ * @brief Append at most n characters of a string to given string and duplicate
+ *        the result.
+ *
+ * @param[in]  s        The destination string to append to.
+ *
+ * @param[in]  a        The source string you want to append.
+ *
+ * @param[in]  n        The number of characters you want to append from the
+ *                      string.
+ *
+ * @return              The duplicated string, NULL on error.
+ *
+ * @see talloc_strndup()
+ */
+char *talloc_strndup_append(char *s, const char *a, size_t n);
+
+/**
+ * @brief Append at most n characters of a string to given buffer and duplicate
+ *        the result.
+ *
+ * @param[in]  s        The destination buffer to append to.
+ *
+ * @param[in]  a        The source string you want to append.
+ *
+ * @param[in]  n        The number of characters you want to append from the
+ *                      string.
+ *
+ * @return              The duplicated string, NULL on error.
+ *
+ * @see talloc_strndup()
+ */
+char *talloc_strndup_append_buffer(char *s, const char *a, size_t n);
+
+/**
+ * @brief Format a string given a va_list.
+ *
+ * This function is the talloc equivalent of the C library function
+ * vasprintf(3).
+ *
+ * This functions sets the name of the new pointer to the new string. This is
+ * equivalent to:
+ *
+ * @code
+ *      talloc_set_name_const(ptr, ptr)
+ * @endcode
+ *
+ * @param[in]  t        The talloc context to hang the result off.
+ *
+ * @param[in]  fmt      The format string.
+ *
+ * @param[in]  ap       The parameters used to fill fmt.
+ *
+ * @return              The formatted string, NULL on error.
+ */
+char *talloc_vasprintf(const void *t, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0);
+
+/**
+ * @brief Format a string given a va_list and append it to the given destination
+ *        string.
+ *
+ * @param[in]  s        The destination string to append to.
+ *
+ * @param[in]  fmt      The format string.
+ *
+ * @param[in]  ap       The parameters used to fill fmt.
+ *
+ * @return              The formatted string, NULL on error.
+ *
+ * @see talloc_vasprintf()
+ */
+char *talloc_vasprintf_append(char *s, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0);
+
+/**
+ * @brief Format a string given a va_list and append it to the given destination
+ *        buffer.
+ *
+ * @param[in]  s        The destination buffer to append to.
+ *
+ * @param[in]  fmt      The format string.
+ *
+ * @param[in]  ap       The parameters used to fill fmt.
+ *
+ * @return              The formatted string, NULL on error.
+ *
+ * @see talloc_vasprintf()
+ */
+char *talloc_vasprintf_append_buffer(char *s, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0);
+
+/**
+ * @brief Format a string.
+ *
+ * This function is the talloc equivalent of the C library function asprintf(3).
+ *
+ * This functions sets the name of the new pointer to the new string. This is
+ * equivalent to:
+ *
+ * @code
+ *      talloc_set_name_const(ptr, ptr)
+ * @endcode
+ *
+ * @param[in]  t        The talloc context to hang the result off.
+ *
+ * @param[in]  fmt      The format string.
+ *
+ * @param[in]  ...      The parameters used to fill fmt.
+ *
+ * @return              The formatted string, NULL on error.
+ */
+char *talloc_asprintf(const void *t, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
+
+/**
+ * @brief Append a formatted string to another string.
+ *
+ * This function appends the given formatted string to the given string. Use
+ * this varient when the string in the current talloc buffer may have been
+ * truncated in length.
+ *
+ * This functions sets the name of the new pointer to the new
+ * string. This is equivalent to:
+ *
+ * @code
+ *      talloc_set_name_const(ptr, ptr)
+ * @endcode
+ *
+ * @param[in]  s        The string to append to.
+ *
+ * @param[in]  fmt      The format string.
+ *
+ * @param[in]  ...      The parameters used to fill fmt.
+ *
+ * @return              The formatted string, NULL on error.
+ */
+char *talloc_asprintf_append(char *s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
+
+/**
+ * @brief Append a formatted string to another string.
+ *
+ * @param[in]  s        The string to append to
+ *
+ * @param[in]  fmt      The format string.
+ *
+ * @param[in]  ...      The parameters used to fill fmt.
+ *
+ * @return              The formatted string, NULL on error.
+ */
+char *talloc_asprintf_append_buffer(char *s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
+
+/* @} ******************************************************************/
+
+/**
+ * @defgroup talloc_debug The talloc debugging support functions
+ * @ingroup talloc
+ *
+ * To aid memory debugging, talloc contains routines to inspect the currently
+ * allocated memory hierarchy.
+ *
+ * @{
+ */
+
+/**
+ * @brief Walk a complete talloc hierarchy.
  *
  * This provides a more flexible reports than talloc_report(). It
  * will recursively call the callback for the entire tree of memory
@@ -941,32 +1489,42 @@ size_t talloc_total_blocks(const void *ptr);
  *
  * The recursion is stopped when depth >= max_depth.
  * max_depth = -1 means only stop at leaf nodes.
+ *
+ * @param[in]  ptr      The talloc chunk.
+ *
+ * @param[in]  depth    Internal parameter to control recursion. Call with 0.
+ *
+ * @param[in]  max_depth  Maximum recursion level.
+ *
+ * @param[in]  callback  Function to be called on every chunk.
+ *
+ * @param[in]  private_data  Private pointer passed to callback.
  */
 void talloc_report_depth_cb(const void *ptr, int depth, int max_depth,
                            void (*callback)(const void *ptr,
-                                            int depth, int max_depth,
+                                            int depth, int max_depth,
                                             int is_ref,
                                             void *private_data),
                            void *private_data);
 
 /**
- * \brief Print a talloc hierarchy
- * \param ptr The talloc chunk
- * \param depth Internal parameter to control recursion. Call with 0.
- * \param max_depth Maximum recursion level.
- * \param f The file handle to print to
- * \ingroup talloc_debug
+ * @brief Print a talloc hierarchy.
  *
  * This provides a more flexible reports than talloc_report(). It
  * will let you specify the depth and max_depth.
+ *
+ * @param[in]  ptr      The talloc chunk.
+ *
+ * @param[in]  depth    Internal parameter to control recursion. Call with 0.
+ *
+ * @param[in]  max_depth  Maximum recursion level.
+ *
+ * @param[in]  f        The file handle to print to.
  */
 void talloc_report_depth_file(const void *ptr, int depth, int max_depth, FILE *f);
 
 /**
- * \brief Print a summary report of all memory used by ptr
- * \param ptr The talloc chunk
- * \param f The file handle to print to
- * \ingroup talloc_debug
+ * @brief Print a summary report of all memory used by ptr.
  *
  * This provides a more detailed report than talloc_report(). It will
  * recursively print the ensire tree of memory referenced by the
@@ -977,29 +1535,54 @@ void talloc_report_depth_file(const void *ptr, int depth, int max_depth, FILE *f
  * for the top level memory context, but only if
  * talloc_enable_leak_report() or talloc_enable_leak_report_full() has
  * been called.
+ *
+ * @param[in]  ptr      The talloc chunk.
+ *
+ * @param[in]  f        The file handle to print to.
+ *
+ * Example:
+ * @code
+ *      unsigned int *a, *b;
+ *      a = talloc(NULL, unsigned int);
+ *      b = talloc(a, unsigned int);
+ *      fprintf(stderr, "Dumping memory tree for a:\n");
+ *      talloc_report_full(a, stderr);
+ * @endcode
+ *
+ * @see talloc_report()
  */
 void talloc_report_full(const void *ptr, FILE *f);
 
 /**
- * \brief Print a summary report of all memory used by ptr
- * \param ptr The talloc chunk
- * \param f The file handle to print to
- * \ingroup talloc_debug
+ * @brief Print a summary report of all memory used by ptr.
  *
- * The talloc_report() function prints a summary report of all memory
- * used by ptr. One line of report is printed for each immediate child of
- * ptr, showing the total memory and number of blocks used by that child.
+ * This function prints a summary report of all memory used by ptr. One line of
+ * report is printed for each immediate child of ptr, showing the total memory
+ * and number of blocks used by that child.
  *
  * You can pass NULL for the pointer, in which case a report is printed
- * for the top level memory context, but only if
- * talloc_enable_leak_report() or talloc_enable_leak_report_full() has
- * been called.
+ * for the top level memory context, but only if talloc_enable_leak_report()
+ * or talloc_enable_leak_report_full() has been called.
+ *
+ * @param[in]  ptr      The talloc chunk.
+ *
+ * @param[in]  f        The file handle to print to.
+ *
+ * Example:
+ * @code
+ *      unsigned int *a, *b;
+ *      a = talloc(NULL, unsigned int);
+ *      b = talloc(a, unsigned int);
+ *      fprintf(stderr, "Summary of memory tree for a:\n");
+ *      talloc_report(a, stderr);
+ * @endcode
+ *
+ * @see talloc_report_full()
  */
 void talloc_report(const void *ptr, FILE *f);
 
 /**
- * \brief Enable tracking the use of NULL memory contexts
- * \ingroup talloc_debug
+ * @brief Enable tracking the use of NULL memory contexts.
  *
  * This enables tracking of the NULL memory context without enabling leak
  * reporting on exit. Useful for when you want to do your own leak
@@ -1008,17 +1591,23 @@ void talloc_report(const void *ptr, FILE *f);
 void talloc_enable_null_tracking(void);
 
 /**
- * \brief Disable tracking of the NULL memory context
- * \ingroup talloc_debug
+ * @brief Enable tracking the use of NULL memory contexts.
  *
- * This disables tracking of the NULL memory context.
+ * This enables tracking of the NULL memory context without enabling leak
+ * reporting on exit. Useful for when you want to do your own leak
+ * reporting call via talloc_report_null_full();
  */
+void talloc_enable_null_tracking_no_autofree(void);
 
+/**
+ * @brief Disable tracking of the NULL memory context.
+ *
+ * This disables tracking of the NULL memory context.
+ */
 void talloc_disable_null_tracking(void);
 
 /**
- * \brief Enable calling of talloc_report(NULL, stderr) when a program exits
- * \ingroup talloc_debug
+ * @brief Enable leak report when a program exits.
  *
  * This enables calling of talloc_report(NULL, stderr) when the program
  * exits. In Samba4 this is enabled by using the --leak-report command
@@ -1032,22 +1621,21 @@ void talloc_disable_null_tracking(void);
  *
  * Here is a typical talloc report:
  *
-\verbatim
-talloc report on 'null_context' (total 267 bytes in 15 blocks)
        libcli/auth/spnego_parse.c:55  contains     31 bytes in   2 blocks
        libcli/auth/spnego_parse.c:55  contains     31 bytes in   2 blocks
        iconv(UTF8,CP850)              contains     42 bytes in   2 blocks
        libcli/auth/spnego_parse.c:55  contains     31 bytes in   2 blocks
        iconv(CP850,UTF8)              contains     42 bytes in   2 blocks
        iconv(UTF8,UTF-16LE)           contains     45 bytes in   2 blocks
        iconv(UTF-16LE,UTF8)           contains     45 bytes in   2 blocks
-\endverbatim
+ * @code
+ * talloc report on 'null_context' (total 267 bytes in 15 blocks)
*      libcli/auth/spnego_parse.c:55  contains     31 bytes in   2 blocks
*      libcli/auth/spnego_parse.c:55  contains     31 bytes in   2 blocks
*      iconv(UTF8,CP850)              contains     42 bytes in   2 blocks
*      libcli/auth/spnego_parse.c:55  contains     31 bytes in   2 blocks
*      iconv(CP850,UTF8)              contains     42 bytes in   2 blocks
*      iconv(UTF8,UTF-16LE)           contains     45 bytes in   2 blocks
*      iconv(UTF-16LE,UTF8)           contains     45 bytes in   2 blocks
+ * @endcode
  */
 void talloc_enable_leak_report(void);
 
 /**
- * \brief Enable calling of talloc_report(NULL, stderr) when a program exits
- * \ingroup talloc_debug
+ * @brief Enable full leak report when a program exits.
  *
  * This enables calling of talloc_report_full(NULL, stderr) when the
  * program exits. In Samba4 this is enabled by using the
@@ -1060,214 +1648,37 @@ void talloc_enable_leak_report(void);
  * full tree printout.
  *
  * Here is a typical full report:
-\verbatim
-full talloc report on 'root' (total 18 bytes in 8 blocks)
-    p1                             contains     18 bytes in   7 blocks (ref 0)
-        r1                             contains     13 bytes in   2 blocks (ref 0)
-            reference to: p2
-        p2                             contains      1 bytes in   1 blocks (ref 1)
-        x3                             contains      1 bytes in   1 blocks (ref 0)
-        x2                             contains      1 bytes in   1 blocks (ref 0)
-        x1                             contains      1 bytes in   1 blocks (ref 0)
-\endverbatim
-*/
-void talloc_enable_leak_report_full(void);
-void *_talloc_zero(const void *ctx, size_t size, const char *name);
-void *_talloc_memdup(const void *t, const void *p, size_t size, const char *name);
-void *_talloc_array(const void *ctx, size_t el_size, unsigned count, const char *name);
-void *_talloc_zero_array(const void *ctx, size_t el_size, unsigned count, const char *name);
-void *_talloc_realloc_array(const void *ctx, void *ptr, size_t el_size, unsigned count, const char *name);
-
-/**
- * \brief Provide a function version of talloc_realloc_size
- * \param context The parent context used if "ptr" is NULL
- * \param ptr The chunk to be resized
- * \param size The new chunk size
- * \return The new chunk
- * \ingroup talloc_array
- *
- * This is a non-macro version of talloc_realloc(), which is useful as
- * libraries sometimes want a ralloc function pointer. A realloc()
- * implementation encapsulates the functionality of malloc(), free() and
- * realloc() in one call, which is why it is useful to be able to pass around
- * a single function pointer.
-*/
-void *talloc_realloc_fn(const void *context, void *ptr, size_t size);
-
-/**
- * \brief Provide a talloc context that is freed at program exit
- * \return A talloc context
- * \ingroup talloc_basic
- *
- * This is a handy utility function that returns a talloc context
- * which will be automatically freed on program exit. This can be used
- * to reduce the noise in memory leak reports.
- */
-void *talloc_autofree_context(void);
-
-/**
- * \brief Get the size of a talloc chunk
- * \param ctx The talloc chunk
- * \return The size
- * \ingroup talloc_basic
- *
- * This function lets you know the amount of memory alloced so far by
- * this context. It does NOT account for subcontext memory.
- * This can be used to calculate the size of an array.
- */
-size_t talloc_get_size(const void *ctx);
-
-/**
- * \brief Find a parent context by name
- * \param ctx The talloc chunk to start from
- * \param name The name of the parent we look for
- * \ingroup talloc_basic
- *
- * Find a parent memory context of the current context that has the given
- * name. This can be very useful in complex programs where it may be
- * difficult to pass all information down to the level you need, but you
- * know the structure you want is a parent of another context.
- */
-void *talloc_find_parent_byname(const void *ctx, const char *name);
-void talloc_show_parents(const void *context, FILE *file);
-int talloc_is_parent(const void *context, const void *ptr);
-
-/**
- * \brief Duplicate a string into a talloc chunk
- * \param t The talloc context to hang the result off
- * \param p The string you want to duplicate
- * \return The duplicated string
- * \ingroup talloc_string
- *
- * The talloc_strdup() function is equivalent to:
- *
- * \code
- * ptr = talloc_size(ctx, strlen(p)+1);
- * if (ptr) memcpy(ptr, p, strlen(p)+1);
- * \endcode
- *
- * This functions sets the name of the new pointer to the passed
- * string. This is equivalent to:
  *
- * \code
- * talloc_set_name_const(ptr, ptr)
- * \endcode
+ * @code
+ * full talloc report on 'root' (total 18 bytes in 8 blocks)
+ *      p1                             contains     18 bytes in   7 blocks (ref 0)
+ *      r1                             contains     13 bytes in   2 blocks (ref 0)
+ *      reference to: p2
+ *      p2                             contains      1 bytes in   1 blocks (ref 1)
+ *      x3                             contains      1 bytes in   1 blocks (ref 0)
+ *      x2                             contains      1 bytes in   1 blocks (ref 0)
+ *      x1                             contains      1 bytes in   1 blocks (ref 0)
+ * @endcode
  */
-char *talloc_strdup(const void *t, const char *p);
-char *talloc_strdup_append(char *s, const char *a);
-char *talloc_strdup_append_buffer(char *s, const char *a);
-
-/**
- * \brief Duplicate a length-limited string into a talloc chunk
- * \param t The talloc context to hang the result off
- * \param p The string you want to duplicate
- * \param n The maximum string length to duplicate
- * \return The duplicated string
- * \ingroup talloc_string
- *
- * The talloc_strndup() function is the talloc equivalent of the C
- * library function strndup()
- *
- * This functions sets the name of the new pointer to the passed
- * string. This is equivalent to:
- *
- * \code
- * talloc_set_name_const(ptr, ptr)
- * \endcode
- */
-char *talloc_strndup(const void *t, const char *p, size_t n);
-char *talloc_strndup_append(char *s, const char *a, size_t n);
-char *talloc_strndup_append_buffer(char *s, const char *a, size_t n);
-
-/**
- * \brief Format a string given a va_list
- * \param t The talloc context to hang the result off
- * \param fmt The format string
- * \param ap The parameters used to fill fmt
- * \return The formatted string
- * \ingroup talloc_string
- *
- * The talloc_vasprintf() function is the talloc equivalent of the C
- * library function vasprintf()
- *
- * This functions sets the name of the new pointer to the new
- * string. This is equivalent to:
- *
- * \code
- * talloc_set_name_const(ptr, ptr)
- * \endcode
- */
-char *talloc_vasprintf(const void *t, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0);
-char *talloc_vasprintf_append(char *s, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0);
-char *talloc_vasprintf_append_buffer(char *s, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0);
-
-/**
- * \brief Format a string
- * \param t The talloc context to hang the result off
- * \param fmt The format string
- * \param ... The parameters used to fill fmt
- * \return The formatted string
- * \ingroup talloc_string
- *
- * The talloc_asprintf() function is the talloc equivalent of the C
- * library function asprintf()
- *
- * This functions sets the name of the new pointer to the new
- * string. This is equivalent to:
- *
- * \code
- * talloc_set_name_const(ptr, ptr)
- * \endcode
- */
-char *talloc_asprintf(const void *t, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
+void talloc_enable_leak_report_full(void);
 
-/**
- * \brief Append a formatted string to another string
- * \param s The string to append to
- * \param fmt The format string
- * \param ... The parameters used to fill fmt
- * \return The formatted string
- * \ingroup talloc_string
- *
- * The talloc_asprintf_append() function appends the given formatted string to
- * the given string. Use this varient when the string in the current talloc
- * buffer may have been truncated in length.
- *
- * This functions sets the name of the new pointer to the new
- * string. This is equivalent to:
- *
- * \code
- * talloc_set_name_const(ptr, ptr)
- * \endcode
- */
-char *talloc_asprintf_append(char *s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
-
-/**
- * \brief Append a formatted string to another string
- * \param s The string to append to
- * \param fmt The format string
- * \param ... The parameters used to fill fmt
- * \return The formatted string
- * \ingroup talloc_string
- *
- * The talloc_asprintf_append() function appends the given formatted string to
- * the end of the currently allocated talloc buffer. This routine should be
- * used if you create a large string step by step. talloc_asprintf() or
- * talloc_asprintf_append() call strlen() at every
- * step. talloc_asprintf_append_buffer() uses the existing buffer size of the
- * talloc chunk to calculate where to append the string.
- *
- * This functions sets the name of the new pointer to the new
- * string. This is equivalent to:
- *
- * \code
- * talloc_set_name_const(ptr, ptr)
- * \endcode
- */
-char *talloc_asprintf_append_buffer(char *s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
+/* @} ******************************************************************/
 
 void talloc_set_abort_fn(void (*abort_fn)(const char *reason));
+void talloc_set_log_fn(void (*log_fn)(const char *message));
+void talloc_set_log_stderr(void);
 
+#if TALLOC_DEPRECATED
+#define talloc_zero_p(ctx, type) talloc_zero(ctx, type)
+#define talloc_p(ctx, type) talloc(ctx, type)
+#define talloc_array_p(ctx, type, count) talloc_array(ctx, type, count)
+#define talloc_realloc_p(ctx, p, type, count) talloc_realloc(ctx, p, type, count)
+#define talloc_destroy(ctx) talloc_free(ctx)
+#define talloc_append_string(c, s, a) (s?talloc_strdup_append(s,a):talloc_strdup(c, a))
 #endif
 
-/*\}*/
+#ifndef TALLOC_MAX_DEPTH
+#define TALLOC_MAX_DEPTH 10000
+#endif
+
+#endif