r24809: Consolidate the use of temporary talloc contexts.
authorVolker Lendecke <vlendec@samba.org>
Thu, 30 Aug 2007 19:48:31 +0000 (19:48 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:30:24 +0000 (12:30 -0500)
commit6585ea2cb7f417e14540495b9c7380fe9c8c717b
tree1641aa1a6ceb2050fe29f74ff5a311f5ff4f10b8
parent229e02d732c1612c7dc4510325da1dcf50050a95
r24809: Consolidate the use of temporary talloc contexts.

This adds the two functions talloc_stackframe() and talloc_tos().

 * When a new talloc stackframe is allocated with talloc_stackframe(), then
 * the TALLOC_CTX returned with talloc_tos() is reset to that new
 * frame. Whenever that stack frame is TALLOC_FREE()'ed, then the reverse
 * happens: The previous talloc_tos() is restored.
 *
 * This API is designed to be robust in the sense that if someone forgets to
 * TALLOC_FREE() a stackframe, then the next outer one correctly cleans up and
 * resets the talloc_tos().

The original motivation for this patch was to get rid of the
sid_string_static & friends buffers. Explicitly passing talloc context
everywhere clutters code too much for my taste, so an implicit
talloc_tos() is introduced here. Many of these static buffers are
replaced by a single static pointer.

The intended use would thus be that low-level functions can rather
freely push stuff to talloc_tos, the upper layers clean up by freeing
the stackframe. The more of these stackframes are used and correctly
freed the more exact the memory cleanup happens.

This patch removes the main_loop_talloc_ctx, tmp_talloc_ctx and
lp_talloc_ctx (did I forget any?)

So, never do a

tmp_ctx = talloc_init("foo");

anymore, instead, use

tmp_ctx = talloc_stackframe()

:-)

Volker
33 files changed:
source/Makefile.in
source/include/includes.h
source/include/talloc_stack.h [new file with mode: 0644]
source/lib/talloc_stack.c [new file with mode: 0644]
source/modules/nfs4_acls.c
source/modules/vfs_afsacl.c
source/modules/vfs_aixacl2.c
source/modules/vfs_gpfs.c
source/modules/vfs_zfsacl.c
source/nmbd/nmbd.c
source/nsswitch/winbindd.c
source/nsswitch/winbindd_dual.c
source/param/loadparm.c
source/rpc_parse/parse_lsa.c
source/rpc_parse/parse_misc.c
source/rpc_parse/parse_ntsvcs.c
source/rpc_parse/parse_spoolss.c
source/rpc_parse/parse_svcctl.c
source/rpc_server/srv_pipe.c
source/rpc_server/srv_spoolss_nt.c
source/rpc_server/srv_srvsvc_nt.c
source/smbd/blocking.c
source/smbd/lanman.c
source/smbd/negprot.c
source/smbd/notify.c
source/smbd/nttrans.c
source/smbd/open.c
source/smbd/posix_acls.c
source/smbd/process.c
source/smbd/server.c
source/smbd/trans2.c
source/utils/net_lookup.c
source/utils/net_sam.c