regfi
|
These functions are either necessary for normal use of the regfi API or just don't fit particularly well in any of the other layers. More...
Data Structures | |
struct | REGFI_CLASSNAME |
Class name structure (used in storing SysKeys) More... | |
struct | REGFI_DATA |
Data record structure. More... | |
struct | REGFI_VK |
Value structure. More... | |
struct | REGFI_SK |
Security structure. More... | |
struct | REGFI_NK |
Key structure. More... | |
struct | REGFI_FILE |
Registry hive file data structure. More... | |
Functions | |
const char * | regfi_version () |
Returns the current regfi library version. More... | |
REGFI_FILE * | regfi_alloc (int fd, REGFI_ENCODING output_encoding) |
Parses file headers of an already open registry hive file and allocates related structures for further parsing. More... | |
REGFI_FILE * | regfi_alloc_cb (REGFI_RAW_FILE *file_cb, REGFI_ENCODING output_encoding) |
Parses file headers returned by supplied callback functions. More... | |
void | regfi_free (REGFI_FILE *file) |
Frees a hive's data structures without closing the underlying file. More... | |
char * | regfi_log_get_str () |
Get errors, warnings, and/or verbose information relating to processing of the given registry file. More... | |
bool | regfi_log_set_mask (uint16_t mask) |
Set the verbosity level of messages generated by the library for the current thread. More... | |
const REGFI_NK * | regfi_get_rootkey (REGFI_FILE *file) |
Fetches a hive's root key. More... | |
void | regfi_free_record (REGFI_FILE *file, const void *record) |
Frees a record previously returned by one of the API functions. More... | |
const void * | regfi_reference_record (REGFI_FILE *file, const void *record) |
Increments reference count on record. More... | |
uint32_t | regfi_fetch_num_subkeys (const REGFI_NK *key) |
Retrieves number of subkeys referenced by this key. More... | |
uint32_t | regfi_fetch_num_values (const REGFI_NK *key) |
Retrieves number of values referenced by this key. More... | |
const REGFI_CLASSNAME * | regfi_fetch_classname (REGFI_FILE *file, const REGFI_NK *key) |
Retrieves classname for a given key. More... | |
const REGFI_SK * | regfi_fetch_sk (REGFI_FILE *file, const REGFI_NK *key) |
Returns the SK (security) record referenced by the supplied key. More... | |
const REGFI_SK * | regfi_next_sk (REGFI_FILE *file, const REGFI_SK *sk) |
Returns the next SK (security) record referenced by the supplied SK record. More... | |
const REGFI_SK * | regfi_prev_sk (REGFI_FILE *file, const REGFI_SK *sk) |
Returns the previous SK (security) record referenced by the supplied SK record. More... | |
const REGFI_DATA * | regfi_fetch_data (REGFI_FILE *file, const REGFI_VK *value) |
Retrieves data for a given value. More... | |
bool | regfi_find_subkey (REGFI_FILE *file, const REGFI_NK *key, const char *name, uint32_t *index) |
Locates a specific subkey of a given key. More... | |
bool | regfi_find_value (REGFI_FILE *file, const REGFI_NK *key, const char *name, uint32_t *index) |
Locates a specific value of a given key. More... | |
const REGFI_NK * | regfi_get_subkey (REGFI_FILE *file, const REGFI_NK *key, uint32_t index) |
Retrieves a specific subkey of a given key. More... | |
const REGFI_VK * | regfi_get_value (REGFI_FILE *file, const REGFI_NK *key, uint32_t index) |
Retrieves a specific value of a given key. More... | |
const REGFI_NK * | regfi_get_parentkey (REGFI_FILE *file, const REGFI_NK *key) |
Uses a key's parent_off reference to retrieve it's parent. More... | |
These functions are either necessary for normal use of the regfi API or just don't fit particularly well in any of the other layers.
const char* regfi_version | ( | ) |
Returns the current regfi library version.
REGFI_FILE* regfi_alloc | ( | int | fd, |
REGFI_ENCODING | output_encoding | ||
) |
Parses file headers of an already open registry hive file and allocates related structures for further parsing.
fd | A file descriptor of an already open file. Must be seekable. |
output_encoding | Character encoding that strings should be returned in. Only supply the REGFI_ENCODING_* constants, as others will be rejected. The following values are currently accepted: REGFI_ENCODING_DEFAULT (currently REGFI_ENCODING_ASCII) REGFI_ENCODING_ASCII REGFI_ENCODING_UTF8 |
REGFI_FILE* regfi_alloc_cb | ( | REGFI_RAW_FILE * | file_cb, |
REGFI_ENCODING | output_encoding | ||
) |
Parses file headers returned by supplied callback functions.
This interface is useful if you have a registry hive in memory or have some other reason to emulate a real file.
file_cb | A structure defining the callback functions needed to access the file. |
output_encoding | Character encoding that strings should be returned in. Only supply the REGFI_ENCODING_* constants, as others will be rejected. The following values are currently accepted: REGFI_ENCODING_DEFAULT (currently REGFI_ENCODING_ASCII) REGFI_ENCODING_ASCII REGFI_ENCODING_UTF8 |
void regfi_free | ( | REGFI_FILE * | file | ) |
Frees a hive's data structures without closing the underlying file.
file | The registry structure to free. |
char* regfi_log_get_str | ( | ) |
Get errors, warnings, and/or verbose information relating to processing of the given registry file.
bool regfi_log_set_mask | ( | uint16_t | mask | ) |
Set the verbosity level of messages generated by the library for the current thread.
mask | An integer representing the types of messages desired. Acceptable values are created through bitwise ORs of REGFI_LOG_* values. For instance, if only errors and informational messages were desired (but not warnings), then one would specify: REGFI_LOG_ERROR|REGFI_LOG_INFO By default the message mask is: REGFI_LOG_ERROR|REGFI_LOG_WARN. |
Message masks are set in a thread-specific way. If one were to set a message mask in one thread and then spawn a new thread, then the new thread will have it's message mask reset to the default. This function may be called at any time and will take effect immediately for the current thread.
const REGFI_NK* regfi_get_rootkey | ( | REGFI_FILE * | file | ) |
Fetches a hive's root key.
void regfi_free_record | ( | REGFI_FILE * | file, |
const void * | record | ||
) |
Frees a record previously returned by one of the API functions.
file | The file from which the record originated. (This is needed for memory management reasons.) |
record | Any of the following record types: REGFI_NK, REGFI_VK, REGFI_SK, REGFI_DATA, and REGFI_CLASSNAME records. |
Referenced by regfi_find_subkey(), regfi_find_value(), and regfi_iterator_down().
const void* regfi_reference_record | ( | REGFI_FILE * | file, |
const void * | record | ||
) |
Increments reference count on record.
Adds an extra internal reference to specified record, making it necessary to call regfi_free_record on it an additional time before it is freed. This is useful in cases where multiple threads/structures need access to a shared record, without requiring them to be in sync with when it is freed.
file | The file from which the record originated. (This is needed for memory management reasons.) |
record | Any of the following record types: REGFI_NK, REGFI_VK, REGFI_SK, REGFI_DATA, and REGFI_CLASSNAME records. |
uint32_t regfi_fetch_num_subkeys | ( | const REGFI_NK * | key | ) |
Retrieves number of subkeys referenced by this key.
Number of subkeyss in key structure and subkey list structure could differ, so this provides a standard/sane way of determining the number.
key | the key whose number of subkeys is desired |
References REGFI_NK::num_subkeys, and REGFI_NK::subkeys.
Referenced by regfi_find_subkey(), and regfi_get_subkey().
uint32_t regfi_fetch_num_values | ( | const REGFI_NK * | key | ) |
Retrieves number of values referenced by this key.
Number of values in key structure and value list structure could differ, so this provides a standard/sane way of determining the number.
key | the key whose number of values is desired |
References REGFI_NK::num_values, and REGFI_NK::values.
Referenced by regfi_find_value(), and regfi_get_value().
const REGFI_CLASSNAME* regfi_fetch_classname | ( | REGFI_FILE * | file, |
const REGFI_NK * | key | ||
) |
Retrieves classname for a given key.
file | the file from which key is derived |
key | the key whose classname is desired |
References REGFI_NK::classname_off.
const REGFI_SK* regfi_fetch_sk | ( | REGFI_FILE * | file, |
const REGFI_NK * | key | ||
) |
Returns the SK (security) record referenced by the supplied key.
file | the file from which key is derived |
key | the key whose SK record is desired |
References REGFI_NK::sk_off.
const REGFI_SK* regfi_next_sk | ( | REGFI_FILE * | file, |
const REGFI_SK * | sk | ||
) |
Returns the next SK (security) record referenced by the supplied SK record.
file | the file from which sk is derived |
sk | the SK record whose next sibling SK record is desired |
References REGFI_SK::next_sk_off.
const REGFI_SK* regfi_prev_sk | ( | REGFI_FILE * | file, |
const REGFI_SK * | sk | ||
) |
Returns the previous SK (security) record referenced by the supplied SK record.
file | the file from which sk is derived |
sk | the SK record whose previous sibling SK record is desired |
References REGFI_SK::prev_sk_off.
const REGFI_DATA* regfi_fetch_data | ( | REGFI_FILE * | file, |
const REGFI_VK * | value | ||
) |
Retrieves data for a given value.
file | the file from which value is derived |
value | the value whose data is desired |
References REGFI_VK::data_in_offset, REGFI_VK::data_off, REGFI_VK::data_size, and regfi_load_data().
bool regfi_find_subkey | ( | REGFI_FILE * | file, |
const REGFI_NK * | key, | ||
const char * | name, | ||
uint32_t * | index | ||
) |
Locates a specific subkey of a given key.
file | the file from which key is derived |
key | the key whose subkey is desired |
name | name of the desired subkey (case-insensitive) |
index | a return value: the index of the desired subkey. undefined on error |
References REGFI_NK::name, regfi_fetch_num_subkeys(), regfi_free_record(), and regfi_get_subkey().
bool regfi_find_value | ( | REGFI_FILE * | file, |
const REGFI_NK * | key, | ||
const char * | name, | ||
uint32_t * | index | ||
) |
Locates a specific value of a given key.
file | the file from which key is derived |
key | the key whose value is desired |
name | name of the desired value (case-insensitive) |
index | a return value: the index of the desired value. undefined on error |
References REGFI_VK::name, regfi_fetch_num_values(), regfi_free_record(), and regfi_get_value().
const REGFI_NK* regfi_get_subkey | ( | REGFI_FILE * | file, |
const REGFI_NK * | key, | ||
uint32_t | index | ||
) |
Retrieves a specific subkey of a given key.
file | the file from which key is derived |
key | the key whose subkey is desired |
index | the index of the desired subkey |
References regfi_fetch_num_subkeys(), regfi_load_key(), and REGFI_NK::subkeys.
Referenced by regfi_find_subkey().
const REGFI_VK* regfi_get_value | ( | REGFI_FILE * | file, |
const REGFI_NK * | key, | ||
uint32_t | index | ||
) |
Retrieves a specific value of a given key.
file | the file from which key is derived |
key | the key whose value is desired |
index | the index of the desired value |
References regfi_fetch_num_values(), regfi_load_value(), and REGFI_NK::values.
Referenced by regfi_find_value().
const REGFI_NK* regfi_get_parentkey | ( | REGFI_FILE * | file, |
const REGFI_NK * | key | ||
) |
Uses a key's parent_off reference to retrieve it's parent.
file | the file from which key is derived |
key | the key whose parent is desired |
References REGFI_NK::parent_off.