2 * Unix SMB/CIFS implementation.
3 * Windows NT registry I/O library
4 * Copyright (c) Gerald (Jerry) Carter 2005
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 #define DBGC_CLASS DBGC_REGISTRY
26 /*******************************************************************
28 * TODO : Right now this code basically ignores classnames.
30 ******************************************************************/
33 /*******************************************************************
34 *******************************************************************/
36 static int write_block( REGF_FILE
*file
, prs_struct
*ps
, uint32 offset
)
38 int bytes_written
, returned
;
39 char *buffer
= prs_data_p( ps
);
40 uint32 buffer_size
= prs_data_size( ps
);
46 /* check for end of file */
48 if ( sys_fstat( file
->fd
, &sbuf
) ) {
49 DEBUG(0,("write_block: stat() failed! (%s)\n", strerror(errno
)));
53 if ( lseek( file
->fd
, offset
, SEEK_SET
) == -1 ) {
54 DEBUG(0,("write_block: lseek() failed! (%s)\n", strerror(errno
) ));
58 bytes_written
= returned
= 0;
59 while ( bytes_written
< buffer_size
) {
60 if ( (returned
= write( file
->fd
, buffer
+bytes_written
, buffer_size
-bytes_written
)) == -1 ) {
61 DEBUG(0,("write_block: write() failed! (%s)\n", strerror(errno
) ));
65 bytes_written
+= returned
;
71 /*******************************************************************
72 *******************************************************************/
74 static int read_block( REGF_FILE
*file
, prs_struct
*ps
, uint32 file_offset
, uint32 block_size
)
76 int bytes_read
, returned
;
80 /* check for end of file */
82 if ( sys_fstat( file
->fd
, &sbuf
) ) {
83 DEBUG(0,("read_block: stat() failed! (%s)\n", strerror(errno
)));
87 if ( (size_t)file_offset
>= sbuf
.st_size
)
90 /* if block_size == 0, we are parsing HBIN records and need
91 to read some of the header to get the block_size from there */
93 if ( block_size
== 0 ) {
96 if ( lseek( file
->fd
, file_offset
, SEEK_SET
) == -1 ) {
97 DEBUG(0,("read_block: lseek() failed! (%s)\n", strerror(errno
) ));
101 returned
= read( file
->fd
, hdr
, 0x20 );
102 if ( (returned
== -1) || (returned
< 0x20) ) {
103 DEBUG(0,("read_block: failed to read in HBIN header. Is the file corrupt?\n"));
107 /* make sure this is an hbin header */
109 if ( strncmp( hdr
, "hbin", HBIN_HDR_SIZE
) != 0 ) {
110 DEBUG(0,("read_block: invalid block header!\n"));
114 block_size
= IVAL( hdr
, 0x08 );
117 DEBUG(10,("read_block: block_size == 0x%x\n", block_size
));
119 /* set the offset, initialize the buffer, and read the block from disk */
121 if ( lseek( file
->fd
, file_offset
, SEEK_SET
) == -1 ) {
122 DEBUG(0,("read_block: lseek() failed! (%s)\n", strerror(errno
) ));
126 prs_init( ps
, block_size
, file
->mem_ctx
, UNMARSHALL
);
127 buffer
= prs_data_p( ps
);
128 bytes_read
= returned
= 0;
130 while ( bytes_read
< block_size
) {
131 if ( (returned
= read( file
->fd
, buffer
+bytes_read
, block_size
-bytes_read
)) == -1 ) {
132 DEBUG(0,("read_block: read() failed (%s)\n", strerror(errno
) ));
135 if ( (returned
== 0) && (bytes_read
< block_size
) ) {
136 DEBUG(0,("read_block: not a vald registry file ?\n" ));
140 bytes_read
+= returned
;
146 /*******************************************************************
147 *******************************************************************/
149 static bool write_hbin_block( REGF_FILE
*file
, REGF_HBIN
*hbin
)
154 /* write free space record if any is available */
156 if ( hbin
->free_off
!= REGF_OFFSET_NONE
) {
157 uint32 header
= 0xffffffff;
159 if ( !prs_set_offset( &hbin
->ps
, hbin
->free_off
-sizeof(uint32
) ) )
161 if ( !prs_uint32( "free_size", &hbin
->ps
, 0, &hbin
->free_size
) )
163 if ( !prs_uint32( "free_header", &hbin
->ps
, 0, &header
) )
167 hbin
->dirty
= (write_block( file
, &hbin
->ps
, hbin
->file_off
) != -1);
172 /*******************************************************************
173 *******************************************************************/
175 static bool hbin_block_close( REGF_FILE
*file
, REGF_HBIN
*hbin
)
179 /* remove the block from the open list and flush it to disk */
181 for ( p
=file
->block_list
; p
&& p
!=hbin
; p
=p
->next
)
185 DLIST_REMOVE( file
->block_list
, hbin
);
188 DEBUG(0,("hbin_block_close: block not in open list!\n"));
190 if ( !write_hbin_block( file
, hbin
) )
196 /*******************************************************************
197 *******************************************************************/
199 static bool prs_regf_block( const char *desc
, prs_struct
*ps
, int depth
, REGF_FILE
*file
)
201 prs_debug(ps
, depth
, desc
, "prs_regf_block");
204 if ( !prs_uint8s( True
, "header", ps
, depth
, (uint8
*)file
->header
, sizeof( file
->header
)) )
207 /* yes, these values are always identical so store them only once */
209 if ( !prs_uint32( "unknown1", ps
, depth
, &file
->unknown1
))
211 if ( !prs_uint32( "unknown1 (again)", ps
, depth
, &file
->unknown1
))
214 /* get the modtime */
216 if ( !prs_set_offset( ps
, 0x0c ) )
218 if ( !smb_io_time( "modtime", &file
->mtime
, ps
, depth
) )
223 if ( !prs_uint32( "unknown2", ps
, depth
, &file
->unknown2
))
225 if ( !prs_uint32( "unknown3", ps
, depth
, &file
->unknown3
))
227 if ( !prs_uint32( "unknown4", ps
, depth
, &file
->unknown4
))
229 if ( !prs_uint32( "unknown5", ps
, depth
, &file
->unknown5
))
232 /* get file offsets */
234 if ( !prs_set_offset( ps
, 0x24 ) )
236 if ( !prs_uint32( "data_offset", ps
, depth
, &file
->data_offset
))
238 if ( !prs_uint32( "last_block", ps
, depth
, &file
->last_block
))
241 /* one more constant */
243 if ( !prs_uint32( "unknown6", ps
, depth
, &file
->unknown6
))
246 /* get the checksum */
248 if ( !prs_set_offset( ps
, 0x01fc ) )
250 if ( !prs_uint32( "checksum", ps
, depth
, &file
->checksum
))
256 /*******************************************************************
257 *******************************************************************/
259 static bool prs_hbin_block( const char *desc
, prs_struct
*ps
, int depth
, REGF_HBIN
*hbin
)
263 prs_debug(ps
, depth
, desc
, "prs_regf_block");
266 if ( !prs_uint8s( True
, "header", ps
, depth
, (uint8
*)hbin
->header
, sizeof( hbin
->header
)) )
269 if ( !prs_uint32( "first_hbin_off", ps
, depth
, &hbin
->first_hbin_off
))
272 /* The dosreg.cpp comments say that the block size is at 0x1c.
273 According to a WINXP NTUSER.dat file, this is wrong. The block_size
276 if ( !prs_uint32( "block_size", ps
, depth
, &hbin
->block_size
))
279 block_size2
= hbin
->block_size
;
280 prs_set_offset( ps
, 0x1c );
281 if ( !prs_uint32( "block_size2", ps
, depth
, &block_size2
))
284 if ( MARSHALLING(ps
) )
291 /*******************************************************************
292 *******************************************************************/
294 static bool prs_nk_rec( const char *desc
, prs_struct
*ps
, int depth
, REGF_NK_REC
*nk
)
296 uint16 class_length
, name_length
;
298 uint32 data_size
, start_off
, end_off
;
299 uint32 unknown_off
= REGF_OFFSET_NONE
;
301 nk
->hbin_off
= prs_offset( ps
);
302 start
= nk
->hbin_off
;
304 prs_debug(ps
, depth
, desc
, "prs_nk_rec");
307 /* back up and get the data_size */
309 if ( !prs_set_offset( ps
, prs_offset(ps
)-sizeof(uint32
)) )
311 start_off
= prs_offset( ps
);
312 if ( !prs_uint32( "rec_size", ps
, depth
, &nk
->rec_size
))
315 if ( !prs_uint8s( True
, "header", ps
, depth
, (uint8
*)nk
->header
, sizeof( nk
->header
)) )
318 if ( !prs_uint16( "key_type", ps
, depth
, &nk
->key_type
))
320 if ( !smb_io_time( "mtime", &nk
->mtime
, ps
, depth
))
323 if ( !prs_set_offset( ps
, start
+0x0010 ) )
325 if ( !prs_uint32( "parent_off", ps
, depth
, &nk
->parent_off
))
327 if ( !prs_uint32( "num_subkeys", ps
, depth
, &nk
->num_subkeys
))
330 if ( !prs_set_offset( ps
, start
+0x001c ) )
332 if ( !prs_uint32( "subkeys_off", ps
, depth
, &nk
->subkeys_off
))
334 if ( !prs_uint32( "unknown_off", ps
, depth
, &unknown_off
) )
337 if ( !prs_set_offset( ps
, start
+0x0024 ) )
339 if ( !prs_uint32( "num_values", ps
, depth
, &nk
->num_values
))
341 if ( !prs_uint32( "values_off", ps
, depth
, &nk
->values_off
))
343 if ( !prs_uint32( "sk_off", ps
, depth
, &nk
->sk_off
))
345 if ( !prs_uint32( "classname_off", ps
, depth
, &nk
->classname_off
))
348 if ( !prs_uint32( "max_bytes_subkeyname", ps
, depth
, &nk
->max_bytes_subkeyname
))
350 if ( !prs_uint32( "max_bytes_subkeyclassname", ps
, depth
, &nk
->max_bytes_subkeyclassname
))
352 if ( !prs_uint32( "max_bytes_valuename", ps
, depth
, &nk
->max_bytes_valuename
))
354 if ( !prs_uint32( "max_bytes_value", ps
, depth
, &nk
->max_bytes_value
))
356 if ( !prs_uint32( "unknown index", ps
, depth
, &nk
->unk_index
))
359 name_length
= nk
->keyname
? strlen(nk
->keyname
) : 0 ;
360 class_length
= nk
->classname
? strlen(nk
->classname
) : 0 ;
361 if ( !prs_uint16( "name_length", ps
, depth
, &name_length
))
363 if ( !prs_uint16( "class_length", ps
, depth
, &class_length
))
366 if ( class_length
) {
371 if ( UNMARSHALLING(ps
) ) {
372 if ( !(nk
->keyname
= PRS_ALLOC_MEM( ps
, char, name_length
+1 )) )
376 if ( !prs_uint8s( True
, "name", ps
, depth
, (uint8
*)nk
->keyname
, name_length
) )
379 if ( UNMARSHALLING(ps
) )
380 nk
->keyname
[name_length
] = '\0';
383 end_off
= prs_offset( ps
);
385 /* data_size must be divisible by 8 and large enough to hold the original record */
387 data_size
= ((start_off
- end_off
) & 0xfffffff8 );
388 if ( data_size
> nk
->rec_size
)
389 DEBUG(10,("Encountered reused record (0x%x < 0x%x)\n", data_size
, nk
->rec_size
));
391 if ( MARSHALLING(ps
) )
392 nk
->hbin
->dirty
= True
;
397 /*******************************************************************
398 *******************************************************************/
400 static uint32
regf_block_checksum( prs_struct
*ps
)
402 char *buffer
= prs_data_p( ps
);
406 /* XOR of all bytes 0x0000 - 0x01FB */
410 for ( i
=0; i
<0x01FB; i
+=4 ) {
411 x
= IVAL(buffer
, i
);
418 /*******************************************************************
419 *******************************************************************/
421 static bool read_regf_block( REGF_FILE
*file
)
426 /* grab the first block from the file */
428 if ( read_block( file
, &ps
, 0, REGF_BLOCKSIZE
) == -1 )
431 /* parse the block and verify the checksum */
433 if ( !prs_regf_block( "regf_header", &ps
, 0, file
) )
436 checksum
= regf_block_checksum( &ps
);
440 if ( file
->checksum
!= checksum
) {
441 DEBUG(0,("read_regf_block: invalid checksum\n" ));
448 /*******************************************************************
449 *******************************************************************/
451 static REGF_HBIN
* read_hbin_block( REGF_FILE
*file
, off_t offset
)
454 uint32 record_size
, curr_off
, block_size
, header
;
456 if ( !(hbin
= TALLOC_ZERO_P(file
->mem_ctx
, REGF_HBIN
)) )
458 hbin
->file_off
= offset
;
461 if ( read_block( file
, &hbin
->ps
, offset
, 0 ) == -1 )
464 if ( !prs_hbin_block( "hbin", &hbin
->ps
, 0, hbin
) )
467 /* this should be the same thing as hbin->block_size but just in case */
469 block_size
= prs_data_size( &hbin
->ps
);
471 /* Find the available free space offset. Always at the end,
472 so walk the record list and stop when you get to the end.
473 The end is defined by a record header of 0xffffffff. The
474 previous 4 bytes contains the amount of free space remaining
475 in the hbin block. */
477 /* remember that the record_size is in the 4 bytes preceeding the record itself */
479 if ( !prs_set_offset( &hbin
->ps
, file
->data_offset
+HBIN_HDR_SIZE
-sizeof(uint32
) ) )
484 curr_off
= prs_offset( &hbin
->ps
);
485 while ( header
!= 0xffffffff ) {
486 /* not done yet so reset the current offset to the
487 next record_size field */
489 curr_off
= curr_off
+record_size
;
491 /* for some reason the record_size of the last record in
492 an hbin block can extend past the end of the block
493 even though the record fits within the remaining
494 space....aaarrrgggghhhhhh */
496 if ( curr_off
>= block_size
) {
502 if ( !prs_set_offset( &hbin
->ps
, curr_off
) )
505 if ( !prs_uint32( "rec_size", &hbin
->ps
, 0, &record_size
) )
507 if ( !prs_uint32( "header", &hbin
->ps
, 0, &header
) )
510 SMB_ASSERT( record_size
!= 0 );
512 if ( record_size
& 0x80000000 ) {
513 /* absolute_value(record_size) */
514 record_size
= (record_size
^ 0xffffffff) + 1;
518 /* save the free space offset */
520 if ( header
== 0xffffffff ) {
522 /* account for the fact that the curr_off is 4 bytes behind the actual
525 hbin
->free_off
= curr_off
+ sizeof(uint32
);
526 hbin
->free_size
= record_size
;
529 DEBUG(10,("read_hbin_block: free space offset == 0x%x\n", hbin
->free_off
));
531 if ( !prs_set_offset( &hbin
->ps
, file
->data_offset
+HBIN_HDR_SIZE
) )
537 /*******************************************************************
538 Input a random offset and receive the corresponding HBIN
540 *******************************************************************/
542 static bool hbin_contains_offset( REGF_HBIN
*hbin
, uint32 offset
)
547 if ( (offset
> hbin
->first_hbin_off
) && (offset
< (hbin
->first_hbin_off
+hbin
->block_size
)) )
553 /*******************************************************************
554 Input a random offset and receive the corresponding HBIN
556 *******************************************************************/
558 static REGF_HBIN
* lookup_hbin_block( REGF_FILE
*file
, uint32 offset
)
560 REGF_HBIN
*hbin
= NULL
;
563 /* start with the open list */
565 for ( hbin
=file
->block_list
; hbin
; hbin
=hbin
->next
) {
566 DEBUG(10,("lookup_hbin_block: address = 0x%x [0x%lx]\n", hbin
->file_off
, (unsigned long)hbin
));
567 if ( hbin_contains_offset( hbin
, offset
) )
572 /* start at the beginning */
574 block_off
= REGF_BLOCKSIZE
;
576 /* cleanup before the next round */
578 prs_mem_free( &hbin
->ps
);
580 hbin
= read_hbin_block( file
, block_off
);
583 block_off
= hbin
->file_off
+ hbin
->block_size
;
585 } while ( hbin
&& !hbin_contains_offset( hbin
, offset
) );
589 DLIST_ADD( file
->block_list
, hbin
);
594 /*******************************************************************
595 *******************************************************************/
597 static bool prs_hash_rec( const char *desc
, prs_struct
*ps
, int depth
, REGF_HASH_REC
*hash
)
599 prs_debug(ps
, depth
, desc
, "prs_hash_rec");
602 if ( !prs_uint32( "nk_off", ps
, depth
, &hash
->nk_off
))
604 if ( !prs_uint8s( True
, "keycheck", ps
, depth
, hash
->keycheck
, sizeof( hash
->keycheck
)) )
610 /*******************************************************************
611 *******************************************************************/
613 static bool hbin_prs_lf_records( const char *desc
, REGF_HBIN
*hbin
, int depth
, REGF_NK_REC
*nk
)
616 REGF_LF_REC
*lf
= &nk
->subkeys
;
617 uint32 data_size
, start_off
, end_off
;
619 prs_debug(&hbin
->ps
, depth
, desc
, "prs_lf_records");
622 /* check if we have anything to do first */
624 if ( nk
->num_subkeys
== 0 )
627 /* move to the LF record */
629 if ( !prs_set_offset( &hbin
->ps
, nk
->subkeys_off
+ HBIN_HDR_SIZE
- hbin
->first_hbin_off
) )
632 /* backup and get the data_size */
634 if ( !prs_set_offset( &hbin
->ps
, prs_offset(&hbin
->ps
)-sizeof(uint32
)) )
636 start_off
= prs_offset( &hbin
->ps
);
637 if ( !prs_uint32( "rec_size", &hbin
->ps
, depth
, &lf
->rec_size
))
640 if ( !prs_uint8s( True
, "header", &hbin
->ps
, depth
, (uint8
*)lf
->header
, sizeof( lf
->header
)) )
643 if ( !prs_uint16( "num_keys", &hbin
->ps
, depth
, &lf
->num_keys
))
646 if ( UNMARSHALLING(&hbin
->ps
) ) {
648 if ( !(lf
->hashes
= PRS_ALLOC_MEM( &hbin
->ps
, REGF_HASH_REC
, lf
->num_keys
)) )
655 for ( i
=0; i
<lf
->num_keys
; i
++ ) {
656 if ( !prs_hash_rec( "hash_rec", &hbin
->ps
, depth
, &lf
->hashes
[i
] ) )
660 end_off
= prs_offset( &hbin
->ps
);
662 /* data_size must be divisible by 8 and large enough to hold the original record */
664 data_size
= ((start_off
- end_off
) & 0xfffffff8 );
665 if ( data_size
> lf
->rec_size
)
666 DEBUG(10,("Encountered reused record (0x%x < 0x%x)\n", data_size
, lf
->rec_size
));
668 if ( MARSHALLING(&hbin
->ps
) )
674 /*******************************************************************
675 *******************************************************************/
677 static bool hbin_prs_sk_rec( const char *desc
, REGF_HBIN
*hbin
, int depth
, REGF_SK_REC
*sk
)
679 prs_struct
*ps
= &hbin
->ps
;
681 uint32 data_size
, start_off
, end_off
;
684 prs_debug(ps
, depth
, desc
, "hbin_prs_sk_rec");
687 if ( !prs_set_offset( &hbin
->ps
, sk
->sk_off
+ HBIN_HDR_SIZE
- hbin
->first_hbin_off
) )
690 /* backup and get the data_size */
692 if ( !prs_set_offset( &hbin
->ps
, prs_offset(&hbin
->ps
)-sizeof(uint32
)) )
694 start_off
= prs_offset( &hbin
->ps
);
695 if ( !prs_uint32( "rec_size", &hbin
->ps
, depth
, &sk
->rec_size
))
698 if ( !prs_uint8s( True
, "header", ps
, depth
, (uint8
*)sk
->header
, sizeof( sk
->header
)) )
700 if ( !prs_uint16( "tag", ps
, depth
, &tag
))
703 if ( !prs_uint32( "prev_sk_off", ps
, depth
, &sk
->prev_sk_off
))
705 if ( !prs_uint32( "next_sk_off", ps
, depth
, &sk
->next_sk_off
))
707 if ( !prs_uint32( "ref_count", ps
, depth
, &sk
->ref_count
))
709 if ( !prs_uint32( "size", ps
, depth
, &sk
->size
))
712 if ( !sec_io_desc( "sec_desc", &sk
->sec_desc
, ps
, depth
))
715 end_off
= prs_offset( &hbin
->ps
);
717 /* data_size must be divisible by 8 and large enough to hold the original record */
719 data_size
= ((start_off
- end_off
) & 0xfffffff8 );
720 if ( data_size
> sk
->rec_size
)
721 DEBUG(10,("Encountered reused record (0x%x < 0x%x)\n", data_size
, sk
->rec_size
));
723 if ( MARSHALLING(&hbin
->ps
) )
729 /*******************************************************************
730 *******************************************************************/
732 static bool hbin_prs_vk_rec( const char *desc
, REGF_HBIN
*hbin
, int depth
, REGF_VK_REC
*vk
, REGF_FILE
*file
)
736 prs_struct
*ps
= &hbin
->ps
;
737 uint32 data_size
, start_off
, end_off
;
739 prs_debug(ps
, depth
, desc
, "prs_vk_rec");
742 /* backup and get the data_size */
744 if ( !prs_set_offset( &hbin
->ps
, prs_offset(&hbin
->ps
)-sizeof(uint32
)) )
746 start_off
= prs_offset( &hbin
->ps
);
747 if ( !prs_uint32( "rec_size", &hbin
->ps
, depth
, &vk
->rec_size
))
750 if ( !prs_uint8s( True
, "header", ps
, depth
, (uint8
*)vk
->header
, sizeof( vk
->header
)) )
753 if ( MARSHALLING(&hbin
->ps
) )
754 name_length
= strlen(vk
->valuename
);
756 if ( !prs_uint16( "name_length", ps
, depth
, &name_length
))
758 if ( !prs_uint32( "data_size", ps
, depth
, &vk
->data_size
))
760 if ( !prs_uint32( "data_off", ps
, depth
, &vk
->data_off
))
762 if ( !prs_uint32( "type", ps
, depth
, &vk
->type
))
764 if ( !prs_uint16( "flag", ps
, depth
, &vk
->flag
))
767 offset
= prs_offset( ps
);
768 offset
+= 2; /* skip 2 bytes */
769 prs_set_offset( ps
, offset
);
773 if ( vk
->flag
&VK_FLAG_NAME_PRESENT
) {
775 if ( UNMARSHALLING(&hbin
->ps
) ) {
776 if ( !(vk
->valuename
= PRS_ALLOC_MEM( ps
, char, name_length
+1 )))
779 if ( !prs_uint8s( True
, "name", ps
, depth
, (uint8
*)vk
->valuename
, name_length
) )
783 end_off
= prs_offset( &hbin
->ps
);
785 /* get the data if necessary */
787 if ( vk
->data_size
!= 0 ) {
788 bool charmode
= False
;
790 if ( (vk
->type
== REG_SZ
) || (vk
->type
== REG_MULTI_SZ
) )
793 /* the data is stored in the offset if the size <= 4 */
795 if ( !(vk
->data_size
& VK_DATA_IN_OFFSET
) ) {
796 REGF_HBIN
*hblock
= hbin
;
797 uint32 data_rec_size
;
799 if ( UNMARSHALLING(&hbin
->ps
) ) {
800 if ( !(vk
->data
= PRS_ALLOC_MEM( ps
, uint8
, vk
->data_size
) ) )
804 /* this data can be in another hbin */
805 if ( !hbin_contains_offset( hbin
, vk
->data_off
) ) {
806 if ( !(hblock
= lookup_hbin_block( file
, vk
->data_off
)) )
809 if ( !(prs_set_offset( &hblock
->ps
, (vk
->data_off
+HBIN_HDR_SIZE
-hblock
->first_hbin_off
)-sizeof(uint32
) )) )
812 if ( MARSHALLING(&hblock
->ps
) ) {
813 data_rec_size
= ( (vk
->data_size
+sizeof(uint32
)) & 0xfffffff8 ) + 8;
814 data_rec_size
= ( data_rec_size
- 1 ) ^ 0xFFFFFFFF;
816 if ( !prs_uint32( "data_rec_size", &hblock
->ps
, depth
, &data_rec_size
))
818 if ( !prs_uint8s( charmode
, "data", &hblock
->ps
, depth
, vk
->data
, vk
->data_size
) )
821 if ( MARSHALLING(&hblock
->ps
) )
822 hblock
->dirty
= True
;
825 if ( !(vk
->data
= PRS_ALLOC_MEM( ps
, uint8
, 4 ) ) )
827 SIVAL( vk
->data
, 0, vk
->data_off
);
832 /* data_size must be divisible by 8 and large enough to hold the original record */
834 data_size
= ((start_off
- end_off
) & 0xfffffff8 );
835 if ( data_size
!= vk
->rec_size
)
836 DEBUG(10,("prs_vk_rec: data_size check failed (0x%x < 0x%x)\n", data_size
, vk
->rec_size
));
838 if ( MARSHALLING(&hbin
->ps
) )
844 /*******************************************************************
845 read a VK record which is contained in the HBIN block stored
846 in the prs_struct *ps.
847 *******************************************************************/
849 static bool hbin_prs_vk_records( const char *desc
, REGF_HBIN
*hbin
, int depth
, REGF_NK_REC
*nk
, REGF_FILE
*file
)
854 prs_debug(&hbin
->ps
, depth
, desc
, "prs_vk_records");
857 /* check if we have anything to do first */
859 if ( nk
->num_values
== 0 )
862 if ( UNMARSHALLING(&hbin
->ps
) ) {
863 if ( !(nk
->values
= PRS_ALLOC_MEM( &hbin
->ps
, REGF_VK_REC
, nk
->num_values
) ) )
867 /* convert the offset to something relative to this HBIN block */
869 if ( !prs_set_offset( &hbin
->ps
, nk
->values_off
+HBIN_HDR_SIZE
-hbin
->first_hbin_off
-sizeof(uint32
)) )
872 if ( MARSHALLING( &hbin
->ps
) ) {
873 record_size
= ( ( nk
->num_values
* sizeof(uint32
) ) & 0xfffffff8 ) + 8;
874 record_size
= (record_size
- 1) ^ 0xFFFFFFFF;
877 if ( !prs_uint32( "record_size", &hbin
->ps
, depth
, &record_size
) )
880 for ( i
=0; i
<nk
->num_values
; i
++ ) {
881 if ( !prs_uint32( "vk_off", &hbin
->ps
, depth
, &nk
->values
[i
].rec_off
) )
885 for ( i
=0; i
<nk
->num_values
; i
++ ) {
886 REGF_HBIN
*sub_hbin
= hbin
;
889 if ( !hbin_contains_offset( hbin
, nk
->values
[i
].rec_off
) ) {
890 sub_hbin
= lookup_hbin_block( file
, nk
->values
[i
].rec_off
);
892 DEBUG(0,("hbin_prs_vk_records: Failed to find HBIN block containing offset [0x%x]\n",
893 nk
->values
[i
].hbin_off
));
898 new_offset
= nk
->values
[i
].rec_off
+ HBIN_HDR_SIZE
- sub_hbin
->first_hbin_off
;
899 if ( !prs_set_offset( &sub_hbin
->ps
, new_offset
) )
901 if ( !hbin_prs_vk_rec( "vk_rec", sub_hbin
, depth
, &nk
->values
[i
], file
) )
905 if ( MARSHALLING(&hbin
->ps
) )
913 /*******************************************************************
914 *******************************************************************/
916 static REGF_SK_REC
* find_sk_record_by_offset( REGF_FILE
*file
, uint32 offset
)
920 for ( p_sk
=file
->sec_desc_list
; p_sk
; p_sk
=p_sk
->next
) {
921 if ( p_sk
->sk_off
== offset
)
928 /*******************************************************************
929 *******************************************************************/
931 static REGF_SK_REC
* find_sk_record_by_sec_desc( REGF_FILE
*file
, SEC_DESC
*sd
)
935 for ( p
=file
->sec_desc_list
; p
; p
=p
->next
) {
936 if ( sec_desc_equal( p
->sec_desc
, sd
) )
945 /*******************************************************************
946 *******************************************************************/
948 static bool hbin_prs_key( REGF_FILE
*file
, REGF_HBIN
*hbin
, REGF_NK_REC
*nk
)
953 prs_debug(&hbin
->ps
, depth
, "", "fetch_key");
956 /* get the initial nk record */
958 if ( !prs_nk_rec( "nk_rec", &hbin
->ps
, depth
, nk
))
963 if ( nk
->num_values
&& (nk
->values_off
!=REGF_OFFSET_NONE
) ) {
965 if ( !hbin_contains_offset( hbin
, nk
->values_off
) ) {
966 sub_hbin
= lookup_hbin_block( file
, nk
->values_off
);
968 DEBUG(0,("hbin_prs_key: Failed to find HBIN block containing value_list_offset [0x%x]\n",
974 if ( !hbin_prs_vk_records( "vk_rec", sub_hbin
, depth
, nk
, file
))
978 /* now get subkeys */
980 if ( nk
->num_subkeys
&& (nk
->subkeys_off
!=REGF_OFFSET_NONE
) ) {
982 if ( !hbin_contains_offset( hbin
, nk
->subkeys_off
) ) {
983 sub_hbin
= lookup_hbin_block( file
, nk
->subkeys_off
);
985 DEBUG(0,("hbin_prs_key: Failed to find HBIN block containing subkey_offset [0x%x]\n",
991 if ( !hbin_prs_lf_records( "lf_rec", sub_hbin
, depth
, nk
))
995 /* get the to the security descriptor. First look if we have already parsed it */
997 if ( (nk
->sk_off
!=REGF_OFFSET_NONE
) && !( nk
->sec_desc
= find_sk_record_by_offset( file
, nk
->sk_off
)) ) {
1000 if ( !hbin_contains_offset( hbin
, nk
->sk_off
) ) {
1001 sub_hbin
= lookup_hbin_block( file
, nk
->sk_off
);
1003 DEBUG(0,("hbin_prs_key: Failed to find HBIN block containing sk_offset [0x%x]\n",
1009 if ( !(nk
->sec_desc
= TALLOC_ZERO_P( file
->mem_ctx
, REGF_SK_REC
)) )
1011 nk
->sec_desc
->sk_off
= nk
->sk_off
;
1012 if ( !hbin_prs_sk_rec( "sk_rec", sub_hbin
, depth
, nk
->sec_desc
))
1015 /* add to the list of security descriptors (ref_count has been read from the files) */
1017 nk
->sec_desc
->sk_off
= nk
->sk_off
;
1018 DLIST_ADD( file
->sec_desc_list
, nk
->sec_desc
);
1024 /*******************************************************************
1025 *******************************************************************/
1027 static bool next_record( REGF_HBIN
*hbin
, const char *hdr
, bool *eob
)
1029 uint8 header
[REC_HDR_SIZE
];
1031 uint32 curr_off
, block_size
;
1033 prs_struct
*ps
= &hbin
->ps
;
1035 curr_off
= prs_offset( ps
);
1036 if ( curr_off
== 0 )
1037 prs_set_offset( ps
, HBIN_HEADER_REC_SIZE
);
1039 /* assume that the current offset is at the record header
1040 and we need to backup to read the record size */
1042 curr_off
-= sizeof(uint32
);
1044 block_size
= prs_data_size( ps
);
1046 memset( header
, 0x0, sizeof(uint8
)*REC_HDR_SIZE
);
1049 curr_off
= curr_off
+record_size
;
1050 if ( curr_off
>= block_size
)
1053 if ( !prs_set_offset( &hbin
->ps
, curr_off
) )
1056 if ( !prs_uint32( "record_size", ps
, 0, &record_size
) )
1058 if ( !prs_uint8s( True
, "header", ps
, 0, header
, REC_HDR_SIZE
) )
1061 if ( record_size
& 0x80000000 ) {
1062 /* absolute_value(record_size) */
1063 record_size
= (record_size
^ 0xffffffff) + 1;
1066 if ( memcmp( header
, hdr
, REC_HDR_SIZE
) == 0 ) {
1068 curr_off
+= sizeof(uint32
);
1072 /* mark prs_struct as done ( at end ) if no more SK records */
1073 /* mark end-of-block as True */
1076 prs_set_offset( &hbin
->ps
, prs_data_size(&hbin
->ps
) );
1081 if ( !prs_set_offset( ps
, curr_off
) )
1087 /*******************************************************************
1088 *******************************************************************/
1090 static bool next_nk_record( REGF_FILE
*file
, REGF_HBIN
*hbin
, REGF_NK_REC
*nk
, bool *eob
)
1092 if ( next_record( hbin
, "nk", eob
) && hbin_prs_key( file
, hbin
, nk
) )
1098 /*******************************************************************
1099 Intialize the newly created REGF_BLOCK in *file and write the
1100 block header to disk
1101 *******************************************************************/
1103 static bool init_regf_block( REGF_FILE
*file
)
1108 if ( !prs_init( &ps
, REGF_BLOCKSIZE
, file
->mem_ctx
, MARSHALL
) )
1111 memcpy( file
->header
, "regf", REGF_HDR_SIZE
);
1112 file
->data_offset
= 0x20;
1113 file
->last_block
= 0x1000;
1117 unix_to_nt_time( &file
->mtime
, time(NULL
) );
1119 /* hard coded values...no diea what these are ... maybe in time */
1121 file
->unknown1
= 0x2;
1122 file
->unknown2
= 0x1;
1123 file
->unknown3
= 0x3;
1124 file
->unknown4
= 0x0;
1125 file
->unknown5
= 0x1;
1126 file
->unknown6
= 0x1;
1128 /* write header to the buffer */
1130 if ( !prs_regf_block( "regf_header", &ps
, 0, file
) ) {
1135 /* calculate the checksum, re-marshall data (to include the checksum)
1136 and write to disk */
1138 file
->checksum
= regf_block_checksum( &ps
);
1139 prs_set_offset( &ps
, 0 );
1140 if ( !prs_regf_block( "regf_header", &ps
, 0, file
) ) {
1145 if ( write_block( file
, &ps
, 0 ) == -1 ) {
1146 DEBUG(0,("init_regf_block: Failed to initialize registry header block!\n"));
1152 prs_mem_free( &ps
);
1156 /*******************************************************************
1157 Open the registry file and then read in the REGF block to get the
1159 *******************************************************************/
1161 REGF_FILE
* regfio_open( const char *filename
, int flags
, int mode
)
1165 if ( !(rb
= SMB_MALLOC_P(REGF_FILE
)) ) {
1166 DEBUG(0,("ERROR allocating memory\n"));
1172 if ( !(rb
->mem_ctx
= talloc_init( "read_regf_block" )) ) {
1178 rb
->open_flags
= flags
;
1180 /* open and existing file */
1182 if ( (rb
->fd
= open(filename
, flags
, mode
)) == -1 ) {
1183 DEBUG(0,("regfio_open: failure to open %s (%s)\n", filename
, strerror(errno
)));
1189 /* check if we are creating a new file or overwriting an existing one */
1191 if ( flags
& (O_CREAT
|O_TRUNC
) ) {
1192 if ( !init_regf_block( rb
) ) {
1193 DEBUG(0,("regfio_open: Failed to read initial REGF block\n"));
1203 /* read in an existing file */
1205 if ( !read_regf_block( rb
) ) {
1206 DEBUG(0,("regfio_open: Failed to read initial REGF block\n"));
1217 /*******************************************************************
1218 *******************************************************************/
1220 static void regfio_mem_free( REGF_FILE
*file
)
1222 /* free any talloc()'d memory */
1224 if ( file
&& file
->mem_ctx
)
1225 talloc_destroy( file
->mem_ctx
);
1228 /*******************************************************************
1229 *******************************************************************/
1231 int regfio_close( REGF_FILE
*file
)
1235 /* cleanup for a file opened for write */
1237 if ( file
->open_flags
& (O_WRONLY
|O_RDWR
) ) {
1241 /* write of sd list */
1243 for ( sk
=file
->sec_desc_list
; sk
; sk
=sk
->next
) {
1244 hbin_prs_sk_rec( "sk_rec", sk
->hbin
, 0, sk
);
1247 /* flush any dirty blocks */
1249 while ( file
->block_list
) {
1250 hbin_block_close( file
, file
->block_list
);
1255 unix_to_nt_time( &file
->mtime
, time(NULL
) );
1257 if ( read_block( file
, &ps
, 0, REGF_BLOCKSIZE
) != -1 ) {
1258 /* now use for writing */
1259 prs_switch_type( &ps
, MARSHALL
);
1261 /* stream the block once, generate the checksum,
1262 and stream it again */
1263 prs_set_offset( &ps
, 0 );
1264 prs_regf_block( "regf_blocK", &ps
, 0, file
);
1265 file
->checksum
= regf_block_checksum( &ps
);
1266 prs_set_offset( &ps
, 0 );
1267 prs_regf_block( "regf_blocK", &ps
, 0, file
);
1269 /* now we are ready to write it to disk */
1270 if ( write_block( file
, &ps
, 0 ) == -1 )
1271 DEBUG(0,("regfio_close: failed to update the regf header block!\n"));
1274 prs_mem_free( &ps
);
1277 regfio_mem_free( file
);
1279 /* nothing tdo do if there is no open file */
1281 if ( !file
|| (file
->fd
== -1) )
1291 /*******************************************************************
1292 *******************************************************************/
1294 static void regfio_flush( REGF_FILE
*file
)
1298 for ( hbin
=file
->block_list
; hbin
; hbin
=hbin
->next
) {
1299 write_hbin_block( file
, hbin
);
1303 /*******************************************************************
1304 There should be only *one* root key in the registry file based
1305 on my experience. --jerry
1306 *******************************************************************/
1308 REGF_NK_REC
* regfio_rootkey( REGF_FILE
*file
)
1312 uint32 offset
= REGF_BLOCKSIZE
;
1319 if ( !(nk
= TALLOC_ZERO_P( file
->mem_ctx
, REGF_NK_REC
)) ) {
1320 DEBUG(0,("regfio_rootkey: talloc() failed!\n"));
1324 /* scan through the file on HBIN block at a time looking
1325 for an NK record with a type == 0x002c.
1326 Normally this is the first nk record in the first hbin
1327 block (but I'm not assuming that for now) */
1329 while ( (hbin
= read_hbin_block( file
, offset
)) ) {
1333 if ( next_nk_record( file
, hbin
, nk
, &eob
) ) {
1334 if ( nk
->key_type
== NK_TYPE_ROOTKEY
) {
1339 prs_mem_free( &hbin
->ps
);
1345 offset
+= hbin
->block_size
;
1349 DEBUG(0,("regfio_rootkey: corrupt registry file ? No root key record located\n"));
1353 DLIST_ADD( file
->block_list
, hbin
);
1358 /*******************************************************************
1359 This acts as an interator over the subkeys defined for a given
1360 NK record. Remember that offsets are from the *first* HBIN block.
1361 *******************************************************************/
1363 REGF_NK_REC
* regfio_fetch_subkey( REGF_FILE
*file
, REGF_NK_REC
*nk
)
1365 REGF_NK_REC
*subkey
;
1369 /* see if there is anything left to report */
1371 if ( !nk
|| (nk
->subkeys_off
==REGF_OFFSET_NONE
) || (nk
->subkey_index
>= nk
->num_subkeys
) )
1374 /* find the HBIN block which should contain the nk record */
1376 if ( !(hbin
= lookup_hbin_block( file
, nk
->subkeys
.hashes
[nk
->subkey_index
].nk_off
)) ) {
1377 DEBUG(0,("hbin_prs_key: Failed to find HBIN block containing offset [0x%x]\n",
1378 nk
->subkeys
.hashes
[nk
->subkey_index
].nk_off
));
1382 nk_offset
= nk
->subkeys
.hashes
[nk
->subkey_index
].nk_off
;
1383 if ( !prs_set_offset( &hbin
->ps
, (HBIN_HDR_SIZE
+ nk_offset
- hbin
->first_hbin_off
) ) )
1387 if ( !(subkey
= TALLOC_ZERO_P( file
->mem_ctx
, REGF_NK_REC
)) )
1390 if ( !hbin_prs_key( file
, hbin
, subkey
) )
1397 /*******************************************************************
1398 *******************************************************************/
1400 static REGF_HBIN
* regf_hbin_allocate( REGF_FILE
*file
, uint32 block_size
)
1403 SMB_STRUCT_STAT sbuf
;
1405 if ( !(hbin
= TALLOC_ZERO_P( file
->mem_ctx
, REGF_HBIN
)) )
1408 memcpy( hbin
->header
, "hbin", sizeof(HBIN_HDR_SIZE
) );
1411 if ( sys_fstat( file
->fd
, &sbuf
) ) {
1412 DEBUG(0,("regf_hbin_allocate: stat() failed! (%s)\n", strerror(errno
)));
1416 hbin
->file_off
= sbuf
.st_size
;
1418 hbin
->free_off
= HBIN_HEADER_REC_SIZE
;
1419 hbin
->free_size
= block_size
- hbin
->free_off
+ sizeof(uint32
);;
1421 hbin
->block_size
= block_size
;
1422 hbin
->first_hbin_off
= hbin
->file_off
- REGF_BLOCKSIZE
;
1424 if ( !prs_init( &hbin
->ps
, block_size
, file
->mem_ctx
, MARSHALL
) )
1427 if ( !prs_hbin_block( "new_hbin", &hbin
->ps
, 0, hbin
) )
1430 if ( !write_hbin_block( file
, hbin
) )
1433 file
->last_block
= hbin
->file_off
;
1438 /*******************************************************************
1439 *******************************************************************/
1441 static void update_free_space( REGF_HBIN
*hbin
, uint32 size_used
)
1443 hbin
->free_off
+= size_used
;
1444 hbin
->free_size
-= size_used
;
1446 if ( hbin
->free_off
>= hbin
->block_size
) {
1447 hbin
->free_off
= REGF_OFFSET_NONE
;
1453 /*******************************************************************
1454 *******************************************************************/
1456 static REGF_HBIN
* find_free_space( REGF_FILE
*file
, uint32 size
)
1458 REGF_HBIN
*hbin
, *p_hbin
;
1462 /* check open block list */
1464 for ( hbin
=file
->block_list
; hbin
!=NULL
; hbin
=hbin
->next
) {
1465 /* only check blocks that actually have available space */
1467 if ( hbin
->free_off
== REGF_OFFSET_NONE
)
1470 /* check for a large enough available chunk */
1472 if ( (hbin
->block_size
- hbin
->free_off
) >= size
) {
1473 DLIST_PROMOTE( file
->block_list
, hbin
);
1478 /* parse the file until we find a block with
1479 enough free space; save the last non-filled hbin */
1481 block_off
= REGF_BLOCKSIZE
;
1483 /* cleanup before the next round */
1486 prs_mem_free( &hbin
->ps
);
1488 hbin
= read_hbin_block( file
, block_off
);
1492 /* make sure that we don't already have this block in memory */
1494 for ( p_hbin
=file
->block_list
; p_hbin
!=NULL
; p_hbin
=p_hbin
->next
) {
1495 if ( p_hbin
->file_off
== hbin
->file_off
) {
1501 block_off
= hbin
->file_off
+ hbin
->block_size
;
1504 prs_mem_free( &hbin
->ps
);
1509 /* if (cached block or (new block and not enough free space)) then continue looping */
1510 } while ( cached
|| (hbin
&& (hbin
->free_size
< size
)) );
1512 /* no free space; allocate a new one */
1517 /* allocate in multiples of REGF_ALLOC_BLOCK; make sure (size + hbin_header) fits */
1519 alloc_size
= (((size
+HBIN_HEADER_REC_SIZE
) / REGF_ALLOC_BLOCK
) + 1 ) * REGF_ALLOC_BLOCK
;
1521 if ( !(hbin
= regf_hbin_allocate( file
, alloc_size
)) ) {
1522 DEBUG(0,("find_free_space: regf_hbin_allocate() failed!\n"));
1525 DLIST_ADD( file
->block_list
, hbin
);
1529 /* set the offset to be ready to write */
1531 if ( !prs_set_offset( &hbin
->ps
, hbin
->free_off
-sizeof(uint32
) ) )
1534 /* write the record size as a placeholder for now, it should be
1535 probably updated by the caller once it all of the data necessary
1538 if ( !prs_uint32("allocated_size", &hbin
->ps
, 0, &size
) )
1541 update_free_space( hbin
, size
);
1546 /*******************************************************************
1547 *******************************************************************/
1549 static uint32
sk_record_data_size( SEC_DESC
* sd
)
1551 uint32 size
, size_mod8
;
1555 /* the record size is sizeof(hdr) + name + static members + data_size_field */
1557 size
= sizeof(uint32
)*5 + sec_desc_size( sd
) + sizeof(uint32
);
1560 size_mod8
= size
& 0xfffffff8;
1561 if ( size_mod8
< size
)
1567 /*******************************************************************
1568 *******************************************************************/
1570 static uint32
vk_record_data_size( REGF_VK_REC
*vk
)
1572 uint32 size
, size_mod8
;
1576 /* the record size is sizeof(hdr) + name + static members + data_size_field */
1578 size
= REC_HDR_SIZE
+ (sizeof(uint16
)*3) + (sizeof(uint32
)*3) + sizeof(uint32
);
1580 if ( vk
->valuename
)
1581 size
+= strlen(vk
->valuename
);
1584 size_mod8
= size
& 0xfffffff8;
1585 if ( size_mod8
< size
)
1591 /*******************************************************************
1592 *******************************************************************/
1594 static uint32
lf_record_data_size( uint32 num_keys
)
1596 uint32 size
, size_mod8
;
1600 /* the record size is sizeof(hdr) + num_keys + sizeof of hash_array + data_size_uint32 */
1602 size
= REC_HDR_SIZE
+ sizeof(uint16
) + (sizeof(REGF_HASH_REC
) * num_keys
) + sizeof(uint32
);
1605 size_mod8
= size
& 0xfffffff8;
1606 if ( size_mod8
< size
)
1612 /*******************************************************************
1613 *******************************************************************/
1615 static uint32
nk_record_data_size( REGF_NK_REC
*nk
)
1617 uint32 size
, size_mod8
;
1621 /* the record size is static + length_of_keyname + length_of_classname + data_size_uint32 */
1623 size
= 0x4c + strlen(nk
->keyname
) + sizeof(uint32
);
1625 if ( nk
->classname
)
1626 size
+= strlen( nk
->classname
);
1629 size_mod8
= size
& 0xfffffff8;
1630 if ( size_mod8
< size
)
1636 /*******************************************************************
1637 *******************************************************************/
1639 static bool create_vk_record( REGF_FILE
*file
, REGF_VK_REC
*vk
, REGISTRY_VALUE
*value
)
1641 char *name
= regval_name(value
);
1642 REGF_HBIN
*data_hbin
;
1646 memcpy( vk
->header
, "vk", REC_HDR_SIZE
);
1649 vk
->valuename
= talloc_strdup( file
->mem_ctx
, regval_name(value
) );
1650 vk
->flag
= VK_FLAG_NAME_PRESENT
;
1653 vk
->data_size
= regval_size( value
);
1654 vk
->type
= regval_type( value
);
1656 if ( vk
->data_size
> sizeof(uint32
) ) {
1657 uint32 data_size
= ( (vk
->data_size
+sizeof(uint32
)) & 0xfffffff8 ) + 8;
1659 vk
->data
= (uint8
*)TALLOC_MEMDUP( file
->mem_ctx
,
1660 regval_data_p(value
),
1662 if (vk
->data
== NULL
) {
1666 /* go ahead and store the offset....we'll pick this hbin block back up when
1667 we stream the data */
1669 if ((data_hbin
= find_free_space(file
, data_size
)) == NULL
) {
1672 vk
->data_off
= prs_offset( &data_hbin
->ps
) + data_hbin
->first_hbin_off
- HBIN_HDR_SIZE
;
1675 /* make sure we don't try to copy from a NULL value pointer */
1677 if ( vk
->data_size
!= 0 )
1678 memcpy( &vk
->data_off
, regval_data_p(value
), sizeof(uint32
) );
1679 vk
->data_size
|= VK_DATA_IN_OFFSET
;
1685 /*******************************************************************
1686 *******************************************************************/
1688 static int hashrec_cmp( REGF_HASH_REC
*h1
, REGF_HASH_REC
*h2
)
1690 return StrCaseCmp( h1
->fullname
, h2
->fullname
);
1693 /*******************************************************************
1694 *******************************************************************/
1696 REGF_NK_REC
* regfio_write_key( REGF_FILE
*file
, const char *name
,
1697 REGVAL_CTR
*values
, REGSUBKEY_CTR
*subkeys
,
1698 SEC_DESC
*sec_desc
, REGF_NK_REC
*parent
)
1701 REGF_HBIN
*vlist_hbin
= NULL
;
1704 if ( !(nk
= TALLOC_ZERO_P( file
->mem_ctx
, REGF_NK_REC
)) )
1707 memcpy( nk
->header
, "nk", REC_HDR_SIZE
);
1710 nk
->key_type
= NK_TYPE_ROOTKEY
;
1712 nk
->key_type
= NK_TYPE_NORMALKEY
;
1714 /* store the parent offset (or -1 if a the root key */
1716 nk
->parent_off
= parent
? (parent
->hbin_off
+ parent
->hbin
->file_off
- REGF_BLOCKSIZE
- HBIN_HDR_SIZE
) : REGF_OFFSET_NONE
;
1718 /* no classname currently */
1720 nk
->classname_off
= REGF_OFFSET_NONE
;
1721 nk
->classname
= NULL
;
1722 nk
->keyname
= talloc_strdup( file
->mem_ctx
, name
);
1724 /* current modification time */
1726 unix_to_nt_time( &nk
->mtime
, time(NULL
) );
1728 /* allocate the record on disk */
1730 size
= nk_record_data_size( nk
);
1731 nk
->rec_size
= ( size
- 1 ) ^ 0XFFFFFFFF;
1732 if ((nk
->hbin
= find_free_space( file
, size
)) == NULL
) {
1735 nk
->hbin_off
= prs_offset( &nk
->hbin
->ps
);
1737 /* Update the hash record in the parent */
1740 REGF_HASH_REC
*hash
= &parent
->subkeys
.hashes
[parent
->subkey_index
];
1742 hash
->nk_off
= prs_offset( &nk
->hbin
->ps
) + nk
->hbin
->first_hbin_off
- HBIN_HDR_SIZE
;
1743 memcpy( hash
->keycheck
, name
, sizeof(uint32
) );
1744 hash
->fullname
= talloc_strdup( file
->mem_ctx
, name
);
1745 parent
->subkey_index
++;
1747 /* sort the list by keyname */
1749 qsort( parent
->subkeys
.hashes
, parent
->subkey_index
, sizeof(REGF_HASH_REC
), QSORT_CAST hashrec_cmp
);
1751 if ( !hbin_prs_lf_records( "lf_rec", parent
->subkeys
.hbin
, 0, parent
) )
1755 /* write the security descriptor */
1757 nk
->sk_off
= REGF_OFFSET_NONE
;
1759 uint32 sk_size
= sk_record_data_size( sec_desc
);
1762 /* search for it in the existing list of sd's */
1764 if ( (nk
->sec_desc
= find_sk_record_by_sec_desc( file
, sec_desc
)) == NULL
) {
1765 /* not found so add it to the list */
1767 if (!(sk_hbin
= find_free_space( file
, sk_size
))) {
1771 if ( !(nk
->sec_desc
= TALLOC_ZERO_P( file
->mem_ctx
, REGF_SK_REC
)) )
1774 /* now we have to store the security descriptor in the list and
1775 update the offsets */
1777 memcpy( nk
->sec_desc
->header
, "sk", REC_HDR_SIZE
);
1778 nk
->sec_desc
->hbin
= sk_hbin
;
1779 nk
->sec_desc
->hbin_off
= prs_offset( &sk_hbin
->ps
);
1780 nk
->sec_desc
->sk_off
= prs_offset( &sk_hbin
->ps
) + sk_hbin
->first_hbin_off
- HBIN_HDR_SIZE
;
1781 nk
->sec_desc
->rec_size
= (sk_size
-1) ^ 0xFFFFFFFF;
1783 nk
->sec_desc
->sec_desc
= sec_desc
;
1784 nk
->sec_desc
->ref_count
= 0;
1786 /* size value must be self-inclusive */
1787 nk
->sec_desc
->size
= sec_desc_size(sec_desc
) + sizeof(uint32
);
1789 DLIST_ADD_END( file
->sec_desc_list
, nk
->sec_desc
, REGF_SK_REC
*);
1791 /* update the offsets for us and the previous sd in the list.
1792 if this is the first record, then just set the next and prev
1793 offsets to ourself. */
1795 if ( nk
->sec_desc
->prev
) {
1796 REGF_SK_REC
*prev
= nk
->sec_desc
->prev
;
1798 nk
->sec_desc
->prev_sk_off
= prev
->hbin_off
+ prev
->hbin
->first_hbin_off
- HBIN_HDR_SIZE
;
1799 prev
->next_sk_off
= nk
->sec_desc
->sk_off
;
1801 /* the end must loop around to the front */
1802 nk
->sec_desc
->next_sk_off
= file
->sec_desc_list
->sk_off
;
1804 /* and first must loop around to the tail */
1805 file
->sec_desc_list
->prev_sk_off
= nk
->sec_desc
->sk_off
;
1807 nk
->sec_desc
->prev_sk_off
= nk
->sec_desc
->sk_off
;
1808 nk
->sec_desc
->next_sk_off
= nk
->sec_desc
->sk_off
;
1812 /* bump the reference count +1 */
1814 nk
->sk_off
= nk
->sec_desc
->sk_off
;
1815 nk
->sec_desc
->ref_count
++;
1818 /* write the subkeys */
1820 nk
->subkeys_off
= REGF_OFFSET_NONE
;
1821 if ( (nk
->num_subkeys
= regsubkey_ctr_numkeys( subkeys
)) != 0 ) {
1822 uint32 lf_size
= lf_record_data_size( nk
->num_subkeys
);
1826 if (!(nk
->subkeys
.hbin
= find_free_space( file
, lf_size
))) {
1829 nk
->subkeys
.hbin_off
= prs_offset( &nk
->subkeys
.hbin
->ps
);
1830 nk
->subkeys
.rec_size
= (lf_size
-1) ^ 0xFFFFFFFF;
1831 nk
->subkeys_off
= prs_offset( &nk
->subkeys
.hbin
->ps
) + nk
->subkeys
.hbin
->first_hbin_off
- HBIN_HDR_SIZE
;
1833 memcpy( nk
->subkeys
.header
, "lf", REC_HDR_SIZE
);
1835 nk
->subkeys
.num_keys
= nk
->num_subkeys
;
1836 if (nk
->subkeys
.num_keys
) {
1837 if ( !(nk
->subkeys
.hashes
= TALLOC_ZERO_ARRAY( file
->mem_ctx
, REGF_HASH_REC
, nk
->subkeys
.num_keys
)) )
1840 nk
->subkeys
.hashes
= NULL
;
1842 nk
->subkey_index
= 0;
1844 /* update the max_bytes_subkey{name,classname} fields */
1845 for ( i
=0; i
<nk
->num_subkeys
; i
++ ) {
1846 namelen
= strlen( regsubkey_ctr_specific_key(subkeys
, i
) );
1847 if ( namelen
*2 > nk
->max_bytes_subkeyname
)
1848 nk
->max_bytes_subkeyname
= namelen
* 2;
1852 /* write the values */
1854 nk
->values_off
= REGF_OFFSET_NONE
;
1855 if ( (nk
->num_values
= regval_ctr_numvals( values
)) != 0 ) {
1856 uint32 vlist_size
= ( ( nk
->num_values
* sizeof(uint32
) ) & 0xfffffff8 ) + 8;
1859 if (!(vlist_hbin
= find_free_space( file
, vlist_size
))) {
1862 nk
->values_off
= prs_offset( &vlist_hbin
->ps
) + vlist_hbin
->first_hbin_off
- HBIN_HDR_SIZE
;
1864 if (nk
->num_values
) {
1865 if ( !(nk
->values
= TALLOC_ARRAY( file
->mem_ctx
, REGF_VK_REC
, nk
->num_values
)) )
1871 /* create the vk records */
1873 for ( i
=0; i
<nk
->num_values
; i
++ ) {
1874 uint32 vk_size
, namelen
, datalen
;
1877 r
= regval_ctr_specific_value( values
, i
);
1878 create_vk_record( file
, &nk
->values
[i
], r
);
1879 vk_size
= vk_record_data_size( &nk
->values
[i
] );
1880 nk
->values
[i
].hbin
= find_free_space( file
, vk_size
);
1881 nk
->values
[i
].hbin_off
= prs_offset( &nk
->values
[i
].hbin
->ps
);
1882 nk
->values
[i
].rec_size
= ( vk_size
- 1 ) ^ 0xFFFFFFFF;
1883 nk
->values
[i
].rec_off
= prs_offset( &nk
->values
[i
].hbin
->ps
)
1884 + nk
->values
[i
].hbin
->first_hbin_off
1887 /* update the max bytes fields if necessary */
1889 namelen
= strlen( regval_name(r
) );
1890 if ( namelen
*2 > nk
->max_bytes_valuename
)
1891 nk
->max_bytes_valuename
= namelen
* 2;
1893 datalen
= regval_size( r
);
1894 if ( datalen
> nk
->max_bytes_value
)
1895 nk
->max_bytes_value
= datalen
;
1899 /* stream the records */
1901 prs_set_offset( &nk
->hbin
->ps
, nk
->hbin_off
);
1902 if ( !prs_nk_rec( "nk_rec", &nk
->hbin
->ps
, 0, nk
) )
1905 if ( nk
->num_values
) {
1906 if ( !hbin_prs_vk_records( "vk_records", vlist_hbin
, 0, nk
, file
) )
1911 regfio_flush( file
);