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

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

added path resolution to reglookup-recover

File size: 22.7 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: $
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  /* TODO: should probably do something different here for this tool.*/
151  if(size > VK_MAX_DATA_LENGTH)
152  {
153    fprintf(stderr, "WARNING: value data size %d larger than "
154            "%d, truncating...\n", size, VK_MAX_DATA_LENGTH);
155    size = VK_MAX_DATA_LENGTH;
156  }
157 
158  quoted_name = quote_string(vk->valuename, key_special_chars);
159  if (quoted_name == NULL)
160  { /* Value names are NULL when we're looking at the "(default)" value.
161     * Currently we just return a 0-length string to try an eliminate
162     * ambiguity with a literal "(default)" value.  The data type of a line
163     * in the output allows one to differentiate between the parent key and
164     * this value.
165     */
166    quoted_name = malloc(1*sizeof(char));
167    if(quoted_name == NULL)
168      bailOut(EX_OSERR, "ERROR: Could not allocate sufficient memory.\n");
169    quoted_name[0] = '\0';
170  }
171
172  quoted_value = data_to_ascii(vk->data, size, vk->type, &conv_error);
173  if(quoted_value == NULL)
174  {
175    quoted_value = malloc(1*sizeof(char));
176    if(quoted_value == NULL)
177      bailOut(EX_OSERR, "ERROR: Could not allocate sufficient memory.\n");
178    quoted_value[0] = '\0';
179
180    if(conv_error == NULL)
181      fprintf(stderr, "WARNING: Could not quote value for '%s/%s'.  "
182              "Memory allocation failure likely.\n", prefix, quoted_name);
183    else if(print_verbose)
184      fprintf(stderr, "WARNING: Could not quote value for '%s/%s'.  "
185              "Returned error: %s\n", prefix, quoted_name, conv_error);
186  }
187  /* XXX: should these always be printed? */
188  else if(conv_error != NULL && print_verbose)
189    fprintf(stderr, "VERBOSE: While quoting value for '%s/%s', "
190            "warning returned: %s\n", prefix, quoted_name, conv_error);
191
192
193  if(print_parsedraw)
194    quoted_raw = getQuotedData(f->fd, vk->offset, vk->cell_size);
195
196  str_type = regfi_type_val2str(vk->type);
197  if(str_type == NULL)
198    printf("%.8X,%.8X,VALUE,%s,%s,,,0x%.8X,%s,%d,,,,,%s\n", 
199           vk->offset, vk->cell_size, prefix, quoted_name, 
200           vk->type, quoted_value, vk->data_size, quoted_raw);
201  else
202    printf("%.8X,%.8X,VALUE,%s,%s,,,%s,%s,%d,,,,,%s\n", 
203           vk->offset, vk->cell_size, prefix, quoted_name, 
204           str_type, quoted_value, vk->data_size, quoted_raw);
205
206  if(print_parsedraw)
207    free(quoted_raw);
208  if(quoted_value != NULL)
209    free(quoted_value);
210  if(quoted_name != NULL)
211    free(quoted_name);
212  if(conv_error != NULL)
213    free(conv_error);
214}
215
216
217void printSK(REGF_FILE* f, REGF_SK_REC* sk)
218{
219  char* quoted_raw = NULL;
220  char* empty_str = "";
221  char* owner = regfi_get_owner(sk->sec_desc);
222  char* group = regfi_get_group(sk->sec_desc);
223  char* sacl = regfi_get_sacl(sk->sec_desc);
224  char* dacl = regfi_get_dacl(sk->sec_desc);
225
226  if(print_parsedraw)
227    quoted_raw = getQuotedData(f->fd, sk->offset, sk->cell_size);
228
229  if(owner == NULL)
230    owner = empty_str;
231  if(group == NULL)
232    group = empty_str;
233  if(sacl == NULL)
234    sacl = empty_str;
235  if(dacl == NULL)
236    dacl = empty_str;
237
238  printf("%.8X,%.8X,SK,,,,,,,,%s,%s,%s,%s,%s\n", sk->offset, sk->cell_size,
239         owner, group, sacl, dacl, quoted_raw);
240 
241  if(owner != empty_str)
242    free(owner);
243  if(group != empty_str)
244    free(group);
245  if(sacl != empty_str)
246    free(sacl);
247  if(dacl != empty_str)
248    free(dacl);
249
250  if(print_parsedraw)
251    free(quoted_raw);
252}
253
254
255int printCell(REGF_FILE* f, uint32 offset)
256{
257  char* quoted_buf;
258  uint32 cell_length;
259  bool unalloc;
260
261  if(!regfi_parse_cell(f->fd, offset, NULL, 0, &cell_length, &unalloc))
262    return 1;
263
264  quoted_buf = getQuotedData(f->fd, offset, cell_length);
265  if(quoted_buf == NULL)
266    return 2;
267
268  printf("%.8X,%.8X,RAW,,,,,,,,,,,,%s\n", offset, cell_length, quoted_buf);
269
270  free(quoted_buf);
271  return 0;
272}
273
274
275/* This function returns a properly quoted parent path or partial parent
276 * path for a given key.  Returns NULL on error, "" if no path was available.
277 * Paths returned must be free()d.
278 */
279/* TODO: This is not terribly efficient, as it may reparse many keys
280 *       repeatedly.  Should try to add caching.  Also, piecing the path
281 *       together is slow and redundant.
282 */
283char* getParentPath(REGF_FILE* f, REGF_NK_REC* nk)
284{
285  void_stack* path_stack = void_stack_new(REGF_MAX_DEPTH);
286  REGF_HBIN* hbin;
287  REGF_NK_REC* cur_ancestor;
288  char* ret_val;
289  char* path_element;
290  char* tmp_str;
291  uint32 virt_offset, i, stack_size, ret_val_size, ret_val_left, element_size;
292  uint32 max_length;
293
294  virt_offset = nk->parent_off;
295  while(virt_offset != REGF_OFFSET_NONE)
296  { 
297    /* TODO: Need to add checks for infinite loops and/or add depth limit */
298    hbin = regfi_lookup_hbin(f, virt_offset);
299    if(hbin == NULL)
300      virt_offset = REGF_OFFSET_NONE;
301    else
302    {
303      max_length = hbin->block_size + hbin->file_off
304        - (virt_offset+REGF_BLOCKSIZE);
305      cur_ancestor = regfi_parse_nk(f, virt_offset+REGF_BLOCKSIZE, 
306                                    max_length, true);
307      if(cur_ancestor == NULL)
308        virt_offset = REGF_OFFSET_NONE;
309      else
310      {
311        if(cur_ancestor->key_type == NK_TYPE_ROOTKEY)
312          virt_offset = REGF_OFFSET_NONE;
313        else
314          virt_offset = cur_ancestor->parent_off;
315       
316        path_element = quote_string(cur_ancestor->keyname, key_special_chars);
317        if(path_element == NULL || !void_stack_push(path_stack, path_element))
318        {
319          free(cur_ancestor->keyname);
320          free(cur_ancestor);
321          void_stack_free_deep(path_stack);
322          return NULL;
323        }
324
325        regfi_key_free(cur_ancestor);
326      }
327    }
328  }
329 
330  stack_size = void_stack_size(path_stack);
331  ret_val_size = 16*stack_size;
332  if(ret_val_size == 0)
333    ret_val_size = 1;
334  ret_val_left = ret_val_size;
335  ret_val = malloc(ret_val_size);
336  if(ret_val == NULL)
337  {
338    void_stack_free_deep(path_stack);
339    return NULL;
340  }
341  ret_val[0] = '\0';
342
343  for(i=0; i<stack_size; i++)
344  {
345    path_element = void_stack_pop(path_stack);
346    element_size = strlen(path_element);
347    if(ret_val_left < element_size+2)
348    {
349      ret_val_size += element_size+16;
350      ret_val_left += element_size+16;
351      tmp_str = (char*)realloc(ret_val, ret_val_size);
352      if(tmp_str == NULL)
353      {
354        free(ret_val);
355        void_stack_free_deep(path_stack);
356        return NULL;
357      }
358      ret_val = tmp_str;
359    }
360
361    ret_val_left -= snprintf(ret_val+ret_val_size-ret_val_left,ret_val_left, "/%s", path_element);
362    free(path_element);
363  }
364  void_stack_free(path_stack);
365
366  return ret_val;
367}
368
369
370/*
371void dump_cell(int fd, uint32 offset)
372{
373  uint8* buf;
374  uint32 length, j;
375  int32 cell_length;
376
377  if((lseek(fd, offset, SEEK_SET)) == -1)
378    exit(8);
379 
380  length = 4;
381  regfi_read(fd, (void*)&cell_length, &length);
382  if(cell_length < 0)
383    cell_length *= -1;
384
385  buf = (uint8*)malloc(cell_length);
386  if(buf == NULL)
387    exit(9);
388  if((lseek(fd, offset, SEEK_SET)) == -1)
389    exit(8);
390
391  length = cell_length;
392  regfi_read(fd, buf, &length);
393  for(j=0; j < length; j++)
394  {
395    printf("%.2X", buf[j]);
396    if(j%4 == 3)
397      printf(" ");
398  }
399  printf("\n");
400  free(buf);
401}
402*/
403
404static void usage(void)
405{
406  fprintf(stderr, "Usage: reglookup-recover [options] <REGISTRY_FILE>\n");
407  fprintf(stderr, "Version: %s\n", REGLOOKUP_VERSION);
408  fprintf(stderr, "Options:\n");
409  fprintf(stderr, "\t-v\t sets verbose mode.\n");
410  fprintf(stderr, "\t-h\t enables header row. (default)\n");
411  fprintf(stderr, "\t-H\t disables header row.\n");
412  fprintf(stderr, "\t-l\t enables leftover(raw) cell output.\n");
413  fprintf(stderr, "\t-L\t disables leftover(raw) cell output. (default)\n");
414  fprintf(stderr, "\t-r\t enables raw cell output for parsed cells.\n");
415  fprintf(stderr, "\t-R\t disables raw cell output for parsed cells. (default)\n");
416  fprintf(stderr, "\n");
417}
418
419
420bool removeRange(range_list* rl, uint32 rm_idx, uint32 offset, uint32 length)
421{
422  const range_list_element* cur_elem = range_list_get(rl, rm_idx);
423 
424  if(cur_elem == NULL)
425  {
426    printf("removeRange: cur_elem == NULL.  rm_idx=%d\n", rm_idx);
427    return false;
428  }
429
430  if(offset > cur_elem->offset)
431  {
432    if(!range_list_split_element(rl, rm_idx, offset))
433    {
434      printf("removeRange: first split failed\n");
435      return false;
436    }
437    rm_idx++;
438  }
439 
440  if(offset+length < cur_elem->offset+cur_elem->length)
441  {
442    if(!range_list_split_element(rl, rm_idx, offset+length))
443    {
444      printf("removeRange: second split failed\n");
445      return false;
446    }
447  }
448 
449  if(!range_list_remove(rl, rm_idx))
450  {
451    printf("removeRange: remove failed\n");
452    return false;
453  }
454
455  return true;
456}
457
458
459int extractKeys(REGF_FILE* f, 
460                range_list* unalloc_cells, 
461                range_list* unalloc_keys)
462{
463  const range_list_element* cur_elem;
464  REGF_NK_REC* key;
465  uint32 i, j;
466
467  for(i=0; i < range_list_size(unalloc_cells); i++)
468  {
469    cur_elem = range_list_get(unalloc_cells, i);
470    for(j=0; j <= cur_elem->length; j+=8)
471    {
472      key = regfi_parse_nk(f, cur_elem->offset+j, 
473                               cur_elem->length-j, false);
474      if(key != NULL)
475      {
476        if(!range_list_add(unalloc_keys, key->offset, 
477                           key->cell_size, key))
478        {
479          fprintf(stderr, "ERROR: Couldn't add key to unalloc_keys.\n");
480          return 20;
481        }
482       
483        if(!removeRange(unalloc_cells, i, key->offset, key->cell_size))
484          return 30;
485      }
486    }
487  }
488
489  return 0;
490}
491
492
493int extractValueLists(REGF_FILE* f,
494                      range_list* unalloc_cells,
495                      range_list* unalloc_keys)
496{
497  REGF_NK_REC* nk;
498  REGF_HBIN* hbin;
499  const range_list_element* cur_elem;
500  uint32 i, j, num_keys, off, values_length, max_length;
501  int32 idx;
502
503  num_keys=range_list_size(unalloc_keys);
504  for(i=0; i<num_keys; i++)
505  {
506    cur_elem = range_list_get(unalloc_keys, i);
507    if(cur_elem == NULL)
508      return 10;
509    nk = cur_elem->data;
510
511    if(nk->num_values && (nk->values_off!=REGF_OFFSET_NONE))
512    {
513      hbin = regfi_lookup_hbin(f, nk->values_off);
514     
515      if(hbin != NULL)
516      {
517        off = nk->values_off + REGF_BLOCKSIZE;
518        max_length = hbin->block_size + hbin->file_off - off;
519        /* TODO: This is kind of a hack.  We parse all value-lists, VK records,
520         *       and data records without regard for current allocation status. 
521         *       On the off chance that such a record correctly parsed but is
522         *       actually a reallocated structure used by something else, we
523         *       simply prune it after the fact.  Would be faster to check this
524         *       up front somehow.
525         */
526        nk->values = regfi_load_valuelist(f, off, nk->num_values, max_length,
527                                          false);
528
529        if(nk->values != NULL)
530        {
531          idx = range_list_find(unalloc_cells, off);
532          if(idx < 0)
533          { /* We've parsed a values-list which isn't in the unallocated list,
534             * so prune it.
535             */
536            for(j=0; j<nk->num_values; j++)
537            {
538              if(nk->values[j] != NULL)
539              {
540                if(nk->values[j]->data != NULL)
541                  free(nk->values[j]->data);
542                free(nk->values[j]);
543                free(nk->values);
544                nk->values = NULL;
545              }
546            }
547          }
548          else
549          { /* Values-list was recovered.  Remove from unalloc_cells and
550             * inspect values.
551             */
552            values_length = (nk->num_values+1)*sizeof(uint32);
553            if(values_length != (values_length & 0xFFFFFFF8))
554              values_length = (values_length & 0xFFFFFFF8) + 8;
555            if(!removeRange(unalloc_cells, idx, off, values_length))
556              return 20;
557
558            for(j=0; j < nk->num_values; j++)
559            {
560              if(nk->values[j] != NULL)
561              {
562                idx = range_list_find(unalloc_cells, nk->values[j]->offset);
563                if(idx < 0)
564                { /* We've parsed a value which isn't in the unallocated list,
565                   * so prune it.
566                   */
567                  if(nk->values[j]->data != NULL)
568                    free(nk->values[j]->data);
569                  free(nk->values[j]);
570                  nk->values[j] = NULL;
571                }
572                else
573                {
574                  /* A VK record was recovered.  Remove from unalloc_cells
575                   * and inspect data.
576                   */
577                  if(!removeRange(unalloc_cells, idx, nk->values[j]->offset,
578                                  nk->values[j]->cell_size))
579                    return 21;
580
581                  /* Don't bother pruning or removing from unalloc_cells if
582                   * there is no data, if it is stored the offset.
583                   */
584                  if(nk->values[j]->data != NULL && !nk->values[j]->data_in_offset)
585                  {
586                    off = nk->values[j]->data_off+REGF_BLOCKSIZE;
587                    idx = range_list_find(unalloc_cells, off);
588                    if(idx < 0)
589                    { /* We've parsed a data cell which isn't in the unallocated
590                       * list, so prune it.
591                       */
592                      free(nk->values[j]->data);
593                      nk->values[j]->data = NULL;
594                    }
595                    else
596                    { /*A data record was recovered. Remove from unalloc_cells.*/
597                      if(!removeRange(unalloc_cells, idx, off,
598                                      nk->values[j]->data_size))
599                        return 22;
600                    }
601                  }
602                }
603              }
604            }
605          }
606        }
607      }
608    }
609  }
610
611  return 0;
612}
613
614
615
616int extractValues(REGF_FILE* f, 
617                  range_list* unalloc_cells, 
618                  range_list* unalloc_values)
619{
620  const range_list_element* cur_elem;
621  REGF_VK_REC* vk;
622  uint32 i, j;
623
624  for(i=0; i < range_list_size(unalloc_cells); i++)
625  {
626    cur_elem = range_list_get(unalloc_cells, i);
627    for(j=0; j <= cur_elem->length; j+=8)
628    {
629      vk = regfi_parse_vk(f, cur_elem->offset+j, 
630                           cur_elem->length-j, false);
631      if(vk != NULL)
632      {
633        if(!range_list_add(unalloc_values, vk->offset,
634                           vk->cell_size, vk))
635        {
636          fprintf(stderr, "ERROR: Couldn't add value to unalloc_values.\n");
637          return 20;
638        }
639       
640        if(!removeRange(unalloc_cells, i, vk->offset, vk->cell_size))
641          return 30;
642      }
643    }
644  }
645
646  return 0;
647}
648
649
650int extractSKs(REGF_FILE* f, 
651               range_list* unalloc_cells,
652               range_list* unalloc_sks)
653{
654  const range_list_element* cur_elem;
655  REGF_SK_REC* sk;
656  uint32 i, j;
657
658  for(i=0; i < range_list_size(unalloc_cells); i++)
659  {
660    cur_elem = range_list_get(unalloc_cells, i);
661    for(j=0; j <= cur_elem->length; j+=8)
662    {
663      sk = regfi_parse_sk(f, cur_elem->offset+j, 
664                          cur_elem->length-j, false);
665      if(sk != NULL)
666      {
667        if(!range_list_add(unalloc_sks, sk->offset,
668                           sk->cell_size, sk))
669        {
670          fprintf(stderr, "ERROR: Couldn't add sk to unalloc_sks.\n");
671          return 20;
672        }
673       
674        if(!removeRange(unalloc_cells, i, sk->offset, sk->cell_size))
675          return 30;
676      }
677    }
678  }
679
680  return 0;
681}
682
683
684int main(int argc, char** argv)
685{ 
686  REGF_FILE* f;
687  const range_list_element* cur_elem;
688  range_list* unalloc_cells;
689  range_list* unalloc_keys;
690  range_list* unalloc_values;
691  range_list* unalloc_sks;
692  char** parent_paths;
693  char* tmp_name;
694  char* tmp_path;
695  REGF_NK_REC* tmp_key;
696  REGF_VK_REC* tmp_value;
697  uint32 argi, arge, i, j, ret, num_unalloc_keys;
698  /* uint32 test_offset;*/
699 
700  /* Process command line arguments */
701  if(argc < 2)
702  {
703    usage();
704    bailOut(EX_USAGE, "ERROR: Requires at least one argument.\n");
705  }
706 
707  arge = argc-1;
708  for(argi = 1; argi < arge; argi++)
709  {
710    if (strcmp("-v", argv[argi]) == 0)
711      print_verbose = true;
712    else if (strcmp("-h", argv[argi]) == 0)
713      print_header = true;
714    else if (strcmp("-H", argv[argi]) == 0)
715      print_header = false;
716    else if (strcmp("-l", argv[argi]) == 0)
717      print_leftover = true;
718    else if (strcmp("-L", argv[argi]) == 0)
719      print_leftover = false;
720    else if (strcmp("-r", argv[argi]) == 0)
721      print_parsedraw = true;
722    else if (strcmp("-R", argv[argi]) == 0)
723      print_parsedraw = false;
724    else
725    {
726      usage();
727      fprintf(stderr, "ERROR: Unrecognized option: %s\n", argv[argi]);
728      bailOut(EX_USAGE, "");
729    }
730  }
731  /*test_offset = strtol(argv[argi++], NULL, 16);*/
732
733  if((registry_file = strdup(argv[argi])) == NULL)
734    bailOut(EX_OSERR, "ERROR: Memory allocation problem.\n");
735
736  f = regfi_open(registry_file);
737  if(f == NULL)
738  {
739    fprintf(stderr, "ERROR: Couldn't open registry file: %s\n", registry_file);
740    bailOut(EX_NOINPUT, "");
741  }
742
743  if(print_header)
744    printf("OFFSET,REC_LENGTH,REC_TYPE,PATH,NAME,"
745           "NK_MTIME,NK_NVAL,VK_TYPE,VK_VALUE,VK_DATA_LEN,"
746           "SK_OWNER,SK_GROUP,SK_SACL,SK_DACL,RAW_CELL\n");
747
748  unalloc_cells = regfi_parse_unalloc_cells(f);
749  if(unalloc_cells == NULL)
750  {
751    fprintf(stderr, "ERROR: Could not obtain list of unallocated cells.\n");
752    return 1;
753  }
754
755  unalloc_keys = range_list_new();
756  if(unalloc_keys == NULL)
757    return 10;
758
759  unalloc_values = range_list_new();
760  if(unalloc_values == NULL)
761    return 10;
762
763  unalloc_sks = range_list_new();
764  if(unalloc_sks == NULL)
765    return 10;
766
767  ret = extractKeys(f, unalloc_cells, unalloc_keys);
768  if(ret != 0)
769  {
770    fprintf(stderr, "ERROR: extractKeys() failed with %d.\n", ret);
771    return ret;
772  }
773
774  ret = extractValueLists(f, unalloc_cells, unalloc_keys);
775  if(ret != 0)
776  {
777    fprintf(stderr, "ERROR: extractValueLists() failed with %d.\n", ret);
778    return ret;
779  }
780
781  /* Carve any orphan values and associated data */
782  ret = extractValues(f, unalloc_cells, unalloc_values);
783  if(ret != 0)
784  {
785    fprintf(stderr, "ERROR: extractValues() failed with %d.\n", ret);
786    return ret;
787  }
788
789  /* Carve any SK records */
790  ret = extractSKs(f, unalloc_cells, unalloc_sks);
791  if(ret != 0)
792  {
793    fprintf(stderr, "ERROR: extractSKs() failed with %d.\n", ret);
794    return ret;
795  }
796
797  /* Now that we're done carving, associate recovered keys with parents,
798   * if at all possible.
799   */
800  num_unalloc_keys = range_list_size(unalloc_keys);
801  parent_paths = (char**)malloc(sizeof(char*)*num_unalloc_keys);
802  if(parent_paths == NULL)
803    return 10;
804
805  for(i=0; i < num_unalloc_keys; i++)
806  {
807    cur_elem = range_list_get(unalloc_keys, i);
808    tmp_key = (REGF_NK_REC*)cur_elem->data;
809
810    if(tmp_key == NULL)
811      return 20;
812   
813    parent_paths[i] = getParentPath(f, tmp_key);
814    if(parent_paths[i] == NULL)
815      return 20;
816  }
817 
818  /* Now start the output */
819
820  for(i=0; i < num_unalloc_keys; i++)
821  {
822    cur_elem = range_list_get(unalloc_keys, i);
823    tmp_key = (REGF_NK_REC*)cur_elem->data;
824
825    printKey(f, tmp_key, parent_paths[i]);
826    if(tmp_key->num_values > 0)
827    {
828      tmp_name = quote_string(tmp_key->keyname, key_special_chars);
829      tmp_path = (char*)malloc(strlen(parent_paths[i])+strlen(tmp_name)+2);
830      if(tmp_path == NULL)
831        return 10;
832      sprintf(tmp_path, "%s/%s", parent_paths[i], tmp_name);
833      for(j=0; j < tmp_key->num_values; j++)
834      {
835        tmp_value = tmp_key->values[j];
836        if(tmp_value != NULL)
837          printValue(f, tmp_value, tmp_path);
838      }
839      free(tmp_path);
840      free(tmp_name);
841      free(parent_paths[i]);
842    }
843  }
844  free(parent_paths);
845
846  /* Print out orphaned values */
847  for(i=0; i < range_list_size(unalloc_values); i++)
848  {
849    cur_elem = range_list_get(unalloc_values, i);
850    tmp_value = (REGF_VK_REC*)cur_elem->data; 
851
852    printValue(f, tmp_value, "");
853  }
854 
855  if(print_leftover)
856  {
857    for(i=0; i < range_list_size(unalloc_cells); i++)
858    {
859      cur_elem = range_list_get(unalloc_cells, i);
860      printf("0x%X,%d,", cur_elem->offset, cur_elem->length);
861     
862      printCell(f, cur_elem->offset);
863    }
864  }
865
866  /*
867  printf("Analyzing test_offset...\n");
868  if((tmp_key = regfi_parse_nk(f, test_offset, 4096, false)) != NULL)
869    regfi_print_nk(tmp_key);
870  else
871    dump_cell(f->fd, test_offset);
872  */
873
874  return 0;
875}
Note: See TracBrowser for help on using the repository browser.