1 | /* |
---|
2 | * Branched from Samba project Subversion repository, version #7470: |
---|
3 | * http://viewcvs.samba.org/cgi-bin/viewcvs.cgi/trunk/source/registry/regfio.c?rev=7470&view=auto |
---|
4 | * |
---|
5 | * Unix SMB/CIFS implementation. |
---|
6 | * Windows NT registry I/O library |
---|
7 | * |
---|
8 | * Copyright (C) 2005-2008 Timothy D. Morgan |
---|
9 | * Copyright (C) 2005 Gerald (Jerry) Carter |
---|
10 | * |
---|
11 | * This program is free software; you can redistribute it and/or modify |
---|
12 | * it under the terms of the GNU General Public License as published by |
---|
13 | * the Free Software Foundation; version 2 of the License. |
---|
14 | * |
---|
15 | * This program is distributed in the hope that it will be useful, |
---|
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
18 | * GNU General Public License for more details. |
---|
19 | * |
---|
20 | * You should have received a copy of the GNU General Public License |
---|
21 | * along with this program; if not, write to the Free Software |
---|
22 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
23 | * |
---|
24 | * $Id: regfi.c 105 2008-04-14 04:55:41Z tim $ |
---|
25 | */ |
---|
26 | |
---|
27 | #include "../include/regfi.h" |
---|
28 | |
---|
29 | |
---|
30 | /* Registry types mapping */ |
---|
31 | const unsigned int regfi_num_reg_types = 12; |
---|
32 | static const char* regfi_type_names[] = |
---|
33 | {"NONE", "SZ", "EXPAND_SZ", "BINARY", "DWORD", "DWORD_BE", "LINK", |
---|
34 | "MULTI_SZ", "RSRC_LIST", "RSRC_DESC", "RSRC_REQ_LIST", "QWORD"}; |
---|
35 | |
---|
36 | |
---|
37 | /* Returns NULL on error */ |
---|
38 | const char* regfi_type_val2str(unsigned int val) |
---|
39 | { |
---|
40 | if(val == REG_KEY) |
---|
41 | return "KEY"; |
---|
42 | |
---|
43 | if(val >= regfi_num_reg_types) |
---|
44 | return NULL; |
---|
45 | |
---|
46 | return regfi_type_names[val]; |
---|
47 | } |
---|
48 | |
---|
49 | |
---|
50 | /* Returns -1 on error */ |
---|
51 | int regfi_type_str2val(const char* str) |
---|
52 | { |
---|
53 | int i; |
---|
54 | |
---|
55 | if(strcmp("KEY", str) == 0) |
---|
56 | return REG_KEY; |
---|
57 | |
---|
58 | for(i=0; i < regfi_num_reg_types; i++) |
---|
59 | if (strcmp(regfi_type_names[i], str) == 0) |
---|
60 | return i; |
---|
61 | |
---|
62 | if(strcmp("DWORD_LE", str) == 0) |
---|
63 | return REG_DWORD_LE; |
---|
64 | |
---|
65 | return -1; |
---|
66 | } |
---|
67 | |
---|
68 | |
---|
69 | /* Security descriptor parsing functions */ |
---|
70 | |
---|
71 | const char* regfi_ace_type2str(uint8 type) |
---|
72 | { |
---|
73 | static const char* map[7] |
---|
74 | = {"ALLOW", "DENY", "AUDIT", "ALARM", |
---|
75 | "ALLOW CPD", "OBJ ALLOW", "OBJ DENY"}; |
---|
76 | if(type < 7) |
---|
77 | return map[type]; |
---|
78 | else |
---|
79 | /* XXX: would be nice to return the unknown integer value. |
---|
80 | * However, as it is a const string, it can't be free()ed later on, |
---|
81 | * so that would need to change. |
---|
82 | */ |
---|
83 | return "UNKNOWN"; |
---|
84 | } |
---|
85 | |
---|
86 | |
---|
87 | /* XXX: need a better reference on the meaning of each flag. */ |
---|
88 | /* For more info, see: |
---|
89 | * http://msdn2.microsoft.com/en-us/library/aa772242.aspx |
---|
90 | */ |
---|
91 | char* regfi_ace_flags2str(uint8 flags) |
---|
92 | { |
---|
93 | static const char* flag_map[32] = |
---|
94 | { "OI", /* Object Inherit */ |
---|
95 | "CI", /* Container Inherit */ |
---|
96 | "NP", /* Non-Propagate */ |
---|
97 | "IO", /* Inherit Only */ |
---|
98 | "IA", /* Inherited ACE */ |
---|
99 | NULL, |
---|
100 | NULL, |
---|
101 | NULL, |
---|
102 | }; |
---|
103 | |
---|
104 | char* ret_val = malloc(35*sizeof(char)); |
---|
105 | char* fo = ret_val; |
---|
106 | uint32 i; |
---|
107 | uint8 f; |
---|
108 | |
---|
109 | if(ret_val == NULL) |
---|
110 | return NULL; |
---|
111 | |
---|
112 | fo[0] = '\0'; |
---|
113 | if (!flags) |
---|
114 | return ret_val; |
---|
115 | |
---|
116 | for(i=0; i < 8; i++) |
---|
117 | { |
---|
118 | f = (1<<i); |
---|
119 | if((flags & f) && (flag_map[i] != NULL)) |
---|
120 | { |
---|
121 | strcpy(fo, flag_map[i]); |
---|
122 | fo += strlen(flag_map[i]); |
---|
123 | *(fo++) = ' '; |
---|
124 | flags ^= f; |
---|
125 | } |
---|
126 | } |
---|
127 | |
---|
128 | /* Any remaining unknown flags are added at the end in hex. */ |
---|
129 | if(flags != 0) |
---|
130 | sprintf(fo, "0x%.2X ", flags); |
---|
131 | |
---|
132 | /* Chop off the last space if we've written anything to ret_val */ |
---|
133 | if(fo != ret_val) |
---|
134 | fo[-1] = '\0'; |
---|
135 | |
---|
136 | /* XXX: what was this old VI flag for?? |
---|
137 | XXX: Is this check right? 0xF == 1|2|4|8, which makes it redundant... |
---|
138 | if (flags == 0xF) { |
---|
139 | if (some) strcat(flg_output, " "); |
---|
140 | some = 1; |
---|
141 | strcat(flg_output, "VI"); |
---|
142 | } |
---|
143 | */ |
---|
144 | |
---|
145 | return ret_val; |
---|
146 | } |
---|
147 | |
---|
148 | |
---|
149 | char* regfi_ace_perms2str(uint32 perms) |
---|
150 | { |
---|
151 | uint32 i, p; |
---|
152 | /* This is more than is needed by a fair margin. */ |
---|
153 | char* ret_val = malloc(350*sizeof(char)); |
---|
154 | char* r = ret_val; |
---|
155 | |
---|
156 | /* Each represents one of 32 permissions bits. NULL is for undefined/reserved bits. |
---|
157 | * For more information, see: |
---|
158 | * http://msdn2.microsoft.com/en-gb/library/aa374892.aspx |
---|
159 | * http://msdn2.microsoft.com/en-gb/library/ms724878.aspx |
---|
160 | */ |
---|
161 | static const char* perm_map[32] = |
---|
162 | {/* object-specific permissions (registry keys, in this case) */ |
---|
163 | "QRY_VAL", /* KEY_QUERY_VALUE */ |
---|
164 | "SET_VAL", /* KEY_SET_VALUE */ |
---|
165 | "CREATE_KEY", /* KEY_CREATE_SUB_KEY */ |
---|
166 | "ENUM_KEYS", /* KEY_ENUMERATE_SUB_KEYS */ |
---|
167 | "NOTIFY", /* KEY_NOTIFY */ |
---|
168 | "CREATE_LNK", /* KEY_CREATE_LINK - Reserved for system use. */ |
---|
169 | NULL, |
---|
170 | NULL, |
---|
171 | "WOW64_64", /* KEY_WOW64_64KEY */ |
---|
172 | "WOW64_32", /* KEY_WOW64_32KEY */ |
---|
173 | NULL, |
---|
174 | NULL, |
---|
175 | NULL, |
---|
176 | NULL, |
---|
177 | NULL, |
---|
178 | NULL, |
---|
179 | /* standard access rights */ |
---|
180 | "DELETE", /* DELETE */ |
---|
181 | "R_CONT", /* READ_CONTROL */ |
---|
182 | "W_DAC", /* WRITE_DAC */ |
---|
183 | "W_OWNER", /* WRITE_OWNER */ |
---|
184 | "SYNC", /* SYNCHRONIZE - Shouldn't be set in registries */ |
---|
185 | NULL, |
---|
186 | NULL, |
---|
187 | NULL, |
---|
188 | /* other generic */ |
---|
189 | "SYS_SEC", /* ACCESS_SYSTEM_SECURITY */ |
---|
190 | "MAX_ALLWD", /* MAXIMUM_ALLOWED */ |
---|
191 | NULL, |
---|
192 | NULL, |
---|
193 | "GEN_A", /* GENERIC_ALL */ |
---|
194 | "GEN_X", /* GENERIC_EXECUTE */ |
---|
195 | "GEN_W", /* GENERIC_WRITE */ |
---|
196 | "GEN_R", /* GENERIC_READ */ |
---|
197 | }; |
---|
198 | |
---|
199 | |
---|
200 | if(ret_val == NULL) |
---|
201 | return NULL; |
---|
202 | |
---|
203 | r[0] = '\0'; |
---|
204 | for(i=0; i < 32; i++) |
---|
205 | { |
---|
206 | p = (1<<i); |
---|
207 | if((perms & p) && (perm_map[i] != NULL)) |
---|
208 | { |
---|
209 | strcpy(r, perm_map[i]); |
---|
210 | r += strlen(perm_map[i]); |
---|
211 | *(r++) = ' '; |
---|
212 | perms ^= p; |
---|
213 | } |
---|
214 | } |
---|
215 | |
---|
216 | /* Any remaining unknown permission bits are added at the end in hex. */ |
---|
217 | if(perms != 0) |
---|
218 | sprintf(r, "0x%.8X ", perms); |
---|
219 | |
---|
220 | /* Chop off the last space if we've written anything to ret_val */ |
---|
221 | if(r != ret_val) |
---|
222 | r[-1] = '\0'; |
---|
223 | |
---|
224 | return ret_val; |
---|
225 | } |
---|
226 | |
---|
227 | |
---|
228 | char* regfi_sid2str(DOM_SID* sid) |
---|
229 | { |
---|
230 | uint32 i, size = MAXSUBAUTHS*11 + 24; |
---|
231 | uint32 left = size; |
---|
232 | uint8 comps = sid->num_auths; |
---|
233 | char* ret_val = malloc(size); |
---|
234 | |
---|
235 | if(ret_val == NULL) |
---|
236 | return NULL; |
---|
237 | |
---|
238 | if(comps > MAXSUBAUTHS) |
---|
239 | comps = MAXSUBAUTHS; |
---|
240 | |
---|
241 | left -= sprintf(ret_val, "S-%u-%u", sid->sid_rev_num, sid->id_auth[5]); |
---|
242 | |
---|
243 | for (i = 0; i < comps; i++) |
---|
244 | left -= snprintf(ret_val+(size-left), left, "-%u", sid->sub_auths[i]); |
---|
245 | |
---|
246 | return ret_val; |
---|
247 | } |
---|
248 | |
---|
249 | |
---|
250 | char* regfi_get_acl(SEC_ACL* acl) |
---|
251 | { |
---|
252 | uint32 i, extra, size = 0; |
---|
253 | const char* type_str; |
---|
254 | char* flags_str; |
---|
255 | char* perms_str; |
---|
256 | char* sid_str; |
---|
257 | char* ace_delim = ""; |
---|
258 | char* ret_val = NULL; |
---|
259 | char* tmp_val = NULL; |
---|
260 | bool failed = false; |
---|
261 | char field_delim = ':'; |
---|
262 | |
---|
263 | for (i = 0; i < acl->num_aces && !failed; i++) |
---|
264 | { |
---|
265 | sid_str = regfi_sid2str(&acl->ace[i].trustee); |
---|
266 | type_str = regfi_ace_type2str(acl->ace[i].type); |
---|
267 | perms_str = regfi_ace_perms2str(acl->ace[i].info.mask); |
---|
268 | flags_str = regfi_ace_flags2str(acl->ace[i].flags); |
---|
269 | |
---|
270 | if(flags_str != NULL && perms_str != NULL |
---|
271 | && type_str != NULL && sid_str != NULL) |
---|
272 | { |
---|
273 | /* XXX: this is slow */ |
---|
274 | extra = strlen(sid_str) + strlen(type_str) |
---|
275 | + strlen(perms_str) + strlen(flags_str)+5; |
---|
276 | tmp_val = realloc(ret_val, size+extra); |
---|
277 | |
---|
278 | if(tmp_val == NULL) |
---|
279 | { |
---|
280 | free(ret_val); |
---|
281 | failed = true; |
---|
282 | } |
---|
283 | else |
---|
284 | { |
---|
285 | ret_val = tmp_val; |
---|
286 | size += snprintf(ret_val+size, extra, "%s%s%c%s%c%s%c%s", |
---|
287 | ace_delim,sid_str, |
---|
288 | field_delim,type_str, |
---|
289 | field_delim,perms_str, |
---|
290 | field_delim,flags_str); |
---|
291 | ace_delim = "|"; |
---|
292 | } |
---|
293 | } |
---|
294 | else |
---|
295 | failed = true; |
---|
296 | |
---|
297 | if(sid_str != NULL) |
---|
298 | free(sid_str); |
---|
299 | if(sid_str != NULL) |
---|
300 | free(perms_str); |
---|
301 | if(sid_str != NULL) |
---|
302 | free(flags_str); |
---|
303 | } |
---|
304 | |
---|
305 | return ret_val; |
---|
306 | } |
---|
307 | |
---|
308 | |
---|
309 | char* regfi_get_sacl(SEC_DESC *sec_desc) |
---|
310 | { |
---|
311 | if (sec_desc->sacl) |
---|
312 | return regfi_get_acl(sec_desc->sacl); |
---|
313 | else |
---|
314 | return NULL; |
---|
315 | } |
---|
316 | |
---|
317 | |
---|
318 | char* regfi_get_dacl(SEC_DESC *sec_desc) |
---|
319 | { |
---|
320 | if (sec_desc->dacl) |
---|
321 | return regfi_get_acl(sec_desc->dacl); |
---|
322 | else |
---|
323 | return NULL; |
---|
324 | } |
---|
325 | |
---|
326 | |
---|
327 | char* regfi_get_owner(SEC_DESC *sec_desc) |
---|
328 | { |
---|
329 | return regfi_sid2str(sec_desc->owner_sid); |
---|
330 | } |
---|
331 | |
---|
332 | |
---|
333 | char* regfi_get_group(SEC_DESC *sec_desc) |
---|
334 | { |
---|
335 | return regfi_sid2str(sec_desc->grp_sid); |
---|
336 | } |
---|
337 | |
---|
338 | |
---|
339 | /***************************************************************************** |
---|
340 | * This function is just like read(2), except that it continues to |
---|
341 | * re-try reading from the file descriptor if EINTR or EAGAIN is received. |
---|
342 | * regfi_read will attempt to read length bytes from fd and write them to buf. |
---|
343 | * |
---|
344 | * On success, 0 is returned. Upon failure, an errno code is returned. |
---|
345 | * |
---|
346 | * The number of bytes successfully read is returned through the length |
---|
347 | * parameter by reference. If both the return value and length parameter are |
---|
348 | * returned as 0, then EOF was encountered immediately |
---|
349 | *****************************************************************************/ |
---|
350 | uint32 regfi_read(int fd, uint8* buf, uint32* length) |
---|
351 | { |
---|
352 | uint32 rsize = 0; |
---|
353 | uint32 rret = 0; |
---|
354 | |
---|
355 | do |
---|
356 | { |
---|
357 | rret = read(fd, buf + rsize, *length - rsize); |
---|
358 | if(rret > 0) |
---|
359 | rsize += rret; |
---|
360 | }while(*length - rsize > 0 |
---|
361 | && (rret > 0 || (rret == -1 && (errno == EAGAIN || errno == EINTR)))); |
---|
362 | |
---|
363 | *length = rsize; |
---|
364 | if (rret == -1 && errno != EINTR && errno != EAGAIN) |
---|
365 | return errno; |
---|
366 | |
---|
367 | return 0; |
---|
368 | } |
---|
369 | |
---|
370 | |
---|
371 | /***************************************************************************** |
---|
372 | * |
---|
373 | *****************************************************************************/ |
---|
374 | static bool regfi_parse_cell(int fd, uint32 offset, uint8* hdr, uint32 hdr_len, |
---|
375 | uint32* cell_length, bool* unalloc) |
---|
376 | { |
---|
377 | uint32 length; |
---|
378 | int32 raw_length; |
---|
379 | uint8 tmp[4]; |
---|
380 | |
---|
381 | if(lseek(fd, offset, SEEK_SET) == -1) |
---|
382 | return false; |
---|
383 | |
---|
384 | length = 4; |
---|
385 | if((regfi_read(fd, tmp, &length) != 0) || length != 4) |
---|
386 | return false; |
---|
387 | raw_length = IVALS(tmp, 0); |
---|
388 | |
---|
389 | if(raw_length < 0) |
---|
390 | { |
---|
391 | (*cell_length) = raw_length*(-1); |
---|
392 | (*unalloc) = false; |
---|
393 | } |
---|
394 | else |
---|
395 | { |
---|
396 | (*cell_length) = raw_length; |
---|
397 | (*unalloc) = true; |
---|
398 | } |
---|
399 | |
---|
400 | if(*cell_length - 4 < hdr_len) |
---|
401 | return false; |
---|
402 | |
---|
403 | if(hdr_len > 0) |
---|
404 | { |
---|
405 | length = hdr_len; |
---|
406 | if((regfi_read(fd, hdr, &length) != 0) || length != hdr_len) |
---|
407 | return false; |
---|
408 | } |
---|
409 | |
---|
410 | return true; |
---|
411 | } |
---|
412 | |
---|
413 | |
---|
414 | /******************************************************************* |
---|
415 | Input a random offset and receive the correpsonding HBIN |
---|
416 | block for it |
---|
417 | *******************************************************************/ |
---|
418 | static bool hbin_contains_offset( REGF_HBIN *hbin, uint32 offset ) |
---|
419 | { |
---|
420 | if ( !hbin ) |
---|
421 | return false; |
---|
422 | |
---|
423 | if ( (offset > hbin->first_hbin_off) && (offset < (hbin->first_hbin_off+hbin->block_size)) ) |
---|
424 | return true; |
---|
425 | |
---|
426 | return false; |
---|
427 | } |
---|
428 | |
---|
429 | |
---|
430 | /******************************************************************* |
---|
431 | Input a random offset and receive the correpsonding HBIN |
---|
432 | block for it |
---|
433 | *******************************************************************/ |
---|
434 | static REGF_HBIN* lookup_hbin_block( REGF_FILE *file, uint32 offset ) |
---|
435 | { |
---|
436 | REGF_HBIN *hbin = NULL; |
---|
437 | uint32 block_off; |
---|
438 | |
---|
439 | /* start with the open list */ |
---|
440 | |
---|
441 | for ( hbin=file->block_list; hbin; hbin=hbin->next ) { |
---|
442 | /* DEBUG(10,("lookup_hbin_block: address = 0x%x [0x%x]\n", hbin->file_off, (uint32)hbin ));*/ |
---|
443 | if ( hbin_contains_offset( hbin, offset ) ) |
---|
444 | return hbin; |
---|
445 | } |
---|
446 | |
---|
447 | if ( !hbin ) { |
---|
448 | /* start at the beginning */ |
---|
449 | |
---|
450 | block_off = REGF_BLOCKSIZE; |
---|
451 | do { |
---|
452 | hbin = regfi_parse_hbin(file, block_off, true, false); |
---|
453 | |
---|
454 | if ( hbin ) |
---|
455 | block_off = hbin->file_off + hbin->block_size; |
---|
456 | |
---|
457 | } while ( hbin && !hbin_contains_offset( hbin, offset ) ); |
---|
458 | } |
---|
459 | |
---|
460 | if ( hbin ) |
---|
461 | /* XXX: this kind of caching needs to be re-evaluated */ |
---|
462 | DLIST_ADD( file->block_list, hbin ); |
---|
463 | |
---|
464 | return hbin; |
---|
465 | } |
---|
466 | |
---|
467 | |
---|
468 | |
---|
469 | /******************************************************************* |
---|
470 | TODO: not currently validating against max_size |
---|
471 | *******************************************************************/ |
---|
472 | REGF_HASH_LIST* regfi_load_hashlist(REGF_FILE* file, uint32 offset, |
---|
473 | uint32 num_keys, uint32 max_size, |
---|
474 | bool strict) |
---|
475 | { |
---|
476 | REGF_HASH_LIST* ret_val; |
---|
477 | uint32 i, cell_length, length; |
---|
478 | uint8* hashes; |
---|
479 | uint8 buf[REGFI_HASH_LIST_MIN_LENGTH]; |
---|
480 | bool unalloc; |
---|
481 | |
---|
482 | if(!regfi_parse_cell(file->fd, offset, buf, REGFI_HASH_LIST_MIN_LENGTH, |
---|
483 | &cell_length, &unalloc)) |
---|
484 | return NULL; |
---|
485 | |
---|
486 | ret_val = (REGF_HASH_LIST*)zalloc(sizeof(REGF_HASH_LIST)); |
---|
487 | if(ret_val == NULL) |
---|
488 | return NULL; |
---|
489 | |
---|
490 | ret_val->offset = offset; |
---|
491 | ret_val->cell_size = cell_length; |
---|
492 | |
---|
493 | if((buf[0] != 'l' || buf[1] != 'f') && (buf[0] != 'l' || buf[1] != 'h') |
---|
494 | && (buf[0] != 'r' || buf[1] != 'i')) |
---|
495 | { |
---|
496 | /*printf("DEBUG: lf->header=%c%c\n", buf[0], buf[1]);*/ |
---|
497 | free(ret_val); |
---|
498 | return NULL; |
---|
499 | } |
---|
500 | |
---|
501 | if(buf[0] == 'r' && buf[1] == 'i') |
---|
502 | { |
---|
503 | fprintf(stderr, "WARNING: ignoring encountered \"ri\" record.\n"); |
---|
504 | free(ret_val); |
---|
505 | return NULL; |
---|
506 | } |
---|
507 | |
---|
508 | ret_val->magic[0] = buf[0]; |
---|
509 | ret_val->magic[1] = buf[1]; |
---|
510 | |
---|
511 | ret_val->num_keys = SVAL(buf, 0x2); |
---|
512 | if(num_keys != ret_val->num_keys) |
---|
513 | { |
---|
514 | if(strict) |
---|
515 | { |
---|
516 | free(ret_val); |
---|
517 | return NULL; |
---|
518 | } |
---|
519 | /* TODO: Not sure which should be authoritative, the number from the |
---|
520 | * NK record, or the number in the hash list. Go with the larger |
---|
521 | * of the two to ensure all keys are found. Note the length checks |
---|
522 | * on the cell later ensure that there won't be any critical errors. |
---|
523 | */ |
---|
524 | if(num_keys < ret_val->num_keys) |
---|
525 | num_keys = ret_val->num_keys; |
---|
526 | else |
---|
527 | ret_val->num_keys = num_keys; |
---|
528 | } |
---|
529 | |
---|
530 | if(cell_length - REGFI_HASH_LIST_MIN_LENGTH - sizeof(uint32) |
---|
531 | < ret_val->num_keys*sizeof(REGF_HASH_LIST_ELEM)) |
---|
532 | return NULL; |
---|
533 | |
---|
534 | length = sizeof(REGF_HASH_LIST_ELEM)*ret_val->num_keys; |
---|
535 | ret_val->hashes = (REGF_HASH_LIST_ELEM*)zalloc(length); |
---|
536 | if(ret_val->hashes == NULL) |
---|
537 | { |
---|
538 | free(ret_val); |
---|
539 | return NULL; |
---|
540 | } |
---|
541 | |
---|
542 | hashes = (uint8*)zalloc(length); |
---|
543 | if(hashes == NULL) |
---|
544 | { |
---|
545 | free(ret_val->hashes); |
---|
546 | free(ret_val); |
---|
547 | return NULL; |
---|
548 | } |
---|
549 | |
---|
550 | if(regfi_read(file->fd, hashes, &length) != 0 |
---|
551 | || length != sizeof(REGF_HASH_LIST_ELEM)*ret_val->num_keys) |
---|
552 | { |
---|
553 | free(ret_val->hashes); |
---|
554 | free(ret_val); |
---|
555 | return NULL; |
---|
556 | } |
---|
557 | |
---|
558 | for (i=0; i < ret_val->num_keys; i++) |
---|
559 | { |
---|
560 | ret_val->hashes[i].nk_off = IVAL(hashes, i*sizeof(REGF_HASH_LIST_ELEM)); |
---|
561 | ret_val->hashes[i].hash = IVAL(hashes, i*sizeof(REGF_HASH_LIST_ELEM)+4); |
---|
562 | } |
---|
563 | free(hashes); |
---|
564 | |
---|
565 | return ret_val; |
---|
566 | } |
---|
567 | |
---|
568 | |
---|
569 | |
---|
570 | /******************************************************************* |
---|
571 | *******************************************************************/ |
---|
572 | REGF_SK_REC* regfi_parse_sk(REGF_FILE* file, uint32 offset, uint32 max_size, bool strict) |
---|
573 | { |
---|
574 | REGF_SK_REC* ret_val; |
---|
575 | uint32 cell_length, length; |
---|
576 | prs_struct ps; |
---|
577 | uint8 sk_header[REGFI_SK_MIN_LENGTH]; |
---|
578 | bool unalloc = false; |
---|
579 | |
---|
580 | |
---|
581 | if(!regfi_parse_cell(file->fd, offset, sk_header, REGFI_SK_MIN_LENGTH, |
---|
582 | &cell_length, &unalloc)) |
---|
583 | return NULL; |
---|
584 | |
---|
585 | if(sk_header[0] != 's' || sk_header[1] != 'k') |
---|
586 | return NULL; |
---|
587 | |
---|
588 | ret_val = (REGF_SK_REC*)zalloc(sizeof(REGF_SK_REC)); |
---|
589 | if(ret_val == NULL) |
---|
590 | return NULL; |
---|
591 | |
---|
592 | ret_val->offset = offset; |
---|
593 | ret_val->cell_size = cell_length; |
---|
594 | |
---|
595 | if(ret_val->cell_size > max_size) |
---|
596 | ret_val->cell_size = max_size & 0xFFFFFFF8; |
---|
597 | if((ret_val->cell_size < REGFI_SK_MIN_LENGTH) |
---|
598 | || (strict && ret_val->cell_size != (ret_val->cell_size & 0xFFFFFFF8))) |
---|
599 | { |
---|
600 | free(ret_val); |
---|
601 | return NULL; |
---|
602 | } |
---|
603 | |
---|
604 | |
---|
605 | ret_val->magic[0] = sk_header[0]; |
---|
606 | ret_val->magic[1] = sk_header[1]; |
---|
607 | |
---|
608 | ret_val->unknown_tag = SVAL(sk_header, 0x2); |
---|
609 | ret_val->prev_sk_off = IVAL(sk_header, 0x4); |
---|
610 | ret_val->next_sk_off = IVAL(sk_header, 0x8); |
---|
611 | ret_val->ref_count = IVAL(sk_header, 0xC); |
---|
612 | ret_val->desc_size = IVAL(sk_header, 0x10); |
---|
613 | |
---|
614 | if(ret_val->desc_size + REGFI_SK_MIN_LENGTH > ret_val->cell_size) |
---|
615 | { |
---|
616 | free(ret_val); |
---|
617 | return NULL; |
---|
618 | } |
---|
619 | |
---|
620 | /* TODO: need to get rid of this, but currently the security descriptor |
---|
621 | * code depends on the ps structure. |
---|
622 | */ |
---|
623 | if(!prs_init(&ps, ret_val->desc_size, NULL, UNMARSHALL)) |
---|
624 | { |
---|
625 | free(ret_val); |
---|
626 | return NULL; |
---|
627 | } |
---|
628 | |
---|
629 | length = ret_val->desc_size; |
---|
630 | if(regfi_read(file->fd, (uint8*)ps.data_p, &length) != 0 |
---|
631 | || length != ret_val->desc_size) |
---|
632 | { |
---|
633 | free(ret_val); |
---|
634 | return NULL; |
---|
635 | } |
---|
636 | |
---|
637 | if (!sec_io_desc("sec_desc", &ret_val->sec_desc, &ps, 0)) |
---|
638 | { |
---|
639 | free(ret_val); |
---|
640 | return NULL; |
---|
641 | } |
---|
642 | |
---|
643 | free(ps.data_p); |
---|
644 | |
---|
645 | return ret_val; |
---|
646 | } |
---|
647 | |
---|
648 | |
---|
649 | |
---|
650 | /****************************************************************************** |
---|
651 | TODO: not currently validating against max_size. |
---|
652 | ******************************************************************************/ |
---|
653 | REGF_VK_REC** regfi_load_valuelist(REGF_FILE* file, uint32 offset, |
---|
654 | uint32 num_values, uint32 max_size, |
---|
655 | bool strict) |
---|
656 | { |
---|
657 | REGF_VK_REC** ret_val; |
---|
658 | REGF_HBIN* sub_hbin; |
---|
659 | uint8* buf; |
---|
660 | uint32 i, cell_length, vk_raw_offset, vk_offset, vk_max_length, buf_len; |
---|
661 | bool unalloc; |
---|
662 | |
---|
663 | buf_len = sizeof(uint8) * 4 * num_values; |
---|
664 | buf = (uint8*)zalloc(buf_len); |
---|
665 | if(buf == NULL) |
---|
666 | return NULL; |
---|
667 | |
---|
668 | if(!regfi_parse_cell(file->fd, offset, buf, buf_len, &cell_length, &unalloc)) |
---|
669 | { |
---|
670 | free(buf); |
---|
671 | return NULL; |
---|
672 | } |
---|
673 | |
---|
674 | ret_val = (REGF_VK_REC**)zalloc(sizeof(REGF_VK_REC*) * num_values); |
---|
675 | if(ret_val == NULL) |
---|
676 | { |
---|
677 | free(buf); |
---|
678 | return NULL; |
---|
679 | } |
---|
680 | |
---|
681 | for (i=0; i < num_values; i++) |
---|
682 | { |
---|
683 | vk_raw_offset = IVAL(buf, i*4); |
---|
684 | |
---|
685 | sub_hbin = lookup_hbin_block(file, vk_raw_offset); |
---|
686 | if (!sub_hbin) |
---|
687 | { |
---|
688 | free(buf); |
---|
689 | free(ret_val); |
---|
690 | return NULL; |
---|
691 | } |
---|
692 | |
---|
693 | vk_offset = vk_raw_offset + REGF_BLOCKSIZE; |
---|
694 | vk_max_length = sub_hbin->block_size - vk_offset + sizeof(uint32); |
---|
695 | ret_val[i] = regfi_parse_vk(file, vk_offset, vk_max_length, true); |
---|
696 | if(ret_val[i] == NULL) |
---|
697 | { |
---|
698 | free(buf); |
---|
699 | free(ret_val); |
---|
700 | return NULL; |
---|
701 | } |
---|
702 | } |
---|
703 | |
---|
704 | free(buf); |
---|
705 | return ret_val; |
---|
706 | } |
---|
707 | |
---|
708 | |
---|
709 | /******************************************************************* |
---|
710 | *******************************************************************/ |
---|
711 | static REGF_SK_REC* find_sk_record_by_offset( REGF_FILE *file, uint32 offset ) |
---|
712 | { |
---|
713 | REGF_SK_REC *p_sk; |
---|
714 | |
---|
715 | for ( p_sk=file->sec_desc_list; p_sk; p_sk=p_sk->next ) { |
---|
716 | if ( p_sk->sk_off == offset ) |
---|
717 | return p_sk; |
---|
718 | } |
---|
719 | |
---|
720 | return NULL; |
---|
721 | } |
---|
722 | |
---|
723 | |
---|
724 | /******************************************************************* |
---|
725 | *******************************************************************/ |
---|
726 | static REGF_SK_REC* find_sk_record_by_sec_desc( REGF_FILE *file, SEC_DESC *sd ) |
---|
727 | { |
---|
728 | REGF_SK_REC *p; |
---|
729 | |
---|
730 | for ( p=file->sec_desc_list; p; p=p->next ) { |
---|
731 | if ( sec_desc_equal( p->sec_desc, sd ) ) |
---|
732 | return p; |
---|
733 | } |
---|
734 | |
---|
735 | /* failure */ |
---|
736 | |
---|
737 | return NULL; |
---|
738 | } |
---|
739 | |
---|
740 | |
---|
741 | /******************************************************************* |
---|
742 | *******************************************************************/ |
---|
743 | REGF_NK_REC* regfi_load_key(REGF_FILE *file, uint32 offset, bool strict) |
---|
744 | { |
---|
745 | REGF_HBIN* hbin; |
---|
746 | REGF_HBIN* sub_hbin; |
---|
747 | REGF_NK_REC* nk; |
---|
748 | uint32 max_length, off; |
---|
749 | |
---|
750 | hbin = lookup_hbin_block(file, offset-REGF_BLOCKSIZE); |
---|
751 | if (hbin == NULL) |
---|
752 | return NULL; |
---|
753 | |
---|
754 | /* get the initial nk record */ |
---|
755 | max_length = hbin->block_size + hbin->file_off - offset; |
---|
756 | if ((nk = regfi_parse_nk(file, offset, max_length, true)) == NULL) |
---|
757 | return NULL; |
---|
758 | |
---|
759 | /* fill in values */ |
---|
760 | if(nk->num_values && (nk->values_off!=REGF_OFFSET_NONE)) |
---|
761 | { |
---|
762 | sub_hbin = hbin; |
---|
763 | if(!hbin_contains_offset(hbin, nk->values_off)) |
---|
764 | sub_hbin = lookup_hbin_block(file, nk->values_off); |
---|
765 | |
---|
766 | if(sub_hbin == NULL) |
---|
767 | { |
---|
768 | if(strict) |
---|
769 | { |
---|
770 | free(nk); |
---|
771 | return NULL; |
---|
772 | } |
---|
773 | else |
---|
774 | nk->values = NULL; |
---|
775 | } |
---|
776 | else |
---|
777 | { |
---|
778 | off = nk->values_off + REGF_BLOCKSIZE; |
---|
779 | max_length = sub_hbin->block_size + sub_hbin->file_off - off; |
---|
780 | nk->values = regfi_load_valuelist(file, off, nk->num_values, max_length, |
---|
781 | true); |
---|
782 | if(strict && nk->values == NULL) |
---|
783 | { |
---|
784 | free(nk); |
---|
785 | return NULL; |
---|
786 | } |
---|
787 | } |
---|
788 | } |
---|
789 | |
---|
790 | /* now get subkeys */ |
---|
791 | if(nk->num_subkeys && (nk->subkeys_off != REGF_OFFSET_NONE)) |
---|
792 | { |
---|
793 | sub_hbin = hbin; |
---|
794 | if(!hbin_contains_offset(hbin, nk->subkeys_off)) |
---|
795 | sub_hbin = lookup_hbin_block(file, nk->subkeys_off); |
---|
796 | |
---|
797 | if (sub_hbin == NULL) |
---|
798 | { |
---|
799 | if(strict) |
---|
800 | { |
---|
801 | free(nk); |
---|
802 | /* TODO: need convenient way to free nk->values deeply in all cases. */ |
---|
803 | return NULL; |
---|
804 | } |
---|
805 | else |
---|
806 | nk->subkeys = NULL; |
---|
807 | } |
---|
808 | else |
---|
809 | { |
---|
810 | off = nk->subkeys_off + REGF_BLOCKSIZE; |
---|
811 | max_length = sub_hbin->block_size + sub_hbin->file_off - off; |
---|
812 | nk->subkeys = regfi_load_hashlist(file, off, nk->num_subkeys, |
---|
813 | max_length, true); |
---|
814 | if(nk->subkeys == NULL) |
---|
815 | { |
---|
816 | /* TODO: temporary hack to get around 'ri' records */ |
---|
817 | nk->num_subkeys = 0; |
---|
818 | } |
---|
819 | } |
---|
820 | } |
---|
821 | |
---|
822 | /* get the security descriptor. First look if we have already parsed it */ |
---|
823 | if((nk->sk_off!=REGF_OFFSET_NONE) |
---|
824 | && !(nk->sec_desc = find_sk_record_by_offset( file, nk->sk_off ))) |
---|
825 | { |
---|
826 | sub_hbin = hbin; |
---|
827 | if(!hbin_contains_offset(hbin, nk->sk_off)) |
---|
828 | sub_hbin = lookup_hbin_block(file, nk->sk_off); |
---|
829 | |
---|
830 | if(sub_hbin == NULL) |
---|
831 | { |
---|
832 | free(nk); |
---|
833 | /* TODO: need convenient way to free nk->values and nk->subkeys deeply |
---|
834 | * in all cases. |
---|
835 | */ |
---|
836 | return NULL; |
---|
837 | } |
---|
838 | |
---|
839 | off = nk->sk_off + REGF_BLOCKSIZE; |
---|
840 | max_length = sub_hbin->block_size + sub_hbin->file_off - off; |
---|
841 | nk->sec_desc = regfi_parse_sk(file, off, max_length, true); |
---|
842 | if(strict && nk->sec_desc == NULL) |
---|
843 | { |
---|
844 | free(nk); |
---|
845 | /* TODO: need convenient way to free nk->values and nk->subkeys deeply |
---|
846 | * in all cases. |
---|
847 | */ |
---|
848 | return NULL; |
---|
849 | } |
---|
850 | nk->sec_desc->sk_off = nk->sk_off; |
---|
851 | |
---|
852 | /* add to the list of security descriptors (ref_count has been read from the files) */ |
---|
853 | /* XXX: this kind of caching needs to be re-evaluated */ |
---|
854 | DLIST_ADD( file->sec_desc_list, nk->sec_desc ); |
---|
855 | } |
---|
856 | |
---|
857 | return nk; |
---|
858 | } |
---|
859 | |
---|
860 | |
---|
861 | /****************************************************************************** |
---|
862 | |
---|
863 | ******************************************************************************/ |
---|
864 | static bool regfi_find_root_nk(REGF_FILE* file, uint32 offset, uint32 hbin_size, |
---|
865 | uint32* root_offset) |
---|
866 | { |
---|
867 | uint8 tmp[4]; |
---|
868 | int32 record_size; |
---|
869 | uint32 length, hbin_offset = 0; |
---|
870 | REGF_NK_REC* nk = NULL; |
---|
871 | bool found = false; |
---|
872 | |
---|
873 | for(record_size=0; !found && (hbin_offset < hbin_size); ) |
---|
874 | { |
---|
875 | if(lseek(file->fd, offset+hbin_offset, SEEK_SET) == -1) |
---|
876 | return false; |
---|
877 | |
---|
878 | length = 4; |
---|
879 | if((regfi_read(file->fd, tmp, &length) != 0) || length != 4) |
---|
880 | return false; |
---|
881 | record_size = IVALS(tmp, 0); |
---|
882 | |
---|
883 | if(record_size < 0) |
---|
884 | { |
---|
885 | record_size = record_size*(-1); |
---|
886 | nk = regfi_parse_nk(file, offset+hbin_offset, hbin_size-hbin_offset, true); |
---|
887 | if(nk != NULL) |
---|
888 | { |
---|
889 | if(nk->key_type == NK_TYPE_ROOTKEY) |
---|
890 | { |
---|
891 | found = true; |
---|
892 | *root_offset = nk->offset; |
---|
893 | } |
---|
894 | free(nk); |
---|
895 | } |
---|
896 | } |
---|
897 | |
---|
898 | hbin_offset += record_size; |
---|
899 | } |
---|
900 | |
---|
901 | return found; |
---|
902 | } |
---|
903 | |
---|
904 | |
---|
905 | /******************************************************************* |
---|
906 | * Open the registry file and then read in the REGF block to get the |
---|
907 | * first hbin offset. |
---|
908 | *******************************************************************/ |
---|
909 | REGF_FILE* regfi_open(const char* filename) |
---|
910 | { |
---|
911 | REGF_FILE* rb; |
---|
912 | int fd; |
---|
913 | int flags = O_RDONLY; |
---|
914 | |
---|
915 | /* open an existing file */ |
---|
916 | if ((fd = open(filename, flags)) == -1) |
---|
917 | { |
---|
918 | /* DEBUG(0,("regfi_open: failure to open %s (%s)\n", filename, strerror(errno)));*/ |
---|
919 | return NULL; |
---|
920 | } |
---|
921 | |
---|
922 | /* read in an existing file */ |
---|
923 | if ((rb = regfi_parse_regf(fd, true)) == NULL) |
---|
924 | { |
---|
925 | /* DEBUG(0,("regfi_open: Failed to read initial REGF block\n"));*/ |
---|
926 | close(fd); |
---|
927 | return NULL; |
---|
928 | } |
---|
929 | |
---|
930 | rb->hbins = range_list_new(); |
---|
931 | rb->unalloc_cells = range_list_new(); |
---|
932 | if((rb->hbins == NULL) || (rb->unalloc_cells == NULL)) |
---|
933 | { |
---|
934 | close(fd); |
---|
935 | free(rb); |
---|
936 | return NULL; |
---|
937 | } |
---|
938 | |
---|
939 | /* success */ |
---|
940 | return rb; |
---|
941 | } |
---|
942 | |
---|
943 | |
---|
944 | /******************************************************************* |
---|
945 | *******************************************************************/ |
---|
946 | int regfi_close( REGF_FILE *file ) |
---|
947 | { |
---|
948 | int fd; |
---|
949 | |
---|
950 | /* nothing to do if there is no open file */ |
---|
951 | if ((file == NULL) || (file->fd == -1)) |
---|
952 | return 0; |
---|
953 | |
---|
954 | fd = file->fd; |
---|
955 | file->fd = -1; |
---|
956 | range_list_free(file->hbins); |
---|
957 | range_list_free(file->unalloc_cells); |
---|
958 | free(file); |
---|
959 | |
---|
960 | return close( fd ); |
---|
961 | } |
---|
962 | |
---|
963 | |
---|
964 | /****************************************************************************** |
---|
965 | * There should be only *one* root key in the registry file based |
---|
966 | * on my experience. --jerry |
---|
967 | *****************************************************************************/ |
---|
968 | REGF_NK_REC* regfi_rootkey(REGF_FILE *file) |
---|
969 | { |
---|
970 | REGF_NK_REC* nk = NULL; |
---|
971 | REGF_HBIN* hbin; |
---|
972 | uint32 offset = REGF_BLOCKSIZE; |
---|
973 | uint32 root_offset; |
---|
974 | |
---|
975 | if(!file) |
---|
976 | return NULL; |
---|
977 | |
---|
978 | /* Scan through the file one HBIN block at a time looking |
---|
979 | for an NK record with a type == 0x002c. |
---|
980 | Normally this is the first nk record in the first hbin |
---|
981 | block (but I'm not assuming that for now) */ |
---|
982 | |
---|
983 | while((hbin = regfi_parse_hbin(file, offset, true, false))) |
---|
984 | { |
---|
985 | if(regfi_find_root_nk(file, hbin->file_off+HBIN_HEADER_REC_SIZE, |
---|
986 | hbin->block_size-HBIN_HEADER_REC_SIZE, &root_offset)) |
---|
987 | { |
---|
988 | nk = regfi_load_key(file, root_offset, true); |
---|
989 | break; |
---|
990 | } |
---|
991 | |
---|
992 | offset += hbin->block_size; |
---|
993 | } |
---|
994 | |
---|
995 | return nk; |
---|
996 | } |
---|
997 | |
---|
998 | |
---|
999 | /****************************************************************************** |
---|
1000 | *****************************************************************************/ |
---|
1001 | void regfi_key_free(REGF_NK_REC* nk) |
---|
1002 | { |
---|
1003 | uint32 i; |
---|
1004 | |
---|
1005 | if((nk->values != NULL) && (nk->values_off!=REGF_OFFSET_NONE)) |
---|
1006 | { |
---|
1007 | for(i=0; i < nk->num_values; i++) |
---|
1008 | { |
---|
1009 | if(nk->values[i]->valuename != NULL) |
---|
1010 | free(nk->values[i]->valuename); |
---|
1011 | if(nk->values[i]->data != NULL) |
---|
1012 | free(nk->values[i]->data); |
---|
1013 | free(nk->values[i]); |
---|
1014 | } |
---|
1015 | free(nk->values); |
---|
1016 | } |
---|
1017 | |
---|
1018 | if(nk->keyname != NULL) |
---|
1019 | free(nk->keyname); |
---|
1020 | if(nk->classname != NULL) |
---|
1021 | free(nk->classname); |
---|
1022 | |
---|
1023 | /* XXX: not freeing hbin because these are cached. This needs to be reviewed. */ |
---|
1024 | /* XXX: not freeing sec_desc because these are cached. This needs to be reviewed. */ |
---|
1025 | free(nk); |
---|
1026 | } |
---|
1027 | |
---|
1028 | |
---|
1029 | /****************************************************************************** |
---|
1030 | *****************************************************************************/ |
---|
1031 | REGFI_ITERATOR* regfi_iterator_new(REGF_FILE* fh) |
---|
1032 | { |
---|
1033 | REGF_NK_REC* root; |
---|
1034 | REGFI_ITERATOR* ret_val = (REGFI_ITERATOR*)malloc(sizeof(REGFI_ITERATOR)); |
---|
1035 | if(ret_val == NULL) |
---|
1036 | return NULL; |
---|
1037 | |
---|
1038 | root = regfi_rootkey(fh); |
---|
1039 | if(root == NULL) |
---|
1040 | { |
---|
1041 | free(ret_val); |
---|
1042 | return NULL; |
---|
1043 | } |
---|
1044 | |
---|
1045 | ret_val->key_positions = void_stack_new(REGF_MAX_DEPTH); |
---|
1046 | if(ret_val->key_positions == NULL) |
---|
1047 | { |
---|
1048 | free(ret_val); |
---|
1049 | free(root); |
---|
1050 | return NULL; |
---|
1051 | } |
---|
1052 | |
---|
1053 | ret_val->f = fh; |
---|
1054 | ret_val->cur_key = root; |
---|
1055 | ret_val->cur_subkey = 0; |
---|
1056 | ret_val->cur_value = 0; |
---|
1057 | |
---|
1058 | return ret_val; |
---|
1059 | } |
---|
1060 | |
---|
1061 | |
---|
1062 | /****************************************************************************** |
---|
1063 | *****************************************************************************/ |
---|
1064 | void regfi_iterator_free(REGFI_ITERATOR* i) |
---|
1065 | { |
---|
1066 | REGFI_ITER_POSITION* cur; |
---|
1067 | |
---|
1068 | if(i->cur_key != NULL) |
---|
1069 | regfi_key_free(i->cur_key); |
---|
1070 | |
---|
1071 | while((cur = (REGFI_ITER_POSITION*)void_stack_pop(i->key_positions)) != NULL) |
---|
1072 | { |
---|
1073 | regfi_key_free(cur->nk); |
---|
1074 | free(cur); |
---|
1075 | } |
---|
1076 | |
---|
1077 | free(i); |
---|
1078 | } |
---|
1079 | |
---|
1080 | |
---|
1081 | |
---|
1082 | /****************************************************************************** |
---|
1083 | *****************************************************************************/ |
---|
1084 | /* XXX: some way of indicating reason for failure should be added. */ |
---|
1085 | bool regfi_iterator_down(REGFI_ITERATOR* i) |
---|
1086 | { |
---|
1087 | REGF_NK_REC* subkey; |
---|
1088 | REGFI_ITER_POSITION* pos; |
---|
1089 | |
---|
1090 | pos = (REGFI_ITER_POSITION*)malloc(sizeof(REGFI_ITER_POSITION)); |
---|
1091 | if(pos == NULL) |
---|
1092 | return false; |
---|
1093 | |
---|
1094 | subkey = (REGF_NK_REC*)regfi_iterator_cur_subkey(i); |
---|
1095 | if(subkey == NULL) |
---|
1096 | { |
---|
1097 | free(pos); |
---|
1098 | return false; |
---|
1099 | } |
---|
1100 | |
---|
1101 | pos->nk = i->cur_key; |
---|
1102 | pos->cur_subkey = i->cur_subkey; |
---|
1103 | if(!void_stack_push(i->key_positions, pos)) |
---|
1104 | { |
---|
1105 | free(pos); |
---|
1106 | regfi_key_free(subkey); |
---|
1107 | return false; |
---|
1108 | } |
---|
1109 | |
---|
1110 | i->cur_key = subkey; |
---|
1111 | i->cur_subkey = 0; |
---|
1112 | i->cur_value = 0; |
---|
1113 | |
---|
1114 | return true; |
---|
1115 | } |
---|
1116 | |
---|
1117 | |
---|
1118 | /****************************************************************************** |
---|
1119 | *****************************************************************************/ |
---|
1120 | bool regfi_iterator_up(REGFI_ITERATOR* i) |
---|
1121 | { |
---|
1122 | REGFI_ITER_POSITION* pos; |
---|
1123 | |
---|
1124 | pos = (REGFI_ITER_POSITION*)void_stack_pop(i->key_positions); |
---|
1125 | if(pos == NULL) |
---|
1126 | return false; |
---|
1127 | |
---|
1128 | regfi_key_free(i->cur_key); |
---|
1129 | i->cur_key = pos->nk; |
---|
1130 | i->cur_subkey = pos->cur_subkey; |
---|
1131 | i->cur_value = 0; |
---|
1132 | free(pos); |
---|
1133 | |
---|
1134 | return true; |
---|
1135 | } |
---|
1136 | |
---|
1137 | |
---|
1138 | /****************************************************************************** |
---|
1139 | *****************************************************************************/ |
---|
1140 | bool regfi_iterator_to_root(REGFI_ITERATOR* i) |
---|
1141 | { |
---|
1142 | while(regfi_iterator_up(i)) |
---|
1143 | continue; |
---|
1144 | |
---|
1145 | return true; |
---|
1146 | } |
---|
1147 | |
---|
1148 | |
---|
1149 | /****************************************************************************** |
---|
1150 | *****************************************************************************/ |
---|
1151 | bool regfi_iterator_find_subkey(REGFI_ITERATOR* i, const char* subkey_name) |
---|
1152 | { |
---|
1153 | REGF_NK_REC* subkey; |
---|
1154 | bool found = false; |
---|
1155 | uint32 old_subkey = i->cur_subkey; |
---|
1156 | |
---|
1157 | if(subkey_name == NULL) |
---|
1158 | return false; |
---|
1159 | |
---|
1160 | /* XXX: this alloc/free of each sub key might be a bit excessive */ |
---|
1161 | subkey = (REGF_NK_REC*)regfi_iterator_first_subkey(i); |
---|
1162 | while((subkey != NULL) && (found == false)) |
---|
1163 | { |
---|
1164 | if(subkey->keyname != NULL |
---|
1165 | && strcasecmp(subkey->keyname, subkey_name) == 0) |
---|
1166 | found = true; |
---|
1167 | else |
---|
1168 | { |
---|
1169 | regfi_key_free(subkey); |
---|
1170 | subkey = (REGF_NK_REC*)regfi_iterator_next_subkey(i); |
---|
1171 | } |
---|
1172 | } |
---|
1173 | |
---|
1174 | if(found == false) |
---|
1175 | { |
---|
1176 | i->cur_subkey = old_subkey; |
---|
1177 | return false; |
---|
1178 | } |
---|
1179 | |
---|
1180 | regfi_key_free(subkey); |
---|
1181 | return true; |
---|
1182 | } |
---|
1183 | |
---|
1184 | |
---|
1185 | /****************************************************************************** |
---|
1186 | *****************************************************************************/ |
---|
1187 | bool regfi_iterator_walk_path(REGFI_ITERATOR* i, const char** path) |
---|
1188 | { |
---|
1189 | uint32 x; |
---|
1190 | if(path == NULL) |
---|
1191 | return false; |
---|
1192 | |
---|
1193 | for(x=0; |
---|
1194 | ((path[x] != NULL) && regfi_iterator_find_subkey(i, path[x]) |
---|
1195 | && regfi_iterator_down(i)); |
---|
1196 | x++) |
---|
1197 | { continue; } |
---|
1198 | |
---|
1199 | if(path[x] == NULL) |
---|
1200 | return true; |
---|
1201 | |
---|
1202 | /* XXX: is this the right number of times? */ |
---|
1203 | for(; x > 0; x--) |
---|
1204 | regfi_iterator_up(i); |
---|
1205 | |
---|
1206 | return false; |
---|
1207 | } |
---|
1208 | |
---|
1209 | |
---|
1210 | /****************************************************************************** |
---|
1211 | *****************************************************************************/ |
---|
1212 | const REGF_NK_REC* regfi_iterator_cur_key(REGFI_ITERATOR* i) |
---|
1213 | { |
---|
1214 | return i->cur_key; |
---|
1215 | } |
---|
1216 | |
---|
1217 | |
---|
1218 | /****************************************************************************** |
---|
1219 | *****************************************************************************/ |
---|
1220 | const REGF_NK_REC* regfi_iterator_first_subkey(REGFI_ITERATOR* i) |
---|
1221 | { |
---|
1222 | i->cur_subkey = 0; |
---|
1223 | return regfi_iterator_cur_subkey(i); |
---|
1224 | } |
---|
1225 | |
---|
1226 | |
---|
1227 | /****************************************************************************** |
---|
1228 | *****************************************************************************/ |
---|
1229 | const REGF_NK_REC* regfi_iterator_cur_subkey(REGFI_ITERATOR* i) |
---|
1230 | { |
---|
1231 | uint32 nk_offset; |
---|
1232 | |
---|
1233 | /* see if there is anything left to report */ |
---|
1234 | if (!(i->cur_key) || (i->cur_key->subkeys_off==REGF_OFFSET_NONE) |
---|
1235 | || (i->cur_subkey >= i->cur_key->num_subkeys)) |
---|
1236 | return NULL; |
---|
1237 | |
---|
1238 | nk_offset = i->cur_key->subkeys->hashes[i->cur_subkey].nk_off; |
---|
1239 | |
---|
1240 | return regfi_load_key(i->f, nk_offset+REGF_BLOCKSIZE, true); |
---|
1241 | } |
---|
1242 | |
---|
1243 | |
---|
1244 | /****************************************************************************** |
---|
1245 | *****************************************************************************/ |
---|
1246 | /* XXX: some way of indicating reason for failure should be added. */ |
---|
1247 | const REGF_NK_REC* regfi_iterator_next_subkey(REGFI_ITERATOR* i) |
---|
1248 | { |
---|
1249 | const REGF_NK_REC* subkey; |
---|
1250 | |
---|
1251 | i->cur_subkey++; |
---|
1252 | subkey = regfi_iterator_cur_subkey(i); |
---|
1253 | |
---|
1254 | if(subkey == NULL) |
---|
1255 | i->cur_subkey--; |
---|
1256 | |
---|
1257 | return subkey; |
---|
1258 | } |
---|
1259 | |
---|
1260 | |
---|
1261 | /****************************************************************************** |
---|
1262 | *****************************************************************************/ |
---|
1263 | bool regfi_iterator_find_value(REGFI_ITERATOR* i, const char* value_name) |
---|
1264 | { |
---|
1265 | const REGF_VK_REC* cur; |
---|
1266 | bool found = false; |
---|
1267 | |
---|
1268 | /* XXX: cur->valuename can be NULL in the registry. |
---|
1269 | * Should we allow for a way to search for that? |
---|
1270 | */ |
---|
1271 | if(value_name == NULL) |
---|
1272 | return false; |
---|
1273 | |
---|
1274 | cur = regfi_iterator_first_value(i); |
---|
1275 | while((cur != NULL) && (found == false)) |
---|
1276 | { |
---|
1277 | if((cur->valuename != NULL) |
---|
1278 | && (strcasecmp(cur->valuename, value_name) == 0)) |
---|
1279 | found = true; |
---|
1280 | else |
---|
1281 | cur = regfi_iterator_next_value(i); |
---|
1282 | } |
---|
1283 | |
---|
1284 | return found; |
---|
1285 | } |
---|
1286 | |
---|
1287 | |
---|
1288 | /****************************************************************************** |
---|
1289 | *****************************************************************************/ |
---|
1290 | const REGF_VK_REC* regfi_iterator_first_value(REGFI_ITERATOR* i) |
---|
1291 | { |
---|
1292 | i->cur_value = 0; |
---|
1293 | return regfi_iterator_cur_value(i); |
---|
1294 | } |
---|
1295 | |
---|
1296 | |
---|
1297 | /****************************************************************************** |
---|
1298 | *****************************************************************************/ |
---|
1299 | const REGF_VK_REC* regfi_iterator_cur_value(REGFI_ITERATOR* i) |
---|
1300 | { |
---|
1301 | REGF_VK_REC* ret_val = NULL; |
---|
1302 | if(i->cur_value < i->cur_key->num_values) |
---|
1303 | ret_val = i->cur_key->values[i->cur_value]; |
---|
1304 | |
---|
1305 | return ret_val; |
---|
1306 | } |
---|
1307 | |
---|
1308 | |
---|
1309 | /****************************************************************************** |
---|
1310 | *****************************************************************************/ |
---|
1311 | const REGF_VK_REC* regfi_iterator_next_value(REGFI_ITERATOR* i) |
---|
1312 | { |
---|
1313 | const REGF_VK_REC* ret_val; |
---|
1314 | |
---|
1315 | i->cur_value++; |
---|
1316 | ret_val = regfi_iterator_cur_value(i); |
---|
1317 | if(ret_val == NULL) |
---|
1318 | i->cur_value--; |
---|
1319 | |
---|
1320 | return ret_val; |
---|
1321 | } |
---|
1322 | |
---|
1323 | |
---|
1324 | |
---|
1325 | /****************/ |
---|
1326 | /* Experimental */ |
---|
1327 | /****************/ |
---|
1328 | /* |
---|
1329 | typedef struct { |
---|
1330 | uint32 offset; |
---|
1331 | uint32 size; |
---|
1332 | } REGFI_CELL_INFO; |
---|
1333 | |
---|
1334 | typedef struct { |
---|
1335 | uint32 count |
---|
1336 | REGFI_CELL_INFO** cells; |
---|
1337 | } REGFI_CELL_LIST; |
---|
1338 | */ |
---|
1339 | |
---|
1340 | |
---|
1341 | /******************************************************************* |
---|
1342 | * Computes the checksum of the registry file header. |
---|
1343 | * buffer must be at least the size of an regf header (4096 bytes). |
---|
1344 | *******************************************************************/ |
---|
1345 | static uint32 regfi_compute_header_checksum(uint8* buffer) |
---|
1346 | { |
---|
1347 | uint32 checksum, x; |
---|
1348 | int i; |
---|
1349 | |
---|
1350 | /* XOR of all bytes 0x0000 - 0x01FB */ |
---|
1351 | |
---|
1352 | checksum = x = 0; |
---|
1353 | |
---|
1354 | for ( i=0; i<0x01FB; i+=4 ) { |
---|
1355 | x = IVAL(buffer, i ); |
---|
1356 | checksum ^= x; |
---|
1357 | } |
---|
1358 | |
---|
1359 | return checksum; |
---|
1360 | } |
---|
1361 | |
---|
1362 | |
---|
1363 | /******************************************************************* |
---|
1364 | * TODO: add way to return more detailed error information. |
---|
1365 | *******************************************************************/ |
---|
1366 | REGF_FILE* regfi_parse_regf(int fd, bool strict) |
---|
1367 | { |
---|
1368 | uint8 file_header[REGF_BLOCKSIZE]; |
---|
1369 | uint32 length; |
---|
1370 | uint32 file_length; |
---|
1371 | struct stat sbuf; |
---|
1372 | REGF_FILE* ret_val; |
---|
1373 | |
---|
1374 | /* Determine file length. Must be at least big enough |
---|
1375 | * for the header and one hbin. |
---|
1376 | */ |
---|
1377 | if (fstat(fd, &sbuf) == -1) |
---|
1378 | return NULL; |
---|
1379 | file_length = sbuf.st_size; |
---|
1380 | if(file_length < REGF_BLOCKSIZE+REGF_ALLOC_BLOCK) |
---|
1381 | return NULL; |
---|
1382 | |
---|
1383 | ret_val = (REGF_FILE*)zalloc(sizeof(REGF_FILE)); |
---|
1384 | if(ret_val == NULL) |
---|
1385 | return NULL; |
---|
1386 | |
---|
1387 | ret_val->fd = fd; |
---|
1388 | ret_val->file_length = file_length; |
---|
1389 | |
---|
1390 | length = REGF_BLOCKSIZE; |
---|
1391 | if((regfi_read(fd, file_header, &length)) != 0 |
---|
1392 | || length != REGF_BLOCKSIZE) |
---|
1393 | { |
---|
1394 | free(ret_val); |
---|
1395 | return NULL; |
---|
1396 | } |
---|
1397 | |
---|
1398 | ret_val->checksum = IVAL(file_header, 0x1FC); |
---|
1399 | ret_val->computed_checksum = regfi_compute_header_checksum(file_header); |
---|
1400 | if (strict && (ret_val->checksum != ret_val->computed_checksum)) |
---|
1401 | { |
---|
1402 | free(ret_val); |
---|
1403 | return NULL; |
---|
1404 | } |
---|
1405 | |
---|
1406 | memcpy(ret_val->magic, file_header, 4); |
---|
1407 | if(strict && (memcmp(ret_val->magic, "regf", 4) != 0)) |
---|
1408 | { |
---|
1409 | free(ret_val); |
---|
1410 | return NULL; |
---|
1411 | } |
---|
1412 | |
---|
1413 | ret_val->unknown1 = IVAL(file_header, 0x4); |
---|
1414 | ret_val->unknown2 = IVAL(file_header, 0x8); |
---|
1415 | |
---|
1416 | ret_val->mtime.low = IVAL(file_header, 0xC); |
---|
1417 | ret_val->mtime.high = IVAL(file_header, 0x10); |
---|
1418 | |
---|
1419 | ret_val->unknown3 = IVAL(file_header, 0x14); |
---|
1420 | ret_val->unknown4 = IVAL(file_header, 0x18); |
---|
1421 | ret_val->unknown5 = IVAL(file_header, 0x1C); |
---|
1422 | ret_val->unknown6 = IVAL(file_header, 0x20); |
---|
1423 | |
---|
1424 | ret_val->data_offset = IVAL(file_header, 0x24); |
---|
1425 | ret_val->last_block = IVAL(file_header, 0x28); |
---|
1426 | |
---|
1427 | ret_val->unknown7 = IVAL(file_header, 0x2C); |
---|
1428 | |
---|
1429 | return ret_val; |
---|
1430 | } |
---|
1431 | |
---|
1432 | |
---|
1433 | |
---|
1434 | /******************************************************************* |
---|
1435 | * Given real file offset, read and parse the hbin at that location |
---|
1436 | * along with it's associated cells. If save_unalloc is true, a list |
---|
1437 | * of unallocated cell offsets will be stored in TODO. |
---|
1438 | *******************************************************************/ |
---|
1439 | /* TODO: Need a way to return types of errors. Also need to free |
---|
1440 | * the hbin/ps when an error occurs. |
---|
1441 | */ |
---|
1442 | REGF_HBIN* regfi_parse_hbin(REGF_FILE* file, uint32 offset, |
---|
1443 | bool strict, bool save_unalloc) |
---|
1444 | { |
---|
1445 | REGF_HBIN *hbin; |
---|
1446 | uint8 hbin_header[HBIN_HEADER_REC_SIZE]; |
---|
1447 | uint32 length, curr_off; |
---|
1448 | uint32 cell_len; |
---|
1449 | bool is_unalloc; |
---|
1450 | |
---|
1451 | if(offset >= file->file_length) |
---|
1452 | return NULL; |
---|
1453 | |
---|
1454 | if(lseek(file->fd, offset, SEEK_SET) == -1) |
---|
1455 | return NULL; |
---|
1456 | |
---|
1457 | length = HBIN_HEADER_REC_SIZE; |
---|
1458 | if((regfi_read(file->fd, hbin_header, &length) != 0) |
---|
1459 | || length != HBIN_HEADER_REC_SIZE) |
---|
1460 | return NULL; |
---|
1461 | |
---|
1462 | |
---|
1463 | if(lseek(file->fd, offset, SEEK_SET) == -1) |
---|
1464 | return NULL; |
---|
1465 | |
---|
1466 | if(!(hbin = (REGF_HBIN*)zalloc(sizeof(REGF_HBIN)))) |
---|
1467 | return NULL; |
---|
1468 | hbin->file_off = offset; |
---|
1469 | |
---|
1470 | memcpy(hbin->magic, hbin_header, 4); |
---|
1471 | if(strict && (memcmp(hbin->magic, "hbin", 4) != 0)) |
---|
1472 | { |
---|
1473 | free(hbin); |
---|
1474 | return NULL; |
---|
1475 | } |
---|
1476 | |
---|
1477 | hbin->first_hbin_off = IVAL(hbin_header, 0x4); |
---|
1478 | hbin->block_size = IVAL(hbin_header, 0x8); |
---|
1479 | /* this should be the same thing as hbin->block_size but just in case */ |
---|
1480 | hbin->next_block = IVAL(hbin_header, 0x1C); |
---|
1481 | |
---|
1482 | |
---|
1483 | /* Ensure the block size is a multiple of 0x1000 and doesn't run off |
---|
1484 | * the end of the file. |
---|
1485 | */ |
---|
1486 | /* TODO: This may need to be relaxed for dealing with |
---|
1487 | * partial or corrupt files. */ |
---|
1488 | if((offset + hbin->block_size > file->file_length) |
---|
1489 | || (hbin->block_size & 0xFFFFF000) != hbin->block_size) |
---|
1490 | { |
---|
1491 | free(hbin); |
---|
1492 | return NULL; |
---|
1493 | } |
---|
1494 | |
---|
1495 | if(save_unalloc) |
---|
1496 | { |
---|
1497 | curr_off = HBIN_HEADER_REC_SIZE; |
---|
1498 | while(curr_off < hbin->block_size) |
---|
1499 | { |
---|
1500 | if(!regfi_parse_cell(file->fd, hbin->file_off+curr_off, NULL, 0, |
---|
1501 | &cell_len, &is_unalloc)) |
---|
1502 | break; |
---|
1503 | |
---|
1504 | if((cell_len == 0) || ((cell_len & 0xFFFFFFFC) != cell_len)) |
---|
1505 | /* TODO: should report an error here. */ |
---|
1506 | break; |
---|
1507 | |
---|
1508 | /* for some reason the record_size of the last record in |
---|
1509 | an hbin block can extend past the end of the block |
---|
1510 | even though the record fits within the remaining |
---|
1511 | space....aaarrrgggghhhhhh */ |
---|
1512 | if(curr_off + cell_len >= hbin->block_size) |
---|
1513 | cell_len = hbin->block_size - curr_off; |
---|
1514 | |
---|
1515 | if(is_unalloc) |
---|
1516 | range_list_add(file->unalloc_cells, hbin->file_off+curr_off, |
---|
1517 | cell_len, NULL); |
---|
1518 | |
---|
1519 | curr_off = curr_off+cell_len; |
---|
1520 | } |
---|
1521 | } |
---|
1522 | |
---|
1523 | return hbin; |
---|
1524 | } |
---|
1525 | |
---|
1526 | |
---|
1527 | |
---|
1528 | REGF_NK_REC* regfi_parse_nk(REGF_FILE* file, uint32 offset, |
---|
1529 | uint32 max_size, bool strict) |
---|
1530 | { |
---|
1531 | uint8 nk_header[REGFI_NK_MIN_LENGTH]; |
---|
1532 | REGF_NK_REC* ret_val; |
---|
1533 | uint32 length; |
---|
1534 | uint32 cell_length; |
---|
1535 | bool unalloc = false; |
---|
1536 | |
---|
1537 | if(!regfi_parse_cell(file->fd, offset, nk_header, REGFI_NK_MIN_LENGTH, |
---|
1538 | &cell_length, &unalloc)) |
---|
1539 | return NULL; |
---|
1540 | |
---|
1541 | /* A bit of validation before bothering to allocate memory */ |
---|
1542 | if((nk_header[0x0] != 'n') || (nk_header[0x1] != 'k')) |
---|
1543 | { |
---|
1544 | /* TODO: deal with subkey-lists that reference other subkey-lists. */ |
---|
1545 | printf("DEBUG: magic check failed! \"%c%c\"\n", nk_header[0x0], nk_header[0x1]); |
---|
1546 | return NULL; |
---|
1547 | } |
---|
1548 | |
---|
1549 | ret_val = (REGF_NK_REC*)zalloc(sizeof(REGF_NK_REC)); |
---|
1550 | if(ret_val == NULL) |
---|
1551 | return NULL; |
---|
1552 | |
---|
1553 | ret_val->offset = offset; |
---|
1554 | ret_val->cell_size = cell_length; |
---|
1555 | |
---|
1556 | if(ret_val->cell_size > max_size) |
---|
1557 | ret_val->cell_size = max_size & 0xFFFFFFF8; |
---|
1558 | if((ret_val->cell_size < REGFI_NK_MIN_LENGTH) |
---|
1559 | || (strict && ret_val->cell_size != (ret_val->cell_size & 0xFFFFFFF8))) |
---|
1560 | { |
---|
1561 | free(ret_val); |
---|
1562 | return NULL; |
---|
1563 | } |
---|
1564 | |
---|
1565 | ret_val->magic[0] = nk_header[0x0]; |
---|
1566 | ret_val->magic[1] = nk_header[0x1]; |
---|
1567 | ret_val->key_type = SVAL(nk_header, 0x2); |
---|
1568 | if((ret_val->key_type != NK_TYPE_NORMALKEY) |
---|
1569 | && (ret_val->key_type != NK_TYPE_ROOTKEY) |
---|
1570 | && (ret_val->key_type != NK_TYPE_LINKKEY) |
---|
1571 | && (ret_val->key_type != NK_TYPE_UNKNOWN1)) |
---|
1572 | { |
---|
1573 | free(ret_val); |
---|
1574 | return NULL; |
---|
1575 | } |
---|
1576 | |
---|
1577 | ret_val->mtime.low = IVAL(nk_header, 0x4); |
---|
1578 | ret_val->mtime.high = IVAL(nk_header, 0x8); |
---|
1579 | |
---|
1580 | ret_val->unknown1 = IVAL(nk_header, 0xC); |
---|
1581 | ret_val->parent_off = IVAL(nk_header, 0x10); |
---|
1582 | ret_val->num_subkeys = IVAL(nk_header, 0x14); |
---|
1583 | ret_val->unknown2 = IVAL(nk_header, 0x18); |
---|
1584 | ret_val->subkeys_off = IVAL(nk_header, 0x1C); |
---|
1585 | ret_val->unknown3 = IVAL(nk_header, 0x20); |
---|
1586 | ret_val->num_values = IVAL(nk_header, 0x24); |
---|
1587 | ret_val->values_off = IVAL(nk_header, 0x28); |
---|
1588 | ret_val->sk_off = IVAL(nk_header, 0x2C); |
---|
1589 | /* TODO: currently we do nothing with class names. Need to investigate. */ |
---|
1590 | ret_val->classname_off = IVAL(nk_header, 0x30); |
---|
1591 | |
---|
1592 | ret_val->max_bytes_subkeyname = IVAL(nk_header, 0x34); |
---|
1593 | ret_val->max_bytes_subkeyclassname = IVAL(nk_header, 0x38); |
---|
1594 | ret_val->max_bytes_valuename = IVAL(nk_header, 0x3C); |
---|
1595 | ret_val->max_bytes_value = IVAL(nk_header, 0x40); |
---|
1596 | ret_val->unk_index = IVAL(nk_header, 0x44); |
---|
1597 | |
---|
1598 | ret_val->name_length = SVAL(nk_header, 0x48); |
---|
1599 | ret_val->classname_length = SVAL(nk_header, 0x4A); |
---|
1600 | |
---|
1601 | if(ret_val->name_length + REGFI_NK_MIN_LENGTH > ret_val->cell_size) |
---|
1602 | { |
---|
1603 | if(strict) |
---|
1604 | { |
---|
1605 | free(ret_val); |
---|
1606 | return NULL; |
---|
1607 | } |
---|
1608 | else |
---|
1609 | ret_val->name_length = ret_val->cell_size - REGFI_NK_MIN_LENGTH; |
---|
1610 | } |
---|
1611 | else if (unalloc) |
---|
1612 | { /* Truncate cell_size if it's much larger than the apparent total record length. */ |
---|
1613 | /* Round up to the next multiple of 8 */ |
---|
1614 | length = (ret_val->name_length + REGFI_NK_MIN_LENGTH) & 0xFFFFFFF8; |
---|
1615 | if(length < ret_val->name_length + REGFI_NK_MIN_LENGTH) |
---|
1616 | length+=8; |
---|
1617 | |
---|
1618 | /* If cell_size is still greater, truncate. */ |
---|
1619 | if(length < ret_val->cell_size) |
---|
1620 | ret_val->cell_size = length; |
---|
1621 | } |
---|
1622 | |
---|
1623 | ret_val->keyname = (char*)zalloc(sizeof(char)*(ret_val->name_length+1)); |
---|
1624 | if(ret_val->keyname == NULL) |
---|
1625 | { |
---|
1626 | free(ret_val); |
---|
1627 | return NULL; |
---|
1628 | } |
---|
1629 | |
---|
1630 | /* Don't need to seek, should be at the right offset */ |
---|
1631 | length = ret_val->name_length; |
---|
1632 | if((regfi_read(file->fd, (uint8*)ret_val->keyname, &length) != 0) |
---|
1633 | || length != ret_val->name_length) |
---|
1634 | { |
---|
1635 | free(ret_val->keyname); |
---|
1636 | free(ret_val); |
---|
1637 | return NULL; |
---|
1638 | } |
---|
1639 | ret_val->keyname[ret_val->name_length] = '\0'; |
---|
1640 | |
---|
1641 | return ret_val; |
---|
1642 | } |
---|
1643 | |
---|
1644 | |
---|
1645 | |
---|
1646 | /******************************************************************* |
---|
1647 | *******************************************************************/ |
---|
1648 | REGF_VK_REC* regfi_parse_vk(REGF_FILE* file, uint32 offset, |
---|
1649 | uint32 max_size, bool strict) |
---|
1650 | { |
---|
1651 | REGF_VK_REC* ret_val; |
---|
1652 | uint8 vk_header[REGFI_VK_MIN_LENGTH]; |
---|
1653 | uint32 raw_data_size, length, cell_length; |
---|
1654 | bool unalloc = false; |
---|
1655 | |
---|
1656 | if(!regfi_parse_cell(file->fd, offset, vk_header, REGFI_VK_MIN_LENGTH, |
---|
1657 | &cell_length, &unalloc)) |
---|
1658 | return NULL; |
---|
1659 | |
---|
1660 | ret_val = (REGF_VK_REC*)zalloc(sizeof(REGF_VK_REC)); |
---|
1661 | if(ret_val == NULL) |
---|
1662 | return NULL; |
---|
1663 | |
---|
1664 | ret_val->offset = offset; |
---|
1665 | ret_val->cell_size = cell_length; |
---|
1666 | |
---|
1667 | if(ret_val->cell_size > max_size) |
---|
1668 | ret_val->cell_size = max_size & 0xFFFFFFF8; |
---|
1669 | if((ret_val->cell_size < REGFI_VK_MIN_LENGTH) |
---|
1670 | || (strict && ret_val->cell_size != (ret_val->cell_size & 0xFFFFFFF8))) |
---|
1671 | { |
---|
1672 | free(ret_val); |
---|
1673 | return NULL; |
---|
1674 | } |
---|
1675 | |
---|
1676 | ret_val->magic[0] = vk_header[0x0]; |
---|
1677 | ret_val->magic[1] = vk_header[0x1]; |
---|
1678 | if((ret_val->magic[0] != 'v') || (ret_val->magic[1] != 'k')) |
---|
1679 | { |
---|
1680 | free(ret_val); |
---|
1681 | return NULL; |
---|
1682 | } |
---|
1683 | |
---|
1684 | ret_val->name_length = SVAL(vk_header, 0x2); |
---|
1685 | raw_data_size = IVAL(vk_header, 0x4); |
---|
1686 | ret_val->data_size = raw_data_size & ~VK_DATA_IN_OFFSET; |
---|
1687 | ret_val->data_off = IVAL(vk_header, 0x8); |
---|
1688 | ret_val->type = IVAL(vk_header, 0xC); |
---|
1689 | ret_val->flag = SVAL(vk_header, 0x10); |
---|
1690 | ret_val->unknown1 = SVAL(vk_header, 0x12); |
---|
1691 | |
---|
1692 | if(ret_val->flag & VK_FLAG_NAME_PRESENT) |
---|
1693 | { |
---|
1694 | if(ret_val->name_length + REGFI_VK_MIN_LENGTH > ret_val->cell_size) |
---|
1695 | { |
---|
1696 | if(strict) |
---|
1697 | { |
---|
1698 | free(ret_val); |
---|
1699 | return NULL; |
---|
1700 | } |
---|
1701 | else |
---|
1702 | ret_val->name_length = ret_val->cell_size - REGFI_VK_MIN_LENGTH; |
---|
1703 | } |
---|
1704 | |
---|
1705 | /* Round up to the next multiple of 8 */ |
---|
1706 | length = (ret_val->name_length + REGFI_NK_MIN_LENGTH) & 0xFFFFFFF8; |
---|
1707 | if(length < ret_val->name_length + REGFI_NK_MIN_LENGTH) |
---|
1708 | length+=8; |
---|
1709 | |
---|
1710 | ret_val->valuename = (char*)zalloc(sizeof(char)*(ret_val->name_length+1)); |
---|
1711 | if(ret_val->valuename == NULL) |
---|
1712 | { |
---|
1713 | free(ret_val); |
---|
1714 | return NULL; |
---|
1715 | } |
---|
1716 | |
---|
1717 | /* Don't need to seek, should be at the right offset */ |
---|
1718 | length = ret_val->name_length; |
---|
1719 | if((regfi_read(file->fd, (uint8*)ret_val->valuename, &length) != 0) |
---|
1720 | || length != ret_val->name_length) |
---|
1721 | { |
---|
1722 | free(ret_val->valuename); |
---|
1723 | free(ret_val); |
---|
1724 | return NULL; |
---|
1725 | } |
---|
1726 | ret_val->valuename[ret_val->name_length] = '\0'; |
---|
1727 | } |
---|
1728 | else |
---|
1729 | length = REGFI_VK_MIN_LENGTH; |
---|
1730 | |
---|
1731 | if(unalloc) |
---|
1732 | { |
---|
1733 | /* If cell_size is still greater, truncate. */ |
---|
1734 | if(length < ret_val->cell_size) |
---|
1735 | ret_val->cell_size = length; |
---|
1736 | } |
---|
1737 | |
---|
1738 | if(ret_val->data_size == 0) |
---|
1739 | ret_val->data = NULL; |
---|
1740 | else |
---|
1741 | { |
---|
1742 | ret_val->data = regfi_parse_data(file, ret_val->data_off+REGF_BLOCKSIZE, |
---|
1743 | raw_data_size, strict); |
---|
1744 | if(strict && (ret_val->data == NULL)) |
---|
1745 | { |
---|
1746 | free(ret_val->valuename); |
---|
1747 | free(ret_val); |
---|
1748 | return NULL; |
---|
1749 | } |
---|
1750 | } |
---|
1751 | |
---|
1752 | return ret_val; |
---|
1753 | } |
---|
1754 | |
---|
1755 | |
---|
1756 | uint8* regfi_parse_data(REGF_FILE* file, uint32 offset, uint32 length, bool strict) |
---|
1757 | { |
---|
1758 | uint8* ret_val; |
---|
1759 | uint32 read_length, cell_length; |
---|
1760 | uint8 i; |
---|
1761 | bool unalloc; |
---|
1762 | |
---|
1763 | /* The data is stored in the offset if the size <= 4 */ |
---|
1764 | if (length & VK_DATA_IN_OFFSET) |
---|
1765 | { |
---|
1766 | length = length & ~VK_DATA_IN_OFFSET; |
---|
1767 | if(length > 4) |
---|
1768 | return NULL; |
---|
1769 | |
---|
1770 | if((ret_val = (uint8*)zalloc(sizeof(uint8)*length)) == NULL) |
---|
1771 | return NULL; |
---|
1772 | |
---|
1773 | offset = offset - REGF_BLOCKSIZE; |
---|
1774 | for(i = 0; i < length; i++) |
---|
1775 | ret_val[i] = (uint8)((offset >> i*8) & 0xFF); |
---|
1776 | } |
---|
1777 | else |
---|
1778 | { |
---|
1779 | if(!regfi_parse_cell(file->fd, offset, NULL, 0, |
---|
1780 | &cell_length, &unalloc)) |
---|
1781 | return NULL; |
---|
1782 | |
---|
1783 | if(cell_length < 8 || ((cell_length & 0xFFFFFFF8) != cell_length)) |
---|
1784 | return NULL; |
---|
1785 | |
---|
1786 | if(cell_length - 4 < length) |
---|
1787 | { |
---|
1788 | if(strict) |
---|
1789 | return NULL; |
---|
1790 | else |
---|
1791 | length = cell_length - 4; |
---|
1792 | } |
---|
1793 | |
---|
1794 | /* TODO: There is currently no check to ensure the data |
---|
1795 | * cell doesn't cross HBIN boundary. |
---|
1796 | */ |
---|
1797 | |
---|
1798 | if((ret_val = (uint8*)zalloc(sizeof(uint8)*length)) == NULL) |
---|
1799 | return NULL; |
---|
1800 | |
---|
1801 | read_length = length; |
---|
1802 | if((regfi_read(file->fd, ret_val, &read_length) != 0) |
---|
1803 | || read_length != length) |
---|
1804 | { |
---|
1805 | free(ret_val); |
---|
1806 | return NULL; |
---|
1807 | } |
---|
1808 | } |
---|
1809 | |
---|
1810 | return ret_val; |
---|
1811 | } |
---|