r13915: Fixed a very interesting class of realloc() bugs found by Coverity.
authorJeremy Allison <jra@samba.org>
Tue, 7 Mar 2006 06:31:04 +0000 (06:31 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:10:59 +0000 (11:10 -0500)
commit1d710d06a214f3f1740e80e0bffd6aab44aac2b0
tree9784cdfe1bb543a79acd7394f1c1eac6e33f9509
parent3f671033bca7a025f9639728a0a0a0adede6ed35
r13915: Fixed a very interesting class of realloc() bugs found by Coverity.
realloc can return NULL in one of two cases - (1) the realloc failed,
(2) realloc succeeded but the new size requested was zero, in which
case this is identical to a free() call.

The error paths dealing with these two cases should be different,
but mostly weren't. Secondly the standard idiom for dealing with
realloc when you know the new size is non-zero is the following :

 tmp = realloc(p, size);
 if (!tmp) {
    SAFE_FREE(p);
    return error;
 } else {
    p = tmp;
 }

However, there were *many* *many* places in Samba where we were
using the old (broken) idiom of :

 p = realloc(p, size)
 if (!p) {
    return error;
 }

which will leak the memory pointed to by p on realloc fail.

This commit (hopefully) fixes all these cases by moving to
a standard idiom of :

 p = SMB_REALLOC(p, size)
 if (!p) {
    return error;
 }

Where if the realloc returns null due to the realloc failing
or size == 0 we *guarentee* that the storage pointed to by p
has been freed. This allows me to remove a lot of code that
was dealing with the standard (more verbose) method that required
a tmp pointer. This is almost always what you want. When a
realloc fails you never usually want the old memory, you
want to free it and get into your error processing asap.

For the 11 remaining cases where we really do need to keep the
old pointer I have invented the new macro SMB_REALLOC_KEEP_OLD_ON_ERROR,
which can be used as follows :

 tmp = SMB_REALLOC_KEEP_OLD_ON_ERROR(p, size);
 if (!tmp) {
    SAFE_FREE(p);
    return error;
 } else {
    p = tmp;
 }

SMB_REALLOC_KEEP_OLD_ON_ERROR guarentees never to free the
pointer p, even on size == 0 or realloc fail. All this is
done by a hidden extra argument to Realloc(), BOOL free_old_on_error
which is set appropriately by the SMB_REALLOC and SMB_REALLOC_KEEP_OLD_ON_ERROR
macros (and their array counterparts).

It remains to be seen what this will do to our Coverity bug count :-).

Jeremy.
55 files changed:
source/client/client.c
source/client/clitar.c
source/client/smbctool.c
source/groupdb/mapping.c
source/include/smb_macros.h
source/lib/charcnv.c
source/lib/ldap_escape.c
source/lib/sysacls.c
source/lib/system_smbd.c
source/lib/util.c
source/lib/util_file.c
source/lib/util_sid.c
source/lib/util_str.c
source/lib/wins_srv.c
source/libsmb/asn1.c
source/libsmb/clilist.c
source/libsmb/clireadwrite.c
source/libsmb/clitrans.c
source/libsmb/namequery.c
source/libsmb/spnego.c
source/locking/brlock.c
source/locking/posix.c
source/modules/vfs_shadow_copy.c
source/nsswitch/wb_client.c
source/nsswitch/winbindd_cache.c
source/nsswitch/winbindd_group.c
source/nsswitch/winbindd_user.c
source/param/loadparm.c
source/param/params.c
source/passdb/pdb_ldap.c
source/printing/nt_printing.c
source/printing/print_cups.c
source/printing/print_iprint.c
source/printing/printing.c
source/registry/reg_db.c
source/registry/reg_perfcount.c
source/registry/reg_printing.c
source/rpc_parse/parse_buffer.c
source/rpc_parse/parse_prs.c
source/rpc_parse/parse_spoolss.c
source/rpc_server/srv_pipe.c
source/rpc_server/srv_spoolss_nt.c
source/sam/idmap_rid.c
source/smbd/lanman.c
source/smbd/msdfs.c
source/smbd/nttrans.c
source/smbd/password.c
source/smbd/session.c
source/smbd/trans2.c
source/tdb/tdbutil.c
source/torture/nsstest.c
source/utils/net_rpc.c
source/utils/net_rpc_samsync.c
source/utils/net_status.c
source/web/cgi.c