source: trunk/lib/regfi.c @ 206

Last change on this file since 206 was 206, checked in by tim, 14 years ago

simplified part of regfi API to move string encoding to the REGFI_FILE object

additional pyregfi implementation

  • Property svn:keywords set to Id
File size: 97.6 KB
Line 
1/*
2 * Copyright (C) 2005-2010 Timothy D. Morgan
3 * Copyright (C) 2005 Gerald (Jerry) Carter
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 3 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 *
18 * $Id: regfi.c 206 2010-08-25 15:20:32Z tim $
19 */
20
21/**
22 * @file
23 *
24 * Windows NT (and later) read-only registry library
25 *
26 * See @ref regfi.h for more information.
27 *
28 * Branched from Samba project Subversion repository, version #7470:
29 *   http://viewcvs.samba.org/cgi-bin/viewcvs.cgi/trunk/source/registry/regfio.c?rev=7470&view=auto
30 *
31 * Since then, it has been heavily rewritten, simplified, and improved.
32 */
33
34#include "regfi.h"
35
36
37/* Registry types mapping */
38const unsigned int regfi_num_reg_types = 12;
39static const char* regfi_type_names[] =
40  {"NONE", "SZ", "EXPAND_SZ", "BINARY", "DWORD", "DWORD_BE", "LINK",
41   "MULTI_SZ", "RSRC_LIST", "RSRC_DESC", "RSRC_REQ_LIST", "QWORD"};
42
43const char* regfi_encoding_names[] =
44  {"US-ASCII//TRANSLIT", "UTF-8//TRANSLIT", "UTF-16LE//TRANSLIT"};
45
46
47/* Ensures regfi_init runs only once */
48static pthread_once_t regfi_init_once = PTHREAD_ONCE_INIT;
49
50
51
52/******************************************************************************
53 ******************************************************************************/
54void regfi_log_free(void* ptr)
55{
56  REGFI_LOG* log_info = (REGFI_LOG*)ptr;
57 
58  if(log_info->messages != NULL)
59    free(log_info->messages);
60
61  talloc_free(log_info);
62}
63
64
65/******************************************************************************
66 ******************************************************************************/
67void regfi_init()
68{
69  int err;
70  if((err = pthread_key_create(&regfi_log_key, regfi_log_free)) != 0)
71    fprintf(stderr, "ERROR: key_create: %s\n", strerror(err));
72  errno = err;
73}
74
75
76/******************************************************************************
77 ******************************************************************************/
78REGFI_LOG* regfi_log_new()
79{
80  int err;
81  REGFI_LOG* log_info = talloc(NULL, REGFI_LOG);
82  if(log_info == NULL)
83    return NULL;
84
85  log_info->msg_mask = REGFI_DEFAULT_LOG_MASK;
86  log_info->messages = NULL;
87
88  pthread_once(&regfi_init_once, regfi_init);
89
90  if((err = pthread_setspecific(regfi_log_key, log_info)) != 0)
91  {
92    fprintf(stderr, "ERROR: setspecific: %s\n", strerror(err));
93    goto fail;
94  }
95
96  return log_info;
97
98 fail:
99  talloc_free(log_info);
100  errno = err;
101  return NULL;
102}
103
104
105/******************************************************************************
106 ******************************************************************************/
107void regfi_log_add(uint16_t msg_type, const char* fmt, ...)
108{
109  /* XXX: Switch internal storage over to a linked list or stack.
110   *      Then add a regfi_log_get function that returns the list in some
111   *      convenient, user-friendly data structure.  regfi_log_get_str should
112   *      stick around and will simply smush the list into a big string when
113   *      it's called, rather than having messages smushed when they're first
114   *      written to the log.
115   */
116  uint32_t buf_size, buf_used;
117  char* new_msg;
118  REGFI_LOG* log_info;
119  va_list args;
120
121  log_info = (REGFI_LOG*)pthread_getspecific(regfi_log_key);
122  if(log_info == NULL && (log_info = regfi_log_new()) == NULL)
123    return;
124
125  if((log_info->msg_mask & msg_type) == 0)
126    return;
127
128  if(log_info->messages == NULL)
129    buf_used = 0;
130  else
131    buf_used = strlen(log_info->messages);
132 
133  buf_size = buf_used+strlen(fmt)+160;
134  new_msg = realloc(log_info->messages, buf_size);
135  if(new_msg == NULL)
136    /* XXX: should we report this? */
137    return;
138 
139  switch (msg_type)
140  {
141  case REGFI_LOG_INFO:
142    strcpy(new_msg+buf_used, "INFO: ");
143    buf_used += 6;
144    break;
145  case REGFI_LOG_WARN:
146    strcpy(new_msg+buf_used, "WARN: ");
147    buf_used += 6;
148    break;
149  case REGFI_LOG_ERROR:
150    strcpy(new_msg+buf_used, "ERROR: ");
151    buf_used += 7;
152    break;
153  }
154 
155  va_start(args, fmt);
156  vsnprintf(new_msg+buf_used, buf_size-buf_used, fmt, args);
157  va_end(args);
158  strncat(new_msg, "\n", buf_size-1);
159 
160  log_info->messages = new_msg;
161}
162
163
164/******************************************************************************
165 ******************************************************************************/
166char* regfi_log_get_str()
167{
168  char* ret_val;
169  REGFI_LOG* log_info = (REGFI_LOG*)pthread_getspecific(regfi_log_key);
170  if(log_info == NULL && (log_info = regfi_log_new()) == NULL)
171    return NULL;
172 
173  ret_val = log_info->messages;
174  log_info->messages = NULL;
175
176  return ret_val;
177}
178
179
180/******************************************************************************
181 ******************************************************************************/
182bool regfi_log_set_mask(uint16_t msg_mask)
183{
184  REGFI_LOG* log_info = (REGFI_LOG*)pthread_getspecific(regfi_log_key);
185  if(log_info == NULL && (log_info = regfi_log_new()) == NULL)
186  {
187      return false;
188  }
189
190  log_info->msg_mask = msg_mask;
191  return true;
192}
193
194
195/******************************************************************************
196 * Returns NULL for an invalid e
197 *****************************************************************************/
198static const char* regfi_encoding_int2str(REGFI_ENCODING e)
199{
200  if(e < REGFI_NUM_ENCODINGS)
201    return regfi_encoding_names[e];
202
203  return NULL;
204}
205
206
207/******************************************************************************
208 * Returns NULL for an invalid val
209 *****************************************************************************/
210const char* regfi_type_val2str(unsigned int val)
211{
212  if(val == REG_KEY)
213    return "KEY";
214 
215  if(val >= regfi_num_reg_types)
216    return NULL;
217 
218  return regfi_type_names[val];
219}
220
221
222/******************************************************************************
223 * Returns -1 on error
224 *****************************************************************************/
225int regfi_type_str2val(const char* str)
226{
227  int i;
228
229  if(strcmp("KEY", str) == 0)
230    return REG_KEY;
231
232  for(i=0; i < regfi_num_reg_types; i++)
233    if (strcmp(regfi_type_names[i], str) == 0) 
234      return i;
235
236  if(strcmp("DWORD_LE", str) == 0)
237    return REG_DWORD_LE;
238
239  return -1;
240}
241
242
243/* Security descriptor formatting functions  */
244
245const char* regfi_ace_type2str(uint8_t type)
246{
247  static const char* map[7] 
248    = {"ALLOW", "DENY", "AUDIT", "ALARM", 
249       "ALLOW CPD", "OBJ ALLOW", "OBJ DENY"};
250  if(type < 7)
251    return map[type];
252  else
253    /* XXX: would be nice to return the unknown integer value. 
254     *      However, as it is a const string, it can't be free()ed later on,
255     *      so that would need to change.
256     */
257    return "UNKNOWN";
258}
259
260
261/* XXX: need a better reference on the meaning of each flag. */
262/* For more info, see:
263 *   http://msdn2.microsoft.com/en-us/library/aa772242.aspx
264 */
265char* regfi_ace_flags2str(uint8_t flags)
266{
267  static const char* flag_map[32] = 
268    { "OI", /* Object Inherit */
269      "CI", /* Container Inherit */
270      "NP", /* Non-Propagate */
271      "IO", /* Inherit Only */
272      "IA", /* Inherited ACE */
273      NULL,
274      NULL,
275      NULL,
276    };
277
278  char* ret_val = malloc(35*sizeof(char));
279  char* fo = ret_val;
280  uint32_t i;
281  uint8_t f;
282
283  if(ret_val == NULL)
284    return NULL;
285
286  fo[0] = '\0';
287  if (!flags)
288    return ret_val;
289
290  for(i=0; i < 8; i++)
291  {
292    f = (1<<i);
293    if((flags & f) && (flag_map[i] != NULL))
294    {
295      strcpy(fo, flag_map[i]);
296      fo += strlen(flag_map[i]);
297      *(fo++) = ' ';
298      flags ^= f;
299    }
300  }
301 
302  /* Any remaining unknown flags are added at the end in hex. */
303  if(flags != 0)
304    sprintf(fo, "0x%.2X ", flags);
305
306  /* Chop off the last space if we've written anything to ret_val */
307  if(fo != ret_val)
308    fo[-1] = '\0';
309
310  return ret_val;
311}
312
313
314char* regfi_ace_perms2str(uint32_t perms)
315{
316  uint32_t i, p;
317  /* This is more than is needed by a fair margin. */
318  char* ret_val = malloc(350*sizeof(char));
319  char* r = ret_val;
320
321  /* Each represents one of 32 permissions bits.  NULL is for undefined/reserved bits.
322   * For more information, see:
323   *   http://msdn2.microsoft.com/en-gb/library/aa374892.aspx
324   *   http://msdn2.microsoft.com/en-gb/library/ms724878.aspx
325   */
326  static const char* perm_map[32] = 
327    {/* object-specific permissions (registry keys, in this case) */
328      "QRY_VAL",       /* KEY_QUERY_VALUE */
329      "SET_VAL",       /* KEY_SET_VALUE */
330      "CREATE_KEY",    /* KEY_CREATE_SUB_KEY */
331      "ENUM_KEYS",     /* KEY_ENUMERATE_SUB_KEYS */
332      "NOTIFY",        /* KEY_NOTIFY */
333      "CREATE_LNK",    /* KEY_CREATE_LINK - Reserved for system use. */
334      NULL,
335      NULL,
336      "WOW64_64",      /* KEY_WOW64_64KEY */
337      "WOW64_32",      /* KEY_WOW64_32KEY */
338      NULL,
339      NULL,
340      NULL,
341      NULL,
342      NULL,
343      NULL,
344      /* standard access rights */
345      "DELETE",        /* DELETE */
346      "R_CONT",        /* READ_CONTROL */
347      "W_DAC",         /* WRITE_DAC */
348      "W_OWNER",       /* WRITE_OWNER */
349      "SYNC",          /* SYNCHRONIZE - Shouldn't be set in registries */
350      NULL,
351      NULL,
352      NULL,
353      /* other generic */
354      "SYS_SEC",       /* ACCESS_SYSTEM_SECURITY */
355      "MAX_ALLWD",     /* MAXIMUM_ALLOWED */
356      NULL,
357      NULL,
358      "GEN_A",         /* GENERIC_ALL */
359      "GEN_X",         /* GENERIC_EXECUTE */
360      "GEN_W",         /* GENERIC_WRITE */
361      "GEN_R",         /* GENERIC_READ */
362    };
363
364
365  if(ret_val == NULL)
366    return NULL;
367
368  r[0] = '\0';
369  for(i=0; i < 32; i++)
370  {
371    p = (1<<i);
372    if((perms & p) && (perm_map[i] != NULL))
373    {
374      strcpy(r, perm_map[i]);
375      r += strlen(perm_map[i]);
376      *(r++) = ' ';
377      perms ^= p;
378    }
379  }
380 
381  /* Any remaining unknown permission bits are added at the end in hex. */
382  if(perms != 0)
383    sprintf(r, "0x%.8X ", perms);
384
385  /* Chop off the last space if we've written anything to ret_val */
386  if(r != ret_val)
387    r[-1] = '\0';
388
389  return ret_val;
390}
391
392
393char* regfi_sid2str(WINSEC_DOM_SID* sid)
394{
395  uint32_t i, size = WINSEC_MAX_SUBAUTHS*11 + 24;
396  uint32_t left = size;
397  uint8_t comps = sid->num_auths;
398  char* ret_val = malloc(size);
399 
400  if(ret_val == NULL)
401    return NULL;
402
403  if(comps > WINSEC_MAX_SUBAUTHS)
404    comps = WINSEC_MAX_SUBAUTHS;
405
406  left -= sprintf(ret_val, "S-%u-%u", sid->sid_rev_num, sid->id_auth[5]);
407
408  for (i = 0; i < comps; i++) 
409    left -= snprintf(ret_val+(size-left), left, "-%u", sid->sub_auths[i]);
410
411  return ret_val;
412}
413
414
415char* regfi_get_acl(WINSEC_ACL* acl)
416{
417  uint32_t i, extra, size = 0;
418  const char* type_str;
419  char* flags_str;
420  char* perms_str;
421  char* sid_str;
422  char* ace_delim = "";
423  char* ret_val = NULL;
424  char* tmp_val = NULL;
425  bool failed = false;
426  char field_delim = ':';
427
428  for (i = 0; i < acl->num_aces && !failed; i++)
429  {
430    sid_str = regfi_sid2str(acl->aces[i]->trustee);
431    type_str = regfi_ace_type2str(acl->aces[i]->type);
432    perms_str = regfi_ace_perms2str(acl->aces[i]->access_mask);
433    flags_str = regfi_ace_flags2str(acl->aces[i]->flags);
434   
435    if(flags_str != NULL && perms_str != NULL 
436       && type_str != NULL && sid_str != NULL)
437    {
438      /* XXX: this is slow */
439      extra = strlen(sid_str) + strlen(type_str) 
440        + strlen(perms_str) + strlen(flags_str) + 5;
441      tmp_val = realloc(ret_val, size+extra);
442
443      if(tmp_val == NULL)
444      {
445        free(ret_val);
446        ret_val = NULL;
447        failed = true;
448      }
449      else
450      {
451        ret_val = tmp_val;
452        size += sprintf(ret_val+size, "%s%s%c%s%c%s%c%s",
453                        ace_delim,sid_str,
454                        field_delim,type_str,
455                        field_delim,perms_str,
456                        field_delim,flags_str);
457        ace_delim = "|";
458      }
459    }
460    else
461      failed = true;
462
463    if(sid_str != NULL)
464      free(sid_str);
465    if(sid_str != NULL)
466      free(perms_str);
467    if(sid_str != NULL)
468      free(flags_str);
469  }
470
471  return ret_val;
472}
473
474
475char* regfi_get_sacl(WINSEC_DESC *sec_desc)
476{
477  if (sec_desc->sacl)
478    return regfi_get_acl(sec_desc->sacl);
479  else
480    return NULL;
481}
482
483
484char* regfi_get_dacl(WINSEC_DESC *sec_desc)
485{
486  if (sec_desc->dacl)
487    return regfi_get_acl(sec_desc->dacl);
488  else
489    return NULL;
490}
491
492
493char* regfi_get_owner(WINSEC_DESC *sec_desc)
494{
495  return regfi_sid2str(sec_desc->owner_sid);
496}
497
498
499char* regfi_get_group(WINSEC_DESC *sec_desc)
500{
501  return regfi_sid2str(sec_desc->grp_sid);
502}
503
504
505bool regfi_read_lock(REGFI_FILE* file, pthread_rwlock_t* lock, const char* context)
506{
507  int lock_ret = pthread_rwlock_rdlock(lock);
508  if(lock_ret != 0)
509  {
510    regfi_log_add(REGFI_LOG_ERROR, "Error obtaining read lock in"
511                      "%s due to: %s\n", context, strerror(lock_ret));
512    return false;
513  }
514
515  return true;
516}
517
518
519bool regfi_write_lock(REGFI_FILE* file, pthread_rwlock_t* lock, const char* context)
520{
521  int lock_ret = pthread_rwlock_wrlock(lock);
522  if(lock_ret != 0)
523  {
524    regfi_log_add(REGFI_LOG_ERROR, "Error obtaining write lock in"
525                      "%s due to: %s\n", context, strerror(lock_ret));
526    return false;
527  }
528
529  return true;
530}
531
532
533bool regfi_rw_unlock(REGFI_FILE* file, pthread_rwlock_t* lock, const char* context)
534{
535  int lock_ret = pthread_rwlock_unlock(lock);
536  if(lock_ret != 0)
537  {
538    regfi_log_add(REGFI_LOG_ERROR, "Error releasing lock in"
539                      "%s due to: %s\n", context, strerror(lock_ret));
540    return false;
541  }
542
543  return true;
544}
545
546
547bool regfi_lock(REGFI_FILE* file, pthread_mutex_t* lock, const char* context)
548{
549  int lock_ret = pthread_mutex_lock(lock);
550  if(lock_ret != 0)
551  {
552    regfi_log_add(REGFI_LOG_ERROR, "Error obtaining mutex lock in"
553                      "%s due to: %s\n", context, strerror(lock_ret));
554    return false;
555  }
556
557  return true;
558}
559
560
561bool regfi_unlock(REGFI_FILE* file, pthread_mutex_t* lock, const char* context)
562{
563  int lock_ret = pthread_mutex_unlock(lock);
564  if(lock_ret != 0)
565  {
566    regfi_log_add(REGFI_LOG_ERROR, "Error releasing mutex lock in"
567                      "%s due to: %s\n", context, strerror(lock_ret));
568    return false;
569  }
570
571  return true;
572}
573
574
575off_t regfi_raw_seek(REGFI_RAW_FILE* self, off_t offset, int whence)
576{
577  return lseek(*(int*)self->state, offset, whence);
578}
579
580ssize_t regfi_raw_read(REGFI_RAW_FILE* self, void* buf, size_t count)
581{
582  return read(*(int*)self->state, buf, count);
583}
584
585
586/*****************************************************************************
587 * Convenience function to wrap up the ugly callback stuff
588 *****************************************************************************/
589off_t regfi_seek(REGFI_RAW_FILE* file_cb, off_t offset, int whence)
590{
591  return file_cb->seek(file_cb, offset, whence);
592}
593
594
595/*****************************************************************************
596 * This function is just like read(2), except that it continues to
597 * re-try reading from the file descriptor if EINTR or EAGAIN is received. 
598 * regfi_read will attempt to read length bytes from the file and write them to
599 * buf.
600 *
601 * On success, 0 is returned.  Upon failure, an errno code is returned.
602 *
603 * The number of bytes successfully read is returned through the length
604 * parameter by reference.  If both the return value and length parameter are
605 * returned as 0, then EOF was encountered immediately
606 *****************************************************************************/
607uint32_t regfi_read(REGFI_RAW_FILE* file_cb, uint8_t* buf, uint32_t* length)
608{
609  uint32_t rsize = 0;
610  uint32_t rret = 0;
611
612  do
613  {
614    rret = file_cb->read(file_cb, buf + rsize, *length - rsize);
615    if(rret > 0)
616      rsize += rret;
617  }while(*length - rsize > 0 
618         && (rret > 0 || (rret == -1 && (errno == EAGAIN || errno == EINTR))));
619 
620  *length = rsize;
621  if (rret == -1 && errno != EINTR && errno != EAGAIN)
622    return errno;
623
624  return 0;
625}
626
627
628/*****************************************************************************
629 *
630 *****************************************************************************/
631bool regfi_parse_cell(REGFI_RAW_FILE* file_cb, uint32_t offset, uint8_t* hdr, 
632                      uint32_t hdr_len, uint32_t* cell_length, bool* unalloc)
633{
634  uint32_t length;
635  int32_t raw_length;
636  uint8_t tmp[4];
637
638  if(regfi_seek(file_cb, offset, SEEK_SET) == -1)
639    return false;
640
641  length = 4;
642  if((regfi_read(file_cb, tmp, &length) != 0) || length != 4)
643    return false;
644  raw_length = IVALS(tmp, 0);
645
646  if(raw_length < 0)
647  {
648    (*cell_length) = raw_length*(-1);
649    (*unalloc) = false;
650  }
651  else
652  {
653    (*cell_length) = raw_length;
654    (*unalloc) = true;
655  }
656
657  if(*cell_length - 4 < hdr_len)
658    return false;
659
660  if(hdr_len > 0)
661  {
662    length = hdr_len;
663    if((regfi_read(file_cb, hdr, &length) != 0) || length != hdr_len)
664      return false;
665  }
666
667  return true;
668}
669
670
671/******************************************************************************
672 * Given an offset and an hbin, is the offset within that hbin?
673 * The offset is a virtual file offset.
674 ******************************************************************************/
675static bool regfi_offset_in_hbin(const REGFI_HBIN* hbin, uint32_t voffset)
676{
677  if(!hbin)
678    return false;
679
680  if((voffset > hbin->first_hbin_off) 
681     && (voffset < (hbin->first_hbin_off + hbin->block_size)))
682    return true;
683               
684  return false;
685}
686
687
688
689/******************************************************************************
690 * Provide a physical offset and receive the correpsonding HBIN
691 * block for it.  NULL if one doesn't exist.
692 ******************************************************************************/
693const REGFI_HBIN* regfi_lookup_hbin(REGFI_FILE* file, uint32_t offset)
694{
695  return (const REGFI_HBIN*)range_list_find_data(file->hbins, offset);
696}
697
698
699/******************************************************************************
700 * Calculate the largest possible cell size given a physical offset.
701 * Largest size is based on the HBIN the offset is currently a member of.
702 * Returns negative values on error.
703 * (Since cells can only be ~2^31 in size, this works out.)
704 ******************************************************************************/
705int32_t regfi_calc_maxsize(REGFI_FILE* file, uint32_t offset)
706{
707  const REGFI_HBIN* hbin = regfi_lookup_hbin(file, offset);
708  if(hbin == NULL)
709    return -1;
710
711  return (hbin->block_size + hbin->file_off) - offset;
712}
713
714
715/******************************************************************************
716 ******************************************************************************/
717REGFI_SUBKEY_LIST* regfi_load_subkeylist(REGFI_FILE* file, uint32_t offset, 
718                                         uint32_t num_keys, uint32_t max_size, 
719                                         bool strict)
720{
721  REGFI_SUBKEY_LIST* ret_val;
722
723  ret_val = regfi_load_subkeylist_aux(file, offset, max_size, strict, 
724                                      REGFI_MAX_SUBKEY_DEPTH);
725  if(ret_val == NULL)
726  {
727    regfi_log_add(REGFI_LOG_WARN, "Failed to load subkey list at"
728                      " offset 0x%.8X.", offset);
729    return NULL;
730  }
731
732  if(num_keys != ret_val->num_keys)
733  {
734    /*  Not sure which should be authoritative, the number from the
735     *  NK record, or the number in the subkey list.  Just emit a warning for
736     *  now if they don't match.
737     */
738    regfi_log_add(REGFI_LOG_WARN, "Number of subkeys listed in parent"
739                      " (%d) did not match number found in subkey list/tree (%d)"
740                      " while parsing subkey list/tree at offset 0x%.8X.", 
741                      num_keys, ret_val->num_keys, offset);
742  }
743
744  return ret_val;
745}
746
747
748/******************************************************************************
749 ******************************************************************************/
750REGFI_SUBKEY_LIST* regfi_load_subkeylist_aux(REGFI_FILE* file, uint32_t offset, 
751                                             uint32_t max_size, bool strict,
752                                             uint8_t depth_left)
753{
754  REGFI_SUBKEY_LIST* ret_val;
755  REGFI_SUBKEY_LIST** sublists;
756  uint32_t i, num_sublists, off;
757  int32_t sublist_maxsize;
758
759  if(depth_left == 0)
760  {
761    regfi_log_add(REGFI_LOG_WARN, "Maximum depth reached"
762                      " while parsing subkey list/tree at offset 0x%.8X.", 
763                      offset);
764    return NULL;
765  }
766
767  ret_val = regfi_parse_subkeylist(file, offset, max_size, strict);
768  if(ret_val == NULL)
769    return NULL;
770
771  if(ret_val->recursive_type)
772  {
773    num_sublists = ret_val->num_children;
774    sublists = (REGFI_SUBKEY_LIST**)malloc(num_sublists
775                                           * sizeof(REGFI_SUBKEY_LIST*));
776    for(i=0; i < num_sublists; i++)
777    {
778      off = ret_val->elements[i].offset + REGFI_REGF_SIZE;
779
780      sublist_maxsize = regfi_calc_maxsize(file, off);
781      if(sublist_maxsize < 0)
782        sublists[i] = NULL;
783      else
784        sublists[i] = regfi_load_subkeylist_aux(file, off, sublist_maxsize, 
785                                                strict, depth_left-1);
786    }
787    talloc_free(ret_val);
788
789    return regfi_merge_subkeylists(num_sublists, sublists, strict);
790  }
791
792  return ret_val;
793}
794
795
796/******************************************************************************
797 ******************************************************************************/
798REGFI_SUBKEY_LIST* regfi_parse_subkeylist(REGFI_FILE* file, uint32_t offset, 
799                                          uint32_t max_size, bool strict)
800{
801  REGFI_SUBKEY_LIST* ret_val;
802  uint32_t i, cell_length, length, elem_size, read_len;
803  uint8_t* elements = NULL;
804  uint8_t buf[REGFI_SUBKEY_LIST_MIN_LEN];
805  bool unalloc;
806  bool recursive_type;
807
808  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_subkeylist"))
809     goto fail;
810
811  if(!regfi_parse_cell(file->cb, offset, buf, REGFI_SUBKEY_LIST_MIN_LEN,
812                       &cell_length, &unalloc))
813  {
814    regfi_log_add(REGFI_LOG_WARN, "Could not parse cell while "
815                      "parsing subkey-list at offset 0x%.8X.", offset);
816    goto fail_locked;
817  }
818
819  if(cell_length > max_size)
820  {
821    regfi_log_add(REGFI_LOG_WARN, "Cell size longer than max_size"
822                      " while parsing subkey-list at offset 0x%.8X.", offset);
823    if(strict)
824      goto fail_locked;
825    cell_length = max_size & 0xFFFFFFF8;
826  }
827
828  recursive_type = false;
829  if(buf[0] == 'r' && buf[1] == 'i')
830  {
831    recursive_type = true;
832    elem_size = sizeof(uint32_t);
833  }
834  else if(buf[0] == 'l' && buf[1] == 'i')
835  {
836    elem_size = sizeof(uint32_t);
837  }
838  else if((buf[0] == 'l') && (buf[1] == 'f' || buf[1] == 'h'))
839    elem_size = sizeof(REGFI_SUBKEY_LIST_ELEM);
840  else
841  {
842    regfi_log_add(REGFI_LOG_ERROR, "Unknown magic number"
843                      " (0x%.2X, 0x%.2X) encountered while parsing"
844                      " subkey-list at offset 0x%.8X.", buf[0], buf[1], offset);
845    goto fail_locked;
846  }
847
848  ret_val = talloc(NULL, REGFI_SUBKEY_LIST);
849  if(ret_val == NULL)
850    goto fail_locked;
851
852  ret_val->offset = offset;
853  ret_val->cell_size = cell_length;
854  ret_val->magic[0] = buf[0];
855  ret_val->magic[1] = buf[1];
856  ret_val->recursive_type = recursive_type;
857  ret_val->num_children = SVAL(buf, 0x2);
858
859  if(!recursive_type)
860    ret_val->num_keys = ret_val->num_children;
861
862  length = elem_size*ret_val->num_children;
863  if(cell_length - REGFI_SUBKEY_LIST_MIN_LEN - sizeof(uint32_t) < length)
864  {
865    regfi_log_add(REGFI_LOG_WARN, "Number of elements too large for"
866                      " cell while parsing subkey-list at offset 0x%.8X.", 
867                      offset);
868    if(strict)
869      goto fail_locked;
870    length = cell_length - REGFI_SUBKEY_LIST_MIN_LEN - sizeof(uint32_t);
871  }
872
873  ret_val->elements = talloc_array(ret_val, REGFI_SUBKEY_LIST_ELEM, 
874                                   ret_val->num_children);
875  if(ret_val->elements == NULL)
876    goto fail_locked;
877
878  elements = (uint8_t*)malloc(length);
879  if(elements == NULL)
880    goto fail_locked;
881
882  read_len = length;
883  if(regfi_read(file->cb, elements, &read_len) != 0 || read_len!=length)
884    goto fail_locked;
885
886  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_subkeylist"))
887     goto fail;
888
889  if(elem_size == sizeof(uint32_t))
890  {
891    for (i=0; i < ret_val->num_children; i++)
892    {
893      ret_val->elements[i].offset = IVAL(elements, i*elem_size);
894      ret_val->elements[i].hash = 0;
895    }
896  }
897  else
898  {
899    for (i=0; i < ret_val->num_children; i++)
900    {
901      ret_val->elements[i].offset = IVAL(elements, i*elem_size);
902      ret_val->elements[i].hash = IVAL(elements, i*elem_size+4);
903    }
904  }
905  free(elements);
906
907  return ret_val;
908
909 fail_locked:
910  regfi_unlock(file, &file->cb_lock, "regfi_parse_subkeylist");
911 fail:
912  if(elements != NULL)
913    free(elements);
914  talloc_free(ret_val);
915  return NULL;
916}
917
918
919/*******************************************************************
920 *******************************************************************/
921REGFI_SUBKEY_LIST* regfi_merge_subkeylists(uint16_t num_lists, 
922                                           REGFI_SUBKEY_LIST** lists,
923                                           bool strict)
924{
925  uint32_t i,j,k;
926  REGFI_SUBKEY_LIST* ret_val;
927
928  if(lists == NULL)
929    return NULL;
930  ret_val = talloc(NULL, REGFI_SUBKEY_LIST);
931
932  if(ret_val == NULL)
933    return NULL;
934 
935  /* Obtain total number of elements */
936  ret_val->num_keys = 0;
937  for(i=0; i < num_lists; i++)
938  {
939    if(lists[i] != NULL)
940      ret_val->num_keys += lists[i]->num_children;
941  }
942  ret_val->num_children = ret_val->num_keys;
943
944  if(ret_val->num_keys > 0)
945  {
946    ret_val->elements = talloc_array(ret_val, REGFI_SUBKEY_LIST_ELEM,
947                                     ret_val->num_keys);
948    k=0;
949
950    if(ret_val->elements != NULL)
951    {
952      for(i=0; i < num_lists; i++)
953      {
954        if(lists[i] != NULL)
955        {
956          for(j=0; j < lists[i]->num_keys; j++)
957          {
958            ret_val->elements[k].hash = lists[i]->elements[j].hash;
959            ret_val->elements[k++].offset = lists[i]->elements[j].offset;
960          }
961        }
962      }
963    }
964  }
965 
966  for(i=0; i < num_lists; i++)
967    talloc_free(lists[i]);
968  free(lists);
969
970  return ret_val;
971}
972
973
974/******************************************************************************
975 *
976 ******************************************************************************/
977REGFI_SK* regfi_parse_sk(REGFI_FILE* file, uint32_t offset, uint32_t max_size, 
978                             bool strict)
979{
980  REGFI_SK* ret_val = NULL;
981  uint8_t* sec_desc_buf = NULL;
982  uint32_t cell_length, length;
983  uint8_t sk_header[REGFI_SK_MIN_LENGTH];
984  bool unalloc = false;
985
986  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_sk"))
987     goto fail;
988
989  if(!regfi_parse_cell(file->cb, offset, sk_header, REGFI_SK_MIN_LENGTH,
990                       &cell_length, &unalloc))
991  {
992    regfi_log_add(REGFI_LOG_WARN, "Could not parse SK record cell"
993                      " at offset 0x%.8X.", offset);
994    goto fail_locked;
995  }
996   
997  if(sk_header[0] != 's' || sk_header[1] != 'k')
998  {
999    regfi_log_add(REGFI_LOG_WARN, "Magic number mismatch in parsing"
1000                      " SK record at offset 0x%.8X.", offset);
1001    goto fail_locked;
1002  }
1003
1004  ret_val = talloc(NULL, REGFI_SK);
1005  if(ret_val == NULL)
1006    goto fail_locked;
1007
1008  ret_val->offset = offset;
1009  /* XXX: Is there a way to be more conservative (shorter) with
1010   *      cell length when cell is unallocated?
1011   */
1012  ret_val->cell_size = cell_length;
1013
1014  if(ret_val->cell_size > max_size)
1015    ret_val->cell_size = max_size & 0xFFFFFFF8;
1016  if((ret_val->cell_size < REGFI_SK_MIN_LENGTH) 
1017     || (strict && (ret_val->cell_size & 0x00000007) != 0))
1018  {
1019    regfi_log_add(REGFI_LOG_WARN, "Invalid cell size found while"
1020                      " parsing SK record at offset 0x%.8X.", offset);
1021    goto fail_locked;
1022  }
1023
1024  ret_val->magic[0] = sk_header[0];
1025  ret_val->magic[1] = sk_header[1];
1026
1027  ret_val->unknown_tag = SVAL(sk_header, 0x2);
1028  ret_val->prev_sk_off = IVAL(sk_header, 0x4);
1029  ret_val->next_sk_off = IVAL(sk_header, 0x8);
1030  ret_val->ref_count = IVAL(sk_header, 0xC);
1031  ret_val->desc_size = IVAL(sk_header, 0x10);
1032
1033  if((ret_val->prev_sk_off & 0x00000007) != 0
1034     || (ret_val->next_sk_off & 0x00000007) != 0)
1035  {
1036    regfi_log_add(REGFI_LOG_WARN, "SK record's next/previous offsets"
1037                      " are not a multiple of 8 while parsing SK record at"
1038                      " offset 0x%.8X.", offset);
1039    goto fail_locked;
1040  }
1041
1042  if(ret_val->desc_size + REGFI_SK_MIN_LENGTH > ret_val->cell_size)
1043  {
1044    regfi_log_add(REGFI_LOG_WARN, "Security descriptor too large for"
1045                      " cell while parsing SK record at offset 0x%.8X.", 
1046                      offset);
1047    goto fail_locked;
1048  }
1049
1050  sec_desc_buf = (uint8_t*)malloc(ret_val->desc_size);
1051  if(sec_desc_buf == NULL)
1052    goto fail_locked;
1053
1054  length = ret_val->desc_size;
1055  if(regfi_read(file->cb, sec_desc_buf, &length) != 0 
1056     || length != ret_val->desc_size)
1057  {
1058    regfi_log_add(REGFI_LOG_ERROR, "Failed to read security"
1059                      " descriptor while parsing SK record at offset 0x%.8X.",
1060                      offset);
1061    goto fail_locked;
1062  }
1063
1064  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_sk"))
1065     goto fail;
1066
1067  if(!(ret_val->sec_desc = winsec_parse_desc(ret_val, sec_desc_buf, 
1068                                                   ret_val->desc_size)))
1069  {
1070    regfi_log_add(REGFI_LOG_ERROR, "Failed to parse security"
1071                      " descriptor while parsing SK record at offset 0x%.8X.",
1072                      offset);
1073    goto fail;
1074  }
1075
1076  free(sec_desc_buf);
1077  return ret_val;
1078
1079 fail_locked:
1080  regfi_unlock(file, &file->cb_lock, "regfi_parse_sk");
1081 fail:
1082  if(sec_desc_buf != NULL)
1083    free(sec_desc_buf);
1084  talloc_free(ret_val);
1085  return NULL;
1086}
1087
1088
1089REGFI_VALUE_LIST* regfi_parse_valuelist(REGFI_FILE* file, uint32_t offset, 
1090                                        uint32_t num_values, bool strict)
1091{
1092  REGFI_VALUE_LIST* ret_val;
1093  uint32_t i, cell_length, length, read_len;
1094  bool unalloc;
1095
1096  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_valuelist"))
1097     goto fail;
1098
1099  if(!regfi_parse_cell(file->cb, offset, NULL, 0, &cell_length, &unalloc))
1100  {
1101    regfi_log_add(REGFI_LOG_ERROR, "Failed to read cell header"
1102                      " while parsing value list at offset 0x%.8X.", offset);
1103    goto fail_locked;
1104  }
1105
1106  if((cell_length & 0x00000007) != 0)
1107  {
1108    regfi_log_add(REGFI_LOG_WARN, "Cell length not a multiple of 8"
1109                      " while parsing value list at offset 0x%.8X.", offset);
1110    if(strict)
1111      goto fail_locked;
1112    cell_length = cell_length & 0xFFFFFFF8;
1113  }
1114
1115  if((num_values * sizeof(uint32_t)) > cell_length-sizeof(uint32_t))
1116  {
1117    regfi_log_add(REGFI_LOG_WARN, "Too many values found"
1118                      " while parsing value list at offset 0x%.8X.", offset);
1119    if(strict)
1120      goto fail_locked;
1121    num_values = cell_length/sizeof(uint32_t) - sizeof(uint32_t);
1122  }
1123
1124  read_len = num_values*sizeof(uint32_t);
1125  ret_val = talloc(NULL, REGFI_VALUE_LIST);
1126  if(ret_val == NULL)
1127    goto fail_locked;
1128
1129  ret_val->elements = (REGFI_VALUE_LIST_ELEM*)talloc_size(ret_val, read_len);
1130  if(ret_val->elements == NULL)
1131    goto fail_locked;
1132
1133  ret_val->offset = offset;
1134  ret_val->cell_size = cell_length;
1135  ret_val->num_values = num_values;
1136
1137  length = read_len;
1138  if((regfi_read(file->cb, (uint8_t*)ret_val->elements, &length) != 0) 
1139     || length != read_len)
1140  {
1141    regfi_log_add(REGFI_LOG_ERROR, "Failed to read value pointers"
1142                      " while parsing value list at offset 0x%.8X.", offset);
1143    goto fail_locked;
1144  }
1145 
1146  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_valuelist"))
1147     goto fail;
1148
1149  for(i=0; i < num_values; i++)
1150  {
1151    /* Fix endianness */
1152    ret_val->elements[i] = IVAL(&ret_val->elements[i], 0);
1153
1154    /* Validate the first num_values values to ensure they make sense */
1155    if(strict)
1156    {
1157      /* XXX: Need to revisit this file length check when we start dealing
1158       *      with partial files. */
1159      if((ret_val->elements[i] + REGFI_REGF_SIZE > file->file_length)
1160         || ((ret_val->elements[i] & 0x00000007) != 0))
1161      {
1162        regfi_log_add(REGFI_LOG_WARN, "Invalid value pointer"
1163                          " (0x%.8X) found while parsing value list at offset"
1164                          " 0x%.8X.", ret_val->elements[i], offset);
1165        goto fail;
1166      }
1167    }
1168  }
1169
1170  return ret_val;
1171
1172 fail_locked:
1173  regfi_unlock(file, &file->cb_lock, "regfi_parse_valuelist");
1174 fail:
1175  talloc_free(ret_val);
1176  return NULL;
1177}
1178
1179/* XXX: should give this boolean return type to indicate errors */
1180void regfi_interpret_valuename(REGFI_FILE* file, REGFI_VK* vk, 
1181                               REGFI_ENCODING output_encoding, bool strict)
1182{
1183  /* XXX: Registry value names are supposedly limited to 16383 characters
1184   *      according to:
1185   *      http://msdn.microsoft.com/en-us/library/ms724872%28VS.85%29.aspx
1186   *      Might want to emit a warning if this is exceeded. 
1187   *      It is expected that "characters" could be variable width.
1188   *      Also, it may be useful to use this information to limit false positives
1189   *      when recovering deleted VK records.
1190   */
1191  int32_t tmp_size;
1192  REGFI_ENCODING from_encoding = (vk->flags & REGFI_VK_FLAG_ASCIINAME)
1193    ? REGFI_ENCODING_ASCII : REGFI_ENCODING_UTF16LE;
1194
1195  if(from_encoding == output_encoding)
1196  {
1197    vk->name_raw[vk->name_length] = '\0';
1198    vk->name = (char*)vk->name_raw;
1199  }
1200  else
1201  {
1202    vk->name = talloc_array(vk, char, vk->name_length+1);
1203    if(vk->name == NULL)
1204      return;
1205
1206    tmp_size = regfi_conv_charset(regfi_encoding_int2str(from_encoding),
1207                                  regfi_encoding_int2str(output_encoding),
1208                                  vk->name_raw, vk->name,
1209                                  vk->name_length, vk->name_length+1);
1210    if(tmp_size < 0)
1211    {
1212      regfi_log_add(REGFI_LOG_WARN, "Error occurred while converting"
1213                        " value name to encoding %s.  Error message: %s",
1214                        regfi_encoding_int2str(output_encoding), 
1215                        strerror(-tmp_size));
1216      talloc_free(vk->name);
1217      vk->name = NULL;
1218    }
1219  }
1220}
1221
1222
1223/******************************************************************************
1224 ******************************************************************************/
1225REGFI_VK* regfi_load_value(REGFI_FILE* file, uint32_t offset, 
1226                           REGFI_ENCODING output_encoding, bool strict)
1227{
1228  REGFI_VK* ret_val = NULL;
1229  int32_t max_size;
1230
1231  max_size = regfi_calc_maxsize(file, offset);
1232  if(max_size < 0)
1233    return NULL;
1234 
1235  ret_val = regfi_parse_vk(file, offset, max_size, strict);
1236  if(ret_val == NULL)
1237    return NULL;
1238
1239  regfi_interpret_valuename(file, ret_val, output_encoding, strict);
1240
1241  return ret_val;
1242}
1243
1244
1245/******************************************************************************
1246 * If !strict, the list may contain NULLs, VK records may point to NULL.
1247 ******************************************************************************/
1248REGFI_VALUE_LIST* regfi_load_valuelist(REGFI_FILE* file, uint32_t offset, 
1249                                       uint32_t num_values, uint32_t max_size,
1250                                       bool strict)
1251{
1252  uint32_t usable_num_values;
1253
1254  if((num_values+1) * sizeof(uint32_t) > max_size)
1255  {
1256    regfi_log_add(REGFI_LOG_WARN, "Number of values indicated by"
1257                      " parent key (%d) would cause cell to straddle HBIN"
1258                      " boundary while loading value list at offset"
1259                      " 0x%.8X.", num_values, offset);
1260    if(strict)
1261      return NULL;
1262    usable_num_values = max_size/sizeof(uint32_t) - sizeof(uint32_t);
1263  }
1264  else
1265    usable_num_values = num_values;
1266
1267  return regfi_parse_valuelist(file, offset, usable_num_values, strict);
1268}
1269
1270
1271/* XXX: should give this boolean return type to indicate errors */
1272void regfi_interpret_keyname(REGFI_FILE* file, REGFI_NK* nk, 
1273                             REGFI_ENCODING output_encoding, bool strict)
1274{
1275  /* XXX: Registry key names are supposedly limited to 255 characters according to:
1276   *      http://msdn.microsoft.com/en-us/library/ms724872%28VS.85%29.aspx
1277   *      Might want to emit a warning if this is exceeded. 
1278   *      It is expected that "characters" could be variable width.
1279   *      Also, it may be useful to use this information to limit false positives
1280   *      when recovering deleted NK records.
1281   */
1282  int32_t tmp_size;
1283  REGFI_ENCODING from_encoding = (nk->flags & REGFI_NK_FLAG_ASCIINAME) 
1284    ? REGFI_ENCODING_ASCII : REGFI_ENCODING_UTF16LE;
1285 
1286  if(from_encoding == output_encoding)
1287  {
1288    nk->name_raw[nk->name_length] = '\0';
1289    nk->name = (char*)nk->name_raw;
1290  }
1291  else
1292  {
1293    nk->name = talloc_array(nk, char, nk->name_length+1);
1294    if(nk->name == NULL)
1295      return;
1296
1297    memset(nk->name,0,nk->name_length+1);
1298
1299    tmp_size = regfi_conv_charset(regfi_encoding_int2str(from_encoding),
1300                                  regfi_encoding_int2str(output_encoding),
1301                                  nk->name_raw, nk->name,
1302                                  nk->name_length, nk->name_length+1);
1303    if(tmp_size < 0)
1304    {
1305      regfi_log_add(REGFI_LOG_WARN, "Error occurred while converting"
1306                        " key name to encoding %s.  Error message: %s",
1307                        regfi_encoding_int2str(output_encoding), 
1308                        strerror(-tmp_size));
1309      talloc_free(nk->name);
1310      nk->name = NULL;
1311    }
1312  }
1313}
1314
1315
1316/******************************************************************************
1317 *
1318 ******************************************************************************/
1319REGFI_NK* regfi_load_key(REGFI_FILE* file, uint32_t offset,
1320                         REGFI_ENCODING output_encoding, bool strict)
1321{
1322  REGFI_NK* nk;
1323  uint32_t off;
1324  int32_t max_size;
1325
1326  max_size = regfi_calc_maxsize(file, offset);
1327  if (max_size < 0) 
1328    return NULL;
1329
1330  /* get the initial nk record */
1331  if((nk = regfi_parse_nk(file, offset, max_size, true)) == NULL)
1332  {
1333    regfi_log_add(REGFI_LOG_ERROR, "Could not load NK record at"
1334                  " offset 0x%.8X.", offset);
1335    return NULL;
1336  }
1337
1338  regfi_interpret_keyname(file, nk, output_encoding, strict);
1339
1340  /* get value list */
1341  if(nk->num_values && (nk->values_off!=REGFI_OFFSET_NONE)) 
1342  {
1343    off = nk->values_off + REGFI_REGF_SIZE;
1344    max_size = regfi_calc_maxsize(file, off);
1345    if(max_size < 0)
1346    {
1347      if(strict)
1348      {
1349        talloc_free(nk);
1350        return NULL;
1351      }
1352      else
1353        nk->values = NULL;
1354
1355    }
1356    else
1357    {
1358      nk->values = regfi_load_valuelist(file, off, nk->num_values, 
1359                                        max_size, true);
1360      if(nk->values == NULL)
1361      {
1362        regfi_log_add(REGFI_LOG_WARN, "Could not load value list"
1363                      " for NK record at offset 0x%.8X.", offset);
1364        if(strict)
1365        {
1366          talloc_free(nk);
1367          return NULL;
1368        }
1369      }
1370      talloc_steal(nk, nk->values);
1371    }
1372  }
1373
1374  /* now get subkey list */
1375  if(nk->num_subkeys && (nk->subkeys_off != REGFI_OFFSET_NONE)) 
1376  {
1377    off = nk->subkeys_off + REGFI_REGF_SIZE;
1378    max_size = regfi_calc_maxsize(file, off);
1379    if(max_size < 0) 
1380    {
1381      if(strict)
1382      {
1383        talloc_free(nk);
1384        return NULL;
1385      }
1386      else
1387        nk->subkeys = NULL;
1388    }
1389    else
1390    {
1391      nk->subkeys = regfi_load_subkeylist(file, off, nk->num_subkeys,
1392                                          max_size, true);
1393
1394      if(nk->subkeys == NULL)
1395      {
1396        regfi_log_add(REGFI_LOG_WARN, "Could not load subkey list"
1397                      " while parsing NK record at offset 0x%.8X.", offset);
1398        nk->num_subkeys = 0;
1399      }
1400      talloc_steal(nk, nk->subkeys);
1401    }
1402  }
1403
1404  return nk;
1405}
1406
1407
1408/******************************************************************************
1409 ******************************************************************************/
1410const REGFI_SK* regfi_load_sk(REGFI_FILE* file, uint32_t offset, bool strict)
1411{
1412  REGFI_SK* ret_val = NULL;
1413  int32_t max_size;
1414  void* failure_ptr = NULL;
1415 
1416  max_size = regfi_calc_maxsize(file, offset);
1417  if(max_size < 0)
1418    return NULL;
1419
1420  if(file->sk_cache == NULL)
1421    return regfi_parse_sk(file, offset, max_size, strict);
1422
1423  if(!regfi_lock(file, &file->sk_lock, "regfi_load_sk"))
1424    return NULL;
1425
1426  /* First look if we have already parsed it */
1427  ret_val = (REGFI_SK*)lru_cache_find(file->sk_cache, &offset, 4);
1428
1429  /* Bail out if we have previously cached a parse failure at this offset. */
1430  if(ret_val == (void*)REGFI_OFFSET_NONE)
1431    return NULL;
1432
1433  if(ret_val == NULL)
1434  {
1435    ret_val = regfi_parse_sk(file, offset, max_size, strict);
1436    if(ret_val == NULL)
1437    { /* Cache the parse failure and bail out. */
1438      failure_ptr = talloc(NULL, uint32_t);
1439      if(failure_ptr == NULL)
1440        return NULL;
1441      *(uint32_t*)failure_ptr = REGFI_OFFSET_NONE;
1442      lru_cache_update(file->sk_cache, &offset, 4, failure_ptr);
1443
1444      /* Let the cache be the only owner of this */
1445      talloc_unlink(NULL, failure_ptr);
1446      return NULL;
1447    }
1448  }
1449
1450  if(!regfi_unlock(file, &file->sk_lock, "regfi_load_sk"))
1451  {
1452    talloc_unlink(NULL, ret_val);
1453    return NULL;
1454  }
1455
1456  return ret_val;
1457}
1458
1459
1460
1461/******************************************************************************
1462 ******************************************************************************/
1463REGFI_NK* regfi_find_root_nk(REGFI_FILE* file, const REGFI_HBIN* hbin, 
1464                             REGFI_ENCODING output_encoding)
1465{
1466  REGFI_NK* nk = NULL;
1467  uint32_t cell_length;
1468  uint32_t cur_offset = hbin->file_off+REGFI_HBIN_HEADER_SIZE;
1469  uint32_t hbin_end = hbin->file_off+hbin->block_size;
1470  bool unalloc;
1471
1472  while(cur_offset < hbin_end)
1473  {
1474
1475    if(!regfi_lock(file, &file->cb_lock, "regfi_find_root_nk"))
1476      return NULL;
1477
1478    if(!regfi_parse_cell(file->cb, cur_offset, NULL, 0, &cell_length, &unalloc))
1479    {
1480      regfi_log_add(REGFI_LOG_WARN, "Could not parse cell at offset"
1481                    " 0x%.8X while searching for root key.", cur_offset);
1482      return NULL;
1483    }
1484
1485    if(!regfi_unlock(file, &file->cb_lock, "regfi_find_root_nk"))
1486      return NULL;
1487
1488    if(!unalloc)
1489    {
1490      nk = regfi_load_key(file, cur_offset, output_encoding, true);
1491      if(nk != NULL)
1492      {
1493        if(nk->flags & REGFI_NK_FLAG_ROOT)
1494          return nk;
1495      }
1496    }
1497
1498    cur_offset += cell_length;
1499  }
1500
1501  return NULL;
1502}
1503
1504
1505
1506/******************************************************************************
1507 ******************************************************************************/
1508REGFI_FILE* regfi_alloc(int fd, REGFI_ENCODING output_encoding)
1509{
1510  REGFI_FILE* ret_val;
1511  REGFI_RAW_FILE* file_cb = talloc(NULL, REGFI_RAW_FILE);
1512  if(file_cb == NULL) 
1513    return NULL;
1514
1515  file_cb->state = (void*)talloc(file_cb, int);
1516  if(file_cb->state == NULL)
1517    goto fail;
1518  *(int*)file_cb->state = fd;
1519 
1520  file_cb->cur_off = 0;
1521  file_cb->size = 0;
1522  file_cb->read = &regfi_raw_read;
1523  file_cb->seek = &regfi_raw_seek;
1524 
1525  ret_val = regfi_alloc_cb(file_cb, output_encoding);
1526  if(ret_val == NULL)
1527    goto fail;
1528
1529  /* In this case, we want file_cb to be freed when ret_val is */
1530  talloc_steal(ret_val, file_cb);
1531  return ret_val;
1532
1533 fail:
1534    talloc_free(file_cb);
1535    return NULL;
1536}
1537
1538
1539/******************************************************************************
1540 ******************************************************************************/
1541int regfi_free_cb(void* f)
1542{
1543  REGFI_FILE* file = (REGFI_FILE*)f;
1544
1545  pthread_mutex_destroy(&file->cb_lock);
1546  pthread_rwlock_destroy(&file->hbins_lock);
1547  pthread_mutex_destroy(&file->sk_lock);
1548
1549  return 0;
1550}
1551
1552
1553/******************************************************************************
1554 ******************************************************************************/
1555REGFI_FILE* regfi_alloc_cb(REGFI_RAW_FILE* file_cb, 
1556                           REGFI_ENCODING output_encoding)
1557{
1558  REGFI_FILE* rb;
1559  REGFI_HBIN* hbin = NULL;
1560  uint32_t hbin_off, cache_secret;
1561  int32_t file_length;
1562  bool rla;
1563
1564  /* Determine file length.  Must be at least big enough for the header
1565   * and one hbin.
1566   */
1567  file_length = file_cb->seek(file_cb, 0, SEEK_END);
1568  if(file_length < REGFI_REGF_SIZE+REGFI_HBIN_ALLOC)
1569  {
1570    regfi_log_add(REGFI_LOG_ERROR, "File length (%d) too short to contain a"
1571                  " header and at least one HBIN.", file_length);
1572    return NULL;
1573  }
1574  file_cb->seek(file_cb, 0, SEEK_SET);
1575
1576  if(output_encoding != REGFI_ENCODING_UTF8
1577     && output_encoding != REGFI_ENCODING_ASCII)
1578  { 
1579    regfi_log_add(REGFI_LOG_ERROR, "Invalid output_encoding supplied"
1580                  " in creation of regfi iterator.");
1581    return NULL;
1582  }
1583
1584  /* Read file header */
1585  if ((rb = regfi_parse_regf(file_cb, false)) == NULL)
1586  {
1587    regfi_log_add(REGFI_LOG_ERROR, "Failed to read REGF block.");
1588    return NULL;
1589  }
1590  rb->file_length = file_length;
1591  rb->cb = file_cb;
1592  rb->string_encoding = output_encoding;
1593
1594  if(pthread_mutex_init(&rb->cb_lock, NULL) != 0)
1595  {
1596    regfi_log_add(REGFI_LOG_ERROR, "Failed to create cb_lock mutex.");
1597    goto fail;
1598  }
1599
1600  if(pthread_rwlock_init(&rb->hbins_lock, NULL) != 0)
1601  {
1602    regfi_log_add(REGFI_LOG_ERROR, "Failed to create hbins_lock rwlock.");
1603    goto fail;
1604  }
1605
1606  if(pthread_mutex_init(&rb->sk_lock, NULL) != 0)
1607  {
1608    regfi_log_add(REGFI_LOG_ERROR, "Failed to create sk_lock mutex.");
1609    goto fail;
1610  }
1611
1612  rb->hbins = range_list_new();
1613  if(rb->hbins == NULL)
1614  {
1615    regfi_log_add(REGFI_LOG_ERROR, "Failed to create HBIN range_list.");
1616    goto fail;
1617  }
1618  talloc_steal(rb, rb->hbins);
1619
1620  rla = true;
1621  hbin_off = REGFI_REGF_SIZE;
1622  hbin = regfi_parse_hbin(rb, hbin_off, true);
1623  while(hbin && rla)
1624  {
1625    rla = range_list_add(rb->hbins, hbin->file_off, hbin->block_size, hbin);
1626    if(rla)
1627      talloc_steal(rb->hbins, hbin);
1628
1629    hbin_off = hbin->file_off + hbin->block_size;
1630    hbin = regfi_parse_hbin(rb, hbin_off, true);
1631  }
1632
1633  /* This secret isn't very secret, but we don't need a good one.  This
1634   * secret is just designed to prevent someone from trying to blow our
1635   * caching and make things slow.
1636   */
1637  cache_secret = 0x15DEAD05^time(NULL)^(getpid()<<16);
1638
1639  if(REGFI_CACHE_SK)
1640    rb->sk_cache = lru_cache_create_ctx(rb, 64, cache_secret, true);
1641  else
1642    rb->sk_cache = NULL;
1643
1644  /* success */
1645  talloc_set_destructor(rb, regfi_free_cb);
1646  return rb;
1647
1648 fail:
1649  pthread_mutex_destroy(&rb->cb_lock);
1650  pthread_rwlock_destroy(&rb->hbins_lock);
1651  pthread_mutex_destroy(&rb->sk_lock);
1652
1653  range_list_free(rb->hbins);
1654  talloc_free(rb);
1655  return NULL;
1656}
1657
1658
1659/******************************************************************************
1660 ******************************************************************************/
1661void regfi_free(REGFI_FILE* file)
1662{
1663  /* Callback handles cleanup side effects */
1664  talloc_free(file);
1665}
1666
1667
1668/******************************************************************************
1669 * First checks the offset given by the file header, then checks the
1670 * rest of the file if that fails.
1671 ******************************************************************************/
1672REGFI_NK* regfi_rootkey(REGFI_FILE* file)
1673{
1674  REGFI_NK* nk = NULL;
1675  REGFI_HBIN* hbin;
1676  uint32_t root_offset, i, num_hbins;
1677 
1678  if(!file)
1679    return NULL;
1680
1681  root_offset = file->root_cell+REGFI_REGF_SIZE;
1682  nk = regfi_load_key(file, root_offset, file->string_encoding, true);
1683  if(nk != NULL)
1684  {
1685    if(nk->flags & REGFI_NK_FLAG_ROOT)
1686      return nk;
1687  }
1688
1689  regfi_log_add(REGFI_LOG_WARN, "File header indicated root key at"
1690                " location 0x%.8X, but no root key found."
1691                " Searching rest of file...", root_offset);
1692 
1693  /* If the file header gives bad info, scan through the file one HBIN
1694   * block at a time looking for an NK record with a root key type.
1695   */
1696 
1697  if(!regfi_read_lock(file, &file->hbins_lock, "regfi_rootkey"))
1698    return NULL;
1699
1700  num_hbins = range_list_size(file->hbins);
1701  for(i=0; i < num_hbins && nk == NULL; i++)
1702  {
1703    hbin = (REGFI_HBIN*)range_list_get(file->hbins, i)->data;
1704    nk = regfi_find_root_nk(file, hbin, file->string_encoding);
1705  }
1706
1707  if(!regfi_rw_unlock(file, &file->hbins_lock, "regfi_rootkey"))
1708    return NULL;
1709
1710  return nk;
1711}
1712
1713
1714/******************************************************************************
1715 *****************************************************************************/
1716void regfi_free_record(const void* record)
1717{
1718  talloc_unlink(NULL, (void*)record);
1719}
1720
1721
1722
1723/******************************************************************************
1724 *****************************************************************************/
1725REGFI_ITERATOR* regfi_iterator_new(REGFI_FILE* file)
1726{
1727  REGFI_NK* root;
1728  REGFI_ITERATOR* ret_val;
1729
1730  ret_val = talloc(NULL, REGFI_ITERATOR);
1731  if(ret_val == NULL)
1732    return NULL;
1733
1734  root = regfi_rootkey(file);
1735  if(root == NULL)
1736  {
1737    talloc_free(ret_val);
1738    return NULL;
1739  }
1740  ret_val->cur_key = root;
1741  talloc_reference(ret_val, root);
1742
1743  ret_val->key_positions = void_stack_new(REGFI_MAX_DEPTH);
1744  if(ret_val->key_positions == NULL)
1745  {
1746    talloc_free(ret_val);
1747    return NULL;
1748  }
1749  talloc_steal(ret_val, ret_val->key_positions);
1750
1751  ret_val->f = file;
1752  ret_val->cur_subkey = 0;
1753  ret_val->cur_value = 0;
1754   
1755  return ret_val;
1756}
1757
1758
1759/******************************************************************************
1760 *****************************************************************************/
1761void regfi_iterator_free(REGFI_ITERATOR* i)
1762{
1763  talloc_free(i);
1764}
1765
1766
1767
1768/******************************************************************************
1769 *****************************************************************************/
1770/* XXX: some way of indicating reason for failure should be added. */
1771bool regfi_iterator_down(REGFI_ITERATOR* i)
1772{
1773  REGFI_NK* subkey;
1774  REGFI_ITER_POSITION* pos;
1775
1776  pos = talloc(i->key_positions, REGFI_ITER_POSITION);
1777  if(pos == NULL)
1778    return false;
1779
1780  subkey = (REGFI_NK*)regfi_iterator_cur_subkey(i);
1781  if(subkey == NULL)
1782  {
1783    talloc_free(pos);
1784    return false;
1785  }
1786
1787  pos->nk = i->cur_key;
1788  pos->cur_subkey = i->cur_subkey;
1789  if(!void_stack_push(i->key_positions, pos))
1790  {
1791    talloc_free(pos);
1792    talloc_unlink(NULL, subkey);
1793    return false;
1794  }
1795  talloc_reference(i, subkey);
1796
1797  i->cur_key = subkey;
1798  i->cur_subkey = 0;
1799  i->cur_value = 0;
1800
1801  return true;
1802}
1803
1804
1805/******************************************************************************
1806 *****************************************************************************/
1807bool regfi_iterator_up(REGFI_ITERATOR* i)
1808{
1809  REGFI_ITER_POSITION* pos;
1810
1811  pos = (REGFI_ITER_POSITION*)void_stack_pop(i->key_positions);
1812  if(pos == NULL)
1813    return false;
1814
1815  talloc_unlink(i, i->cur_key);
1816  i->cur_key = pos->nk;
1817  i->cur_subkey = pos->cur_subkey;
1818  i->cur_value = 0;
1819  talloc_free(pos);
1820
1821  return true;
1822}
1823
1824
1825/******************************************************************************
1826 *****************************************************************************/
1827bool regfi_iterator_to_root(REGFI_ITERATOR* i)
1828{
1829  while(regfi_iterator_up(i))
1830    continue;
1831
1832  return true;
1833}
1834
1835
1836/******************************************************************************
1837 *****************************************************************************/
1838bool regfi_iterator_find_subkey(REGFI_ITERATOR* i, const char* subkey_name)
1839{
1840  REGFI_NK* subkey;
1841  bool found = false;
1842  uint32_t old_subkey = i->cur_subkey;
1843
1844  if(subkey_name == NULL)
1845    return false;
1846
1847  /* XXX: this alloc/free of each sub key might be a bit excessive */
1848  regfi_iterator_first_subkey(i);
1849  while((subkey = regfi_iterator_cur_subkey(i)) != NULL && (found == false))
1850  {
1851    if(subkey->name != NULL 
1852       && strcasecmp(subkey->name, subkey_name) == 0)
1853      found = true;
1854    else
1855    {
1856      talloc_unlink(NULL, subkey);
1857      regfi_iterator_next_subkey(i);
1858    }
1859  }
1860
1861  if(found == false)
1862  {
1863    i->cur_subkey = old_subkey;
1864    return false;
1865  }
1866
1867  talloc_unlink(NULL, subkey);
1868  return true;
1869}
1870
1871
1872/******************************************************************************
1873 *****************************************************************************/
1874bool regfi_iterator_walk_path(REGFI_ITERATOR* i, const char** path)
1875{
1876  uint32_t x;
1877  if(path == NULL)
1878    return false;
1879
1880  for(x=0; 
1881      ((path[x] != NULL) && regfi_iterator_find_subkey(i, path[x])
1882       && regfi_iterator_down(i));
1883      x++)
1884  { continue; }
1885
1886  if(path[x] == NULL)
1887    return true;
1888 
1889  /* XXX: is this the right number of times? */
1890  for(; x > 0; x--)
1891    regfi_iterator_up(i);
1892 
1893  return false;
1894}
1895
1896
1897/******************************************************************************
1898 *****************************************************************************/
1899const REGFI_NK* regfi_iterator_cur_key(REGFI_ITERATOR* i)
1900{
1901  /* XXX: do we need to add a NULL talloc reference here? */
1902  return i->cur_key;
1903}
1904
1905
1906/******************************************************************************
1907 *****************************************************************************/
1908const REGFI_SK* regfi_fetch_sk(REGFI_FILE* file, const REGFI_NK* key)
1909{
1910  if(key == NULL || key->sk_off == REGFI_OFFSET_NONE)
1911    return NULL;
1912
1913  return regfi_load_sk(file, key->sk_off + REGFI_REGF_SIZE, true);
1914}
1915
1916
1917/******************************************************************************
1918 *****************************************************************************/
1919bool regfi_iterator_first_subkey(REGFI_ITERATOR* i)
1920{
1921  i->cur_subkey = 0;
1922 
1923  return ((i->cur_key != NULL) && (i->cur_key->subkeys_off!=REGFI_OFFSET_NONE) 
1924          && (i->cur_subkey < i->cur_key->num_subkeys)); 
1925}
1926
1927
1928/******************************************************************************
1929 *****************************************************************************/
1930const REGFI_NK* regfi_iterator_cur_subkey(REGFI_ITERATOR* i)
1931{
1932  uint32_t nk_offset;
1933
1934  if((i->cur_key != NULL) && (i->cur_key->subkeys_off!=REGFI_OFFSET_NONE) 
1935     && (i->cur_subkey < i->cur_key->num_subkeys))
1936  {
1937    nk_offset = i->cur_key->subkeys->elements[i->cur_subkey].offset;
1938
1939    return regfi_load_key(i->f, nk_offset+REGFI_REGF_SIZE, 
1940                          i->f->string_encoding, true);
1941  }
1942
1943  return NULL;
1944}
1945
1946
1947/******************************************************************************
1948 *****************************************************************************/
1949bool regfi_iterator_next_subkey(REGFI_ITERATOR* i)
1950{
1951  i->cur_subkey++;
1952
1953  return ((i->cur_key != NULL) && (i->cur_key->subkeys_off!=REGFI_OFFSET_NONE) 
1954          && (i->cur_subkey < i->cur_key->num_subkeys)); 
1955}
1956
1957
1958/******************************************************************************
1959 *****************************************************************************/
1960bool regfi_iterator_find_value(REGFI_ITERATOR* i, const char* value_name)
1961{
1962  const REGFI_VK* cur;
1963  bool found = false;
1964  uint32_t old_value = i->cur_value;
1965
1966  /* XXX: cur->name can be NULL in the registry. 
1967   *      Should we allow for a way to search for that?
1968   */
1969  if(value_name == NULL)
1970    return false;
1971
1972  regfi_iterator_first_value(i);
1973  while((cur = regfi_iterator_cur_value(i)) != NULL && (found == false))
1974  {
1975    if((cur->name != NULL)
1976       && (strcasecmp(cur->name, value_name) == 0))
1977      found = true;
1978    else
1979    {
1980      regfi_free_record(cur);
1981      regfi_iterator_next_value(i);
1982    }
1983  }
1984 
1985  if(found == false)
1986  {
1987    i->cur_value = old_value;
1988    return false;
1989  }
1990
1991  regfi_free_record(cur);
1992  return true;
1993}
1994
1995
1996/******************************************************************************
1997 *****************************************************************************/
1998bool regfi_iterator_first_value(REGFI_ITERATOR* i)
1999{
2000  i->cur_value = 0;
2001  return (i->cur_key->values != NULL && i->cur_key->values->elements != NULL 
2002          && (i->cur_value < i->cur_key->values->num_values));
2003}
2004
2005
2006/******************************************************************************
2007 *****************************************************************************/
2008const REGFI_VK* regfi_iterator_cur_value(REGFI_ITERATOR* i)
2009{
2010  REGFI_VK* ret_val = NULL;
2011  uint32_t voffset;
2012
2013  if(i->cur_key->values != NULL && i->cur_key->values->elements != NULL 
2014     && (i->cur_value < i->cur_key->values->num_values))
2015  {
2016    voffset = i->cur_key->values->elements[i->cur_value];
2017    ret_val = regfi_load_value(i->f, voffset+REGFI_REGF_SIZE, 
2018                               i->f->string_encoding, true);
2019  }
2020
2021  return ret_val;
2022}
2023
2024
2025/******************************************************************************
2026 *****************************************************************************/
2027bool regfi_iterator_next_value(REGFI_ITERATOR* i)
2028{
2029  i->cur_value++;
2030  return (i->cur_key->values != NULL && i->cur_key->values->elements != NULL 
2031          && (i->cur_value < i->cur_key->values->num_values));
2032}
2033
2034
2035/******************************************************************************
2036 *****************************************************************************/
2037const REGFI_CLASSNAME* regfi_fetch_classname(REGFI_FILE* file,
2038                                             const REGFI_NK* key)
2039{
2040  REGFI_CLASSNAME* ret_val;
2041  uint8_t* raw;
2042  char* interpreted;
2043  uint32_t offset;
2044  int32_t conv_size, max_size;
2045  uint16_t parse_length;
2046
2047  if(key->classname_off == REGFI_OFFSET_NONE || key->classname_length == 0)
2048    return NULL;
2049
2050  offset = key->classname_off + REGFI_REGF_SIZE;
2051  max_size = regfi_calc_maxsize(file, offset);
2052  if(max_size <= 0)
2053    return NULL;
2054
2055  parse_length = key->classname_length;
2056  raw = regfi_parse_classname(file, offset, &parse_length, max_size, true);
2057 
2058  if(raw == NULL)
2059  {
2060    regfi_log_add(REGFI_LOG_WARN, "Could not parse class"
2061                  " name at offset 0x%.8X for key record at offset 0x%.8X.",
2062                  offset, key->offset);
2063    return NULL;
2064  }
2065
2066  ret_val = talloc(NULL, REGFI_CLASSNAME);
2067  if(ret_val == NULL)
2068    return NULL;
2069
2070  ret_val->offset = offset;
2071  ret_val->raw = raw;
2072  ret_val->size = parse_length;
2073  talloc_steal(ret_val, raw);
2074
2075  interpreted = talloc_array(NULL, char, parse_length);
2076
2077  conv_size = regfi_conv_charset(regfi_encoding_int2str(REGFI_ENCODING_UTF16LE),
2078                                 regfi_encoding_int2str(file->string_encoding),
2079                                 raw, interpreted,
2080                                 parse_length, parse_length);
2081  if(conv_size < 0)
2082  {
2083    regfi_log_add(REGFI_LOG_WARN, "Error occurred while"
2084                  " converting classname to charset %s.  Error message: %s",
2085                  file->string_encoding, strerror(-conv_size));
2086    talloc_free(interpreted);
2087    ret_val->interpreted = NULL;
2088  }
2089  else
2090  {
2091    interpreted = talloc_realloc(NULL, interpreted, char, conv_size);
2092    ret_val->interpreted = interpreted;
2093    talloc_steal(ret_val, interpreted);
2094  }
2095
2096  return ret_val;
2097}
2098
2099
2100/******************************************************************************
2101 *****************************************************************************/
2102const REGFI_DATA* regfi_fetch_data(REGFI_FILE* file, 
2103                                   const REGFI_VK* value)
2104{
2105  REGFI_DATA* ret_val = NULL;
2106  REGFI_BUFFER raw_data;
2107
2108  if(value->data_size != 0)
2109  {
2110    raw_data = regfi_load_data(file, value->data_off, value->data_size,
2111                              value->data_in_offset, true);
2112    if(raw_data.buf == NULL)
2113    {
2114      regfi_log_add(REGFI_LOG_WARN, "Could not parse data record"
2115                    " while parsing VK record at offset 0x%.8X.",
2116                    value->offset);
2117    }
2118    else
2119    {
2120      ret_val = regfi_buffer_to_data(raw_data);
2121
2122      if(ret_val == NULL)
2123      {
2124        regfi_log_add(REGFI_LOG_WARN, "Error occurred in converting"
2125                      " data buffer to data structure while interpreting "
2126                      "data for VK record at offset 0x%.8X.",
2127                      value->offset);
2128        talloc_free(raw_data.buf);
2129        return NULL;
2130      }
2131
2132      if(!regfi_interpret_data(file, file->string_encoding, 
2133                               value->type, ret_val))
2134      {
2135        regfi_log_add(REGFI_LOG_INFO, "Error occurred while"
2136                      " interpreting data for VK record at offset 0x%.8X.",
2137                      value->offset);
2138      }
2139    }
2140  }
2141 
2142  return ret_val;
2143}
2144
2145
2146/******************************************************************************
2147 *****************************************************************************/
2148REGFI_DATA* regfi_buffer_to_data(REGFI_BUFFER raw_data)
2149{
2150  REGFI_DATA* ret_val;
2151
2152  if(raw_data.buf == NULL)
2153    return NULL;
2154
2155  ret_val = talloc(NULL, REGFI_DATA);
2156  if(ret_val == NULL)
2157    return NULL;
2158 
2159  talloc_steal(ret_val, raw_data.buf);
2160  ret_val->raw = raw_data.buf;
2161  ret_val->size = raw_data.len;
2162  ret_val->interpreted_size = 0;
2163  ret_val->interpreted.qword = 0;
2164
2165  return ret_val;
2166}
2167
2168
2169/******************************************************************************
2170 *****************************************************************************/
2171bool regfi_interpret_data(REGFI_FILE* file, REGFI_ENCODING string_encoding,
2172                          uint32_t type, REGFI_DATA* data)
2173{
2174  uint8_t** tmp_array;
2175  uint8_t* tmp_str;
2176  int32_t tmp_size;
2177  uint32_t i, j, array_size;
2178
2179  if(data == NULL)
2180    return false;
2181
2182  switch (type)
2183  {
2184  case REG_SZ:
2185  case REG_EXPAND_SZ:
2186  /* REG_LINK is a symbolic link, stored as a unicode string. */
2187  case REG_LINK:
2188    tmp_str = talloc_array(NULL, uint8_t, data->size);
2189    if(tmp_str == NULL)
2190    {
2191      data->interpreted.string = NULL;
2192      data->interpreted_size = 0;
2193      return false;
2194    }
2195     
2196    tmp_size = regfi_conv_charset(regfi_encoding_int2str(REGFI_ENCODING_UTF16LE),
2197                                  regfi_encoding_int2str(string_encoding),
2198                                  data->raw, (char*)tmp_str, 
2199                                  data->size, data->size);
2200    if(tmp_size < 0)
2201    {
2202      regfi_log_add(REGFI_LOG_INFO, "Error occurred while"
2203                    " converting data of type %d to %d.  Error message: %s",
2204                    type, string_encoding, strerror(-tmp_size));
2205      talloc_free(tmp_str);
2206      data->interpreted.string = NULL;
2207      data->interpreted_size = 0;
2208      return false;
2209    }
2210
2211    tmp_str = talloc_realloc(NULL, tmp_str, uint8_t, tmp_size);
2212    data->interpreted.string = tmp_str;
2213    data->interpreted_size = tmp_size;
2214    talloc_steal(data, tmp_str);
2215    break;
2216
2217  case REG_DWORD:
2218    if(data->size < 4)
2219    {
2220      data->interpreted.dword = 0;
2221      data->interpreted_size = 0;
2222      return false;
2223    }
2224    data->interpreted.dword = IVAL(data->raw, 0);
2225    data->interpreted_size = 4;
2226    break;
2227
2228  case REG_DWORD_BE:
2229    if(data->size < 4)
2230    {
2231      data->interpreted.dword_be = 0;
2232      data->interpreted_size = 0;
2233      return false;
2234    }
2235    data->interpreted.dword_be = RIVAL(data->raw, 0);
2236    data->interpreted_size = 4;
2237    break;
2238
2239  case REG_QWORD:
2240    if(data->size < 8)
2241    {
2242      data->interpreted.qword = 0;
2243      data->interpreted_size = 0;
2244      return false;
2245    }
2246    data->interpreted.qword = 
2247      (uint64_t)IVAL(data->raw, 0) + (((uint64_t)IVAL(data->raw, 4))<<32);
2248    data->interpreted_size = 8;
2249    break;
2250   
2251  case REG_MULTI_SZ:
2252    tmp_str = talloc_array(NULL, uint8_t, data->size);
2253    if(tmp_str == NULL)
2254    {
2255      data->interpreted.multiple_string = NULL;
2256      data->interpreted_size = 0;
2257      return false;
2258    }
2259
2260    /* Attempt to convert entire string from UTF-16LE to output encoding,
2261     * then parse and quote fields individually.
2262     */
2263    tmp_size = regfi_conv_charset(regfi_encoding_int2str(REGFI_ENCODING_UTF16LE),
2264                                  regfi_encoding_int2str(string_encoding),
2265                                  data->raw, (char*)tmp_str,
2266                                  data->size, data->size);
2267    if(tmp_size < 0)
2268    {
2269      regfi_log_add(REGFI_LOG_INFO, "Error occurred while"
2270                    " converting data of type %d to %s.  Error message: %s",
2271                    type, string_encoding, strerror(-tmp_size));
2272      talloc_free(tmp_str);
2273      data->interpreted.multiple_string = NULL;
2274      data->interpreted_size = 0;
2275      return false;
2276    }
2277
2278    array_size = tmp_size+1;
2279    tmp_array = talloc_array(NULL, uint8_t*, array_size);
2280    if(tmp_array == NULL)
2281    {
2282      talloc_free(tmp_str);
2283      data->interpreted.string = NULL;
2284      data->interpreted_size = 0;
2285      return false;
2286    }
2287   
2288    tmp_array[0] = tmp_str;
2289    for(i=0,j=1; i < tmp_size && j < array_size-1; i++)
2290    {
2291      if(tmp_str[i] == '\0' && (i+1 < tmp_size))
2292        tmp_array[j++] = tmp_str+i+1;
2293    }
2294    tmp_array[j] = NULL;
2295    tmp_array = talloc_realloc(NULL, tmp_array, uint8_t*, j+1);
2296    data->interpreted.multiple_string = tmp_array;
2297    /* XXX: how meaningful is this?  should we store number of strings instead? */
2298    data->interpreted_size = tmp_size;
2299    talloc_steal(tmp_array, tmp_str);
2300    talloc_steal(data, tmp_array);
2301    break;
2302
2303  /* XXX: Dont know how to interpret these yet, just treat as binary */
2304  case REG_NONE:
2305    data->interpreted.none = data->raw;
2306    data->interpreted_size = data->size;
2307    break;
2308
2309  case REG_RESOURCE_LIST:
2310    data->interpreted.resource_list = data->raw;
2311    data->interpreted_size = data->size;
2312    break;
2313
2314  case REG_FULL_RESOURCE_DESCRIPTOR:
2315    data->interpreted.full_resource_descriptor = data->raw;
2316    data->interpreted_size = data->size;
2317    break;
2318
2319  case REG_RESOURCE_REQUIREMENTS_LIST:
2320    data->interpreted.resource_requirements_list = data->raw;
2321    data->interpreted_size = data->size;
2322    break;
2323
2324  case REG_BINARY:
2325    data->interpreted.binary = data->raw;
2326    data->interpreted_size = data->size;
2327    break;
2328
2329  default:
2330    data->interpreted.qword = 0;
2331    data->interpreted_size = 0;
2332    return false;
2333  }
2334
2335  data->type = type;
2336  return true;
2337}
2338
2339
2340/******************************************************************************
2341 * Convert from UTF-16LE to specified character set.
2342 * On error, returns a negative errno code.
2343 *****************************************************************************/
2344int32_t regfi_conv_charset(const char* input_charset, const char* output_charset,
2345                           uint8_t* input, char* output, 
2346                           uint32_t input_len, uint32_t output_max)
2347{
2348  iconv_t conv_desc;
2349  char* inbuf = (char*)input;
2350  char* outbuf = output;
2351  size_t in_len = (size_t)input_len;
2352  size_t out_len = (size_t)(output_max-1);
2353  int ret;
2354
2355  /* XXX: Consider creating a couple of conversion descriptors earlier,
2356   *      storing them on an iterator so they don't have to be recreated
2357   *      each time.
2358   */
2359
2360  /* Set up conversion descriptor. */
2361  conv_desc = iconv_open(output_charset, input_charset);
2362
2363  ret = iconv(conv_desc, &inbuf, &in_len, &outbuf, &out_len);
2364  if(ret == -1)
2365  {
2366    iconv_close(conv_desc);
2367    return -errno;
2368  }
2369  *outbuf = '\0';
2370
2371  iconv_close(conv_desc); 
2372  return output_max-out_len-1;
2373}
2374
2375
2376
2377/*******************************************************************
2378 * Computes the checksum of the registry file header.
2379 * buffer must be at least the size of a regf header (4096 bytes).
2380 *******************************************************************/
2381static uint32_t regfi_compute_header_checksum(uint8_t* buffer)
2382{
2383  uint32_t checksum, x;
2384  int i;
2385
2386  /* XOR of all bytes 0x0000 - 0x01FB */
2387
2388  checksum = x = 0;
2389 
2390  for ( i=0; i<0x01FB; i+=4 ) {
2391    x = IVAL(buffer, i );
2392    checksum ^= x;
2393  }
2394 
2395  return checksum;
2396}
2397
2398
2399/*******************************************************************
2400 *******************************************************************/
2401REGFI_FILE* regfi_parse_regf(REGFI_RAW_FILE* file_cb, bool strict)
2402{
2403  uint8_t file_header[REGFI_REGF_SIZE];
2404  uint32_t length;
2405  REGFI_FILE* ret_val;
2406
2407  ret_val = talloc(NULL, REGFI_FILE);
2408  if(ret_val == NULL)
2409    return NULL;
2410
2411  ret_val->sk_cache = NULL;
2412  ret_val->hbins = NULL;
2413
2414  length = REGFI_REGF_SIZE;
2415  if((regfi_read(file_cb, file_header, &length)) != 0 
2416     || length != REGFI_REGF_SIZE)
2417  {
2418    regfi_log_add(REGFI_LOG_WARN, "Read failed while parsing REGF structure.");
2419    goto fail;
2420  }
2421
2422  ret_val->checksum = IVAL(file_header, 0x1FC);
2423  ret_val->computed_checksum = regfi_compute_header_checksum(file_header);
2424  if (strict && (ret_val->checksum != ret_val->computed_checksum))
2425  {
2426    regfi_log_add(REGFI_LOG_WARN, "Stored header checksum (%.8X) did not equal"
2427                  " computed checksum (%.8X).",
2428                  ret_val->checksum, ret_val->computed_checksum);
2429    if(strict)
2430      goto fail;
2431  }
2432
2433  memcpy(ret_val->magic, file_header, REGFI_REGF_MAGIC_SIZE);
2434  if(memcmp(ret_val->magic, "regf", REGFI_REGF_MAGIC_SIZE) != 0)
2435  {
2436    regfi_log_add(REGFI_LOG_ERROR, "Magic number mismatch "
2437                  "(%.2X %.2X %.2X %.2X) while parsing hive header",
2438                  ret_val->magic[0], ret_val->magic[1], 
2439                  ret_val->magic[2], ret_val->magic[3]);
2440    goto fail;
2441  }
2442
2443  ret_val->sequence1 = IVAL(file_header, 0x4);
2444  ret_val->sequence2 = IVAL(file_header, 0x8);
2445  ret_val->mtime.low = IVAL(file_header, 0xC);
2446  ret_val->mtime.high = IVAL(file_header, 0x10);
2447  ret_val->major_version = IVAL(file_header, 0x14);
2448  ret_val->minor_version = IVAL(file_header, 0x18);
2449  ret_val->type = IVAL(file_header, 0x1C);
2450  ret_val->format = IVAL(file_header, 0x20);
2451  ret_val->root_cell = IVAL(file_header, 0x24);
2452  ret_val->last_block = IVAL(file_header, 0x28);
2453  ret_val->cluster = IVAL(file_header, 0x2C);
2454
2455  memcpy(ret_val->file_name, file_header+0x30,  REGFI_REGF_NAME_SIZE);
2456
2457  /* XXX: Should we add a warning if these uuid parsers fail?  Can they? */
2458  ret_val->rm_id = winsec_parse_uuid(ret_val, file_header+0x70, 16);
2459  ret_val->log_id = winsec_parse_uuid(ret_val, file_header+0x80, 16);
2460  ret_val->flags = IVAL(file_header, 0x90);
2461  ret_val->tm_id = winsec_parse_uuid(ret_val, file_header+0x94, 16);
2462  ret_val->guid_signature = IVAL(file_header, 0xa4);
2463
2464  memcpy(ret_val->reserved1, file_header+0xa8, REGFI_REGF_RESERVED1_SIZE);
2465  memcpy(ret_val->reserved2, file_header+0x200, REGFI_REGF_RESERVED2_SIZE);
2466
2467  ret_val->thaw_tm_id = winsec_parse_uuid(ret_val, file_header+0xFC8, 16);
2468  ret_val->thaw_rm_id = winsec_parse_uuid(ret_val, file_header+0xFD8, 16);
2469  ret_val->thaw_log_id = winsec_parse_uuid(ret_val, file_header+0xFE8, 16);
2470  ret_val->boot_type = IVAL(file_header, 0xFF8);
2471  ret_val->boot_recover = IVAL(file_header, 0xFFC);
2472
2473  return ret_val;
2474
2475 fail:
2476  talloc_free(ret_val);
2477  return NULL;
2478}
2479
2480
2481
2482/******************************************************************************
2483 * Given real file offset, read and parse the hbin at that location
2484 * along with it's associated cells.
2485 ******************************************************************************/
2486REGFI_HBIN* regfi_parse_hbin(REGFI_FILE* file, uint32_t offset, bool strict)
2487{
2488  REGFI_HBIN* hbin = NULL;
2489  uint8_t hbin_header[REGFI_HBIN_HEADER_SIZE];
2490  uint32_t length;
2491 
2492  if(offset >= file->file_length)
2493    goto fail;
2494 
2495  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_hbin"))
2496    goto fail;
2497
2498  if(regfi_seek(file->cb, offset, SEEK_SET) == -1)
2499  {
2500    regfi_log_add(REGFI_LOG_ERROR, "Seek failed"
2501                  " while parsing hbin at offset 0x%.8X.", offset);
2502    goto fail_locked;
2503  }
2504
2505  length = REGFI_HBIN_HEADER_SIZE;
2506  if((regfi_read(file->cb, hbin_header, &length) != 0) 
2507     || length != REGFI_HBIN_HEADER_SIZE)
2508  {
2509    regfi_log_add(REGFI_LOG_ERROR, "Read failed"
2510                  " while parsing hbin at offset 0x%.8X.", offset);
2511    goto fail_locked;
2512  }
2513
2514  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_hbin"))
2515    goto fail;
2516
2517  hbin = talloc(NULL, REGFI_HBIN);
2518  if(hbin == NULL)
2519    goto fail;
2520  hbin->file_off = offset;
2521
2522  memcpy(hbin->magic, hbin_header, 4);
2523  if(strict && (memcmp(hbin->magic, "hbin", 4) != 0))
2524  {
2525    /* This always seems to happen at the end of a file, so we make it an INFO
2526     * message, rather than something more serious.
2527     */
2528    regfi_log_add(REGFI_LOG_INFO, "Magic number mismatch "
2529                  "(%.2X %.2X %.2X %.2X) while parsing hbin at offset"
2530                  " 0x%.8X.", hbin->magic[0], hbin->magic[1], 
2531                  hbin->magic[2], hbin->magic[3], offset);
2532    goto fail;
2533  }
2534
2535  hbin->first_hbin_off = IVAL(hbin_header, 0x4);
2536  hbin->block_size = IVAL(hbin_header, 0x8);
2537  /* this should be the same thing as hbin->block_size, but just in case */
2538  hbin->next_block = IVAL(hbin_header, 0x1C);
2539
2540
2541  /* Ensure the block size is a multiple of 0x1000 and doesn't run off
2542   * the end of the file.
2543   */
2544  /* XXX: This may need to be relaxed for dealing with
2545   *      partial or corrupt files.
2546   */
2547  if((offset + hbin->block_size > file->file_length)
2548     || (hbin->block_size & 0xFFFFF000) != hbin->block_size)
2549  {
2550    regfi_log_add(REGFI_LOG_ERROR, "The hbin offset is not aligned"
2551                  " or runs off the end of the file"
2552                  " while parsing hbin at offset 0x%.8X.", offset);
2553    goto fail;
2554  }
2555
2556  return hbin;
2557
2558 fail_locked:
2559  regfi_unlock(file, &file->cb_lock, "regfi_parse_hbin");
2560 fail:
2561  talloc_free(hbin);
2562  return NULL;
2563}
2564
2565
2566/*******************************************************************
2567 *******************************************************************/
2568REGFI_NK* regfi_parse_nk(REGFI_FILE* file, uint32_t offset, 
2569                         uint32_t max_size, bool strict)
2570{
2571  uint8_t nk_header[REGFI_NK_MIN_LENGTH];
2572  REGFI_NK* ret_val;
2573  uint32_t length,cell_length;
2574  bool unalloc = false;
2575
2576  ret_val = talloc(NULL, REGFI_NK);
2577  if(ret_val == NULL)
2578  {
2579    regfi_log_add(REGFI_LOG_ERROR, "Failed to allocate memory while"
2580                  " parsing NK record at offset 0x%.8X.", offset);
2581    goto fail;
2582  }
2583
2584  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_nk"))
2585    goto fail;
2586
2587  if(!regfi_parse_cell(file->cb, offset, nk_header, REGFI_NK_MIN_LENGTH,
2588                       &cell_length, &unalloc))
2589  {
2590    regfi_log_add(REGFI_LOG_WARN, "Could not parse cell header"
2591                  " while parsing NK record at offset 0x%.8X.", offset);
2592    goto fail_locked;
2593  }
2594
2595  if((nk_header[0x0] != 'n') || (nk_header[0x1] != 'k'))
2596  {
2597    regfi_log_add(REGFI_LOG_WARN, "Magic number mismatch in parsing"
2598                  " NK record at offset 0x%.8X.", offset);
2599    goto fail_locked;
2600  }
2601
2602  ret_val->values = NULL;
2603  ret_val->subkeys = NULL;
2604  ret_val->offset = offset;
2605  ret_val->cell_size = cell_length;
2606
2607  if(ret_val->cell_size > max_size)
2608    ret_val->cell_size = max_size & 0xFFFFFFF8;
2609  if((ret_val->cell_size < REGFI_NK_MIN_LENGTH) 
2610     || (strict && (ret_val->cell_size & 0x00000007) != 0))
2611  {
2612    regfi_log_add(REGFI_LOG_WARN, "A length check failed while"
2613                  " parsing NK record at offset 0x%.8X.", offset);
2614    goto fail_locked;
2615  }
2616
2617  ret_val->magic[0] = nk_header[0x0];
2618  ret_val->magic[1] = nk_header[0x1];
2619  ret_val->flags = SVAL(nk_header, 0x2);
2620 
2621  if((ret_val->flags & ~REGFI_NK_KNOWN_FLAGS) != 0)
2622  {
2623    regfi_log_add(REGFI_LOG_WARN, "Unknown key flags (0x%.4X) while"
2624                  " parsing NK record at offset 0x%.8X.", 
2625                  (ret_val->flags & ~REGFI_NK_KNOWN_FLAGS), offset);
2626  }
2627
2628  ret_val->mtime.low = IVAL(nk_header, 0x4);
2629  ret_val->mtime.high = IVAL(nk_header, 0x8);
2630  /* If the key is unallocated and the MTIME is earlier than Jan 1, 1990
2631   * or later than Jan 1, 2290, we consider this a bad key.  This helps
2632   * weed out some false positives during deleted data recovery.
2633   */
2634  if(unalloc
2635     && (ret_val->mtime.high < REGFI_MTIME_MIN_HIGH
2636         || ret_val->mtime.high > REGFI_MTIME_MAX_HIGH))
2637  { goto fail_locked; }
2638
2639  ret_val->unknown1 = IVAL(nk_header, 0xC);
2640  ret_val->parent_off = IVAL(nk_header, 0x10);
2641  ret_val->num_subkeys = IVAL(nk_header, 0x14);
2642  ret_val->unknown2 = IVAL(nk_header, 0x18);
2643  ret_val->subkeys_off = IVAL(nk_header, 0x1C);
2644  ret_val->unknown3 = IVAL(nk_header, 0x20);
2645  ret_val->num_values = IVAL(nk_header, 0x24);
2646  ret_val->values_off = IVAL(nk_header, 0x28);
2647  ret_val->sk_off = IVAL(nk_header, 0x2C);
2648  ret_val->classname_off = IVAL(nk_header, 0x30);
2649
2650  ret_val->max_bytes_subkeyname = IVAL(nk_header, 0x34);
2651  ret_val->max_bytes_subkeyclassname = IVAL(nk_header, 0x38);
2652  ret_val->max_bytes_valuename = IVAL(nk_header, 0x3C);
2653  ret_val->max_bytes_value = IVAL(nk_header, 0x40);
2654  ret_val->unk_index = IVAL(nk_header, 0x44);
2655
2656  ret_val->name_length = SVAL(nk_header, 0x48);
2657  ret_val->classname_length = SVAL(nk_header, 0x4A);
2658  ret_val->name = NULL;
2659
2660  if(ret_val->name_length + REGFI_NK_MIN_LENGTH > ret_val->cell_size)
2661  {
2662    if(strict)
2663    {
2664      regfi_log_add(REGFI_LOG_ERROR, "Contents too large for cell"
2665                    " while parsing NK record at offset 0x%.8X.", offset);
2666      goto fail_locked;
2667    }
2668    else
2669      ret_val->name_length = ret_val->cell_size - REGFI_NK_MIN_LENGTH;
2670  }
2671  else if (unalloc)
2672  { /* Truncate cell_size if it's much larger than the apparent total record length. */
2673    /* Round up to the next multiple of 8 */
2674    length = (ret_val->name_length + REGFI_NK_MIN_LENGTH) & 0xFFFFFFF8;
2675    if(length < ret_val->name_length + REGFI_NK_MIN_LENGTH)
2676      length+=8;
2677
2678    /* If cell_size is still greater, truncate. */
2679    if(length < ret_val->cell_size)
2680      ret_val->cell_size = length;
2681  }
2682
2683  /* +1 to length in case we decided to use this directly as a string later */
2684  ret_val->name_raw = talloc_array(ret_val, uint8_t, ret_val->name_length+1);
2685  if(ret_val->name_raw == NULL)
2686    goto fail_locked;
2687
2688  /* Don't need to seek, should be at the right offset */
2689  length = ret_val->name_length;
2690  if((regfi_read(file->cb, (uint8_t*)ret_val->name_raw, &length) != 0)
2691     || length != ret_val->name_length)
2692  {
2693    regfi_log_add(REGFI_LOG_ERROR, "Failed to read key name"
2694                  " while parsing NK record at offset 0x%.8X.", offset);
2695    goto fail_locked;
2696  }
2697
2698  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_nk"))
2699    goto fail;
2700
2701  return ret_val;
2702
2703 fail_locked:
2704  regfi_unlock(file, &file->cb_lock, "regfi_parse_nk");
2705 fail:
2706  talloc_free(ret_val);
2707  return NULL;
2708}
2709
2710
2711uint8_t* regfi_parse_classname(REGFI_FILE* file, uint32_t offset, 
2712                               uint16_t* name_length, uint32_t max_size, bool strict)
2713{
2714  uint8_t* ret_val = NULL;
2715  uint32_t length;
2716  uint32_t cell_length;
2717  bool unalloc = false;
2718
2719  if(*name_length <= 0 || offset == REGFI_OFFSET_NONE 
2720     || (offset & 0x00000007) != 0)
2721  { goto fail; }
2722
2723  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_classname"))
2724    goto fail;
2725
2726  if(!regfi_parse_cell(file->cb, offset, NULL, 0, &cell_length, &unalloc))
2727  {
2728    regfi_log_add(REGFI_LOG_WARN, "Could not parse cell header"
2729                  " while parsing class name at offset 0x%.8X.", offset);
2730    goto fail_locked;
2731  }
2732 
2733  if((cell_length & 0x0000007) != 0)
2734  {
2735    regfi_log_add(REGFI_LOG_ERROR, "Cell length not a multiple of 8"
2736                  " while parsing class name at offset 0x%.8X.", offset);
2737    goto fail_locked;
2738  }
2739 
2740  if(cell_length > max_size)
2741  {
2742    regfi_log_add(REGFI_LOG_WARN, "Cell stretches past hbin "
2743                  "boundary while parsing class name at offset 0x%.8X.",
2744                  offset);
2745    if(strict)
2746      goto fail_locked;
2747    cell_length = max_size;
2748  }
2749 
2750  if((cell_length - 4) < *name_length)
2751  {
2752    regfi_log_add(REGFI_LOG_WARN, "Class name is larger than"
2753                  " cell_length while parsing class name at offset"
2754                  " 0x%.8X.", offset);
2755    if(strict)
2756      goto fail_locked;
2757    *name_length = cell_length - 4;
2758  }
2759 
2760  ret_val = talloc_array(NULL, uint8_t, *name_length);
2761  if(ret_val != NULL)
2762  {
2763    length = *name_length;
2764    if((regfi_read(file->cb, ret_val, &length) != 0)
2765       || length != *name_length)
2766    {
2767      regfi_log_add(REGFI_LOG_ERROR, "Could not read class name"
2768                    " while parsing class name at offset 0x%.8X.", offset);
2769      goto fail_locked;
2770    }
2771  }
2772
2773  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_classname"))
2774    goto fail;
2775
2776  return ret_val;
2777
2778 fail_locked:
2779  regfi_unlock(file, &file->cb_lock, "regfi_parse_classname");
2780 fail:
2781  talloc_free(ret_val);
2782  return NULL;
2783}
2784
2785
2786/******************************************************************************
2787*******************************************************************************/
2788REGFI_VK* regfi_parse_vk(REGFI_FILE* file, uint32_t offset, 
2789                             uint32_t max_size, bool strict)
2790{
2791  REGFI_VK* ret_val;
2792  uint8_t vk_header[REGFI_VK_MIN_LENGTH];
2793  uint32_t raw_data_size, length, cell_length;
2794  bool unalloc = false;
2795
2796  ret_val = talloc(NULL, REGFI_VK);
2797  if(ret_val == NULL)
2798    goto fail;
2799
2800  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_nk"))
2801    goto fail;
2802
2803  if(!regfi_parse_cell(file->cb, offset, vk_header, REGFI_VK_MIN_LENGTH,
2804                       &cell_length, &unalloc))
2805  {
2806    regfi_log_add(REGFI_LOG_WARN, "Could not parse cell header"
2807                  " while parsing VK record at offset 0x%.8X.", offset);
2808    goto fail_locked;
2809  }
2810
2811  ret_val->offset = offset;
2812  ret_val->cell_size = cell_length;
2813  ret_val->name = NULL;
2814  ret_val->name_raw = NULL;
2815 
2816  if(ret_val->cell_size > max_size)
2817    ret_val->cell_size = max_size & 0xFFFFFFF8;
2818  if((ret_val->cell_size < REGFI_VK_MIN_LENGTH) 
2819     || (ret_val->cell_size & 0x00000007) != 0)
2820  {
2821    regfi_log_add(REGFI_LOG_WARN, "Invalid cell size encountered"
2822                  " while parsing VK record at offset 0x%.8X.", offset);
2823    goto fail_locked;
2824  }
2825
2826  ret_val->magic[0] = vk_header[0x0];
2827  ret_val->magic[1] = vk_header[0x1];
2828  if((ret_val->magic[0] != 'v') || (ret_val->magic[1] != 'k'))
2829  {
2830    /* XXX: This does not account for deleted keys under Win2K which
2831     *      often have this (and the name length) overwritten with
2832     *      0xFFFF.
2833     */
2834    regfi_log_add(REGFI_LOG_WARN, "Magic number mismatch"
2835                  " while parsing VK record at offset 0x%.8X.", offset);
2836    goto fail_locked;
2837  }
2838
2839  ret_val->name_length = SVAL(vk_header, 0x2);
2840  raw_data_size = IVAL(vk_header, 0x4);
2841  ret_val->data_size = raw_data_size & ~REGFI_VK_DATA_IN_OFFSET;
2842  /* The data is typically stored in the offset if the size <= 4,
2843   * in which case this flag is set.
2844   */
2845  ret_val->data_in_offset = (bool)(raw_data_size & REGFI_VK_DATA_IN_OFFSET);
2846  ret_val->data_off = IVAL(vk_header, 0x8);
2847  ret_val->type = IVAL(vk_header, 0xC);
2848  ret_val->flags = SVAL(vk_header, 0x10);
2849  ret_val->unknown1 = SVAL(vk_header, 0x12);
2850
2851  if(ret_val->name_length > 0)
2852  {
2853    if(ret_val->name_length + REGFI_VK_MIN_LENGTH + 4 > ret_val->cell_size)
2854    {
2855      regfi_log_add(REGFI_LOG_WARN, "Name too long for remaining cell"
2856                    " space while parsing VK record at offset 0x%.8X.",
2857                    offset);
2858      if(strict)
2859        goto fail_locked;
2860      else
2861        ret_val->name_length = ret_val->cell_size - REGFI_VK_MIN_LENGTH - 4;
2862    }
2863
2864    /* Round up to the next multiple of 8 */
2865    cell_length = (ret_val->name_length + REGFI_VK_MIN_LENGTH + 4) & 0xFFFFFFF8;
2866    if(cell_length < ret_val->name_length + REGFI_VK_MIN_LENGTH + 4)
2867      cell_length+=8;
2868
2869    /* +1 to length in case we decided to use this directly as a string later */
2870    ret_val->name_raw = talloc_array(ret_val, uint8_t, ret_val->name_length+1);
2871    if(ret_val->name_raw == NULL)
2872      goto fail_locked;
2873
2874    length = ret_val->name_length;
2875    if((regfi_read(file->cb, (uint8_t*)ret_val->name_raw, &length) != 0)
2876       || length != ret_val->name_length)
2877    {
2878      regfi_log_add(REGFI_LOG_ERROR, "Could not read value name"
2879                    " while parsing VK record at offset 0x%.8X.", offset);
2880      goto fail_locked;
2881    }
2882  }
2883  else
2884    cell_length = REGFI_VK_MIN_LENGTH + 4;
2885
2886  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_nk"))
2887    goto fail;
2888
2889  if(unalloc)
2890  {
2891    /* If cell_size is still greater, truncate. */
2892    if(cell_length < ret_val->cell_size)
2893      ret_val->cell_size = cell_length;
2894  }
2895
2896  return ret_val;
2897 
2898 fail_locked:
2899  regfi_unlock(file, &file->cb_lock, "regfi_parse_vk");
2900 fail:
2901  talloc_free(ret_val);
2902  return NULL;
2903}
2904
2905
2906/******************************************************************************
2907 *
2908 ******************************************************************************/
2909REGFI_BUFFER regfi_load_data(REGFI_FILE* file, uint32_t voffset,
2910                             uint32_t length, bool data_in_offset,
2911                             bool strict)
2912{
2913  REGFI_BUFFER ret_val;
2914  uint32_t cell_length, offset;
2915  int32_t max_size;
2916  bool unalloc;
2917 
2918  /* Microsoft's documentation indicates that "available memory" is
2919   * the limit on value sizes for the more recent registry format version.
2920   * This is not only annoying, but it's probably also incorrect, since clearly
2921   * value data sizes are limited to 2^31 (high bit used as a flag) and even
2922   * with big data records, the apparent max size is:
2923   *   16344 * 2^16 = 1071104040 (~1GB).
2924   *
2925   * We choose to limit it to 1M which was the limit in older versions and
2926   * should rarely be exceeded unless the file is corrupt or malicious.
2927   * For more info, see:
2928   *   http://msdn.microsoft.com/en-us/library/ms724872%28VS.85%29.aspx
2929   */
2930  /* XXX: add way to skip this check at user discression. */
2931  if(length > REGFI_VK_MAX_DATA_LENGTH)
2932  {
2933    regfi_log_add(REGFI_LOG_WARN, "Value data size %d larger than "
2934                  "%d, truncating...", length, REGFI_VK_MAX_DATA_LENGTH);
2935    length = REGFI_VK_MAX_DATA_LENGTH;
2936  }
2937
2938  if(data_in_offset)
2939    return regfi_parse_little_data(file, voffset, length, strict);
2940  else
2941  {
2942    offset = voffset + REGFI_REGF_SIZE;
2943    max_size = regfi_calc_maxsize(file, offset);
2944    if(max_size < 0)
2945    {
2946      regfi_log_add(REGFI_LOG_WARN, "Could not find HBIN for data"
2947                    " at offset 0x%.8X.", offset);
2948      goto fail;
2949    }
2950   
2951    if(!regfi_lock(file, &file->cb_lock, "regfi_load_data"))
2952      goto fail;
2953
2954    if(!regfi_parse_cell(file->cb, offset, NULL, 0,
2955                         &cell_length, &unalloc))
2956    {
2957      regfi_log_add(REGFI_LOG_WARN, "Could not parse cell while"
2958                    " parsing data record at offset 0x%.8X.", offset);
2959      goto fail_locked;
2960    }
2961
2962    if(!regfi_unlock(file, &file->cb_lock, "regfi_load_data"))
2963      goto fail;
2964
2965    if((cell_length & 0x00000007) != 0)
2966    {
2967      regfi_log_add(REGFI_LOG_WARN, "Cell length not multiple of 8"
2968                    " while parsing data record at offset 0x%.8X.",
2969                    offset);
2970      goto fail;
2971    }
2972
2973    if(cell_length > max_size)
2974    {
2975      regfi_log_add(REGFI_LOG_WARN, "Cell extends past HBIN boundary"
2976                    " while parsing data record at offset 0x%.8X.",
2977                    offset);
2978      goto fail;
2979    }
2980
2981    if(cell_length - 4 < length)
2982    {
2983      /* XXX: All big data records thus far have been 16 bytes long. 
2984       *      Should we check for this precise size instead of just
2985       *      relying upon the above check?
2986       */
2987      if (file->major_version >= 1 && file->minor_version >= 5)
2988      {
2989        /* Attempt to parse a big data record */
2990        return regfi_load_big_data(file, offset, length, cell_length, 
2991                                   NULL, strict);
2992      }
2993      else
2994      {
2995        regfi_log_add(REGFI_LOG_WARN, "Data length (0x%.8X) larger than"
2996                      " remaining cell length (0x%.8X)"
2997                      " while parsing data record at offset 0x%.8X.", 
2998                      length, cell_length - 4, offset);
2999        if(strict)
3000          goto fail;
3001        else
3002          length = cell_length - 4;
3003      }
3004    }
3005
3006    ret_val = regfi_parse_data(file, offset, length, strict);
3007  }
3008
3009  return ret_val;
3010
3011 fail_locked:
3012  regfi_unlock(file, &file->cb_lock, "regfi_load_data");
3013 fail:
3014  ret_val.buf = NULL;
3015  ret_val.len = 0;
3016  return ret_val;
3017}
3018
3019
3020/******************************************************************************
3021 * Parses the common case data records stored in a single cell.
3022 ******************************************************************************/
3023REGFI_BUFFER regfi_parse_data(REGFI_FILE* file, uint32_t offset,
3024                              uint32_t length, bool strict)
3025{
3026  REGFI_BUFFER ret_val;
3027  uint32_t read_length;
3028
3029  ret_val.buf = NULL;
3030  ret_val.len = 0;
3031 
3032  if((ret_val.buf = talloc_array(NULL, uint8_t, length)) == NULL)
3033    goto fail;
3034  ret_val.len = length;
3035
3036  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_data"))
3037    goto fail;
3038
3039  if(regfi_seek(file->cb, offset+4, SEEK_SET) == -1)
3040  {
3041    regfi_log_add(REGFI_LOG_WARN, "Could not seek while "
3042                  "reading data at offset 0x%.8X.", offset);
3043    goto fail_locked;
3044  }
3045 
3046  read_length = length;
3047  if((regfi_read(file->cb, ret_val.buf, &read_length) != 0)
3048     || read_length != length)
3049  {
3050    regfi_log_add(REGFI_LOG_ERROR, "Could not read data block while"
3051                  " parsing data record at offset 0x%.8X.", offset);
3052    goto fail_locked;
3053  }
3054
3055  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_data"))
3056    goto fail;
3057
3058  return ret_val;
3059
3060 fail_locked:
3061  regfi_unlock(file, &file->cb_lock, "regfi_parse_data");
3062 fail:
3063  talloc_free(ret_val.buf);
3064  ret_val.buf = NULL;
3065  ret_val.buf = 0;
3066  return ret_val;
3067}
3068
3069
3070
3071/******************************************************************************
3072 *
3073 ******************************************************************************/
3074REGFI_BUFFER regfi_parse_little_data(REGFI_FILE* file, uint32_t voffset,
3075                                     uint32_t length, bool strict)
3076{
3077  uint8_t i;
3078  REGFI_BUFFER ret_val;
3079
3080  ret_val.buf = NULL;
3081  ret_val.len = 0;
3082
3083  if(length > 4)
3084  {
3085    regfi_log_add(REGFI_LOG_ERROR, "Data in offset but length > 4"
3086                  " while parsing data record. (voffset=0x%.8X, length=%d)",
3087                  voffset, length);
3088    return ret_val;
3089  }
3090
3091  if((ret_val.buf = talloc_array(NULL, uint8_t, length)) == NULL)
3092    return ret_val;
3093  ret_val.len = length;
3094 
3095  for(i = 0; i < length; i++)
3096    ret_val.buf[i] = (uint8_t)((voffset >> i*8) & 0xFF);
3097
3098  return ret_val;
3099}
3100
3101/******************************************************************************
3102*******************************************************************************/
3103REGFI_BUFFER regfi_parse_big_data_header(REGFI_FILE* file, uint32_t offset, 
3104                                         uint32_t max_size, bool strict)
3105{
3106  REGFI_BUFFER ret_val;
3107  uint32_t cell_length;
3108  bool unalloc;
3109
3110  /* XXX: do something with unalloc? */
3111  ret_val.buf = (uint8_t*)talloc_array(NULL, uint8_t, REGFI_BIG_DATA_MIN_LENGTH);
3112  if(ret_val.buf == NULL)
3113    goto fail;
3114
3115  if(REGFI_BIG_DATA_MIN_LENGTH > max_size)
3116  {
3117    regfi_log_add(REGFI_LOG_WARN, "Big data header exceeded max_size "
3118                  "while parsing big data header at offset 0x%.8X.",offset);
3119    goto fail;
3120  }
3121
3122  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_big_data_header"))
3123    goto fail;
3124
3125
3126  if(!regfi_parse_cell(file->cb, offset, ret_val.buf, REGFI_BIG_DATA_MIN_LENGTH,
3127                       &cell_length, &unalloc))
3128  {
3129    regfi_log_add(REGFI_LOG_WARN, "Could not parse cell while"
3130                  " parsing big data header at offset 0x%.8X.", offset);
3131    goto fail_locked;
3132  }
3133
3134  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_big_data_header"))
3135    goto fail;
3136
3137  if((ret_val.buf[0] != 'd') || (ret_val.buf[1] != 'b'))
3138  {
3139    regfi_log_add(REGFI_LOG_WARN, "Unknown magic number"
3140                  " (0x%.2X, 0x%.2X) encountered while parsing"
3141                  " big data header at offset 0x%.8X.", 
3142                  ret_val.buf[0], ret_val.buf[1], offset);
3143    goto fail;
3144  }
3145
3146  ret_val.len = REGFI_BIG_DATA_MIN_LENGTH;
3147  return ret_val;
3148
3149 fail_locked:
3150  regfi_unlock(file, &file->cb_lock, "regfi_parse_big_data_header");
3151 fail:
3152  talloc_free(ret_val.buf);
3153  ret_val.buf = NULL;
3154  ret_val.len = 0;
3155  return ret_val;
3156}
3157
3158
3159
3160/******************************************************************************
3161 *
3162 ******************************************************************************/
3163uint32_t* regfi_parse_big_data_indirect(REGFI_FILE* file, uint32_t offset,
3164                                      uint16_t num_chunks, bool strict)
3165{
3166  uint32_t* ret_val;
3167  uint32_t indirect_length;
3168  int32_t max_size;
3169  uint16_t i;
3170  bool unalloc;
3171
3172  /* XXX: do something with unalloc? */
3173
3174  max_size = regfi_calc_maxsize(file, offset);
3175  if((max_size < 0) || (num_chunks*sizeof(uint32_t) + 4 > max_size))
3176    return NULL;
3177
3178  ret_val = (uint32_t*)talloc_array(NULL, uint32_t, num_chunks);
3179  if(ret_val == NULL)
3180    goto fail;
3181
3182  if(!regfi_lock(file, &file->cb_lock, "regfi_parse_big_data_indirect"))
3183    goto fail;
3184
3185  if(!regfi_parse_cell(file->cb, offset, (uint8_t*)ret_val,
3186                       num_chunks*sizeof(uint32_t),
3187                       &indirect_length, &unalloc))
3188  {
3189    regfi_log_add(REGFI_LOG_WARN, "Could not parse cell while"
3190                  " parsing big data indirect record at offset 0x%.8X.", 
3191                  offset);
3192    goto fail_locked;
3193  }
3194
3195  if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_big_data_indirect"))
3196    goto fail;
3197
3198  /* Convert pointers to proper endianess, verify they are aligned. */
3199  for(i=0; i<num_chunks; i++)
3200  {
3201    ret_val[i] = IVAL(ret_val, i*sizeof(uint32_t));
3202    if((ret_val[i] & 0x00000007) != 0)
3203      goto fail;
3204  }
3205 
3206  return ret_val;
3207
3208 fail_locked:
3209  regfi_unlock(file, &file->cb_lock, "regfi_parse_big_data_indirect");
3210 fail:
3211  talloc_free(ret_val);
3212  return NULL;
3213}
3214
3215
3216/******************************************************************************
3217 * Arguments:
3218 *  file       --
3219 *  offsets    -- list of virtual offsets.
3220 *  num_chunks --
3221 *  strict     --
3222 *
3223 * Returns:
3224 *  A range_list with physical offsets and complete lengths
3225 *  (including cell headers) of associated cells. 
3226 *  No data in range_list elements.
3227 ******************************************************************************/
3228range_list* regfi_parse_big_data_cells(REGFI_FILE* file, uint32_t* offsets,
3229                                       uint16_t num_chunks, bool strict)
3230{
3231  uint32_t cell_length, chunk_offset;
3232  range_list* ret_val;
3233  uint16_t i;
3234  bool unalloc;
3235 
3236  /* XXX: do something with unalloc? */
3237  ret_val = range_list_new();
3238  if(ret_val == NULL)
3239    goto fail;
3240 
3241  for(i=0; i<num_chunks; i++)
3242  {
3243    if(!regfi_lock(file, &file->cb_lock, "regfi_parse_big_data_cells"))
3244      goto fail;
3245
3246    chunk_offset = offsets[i]+REGFI_REGF_SIZE;
3247    if(!regfi_parse_cell(file->cb, chunk_offset, NULL, 0,
3248                         &cell_length, &unalloc))
3249    {
3250      regfi_log_add(REGFI_LOG_WARN, "Could not parse cell while"
3251                    " parsing big data chunk at offset 0x%.8X.", 
3252                    chunk_offset);
3253      goto fail_locked;
3254    }
3255
3256    if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_big_data_cells"))
3257      goto fail;
3258
3259    if(!range_list_add(ret_val, chunk_offset, cell_length, NULL))
3260      goto fail;
3261  }
3262
3263  return ret_val;
3264
3265 fail_locked:
3266  regfi_unlock(file, &file->cb_lock, "regfi_parse_big_data_cells");
3267 fail:
3268  if(ret_val != NULL)
3269    range_list_free(ret_val);
3270  return NULL;
3271}
3272
3273
3274/******************************************************************************
3275*******************************************************************************/
3276REGFI_BUFFER regfi_load_big_data(REGFI_FILE* file, 
3277                                 uint32_t offset, uint32_t data_length, 
3278                                 uint32_t cell_length, range_list* used_ranges,
3279                                 bool strict)
3280{
3281  REGFI_BUFFER ret_val;
3282  uint16_t num_chunks, i;
3283  uint32_t read_length, data_left, tmp_len, indirect_offset;
3284  uint32_t* indirect_ptrs = NULL;
3285  REGFI_BUFFER bd_header;
3286  range_list* bd_cells = NULL;
3287  const range_list_element* cell_info;
3288
3289  ret_val.buf = NULL;
3290
3291  /* XXX: Add better error/warning messages */
3292
3293  bd_header = regfi_parse_big_data_header(file, offset, cell_length, strict);
3294  if(bd_header.buf == NULL)
3295    goto fail;
3296
3297  /* Keep track of used space for use by reglookup-recover */
3298  if(used_ranges != NULL)
3299    if(!range_list_add(used_ranges, offset, cell_length, NULL))
3300      goto fail;
3301
3302  num_chunks = SVAL(bd_header.buf, 0x2);
3303  indirect_offset = IVAL(bd_header.buf, 0x4) + REGFI_REGF_SIZE;
3304  talloc_free(bd_header.buf);
3305
3306  indirect_ptrs = regfi_parse_big_data_indirect(file, indirect_offset,
3307                                                num_chunks, strict);
3308  if(indirect_ptrs == NULL)
3309    goto fail;
3310
3311  if(used_ranges != NULL)
3312    if(!range_list_add(used_ranges, indirect_offset, num_chunks*4+4, NULL))
3313      goto fail;
3314 
3315  if((ret_val.buf = talloc_array(NULL, uint8_t, data_length)) == NULL)
3316    goto fail;
3317  data_left = data_length;
3318
3319  bd_cells = regfi_parse_big_data_cells(file, indirect_ptrs, num_chunks, strict);
3320  if(bd_cells == NULL)
3321    goto fail;
3322
3323  talloc_free(indirect_ptrs);
3324  indirect_ptrs = NULL;
3325 
3326  for(i=0; (i<num_chunks) && (data_left>0); i++)
3327  {
3328    cell_info = range_list_get(bd_cells, i);
3329    if(cell_info == NULL)
3330      goto fail;
3331
3332    /* XXX: This should be "cell_info->length-4" to account for the 4 byte cell
3333     *      length.  However, it has been observed that some (all?) chunks
3334     *      have an additional 4 bytes of 0 at the end of their cells that
3335     *      isn't part of the data, so we're trimming that off too.
3336     *      Perhaps it's just an 8 byte alignment requirement...
3337     */
3338    if(cell_info->length - 8 >= data_left)
3339    {
3340      if(i+1 != num_chunks)
3341      {
3342        regfi_log_add(REGFI_LOG_WARN, "Left over chunks detected "
3343                      "while constructing big data at offset 0x%.8X "
3344                      "(chunk offset 0x%.8X).", offset, cell_info->offset);
3345      }
3346      read_length = data_left;
3347    }
3348    else
3349      read_length = cell_info->length - 8;
3350
3351
3352    if(read_length > regfi_calc_maxsize(file, cell_info->offset))
3353    {
3354      regfi_log_add(REGFI_LOG_WARN, "A chunk exceeded the maxsize "
3355                    "while constructing big data at offset 0x%.8X "
3356                    "(chunk offset 0x%.8X).", offset, cell_info->offset);
3357      goto fail;
3358    }
3359
3360    if(!regfi_lock(file, &file->cb_lock, "regfi_load_big_data"))
3361      goto fail;
3362
3363    if(regfi_seek(file->cb, cell_info->offset+sizeof(uint32_t), SEEK_SET) == -1)
3364    {
3365      regfi_log_add(REGFI_LOG_WARN, "Could not seek to chunk while "
3366                    "constructing big data at offset 0x%.8X "
3367                    "(chunk offset 0x%.8X).", offset, cell_info->offset);
3368      goto fail_locked;
3369    }
3370
3371    tmp_len = read_length;
3372    if(regfi_read(file->cb, ret_val.buf+(data_length-data_left), 
3373                  &read_length) != 0 || (read_length != tmp_len))
3374    {
3375      regfi_log_add(REGFI_LOG_WARN, "Could not read data chunk while"
3376                    " constructing big data at offset 0x%.8X"
3377                    " (chunk offset 0x%.8X).", offset, cell_info->offset);
3378      goto fail_locked;
3379    }
3380
3381    if(!regfi_unlock(file, &file->cb_lock, "regfi_load_big_data"))
3382      goto fail;
3383
3384    if(used_ranges != NULL)
3385      if(!range_list_add(used_ranges, cell_info->offset,cell_info->length,NULL))
3386        goto fail;
3387
3388    data_left -= read_length;
3389  }
3390  range_list_free(bd_cells);
3391
3392  ret_val.len = data_length-data_left;
3393  return ret_val;
3394
3395 fail_locked:
3396  regfi_unlock(file, &file->cb_lock, "regfi_load_big_data");
3397 fail:
3398  talloc_free(ret_val.buf);
3399  talloc_free(indirect_ptrs);
3400  if(bd_cells != NULL)
3401    range_list_free(bd_cells);
3402  ret_val.buf = NULL;
3403  ret_val.len = 0;
3404  return ret_val;
3405}
3406
3407
3408range_list* regfi_parse_unalloc_cells(REGFI_FILE* file)
3409{
3410  range_list* ret_val;
3411  REGFI_HBIN* hbin;
3412  const range_list_element* hbins_elem;
3413  uint32_t i, num_hbins, curr_off, cell_len;
3414  bool is_unalloc;
3415
3416  ret_val = range_list_new();
3417  if(ret_val == NULL)
3418    return NULL;
3419
3420  if(!regfi_read_lock(file, &file->hbins_lock, "regfi_parse_unalloc_cells"))
3421  {
3422    range_list_free(ret_val);
3423    return NULL;
3424  }
3425
3426  num_hbins = range_list_size(file->hbins);
3427  for(i=0; i<num_hbins; i++)
3428  {
3429    hbins_elem = range_list_get(file->hbins, i);
3430    if(hbins_elem == NULL)
3431      break;
3432    hbin = (REGFI_HBIN*)hbins_elem->data;
3433
3434    curr_off = REGFI_HBIN_HEADER_SIZE;
3435    while(curr_off < hbin->block_size)
3436    {
3437      if(!regfi_lock(file, &file->cb_lock, "regfi_parse_unalloc_cells"))
3438        break;
3439
3440      if(!regfi_parse_cell(file->cb, hbin->file_off+curr_off, NULL, 0,
3441                           &cell_len, &is_unalloc))
3442      {
3443        regfi_unlock(file, &file->cb_lock, "regfi_parse_unalloc_cells");
3444        break;
3445      }
3446
3447      if(!regfi_unlock(file, &file->cb_lock, "regfi_parse_unalloc_cells"))
3448        break;
3449
3450      if((cell_len == 0) || ((cell_len & 0x00000007) != 0))
3451      {
3452        regfi_log_add(REGFI_LOG_ERROR, "Bad cell length encountered"
3453                      " while parsing unallocated cells at offset 0x%.8X.",
3454                      hbin->file_off+curr_off);
3455        break;
3456      }
3457
3458      /* for some reason the record_size of the last record in
3459         an hbin block can extend past the end of the block
3460         even though the record fits within the remaining
3461         space....aaarrrgggghhhhhh */ 
3462      if(curr_off + cell_len >= hbin->block_size)
3463        cell_len = hbin->block_size - curr_off;
3464     
3465      if(is_unalloc)
3466        range_list_add(ret_val, hbin->file_off+curr_off, 
3467                       cell_len, NULL);
3468     
3469      curr_off = curr_off+cell_len;
3470    }
3471  }
3472
3473  if(!regfi_rw_unlock(file, &file->hbins_lock, "regfi_parse_unalloc_cells"))
3474  {
3475    range_list_free(ret_val);
3476    return NULL;
3477  }
3478
3479  return ret_val;
3480}
3481
3482
3483/* From lib/time.c */
3484
3485/****************************************************************************
3486 Put a 8 byte filetime from a time_t
3487 This takes real GMT as input and converts to kludge-GMT
3488****************************************************************************/
3489void regfi_unix2nt_time(REGFI_NTTIME *nt, time_t t)
3490{
3491  double d;
3492 
3493  if (t==0) 
3494  {
3495    nt->low = 0;
3496    nt->high = 0;
3497    return;
3498  }
3499 
3500  if (t == TIME_T_MAX) 
3501  {
3502    nt->low = 0xffffffff;
3503    nt->high = 0x7fffffff;
3504    return;
3505  }             
3506 
3507  if (t == -1) 
3508  {
3509    nt->low = 0xffffffff;
3510    nt->high = 0xffffffff;
3511    return;
3512  }             
3513 
3514  /* this converts GMT to kludge-GMT */
3515  /* XXX: This was removed due to difficult dependency requirements. 
3516   *      So far, times appear to be correct without this adjustment, but
3517   *      that may be proven wrong with adequate testing.
3518   */
3519  /* t -= TimeDiff(t) - get_serverzone(); */
3520 
3521  d = (double)(t);
3522  d += TIME_FIXUP_CONSTANT;
3523  d *= 1.0e7;
3524 
3525  nt->high = (uint32_t)(d * (1.0/(4.0*(double)(1<<30))));
3526  nt->low  = (uint32_t)(d - ((double)nt->high)*4.0*(double)(1<<30));
3527}
3528
3529
3530/****************************************************************************
3531 Interpret an 8 byte "filetime" structure to a time_t
3532 It's originally in "100ns units since jan 1st 1601"
3533
3534 An 8 byte value of 0xffffffffffffffff will be returned as (time_t)0.
3535
3536 It appears to be kludge-GMT (at least for file listings). This means
3537 its the GMT you get by taking a localtime and adding the
3538 serverzone. This is NOT the same as GMT in some cases. This routine
3539 converts this to real GMT.
3540****************************************************************************/
3541time_t regfi_nt2unix_time(const REGFI_NTTIME* nt)
3542{
3543  double d;
3544  time_t ret;
3545  /* The next two lines are a fix needed for the
3546     broken SCO compiler. JRA. */
3547  time_t l_time_min = TIME_T_MIN;
3548  time_t l_time_max = TIME_T_MAX;
3549 
3550  if (nt->high == 0 || (nt->high == 0xffffffff && nt->low == 0xffffffff))
3551    return(0);
3552 
3553  d = ((double)nt->high)*4.0*(double)(1<<30);
3554  d += (nt->low&0xFFF00000);
3555  d *= 1.0e-7;
3556 
3557  /* now adjust by 369 years to make the secs since 1970 */
3558  d -= TIME_FIXUP_CONSTANT;
3559 
3560  if (d <= l_time_min)
3561    return (l_time_min);
3562 
3563  if (d >= l_time_max)
3564    return (l_time_max);
3565 
3566  ret = (time_t)(d+0.5);
3567 
3568  /* this takes us from kludge-GMT to real GMT */
3569  /* XXX: This was removed due to difficult dependency requirements. 
3570   *      So far, times appear to be correct without this adjustment, but
3571   *      that may be proven wrong with adequate testing.
3572   */
3573  /*
3574    ret -= get_serverzone();
3575    ret += LocTimeDiff(ret);
3576  */
3577
3578  return(ret);
3579}
3580
3581/* End of stuff from lib/time.c */
Note: See TracBrowser for help on using the repository browser.