[169] | 1 | /* |
---|
[168] | 2 | * Copyright (C) 2005-2010 Timothy D. Morgan |
---|
[30] | 3 | * Copyright (C) 2005 Gerald (Jerry) Carter |
---|
| 4 | * |
---|
| 5 | * This program is free software; you can redistribute it and/or modify |
---|
| 6 | * it under the terms of the GNU General Public License as published by |
---|
[134] | 7 | * the Free Software Foundation; version 3 of the License. |
---|
[30] | 8 | * |
---|
| 9 | * This program is distributed in the hope that it will be useful, |
---|
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | * GNU General Public License for more details. |
---|
| 13 | * |
---|
| 14 | * You should have received a copy of the GNU General Public License |
---|
| 15 | * along with this program; if not, write to the Free Software |
---|
| 16 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
| 17 | * |
---|
| 18 | * $Id: regfi.h 169 2010-03-03 19:24:58Z tim $ |
---|
| 19 | */ |
---|
| 20 | |
---|
[169] | 21 | /** |
---|
| 22 | * @file |
---|
| 23 | * Windows NT (and later) read-only registry library |
---|
| 24 | * |
---|
| 25 | * This library is intended for use in digital forensics investigations, but |
---|
| 26 | * is likely useful in other applications. |
---|
| 27 | * |
---|
| 28 | * Branched from Samba project Subversion repository, version #6903: |
---|
| 29 | * http://viewcvs.samba.org/cgi-bin/viewcvs.cgi/trunk/source/include/regfio.h?rev=6903&view=auto |
---|
| 30 | * |
---|
| 31 | * Since then, it has been heavily rewritten, simplified, and improved. |
---|
| 32 | */ |
---|
[30] | 33 | |
---|
[168] | 34 | /** |
---|
| 35 | * @mainpage Home |
---|
| 36 | * |
---|
[169] | 37 | * The regfi library is a read-only NT registry library which serves as the main |
---|
| 38 | * engine behind the reglookup tool. It is designed with digital forensic |
---|
| 39 | * analysis in mind, but it should also be useful in other tools which need to |
---|
| 40 | * efficiently traverse and query registry data structures. |
---|
| 41 | * |
---|
| 42 | * The library is broken down into four main parts, the |
---|
| 43 | * @ref regfiBase "Base Layer", which any code dependent on the library will |
---|
| 44 | * likely need to rely on, as well as three main functional layers: |
---|
| 45 | * @li @ref regfiIteratorLayer |
---|
| 46 | * @li @ref regfiGlueLayer |
---|
| 47 | * @li @ref regfiParseLayer |
---|
| 48 | * |
---|
| 49 | * Most users will find that a combination of the Base Layer and the Iterator Layer |
---|
| 50 | * will be sufficient for accessing registry hive files. Those who are wiling |
---|
| 51 | * to dive deep into registry data structures, for instance to recover deleted |
---|
| 52 | * data structures or to research Windows registry behavior in detail, will |
---|
| 53 | * find the Parse Layer to be quite useful. |
---|
[168] | 54 | */ |
---|
| 55 | |
---|
[169] | 56 | |
---|
[78] | 57 | #ifndef _REGFI_H |
---|
| 58 | #define _REGFI_H |
---|
[30] | 59 | |
---|
[31] | 60 | #include <stdlib.h> |
---|
| 61 | #include <stdio.h> |
---|
[30] | 62 | #include <stdbool.h> |
---|
[31] | 63 | #include <string.h> |
---|
[30] | 64 | #include <errno.h> |
---|
[31] | 65 | #include <time.h> |
---|
[30] | 66 | #include <fcntl.h> |
---|
| 67 | #include <sys/stat.h> |
---|
| 68 | #include <sys/types.h> |
---|
| 69 | #include <unistd.h> |
---|
[159] | 70 | #include <iconv.h> |
---|
[30] | 71 | |
---|
[168] | 72 | #include "byteorder.h" |
---|
[147] | 73 | #include "talloc.h" |
---|
[132] | 74 | #include "winsec.h" |
---|
[78] | 75 | #include "void_stack.h" |
---|
[99] | 76 | #include "range_list.h" |
---|
[108] | 77 | #include "lru_cache.h" |
---|
[30] | 78 | |
---|
| 79 | /******************************************************************************/ |
---|
[138] | 80 | |
---|
| 81 | /* regfi library error message types */ |
---|
| 82 | #define REGFI_MSG_INFO 0x0001 |
---|
| 83 | #define REGFI_MSG_WARN 0x0004 |
---|
| 84 | #define REGFI_MSG_ERROR 0x0010 |
---|
| 85 | |
---|
[168] | 86 | typedef uint8_t REGFI_ENCODING; |
---|
[161] | 87 | /* regfi library supported character encodings */ |
---|
| 88 | #define REGFI_ENCODING_ASCII 0 |
---|
| 89 | #define REGFI_ENCODING_UTF8 1 |
---|
| 90 | #define REGFI_ENCODING_DEFAULT REGFI_ENCODING_ASCII |
---|
| 91 | /* UTF16LE is not supported for output */ |
---|
| 92 | #define REGFI_ENCODING_UTF16LE 2 |
---|
| 93 | |
---|
| 94 | #define REGFI_NUM_ENCODINGS 3 |
---|
| 95 | |
---|
[143] | 96 | /* Windows is lame */ |
---|
| 97 | #ifdef O_BINARY |
---|
| 98 | #define REGFI_OPEN_FLAGS O_RDONLY|O_BINARY |
---|
| 99 | #else |
---|
| 100 | #define REGFI_OPEN_FLAGS O_RDONLY |
---|
| 101 | #endif |
---|
| 102 | |
---|
[32] | 103 | /* Registry data types */ |
---|
| 104 | #define REG_NONE 0 |
---|
| 105 | #define REG_SZ 1 |
---|
| 106 | #define REG_EXPAND_SZ 2 |
---|
| 107 | #define REG_BINARY 3 |
---|
| 108 | #define REG_DWORD 4 |
---|
[54] | 109 | #define REG_DWORD_LE 4 /* DWORD, little endian */ |
---|
| 110 | #define REG_DWORD_BE 5 /* DWORD, big endian */ |
---|
[32] | 111 | #define REG_LINK 6 |
---|
| 112 | #define REG_MULTI_SZ 7 |
---|
| 113 | #define REG_RESOURCE_LIST 8 |
---|
| 114 | #define REG_FULL_RESOURCE_DESCRIPTOR 9 |
---|
| 115 | #define REG_RESOURCE_REQUIREMENTS_LIST 10 |
---|
[72] | 116 | #define REG_QWORD 11 /* 64-bit little endian */ |
---|
| 117 | /* XXX: Has MS defined a REG_QWORD_BE? */ |
---|
[32] | 118 | /* Not a real type in the registry */ |
---|
[136] | 119 | #define REG_KEY 0x7FFFFFFF |
---|
[32] | 120 | |
---|
[135] | 121 | #define REGFI_OFFSET_NONE 0xffffffff |
---|
[30] | 122 | |
---|
[165] | 123 | |
---|
| 124 | /* This maximum depth is described here: |
---|
| 125 | * http://msdn.microsoft.com/en-us/library/ms724872%28VS.85%29.aspx |
---|
| 126 | */ |
---|
| 127 | #define REGFI_MAX_DEPTH 512 |
---|
| 128 | |
---|
| 129 | /* This limit defines the maximum number of levels deep that ri subkey list |
---|
| 130 | * trees can go. |
---|
| 131 | */ |
---|
| 132 | /* XXX: This is totally arbitrary right now. |
---|
| 133 | * The actual limit may need to be discovered by experimentation. |
---|
| 134 | */ |
---|
[149] | 135 | #define REGFI_MAX_SUBKEY_DEPTH 255 |
---|
[139] | 136 | |
---|
[165] | 137 | |
---|
[135] | 138 | /* Header sizes and magic number lengths for various records */ |
---|
[147] | 139 | #define REGFI_HBIN_ALLOC 0x1000 /* Minimum allocation unit for HBINs */ |
---|
| 140 | #define REGFI_REGF_SIZE 0x1000 /* "regf" header block size */ |
---|
[135] | 141 | #define REGFI_REGF_MAGIC_SIZE 4 |
---|
[151] | 142 | #define REGFI_REGF_NAME_SIZE 64 |
---|
| 143 | #define REGFI_REGF_RESERVED1_SIZE 340 |
---|
| 144 | #define REGFI_REGF_RESERVED2_SIZE 3528 |
---|
[135] | 145 | #define REGFI_HBIN_MAGIC_SIZE 4 |
---|
| 146 | #define REGFI_CELL_MAGIC_SIZE 2 |
---|
| 147 | #define REGFI_HBIN_HEADER_SIZE 0x20 |
---|
[116] | 148 | #define REGFI_NK_MIN_LENGTH 0x4C |
---|
| 149 | #define REGFI_VK_MIN_LENGTH 0x14 |
---|
| 150 | #define REGFI_SK_MIN_LENGTH 0x14 |
---|
[127] | 151 | #define REGFI_SUBKEY_LIST_MIN_LEN 0x4 |
---|
[157] | 152 | #define REGFI_BIG_DATA_MIN_LENGTH 0xC |
---|
[30] | 153 | |
---|
[135] | 154 | |
---|
[116] | 155 | /* Constants used for validation */ |
---|
[125] | 156 | /* XXX: Can we add clock resolution validation as well as range? It has |
---|
| 157 | * been reported that Windows timestamps are never more than a |
---|
| 158 | * certain granularity (250ms?), which could be used to help |
---|
[147] | 159 | * eliminate false positives. Would need to verify this and |
---|
[125] | 160 | * perhaps conservatively implement a check. |
---|
| 161 | */ |
---|
[116] | 162 | /* Minimum time is Jan 1, 1990 00:00:00 */ |
---|
| 163 | #define REGFI_MTIME_MIN_HIGH 0x01B41E6D |
---|
| 164 | #define REGFI_MTIME_MIN_LOW 0x26F98000 |
---|
| 165 | /* Maximum time is Jan 1, 2290 00:00:00 |
---|
| 166 | * (We hope no one is using Windows by then...) |
---|
| 167 | */ |
---|
| 168 | #define REGFI_MTIME_MAX_HIGH 0x03047543 |
---|
| 169 | #define REGFI_MTIME_MAX_LOW 0xC80A4000 |
---|
[30] | 170 | |
---|
[116] | 171 | |
---|
[30] | 172 | /* Flags for the vk records */ |
---|
[162] | 173 | #define REGFI_VK_FLAG_ASCIINAME 0x0001 |
---|
[135] | 174 | #define REGFI_VK_DATA_IN_OFFSET 0x80000000 |
---|
[152] | 175 | #define REGFI_VK_MAX_DATA_LENGTH 1024*1024 /* XXX: This is arbitrary */ |
---|
[30] | 176 | |
---|
[137] | 177 | |
---|
[152] | 178 | /* Known key flags */ |
---|
| 179 | /*******************/ |
---|
[137] | 180 | /* These next two show up on normal-seeming keys in Vista and W2K3 registries */ |
---|
| 181 | #define REGFI_NK_FLAG_UNKNOWN1 0x4000 |
---|
| 182 | #define REGFI_NK_FLAG_UNKNOWN2 0x1000 |
---|
[152] | 183 | |
---|
[167] | 184 | /* This next one shows up in some Vista "software" registries */ |
---|
| 185 | /* XXX: This shows up in the following two SOFTWARE keys in Vista: |
---|
| 186 | * /Wow6432Node/Microsoft |
---|
| 187 | * /Wow6432Node/Microsoft/Cryptography |
---|
| 188 | * |
---|
| 189 | * It comes along with UNKNOWN2 and ASCIINAME for a total flags value of 0x10A0 |
---|
| 190 | */ |
---|
[137] | 191 | #define REGFI_NK_FLAG_UNKNOWN3 0x0080 |
---|
[30] | 192 | |
---|
[152] | 193 | /* Predefined handle. Rumor has it that the valuelist count for this key is |
---|
| 194 | * where the handle is stored. |
---|
| 195 | * http://msdn.microsoft.com/en-us/library/ms724836(VS.85).aspx |
---|
| 196 | */ |
---|
| 197 | #define REGFI_NK_FLAG_PREDEF_KEY 0x0040 |
---|
[137] | 198 | |
---|
[152] | 199 | /* The name will be in ASCII if this next bit is set, otherwise UTF-16LE */ |
---|
| 200 | #define REGFI_NK_FLAG_ASCIINAME 0x0020 |
---|
| 201 | |
---|
| 202 | /* Symlink key. |
---|
| 203 | * See: http://www.codeproject.com/KB/system/regsymlink.aspx |
---|
| 204 | */ |
---|
| 205 | #define REGFI_NK_FLAG_LINK 0x0010 |
---|
| 206 | |
---|
| 207 | /* This key cannot be deleted */ |
---|
| 208 | #define REGFI_NK_FLAG_NO_RM 0x0008 |
---|
| 209 | |
---|
| 210 | /* Root of a hive */ |
---|
| 211 | #define REGFI_NK_FLAG_ROOT 0x0004 |
---|
| 212 | |
---|
| 213 | /* Mount point of another hive. NULL/(default) value indicates which hive |
---|
| 214 | * and where in the hive it points to. |
---|
| 215 | */ |
---|
| 216 | #define REGFI_NK_FLAG_HIVE_LINK 0x0002 |
---|
| 217 | |
---|
| 218 | /* These keys shouldn't be stored on disk, according to: |
---|
| 219 | * http://geekswithblogs.net/sdorman/archive/2007/12/24/volatile-registry-keys.aspx |
---|
| 220 | */ |
---|
| 221 | #define REGFI_NK_FLAG_VOLATILE 0x0001 |
---|
| 222 | |
---|
| 223 | /* Useful for identifying unknown flag types */ |
---|
| 224 | #define REGFI_NK_KNOWN_FLAGS (REGFI_NK_FLAG_PREDEF_KEY\ |
---|
| 225 | | REGFI_NK_FLAG_ASCIINAME\ |
---|
| 226 | | REGFI_NK_FLAG_LINK\ |
---|
| 227 | | REGFI_NK_FLAG_NO_RM\ |
---|
| 228 | | REGFI_NK_FLAG_ROOT\ |
---|
| 229 | | REGFI_NK_FLAG_HIVE_LINK\ |
---|
| 230 | | REGFI_NK_FLAG_VOLATILE\ |
---|
| 231 | | REGFI_NK_FLAG_UNKNOWN1\ |
---|
[167] | 232 | | REGFI_NK_FLAG_UNKNOWN2\ |
---|
| 233 | | REGFI_NK_FLAG_UNKNOWN3) |
---|
[152] | 234 | |
---|
[168] | 235 | |
---|
| 236 | #define CHAR_BIT 8 |
---|
| 237 | #define TIME_T_MIN ((time_t)0 < (time_t) -1 ? (time_t) 0 \ |
---|
| 238 | : ~ (time_t) 0 << (sizeof (time_t) * CHAR_BIT - 1)) |
---|
| 239 | #define TIME_T_MAX (~ (time_t) 0 - TIME_T_MIN) |
---|
| 240 | #define TIME_FIXUP_CONSTANT (369.0*365.25*24*60*60-(3.0*24*60*60+6.0*60*60)) |
---|
| 241 | |
---|
| 242 | typedef struct _regfi_nttime |
---|
| 243 | { |
---|
| 244 | uint32_t low; |
---|
| 245 | uint32_t high; |
---|
| 246 | } REGFI_NTTIME; |
---|
| 247 | |
---|
| 248 | |
---|
[169] | 249 | /** HBIN block information |
---|
| 250 | * @ingroup regfiMiddleLayer |
---|
| 251 | */ |
---|
[135] | 252 | typedef struct _regfi_hbin |
---|
[97] | 253 | { |
---|
[169] | 254 | /** Offset of this HBIN in the registry file */ |
---|
| 255 | uint32_t file_off; |
---|
[97] | 256 | |
---|
[169] | 257 | /** Number of active records pointing to this block (not used currently) */ |
---|
| 258 | uint32_t ref_count; |
---|
| 259 | |
---|
| 260 | /** Offset from first hbin block */ |
---|
| 261 | uint32_t first_hbin_off; |
---|
| 262 | |
---|
| 263 | /** Block size of this block Should be a multiple of 4096 (0x1000) */ |
---|
| 264 | uint32_t block_size; |
---|
| 265 | |
---|
| 266 | /** Relative offset to next block. |
---|
| 267 | * |
---|
| 268 | * @note This value may be unreliable! |
---|
| 269 | */ |
---|
| 270 | uint32_t next_block; |
---|
| 271 | |
---|
| 272 | /** Magic number for the HBIN (should be "hbin"). */ |
---|
| 273 | uint8_t magic[REGFI_HBIN_MAGIC_SIZE]; |
---|
[135] | 274 | } REGFI_HBIN; |
---|
[30] | 275 | |
---|
[97] | 276 | |
---|
[127] | 277 | /* Subkey List -- list of key offsets and hashed names for consistency */ |
---|
[97] | 278 | typedef struct |
---|
| 279 | { |
---|
[139] | 280 | /* Virtual offset of NK record or additional subkey list, |
---|
| 281 | * depending on this list's type. |
---|
| 282 | */ |
---|
[168] | 283 | uint32_t offset; |
---|
[139] | 284 | |
---|
[168] | 285 | uint32_t hash; |
---|
[135] | 286 | } REGFI_SUBKEY_LIST_ELEM; |
---|
[30] | 287 | |
---|
[97] | 288 | |
---|
[169] | 289 | /** Subkey-list structure |
---|
| 290 | * @ingroup regfiMiddleLayer |
---|
| 291 | */ |
---|
[145] | 292 | typedef struct _regfi_subkey_list |
---|
[97] | 293 | { |
---|
[139] | 294 | /* Real offset of this record's cell in the file */ |
---|
[168] | 295 | uint32_t offset; |
---|
[139] | 296 | |
---|
[168] | 297 | uint32_t cell_size; |
---|
[139] | 298 | |
---|
| 299 | /* Number of immediate children */ |
---|
[168] | 300 | uint32_t num_children; |
---|
[139] | 301 | |
---|
| 302 | /* Total number of keys referenced by this list and it's children */ |
---|
[168] | 303 | uint32_t num_keys; |
---|
[139] | 304 | |
---|
[135] | 305 | REGFI_SUBKEY_LIST_ELEM* elements; |
---|
[168] | 306 | uint8_t magic[REGFI_CELL_MAGIC_SIZE]; |
---|
[139] | 307 | |
---|
| 308 | /* Set if the magic indicates this subkey list points to child subkey lists */ |
---|
| 309 | bool recursive_type; |
---|
[135] | 310 | } REGFI_SUBKEY_LIST; |
---|
[30] | 311 | |
---|
[97] | 312 | |
---|
[168] | 313 | typedef uint32_t REGFI_VALUE_LIST_ELEM; |
---|
[169] | 314 | /** Value-list structure |
---|
| 315 | * @ingroup regfiMiddleLayer |
---|
| 316 | */ |
---|
[145] | 317 | typedef struct _regfi_value_list |
---|
| 318 | { |
---|
| 319 | /* Actual number of values referenced by this list. |
---|
| 320 | * May differ from parent key's num_values if there were parsing errors. |
---|
| 321 | */ |
---|
[168] | 322 | uint32_t num_values; |
---|
[145] | 323 | |
---|
| 324 | REGFI_VALUE_LIST_ELEM* elements; |
---|
| 325 | } REGFI_VALUE_LIST; |
---|
| 326 | |
---|
| 327 | |
---|
[169] | 328 | /** Class name structure (used in storing SysKeys) |
---|
| 329 | * @ingroup regfiBase |
---|
| 330 | */ |
---|
[160] | 331 | typedef struct _regfi_classname |
---|
| 332 | { |
---|
[169] | 333 | /** As converted to requested REGFI_ENCODING */ |
---|
[160] | 334 | char* interpreted; |
---|
| 335 | |
---|
[169] | 336 | /** Represents raw buffer read from classname cell. |
---|
| 337 | * |
---|
| 338 | * Length of this item is specified in the size field. |
---|
| 339 | */ |
---|
[168] | 340 | uint8_t* raw; |
---|
[160] | 341 | |
---|
[169] | 342 | /** Length of the raw data. |
---|
| 343 | * |
---|
| 344 | * May be shorter than that indicated by parent key. |
---|
| 345 | */ |
---|
[168] | 346 | uint16_t size; |
---|
[160] | 347 | } REGFI_CLASSNAME; |
---|
| 348 | |
---|
| 349 | |
---|
[169] | 350 | /** Data record structure |
---|
| 351 | * @ingroup regfiBase |
---|
| 352 | */ |
---|
[159] | 353 | typedef struct _regfi_data |
---|
| 354 | { |
---|
[169] | 355 | /** Data type of this data, as indicated by the referencing VK record. */ |
---|
[168] | 356 | uint32_t type; |
---|
[159] | 357 | |
---|
[169] | 358 | /** Length of the raw data. */ |
---|
[168] | 359 | uint32_t size; |
---|
[159] | 360 | |
---|
[169] | 361 | /** This is always present, representing the raw data cell contents. */ |
---|
[168] | 362 | uint8_t* raw; |
---|
[159] | 363 | |
---|
[169] | 364 | /** Represents the length of the interpreted value. Meaning is type-specific. */ |
---|
[168] | 365 | uint32_t interpreted_size; |
---|
[159] | 366 | |
---|
[169] | 367 | /** These items represent interpreted versions of the REGFI_DATA::raw field. |
---|
| 368 | * |
---|
| 369 | * Only use the appropriate member according to the REGFI_DATA::type field. |
---|
| 370 | * In the event of an unknown type, use only the REGFI_DATA::raw field. |
---|
[159] | 371 | */ |
---|
| 372 | union _regfi_data_interpreted |
---|
| 373 | { |
---|
[169] | 374 | /** REG_NONE |
---|
| 375 | * |
---|
| 376 | * Stored as a raw buffer. Use REGFI_DATA::interpreted_size to determine |
---|
| 377 | * length. |
---|
| 378 | */ |
---|
| 379 | uint8_t* none; |
---|
| 380 | |
---|
| 381 | /** REG_SZ |
---|
| 382 | * |
---|
| 383 | * Stored as a NUL terminated string. Converted to the specified |
---|
| 384 | * REGFI_ENCODING. |
---|
| 385 | */ |
---|
[168] | 386 | uint8_t* string; |
---|
[169] | 387 | |
---|
| 388 | /** REG_EXPAND_SZ |
---|
| 389 | * |
---|
| 390 | * Stored as a NUL terminated string. Converted to the specified |
---|
| 391 | * REGFI_ENCODING. |
---|
| 392 | */ |
---|
[168] | 393 | uint8_t* expand_string; |
---|
[169] | 394 | |
---|
| 395 | /** REG_BINARY |
---|
| 396 | * |
---|
| 397 | * Stored as a raw buffer. Use REGFI_DATA::interpreted_size to determine |
---|
| 398 | * length. |
---|
| 399 | */ |
---|
| 400 | uint8_t* binary; |
---|
| 401 | |
---|
| 402 | /** REG_DWORD */ |
---|
[168] | 403 | uint32_t dword; |
---|
[169] | 404 | |
---|
| 405 | /** REG_DWORD_BE */ |
---|
[168] | 406 | uint32_t dword_be; |
---|
[169] | 407 | |
---|
| 408 | /** REG_LINK |
---|
| 409 | * |
---|
| 410 | * Stored as a NUL terminated string. Converted to the specified |
---|
| 411 | * REGFI_ENCODING. |
---|
| 412 | */ |
---|
[168] | 413 | uint8_t* link; |
---|
[169] | 414 | |
---|
| 415 | /** REG_MULTI_SZ |
---|
| 416 | * |
---|
| 417 | * Stored as a list of uint8_t* pointers, terminated with a NULL pointer. |
---|
| 418 | * Each string element in the list is NUL terminated, and the character set |
---|
| 419 | * is determined by the specified REGFI_ENCODING. |
---|
| 420 | */ |
---|
[168] | 421 | uint8_t** multiple_string; |
---|
[169] | 422 | |
---|
| 423 | /** REG_QWORD */ |
---|
[168] | 424 | uint64_t qword; |
---|
[159] | 425 | |
---|
| 426 | /* The following are treated as binary currently, but this may change in |
---|
| 427 | * the future as the formats become better understood. |
---|
| 428 | */ |
---|
[169] | 429 | |
---|
| 430 | /** REG_RESOURCE_LIST |
---|
| 431 | * |
---|
| 432 | * Stored as a raw buffer. Use REGFI_DATA::interpreted_size to determine |
---|
| 433 | * length. |
---|
| 434 | */ |
---|
[168] | 435 | uint8_t* resource_list; |
---|
[169] | 436 | |
---|
| 437 | /** REG_FULL_RESOURCE_DESCRIPTOR |
---|
| 438 | * |
---|
| 439 | * Stored as a raw buffer. Use REGFI_DATA::interpreted_size to determine |
---|
| 440 | * length. |
---|
| 441 | */ |
---|
[168] | 442 | uint8_t* full_resource_descriptor; |
---|
[169] | 443 | |
---|
| 444 | /** REG_RESOURCE_REQUIREMENTS_LIST |
---|
| 445 | * |
---|
| 446 | * Stored as a raw buffer. Use REGFI_DATA::interpreted_size to determine |
---|
| 447 | * length. |
---|
| 448 | */ |
---|
[168] | 449 | uint8_t* resource_requirements_list; |
---|
[159] | 450 | } interpreted; |
---|
| 451 | } REGFI_DATA; |
---|
| 452 | |
---|
| 453 | |
---|
[169] | 454 | /** Value structure |
---|
| 455 | * @ingroup regfiBase |
---|
| 456 | */ |
---|
| 457 | typedef struct |
---|
[97] | 458 | { |
---|
[169] | 459 | /** Real offset of this record's cell in the file */ |
---|
| 460 | uint32_t offset; |
---|
[101] | 461 | |
---|
[169] | 462 | /** ((start_offset - end_offset) & 0xfffffff8) */ |
---|
| 463 | uint32_t cell_size; |
---|
[159] | 464 | |
---|
[169] | 465 | /* XXX: deprecated */ |
---|
| 466 | REGFI_DATA* data; |
---|
| 467 | |
---|
| 468 | /** The name of this value converted to desired REGFI_ENCODING. |
---|
| 469 | * |
---|
| 470 | * This conversion typically occurs automatically through REGFI_ITERATOR |
---|
| 471 | * settings. String is NUL terminated. |
---|
| 472 | */ |
---|
| 473 | char* valuename; |
---|
| 474 | |
---|
| 475 | /** The raw value name |
---|
| 476 | * |
---|
| 477 | * Length of the buffer is stored in name_length. |
---|
| 478 | */ |
---|
[168] | 479 | uint8_t* valuename_raw; |
---|
[169] | 480 | |
---|
| 481 | /** Length of valuename_raw */ |
---|
[168] | 482 | uint16_t name_length; |
---|
[169] | 483 | |
---|
| 484 | /** Offset from beginning of this hbin block */ |
---|
| 485 | uint32_t hbin_off; |
---|
[53] | 486 | |
---|
[169] | 487 | /** Size of the value's data as reported in the VK record. |
---|
| 488 | * |
---|
| 489 | * May be different than that obtained while parsing the data cell itself. |
---|
| 490 | */ |
---|
| 491 | uint32_t data_size; |
---|
| 492 | |
---|
| 493 | /** Virtual offset of data cell */ |
---|
| 494 | uint32_t data_off; |
---|
| 495 | |
---|
| 496 | /** Value's data type */ |
---|
[168] | 497 | uint32_t type; |
---|
[169] | 498 | |
---|
| 499 | /** VK record's magic number (should be "vk") */ |
---|
[168] | 500 | uint8_t magic[REGFI_CELL_MAGIC_SIZE]; |
---|
[169] | 501 | |
---|
| 502 | /** VK record flags */ |
---|
[168] | 503 | uint16_t flags; |
---|
[169] | 504 | |
---|
| 505 | /* XXX: A 2-byte field of unknown purpose stored in the VK record */ |
---|
[168] | 506 | uint16_t unknown1; |
---|
[169] | 507 | |
---|
| 508 | /** Whether or not the data record is stored in the VK record's data_off field. |
---|
| 509 | * |
---|
| 510 | * This information is derived from the high bit of the raw data size field. |
---|
| 511 | */ |
---|
| 512 | bool data_in_offset; |
---|
[135] | 513 | } REGFI_VK_REC; |
---|
[30] | 514 | |
---|
| 515 | |
---|
| 516 | /* Key Security */ |
---|
[135] | 517 | struct _regfi_sk_rec; |
---|
[30] | 518 | |
---|
[169] | 519 | /** Security structure |
---|
| 520 | * @ingroup regfiBase |
---|
| 521 | */ |
---|
[135] | 522 | typedef struct _regfi_sk_rec |
---|
[97] | 523 | { |
---|
[169] | 524 | /** Real file offset of this record */ |
---|
| 525 | uint32_t offset; |
---|
[111] | 526 | |
---|
[169] | 527 | /** ((start_offset - end_offset) & 0xfffffff8) */ |
---|
| 528 | uint32_t cell_size; |
---|
| 529 | |
---|
| 530 | /** The stored Windows security descriptor for this SK record */ |
---|
[134] | 531 | WINSEC_DESC* sec_desc; |
---|
[169] | 532 | |
---|
| 533 | /** Offset of this record from beginning of this hbin block */ |
---|
| 534 | uint32_t hbin_off; |
---|
[53] | 535 | |
---|
[169] | 536 | /** Offset of the previous SK record in the linked list of SK records */ |
---|
[168] | 537 | uint32_t prev_sk_off; |
---|
[169] | 538 | |
---|
| 539 | /** Offset of the next SK record in the linked list of SK records */ |
---|
[168] | 540 | uint32_t next_sk_off; |
---|
[169] | 541 | |
---|
| 542 | /** Number of keys referencing this SK record */ |
---|
[168] | 543 | uint32_t ref_count; |
---|
[169] | 544 | |
---|
| 545 | /** Size of security descriptor (sec_desc) */ |
---|
| 546 | uint32_t desc_size; |
---|
| 547 | |
---|
| 548 | /* XXX: A 2-byte field of unknown purpose */ |
---|
[168] | 549 | uint16_t unknown_tag; |
---|
[169] | 550 | |
---|
| 551 | /** The magic number for this record (should be "sk") */ |
---|
[168] | 552 | uint8_t magic[REGFI_CELL_MAGIC_SIZE]; |
---|
[135] | 553 | } REGFI_SK_REC; |
---|
[30] | 554 | |
---|
[81] | 555 | |
---|
[169] | 556 | /** Key structure |
---|
| 557 | * @ingroup regfiBase |
---|
| 558 | */ |
---|
[104] | 559 | typedef struct |
---|
[97] | 560 | { |
---|
[169] | 561 | /** Real offset of this record's cell in the file */ |
---|
| 562 | uint32_t offset; |
---|
[84] | 563 | |
---|
[169] | 564 | /** Actual or estimated length of the cell. |
---|
| 565 | * Always in multiples of 8. |
---|
| 566 | */ |
---|
| 567 | uint32_t cell_size; |
---|
| 568 | |
---|
| 569 | /** Preloaded value-list for this key. |
---|
| 570 | * This element is loaded automatically when using the iterator interface and |
---|
| 571 | * possibly some lower layer interfaces. |
---|
| 572 | */ |
---|
[145] | 573 | REGFI_VALUE_LIST* values; |
---|
[169] | 574 | |
---|
| 575 | |
---|
| 576 | /** Preloaded subkey-list for this key. |
---|
| 577 | * This element is loaded automatically when using the iterator interface and |
---|
| 578 | * possibly some lower layer interfaces. |
---|
| 579 | */ |
---|
[135] | 580 | REGFI_SUBKEY_LIST* subkeys; |
---|
[53] | 581 | |
---|
[169] | 582 | /** Key flags */ |
---|
[168] | 583 | uint16_t flags; |
---|
[169] | 584 | |
---|
| 585 | /** Magic number of key (should be "nk") */ |
---|
[168] | 586 | uint8_t magic[REGFI_CELL_MAGIC_SIZE]; |
---|
[169] | 587 | |
---|
| 588 | /** Key's last modification time */ |
---|
[168] | 589 | REGFI_NTTIME mtime; |
---|
[169] | 590 | |
---|
| 591 | /** Length of keyname_raw */ |
---|
[168] | 592 | uint16_t name_length; |
---|
[169] | 593 | |
---|
| 594 | /** Length of referenced classname */ |
---|
[168] | 595 | uint16_t classname_length; |
---|
[169] | 596 | |
---|
| 597 | /** The name of this key converted to desired REGFI_ENCODING. |
---|
| 598 | * |
---|
| 599 | * This conversion typically occurs automatically through REGFI_ITERATOR |
---|
| 600 | * settings. String is NUL terminated. |
---|
| 601 | */ |
---|
[84] | 602 | char* keyname; |
---|
[169] | 603 | |
---|
| 604 | /** The raw key name |
---|
| 605 | * |
---|
| 606 | * Length of the buffer is stored in name_length. |
---|
| 607 | */ |
---|
[168] | 608 | uint8_t* keyname_raw; |
---|
[169] | 609 | |
---|
| 610 | /** Virutal offset of parent key */ |
---|
| 611 | uint32_t parent_off; |
---|
| 612 | |
---|
| 613 | /** Virutal offset of classname key */ |
---|
[168] | 614 | uint32_t classname_off; |
---|
[53] | 615 | |
---|
[169] | 616 | /* XXX: max subkey name * 2 */ |
---|
| 617 | uint32_t max_bytes_subkeyname; |
---|
| 618 | |
---|
| 619 | /* XXX: max subkey classname length (as if) */ |
---|
| 620 | uint32_t max_bytes_subkeyclassname; |
---|
| 621 | |
---|
| 622 | /* XXX: max valuename * 2 */ |
---|
| 623 | uint32_t max_bytes_valuename; |
---|
| 624 | |
---|
| 625 | /* XXX: max value data size */ |
---|
| 626 | uint32_t max_bytes_value; |
---|
[53] | 627 | |
---|
[169] | 628 | /* XXX: Fields of unknown purpose */ |
---|
[168] | 629 | uint32_t unknown1; |
---|
| 630 | uint32_t unknown2; |
---|
| 631 | uint32_t unknown3; |
---|
| 632 | uint32_t unk_index; /* nigel says run time index ? */ |
---|
[53] | 633 | |
---|
[169] | 634 | /** Number of subkeys */ |
---|
[168] | 635 | uint32_t num_subkeys; |
---|
[169] | 636 | |
---|
| 637 | /** Virtual offset of subkey-list */ |
---|
| 638 | uint32_t subkeys_off; |
---|
| 639 | |
---|
| 640 | /** Number of values for this key */ |
---|
[168] | 641 | uint32_t num_values; |
---|
[169] | 642 | |
---|
| 643 | /** Virtual offset of value-list */ |
---|
| 644 | uint32_t values_off; |
---|
| 645 | |
---|
| 646 | /** Virtual offset of SK record */ |
---|
| 647 | uint32_t sk_off; |
---|
[135] | 648 | } REGFI_NK_REC; |
---|
[30] | 649 | |
---|
[81] | 650 | |
---|
[97] | 651 | |
---|
[169] | 652 | /** Registry hive file data structure |
---|
| 653 | * |
---|
| 654 | * This essential structure stores run-time information about a single open |
---|
| 655 | * registry hive as well as file header (REGF block) data. This structure |
---|
| 656 | * also stores a list of warnings and error messages generated while parsing |
---|
| 657 | * the registry hive. These can be tuned using @ref regfi_set_message_mask. |
---|
| 658 | * Messages may be retrieved using @ref regfi_get_messages. |
---|
| 659 | * |
---|
| 660 | * @note If the message mask is set to record any messages, dependent code |
---|
| 661 | * must use @ref regfi_get_messages periodically to clear the message |
---|
| 662 | * queue. Otherwise, this structure will grow in size over time as |
---|
| 663 | * messages queue up. |
---|
| 664 | * |
---|
| 665 | * @ingroup regfiBase |
---|
| 666 | */ |
---|
[97] | 667 | typedef struct |
---|
| 668 | { |
---|
[135] | 669 | /* Run-time information */ |
---|
| 670 | /************************/ |
---|
[138] | 671 | /* file descriptor */ |
---|
| 672 | int fd; |
---|
[99] | 673 | |
---|
[138] | 674 | /* For sanity checking (not part of the registry header) */ |
---|
[168] | 675 | uint32_t file_length; |
---|
[138] | 676 | |
---|
| 677 | /* Metadata about hbins */ |
---|
[99] | 678 | range_list* hbins; |
---|
| 679 | |
---|
[146] | 680 | /* SK record cached since they're repeatedly reused */ |
---|
| 681 | lru_cache* sk_cache; |
---|
| 682 | |
---|
[135] | 683 | /* Error/warning/info messages returned by lower layer functions */ |
---|
| 684 | char* last_message; |
---|
| 685 | |
---|
[138] | 686 | /* Mask for error message types that will be stored. */ |
---|
[168] | 687 | uint16_t msg_mask; |
---|
[135] | 688 | |
---|
| 689 | |
---|
| 690 | /* Data parsed from file header */ |
---|
| 691 | /********************************/ |
---|
[168] | 692 | uint8_t magic[REGFI_REGF_MAGIC_SIZE];/* "regf" */ |
---|
[151] | 693 | |
---|
| 694 | /* These sequence numbers should match if |
---|
| 695 | * the hive was properly synced to disk. |
---|
| 696 | */ |
---|
[168] | 697 | uint32_t sequence1; |
---|
| 698 | uint32_t sequence2; |
---|
[151] | 699 | |
---|
[168] | 700 | REGFI_NTTIME mtime; |
---|
| 701 | uint32_t major_version; /* Set to 1 in all known hives */ |
---|
| 702 | uint32_t minor_version; /* Set to 3 or 5 in all known hives */ |
---|
| 703 | uint32_t type; /* XXX: Unverified. Set to 0 in all known hives */ |
---|
| 704 | uint32_t format; /* XXX: Unverified. Set to 1 in all known hives */ |
---|
[97] | 705 | |
---|
[168] | 706 | uint32_t root_cell; /* Offset to root cell in the first (or any?) hbin block */ |
---|
| 707 | uint32_t last_block; /* Offset to last hbin block in file */ |
---|
[151] | 708 | |
---|
[168] | 709 | uint32_t cluster; /* XXX: Unverified. Set to 1 in all known hives */ |
---|
[151] | 710 | |
---|
| 711 | /* Matches hive's base file name. Stored in UTF-16LE */ |
---|
[168] | 712 | uint8_t file_name[REGFI_REGF_NAME_SIZE]; |
---|
[151] | 713 | |
---|
| 714 | WINSEC_UUID* rm_id; /* XXX: Unverified. */ |
---|
| 715 | WINSEC_UUID* log_id; /* XXX: Unverified. */ |
---|
| 716 | WINSEC_UUID* tm_id; /* XXX: Unverified. */ |
---|
[168] | 717 | uint32_t flags; /* XXX: Unverified. */ |
---|
| 718 | uint32_t guid_signature; /* XXX: Unverified. */ |
---|
[151] | 719 | |
---|
[168] | 720 | uint32_t checksum; /* Stored checksum from file */ |
---|
| 721 | uint32_t computed_checksum; /* Our own calculation of the checksum. |
---|
[151] | 722 | * (XOR of bytes 0x0000 - 0x01FB) */ |
---|
| 723 | |
---|
| 724 | WINSEC_UUID* thaw_tm_id; /* XXX: Unverified. */ |
---|
| 725 | WINSEC_UUID* thaw_rm_id; /* XXX: Unverified. */ |
---|
| 726 | WINSEC_UUID* thaw_log_id; /* XXX: Unverified. */ |
---|
[168] | 727 | uint32_t boot_type; /* XXX: Unverified. */ |
---|
| 728 | uint32_t boot_recover; /* XXX: Unverified. */ |
---|
[151] | 729 | |
---|
| 730 | /* This seems to include random junk. Possibly unsanitized memory left over |
---|
| 731 | * from when header block was written. For instance, chunks of nk records |
---|
| 732 | * can be found, though often it's all 0s. */ |
---|
[168] | 733 | uint8_t reserved1[REGFI_REGF_RESERVED1_SIZE]; |
---|
[151] | 734 | |
---|
| 735 | /* This is likely reserved and unusued currently. (Should be all 0s.) |
---|
| 736 | * Included here for easier access in looking for hidden data |
---|
| 737 | * or doing research. */ |
---|
[168] | 738 | uint8_t reserved2[REGFI_REGF_RESERVED2_SIZE]; |
---|
[151] | 739 | |
---|
[135] | 740 | } REGFI_FILE; |
---|
[30] | 741 | |
---|
| 742 | |
---|
[169] | 743 | /** Registry hive iterator |
---|
| 744 | * @ingroup regfiIteratorLayer |
---|
| 745 | */ |
---|
[151] | 746 | typedef struct _regfi_iterator |
---|
[97] | 747 | { |
---|
[169] | 748 | /** The registry hive this iterator is associated with */ |
---|
[135] | 749 | REGFI_FILE* f; |
---|
[169] | 750 | |
---|
| 751 | /** All current parent keys and associated iterator positions */ |
---|
[80] | 752 | void_stack* key_positions; |
---|
[169] | 753 | |
---|
| 754 | /** The current key */ |
---|
[135] | 755 | REGFI_NK_REC* cur_key; |
---|
[169] | 756 | |
---|
| 757 | /** The encoding that all strings are converted to as set during iterator |
---|
| 758 | * creation. |
---|
| 759 | */ |
---|
[161] | 760 | REGFI_ENCODING string_encoding; |
---|
[169] | 761 | |
---|
| 762 | /** Index of the current subkey */ |
---|
[168] | 763 | uint32_t cur_subkey; |
---|
[169] | 764 | |
---|
| 765 | /** Index of the current value */ |
---|
[168] | 766 | uint32_t cur_value; |
---|
[78] | 767 | } REGFI_ITERATOR; |
---|
| 768 | |
---|
[80] | 769 | |
---|
[151] | 770 | typedef struct _regfi_iter_position |
---|
[97] | 771 | { |
---|
[135] | 772 | REGFI_NK_REC* nk; |
---|
[168] | 773 | uint32_t cur_subkey; |
---|
[80] | 774 | /* We could store a cur_value here as well, but didn't see |
---|
| 775 | * the use in it right now. |
---|
| 776 | */ |
---|
| 777 | } REGFI_ITER_POSITION; |
---|
| 778 | |
---|
| 779 | |
---|
[169] | 780 | /** General purpose buffer with stored length |
---|
| 781 | * @ingroup regfiBottomLayer |
---|
| 782 | */ |
---|
[151] | 783 | typedef struct _regfi_buffer |
---|
| 784 | { |
---|
[168] | 785 | uint8_t* buf; |
---|
[151] | 786 | uint32_t len; |
---|
| 787 | } REGFI_BUFFER; |
---|
| 788 | |
---|
| 789 | |
---|
[169] | 790 | |
---|
[54] | 791 | /******************************************************************************/ |
---|
[168] | 792 | /** |
---|
[169] | 793 | * @defgroup regfiBase Base Layer: Essential Functions and Data Structures |
---|
[168] | 794 | * |
---|
[169] | 795 | * These functions are either necessary for normal use of the regfi API or just |
---|
| 796 | * don't fit particularly well in any of the other layers. |
---|
[168] | 797 | */ |
---|
[135] | 798 | /******************************************************************************/ |
---|
[166] | 799 | |
---|
[168] | 800 | /** Attempts to open a registry hive and allocate related data structures. |
---|
| 801 | * |
---|
| 802 | * @param filename A string containing the relative or absolute path of the |
---|
[166] | 803 | * registry hive to be opened. |
---|
| 804 | * |
---|
[168] | 805 | * @return A reference to a newly allocated REGFI_FILE structure, |
---|
| 806 | * if successful; NULL on error. |
---|
| 807 | * |
---|
| 808 | * @ingroup regfiBase |
---|
[166] | 809 | */ |
---|
[135] | 810 | REGFI_FILE* regfi_open(const char* filename); |
---|
[32] | 811 | |
---|
[166] | 812 | |
---|
[168] | 813 | /** Parses file headers of an already open registry hive file and |
---|
| 814 | * allocates related structures for further parsing. |
---|
[166] | 815 | * |
---|
[168] | 816 | * @param fd A file descriptor of an already open file. Must be seekable. |
---|
[166] | 817 | * |
---|
[168] | 818 | * @return A reference to a newly allocated REGFI_FILE structure, if successful; |
---|
| 819 | * NULL on error. |
---|
| 820 | * |
---|
| 821 | * @ingroup regfiBase |
---|
[166] | 822 | */ |
---|
| 823 | REGFI_FILE* regfi_alloc(int fd); |
---|
| 824 | |
---|
| 825 | |
---|
[168] | 826 | /** Closes and frees an open registry hive. |
---|
[166] | 827 | * |
---|
[168] | 828 | * @param file The registry structure to close. |
---|
[166] | 829 | * |
---|
[168] | 830 | * @return 0 on success, -1 on failure with errno set. |
---|
| 831 | * errno codes are similar to those of close(2). |
---|
| 832 | * |
---|
| 833 | * @ingroup regfiBase |
---|
[166] | 834 | */ |
---|
| 835 | int regfi_close(REGFI_FILE* file); |
---|
| 836 | |
---|
| 837 | |
---|
[168] | 838 | /** Frees a hive's data structures without closing the underlying file. |
---|
[166] | 839 | * |
---|
[168] | 840 | * @param file The registry structure to free. |
---|
| 841 | * |
---|
| 842 | * @ingroup regfiBase |
---|
[166] | 843 | */ |
---|
| 844 | void regfi_free(REGFI_FILE* file); |
---|
| 845 | |
---|
| 846 | |
---|
[168] | 847 | /** Get errors, warnings, and/or verbose information relating to processing of |
---|
| 848 | * the given registry file. |
---|
[135] | 849 | * |
---|
[168] | 850 | * @param file the structure for the registry file |
---|
[135] | 851 | * |
---|
[168] | 852 | * @return A newly allocated char* which must be free()d by the caller. |
---|
| 853 | * |
---|
| 854 | * @ingroup regfiBase |
---|
[135] | 855 | */ |
---|
[136] | 856 | char* regfi_get_messages(REGFI_FILE* file); |
---|
[159] | 857 | |
---|
[166] | 858 | |
---|
[168] | 859 | /** Set the verbosity level of errors and warnings generated by the library |
---|
| 860 | * (as accessible via regfi_get_messages). |
---|
[166] | 861 | * |
---|
[168] | 862 | * This may be called at any time and will take effect immediately. |
---|
| 863 | * |
---|
| 864 | * @param file the structure for the registry file |
---|
| 865 | * |
---|
| 866 | * @param mask an integer representing the types of messages desired. |
---|
[166] | 867 | * Acceptable values are created through bitwise ORs of |
---|
| 868 | * REGFI_MSG_* values. For instance, if only errors and |
---|
| 869 | * informational messages were desired (but not warnings), |
---|
| 870 | * then one would specify: REGFI_MSG_ERROR|REGFI_MSG_INFO |
---|
| 871 | * New REGFI_FILE structures are created with: |
---|
| 872 | * REGFI_MSG_ERROR|REGFI_MSG_WARN |
---|
| 873 | * Note that error and warning messages will continue to |
---|
| 874 | * accumulate in memory if they are not fetched using |
---|
| 875 | * regfi_get_messages and then freed by the caller. |
---|
| 876 | * To disable error messages entirely, supply 0, which |
---|
| 877 | * will prevent message accumulation. |
---|
| 878 | * |
---|
[168] | 879 | * @ingroup regfiBase |
---|
[166] | 880 | */ |
---|
[168] | 881 | void regfi_set_message_mask(REGFI_FILE* file, uint16_t mask); |
---|
[53] | 882 | |
---|
[159] | 883 | |
---|
[168] | 884 | /* Dispose of previously parsed records */ |
---|
| 885 | |
---|
| 886 | /** Frees a key structure previously returned by one of the API functions |
---|
[159] | 887 | * |
---|
[168] | 888 | * XXX: finish documenting |
---|
[159] | 889 | * |
---|
[168] | 890 | * @ingroup regfiBase |
---|
[159] | 891 | */ |
---|
[168] | 892 | void regfi_free_key(REGFI_NK_REC* nk); |
---|
| 893 | |
---|
| 894 | |
---|
| 895 | /** Frees a value structure previously returned by one of the API functions |
---|
| 896 | * |
---|
| 897 | * XXX: finish documenting |
---|
| 898 | * |
---|
| 899 | * @ingroup regfiBase |
---|
| 900 | */ |
---|
| 901 | void regfi_free_value(REGFI_VK_REC* vk); |
---|
| 902 | |
---|
| 903 | |
---|
| 904 | |
---|
| 905 | /******************************************************************************/ |
---|
| 906 | /** |
---|
[169] | 907 | * @defgroup regfiIteratorLayer Iterator Layer: Primary regfi Library Interface |
---|
[168] | 908 | * |
---|
| 909 | * This top layer of API functions provides an iterator interface which makes |
---|
| 910 | * traversing registry data structures easy in both single-threaded and |
---|
| 911 | * multi-threaded scenarios. |
---|
| 912 | */ |
---|
| 913 | /******************************************************************************/ |
---|
| 914 | |
---|
| 915 | /** Creates a new iterator for the provided registry file. |
---|
| 916 | * |
---|
| 917 | * @param file The opened registry file the iterator should be created for. |
---|
| 918 | * |
---|
| 919 | * @param output_encoding Character encoding that strings should be returned in. |
---|
| 920 | * Only supply the REGFI_ENCODING_* constants, as others |
---|
| 921 | * will be rejected. |
---|
| 922 | * The following values are currently accepted: |
---|
| 923 | * REGFI_ENCODING_DEFAULT (currently REGFI_ENCODING_ASCII) |
---|
| 924 | * REGFI_ENCODING_ASCII |
---|
| 925 | * REGFI_ENCODING_UTF8 |
---|
| 926 | * |
---|
| 927 | * @return A newly allocated REGFI_ITERATOR. |
---|
| 928 | * Must be free()d with regfi_iterator_free. |
---|
| 929 | * |
---|
[169] | 930 | * @ingroup regfiIteratorLayer |
---|
[168] | 931 | */ |
---|
[159] | 932 | REGFI_ITERATOR* regfi_iterator_new(REGFI_FILE* file, |
---|
[161] | 933 | REGFI_ENCODING output_encoding); |
---|
[166] | 934 | |
---|
| 935 | |
---|
[168] | 936 | /** Frees a registry file iterator previously created by regfi_iterator_new. |
---|
[166] | 937 | * |
---|
| 938 | * This does not affect the underlying registry file's allocation status. |
---|
| 939 | * |
---|
[168] | 940 | * @param i the iterator to be freed |
---|
| 941 | * |
---|
[169] | 942 | * @ingroup regfiIteratorLayer |
---|
[166] | 943 | */ |
---|
[84] | 944 | void regfi_iterator_free(REGFI_ITERATOR* i); |
---|
[166] | 945 | |
---|
| 946 | |
---|
[168] | 947 | /** Traverse deeper into the registry tree at the current subkey. |
---|
[166] | 948 | * |
---|
[168] | 949 | * @param i the iterator |
---|
[166] | 950 | * |
---|
[168] | 951 | * @return true on success, false on failure. |
---|
| 952 | * Note that subkey and value indexes are preserved. That is, if a |
---|
| 953 | * regfi_iterator_up call occurs later (reversing the effect of this |
---|
| 954 | * call) then the subkey and value referenced prior to the |
---|
| 955 | * regfi_iterator_down call will still be referenced. This makes |
---|
| 956 | * depth-first iteration particularly easy. |
---|
| 957 | * |
---|
[169] | 958 | * @ingroup regfiIteratorLayer |
---|
[166] | 959 | */ |
---|
[84] | 960 | bool regfi_iterator_down(REGFI_ITERATOR* i); |
---|
[166] | 961 | |
---|
| 962 | |
---|
[168] | 963 | /** Traverse up to the current key's parent key. |
---|
[166] | 964 | * |
---|
[168] | 965 | * @param i the iterator |
---|
[166] | 966 | * |
---|
[168] | 967 | * @return true on success, false on failure. Any subkey or value state |
---|
| 968 | * associated with the current key is lost. |
---|
| 969 | * |
---|
[169] | 970 | * @ingroup regfiIteratorLayer |
---|
[166] | 971 | */ |
---|
[84] | 972 | bool regfi_iterator_up(REGFI_ITERATOR* i); |
---|
[166] | 973 | |
---|
| 974 | |
---|
[168] | 975 | /** Traverse up to the root key of the hive. |
---|
[166] | 976 | * |
---|
[168] | 977 | * @param i the iterator |
---|
[166] | 978 | * |
---|
[168] | 979 | * @return true on success, false on failure. |
---|
| 980 | * |
---|
[169] | 981 | * @ingroup regfiIteratorLayer |
---|
[166] | 982 | */ |
---|
[84] | 983 | bool regfi_iterator_to_root(REGFI_ITERATOR* i); |
---|
[30] | 984 | |
---|
[166] | 985 | |
---|
[168] | 986 | /** Traverse down multiple levels in the registry hive. |
---|
[166] | 987 | * |
---|
| 988 | * XXX: This currently only accepts ASCII key names. Need to look into |
---|
| 989 | * accepting other encodings. |
---|
| 990 | * |
---|
[168] | 991 | * @param i the iterator |
---|
| 992 | * @param path a list of key names representing the path. This list must |
---|
| 993 | * contain NUL terminated strings. The list itself is |
---|
| 994 | * terminated with a NULL pointer. All path elements must be |
---|
| 995 | * keys; value names are not accepted (even as the last |
---|
| 996 | * element). |
---|
| 997 | * |
---|
| 998 | * @return true on success, false on failure. If any element of path is not |
---|
| 999 | * found, false will be returned and the iterator will remain |
---|
| 1000 | * in its original position. |
---|
| 1001 | * |
---|
[169] | 1002 | * @ingroup regfiIteratorLayer |
---|
[166] | 1003 | */ |
---|
[168] | 1004 | bool regfi_iterator_walk_path(REGFI_ITERATOR* i, const char** path); |
---|
[166] | 1005 | |
---|
| 1006 | |
---|
[168] | 1007 | /** Returns the currently referenced key. |
---|
[166] | 1008 | * |
---|
[168] | 1009 | * @param i the iterator |
---|
[166] | 1010 | * |
---|
[168] | 1011 | * @return A read-only key structure for the current key, or NULL on failure. |
---|
| 1012 | * |
---|
[169] | 1013 | * @ingroup regfiIteratorLayer |
---|
[166] | 1014 | */ |
---|
[135] | 1015 | const REGFI_NK_REC* regfi_iterator_cur_key(REGFI_ITERATOR* i); |
---|
[166] | 1016 | |
---|
| 1017 | |
---|
[168] | 1018 | /** Returns the SK (security) record referenced by the current key. |
---|
[166] | 1019 | * |
---|
[168] | 1020 | * @param i the iterator |
---|
[166] | 1021 | * |
---|
[168] | 1022 | * @return A read-only SK structure, or NULL on failure. |
---|
| 1023 | * |
---|
[169] | 1024 | * @ingroup regfiIteratorLayer |
---|
[166] | 1025 | */ |
---|
[135] | 1026 | const REGFI_SK_REC* regfi_iterator_cur_sk(REGFI_ITERATOR* i); |
---|
[80] | 1027 | |
---|
[166] | 1028 | |
---|
[168] | 1029 | /** Sets the internal subkey index to the first subkey referenced by the current |
---|
| 1030 | * key and returns that key. |
---|
[166] | 1031 | * |
---|
[168] | 1032 | * @param i the iterator |
---|
[166] | 1033 | * |
---|
[168] | 1034 | * @return A newly allocated key structure for the newly referenced first |
---|
| 1035 | * subkey, or NULL on failure. Failure may be due to a lack of any |
---|
| 1036 | * subkeys or other errors. Newly allocated keys must be freed with |
---|
| 1037 | * regfi_free_key. |
---|
| 1038 | * |
---|
[169] | 1039 | * @ingroup regfiIteratorLayer |
---|
[166] | 1040 | */ |
---|
[150] | 1041 | REGFI_NK_REC* regfi_iterator_first_subkey(REGFI_ITERATOR* i); |
---|
[166] | 1042 | |
---|
| 1043 | |
---|
[168] | 1044 | /** Returns the currently indexed subkey. |
---|
[166] | 1045 | * |
---|
[168] | 1046 | * @param i the iterator |
---|
[166] | 1047 | * |
---|
[168] | 1048 | * @return A newly allocated key structure for the currently referenced subkey, |
---|
| 1049 | * or NULL on failure. Newly allocated keys must be freed with |
---|
| 1050 | * regfi_free_key. |
---|
| 1051 | * |
---|
[169] | 1052 | * @ingroup regfiIteratorLayer |
---|
[166] | 1053 | */ |
---|
[150] | 1054 | REGFI_NK_REC* regfi_iterator_cur_subkey(REGFI_ITERATOR* i); |
---|
[167] | 1055 | |
---|
| 1056 | |
---|
[168] | 1057 | /** Increments the internal subkey index to the next key in the subkey-list and |
---|
| 1058 | * returns the subkey for that index. |
---|
[167] | 1059 | * |
---|
[168] | 1060 | * @param i the iterator |
---|
[167] | 1061 | * |
---|
[168] | 1062 | * @return A newly allocated key structure for the next subkey or NULL on |
---|
| 1063 | * failure. Newly allocated keys must be freed with regfi_free_key. |
---|
| 1064 | * |
---|
[169] | 1065 | * @ingroup regfiIteratorLayer |
---|
[167] | 1066 | */ |
---|
[150] | 1067 | REGFI_NK_REC* regfi_iterator_next_subkey(REGFI_ITERATOR* i); |
---|
[167] | 1068 | |
---|
| 1069 | |
---|
[168] | 1070 | /** Searches for a subkey with a given name under the current key. |
---|
[167] | 1071 | * |
---|
[168] | 1072 | * @param i the iterator |
---|
| 1073 | * @param subkey_name subkey name to search for |
---|
[167] | 1074 | * |
---|
[168] | 1075 | * @return True if such a subkey was found, false otherwise. If a subkey is |
---|
| 1076 | * found, the current subkey index is set to that subkey. Otherwise, |
---|
| 1077 | * the subkey index remains at the same location as before the call. |
---|
| 1078 | * |
---|
[169] | 1079 | * @ingroup regfiIteratorLayer |
---|
[167] | 1080 | */ |
---|
[157] | 1081 | bool regfi_iterator_find_subkey(REGFI_ITERATOR* i, |
---|
| 1082 | const char* subkey_name); |
---|
[150] | 1083 | |
---|
[168] | 1084 | /** Sets the internal value index to the first value referenced by the current |
---|
| 1085 | * key and returns that value. |
---|
[167] | 1086 | * |
---|
[168] | 1087 | * @param i the iterator |
---|
[167] | 1088 | * |
---|
[168] | 1089 | * @return A newly allocated value structure for the newly referenced first |
---|
| 1090 | * value, or NULL on failure. Failure may be due to a lack of any |
---|
| 1091 | * values or other errors. Newly allocated keys must be freed with |
---|
| 1092 | * regfi_free_value. |
---|
| 1093 | * |
---|
[169] | 1094 | * @ingroup regfiIteratorLayer |
---|
[167] | 1095 | */ |
---|
[150] | 1096 | REGFI_VK_REC* regfi_iterator_first_value(REGFI_ITERATOR* i); |
---|
[167] | 1097 | |
---|
| 1098 | |
---|
[168] | 1099 | /** Returns the currently indexed value. |
---|
[167] | 1100 | * |
---|
[168] | 1101 | * @param i the iterator |
---|
[167] | 1102 | * |
---|
[168] | 1103 | * @return A newly allocated value structure for the currently referenced value, |
---|
| 1104 | * or NULL on failure. Newly allocated values must be freed with |
---|
| 1105 | * regfi_free_value. |
---|
| 1106 | * |
---|
[169] | 1107 | * @ingroup regfiIteratorLayer |
---|
[167] | 1108 | */ |
---|
[150] | 1109 | REGFI_VK_REC* regfi_iterator_cur_value(REGFI_ITERATOR* i); |
---|
[167] | 1110 | |
---|
| 1111 | |
---|
[168] | 1112 | /** Increments the internal value index to the next value in the value-list and |
---|
| 1113 | * returns the value for that index. |
---|
[167] | 1114 | * |
---|
[168] | 1115 | * @param i the iterator |
---|
[167] | 1116 | * |
---|
[168] | 1117 | * @return A newly allocated key structure for the next value or NULL on |
---|
| 1118 | * failure. Newly allocated keys must be freed with regfi_free_value. |
---|
| 1119 | * |
---|
[169] | 1120 | * @ingroup regfiIteratorLayer |
---|
[167] | 1121 | */ |
---|
[150] | 1122 | REGFI_VK_REC* regfi_iterator_next_value(REGFI_ITERATOR* i); |
---|
[167] | 1123 | |
---|
| 1124 | |
---|
[168] | 1125 | /** Searches for a value with a given name under the current key. |
---|
[167] | 1126 | * |
---|
[168] | 1127 | * @param i the iterator |
---|
| 1128 | * @param value_name value name to search for |
---|
[167] | 1129 | * |
---|
[168] | 1130 | * @return True if such a value was found, false otherwise. If a value is |
---|
| 1131 | * found, the current value index is set to that value. Otherwise, |
---|
| 1132 | * the value index remains at the same location as before the call. |
---|
| 1133 | * |
---|
[169] | 1134 | * @ingroup regfiIteratorLayer |
---|
[167] | 1135 | */ |
---|
[157] | 1136 | bool regfi_iterator_find_value(REGFI_ITERATOR* i, |
---|
| 1137 | const char* value_name); |
---|
[80] | 1138 | |
---|
[168] | 1139 | /** Retrieves classname for a given key. |
---|
[167] | 1140 | * |
---|
[168] | 1141 | * @param i the iterator |
---|
| 1142 | * @param key the key whose classname is desired |
---|
[167] | 1143 | * |
---|
[168] | 1144 | * @return Returns a newly allocated classname structure, or NULL on failure. |
---|
| 1145 | * Classname structures must be freed with regfi_free_classname. |
---|
| 1146 | * |
---|
[169] | 1147 | * @ingroup regfiIteratorLayer |
---|
[167] | 1148 | */ |
---|
[160] | 1149 | REGFI_CLASSNAME* regfi_iterator_fetch_classname(REGFI_ITERATOR* i, |
---|
| 1150 | const REGFI_NK_REC* key); |
---|
[167] | 1151 | |
---|
| 1152 | |
---|
[168] | 1153 | /** Retrieves data for a given value. |
---|
[167] | 1154 | * |
---|
[168] | 1155 | * @param i the iterator |
---|
| 1156 | * @param value the value whose data is desired |
---|
[167] | 1157 | * |
---|
[168] | 1158 | * @return Returns a newly allocated data structure, or NULL on failure. |
---|
| 1159 | * Data structures must be freed with regfi_free_data. |
---|
| 1160 | * |
---|
[169] | 1161 | * @ingroup regfiIteratorLayer |
---|
[167] | 1162 | */ |
---|
[159] | 1163 | REGFI_DATA* regfi_iterator_fetch_data(REGFI_ITERATOR* i, |
---|
| 1164 | const REGFI_VK_REC* value); |
---|
[127] | 1165 | |
---|
[157] | 1166 | |
---|
[168] | 1167 | |
---|
| 1168 | /******************************************************************************/ |
---|
| 1169 | /** |
---|
[169] | 1170 | * @defgroup regfiGlueLayer Glue Layer: Logical Data Structure Loading |
---|
[168] | 1171 | */ |
---|
| 1172 | /******************************************************************************/ |
---|
| 1173 | |
---|
| 1174 | /** Loads a key at a given file offset along with associated data structures. |
---|
| 1175 | * |
---|
| 1176 | * XXX: finish documenting |
---|
| 1177 | * |
---|
[169] | 1178 | * @ingroup regfiGlueLayer |
---|
[168] | 1179 | */ |
---|
| 1180 | REGFI_NK_REC* regfi_load_key(REGFI_FILE* file, uint32_t offset, |
---|
[161] | 1181 | REGFI_ENCODING output_encoding, |
---|
[135] | 1182 | bool strict); |
---|
[168] | 1183 | |
---|
| 1184 | |
---|
| 1185 | /** Loads a value at a given file offset alng with associated data structures. |
---|
| 1186 | * |
---|
| 1187 | * XXX: finish documenting |
---|
| 1188 | * |
---|
[169] | 1189 | * @ingroup regfiGlueLayer |
---|
[168] | 1190 | */ |
---|
| 1191 | REGFI_VK_REC* regfi_load_value(REGFI_FILE* file, uint32_t offset, |
---|
[162] | 1192 | REGFI_ENCODING output_encoding, |
---|
[145] | 1193 | bool strict); |
---|
[168] | 1194 | |
---|
| 1195 | |
---|
| 1196 | /** Loads a logical subkey list in its entirety which may span multiple records. |
---|
| 1197 | * |
---|
| 1198 | * XXX: finish documenting |
---|
| 1199 | * |
---|
[169] | 1200 | * @ingroup regfiGlueLayer |
---|
[168] | 1201 | */ |
---|
| 1202 | REGFI_SUBKEY_LIST* regfi_load_subkeylist(REGFI_FILE* file, uint32_t offset, |
---|
| 1203 | uint32_t num_keys, uint32_t max_size, |
---|
[146] | 1204 | bool strict); |
---|
[168] | 1205 | |
---|
| 1206 | |
---|
| 1207 | /** Loads a valuelist. |
---|
| 1208 | * |
---|
| 1209 | * XXX: finish documenting |
---|
| 1210 | * |
---|
[169] | 1211 | * @ingroup regfiGlueLayer |
---|
[168] | 1212 | */ |
---|
| 1213 | REGFI_VALUE_LIST* regfi_load_valuelist(REGFI_FILE* file, uint32_t offset, |
---|
| 1214 | uint32_t num_values, uint32_t max_size, |
---|
[135] | 1215 | bool strict); |
---|
[127] | 1216 | |
---|
[168] | 1217 | |
---|
| 1218 | /** Loads a data record which may be contained in the virtual offset, in a |
---|
| 1219 | * single cell, or in multiple cells through big data records. |
---|
| 1220 | * |
---|
| 1221 | * XXX: finish documenting |
---|
| 1222 | * |
---|
[169] | 1223 | * @ingroup regfiGlueLayer |
---|
[168] | 1224 | */ |
---|
| 1225 | REGFI_BUFFER regfi_load_data(REGFI_FILE* file, uint32_t voffset, |
---|
| 1226 | uint32_t length, bool data_in_offset, |
---|
[157] | 1227 | bool strict); |
---|
| 1228 | |
---|
[168] | 1229 | |
---|
| 1230 | /** Loads the data associated with a big data record at the specified offset. |
---|
| 1231 | * |
---|
| 1232 | * XXX: finish documenting |
---|
| 1233 | * |
---|
[169] | 1234 | * @ingroup regfiGlueLayer |
---|
[168] | 1235 | */ |
---|
| 1236 | REGFI_BUFFER regfi_load_big_data(REGFI_FILE* file, uint32_t offset, |
---|
| 1237 | uint32_t data_length,uint32_t cell_length, |
---|
[157] | 1238 | range_list* used_ranges, |
---|
| 1239 | bool strict); |
---|
[168] | 1240 | |
---|
| 1241 | |
---|
| 1242 | /** Given raw data, attempts to interpret the data based on a specified registry |
---|
| 1243 | * data type. |
---|
| 1244 | * |
---|
| 1245 | * XXX: finish documenting |
---|
| 1246 | * |
---|
[169] | 1247 | * @ingroup regfiGlueLayer |
---|
[168] | 1248 | */ |
---|
[159] | 1249 | bool regfi_interpret_data(REGFI_FILE* file, |
---|
[161] | 1250 | REGFI_ENCODING string_encoding, |
---|
[168] | 1251 | uint32_t type, REGFI_DATA* data); |
---|
| 1252 | |
---|
| 1253 | |
---|
| 1254 | /** Frees the memory associated with a REGFI_CLASSNAME data structure. |
---|
| 1255 | * |
---|
| 1256 | * XXX: finish documenting |
---|
| 1257 | * |
---|
[169] | 1258 | * @ingroup regfiGlueLayer |
---|
[168] | 1259 | */ |
---|
[160] | 1260 | void regfi_free_classname(REGFI_CLASSNAME* classname); |
---|
[168] | 1261 | |
---|
| 1262 | |
---|
| 1263 | /** Frees the memory associated with a REGFI_DATA data structure. |
---|
| 1264 | * |
---|
| 1265 | * XXX: finish documenting |
---|
| 1266 | * |
---|
[169] | 1267 | * @ingroup regfiGlueLayer |
---|
[168] | 1268 | */ |
---|
[159] | 1269 | void regfi_free_data(REGFI_DATA* data); |
---|
[157] | 1270 | |
---|
[160] | 1271 | |
---|
[146] | 1272 | /* These are cached so return values don't need to be freed. */ |
---|
[168] | 1273 | |
---|
| 1274 | /** Loads an "sk" security record at the specified offset. |
---|
| 1275 | * |
---|
| 1276 | * XXX: finish documenting |
---|
| 1277 | * |
---|
[169] | 1278 | * @ingroup regfiGlueLayer |
---|
[168] | 1279 | */ |
---|
| 1280 | const REGFI_SK_REC* regfi_load_sk(REGFI_FILE* file, uint32_t offset, |
---|
[146] | 1281 | bool strict); |
---|
| 1282 | |
---|
| 1283 | |
---|
[168] | 1284 | /** Retrieves the HBIN data structure stored at the specified offset. |
---|
| 1285 | * |
---|
| 1286 | * XXX: finish documenting |
---|
| 1287 | * |
---|
[169] | 1288 | * @ingroup regfiGlueLayer |
---|
[168] | 1289 | */ |
---|
| 1290 | const REGFI_HBIN* regfi_lookup_hbin(REGFI_FILE* file, uint32_t offset); |
---|
| 1291 | |
---|
| 1292 | |
---|
| 1293 | |
---|
| 1294 | /******************************************************************************/ |
---|
| 1295 | /** |
---|
[169] | 1296 | * @defgroup regfiParseLayer Parsing Layer: Direct Data Structure Access |
---|
[168] | 1297 | */ |
---|
| 1298 | /******************************************************************************/ |
---|
| 1299 | |
---|
[135] | 1300 | REGFI_FILE* regfi_parse_regf(int fd, bool strict); |
---|
[168] | 1301 | REGFI_HBIN* regfi_parse_hbin(REGFI_FILE* file, uint32_t offset, |
---|
[110] | 1302 | bool strict); |
---|
[80] | 1303 | |
---|
[99] | 1304 | |
---|
[168] | 1305 | /** Parses an NK record at the specified offset |
---|
[99] | 1306 | * |
---|
[168] | 1307 | * @param file the registry file structure |
---|
| 1308 | * @param offset the offset of the cell (not the record) to be parsed. |
---|
| 1309 | * @param max_size the maximum size the NK cell could be. (for validation) |
---|
| 1310 | * @param strict if true, rejects any malformed records. Otherwise, |
---|
| 1311 | * tries to minimally validate integrity. |
---|
| 1312 | * |
---|
| 1313 | * @return A newly allocated NK record structure, or NULL on failure. |
---|
| 1314 | * |
---|
[169] | 1315 | * @ingroup regfiParseLayer |
---|
[99] | 1316 | */ |
---|
[168] | 1317 | REGFI_NK_REC* regfi_parse_nk(REGFI_FILE* file, uint32_t offset, |
---|
| 1318 | uint32_t max_size, bool strict); |
---|
[99] | 1319 | |
---|
[139] | 1320 | |
---|
[168] | 1321 | /** Parses a single cell containing a subkey-list record. |
---|
| 1322 | * |
---|
| 1323 | * XXX: finish documenting |
---|
| 1324 | * |
---|
[169] | 1325 | * @ingroup regfiParseLayer |
---|
[168] | 1326 | */ |
---|
| 1327 | REGFI_SUBKEY_LIST* regfi_parse_subkeylist(REGFI_FILE* file, uint32_t offset, |
---|
| 1328 | uint32_t max_size, bool strict); |
---|
[103] | 1329 | |
---|
[111] | 1330 | |
---|
[168] | 1331 | /** Parses a VK (value) record at the specified offset |
---|
| 1332 | * |
---|
| 1333 | * XXX: finish documenting |
---|
| 1334 | * |
---|
[169] | 1335 | * @ingroup regfiParseLayer |
---|
[168] | 1336 | */ |
---|
| 1337 | REGFI_VK_REC* regfi_parse_vk(REGFI_FILE* file, uint32_t offset, |
---|
| 1338 | uint32_t max_size, bool strict); |
---|
| 1339 | |
---|
| 1340 | |
---|
| 1341 | /** Parses an SK (security) record at the specified offset |
---|
| 1342 | * |
---|
| 1343 | * XXX: finish documenting |
---|
| 1344 | * |
---|
[169] | 1345 | * @ingroup regfiParseLayer |
---|
[168] | 1346 | */ |
---|
| 1347 | REGFI_SK_REC* regfi_parse_sk(REGFI_FILE* file, uint32_t offset, |
---|
| 1348 | uint32_t max_size, bool strict); |
---|
| 1349 | |
---|
| 1350 | |
---|
| 1351 | /** Retrieves information on all cells in the registry hive which are |
---|
| 1352 | * currently in the unallocated status. |
---|
| 1353 | * |
---|
| 1354 | * The unallocated status is determined based soley on the cell length sign. |
---|
| 1355 | * |
---|
| 1356 | * XXX: finish documenting |
---|
| 1357 | * |
---|
[169] | 1358 | * @ingroup regfiParseLayer |
---|
[168] | 1359 | */ |
---|
[135] | 1360 | range_list* regfi_parse_unalloc_cells(REGFI_FILE* file); |
---|
[101] | 1361 | |
---|
[111] | 1362 | |
---|
[168] | 1363 | /** Helper function to parse a cell |
---|
| 1364 | * |
---|
| 1365 | * XXX: finish documenting |
---|
| 1366 | * |
---|
[169] | 1367 | * @ingroup regfiParseLayer |
---|
[168] | 1368 | */ |
---|
| 1369 | bool regfi_parse_cell(int fd, uint32_t offset, |
---|
| 1370 | uint8_t* hdr, uint32_t hdr_len, |
---|
| 1371 | uint32_t* cell_length, bool* unalloc); |
---|
[126] | 1372 | |
---|
[157] | 1373 | |
---|
[168] | 1374 | /** Parses a classname cell |
---|
| 1375 | * |
---|
| 1376 | * XXX: finish documenting |
---|
| 1377 | * |
---|
[169] | 1378 | * @ingroup regfiParseLayer |
---|
[168] | 1379 | */ |
---|
| 1380 | uint8_t* regfi_parse_classname(REGFI_FILE* file, uint32_t offset, |
---|
| 1381 | uint16_t* name_length, |
---|
| 1382 | uint32_t max_size, bool strict); |
---|
[157] | 1383 | |
---|
| 1384 | |
---|
[168] | 1385 | /** Parses a single-cell data record |
---|
| 1386 | * |
---|
| 1387 | * XXX: finish documenting |
---|
| 1388 | * |
---|
[169] | 1389 | * @ingroup regfiParseLayer |
---|
[168] | 1390 | */ |
---|
| 1391 | REGFI_BUFFER regfi_parse_data(REGFI_FILE* file, uint32_t offset, |
---|
| 1392 | uint32_t length, bool strict); |
---|
[127] | 1393 | |
---|
[150] | 1394 | |
---|
[168] | 1395 | /** Parses a "little data" record which is stored entirely within the |
---|
| 1396 | * provided virtual offset. |
---|
| 1397 | * |
---|
| 1398 | * XXX: finish documenting |
---|
| 1399 | * |
---|
[169] | 1400 | * @ingroup regfiParseLayer |
---|
[168] | 1401 | */ |
---|
| 1402 | REGFI_BUFFER regfi_parse_little_data(REGFI_FILE* file, uint32_t voffset, |
---|
| 1403 | uint32_t length, bool strict); |
---|
[150] | 1404 | |
---|
[168] | 1405 | |
---|
| 1406 | /******************************************************************************/ |
---|
| 1407 | /* Private Functions */ |
---|
| 1408 | /******************************************************************************/ |
---|
[161] | 1409 | REGFI_NK_REC* regfi_rootkey(REGFI_FILE* file, |
---|
| 1410 | REGFI_ENCODING output_encoding); |
---|
[135] | 1411 | void regfi_subkeylist_free(REGFI_SUBKEY_LIST* list); |
---|
[169] | 1412 | uint32_t regfi_read(int fd, uint8_t* buf, uint32_t* length); |
---|
[127] | 1413 | |
---|
[135] | 1414 | const char* regfi_type_val2str(unsigned int val); |
---|
| 1415 | int regfi_type_str2val(const char* str); |
---|
[127] | 1416 | |
---|
[135] | 1417 | char* regfi_get_sacl(WINSEC_DESC* sec_desc); |
---|
| 1418 | char* regfi_get_dacl(WINSEC_DESC* sec_desc); |
---|
| 1419 | char* regfi_get_owner(WINSEC_DESC* sec_desc); |
---|
| 1420 | char* regfi_get_group(WINSEC_DESC* sec_desc); |
---|
| 1421 | |
---|
[168] | 1422 | REGFI_SUBKEY_LIST* regfi_merge_subkeylists(uint16_t num_lists, |
---|
[135] | 1423 | REGFI_SUBKEY_LIST** lists, |
---|
| 1424 | bool strict); |
---|
[168] | 1425 | REGFI_SUBKEY_LIST* regfi_load_subkeylist_aux(REGFI_FILE* file, uint32_t offset, |
---|
| 1426 | uint32_t max_size, bool strict, |
---|
| 1427 | uint8_t depth_left); |
---|
| 1428 | void regfi_add_message(REGFI_FILE* file, uint16_t msg_type, |
---|
[138] | 1429 | const char* fmt, ...); |
---|
[146] | 1430 | REGFI_NK_REC* regfi_copy_nk(const REGFI_NK_REC* nk); |
---|
| 1431 | REGFI_VK_REC* regfi_copy_vk(const REGFI_VK_REC* vk); |
---|
[168] | 1432 | int32_t regfi_calc_maxsize(REGFI_FILE* file, uint32_t offset); |
---|
| 1433 | int32_t regfi_conv_charset(const char* input_charset, |
---|
[161] | 1434 | const char* output_charset, |
---|
[168] | 1435 | uint8_t* input, char* output, |
---|
| 1436 | uint32_t input_len, uint32_t output_max); |
---|
[159] | 1437 | REGFI_DATA* regfi_buffer_to_data(REGFI_BUFFER raw_data); |
---|
[146] | 1438 | |
---|
[168] | 1439 | /* XXX: move to base API and document */ |
---|
| 1440 | void regfi_unix2nt_time(REGFI_NTTIME* nt, time_t t); |
---|
| 1441 | time_t regfi_nt2unix_time(const REGFI_NTTIME* nt); |
---|
| 1442 | |
---|
| 1443 | |
---|
[78] | 1444 | #endif /* _REGFI_H */ |
---|