source: trunk/src/reglookup-recover.c @ 118

Last change on this file since 118 was 118, checked in by tim, 16 years ago

improved security record extraction
other minor cleanups

  • Property svn:keywords set to Id
File size: 24.6 KB
Line 
1/*
2 * Copyright (C) 2008 Timothy D. Morgan
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
16 *
17 * $Id: reglookup-recover.c 118 2008-08-03 23:26:16Z tim $
18 */
19
20#include <stdio.h>
21#include <stdlib.h>
22#include <sysexits.h>
23
24#include "../include/regfi.h"
25#include "../include/range_list.h"
26#include "../include/lru_cache.h"
27
28
29/* Globals, influenced by command line parameters */
30bool print_verbose = false;
31bool print_security = false;
32bool print_header = true;
33bool print_leftover = false;
34bool print_parsedraw = false;
35char* registry_file = NULL;
36
37
38#include "common.c"
39
40/* Output format:
41 *   real_offset,min_length,record_type,parent_path,name,data_type,mtime,num_values,value,data_length,raw_data
42 */
43
44void regfi_print_nk(REGF_NK_REC* nk)
45{
46  printf("Found key at offset 0x%.8X:\n", nk->offset);
47  printf("  keyname: \"%s\"\n", nk->keyname);
48  printf("  parent_off (virtual): 0x%.8X\n", nk->parent_off);
49  printf("  cell_size: %d\n", nk->cell_size);
50  printf("  key_type: 0x%.4X\n", nk->key_type);
51  printf("  magic: %c%c\n", nk->magic[0], nk->magic[1]);
52  printf("  mtime: 0x%.8X 0x%.8X\n", nk->mtime.low, nk->mtime.high);
53  printf("  name_length: %d\n", nk->name_length);
54  printf("  classname_length: %d\n", nk->classname_length);
55  printf("  classname_off (virtual): 0x%.8X\n", nk->classname_off);
56  printf("  max_bytes_subkeyname: %d\n", nk->max_bytes_subkeyname);
57  printf("  max_bytes_subkeyclassname: %d\n", nk->max_bytes_subkeyclassname);
58  printf("  max_bytes_valuename: %d\n", nk->max_bytes_valuename);
59  printf("  max_bytes_value: %d\n", nk->max_bytes_value);
60  printf("  unknown1: 0x%.8X\n", nk->unknown1);
61  printf("  unknown2: 0x%.8X\n", nk->unknown2);
62  printf("  unknown3: 0x%.8X\n", nk->unknown3);
63  printf("  unk_index: 0x%.8X\n", nk->unk_index);
64  printf("  num_subkeys: %d\n", nk->num_subkeys);
65  printf("  subkeys_off (virtual): 0x%.8X\n", nk->subkeys_off);
66  printf("  num_values: %d\n", nk->num_values);
67  printf("  values_off (virtual): 0x%.8X\n", nk->values_off);
68  printf("  sk_off (virtual): 0x%.8X\n", nk->sk_off);
69  printf("\n");
70}
71
72
73char* getQuotedData(int fd, uint32 offset, uint32 length)
74{
75  uint8* buf;
76  char* quoted_buf;
77  uint32 len;
78
79  if((lseek(fd, offset, SEEK_SET)) == -1)
80    return NULL;
81
82  buf = (uint8*)malloc(length);
83  if(buf == NULL)
84    return NULL;
85
86  len = length;
87  if((regfi_read(fd, buf, &length) != 0) || length != len)
88  {
89    free(buf);
90    return NULL;
91  }
92
93  quoted_buf = quote_buffer(buf, length, common_special_chars);
94  free(buf);
95
96  return quoted_buf;
97}
98
99
100void printKey(REGF_FILE* f, REGF_NK_REC* nk, const char* prefix)
101{
102  char mtime[20];
103  time_t tmp_time[1];
104  struct tm* tmp_time_s = NULL;
105  char* quoted_name = NULL;
106  char* quoted_raw = "";
107
108  *tmp_time = nt_time_to_unix(&nk->mtime);
109  tmp_time_s = gmtime(tmp_time);
110  strftime(mtime, sizeof(mtime), "%Y-%m-%d %H:%M:%S", tmp_time_s);
111
112  quoted_name = quote_string(nk->keyname, key_special_chars);
113  if (quoted_name == NULL)
114  {
115    quoted_name = malloc(1*sizeof(char));
116    if(quoted_name == NULL)
117      bailOut(EX_OSERR, "ERROR: Could not allocate sufficient memory.\n");
118    quoted_name[0] = '\0';
119
120    fprintf(stderr, "WARNING: NULL key name in NK record at offset %.8X.\n",
121            nk->offset);
122  }
123
124  if(print_parsedraw)
125    quoted_raw = getQuotedData(f->fd, nk->offset, nk->cell_size);
126
127  printf("%.8X,%.8X,KEY,%s,%s,%s,%d,,,,,,,,%s\n", nk->offset, nk->cell_size,
128         prefix, quoted_name, mtime, nk->num_values, quoted_raw);
129 
130  if(print_parsedraw)
131    free(quoted_raw);
132}
133
134
135void printValue(REGF_FILE* f, const REGF_VK_REC* vk, const char* prefix)
136{
137  char* quoted_value = NULL;
138  char* quoted_name = NULL;
139  char* quoted_raw = "";
140  char* conv_error = NULL;
141  const char* str_type = NULL;
142  uint32 size = vk->data_size;
143
144  /* Microsoft's documentation indicates that "available memory" is
145   * the limit on value sizes.  Annoying.  We limit it to 1M which
146   * should rarely be exceeded, unless the file is corrupt or
147   * malicious. For more info, see:
148   *   http://msdn2.microsoft.com/en-us/library/ms724872.aspx
149   */
150  /* XXX: Should probably do something different here for this tool.
151   *      Also, It would be really nice if this message somehow included the
152   *      name of the current value we're having trouble with, since
153   *      stderr/stdout don't always sync nicely.
154   */
155  if(size > VK_MAX_DATA_LENGTH)
156  {
157    fprintf(stderr, "WARNING: value data size %d larger than "
158            "%d, truncating...\n", size, VK_MAX_DATA_LENGTH);
159    size = VK_MAX_DATA_LENGTH;
160  }
161 
162  quoted_name = quote_string(vk->valuename, key_special_chars);
163  if (quoted_name == NULL)
164  { /* Value names are NULL when we're looking at the "(default)" value.
165     * Currently we just return a 0-length string to try an eliminate
166     * ambiguity with a literal "(default)" value.  The data type of a line
167     * in the output allows one to differentiate between the parent key and
168     * this value.
169     */
170    quoted_name = malloc(1*sizeof(char));
171    if(quoted_name == NULL)
172      bailOut(EX_OSERR, "ERROR: Could not allocate sufficient memory.\n");
173    quoted_name[0] = '\0';
174  }
175
176  quoted_value = data_to_ascii(vk->data, size, vk->type, &conv_error);
177  if(quoted_value == NULL)
178  {
179    quoted_value = malloc(1*sizeof(char));
180    if(quoted_value == NULL)
181      bailOut(EX_OSERR, "ERROR: Could not allocate sufficient memory.\n");
182    quoted_value[0] = '\0';
183
184    if(conv_error == NULL)
185      fprintf(stderr, "WARNING: Could not quote value for '%s/%s'.  "
186              "Memory allocation failure likely.\n", prefix, quoted_name);
187    else if(print_verbose)
188      fprintf(stderr, "WARNING: Could not quote value for '%s/%s'.  "
189              "Returned error: %s\n", prefix, quoted_name, conv_error);
190  }
191  /* XXX: should these always be printed? */
192  else if(conv_error != NULL && print_verbose)
193    fprintf(stderr, "VERBOSE: While quoting value for '%s/%s', "
194            "warning returned: %s\n", prefix, quoted_name, conv_error);
195
196
197  if(print_parsedraw)
198    quoted_raw = getQuotedData(f->fd, vk->offset, vk->cell_size);
199
200  str_type = regfi_type_val2str(vk->type);
201  if(str_type == NULL)
202    printf("%.8X,%.8X,VALUE,%s,%s,,,0x%.8X,%s,%d,,,,,%s\n", 
203           vk->offset, vk->cell_size, prefix, quoted_name, 
204           vk->type, quoted_value, vk->data_size, quoted_raw);
205  else
206    printf("%.8X,%.8X,VALUE,%s,%s,,,%s,%s,%d,,,,,%s\n", 
207           vk->offset, vk->cell_size, prefix, quoted_name, 
208           str_type, quoted_value, vk->data_size, quoted_raw);
209
210  if(print_parsedraw)
211    free(quoted_raw);
212  if(quoted_value != NULL)
213    free(quoted_value);
214  if(quoted_name != NULL)
215    free(quoted_name);
216  if(conv_error != NULL)
217    free(conv_error);
218}
219
220
221void printSK(REGF_FILE* f, REGF_SK_REC* sk)
222{
223  char* quoted_raw = NULL;
224  char* empty_str = "";
225  char* owner = regfi_get_owner(sk->sec_desc);
226  char* group = regfi_get_group(sk->sec_desc);
227  char* sacl = regfi_get_sacl(sk->sec_desc);
228  char* dacl = regfi_get_dacl(sk->sec_desc);
229
230  if(print_parsedraw)
231    quoted_raw = getQuotedData(f->fd, sk->offset, sk->cell_size);
232
233  if(owner == NULL)
234    owner = empty_str;
235  if(group == NULL)
236    group = empty_str;
237  if(sacl == NULL)
238    sacl = empty_str;
239  if(dacl == NULL)
240    dacl = empty_str;
241
242  printf("%.8X,%.8X,SK,,,,,,,,%s,%s,%s,%s,%s\n", sk->offset, sk->cell_size,
243         owner, group, sacl, dacl, quoted_raw);
244 
245  if(owner != empty_str)
246    free(owner);
247  if(group != empty_str)
248    free(group);
249  if(sacl != empty_str)
250    free(sacl);
251  if(dacl != empty_str)
252    free(dacl);
253
254  if(print_parsedraw)
255    free(quoted_raw);
256}
257
258
259int printCell(REGF_FILE* f, uint32 offset)
260{
261  char* quoted_buf;
262  uint32 cell_length;
263  bool unalloc;
264
265  if(!regfi_parse_cell(f->fd, offset, NULL, 0, &cell_length, &unalloc))
266    return 1;
267
268  quoted_buf = getQuotedData(f->fd, offset, cell_length);
269  if(quoted_buf == NULL)
270    return 2;
271
272  printf("%.8X,%.8X,RAW,,,,,,,,,,,,%s\n", offset, cell_length, quoted_buf);
273
274  free(quoted_buf);
275  return 0;
276}
277
278
279/* This function returns a properly quoted parent path or partial parent
280 * path for a given key.  Returns NULL on error, "" if no path was available.
281 * Paths returned must be free()d.
282 */
283/* XXX: This is not terribly efficient, as it may reparse many keys
284 *      repeatedly.  Should try to add caching.  Also, piecing the path
285 *      together is slow and redundant.
286 */
287char* getParentPath(REGF_FILE* f, REGF_NK_REC* nk)
288{
289  void_stack* path_stack = void_stack_new(REGF_MAX_DEPTH);
290  REGF_HBIN* hbin;
291  REGF_NK_REC* cur_ancestor;
292  char* ret_val;
293  char* path_element;
294  char* tmp_str;
295  uint32 virt_offset, i, stack_size, ret_val_size, ret_val_left, element_size;
296  uint32 max_length;
297
298  /* The path_stack size limit should guarantee that we don't recurse forever. */
299  virt_offset = nk->parent_off;
300  while(virt_offset != REGF_OFFSET_NONE)
301  { 
302    hbin = regfi_lookup_hbin(f, virt_offset);
303    if(hbin == NULL)
304      virt_offset = REGF_OFFSET_NONE;
305    else
306    {
307      max_length = hbin->block_size + hbin->file_off
308        - (virt_offset+REGF_BLOCKSIZE);
309      cur_ancestor = regfi_parse_nk(f, virt_offset+REGF_BLOCKSIZE, 
310                                    max_length, true);
311      if(cur_ancestor == NULL)
312        virt_offset = REGF_OFFSET_NONE;
313      else
314      {
315        if(cur_ancestor->key_type == NK_TYPE_ROOTKEY)
316          virt_offset = REGF_OFFSET_NONE;
317        else
318          virt_offset = cur_ancestor->parent_off;
319       
320        path_element = quote_string(cur_ancestor->keyname, key_special_chars);
321        if(path_element == NULL || !void_stack_push(path_stack, path_element))
322        {
323          free(cur_ancestor->keyname);
324          free(cur_ancestor);
325          void_stack_free_deep(path_stack);
326          return NULL;
327        }
328
329        regfi_key_free(cur_ancestor);
330      }
331    }
332  }
333 
334  stack_size = void_stack_size(path_stack);
335  ret_val_size = 16*stack_size;
336  if(ret_val_size == 0)
337    ret_val_size = 1;
338  ret_val_left = ret_val_size;
339  ret_val = malloc(ret_val_size);
340  if(ret_val == NULL)
341  {
342    void_stack_free_deep(path_stack);
343    return NULL;
344  }
345  ret_val[0] = '\0';
346
347  for(i=0; i<stack_size; i++)
348  {
349    path_element = void_stack_pop(path_stack);
350    element_size = strlen(path_element);
351    if(ret_val_left < element_size+2)
352    {
353      ret_val_size += element_size+16;
354      ret_val_left += element_size+16;
355      tmp_str = (char*)realloc(ret_val, ret_val_size);
356      if(tmp_str == NULL)
357      {
358        free(ret_val);
359        void_stack_free_deep(path_stack);
360        return NULL;
361      }
362      ret_val = tmp_str;
363    }
364
365    ret_val_left -= snprintf(ret_val+ret_val_size-ret_val_left,ret_val_left, "/%s", path_element);
366    free(path_element);
367  }
368  void_stack_free(path_stack);
369
370  return ret_val;
371}
372
373
374static void usage(void)
375{
376  fprintf(stderr, "Usage: reglookup-recover [options] <REGISTRY_FILE>\n");
377  fprintf(stderr, "Version: %s\n", REGLOOKUP_VERSION);
378  fprintf(stderr, "Options:\n");
379  fprintf(stderr, "\t-v\t sets verbose mode.\n");
380  fprintf(stderr, "\t-h\t enables header row. (default)\n");
381  fprintf(stderr, "\t-H\t disables header row.\n");
382  fprintf(stderr, "\t-l\t enables leftover(raw) cell output.\n");
383  fprintf(stderr, "\t-L\t disables leftover(raw) cell output. (default)\n");
384  fprintf(stderr, "\t-r\t enables raw cell output for parsed cells.\n");
385  fprintf(stderr, "\t-R\t disables raw cell output for parsed cells. (default)\n");
386  fprintf(stderr, "\n");
387}
388
389
390bool removeRange(range_list* rl, uint32 offset, uint32 length)
391{
392  int32 rm_idx;
393  const range_list_element* cur_elem;
394
395  rm_idx = range_list_find(rl, offset);
396  if(rm_idx < 0)
397  {
398    fprintf(stderr, "DEBUG: removeRange: rm_idx < 0; (%d)\n", rm_idx);
399    return false;
400  }
401
402  cur_elem = range_list_get(rl, rm_idx);
403  if(cur_elem == NULL)
404  {
405    fprintf(stderr, "DEBUG: removeRange: cur_elem == NULL.  rm_idx=%d\n", rm_idx);
406    return false;
407  }
408
409  if(offset > cur_elem->offset)
410  {
411    if(!range_list_split_element(rl, rm_idx, offset))
412    {
413      fprintf(stderr, "DEBUG: removeRange: first split failed\n");
414      return false;
415    }
416    rm_idx++;
417    cur_elem = range_list_get(rl, rm_idx);
418    if(cur_elem == NULL)
419    {
420      fprintf(stderr, 
421              "DEBUG: removeRange: cur_elem == NULL after first split.  rm_idx=%d\n",
422              rm_idx);
423      return false;
424    }
425  }
426 
427  if(offset+length < cur_elem->offset+cur_elem->length)
428  {
429    if(!range_list_split_element(rl, rm_idx, offset+length))
430    {
431      fprintf(stderr, "DEBUG: removeRange: second split failed\n");
432      return false;
433    }
434  }
435 
436  if(!range_list_remove(rl, rm_idx))
437  {
438    fprintf(stderr, "DEBUG: removeRange: remove failed\n");
439    return false;
440  }
441
442  return true;
443}
444
445
446/* NOTE: unalloc_keys should be an empty range_list. */
447int extractKeys(REGF_FILE* f, 
448                range_list* unalloc_cells, 
449                range_list* unalloc_keys)
450{
451  const range_list_element* cur_elem;
452  REGF_NK_REC* key;
453  uint32 i, j;
454
455  for(i=0; i < range_list_size(unalloc_cells); i++)
456  {
457    cur_elem = range_list_get(unalloc_cells, i);
458    for(j=0; cur_elem->length > REGFI_NK_MIN_LENGTH
459          && j <= cur_elem->length-REGFI_NK_MIN_LENGTH; j+=8)
460    {
461      key = regfi_parse_nk(f, cur_elem->offset+j,
462                           cur_elem->length-j, false);
463      if(key != NULL)
464      {
465        if(!range_list_add(unalloc_keys, key->offset, 
466                           key->cell_size, key))
467        {
468          fprintf(stderr, "ERROR: Couldn't add key to unalloc_keys.\n");
469          return 20;
470        }
471        j+=key->cell_size-8;
472      }
473    }
474  }
475
476  for(i=0; i<range_list_size(unalloc_keys); i++)
477  {
478    cur_elem = range_list_get(unalloc_keys, i);
479    if(!removeRange(unalloc_cells, cur_elem->offset, cur_elem->length))
480      return 30;
481  }
482
483  return 0;
484}
485
486
487int extractValueLists(REGF_FILE* f,
488                      range_list* unalloc_cells,
489                      range_list* unalloc_keys)
490{
491  REGF_NK_REC* nk;
492  REGF_HBIN* hbin;
493  const range_list_element* cur_elem;
494  uint32 i, j, num_keys, off, values_length, max_length;
495
496  num_keys=range_list_size(unalloc_keys);
497  for(i=0; i<num_keys; i++)
498  {
499    cur_elem = range_list_get(unalloc_keys, i);
500    if(cur_elem == NULL)
501      return 10;
502    nk = cur_elem->data;
503
504    if(nk->num_values && (nk->values_off!=REGF_OFFSET_NONE))
505    {
506      hbin = regfi_lookup_hbin(f, nk->values_off);
507     
508      if(hbin != NULL)
509      {
510        off = nk->values_off + REGF_BLOCKSIZE;
511        max_length = hbin->block_size + hbin->file_off - off;
512        /* XXX: This is a hack.  We parse all value-lists, VK records,
513         *      and data records without regard for current allocation status. 
514         *      On the off chance that such a record correctly parsed but is
515         *      actually a reallocated structure used by something else, we
516         *      simply prune it after the fact.  Would be faster to check this
517         *      up front somehow.
518         */
519        nk->values = regfi_load_valuelist(f, off, nk->num_values, max_length,
520                                          false);
521        values_length = (nk->num_values+1)*sizeof(uint32);
522        if(values_length != (values_length & 0xFFFFFFF8))
523          values_length = (values_length & 0xFFFFFFF8) + 8;
524
525        if(nk->values != NULL)
526        {
527          if(!range_list_has_range(unalloc_cells, off, values_length))
528          { /* We've parsed a values-list which isn't in the unallocated list,
529             * so prune it.
530             */
531            for(j=0; j<nk->num_values; j++)
532            {
533              if(nk->values[j] != NULL)
534              {
535                if(nk->values[j]->data != NULL)
536                  free(nk->values[j]->data);
537                free(nk->values[j]);
538              }
539            }
540            free(nk->values);
541            nk->values = NULL;
542          }
543          else
544          { /* Values-list was recovered.  Remove from unalloc_cells and
545             * inspect values.
546             */
547            if(!removeRange(unalloc_cells, off, values_length))
548              return 20;
549
550            for(j=0; j < nk->num_values; j++)
551            {
552              if(nk->values[j] != NULL)
553              {
554                if(!range_list_has_range(unalloc_cells, nk->values[j]->offset, 
555                                         nk->values[j]->cell_size))
556                { /* We've parsed a value which isn't in the unallocated list,
557                   * so prune it.
558                   */
559                  if(nk->values[j]->data != NULL)
560                    free(nk->values[j]->data);
561                  free(nk->values[j]);
562                  nk->values[j] = NULL;
563                }
564                else
565                {
566                  /* A VK record was recovered.  Remove from unalloc_cells
567                   * and inspect data.
568                   */
569                  if(!removeRange(unalloc_cells, nk->values[j]->offset,
570                                  nk->values[j]->cell_size))
571                    return 21;
572
573                  /* Don't bother pruning or removing from unalloc_cells if
574                   * there is no data, or it is stored in the offset.
575                   */
576                  if(nk->values[j]->data != NULL && !nk->values[j]->data_in_offset)
577                  {
578                    off = nk->values[j]->data_off+REGF_BLOCKSIZE;
579                    if(!range_list_has_range(unalloc_cells, off, 
580                                             nk->values[j]->data_size))
581                    { /* We've parsed a data cell which isn't in the unallocated
582                       * list, so prune it.
583                       */
584                      free(nk->values[j]->data);
585                      nk->values[j]->data = NULL;
586                    }
587                    else
588                    { /*A data record was recovered. Remove from unalloc_cells.*/
589                      if(!removeRange(unalloc_cells, off, 
590                                      nk->values[j]->data_size))
591                        return 22;
592                    }
593                  }
594                }
595              }
596            }
597          }
598        }
599      }
600    }
601  }
602
603  return 0;
604}
605
606
607/* NOTE: unalloc_values should be an empty range_list. */
608int extractValues(REGF_FILE* f,
609                  range_list* unalloc_cells,
610                  range_list* unalloc_values)
611{
612  const range_list_element* cur_elem;
613  REGF_VK_REC* vk;
614  uint32 i, j, off;
615
616  for(i=0; i < range_list_size(unalloc_cells); i++)
617  {
618    cur_elem = range_list_get(unalloc_cells, i);
619    for(j=0; j <= cur_elem->length; j+=8)
620    {
621      vk = regfi_parse_vk(f, cur_elem->offset+j, 
622                           cur_elem->length-j, false);
623      if(vk != NULL)
624      {
625        if(!range_list_add(unalloc_values, vk->offset,
626                           vk->cell_size, vk))
627        {
628          fprintf(stderr, "ERROR: Couldn't add value to unalloc_values.\n");
629          return 20;
630        }
631        j+=vk->cell_size-8;
632      }
633    }
634  }
635 
636  /* Remove value ranges from the unalloc_cells before we continue. */
637  for(i=0; i<range_list_size(unalloc_values); i++)
638  {
639    cur_elem = range_list_get(unalloc_values, i);
640    if(!removeRange(unalloc_cells, cur_elem->offset, cur_elem->length))
641      return 30;
642  }
643
644  /* Now see if the data associated with each value is intact */
645  for(i=0; i<range_list_size(unalloc_values); i++)
646  {
647    cur_elem = range_list_get(unalloc_values, i);
648    vk = (REGF_VK_REC*)cur_elem->data;
649    if(vk == NULL)
650      return 40;
651
652    if(vk->data != NULL && !vk->data_in_offset)
653    {
654      off = vk->data_off+REGF_BLOCKSIZE;
655      if(!range_list_has_range(unalloc_cells, off, vk->data_size))
656      { /* We've parsed a data cell which isn't in the unallocated
657         * list, so prune it.
658         */
659        free(vk->data);
660        vk->data = NULL;
661      }
662      else
663      { /*A data record was recovered. Remove from unalloc_cells.*/
664        if(!removeRange(unalloc_cells, off, vk->data_size))
665          return 50;
666      }
667    }
668  }
669
670  return 0;
671}
672
673
674/* NOTE: unalloc_sks should be an empty range_list. */
675int extractSKs(REGF_FILE* f, 
676               range_list* unalloc_cells,
677               range_list* unalloc_sks)
678{
679  const range_list_element* cur_elem;
680  REGF_SK_REC* sk;
681  uint32 i, j;
682
683  for(i=0; i < range_list_size(unalloc_cells); i++)
684  {
685    cur_elem = range_list_get(unalloc_cells, i);
686    for(j=0; j <= cur_elem->length; j+=8)
687    {
688      sk = regfi_parse_sk(f, cur_elem->offset+j, 
689                          cur_elem->length-j, false);
690      if(sk != NULL)
691      {
692        if(!range_list_add(unalloc_sks, sk->offset,
693                           sk->cell_size, sk))
694        {
695          fprintf(stderr, "ERROR: Couldn't add sk to unalloc_sks.\n");
696          return 20;
697        }
698        j+=sk->cell_size-8;
699      }
700    }
701  }
702
703  for(i=0; i<range_list_size(unalloc_sks); i++)
704  {
705    cur_elem = range_list_get(unalloc_sks, i);
706    if(!removeRange(unalloc_cells, cur_elem->offset, cur_elem->length))
707      return 30;
708  }
709
710  return 0;
711}
712
713
714int main(int argc, char** argv)
715{ 
716  REGF_FILE* f;
717  const range_list_element* cur_elem;
718  range_list* unalloc_cells;
719  range_list* unalloc_keys;
720  range_list* unalloc_values;
721  range_list* unalloc_sks;
722  char** parent_paths;
723  char* tmp_name;
724  char* tmp_path;
725  REGF_NK_REC* tmp_key;
726  REGF_VK_REC* tmp_value;
727  uint32 argi, arge, i, j, ret, num_unalloc_keys;
728  /* uint32 test_offset;*/
729 
730  /* Process command line arguments */
731  if(argc < 2)
732  {
733    usage();
734    bailOut(EX_USAGE, "ERROR: Requires at least one argument.\n");
735  }
736 
737  arge = argc-1;
738  for(argi = 1; argi < arge; argi++)
739  {
740    if (strcmp("-v", argv[argi]) == 0)
741      print_verbose = true;
742    else if (strcmp("-h", argv[argi]) == 0)
743      print_header = true;
744    else if (strcmp("-H", argv[argi]) == 0)
745      print_header = false;
746    else if (strcmp("-l", argv[argi]) == 0)
747      print_leftover = true;
748    else if (strcmp("-L", argv[argi]) == 0)
749      print_leftover = false;
750    else if (strcmp("-r", argv[argi]) == 0)
751      print_parsedraw = true;
752    else if (strcmp("-R", argv[argi]) == 0)
753      print_parsedraw = false;
754    else
755    {
756      usage();
757      fprintf(stderr, "ERROR: Unrecognized option: %s\n", argv[argi]);
758      bailOut(EX_USAGE, "");
759    }
760  }
761  /*test_offset = strtol(argv[argi++], NULL, 16);*/
762
763  if((registry_file = strdup(argv[argi])) == NULL)
764    bailOut(EX_OSERR, "ERROR: Memory allocation problem.\n");
765
766  f = regfi_open(registry_file);
767  if(f == NULL)
768  {
769    fprintf(stderr, "ERROR: Couldn't open registry file: %s\n", registry_file);
770    bailOut(EX_NOINPUT, "");
771  }
772
773  if(print_header)
774    printf("OFFSET,REC_LENGTH,REC_TYPE,PATH,NAME,"
775           "NK_MTIME,NK_NVAL,VK_TYPE,VK_VALUE,VK_DATA_LEN,"
776           "SK_OWNER,SK_GROUP,SK_SACL,SK_DACL,RAW_CELL\n");
777
778  unalloc_cells = regfi_parse_unalloc_cells(f);
779  if(unalloc_cells == NULL)
780  {
781    fprintf(stderr, "ERROR: Could not obtain list of unallocated cells.\n");
782    return 1;
783  }
784
785  /*XXX
786  for(i=0,k=0; i < range_list_size(unalloc_cells); i++)
787  {
788    cur_elem = range_list_get(unalloc_cells, i);
789    k+=cur_elem->length;
790  }
791  printf("UNALLOC=%d\n", k);
792  printf("UNALLOC_CELL_COUNT=%d\n", range_list_size(unalloc_cells));
793  XXX*/
794
795  unalloc_keys = range_list_new();
796  if(unalloc_keys == NULL)
797    return 10;
798
799  unalloc_values = range_list_new();
800  if(unalloc_values == NULL)
801    return 10;
802
803  unalloc_sks = range_list_new();
804  if(unalloc_sks == NULL)
805    return 10;
806
807  ret = extractKeys(f, unalloc_cells, unalloc_keys);
808  if(ret != 0)
809  {
810    fprintf(stderr, "ERROR: extractKeys() failed with %d.\n", ret);
811    return ret;
812  }
813
814  ret = extractValueLists(f, unalloc_cells, unalloc_keys);
815  if(ret != 0)
816  {
817    fprintf(stderr, "ERROR: extractValueLists() failed with %d.\n", ret);
818    return ret;
819  }
820
821  /* Carve any orphan values and associated data */
822  ret = extractValues(f, unalloc_cells, unalloc_values);
823  if(ret != 0)
824  {
825    fprintf(stderr, "ERROR: extractValues() failed with %d.\n", ret);
826    return ret;
827  }
828
829  /* Carve any SK records */
830  ret = extractSKs(f, unalloc_cells, unalloc_sks);
831  if(ret != 0)
832  {
833    fprintf(stderr, "ERROR: extractSKs() failed with %d.\n", ret);
834    return ret;
835  }
836
837  /* Now that we're done carving, associate recovered keys with parents,
838   * if at all possible.
839   */
840  num_unalloc_keys = range_list_size(unalloc_keys);
841  parent_paths = (char**)malloc(sizeof(char*)*num_unalloc_keys);
842  if(parent_paths == NULL)
843    return 10;
844
845  for(i=0; i < num_unalloc_keys; i++)
846  {
847    cur_elem = range_list_get(unalloc_keys, i);
848    tmp_key = (REGF_NK_REC*)cur_elem->data;
849
850    if(tmp_key == NULL)
851      return 20;
852   
853    parent_paths[i] = getParentPath(f, tmp_key);
854    if(parent_paths[i] == NULL)
855      return 20;
856  }
857 
858  /* Now start the output */
859
860  for(i=0; i < num_unalloc_keys; i++)
861  {
862    cur_elem = range_list_get(unalloc_keys, i);
863    tmp_key = (REGF_NK_REC*)cur_elem->data;
864
865    printKey(f, tmp_key, parent_paths[i]);
866    if(tmp_key->num_values > 0 && tmp_key->values != NULL)
867    {
868      tmp_name = quote_string(tmp_key->keyname, key_special_chars);
869      tmp_path = (char*)malloc(strlen(parent_paths[i])+strlen(tmp_name)+2);
870      if(tmp_path == NULL)
871        return 10;
872      sprintf(tmp_path, "%s/%s", parent_paths[i], tmp_name);
873      for(j=0; j < tmp_key->num_values; j++)
874      {
875        tmp_value = tmp_key->values[j];
876        if(tmp_value != NULL)
877          printValue(f, tmp_value, tmp_path);
878      }
879      free(tmp_path);
880      free(tmp_name);
881      free(parent_paths[i]);
882    }
883  }
884  free(parent_paths);
885
886  /* Print out orphaned values */
887  for(i=0; i < range_list_size(unalloc_values); i++)
888  {
889    cur_elem = range_list_get(unalloc_values, i);
890    tmp_value = (REGF_VK_REC*)cur_elem->data; 
891
892    printValue(f, tmp_value, "");
893  }
894 
895  /*XXX
896  for(i=0,j=0; i < range_list_size(unalloc_cells); i++)
897  {
898    cur_elem = range_list_get(unalloc_cells, i);
899    j+=cur_elem->length;
900  }
901  printf("PARSED_UNALLOC=%d\n", k-j);
902  XXX*/
903
904  if(print_leftover)
905  {
906    for(i=0; i < range_list_size(unalloc_cells); i++)
907    {
908      cur_elem = range_list_get(unalloc_cells, i);
909      printCell(f, cur_elem->offset);
910    }
911  }
912
913  /*
914  printf("Analyzing test_offset...\n");
915  if((tmp_key = regfi_parse_nk(f, test_offset, 4096, false)) != NULL)
916    regfi_print_nk(tmp_key);
917  else
918    dump_cell(f->fd, test_offset);
919  */
920
921  return 0;
922}
Note: See TracBrowser for help on using the repository browser.