hivex: Add HIVEX_OPEN_WRITE flag to allow hive to be opened for writing.
authorRichard Jones <rjones@redhat.com>
Mon, 18 Jan 2010 11:08:56 +0000 (11:08 +0000)
committerRichard Jones <rjones@redhat.com>
Thu, 4 Feb 2010 11:06:33 +0000 (11:06 +0000)
commit4718aeb9f0f743a05dfa342bc797617f3b9f96b3
tree06d2895a0973e41a877fe1edfbb733518262ae0a
parentdb8a46aa1165479ddf2b551e81a7e96bb06fc942
hivex: Add HIVEX_OPEN_WRITE flag to allow hive to be opened for writing.

If this flag is omitted (as in the case for all existing callers)
then the hive is still opened read-only.

We add a 'writable' flag to the hive handle, and we change the way
that the hive file (data) is stored.  The data is still mmapped if
the file is opened read-only, since that is more efficient and allows
us to handle larger hives.  However if we need to write to the file
then we have to read it all into memory, since if we had to extend the
file we need to realloc that data.

Note the manpage section L</WRITING TO HIVE FILES> comes in a later
commit.
bootstrap
hivex/Makefile.am
hivex/README
hivex/hivex.c
hivex/hivex.h
hivex/hivex.pod