[30] | 1 | /* |
---|
[135] | 2 | * A utility to read a Windows NT and later registry files. |
---|
[30] | 3 | * |
---|
[135] | 4 | * Copyright (C) 2005-2009 Timothy D. Morgan |
---|
[42] | 5 | * Copyright (C) 2002 Richard Sharpe, rsharpe@richardsharpe.com |
---|
[30] | 6 | * |
---|
| 7 | * This program is free software; you can redistribute it and/or modify |
---|
| 8 | * it under the terms of the GNU General Public License as published by |
---|
[111] | 9 | * the Free Software Foundation; version 3 of the License. |
---|
[30] | 10 | * |
---|
| 11 | * This program is distributed in the hope that it will be useful, |
---|
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 14 | * GNU General Public License for more details. |
---|
| 15 | * |
---|
| 16 | * You should have received a copy of the GNU General Public License |
---|
| 17 | * along with this program; if not, write to the Free Software |
---|
| 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
| 19 | * |
---|
| 20 | * $Id: reglookup.c 143 2009-02-13 03:24:27Z tim $ |
---|
| 21 | */ |
---|
| 22 | |
---|
| 23 | |
---|
| 24 | #include <stdlib.h> |
---|
| 25 | #include <stdio.h> |
---|
| 26 | #include <string.h> |
---|
[33] | 27 | #include <strings.h> |
---|
[42] | 28 | #include <time.h> |
---|
[79] | 29 | #include "../include/regfi.h" |
---|
[31] | 30 | #include "../include/void_stack.h" |
---|
[30] | 31 | |
---|
[40] | 32 | /* Globals, influenced by command line parameters */ |
---|
| 33 | bool print_verbose = false; |
---|
| 34 | bool print_security = false; |
---|
[42] | 35 | bool print_header = true; |
---|
[40] | 36 | bool path_filter_enabled = false; |
---|
| 37 | bool type_filter_enabled = false; |
---|
| 38 | char* path_filter = NULL; |
---|
| 39 | int type_filter; |
---|
| 40 | char* registry_file = NULL; |
---|
| 41 | |
---|
[42] | 42 | /* Other globals */ |
---|
[135] | 43 | REGFI_FILE* f; |
---|
[66] | 44 | |
---|
[40] | 45 | |
---|
[116] | 46 | /* XXX: A hack to share some functions with reglookup-recover.c. |
---|
[125] | 47 | * Should move these into a proper library at some point. |
---|
[111] | 48 | */ |
---|
| 49 | #include "common.c" |
---|
[61] | 50 | |
---|
[38] | 51 | |
---|
[135] | 52 | void printValue(const REGFI_VK_REC* vk, char* prefix) |
---|
[41] | 53 | { |
---|
[111] | 54 | char* quoted_value = NULL; |
---|
| 55 | char* quoted_name = NULL; |
---|
| 56 | char* conv_error = NULL; |
---|
| 57 | const char* str_type = NULL; |
---|
| 58 | uint32 size = vk->data_size; |
---|
[41] | 59 | |
---|
[111] | 60 | /* Microsoft's documentation indicates that "available memory" is |
---|
| 61 | * the limit on value sizes. Annoying. We limit it to 1M which |
---|
| 62 | * should rarely be exceeded, unless the file is corrupt or |
---|
| 63 | * malicious. For more info, see: |
---|
| 64 | * http://msdn2.microsoft.com/en-us/library/ms724872.aspx |
---|
| 65 | */ |
---|
[135] | 66 | if(size > REGFI_VK_MAX_DATA_LENGTH) |
---|
[41] | 67 | { |
---|
[137] | 68 | fprintf(stderr, "WARN: value data size %d larger than " |
---|
[135] | 69 | "%d, truncating...\n", size, REGFI_VK_MAX_DATA_LENGTH); |
---|
| 70 | size = REGFI_VK_MAX_DATA_LENGTH; |
---|
[41] | 71 | } |
---|
[111] | 72 | |
---|
| 73 | quoted_name = quote_string(vk->valuename, key_special_chars); |
---|
| 74 | if (quoted_name == NULL) |
---|
| 75 | { /* Value names are NULL when we're looking at the "(default)" value. |
---|
| 76 | * Currently we just return a 0-length string to try an eliminate |
---|
| 77 | * ambiguity with a literal "(default)" value. The data type of a line |
---|
| 78 | * in the output allows one to differentiate between the parent key and |
---|
| 79 | * this value. |
---|
| 80 | */ |
---|
| 81 | quoted_name = malloc(1*sizeof(char)); |
---|
| 82 | if(quoted_name == NULL) |
---|
[143] | 83 | bailOut(REGLOOKUP_EXIT_OSERR, "ERROR: Could not allocate sufficient memory.\n"); |
---|
[111] | 84 | quoted_name[0] = '\0'; |
---|
| 85 | } |
---|
[41] | 86 | |
---|
[138] | 87 | if(vk->data == NULL) |
---|
[41] | 88 | { |
---|
[138] | 89 | if(print_verbose) |
---|
| 90 | fprintf(stderr, "INFO: While quoting value for '%s/%s', " |
---|
| 91 | "data pointer was NULL.\n", prefix, quoted_name); |
---|
[41] | 92 | } |
---|
[138] | 93 | else |
---|
| 94 | { |
---|
| 95 | quoted_value = data_to_ascii(vk->data, size, vk->type, &conv_error); |
---|
| 96 | if(quoted_value == NULL) |
---|
| 97 | { |
---|
| 98 | if(conv_error == NULL) |
---|
| 99 | fprintf(stderr, "WARN: Could not quote value for '%s/%s'. " |
---|
| 100 | "Memory allocation failure likely.\n", prefix, quoted_name); |
---|
| 101 | else |
---|
| 102 | fprintf(stderr, "WARN: Could not quote value for '%s/%s'. " |
---|
| 103 | "Returned error: %s\n", prefix, quoted_name, conv_error); |
---|
| 104 | } |
---|
| 105 | else if(conv_error != NULL && print_verbose) |
---|
| 106 | fprintf(stderr, "INFO: While quoting value for '%s/%s', " |
---|
| 107 | "warning returned: %s\n", prefix, quoted_name, conv_error); |
---|
| 108 | } |
---|
[41] | 109 | |
---|
[111] | 110 | str_type = regfi_type_val2str(vk->type); |
---|
| 111 | if(print_security) |
---|
[41] | 112 | { |
---|
[111] | 113 | if(str_type == NULL) |
---|
| 114 | printf("%s/%s,0x%.8X,%s,,,,,\n", prefix, quoted_name, |
---|
| 115 | vk->type, quoted_value); |
---|
[66] | 116 | else |
---|
[111] | 117 | printf("%s/%s,%s,%s,,,,,\n", prefix, quoted_name, |
---|
| 118 | str_type, quoted_value); |
---|
[71] | 119 | } |
---|
[111] | 120 | else |
---|
| 121 | { |
---|
| 122 | if(str_type == NULL) |
---|
| 123 | printf("%s/%s,0x%.8X,%s,\n", prefix, quoted_name, |
---|
| 124 | vk->type, quoted_value); |
---|
| 125 | else |
---|
| 126 | printf("%s/%s,%s,%s,\n", prefix, quoted_name, |
---|
| 127 | str_type, quoted_value); |
---|
| 128 | } |
---|
[42] | 129 | |
---|
[111] | 130 | if(quoted_value != NULL) |
---|
| 131 | free(quoted_value); |
---|
| 132 | if(quoted_name != NULL) |
---|
| 133 | free(quoted_name); |
---|
| 134 | if(conv_error != NULL) |
---|
| 135 | free(conv_error); |
---|
[41] | 136 | } |
---|
| 137 | |
---|
| 138 | |
---|
[81] | 139 | char** splitPath(const char* s) |
---|
[30] | 140 | { |
---|
[81] | 141 | char** ret_val; |
---|
[38] | 142 | const char* cur = s; |
---|
[33] | 143 | char* next = NULL; |
---|
[38] | 144 | char* copy; |
---|
[81] | 145 | uint32 ret_cur = 0; |
---|
[38] | 146 | |
---|
[135] | 147 | ret_val = (char**)malloc((REGFI_MAX_DEPTH+1+1)*sizeof(char**)); |
---|
[81] | 148 | if (ret_val == NULL) |
---|
[38] | 149 | return NULL; |
---|
[81] | 150 | ret_val[0] = NULL; |
---|
| 151 | |
---|
| 152 | /* We return a well-formed, 0-length, path even when input is icky. */ |
---|
[37] | 153 | if (s == NULL) |
---|
[81] | 154 | return ret_val; |
---|
[38] | 155 | |
---|
| 156 | while((next = strchr(cur, '/')) != NULL) |
---|
[33] | 157 | { |
---|
[38] | 158 | if ((next-cur) > 0) |
---|
| 159 | { |
---|
| 160 | copy = (char*)malloc((next-cur+1)*sizeof(char)); |
---|
| 161 | if(copy == NULL) |
---|
[143] | 162 | bailOut(REGLOOKUP_EXIT_OSERR, "ERROR: Memory allocation problem.\n"); |
---|
[38] | 163 | |
---|
| 164 | memcpy(copy, cur, next-cur); |
---|
| 165 | copy[next-cur] = '\0'; |
---|
[81] | 166 | ret_val[ret_cur++] = copy; |
---|
[135] | 167 | if(ret_cur < (REGFI_MAX_DEPTH+1+1)) |
---|
[81] | 168 | ret_val[ret_cur] = NULL; |
---|
| 169 | else |
---|
[143] | 170 | bailOut(REGLOOKUP_EXIT_DATAERR, "ERROR: Registry maximum depth exceeded.\n"); |
---|
[38] | 171 | } |
---|
| 172 | cur = next+1; |
---|
[33] | 173 | } |
---|
[81] | 174 | |
---|
| 175 | /* Grab last element, if path doesn't end in '/'. */ |
---|
[33] | 176 | if(strlen(cur) > 0) |
---|
[38] | 177 | { |
---|
| 178 | copy = strdup(cur); |
---|
[81] | 179 | ret_val[ret_cur++] = copy; |
---|
[135] | 180 | if(ret_cur < (REGFI_MAX_DEPTH+1+1)) |
---|
[81] | 181 | ret_val[ret_cur] = NULL; |
---|
| 182 | else |
---|
[143] | 183 | bailOut(REGLOOKUP_EXIT_DATAERR, "ERROR: Registry maximum depth exceeded.\n"); |
---|
[38] | 184 | } |
---|
[33] | 185 | |
---|
| 186 | return ret_val; |
---|
| 187 | } |
---|
| 188 | |
---|
[81] | 189 | |
---|
[83] | 190 | void freePath(char** path) |
---|
| 191 | { |
---|
| 192 | uint32 i; |
---|
| 193 | |
---|
| 194 | if(path == NULL) |
---|
| 195 | return; |
---|
| 196 | |
---|
| 197 | for(i=0; path[i] != NULL; i++) |
---|
| 198 | free(path[i]); |
---|
| 199 | |
---|
| 200 | free(path); |
---|
| 201 | } |
---|
| 202 | |
---|
| 203 | |
---|
[81] | 204 | /* Returns a quoted path from an iterator's stack */ |
---|
| 205 | char* iter2Path(REGFI_ITERATOR* i) |
---|
[33] | 206 | { |
---|
[81] | 207 | const REGFI_ITER_POSITION* cur; |
---|
[37] | 208 | uint32 buf_left = 127; |
---|
| 209 | uint32 buf_len = buf_left+1; |
---|
| 210 | uint32 name_len = 0; |
---|
| 211 | uint32 grow_amt; |
---|
[81] | 212 | char* buf; |
---|
[31] | 213 | char* new_buf; |
---|
[66] | 214 | char* name; |
---|
[81] | 215 | const char* cur_name; |
---|
[31] | 216 | void_stack_iterator* iter; |
---|
| 217 | |
---|
| 218 | buf = (char*)malloc((buf_len)*sizeof(char)); |
---|
| 219 | if (buf == NULL) |
---|
| 220 | return NULL; |
---|
[54] | 221 | buf[0] = '\0'; |
---|
[30] | 222 | |
---|
[81] | 223 | iter = void_stack_iterator_new(i->key_positions); |
---|
[31] | 224 | if (iter == NULL) |
---|
[30] | 225 | { |
---|
[31] | 226 | free(buf); |
---|
| 227 | return NULL; |
---|
[30] | 228 | } |
---|
| 229 | |
---|
[33] | 230 | /* skip root element */ |
---|
[81] | 231 | if(void_stack_size(i->key_positions) < 1) |
---|
| 232 | { |
---|
| 233 | buf[0] = '/'; |
---|
| 234 | buf[1] = '\0'; |
---|
| 235 | return buf; |
---|
| 236 | } |
---|
[33] | 237 | cur = void_stack_iterator_next(iter); |
---|
| 238 | |
---|
[81] | 239 | do |
---|
[31] | 240 | { |
---|
[81] | 241 | cur = void_stack_iterator_next(iter); |
---|
| 242 | if (cur == NULL) |
---|
| 243 | cur_name = i->cur_key->keyname; |
---|
| 244 | else |
---|
| 245 | cur_name = cur->nk->keyname; |
---|
| 246 | |
---|
[33] | 247 | buf[buf_len-buf_left-1] = '/'; |
---|
| 248 | buf_left -= 1; |
---|
[81] | 249 | name = quote_string(cur_name, key_special_chars); |
---|
[66] | 250 | name_len = strlen(name); |
---|
[31] | 251 | if(name_len+1 > buf_left) |
---|
| 252 | { |
---|
[37] | 253 | grow_amt = (uint32)(buf_len/2); |
---|
[31] | 254 | buf_len += name_len+1+grow_amt-buf_left; |
---|
| 255 | if((new_buf = realloc(buf, buf_len)) == NULL) |
---|
| 256 | { |
---|
[136] | 257 | free(name); |
---|
[31] | 258 | free(buf); |
---|
| 259 | free(iter); |
---|
| 260 | return NULL; |
---|
| 261 | } |
---|
| 262 | buf = new_buf; |
---|
| 263 | buf_left = grow_amt + name_len + 1; |
---|
| 264 | } |
---|
[66] | 265 | strncpy(buf+(buf_len-buf_left-1), name, name_len); |
---|
[31] | 266 | buf_left -= name_len; |
---|
| 267 | buf[buf_len-buf_left-1] = '\0'; |
---|
[66] | 268 | free(name); |
---|
[81] | 269 | } while(cur != NULL); |
---|
[30] | 270 | |
---|
[31] | 271 | return buf; |
---|
| 272 | } |
---|
[30] | 273 | |
---|
[31] | 274 | |
---|
[137] | 275 | void printValueList(REGFI_ITERATOR* iter, char* prefix) |
---|
[32] | 276 | { |
---|
[135] | 277 | const REGFI_VK_REC* value; |
---|
[80] | 278 | |
---|
[137] | 279 | value = regfi_iterator_first_value(iter); |
---|
[80] | 280 | while(value != NULL) |
---|
[81] | 281 | { |
---|
| 282 | if(!type_filter_enabled || (value->type == type_filter)) |
---|
[80] | 283 | printValue(value, prefix); |
---|
[137] | 284 | value = regfi_iterator_next_value(iter); |
---|
[138] | 285 | printMsgs(iter->f); |
---|
[81] | 286 | } |
---|
[33] | 287 | } |
---|
| 288 | |
---|
[37] | 289 | |
---|
[137] | 290 | void printKey(REGFI_ITERATOR* iter, char* full_path) |
---|
[33] | 291 | { |
---|
[43] | 292 | static char empty_str[1] = ""; |
---|
[42] | 293 | char* owner = NULL; |
---|
| 294 | char* group = NULL; |
---|
| 295 | char* sacl = NULL; |
---|
| 296 | char* dacl = NULL; |
---|
[125] | 297 | char* quoted_classname; |
---|
[126] | 298 | char* error_msg = NULL; |
---|
[42] | 299 | char mtime[20]; |
---|
| 300 | time_t tmp_time[1]; |
---|
| 301 | struct tm* tmp_time_s = NULL; |
---|
[135] | 302 | const REGFI_SK_REC* sk; |
---|
[137] | 303 | const REGFI_NK_REC* k = regfi_iterator_cur_key(iter); |
---|
[42] | 304 | |
---|
[43] | 305 | *tmp_time = nt_time_to_unix(&k->mtime); |
---|
| 306 | tmp_time_s = gmtime(tmp_time); |
---|
| 307 | strftime(mtime, sizeof(mtime), "%Y-%m-%d %H:%M:%S", tmp_time_s); |
---|
| 308 | |
---|
[137] | 309 | if(print_security && (sk=regfi_iterator_cur_sk(iter))) |
---|
[43] | 310 | { |
---|
[109] | 311 | owner = regfi_get_owner(sk->sec_desc); |
---|
| 312 | group = regfi_get_group(sk->sec_desc); |
---|
| 313 | sacl = regfi_get_sacl(sk->sec_desc); |
---|
| 314 | dacl = regfi_get_dacl(sk->sec_desc); |
---|
[43] | 315 | if(owner == NULL) |
---|
| 316 | owner = empty_str; |
---|
| 317 | if(group == NULL) |
---|
| 318 | group = empty_str; |
---|
| 319 | if(sacl == NULL) |
---|
| 320 | sacl = empty_str; |
---|
| 321 | if(dacl == NULL) |
---|
| 322 | dacl = empty_str; |
---|
| 323 | |
---|
[125] | 324 | if(k->classname != NULL) |
---|
[126] | 325 | { |
---|
| 326 | quoted_classname = quote_unicode((uint8*)k->classname, k->classname_length, |
---|
| 327 | key_special_chars, &error_msg); |
---|
| 328 | if(quoted_classname == NULL) |
---|
| 329 | { |
---|
| 330 | if(error_msg == NULL) |
---|
| 331 | fprintf(stderr, "ERROR: Could not quote classname" |
---|
| 332 | " for key '%s' due to unknown error.\n", full_path); |
---|
| 333 | else |
---|
| 334 | { |
---|
| 335 | fprintf(stderr, "ERROR: Could not quote classname" |
---|
| 336 | " for key '%s' due to error: %s\n", full_path, error_msg); |
---|
| 337 | free(error_msg); |
---|
| 338 | } |
---|
| 339 | } |
---|
| 340 | else if (error_msg != NULL) |
---|
| 341 | { |
---|
| 342 | if(print_verbose) |
---|
[138] | 343 | fprintf(stderr, "INFO: While converting classname" |
---|
[126] | 344 | " for key '%s': %s.\n", full_path, error_msg); |
---|
| 345 | free(error_msg); |
---|
| 346 | } |
---|
| 347 | } |
---|
[125] | 348 | else |
---|
| 349 | quoted_classname = empty_str; |
---|
[43] | 350 | |
---|
[138] | 351 | printMsgs(iter->f); |
---|
[125] | 352 | printf("%s,KEY,,%s,%s,%s,%s,%s,%s\n", full_path, mtime, |
---|
| 353 | owner, group, sacl, dacl, quoted_classname); |
---|
| 354 | |
---|
[43] | 355 | if(owner != empty_str) |
---|
| 356 | free(owner); |
---|
| 357 | if(group != empty_str) |
---|
| 358 | free(group); |
---|
| 359 | if(sacl != empty_str) |
---|
| 360 | free(sacl); |
---|
| 361 | if(dacl != empty_str) |
---|
| 362 | free(dacl); |
---|
[125] | 363 | if(quoted_classname != empty_str) |
---|
| 364 | free(quoted_classname); |
---|
[43] | 365 | } |
---|
| 366 | else |
---|
[66] | 367 | printf("%s,KEY,,%s\n", full_path, mtime); |
---|
[43] | 368 | } |
---|
| 369 | |
---|
| 370 | |
---|
[81] | 371 | void printKeyTree(REGFI_ITERATOR* iter) |
---|
[43] | 372 | { |
---|
[135] | 373 | const REGFI_NK_REC* root = NULL; |
---|
| 374 | const REGFI_NK_REC* cur = NULL; |
---|
| 375 | const REGFI_NK_REC* sub = NULL; |
---|
[43] | 376 | char* path = NULL; |
---|
[78] | 377 | int key_type = regfi_type_str2val("KEY"); |
---|
[81] | 378 | bool print_this = true; |
---|
| 379 | |
---|
| 380 | root = cur = regfi_iterator_cur_key(iter); |
---|
| 381 | sub = regfi_iterator_first_subkey(iter); |
---|
[138] | 382 | printMsgs(iter->f); |
---|
[137] | 383 | |
---|
[81] | 384 | if(root == NULL) |
---|
[143] | 385 | bailOut(REGLOOKUP_EXIT_DATAERR, "ERROR: root cannot be NULL.\n"); |
---|
[81] | 386 | |
---|
| 387 | do |
---|
[31] | 388 | { |
---|
[81] | 389 | if(print_this) |
---|
[54] | 390 | { |
---|
[81] | 391 | path = iter2Path(iter); |
---|
| 392 | if(path == NULL) |
---|
[143] | 393 | bailOut(REGLOOKUP_EXIT_OSERR, "ERROR: Could not construct iterator's path.\n"); |
---|
[137] | 394 | |
---|
[81] | 395 | if(!type_filter_enabled || (key_type == type_filter)) |
---|
[109] | 396 | printKey(iter, path); |
---|
[81] | 397 | if(!type_filter_enabled || (key_type != type_filter)) |
---|
| 398 | printValueList(iter, path); |
---|
| 399 | |
---|
| 400 | free(path); |
---|
[54] | 401 | } |
---|
[66] | 402 | |
---|
[81] | 403 | if(sub == NULL) |
---|
[31] | 404 | { |
---|
[81] | 405 | if(cur != root) |
---|
[31] | 406 | { |
---|
[81] | 407 | /* We're done with this sub-tree, going up and hitting other branches. */ |
---|
| 408 | if(!regfi_iterator_up(iter)) |
---|
[137] | 409 | { |
---|
[138] | 410 | printMsgs(iter->f); |
---|
[143] | 411 | bailOut(REGLOOKUP_EXIT_DATAERR, "ERROR: could not traverse iterator upward.\n"); |
---|
[137] | 412 | } |
---|
| 413 | |
---|
[81] | 414 | cur = regfi_iterator_cur_key(iter); |
---|
| 415 | if(cur == NULL) |
---|
[137] | 416 | { |
---|
[138] | 417 | printMsgs(iter->f); |
---|
[143] | 418 | bailOut(REGLOOKUP_EXIT_DATAERR, "ERROR: unexpected NULL for key.\n"); |
---|
[137] | 419 | } |
---|
| 420 | |
---|
[81] | 421 | sub = regfi_iterator_next_subkey(iter); |
---|
[66] | 422 | } |
---|
[81] | 423 | print_this = false; |
---|
[31] | 424 | } |
---|
[81] | 425 | else |
---|
| 426 | { /* We have unexplored sub-keys. |
---|
| 427 | * Let's move down and print this first sub-tree out. |
---|
| 428 | */ |
---|
| 429 | if(!regfi_iterator_down(iter)) |
---|
[137] | 430 | { |
---|
[138] | 431 | printMsgs(iter->f); |
---|
[143] | 432 | bailOut(REGLOOKUP_EXIT_DATAERR, "ERROR: could not traverse iterator downward.\n"); |
---|
[137] | 433 | } |
---|
[81] | 434 | |
---|
| 435 | cur = sub; |
---|
| 436 | sub = regfi_iterator_first_subkey(iter); |
---|
| 437 | print_this = true; |
---|
| 438 | } |
---|
[138] | 439 | printMsgs(iter->f); |
---|
[81] | 440 | } while(!((cur == root) && (sub == NULL))); |
---|
| 441 | |
---|
[54] | 442 | if(print_verbose) |
---|
[138] | 443 | fprintf(stderr, "INFO: Finished printing key tree.\n"); |
---|
[30] | 444 | } |
---|
| 445 | |
---|
[81] | 446 | |
---|
[140] | 447 | /* XXX: What if there is BOTH a value AND a key with that name?? |
---|
| 448 | * What if there are multiple keys/values with the same name?? |
---|
| 449 | */ |
---|
[33] | 450 | /* |
---|
[80] | 451 | * Returns 0 if path was not found. |
---|
| 452 | * Returns 1 if path was found as value. |
---|
| 453 | * Returns 2 if path was found as key. |
---|
[33] | 454 | * Returns less than 0 on other error. |
---|
| 455 | */ |
---|
[80] | 456 | int retrievePath(REGFI_ITERATOR* iter, char** path) |
---|
[33] | 457 | { |
---|
[135] | 458 | const REGFI_VK_REC* value; |
---|
[81] | 459 | char* tmp_path_joined; |
---|
| 460 | const char** tmp_path; |
---|
[80] | 461 | uint32 i; |
---|
| 462 | |
---|
| 463 | if(path == NULL) |
---|
[33] | 464 | return -1; |
---|
| 465 | |
---|
[80] | 466 | /* One extra for any value at the end, and one more for NULL */ |
---|
[135] | 467 | tmp_path = (const char**)malloc(sizeof(const char**)*(REGFI_MAX_DEPTH+1+1)); |
---|
[80] | 468 | if(tmp_path == NULL) |
---|
[33] | 469 | return -2; |
---|
| 470 | |
---|
[80] | 471 | /* Strip any potential value name at end of path */ |
---|
| 472 | for(i=0; |
---|
[136] | 473 | (path[i] != NULL) && (path[i+1] != NULL) && (i < REGFI_MAX_DEPTH+1); |
---|
[80] | 474 | i++) |
---|
[136] | 475 | { tmp_path[i] = path[i]; } |
---|
[80] | 476 | tmp_path[i] = NULL; |
---|
| 477 | |
---|
[54] | 478 | if(print_verbose) |
---|
[138] | 479 | fprintf(stderr, "INFO: Attempting to retrieve specified path: %s\n", |
---|
[54] | 480 | path_filter); |
---|
| 481 | |
---|
[82] | 482 | /* Special check for '/' path filter */ |
---|
| 483 | if(path[0] == NULL) |
---|
| 484 | { |
---|
| 485 | if(print_verbose) |
---|
[138] | 486 | fprintf(stderr, "INFO: Found final path element as root key.\n"); |
---|
[136] | 487 | free(tmp_path); |
---|
[82] | 488 | return 2; |
---|
| 489 | } |
---|
| 490 | |
---|
[80] | 491 | if(!regfi_iterator_walk_path(iter, tmp_path)) |
---|
[33] | 492 | { |
---|
[138] | 493 | printMsgs(iter->f); |
---|
[80] | 494 | free(tmp_path); |
---|
| 495 | return 0; |
---|
[33] | 496 | } |
---|
| 497 | |
---|
[80] | 498 | if(regfi_iterator_find_value(iter, path[i])) |
---|
| 499 | { |
---|
| 500 | if(print_verbose) |
---|
[138] | 501 | fprintf(stderr, "INFO: Found final path element as value.\n"); |
---|
[33] | 502 | |
---|
[80] | 503 | value = regfi_iterator_cur_value(iter); |
---|
[138] | 504 | printMsgs(iter->f); |
---|
[81] | 505 | tmp_path_joined = iter2Path(iter); |
---|
[54] | 506 | |
---|
[80] | 507 | if((value == NULL) || (tmp_path_joined == NULL)) |
---|
[143] | 508 | bailOut(REGLOOKUP_EXIT_OSERR, "ERROR: Unexpected error before printValue.\n"); |
---|
[54] | 509 | |
---|
[121] | 510 | if(!type_filter_enabled || (value->type == type_filter)) |
---|
| 511 | printValue(value, tmp_path_joined); |
---|
[54] | 512 | |
---|
[80] | 513 | free(tmp_path); |
---|
| 514 | free(tmp_path_joined); |
---|
| 515 | return 1; |
---|
[33] | 516 | } |
---|
[80] | 517 | else if(regfi_iterator_find_subkey(iter, path[i])) |
---|
[33] | 518 | { |
---|
[138] | 519 | printMsgs(iter->f); |
---|
[80] | 520 | if(print_verbose) |
---|
[138] | 521 | fprintf(stderr, "INFO: Found final path element as key.\n"); |
---|
[82] | 522 | |
---|
| 523 | if(!regfi_iterator_down(iter)) |
---|
[137] | 524 | { |
---|
[138] | 525 | printMsgs(iter->f); |
---|
[143] | 526 | bailOut(REGLOOKUP_EXIT_DATAERR, "ERROR: Unexpected error on traversing path filter key.\n"); |
---|
[137] | 527 | } |
---|
[82] | 528 | |
---|
[80] | 529 | return 2; |
---|
[33] | 530 | } |
---|
[138] | 531 | printMsgs(iter->f); |
---|
[33] | 532 | |
---|
[54] | 533 | if(print_verbose) |
---|
[138] | 534 | fprintf(stderr, "INFO: Could not find last element of path.\n"); |
---|
[54] | 535 | |
---|
[80] | 536 | return 0; |
---|
[33] | 537 | } |
---|
| 538 | |
---|
| 539 | |
---|
[37] | 540 | static void usage(void) |
---|
| 541 | { |
---|
[61] | 542 | fprintf(stderr, "Usage: reglookup [-v] [-s]" |
---|
[40] | 543 | " [-p <PATH_FILTER>] [-t <TYPE_FILTER>]" |
---|
[39] | 544 | " <REGISTRY_FILE>\n"); |
---|
[111] | 545 | fprintf(stderr, "Version: %s\n", REGLOOKUP_VERSION); |
---|
[39] | 546 | fprintf(stderr, "Options:\n"); |
---|
| 547 | fprintf(stderr, "\t-v\t sets verbose mode.\n"); |
---|
[47] | 548 | fprintf(stderr, "\t-h\t enables header row. (default)\n"); |
---|
| 549 | fprintf(stderr, "\t-H\t disables header row.\n"); |
---|
[44] | 550 | fprintf(stderr, "\t-s\t enables security descriptor output.\n"); |
---|
| 551 | fprintf(stderr, "\t-S\t disables security descriptor output. (default)\n"); |
---|
[40] | 552 | fprintf(stderr, "\t-p\t restrict output to elements below this path.\n"); |
---|
| 553 | fprintf(stderr, "\t-t\t restrict results to this specific data type.\n"); |
---|
[37] | 554 | fprintf(stderr, "\n"); |
---|
| 555 | } |
---|
| 556 | |
---|
| 557 | |
---|
[30] | 558 | int main(int argc, char** argv) |
---|
| 559 | { |
---|
[80] | 560 | char** path = NULL; |
---|
| 561 | REGFI_ITERATOR* iter; |
---|
[33] | 562 | int retr_path_ret; |
---|
[44] | 563 | uint32 argi, arge; |
---|
[31] | 564 | |
---|
[37] | 565 | /* Process command line arguments */ |
---|
[30] | 566 | if(argc < 2) |
---|
| 567 | { |
---|
[37] | 568 | usage(); |
---|
[143] | 569 | bailOut(REGLOOKUP_EXIT_USAGE, "ERROR: Requires at least one argument.\n"); |
---|
[30] | 570 | } |
---|
[37] | 571 | |
---|
[44] | 572 | arge = argc-1; |
---|
| 573 | for(argi = 1; argi < arge; argi++) |
---|
[37] | 574 | { |
---|
[40] | 575 | if (strcmp("-p", argv[argi]) == 0) |
---|
[37] | 576 | { |
---|
[44] | 577 | if(++argi >= arge) |
---|
[37] | 578 | { |
---|
| 579 | usage(); |
---|
[143] | 580 | bailOut(REGLOOKUP_EXIT_USAGE, "ERROR: '-p' option requires parameter.\n"); |
---|
[37] | 581 | } |
---|
[40] | 582 | if((path_filter = strdup(argv[argi])) == NULL) |
---|
[143] | 583 | bailOut(REGLOOKUP_EXIT_OSERR, "ERROR: Memory allocation problem.\n"); |
---|
[38] | 584 | |
---|
[40] | 585 | path_filter_enabled = true; |
---|
[37] | 586 | } |
---|
| 587 | else if (strcmp("-t", argv[argi]) == 0) |
---|
| 588 | { |
---|
[44] | 589 | if(++argi >= arge) |
---|
[37] | 590 | { |
---|
| 591 | usage(); |
---|
[143] | 592 | bailOut(REGLOOKUP_EXIT_USAGE, "ERROR: '-t' option requires parameter.\n"); |
---|
[37] | 593 | } |
---|
[78] | 594 | if((type_filter = regfi_type_str2val(argv[argi])) < 0) |
---|
[40] | 595 | { |
---|
| 596 | fprintf(stderr, "ERROR: Invalid type specified: %s.\n", argv[argi]); |
---|
[143] | 597 | bailOut(REGLOOKUP_EXIT_USAGE, ""); |
---|
[40] | 598 | } |
---|
[37] | 599 | type_filter_enabled = true; |
---|
| 600 | } |
---|
[47] | 601 | else if (strcmp("-h", argv[argi]) == 0) |
---|
| 602 | print_header = true; |
---|
| 603 | else if (strcmp("-H", argv[argi]) == 0) |
---|
| 604 | print_header = false; |
---|
[37] | 605 | else if (strcmp("-s", argv[argi]) == 0) |
---|
| 606 | print_security = true; |
---|
[44] | 607 | else if (strcmp("-S", argv[argi]) == 0) |
---|
| 608 | print_security = false; |
---|
[37] | 609 | else if (strcmp("-v", argv[argi]) == 0) |
---|
| 610 | print_verbose = true; |
---|
[44] | 611 | else |
---|
[37] | 612 | { |
---|
[38] | 613 | usage(); |
---|
[37] | 614 | fprintf(stderr, "ERROR: Unrecognized option: %s\n", argv[argi]); |
---|
[143] | 615 | bailOut(REGLOOKUP_EXIT_USAGE, ""); |
---|
[37] | 616 | } |
---|
| 617 | } |
---|
[44] | 618 | if((registry_file = strdup(argv[argi])) == NULL) |
---|
[143] | 619 | bailOut(REGLOOKUP_EXIT_OSERR, "ERROR: Memory allocation problem.\n"); |
---|
[30] | 620 | |
---|
[110] | 621 | f = regfi_open(registry_file); |
---|
[37] | 622 | if(f == NULL) |
---|
| 623 | { |
---|
| 624 | fprintf(stderr, "ERROR: Couldn't open registry file: %s\n", registry_file); |
---|
[143] | 625 | bailOut(REGLOOKUP_EXIT_NOINPUT, ""); |
---|
[37] | 626 | } |
---|
[38] | 627 | |
---|
[138] | 628 | if(print_verbose) |
---|
| 629 | regfi_set_message_mask(f, REGFI_MSG_INFO|REGFI_MSG_WARN|REGFI_MSG_ERROR); |
---|
| 630 | |
---|
[80] | 631 | iter = regfi_iterator_new(f); |
---|
| 632 | if(iter == NULL) |
---|
[143] | 633 | bailOut(REGLOOKUP_EXIT_OSERR, "ERROR: Couldn't create registry iterator.\n"); |
---|
[30] | 634 | |
---|
[81] | 635 | if(print_header) |
---|
| 636 | { |
---|
| 637 | if(print_security) |
---|
[125] | 638 | printf("PATH,TYPE,VALUE,MTIME,OWNER,GROUP,SACL,DACL,CLASS\n"); |
---|
[81] | 639 | else |
---|
| 640 | printf("PATH,TYPE,VALUE,MTIME\n"); |
---|
| 641 | } |
---|
| 642 | |
---|
[80] | 643 | if(path_filter_enabled && path_filter != NULL) |
---|
| 644 | path = splitPath(path_filter); |
---|
[81] | 645 | |
---|
[80] | 646 | if(path != NULL) |
---|
[33] | 647 | { |
---|
[80] | 648 | retr_path_ret = retrievePath(iter, path); |
---|
[138] | 649 | printMsgs(iter->f); |
---|
[83] | 650 | freePath(path); |
---|
| 651 | |
---|
[80] | 652 | if(retr_path_ret == 0) |
---|
[141] | 653 | fprintf(stderr, "WARN: Specified path '%s' not found.\n", path_filter); |
---|
[80] | 654 | else if (retr_path_ret == 2) |
---|
[81] | 655 | printKeyTree(iter); |
---|
[93] | 656 | else if(retr_path_ret < 0) |
---|
| 657 | { |
---|
| 658 | fprintf(stderr, "ERROR: retrievePath() returned %d.\n", |
---|
| 659 | retr_path_ret); |
---|
[143] | 660 | bailOut(REGLOOKUP_EXIT_DATAERR, |
---|
| 661 | "ERROR: Unknown error occurred in retrieving path.\n"); |
---|
[93] | 662 | } |
---|
[33] | 663 | } |
---|
[37] | 664 | else |
---|
[81] | 665 | printKeyTree(iter); |
---|
[31] | 666 | |
---|
[80] | 667 | regfi_iterator_free(iter); |
---|
[78] | 668 | regfi_close(f); |
---|
[30] | 669 | |
---|
| 670 | return 0; |
---|
| 671 | } |
---|