source: trunk/src/reglookup.c @ 88

Last change on this file since 88 was 88, checked in by tim, 17 years ago

Fixed a lazy NULL printing to work properly on Solaris.

Switched reglookup exit codes to more standard ones.

Changed Makefile to default to using -liconv except on Linux, since Solaris needs this too.

  • Property svn:keywords set to Id
File size: 24.6 KB
Line 
1/*
2 * A utility to read a Windows NT/2K/XP/2K3 registry file, using
3 * Gerald Carter''s regfio interface.
4 *
5 * Copyright (C) 2005-2007 Timothy D. Morgan
6 * Copyright (C) 2002 Richard Sharpe, rsharpe@richardsharpe.com
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
20 *
21 * $Id: reglookup.c 88 2007-03-07 01:35:18Z tim $
22 */
23
24
25#include <stdlib.h>
26#include <sysexits.h>
27#include <stdio.h>
28#include <string.h>
29#include <strings.h>
30#include <time.h>
31#include <iconv.h>
32#include "../include/regfi.h"
33#include "../include/void_stack.h"
34
35/* Globals, influenced by command line parameters */
36bool print_verbose = false;
37bool print_security = false;
38bool print_header = true;
39bool path_filter_enabled = false;
40bool type_filter_enabled = false;
41char* path_filter = NULL;
42int type_filter;
43char* registry_file = NULL;
44
45/* Other globals */
46const char* key_special_chars = ",\"\\/";
47const char* subfield_special_chars = ",\"\\|";
48const char* common_special_chars = ",\"\\";
49
50iconv_t conv_desc;
51
52
53void bailOut(int code, char* message)
54{
55  fprintf(stderr, message);
56  exit(code);
57}
58
59
60/* Returns a newly malloc()ed string which contains original buffer,
61 * except for non-printable or special characters are quoted in hex
62 * with the syntax '\xQQ' where QQ is the hex ascii value of the quoted
63 * character.  A null terminator is added, since only ascii, not binary,
64 * is returned.
65 */
66static char* quote_buffer(const unsigned char* str, 
67                          unsigned int len, const char* special)
68{
69  unsigned int i, added_len;
70  unsigned int num_written = 0;
71
72  unsigned int buf_len = sizeof(char)*(len+1);
73  char* ret_val = malloc(buf_len);
74  char* tmp_buf;
75
76  if(ret_val == NULL)
77    return NULL;
78
79  for(i=0; i<len; i++)
80  {
81    if(buf_len <= (num_written+5))
82    {
83      /* Expand the buffer by the memory consumption rate seen so far
84       * times the amount of input left to process.  The expansion is bounded
85       * below by a minimum safety increase, and above by the maximum possible
86       * output string length.  This should minimize both the number of
87       * reallocs() and the amount of wasted memory.
88       */
89      added_len = (len-i)*num_written/(i+1);
90      if((buf_len+added_len) > (len*4+1))
91        buf_len = len*4+1;
92      else
93      {
94        if (added_len < 5)
95          buf_len += 5;
96        else
97          buf_len += added_len;
98      }
99
100      tmp_buf = realloc(ret_val, buf_len);
101      if(tmp_buf == NULL)
102      {
103        free(ret_val);
104        return NULL;
105      }
106      ret_val = tmp_buf;
107    }
108   
109    if(str[i] < 32 || str[i] > 126 || strchr(special, str[i]) != NULL)
110    {
111      num_written += snprintf(ret_val + num_written, buf_len - num_written,
112                              "\\x%.2X", str[i]);
113    }
114    else
115      ret_val[num_written++] = str[i];
116  }
117  ret_val[num_written] = '\0';
118
119  return ret_val;
120}
121
122
123/* Returns a newly malloc()ed string which contains original string,
124 * except for non-printable or special characters are quoted in hex
125 * with the syntax '\xQQ' where QQ is the hex ascii value of the quoted
126 * character.
127 */
128static char* quote_string(const char* str, const char* special)
129{
130  unsigned int len;
131
132  if(str == NULL)
133    return NULL;
134
135  len = strlen(str);
136  return quote_buffer((const unsigned char*)str, len, special);
137}
138
139
140/*
141 * Convert from UTF-16LE to ASCII.  Accepts a Unicode buffer, uni, and
142 * it's length, uni_max.  Writes ASCII to the buffer ascii, whose size
143 * is ascii_max.  Writes at most (ascii_max-1) bytes to ascii, and null
144 * terminates the string.  Returns the length of the string stored in
145 * ascii.  On error, returns a negative errno code.
146 */
147static int uni_to_ascii(unsigned char* uni, char* ascii, 
148                        unsigned int uni_max, unsigned int ascii_max)
149{
150  char* inbuf = (char*)uni;
151  char* outbuf = ascii;
152  size_t in_len = (size_t)uni_max;
153  size_t out_len = (size_t)(ascii_max-1);
154  int ret;
155
156  /* Set up conversion descriptor. */
157  conv_desc = iconv_open("US-ASCII", "UTF-16LE");
158
159  ret = iconv(conv_desc, &inbuf, &in_len, &outbuf, &out_len);
160  if(ret == -1)
161  {
162    iconv_close(conv_desc);
163    return -errno;
164  }
165  *outbuf = '\0';
166
167  iconv_close(conv_desc); 
168  return strlen(ascii);
169}
170
171
172/*
173 * Convert a data value to a string for display.  Returns NULL on error,
174 * and the string to display if there is no error, or a non-fatal
175 * error.  On any error (fatal or non-fatal) occurs, (*error_msg) will
176 * be set to a newly allocated string, containing an error message.  If
177 * a memory allocation failure occurs while generating the error
178 * message, both the return value and (*error_msg) will be NULL.  It
179 * is the responsibility of the caller to free both a non-NULL return
180 * value, and a non-NULL (*error_msg).
181 */
182static char* data_to_ascii(unsigned char *datap, uint32 len, uint32 type, 
183                           char** error_msg)
184{
185  char* asciip;
186  char* ascii;
187  unsigned char* cur_str;
188  char* cur_ascii;
189  char* cur_quoted;
190  char* tmp_err;
191  const char* str_type;
192  uint32 i;
193  uint32 cur_str_len;
194  uint32 ascii_max, cur_str_max;
195  uint32 str_rem, cur_str_rem, alen;
196  int ret_err;
197  unsigned short num_nulls;
198
199  *error_msg = NULL;
200
201  switch (type) 
202  {
203  case REG_SZ:
204  case REG_EXPAND_SZ:
205    /* REG_LINK is a symbolic link, stored as a unicode string. */
206  case REG_LINK:
207    ascii_max = sizeof(char)*(len+1);
208    ascii = malloc(ascii_max);
209    if(ascii == NULL)
210      return NULL;
211   
212    /* Sometimes values have binary stored in them.  If the unicode
213     * conversion fails, just quote it raw.
214     */
215    ret_err = uni_to_ascii(datap, ascii, len, ascii_max);
216    if(ret_err < 0)
217    {
218      tmp_err = strerror(-ret_err);
219      str_type = regfi_type_val2str(type);
220      *error_msg = (char*)malloc(65+strlen(str_type)+strlen(tmp_err)+1);
221      if(*error_msg == NULL)
222      {
223        free(ascii);
224        return NULL;
225      }
226      sprintf(*error_msg, "Unicode conversion failed on %s field; "
227               "printing as binary.  Error: %s", str_type, tmp_err);
228     
229      cur_quoted = quote_buffer(datap, len, common_special_chars);
230    }
231    else
232      cur_quoted = quote_string(ascii, common_special_chars);
233    free(ascii);
234    if(cur_quoted == NULL)
235    {
236      *error_msg = (char*)malloc(27+1);
237      if(*error_msg != NULL)
238        strcpy(*error_msg, "Buffer could not be quoted.");
239    }
240    return cur_quoted;
241    break;
242
243  case REG_DWORD:
244    ascii_max = sizeof(char)*(8+2+1);
245    ascii = malloc(ascii_max);
246    if(ascii == NULL)
247      return NULL;
248
249    snprintf(ascii, ascii_max, "0x%.2X%.2X%.2X%.2X", 
250             datap[0], datap[1], datap[2], datap[3]);
251    return ascii;
252    break;
253
254  case REG_DWORD_BE:
255    ascii_max = sizeof(char)*(8+2+1);
256    ascii = malloc(ascii_max);
257    if(ascii == NULL)
258      return NULL;
259
260    snprintf(ascii, ascii_max, "0x%.2X%.2X%.2X%.2X", 
261             datap[3], datap[2], datap[1], datap[0]);
262    return ascii;
263    break;
264
265  case REG_QWORD:
266    ascii_max = sizeof(char)*(16+2+1);
267    ascii = malloc(ascii_max);
268    if(ascii == NULL)
269      return NULL;
270
271    snprintf(ascii, ascii_max, "0x%.2X%.2X%.2X%.2X%.2X%.2X%.2X%.2X",
272             datap[7], datap[6], datap[5], datap[4],
273             datap[3], datap[2], datap[1], datap[0]);
274    return ascii;
275    break;
276   
277
278  /* XXX: this MULTI_SZ parser is pretty inefficient.  Should be
279   *      redone with fewer malloc calls and better string concatenation.
280   */
281  case REG_MULTI_SZ:
282    ascii_max = sizeof(char)*(len*4+1);
283    cur_str_max = sizeof(char)*(len+1);
284    cur_str = malloc(cur_str_max);
285    cur_ascii = malloc(cur_str_max);
286    ascii = malloc(ascii_max);
287    if(ascii == NULL || cur_str == NULL || cur_ascii == NULL)
288      return NULL;
289
290    /* Reads until it reaches 4 consecutive NULLs,
291     * which is two nulls in unicode, or until it reaches len, or until we
292     * run out of buffer.  The latter should never happen, but we shouldn't
293     * trust our file to have the right lengths/delimiters.
294     */
295    asciip = ascii;
296    num_nulls = 0;
297    str_rem = ascii_max;
298    cur_str_rem = cur_str_max;
299    cur_str_len = 0;
300
301    for(i=0; (i < len) && str_rem > 0; i++)
302    {
303      *(cur_str+cur_str_len) = *(datap+i);
304      if(*(cur_str+cur_str_len) == 0)
305        num_nulls++;
306      else
307        num_nulls = 0;
308      cur_str_len++;
309
310      if(num_nulls == 2)
311      {
312        ret_err = uni_to_ascii(cur_str, cur_ascii, cur_str_len-1, cur_str_max);
313        if(ret_err < 0)
314        {
315          /* XXX: should every sub-field error be enumerated? */
316          if(*error_msg == NULL)
317          {
318            tmp_err = strerror(-ret_err);
319            *error_msg = (char*)malloc(90+strlen(tmp_err)+1);
320            if(*error_msg == NULL)
321            {
322              free(cur_str);
323              free(cur_ascii);
324              free(ascii);
325              return NULL;
326            }
327            sprintf(*error_msg, "Unicode conversion failed on at least one "
328                    "MULTI_SZ sub-field; printing as binary.  Error: %s",
329                    tmp_err);
330          }
331          cur_quoted = quote_buffer(cur_str, cur_str_len-1, 
332                                    subfield_special_chars);
333        }
334        else
335          cur_quoted = quote_string(cur_ascii, subfield_special_chars);
336
337        alen = snprintf(asciip, str_rem, "%s", cur_quoted);
338        asciip += alen;
339        str_rem -= alen;
340        free(cur_quoted);
341
342        if(*(datap+i+1) == 0 && *(datap+i+2) == 0)
343          break;
344        else
345        {
346          if(str_rem > 0)
347          {
348            asciip[0] = '|';
349            asciip[1] = '\0';
350            asciip++;
351            str_rem--;
352          }
353          memset(cur_str, 0, cur_str_max);
354          cur_str_len = 0;
355          num_nulls = 0;
356          /* To eliminate leading nulls in subsequent strings. */
357          i++;
358        }
359      }
360    }
361    *asciip = 0;
362    free(cur_str);
363    free(cur_ascii);
364    return ascii;
365    break;
366
367  /* XXX: Dont know what to do with these yet, just print as binary... */
368  default:
369    fprintf(stderr, "WARNING: Unrecognized registry data type (0x%.8X); quoting as binary.\n", type);
370   
371  case REG_NONE:
372  case REG_RESOURCE_LIST:
373  case REG_FULL_RESOURCE_DESCRIPTOR:
374  case REG_RESOURCE_REQUIREMENTS_LIST:
375
376  case REG_BINARY:
377    return quote_buffer(datap, len, common_special_chars);
378    break;
379  }
380
381  return NULL;
382}
383
384
385/* XXX: Each chunk must be unquoted after it is split out.
386 *      Quoting syntax may need to be standardized and pushed into the API
387 *      to deal with this issue and others.
388 */
389char** splitPath(const char* s)
390{
391  char** ret_val;
392  const char* cur = s;
393  char* next = NULL;
394  char* copy;
395  uint32 ret_cur = 0;
396
397  ret_val = (char**)malloc((REGF_MAX_DEPTH+1+1)*sizeof(char**));
398  if (ret_val == NULL)
399    return NULL;
400  ret_val[0] = NULL;
401
402  /* We return a well-formed, 0-length, path even when input is icky. */
403  if (s == NULL)
404    return ret_val;
405 
406  while((next = strchr(cur, '/')) != NULL)
407  {
408    if ((next-cur) > 0)
409    {
410      copy = (char*)malloc((next-cur+1)*sizeof(char));
411      if(copy == NULL)
412        bailOut(EX_OSERR, "ERROR: Memory allocation problem.\n");
413         
414      memcpy(copy, cur, next-cur);
415      copy[next-cur] = '\0';
416      ret_val[ret_cur++] = copy;
417      if(ret_cur < (REGF_MAX_DEPTH+1+1))
418        ret_val[ret_cur] = NULL;
419      else
420        bailOut(EX_DATAERR, "ERROR: Registry maximum depth exceeded.\n");
421    }
422    cur = next+1;
423  }
424
425  /* Grab last element, if path doesn't end in '/'. */
426  if(strlen(cur) > 0)
427  {
428    copy = strdup(cur);
429    ret_val[ret_cur++] = copy;
430    if(ret_cur < (REGF_MAX_DEPTH+1+1))
431      ret_val[ret_cur] = NULL;
432    else
433      bailOut(EX_DATAERR, "ERROR: Registry maximum depth exceeded.\n");
434  }
435
436  return ret_val;
437}
438
439
440void freePath(char** path)
441{
442  uint32 i;
443
444  if(path == NULL)
445    return;
446
447  for(i=0; path[i] != NULL; i++)
448    free(path[i]);
449
450  free(path);
451}
452
453
454/* Returns a quoted path from an iterator's stack */
455/* XXX: Some way should be found to integrate this into regfi's API
456 *      The problem is that the escaping is sorta reglookup-specific.
457 */
458char* iter2Path(REGFI_ITERATOR* i)
459{
460  const REGFI_ITER_POSITION* cur;
461  uint32 buf_left = 127;
462  uint32 buf_len = buf_left+1;
463  uint32 name_len = 0;
464  uint32 grow_amt;
465  char* buf;
466  char* new_buf;
467  char* name;
468  const char* cur_name;
469  void_stack_iterator* iter;
470 
471  buf = (char*)malloc((buf_len)*sizeof(char));
472  if (buf == NULL)
473    return NULL;
474  buf[0] = '\0';
475
476  iter = void_stack_iterator_new(i->key_positions);
477  if (iter == NULL)
478  {
479    free(buf);
480    return NULL;
481  }
482
483  /* skip root element */
484  if(void_stack_size(i->key_positions) < 1)
485  {
486    buf[0] = '/';
487    buf[1] = '\0';
488    return buf;
489  }
490  cur = void_stack_iterator_next(iter);
491
492  do
493  {
494    cur = void_stack_iterator_next(iter);
495    if (cur == NULL)
496      cur_name = i->cur_key->keyname;
497    else
498      cur_name = cur->nk->keyname;
499
500    buf[buf_len-buf_left-1] = '/';
501    buf_left -= 1;
502    name = quote_string(cur_name, key_special_chars);
503    name_len = strlen(name);
504    if(name_len+1 > buf_left)
505    {
506      grow_amt = (uint32)(buf_len/2);
507      buf_len += name_len+1+grow_amt-buf_left;
508      if((new_buf = realloc(buf, buf_len)) == NULL)
509      {
510        free(buf);
511        free(iter);
512        return NULL;
513      }
514      buf = new_buf;
515      buf_left = grow_amt + name_len + 1;
516    }
517    strncpy(buf+(buf_len-buf_left-1), name, name_len);
518    buf_left -= name_len;
519    buf[buf_len-buf_left-1] = '\0';
520    free(name);
521  } while(cur != NULL);
522
523  return buf;
524}
525
526
527void printValue(const REGF_VK_REC* vk, char* prefix)
528{
529  char* quoted_value = NULL;
530  char* quoted_name = NULL;
531  char* conv_error = NULL;
532  const char* str_type = NULL;
533  uint32 size;
534  uint8 tmp_buf[4];
535
536  /* Thanks Microsoft for making this process so straight-forward!!! */
537  /* XXX: this logic should be abstracted  and pushed into the regfi
538   *      interface.  This includes the size limits.
539   */
540  size = (vk->data_size & ~VK_DATA_IN_OFFSET);
541  if(vk->data_size & VK_DATA_IN_OFFSET)
542  {
543    tmp_buf[0] = (uint8)((vk->data_off >> 3) & 0xFF);
544    tmp_buf[1] = (uint8)((vk->data_off >> 2) & 0xFF);
545    tmp_buf[2] = (uint8)((vk->data_off >> 1) & 0xFF);
546    tmp_buf[3] = (uint8)(vk->data_off & 0xFF);
547    if(size > 4)
548      /* XXX: should we kick out a warning here?  If it is in the
549       *      offset and longer than four, file could be corrupt
550       *      or malicious... */
551      size = 4;
552    quoted_value = data_to_ascii(tmp_buf, 4, vk->type, &conv_error);
553  }
554  else
555  {
556    /* Microsoft's documentation indicates that "available memory" is
557     * the limit on value sizes.  Annoying.  We limit it to 1M which
558     * should rarely be exceeded, unless the file is corrupt or
559     * malicious. For more info, see:
560     *   http://msdn2.microsoft.com/en-us/library/ms724872.aspx
561     */
562    if(size > VK_MAX_DATA_LENGTH)
563    {
564      fprintf(stderr, "WARNING: value data size %d larger than "
565              "%d, truncating...\n", size, VK_MAX_DATA_LENGTH);
566      size = VK_MAX_DATA_LENGTH;
567    }
568
569    quoted_value = data_to_ascii(vk->data, vk->data_size, 
570                                 vk->type, &conv_error);
571  }
572 
573  /* XXX: Sometimes value names can be NULL in registry.  Need to
574   *      figure out why and when, and generate the appropriate output
575   *      for that condition.
576   */
577  quoted_name = quote_string(vk->valuename, common_special_chars);
578  if (quoted_name == NULL)
579  {
580    quoted_name = malloc(1*sizeof(char));
581    if(quoted_name == NULL)
582      bailOut(EX_OSERR, "ERROR: Could not allocate sufficient memory.\n");
583    quoted_name[0] = '\0';
584  }
585
586  if(quoted_value == NULL)
587  {
588    if(conv_error == NULL)
589      fprintf(stderr, "WARNING: Could not quote value for '%s/%s'.  "
590              "Memory allocation failure likely.\n", prefix, quoted_name);
591    else
592      fprintf(stderr, "WARNING: Could not quote value for '%s/%s'.  "
593              "Returned error: %s\n", prefix, quoted_name, conv_error);
594  }
595  /* XXX: should these always be printed? */
596  else if(conv_error != NULL && print_verbose)
597      fprintf(stderr, "VERBOSE: While quoting value for '%s/%s', "
598              "warning returned: %s\n", prefix, quoted_name, conv_error);
599
600  str_type = regfi_type_val2str(vk->type);
601  if(print_security)
602  {
603    if(str_type == NULL)
604      printf("%s/%s,0x%.8X,%s,,,,,\n", prefix, quoted_name,
605             vk->type, quoted_value);
606    else
607      printf("%s/%s,%s,%s,,,,,\n", prefix, quoted_name,
608             str_type, quoted_value);
609  }
610  else
611  {
612    if(str_type == NULL)
613      printf("%s/%s,0x%.8X,%s,\n", prefix, quoted_name,
614             vk->type, quoted_value);
615    else
616      printf("%s/%s,%s,%s,\n", prefix, quoted_name,
617             str_type, quoted_value);
618  }
619
620  if(quoted_value != NULL)
621    free(quoted_value);
622  if(quoted_name != NULL)
623    free(quoted_name);
624  if(conv_error != NULL)
625    free(conv_error);
626}
627
628
629void printValueList(REGFI_ITERATOR* i, char* prefix)
630{
631  const REGF_VK_REC* value;
632
633  value = regfi_iterator_first_value(i);
634  while(value != NULL)
635  {
636    if(!type_filter_enabled || (value->type == type_filter))
637      printValue(value, prefix);
638    value = regfi_iterator_next_value(i);
639  }
640}
641
642
643void printKey(const REGF_NK_REC* k, char* full_path)
644{
645  static char empty_str[1] = "";
646  char* owner = NULL;
647  char* group = NULL;
648  char* sacl = NULL;
649  char* dacl = NULL;
650  char mtime[20];
651  time_t tmp_time[1];
652  struct tm* tmp_time_s = NULL;
653
654  *tmp_time = nt_time_to_unix(&k->mtime);
655  tmp_time_s = gmtime(tmp_time);
656  strftime(mtime, sizeof(mtime), "%Y-%m-%d %H:%M:%S", tmp_time_s);
657
658  if(print_security)
659  {
660    owner = regfi_get_owner(k->sec_desc->sec_desc);
661    group = regfi_get_group(k->sec_desc->sec_desc);
662    sacl = regfi_get_sacl(k->sec_desc->sec_desc);
663    dacl = regfi_get_dacl(k->sec_desc->sec_desc);
664    if(owner == NULL)
665      owner = empty_str;
666    if(group == NULL)
667      group = empty_str;
668    if(sacl == NULL)
669      sacl = empty_str;
670    if(dacl == NULL)
671      dacl = empty_str;
672
673    printf("%s,KEY,,%s,%s,%s,%s,%s\n", full_path, mtime, 
674           owner, group, sacl, dacl);
675
676    if(owner != empty_str)
677      free(owner);
678    if(group != empty_str)
679      free(group);
680    if(sacl != empty_str)
681      free(sacl);
682    if(dacl != empty_str)
683      free(dacl);
684  }
685  else
686    printf("%s,KEY,,%s\n", full_path, mtime);
687}
688
689
690void printKeyTree(REGFI_ITERATOR* iter)
691{
692  const REGF_NK_REC* root = NULL;
693  const REGF_NK_REC* cur = NULL;
694  const REGF_NK_REC* sub = NULL;
695  char* path = NULL;
696  int key_type = regfi_type_str2val("KEY");
697  bool print_this = true;
698
699  root = cur = regfi_iterator_cur_key(iter);
700  sub = regfi_iterator_first_subkey(iter);
701 
702  if(root == NULL)
703    bailOut(EX_DATAERR, "ERROR: root cannot be NULL.\n");
704 
705  do
706  {
707    if(print_this)
708    {
709      path = iter2Path(iter);
710      if(path == NULL)
711        bailOut(EX_OSERR, "ERROR: Could not construct iterator's path.\n");
712     
713      if(!type_filter_enabled || (key_type == type_filter))
714        printKey(cur, path);
715      if(!type_filter_enabled || (key_type != type_filter))
716        printValueList(iter, path);
717     
718      free(path);
719    }
720   
721    if(sub == NULL)
722    {
723      if(cur != root)
724      {
725        /* We're done with this sub-tree, going up and hitting other branches. */
726        if(!regfi_iterator_up(iter))
727          bailOut(EX_DATAERR, "ERROR: could not traverse iterator upward.\n");
728       
729        cur = regfi_iterator_cur_key(iter);
730        if(cur == NULL)
731          bailOut(EX_DATAERR, "ERROR: unexpected NULL for key.\n");
732       
733        sub = regfi_iterator_next_subkey(iter);
734      }
735      print_this = false;
736    }
737    else
738    { /* We have unexplored sub-keys. 
739       * Let's move down and print this first sub-tree out.
740       */
741      if(!regfi_iterator_down(iter))
742        bailOut(EX_DATAERR, "ERROR: could not traverse iterator downward.\n");
743
744      cur = sub;
745      sub = regfi_iterator_first_subkey(iter);
746      print_this = true;
747    }
748  } while(!((cur == root) && (sub == NULL)));
749
750  if(print_verbose)
751    fprintf(stderr, "VERBOSE: Finished printing key tree.\n");
752}
753
754
755/*
756 * Returns 0 if path was not found.
757 * Returns 1 if path was found as value.
758 * Returns 2 if path was found as key.
759 * Returns less than 0 on other error.
760 */
761int retrievePath(REGFI_ITERATOR* iter, char** path)
762{
763  const REGF_VK_REC* value;
764  char* tmp_path_joined;
765  const char** tmp_path;
766  uint32 i;
767 
768  if(path == NULL)
769    return -1;
770
771  /* One extra for any value at the end, and one more for NULL */
772  tmp_path = (const char**)malloc(sizeof(const char**)*(REGF_MAX_DEPTH+1+1));
773  if(tmp_path == NULL)
774    return -2;
775
776  /* Strip any potential value name at end of path */
777  for(i=0; 
778      (path[i] != NULL) && (path[i+1] != NULL) 
779        && (i < REGF_MAX_DEPTH+1+1);
780      i++)
781    tmp_path[i] = path[i];
782
783  tmp_path[i] = NULL;
784
785  if(print_verbose)
786    fprintf(stderr, "VERBOSE: Attempting to retrieve specified path: %s\n",
787            path_filter);
788
789  /* Special check for '/' path filter */
790  if(path[0] == NULL)
791  {
792    if(print_verbose)
793      fprintf(stderr, "VERBOSE: Found final path element as root key.\n");
794    return 2;
795  }
796
797  if(!regfi_iterator_walk_path(iter, tmp_path))
798  {
799    free(tmp_path);
800    return 0;
801  }
802
803  if(regfi_iterator_find_value(iter, path[i]))
804  {
805    if(print_verbose)
806      fprintf(stderr, "VERBOSE: Found final path element as value.\n");
807
808    value = regfi_iterator_cur_value(iter);
809    tmp_path_joined = iter2Path(iter);
810
811    if((value == NULL) || (tmp_path_joined == NULL))
812      bailOut(EX_OSERR, "ERROR: Unexpected error before printValue.\n");
813
814    printValue(value, tmp_path_joined);
815
816    free(tmp_path);
817    free(tmp_path_joined);
818    return 1;
819  }
820  else if(regfi_iterator_find_subkey(iter, path[i]))
821  {
822    if(print_verbose)
823      fprintf(stderr, "VERBOSE: Found final path element as key.\n");
824
825    if(!regfi_iterator_down(iter))
826      bailOut(EX_DATAERR, "ERROR: Unexpected error on traversing path filter key.\n");
827
828    return 2;
829  }
830
831  if(print_verbose)
832    fprintf(stderr, "VERBOSE: Could not find last element of path.\n");
833
834  return 0;
835}
836
837
838static void usage(void)
839{
840  fprintf(stderr, "Usage: reglookup [-v] [-s]"
841          " [-p <PATH_FILTER>] [-t <TYPE_FILTER>]"
842          " <REGISTRY_FILE>\n");
843  fprintf(stderr, "Version: 0.4.0\n");
844  fprintf(stderr, "Options:\n");
845  fprintf(stderr, "\t-v\t sets verbose mode.\n");
846  fprintf(stderr, "\t-h\t enables header row. (default)\n");
847  fprintf(stderr, "\t-H\t disables header row.\n");
848  fprintf(stderr, "\t-s\t enables security descriptor output.\n");
849  fprintf(stderr, "\t-S\t disables security descriptor output. (default)\n");
850  fprintf(stderr, "\t-p\t restrict output to elements below this path.\n");
851  fprintf(stderr, "\t-t\t restrict results to this specific data type.\n");
852  fprintf(stderr, "\n");
853}
854
855
856int main(int argc, char** argv)
857{
858  char** path = NULL;
859  REGF_FILE* f;
860  REGFI_ITERATOR* iter;
861  int retr_path_ret;
862  uint32 argi, arge;
863
864  /* Process command line arguments */
865  if(argc < 2)
866  {
867    usage();
868    bailOut(EX_USAGE, "ERROR: Requires at least one argument.\n");
869  }
870 
871  arge = argc-1;
872  for(argi = 1; argi < arge; argi++)
873  {
874    if (strcmp("-p", argv[argi]) == 0)
875    {
876      if(++argi >= arge)
877      {
878        usage();
879        bailOut(EX_USAGE, "ERROR: '-p' option requires parameter.\n");
880      }
881      if((path_filter = strdup(argv[argi])) == NULL)
882        bailOut(EX_OSERR, "ERROR: Memory allocation problem.\n");
883
884      path_filter_enabled = true;
885    }
886    else if (strcmp("-t", argv[argi]) == 0)
887    {
888      if(++argi >= arge)
889      {
890        usage();
891        bailOut(EX_USAGE, "ERROR: '-t' option requires parameter.\n");
892      }
893      if((type_filter = regfi_type_str2val(argv[argi])) < 0)
894      {
895        fprintf(stderr, "ERROR: Invalid type specified: %s.\n", argv[argi]);
896        bailOut(EX_USAGE, "");
897      }
898      type_filter_enabled = true;
899    }
900    else if (strcmp("-h", argv[argi]) == 0)
901      print_header = true;
902    else if (strcmp("-H", argv[argi]) == 0)
903      print_header = false;
904    else if (strcmp("-s", argv[argi]) == 0)
905      print_security = true;
906    else if (strcmp("-S", argv[argi]) == 0)
907      print_security = false;
908    else if (strcmp("-v", argv[argi]) == 0)
909      print_verbose = true;
910    else
911    {
912      usage();
913      fprintf(stderr, "ERROR: Unrecognized option: %s\n", argv[argi]);
914      bailOut(EX_USAGE, "");
915    }
916  }
917  if((registry_file = strdup(argv[argi])) == NULL)
918    bailOut(EX_OSERR, "ERROR: Memory allocation problem.\n");
919
920  f = regfi_open(registry_file);
921  if(f == NULL)
922  {
923    fprintf(stderr, "ERROR: Couldn't open registry file: %s\n", registry_file);
924    bailOut(EX_NOINPUT, "");
925  }
926
927  iter = regfi_iterator_new(f);
928  if(iter == NULL)
929    bailOut(EX_OSERR, "ERROR: Couldn't create registry iterator.\n");
930
931  if(print_header)
932  {
933    if(print_security)
934      printf("PATH,TYPE,VALUE,MTIME,OWNER,GROUP,SACL,DACL\n");
935    else
936      printf("PATH,TYPE,VALUE,MTIME\n");
937  }
938
939  if(path_filter_enabled && path_filter != NULL)
940    path = splitPath(path_filter);
941
942  if(path != NULL)
943  {
944    retr_path_ret = retrievePath(iter, path);
945    freePath(path);
946
947    if(retr_path_ret == 0)
948      fprintf(stderr, "WARNING: specified path not found.\n");
949    else if (retr_path_ret == 2)
950      printKeyTree(iter);
951    else if(retr_path_ret != 0)
952      bailOut(EX_DATAERR, "ERROR: Unknown error occurred in retrieving path.\n");
953  }
954  else
955    printKeyTree(iter);
956
957  regfi_iterator_free(iter);
958  regfi_close(f);
959
960  return 0;
961}
Note: See TracBrowser for help on using the repository browser.