| libewf.h | | libewf.h | |
| /* | | /* | |
|
| * Library for the Expert Witness Compression Format Support (EWF) | | * Library to support the Expert Witness Compression Format (EWF) | |
| * | | * | |
|
| * Copyright (c) 2006-2009, Joachim Metz <forensics@hoffmannbv.nl>, | | * Copyright (c) 2006-2011, Joachim Metz <jbmetz@users.sourceforge.net> | |
| * Hoffmann Investigations. | | | |
| * | | * | |
| * Refer to AUTHORS for acknowledgements. | | * Refer to AUTHORS for acknowledgements. | |
| * | | * | |
| * This software is free software: you can redistribute it and/or modify | | * This software is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU Lesser General Public License as published
by | | * it under the terms of the GNU Lesser General Public License as published
by | |
| * the Free Software Foundation, either version 3 of the License, or | | * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | | * (at your option) any later version. | |
| * | | * | |
| * This software is distributed in the hope that it will be useful, | | * This software is distributed in the hope that it will be useful, | |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| | | | |
| skipping to change at line 33 | | skipping to change at line 32 | |
| #if !defined( _LIBEWF_H ) | | #if !defined( _LIBEWF_H ) | |
| #define _LIBEWF_H | | #define _LIBEWF_H | |
| | | | |
| #include <libewf/codepage.h> | | #include <libewf/codepage.h> | |
| #include <libewf/definitions.h> | | #include <libewf/definitions.h> | |
| #include <libewf/error.h> | | #include <libewf/error.h> | |
| #include <libewf/extern.h> | | #include <libewf/extern.h> | |
| #include <libewf/features.h> | | #include <libewf/features.h> | |
| #include <libewf/types.h> | | #include <libewf/types.h> | |
| | | | |
|
| #if 1 || defined( HAVE_V1_API ) | | | |
| #include <libewf/handle.h> | | | |
| #endif | | | |
| | | | |
| #include <stdio.h> | | #include <stdio.h> | |
| | | | |
| #if defined( LIBEWF_HAVE_BFIO ) | | #if defined( LIBEWF_HAVE_BFIO ) | |
| #include <libbfio.h> | | #include <libbfio.h> | |
| #endif | | #endif | |
| | | | |
| #ifdef __cplusplus | | #ifdef __cplusplus | |
| extern "C" { | | extern "C" { | |
| #endif | | #endif | |
| | | | |
| /* ------------------------------------------------------------------------
- | | /* ------------------------------------------------------------------------
- | |
| * Support functions | | * Support functions | |
| * ------------------------------------------------------------------------
- */ | | * ------------------------------------------------------------------------
- */ | |
| | | | |
| /* Returns the library version | | /* Returns the library version | |
| */ | | */ | |
|
| LIBEWF_EXTERN const char *libewf_get_version( | | LIBEWF_EXTERN \ | |
| void ); | | const char *libewf_get_version( | |
| | | void ); | |
| | | | |
|
| /* Returns the flags for reading | | /* Returns the access flags for reading | |
| */ | | */ | |
|
| LIBEWF_EXTERN uint8_t libewf_get_flags_read( | | LIBEWF_EXTERN \ | |
| void ); | | int libewf_get_access_flags_read( | |
| | | void ); | |
| | | | |
|
| /* Returns the flags for reading and writing | | /* Returns the access flags for reading and writing | |
| */ | | */ | |
|
| LIBEWF_EXTERN uint8_t libewf_get_flags_read_write( | | LIBEWF_EXTERN \ | |
| void ); | | int libewf_get_access_flags_read_write( | |
| | | void ); | |
| | | | |
|
| /* Returns the flags for writing | | /* Returns the access flags for writing | |
| */ | | */ | |
|
| LIBEWF_EXTERN uint8_t libewf_get_flags_write( | | LIBEWF_EXTERN \ | |
| void ); | | int libewf_get_access_flags_write( | |
| | | void ); | |
| | | | |
|
| /* Returns the flags for resume writing | | /* Returns the access flags for resume writing | |
| */ | | */ | |
|
| LIBEWF_EXTERN uint8_t libewf_get_flags_write_resume( | | LIBEWF_EXTERN \ | |
| void ); | | int libewf_get_access_flags_write_resume( | |
| | | void ); | |
| | | | |
| | | /* Retrieves the narrow system string codepage | |
| | | * A value of 0 represents no codepage, UTF-8 encoding is used instead | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_get_codepage( | |
| | | int *codepage, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the narrow system string codepage | |
| | | * A value of 0 represents no codepage, UTF-8 encoding is used instead | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_set_codepage( | |
| | | int codepage, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Determines if a file is an EWF file (check for the EWF file signature) | | /* Determines if a file is an EWF file (check for the EWF file signature) | |
| * Returns 1 if true, 0 if not or -1 on error | | * Returns 1 if true, 0 if not or -1 on error | |
| */ | | */ | |
|
| #if 0 || defined( HAVE_V2_API ) | | LIBEWF_EXTERN \ | |
| LIBEWF_EXTERN int libewf_check_file_signature( | | int libewf_check_file_signature( | |
| const char *filename, | | const char *filename, | |
| libewf_error_t **error ); | | libewf_error_t **error ); | |
| #else | | | |
| LIBEWF_EXTERN int libewf_check_file_signature( | | | |
| const char *filename ); | | | |
| #endif | | | |
| | | | |
| #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | | #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | |
| /* Determines if a file is an EWF file (check for the EWF file signature) | | /* Determines if a file is an EWF file (check for the EWF file signature) | |
| * Returns 1 if true, 0 if not or -1 on error | | * Returns 1 if true, 0 if not or -1 on error | |
| */ | | */ | |
|
| #if 0 || defined( HAVE_V2_API ) | | LIBEWF_EXTERN \ | |
| LIBEWF_EXTERN int libewf_check_file_signature_wide( | | int libewf_check_file_signature_wide( | |
| const wchar_t *filename, | | const wchar_t *filename, | |
| libewf_error_t **error ); | | libewf_error_t **error ); | |
| #else | | | |
| LIBEWF_EXTERN int libewf_check_file_signature_wide( | | | |
| const wchar_t *filename ); | | | |
| #endif | | | |
| #endif | | #endif | |
| | | | |
|
| #if 0 || defined( HAVE_V2_API ) | | | |
| #if defined( LIBEWF_HAVE_BFIO ) | | #if defined( LIBEWF_HAVE_BFIO ) | |
| /* Determines if a file is an EWF file (check for the EWF file signature) u
sing a Basic File IO (bfio) handle | | /* Determines if a file is an EWF file (check for the EWF file signature) u
sing a Basic File IO (bfio) handle | |
| * Returns 1 if true, 0 if not or -1 on error | | * Returns 1 if true, 0 if not or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_check_file_signature_file_io_handle( | | LIBEWF_EXTERN \ | |
| libbfio_handle_t *file_io_handle, | | int libewf_check_file_signature_file_io_handle( | |
| libewf_error_t **error ); | | libbfio_handle_t *file_io_handle, | |
| #endif | | libewf_error_t **error ); | |
| #endif | | #endif | |
| | | | |
| /* Globs the segment files according to the EWF naming schema | | /* Globs the segment files according to the EWF naming schema | |
| * if the format is known the filename should contain the base of the filen
ame | | * if the format is known the filename should contain the base of the filen
ame | |
| * otherwise the function will try to determine the format based on the ext
ension | | * otherwise the function will try to determine the format based on the ext
ension | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| #if 0 || defined( HAVE_V2_API ) | | LIBEWF_EXTERN \ | |
| LIBEWF_EXTERN int libewf_glob( | | int libewf_glob( | |
| const char *filename, | | const char *filename, | |
| size_t filename_length, | | size_t filename_length, | |
| uint8_t format, | | uint8_t format, | |
| char **filenames[], | | char **filenames[], | |
| int *amount_of_filenames, | | int *number_of_filenames, | |
| libewf_error_t **error ); | | libewf_error_t **error ); | |
| #else | | | |
| /* Globs the segment files according to the EWF naming schema | | | |
| * if the format is known the filename should contain the base of the filen | | | |
| ame | | | |
| * otherwise the function will try to determine the format based on the ext | | | |
| ension | | | |
| * Returns the amount of filenames if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_glob( | | | |
| const char *filename, | | | |
| size_t filename_length, | | | |
| uint8_t format, | | | |
| char **filenames[] ); | | | |
| #endif | | | |
| | | | |
|
| #if 0 || defined( HAVE_V2_API ) | | | |
| /* Frees the globbed filenames | | /* Frees the globbed filenames | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_glob_free( | | LIBEWF_EXTERN \ | |
| char *filenames[], | | int libewf_glob_free( | |
| int amount_of_filenames, | | char *filenames[], | |
| libewf_error_t **error ); | | int number_of_filenames, | |
| #endif | | libewf_error_t **error ); | |
| | | | |
| #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | | #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | |
| /* Globs the segment files according to the EWF naming schema | | /* Globs the segment files according to the EWF naming schema | |
| * if the format is known the filename should contain the base of the filen
ame | | * if the format is known the filename should contain the base of the filen
ame | |
| * otherwise the function will try to determine the format based on the ext
ension | | * otherwise the function will try to determine the format based on the ext
ension | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| #if 0 || defined( HAVE_V2_API ) | | LIBEWF_EXTERN \ | |
| LIBEWF_EXTERN int libewf_glob_wide( | | int libewf_glob_wide( | |
| const wchar_t *filename, | | const wchar_t *filename, | |
| size_t filename_length, | | size_t filename_length, | |
| uint8_t format, | | uint8_t format, | |
| wchar_t **filenames[], | | wchar_t **filenames[], | |
| int *amount_of_filenames, | | int *number_of_filenames, | |
| libewf_error_t **error ); | | libewf_error_t **error ); | |
| #else | | | |
| /* Globs the segment files according to the EWF naming schema | | | |
| * if the format is known the filename should contain the base of the filen | | | |
| ame | | | |
| * otherwise the function will try to determine the format based on the ext | | | |
| ension | | | |
| * Returns the amount of filenames if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_glob_wide( | | | |
| const wchar_t *filename, | | | |
| size_t filename_length, | | | |
| uint8_t format, | | | |
| wchar_t **filenames[] ); | | | |
| #endif | | | |
| | | | |
|
| #if 0 || defined( HAVE_V2_API ) | | /* Frees the globbed wide filenames | |
| /* Frees the globbed filenames | | | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_glob_free( | | LIBEWF_EXTERN \ | |
| char *filenames[], | | int libewf_glob_wide_free( | |
| int amount_of_filenames, | | wchar_t *filenames[], | |
| libewf_error_t **error ); | | int number_of_filenames, | |
| #endif | | libewf_error_t **error ); | |
| #endif | | #endif | |
| | | | |
| /* ------------------------------------------------------------------------
- | | /* ------------------------------------------------------------------------
- | |
|
| * Notify functions (APIv1) | | * Support functions - deprecated | |
| * ------------------------------------------------------------------------
- */ | | * ------------------------------------------------------------------------
- */ | |
| | | | |
|
| #if 1 || defined( HAVE_V1_API ) | | /* Returns the flags for reading | |
| | | * | |
| | | * This function deprecated use libewf_get_access_flags_read instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | uint8_t libewf_get_flags_read( | |
| | | void ); | |
| | | | |
|
| /* Set the notify values | | /* Returns the flags for reading and writing | |
| | | * | |
| | | * This function deprecated use libewf_get_access_flags_read_write instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN void libewf_set_notify_values( | | LIBEWF_DEPRECATED \ | |
| FILE *stream, | | LIBEWF_EXTERN \ | |
| uint8_t verbose ); | | uint8_t libewf_get_flags_read_write( | |
| | | void ); | |
| | | | |
|
| #endif | | /* Returns the flags for writing | |
| | | * | |
| | | * This function deprecated use libewf_get_access_flags_write instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | uint8_t libewf_get_flags_write( | |
| | | void ); | |
| | | | |
| | | /* Returns the flags for resume writing | |
| | | * | |
| | | * This function deprecated use libewf_get_access_flags_write_resume instea | |
| | | d | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | uint8_t libewf_get_flags_write_resume( | |
| | | void ); | |
| | | | |
| /* ------------------------------------------------------------------------
- | | /* ------------------------------------------------------------------------
- | |
|
| * Notify functions (APIv2) | | * Notify functions | |
| * ------------------------------------------------------------------------
- */ | | * ------------------------------------------------------------------------
- */ | |
| | | | |
|
| #if 0 || defined( HAVE_V2_API ) | | /* Sets the verbose notification | |
| | | | |
| /* Set the verbose notification | | | |
| */ | | */ | |
|
| LIBEWF_EXTERN void libewf_notify_set_verbose( | | LIBEWF_EXTERN \ | |
| int verbose ); | | void libewf_notify_set_verbose( | |
| | | int verbose ); | |
| | | | |
|
| /* Set the notification stream | | /* Sets the notification stream | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_notify_set_stream( | | LIBEWF_EXTERN \ | |
| FILE *stream, | | int libewf_notify_set_stream( | |
| libewf_error_t **error ); | | FILE *stream, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Opens the notification stream using a filename | | /* Opens the notification stream using a filename | |
| * The stream is opened in append mode | | * The stream is opened in append mode | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_notify_stream_open( | | LIBEWF_EXTERN \ | |
| const char *filename, | | int libewf_notify_stream_open( | |
| libewf_error_t **error ); | | const char *filename, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Closes the notification stream if opened using a filename | | /* Closes the notification stream if opened using a filename | |
| * Returns 0 if successful or -1 on error | | * Returns 0 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_notify_stream_close( | | LIBEWF_EXTERN \ | |
| libewf_error_t **error ); | | int libewf_notify_stream_close( | |
| | | libewf_error_t **error ); | |
| #endif | | | |
| | | | |
| /* ------------------------------------------------------------------------
- | | /* ------------------------------------------------------------------------
- | |
|
| * Error functions (APIv2) | | * Error functions | |
| * ------------------------------------------------------------------------
- */ | | * ------------------------------------------------------------------------
- */ | |
| | | | |
|
| #if 0 || defined( HAVE_V2_API ) | | | |
| | | | |
| /* Frees the error including elements | | /* Frees the error including elements | |
| */ | | */ | |
|
| LIBEWF_EXTERN void libewf_error_free( | | LIBEWF_EXTERN \ | |
| libewf_error_t **error ); | | void libewf_error_free( | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Prints a descriptive string of the error to the stream | | /* Prints a descriptive string of the error to the stream | |
|
| * Returns the amount of printed characters if successful or -1 on error | | * Returns the number of printed characters if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_error_fprint( | | LIBEWF_EXTERN \ | |
| libewf_error_t *error, | | int libewf_error_fprint( | |
| FILE *stream ); | | libewf_error_t *error, | |
| | | FILE *stream ); | |
| | | | |
| /* Prints a descriptive string of the error to the string | | /* Prints a descriptive string of the error to the string | |
|
| * Returns the amount of printed characters if successful or -1 on error | | * The end-of-string character is not included in the return value | |
| | | * Returns the number of printed characters if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_error_sprint( | | LIBEWF_EXTERN \ | |
| libewf_error_t *error, | | int libewf_error_sprint( | |
| char *string, | | libewf_error_t *error, | |
| size_t size ); | | char *string, | |
| | | size_t size ); | |
| | | | |
| /* Prints a backtrace of the error to the stream | | /* Prints a backtrace of the error to the stream | |
|
| * Returns the amount of printed characters if successful or -1 on error | | * Returns the number of printed characters if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_error_backtrace_fprint( | | LIBEWF_EXTERN \ | |
| libewf_error_t *error, | | int libewf_error_backtrace_fprint( | |
| FILE *stream ); | | libewf_error_t *error, | |
| | | FILE *stream ); | |
| | | | |
| /* Prints a backtrace of the error to the string | | /* Prints a backtrace of the error to the string | |
|
| * Returns the amount of printed characters if successful or -1 on error | | * The end-of-string character is not included in the return value | |
| | | * Returns the number of printed characters if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_error_backtrace_sprint( | | LIBEWF_EXTERN \ | |
| libewf_error_t *error, | | int libewf_error_backtrace_sprint( | |
| char *string, | | libewf_error_t *error, | |
| size_t size ); | | char *string, | |
| | | size_t size ); | |
| #endif | | | |
| | | | |
| /* ------------------------------------------------------------------------
- | | /* ------------------------------------------------------------------------
- | |
|
| * File/Handle functions (APIv1) | | * File/Handle functions | |
| * ------------------------------------------------------------------------
- */ | | * ------------------------------------------------------------------------
- */ | |
| | | | |
|
| #if 1 || defined( HAVE_V1_API ) | | /* Initialize the handle | |
| | | * The handle must point to a NULL pointer to be allocated | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_initialize( | |
| | | libewf_handle_t **handle, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Signals the libewf handle to abort its current activity | | /* Frees the handle including elements | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_signal_abort( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle ); | | int libewf_handle_free( | |
| | | libewf_handle_t **handle, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Clones the handle including elements | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_clone( | |
| | | libewf_handle_t **destination_handle, | |
| | | libewf_handle_t *source_handle, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Signals the handle to abort its current activity | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_signal_abort( | |
| | | libewf_handle_t *handle, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Opens a set of EWF file(s) | | /* Opens a set of EWF file(s) | |
| * For reading files should contain all filenames that make up an EWF image | | * For reading files should contain all filenames that make up an EWF image | |
| * For writing files should contain the base of the filename, extentions li
ke .e01 will be automatically added | | * For writing files should contain the base of the filename, extentions li
ke .e01 will be automatically added | |
|
| * Returns a pointer to the new instance of handle, NULL on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN libewf_handle_t *libewf_open( | | LIBEWF_EXTERN \ | |
| char * const filenames[], | | int libewf_handle_open( | |
| int amount_of_filenames, | | libewf_handle_t *handle, | |
| uint8_t flags ); | | char * const filenames[], | |
| | | int number_of_filenames, | |
| | | int access_flags, | |
| | | libewf_error_t **error ); | |
| | | | |
| #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | | #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | |
| /* Opens a set of EWF file(s) | | /* Opens a set of EWF file(s) | |
| * For reading files should contain all filenames that make up an EWF image | | * For reading files should contain all filenames that make up an EWF image | |
| * For writing files should contain the base of the filename, extentions li
ke .e01 will be automatically added | | * For writing files should contain the base of the filename, extentions li
ke .e01 will be automatically added | |
|
| * Returns a pointer to the new instance of handle, NULL on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN libewf_handle_t *libewf_open_wide( | | LIBEWF_EXTERN \ | |
| wchar_t * const filenames[], | | int libewf_handle_open_wide( | |
| int amount_of_filenames, | | libewf_handle_t *handle, | |
| uint8_t flags ); | | wchar_t * const filenames[], | |
| | | int number_of_filenames, | |
| | | int access_flags, | |
| | | libewf_error_t **error ); | |
| #endif | | #endif | |
| | | | |
|
| /* Closes the EWF handle and frees memory used within the handle | | #if defined( LIBEWF_HAVE_BFIO ) | |
| * Returns 0 if successful or -1 on error | | /* Opens a set of EWF file(s) using a Basic File IO (bfio) pool | |
| */ | | * Returns 1 if successful or -1 on error | |
| LIBEWF_EXTERN int libewf_close( | | | |
| libewf_handle_t *handle ); | | | |
| | | | |
| /* Seeks a certain offset of the media data within the EWF file(s) | | | |
| * It will set the related file offset to the specific chunk offset | | | |
| * Returns the offset if seek is successful or -1 on error | | | |
| */ | | */ | |
|
| LIBEWF_EXTERN off64_t libewf_seek_offset( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_open_file_io_pool( | |
| off64_t offset ); | | libewf_handle_t *handle, | |
| | | libbfio_pool_t *file_io_pool, | |
| | | int access_flags, | |
| | | libewf_error_t **error ); | |
| | | #endif | |
| | | | |
|
| /* Retrieves the current offset of the media data within the EWF file(s) | | /* Closes the EWF handle | |
| * Returns the offset if successful or -1 on error | | * Returns 0 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN off64_t libewf_get_offset( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle ); | | int libewf_handle_close( | |
| | | libewf_handle_t *handle, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Prepares a buffer with chunk data after reading it according to the hand | | /* Prepares chunk of (media) data after reading it according to the handle | |
| le settings | | settings | |
| * intended for raw read | | * It applies decompression if necessary and validates the chunk checksum | |
| * The buffer size cannot be larger than the chunk size | | * This function should be used after libewf_handle_read_chunk | |
| | | * The value chunk_buffer_size contains the size of the chunk | |
| * Returns the resulting chunk size or -1 on error | | * Returns the resulting chunk size or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_raw_read_prepare_buffer( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | ssize_t libewf_handle_prepare_read_chunk( | |
| void *buffer, | | libewf_handle_t *handle, | |
| size_t buffer_size, | | void *chunk_buffer, | |
| void *uncompressed_buffer, | | size_t chunk_buffer_size, | |
| size_t *uncompressed_buffer_size, | | void *uncompressed_chunk_buffer, | |
| int8_t is_compressed, | | size_t *uncompressed_chunk_buffer_size, | |
| uint32_t chunk_crc, | | int8_t is_compressed, | |
| int8_t read_crc ); | | uint32_t chunk_checksum, | |
| | | int8_t read_checksum, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Reads 'raw' data from the curent offset into a buffer | | /* Reads a chunk of (media) data from the current offset into a buffer | |
| * size contains the size of the buffer | | * Will read until the requested size is filled or the entire chunk is read | |
| * The function sets the chunk crc, is compressed and read crc values | | * The values read_checksum and chunk_checksum are used for uncompressed ch | |
| * Returns the amount of bytes read or -1 on error | | unks only | |
| | | * The value chunk_checksum is set to a runtime version of the value in the | |
| | | checksum_buffer | |
| | | * The value read_checksum is set if the checksum has been read into checks | |
| | | um_buffer | |
| | | * The value chunk_buffer_size contains the size of the chunk buffer | |
| | | * Returns the number of bytes read or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_raw_read_buffer( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | ssize_t libewf_handle_read_chunk( | |
| void *buffer, | | libewf_handle_t *handle, | |
| size_t buffer_size, | | void *chunk_buffer, | |
| int8_t *is_compressed, | | size_t chunk_buffer_size, | |
| uint32_t *chunk_crc, | | int8_t *is_compressed, | |
| int8_t *read_crc ); | | void *checksum_buffer, | |
| | | uint32_t *chunk_checksum, | |
| | | int8_t *read_checksum, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Reads data from the curent offset into a buffer | | /* Reads (media) data at the current offset into a buffer | |
| * Returns the amount of bytes read or -1 on error | | * Returns the number of bytes read or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_read_buffer( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | ssize_t libewf_handle_read_buffer( | |
| void *buffer, | | libewf_handle_t *handle, | |
| size_t buffer_size ); | | void *buffer, | |
| | | size_t buffer_size, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Reads media data from an offset into a buffer | | /* Reads (media) data at a specific offset | |
| * Returns the amount of bytes read or -1 on error | | * Returns the number of bytes read or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_read_random( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | ssize_t libewf_handle_read_random( | |
| void *buffer, | | libewf_handle_t *handle, | |
| size_t buffer_size, | | void *buffer, | |
| off64_t offset ); | | size_t buffer_size, | |
| | | off64_t offset, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Prepares a buffer with chunk data before writing according to the handle | | /* Prepares a chunk of (media) data before writing according to the handle | |
| settings | | settings | |
| * intended for raw write | | * This function should be used before libewf_handle_write_chunk | |
| * The buffer size cannot be larger than the chunk size | | * The chunk_buffer_size should contain the actual chunk size | |
| * The function sets the chunk crc, is compressed and write crc values | | * The function sets the chunk checksum, is compressed and write checksum v | |
| | | alues | |
| * Returns the resulting chunk size or -1 on error | | * Returns the resulting chunk size or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_raw_write_prepare_buffer( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | ssize_t libewf_handle_prepare_write_chunk( | |
| void *buffer, | | libewf_handle_t *handle, | |
| size_t buffer_size, | | void *buffer, | |
| void *compressed_buffer, | | size_t buffer_size, | |
| size_t *compressed_buffer_size, | | void *compressed_chunk_buffer, | |
| int8_t *is_compressed, | | size_t *compressed_chunk_buffer_size, | |
| uint32_t *chunk_crc, | | int8_t *is_compressed, | |
| int8_t *write_crc ); | | uint32_t *chunk_checksum, | |
| | | int8_t *write_checksum, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Writes 'raw' data in EWF format from a buffer at the current offset | | /* Writes a chunk of (media) data in EWF format at the current offset | |
| * the necessary settings of the write values must have been made | | * the necessary settings of the write values must have been made | |
|
| * size contains the size of the data within the buffer while | | * chunk_buffer_size contains the size of the data within the buffer while | |
| * data size contains the size of the actual input data | | * data_size contains the size of the actual input data | |
| * Will initialize write if necessary | | * Will initialize write if necessary | |
|
| * Returns the amount of input bytes written, 0 when no longer bytes can be
written or -1 on error | | * Returns the number of input bytes written, 0 when no longer bytes can be
written or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_raw_write_buffer( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | ssize_t libewf_handle_write_chunk( | |
| void *buffer, | | libewf_handle_t *handle, | |
| size_t buffer_size, | | const void *chunk_buffer, | |
| size_t data_size, | | size_t chunk_buffer_size, | |
| int8_t is_compressed, | | size_t data_size, | |
| uint32_t chunk_crc, | | int8_t is_compressed, | |
| int8_t write_crc ); | | void *checksum_buffer, | |
| | | uint32_t chunk_checksum, | |
| | | int8_t write_checksum, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Writes data in EWF format from a buffer at the current offset | | /* Writes (media) data at the current offset | |
| * the necessary settings of the write values must have been made | | * the necessary settings of the write values must have been made | |
| * Will initialize write if necessary | | * Will initialize write if necessary | |
|
| * Returns the amount of input bytes written, 0 when no longer bytes can be
written or -1 on error | | * Returns the number of input bytes written, 0 when no longer bytes can be
written or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_write_buffer( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | ssize_t libewf_handle_write_buffer( | |
| void *buffer, | | libewf_handle_t *handle, | |
| size_t buffer_size ); | | const void *buffer, | |
| | | size_t buffer_size, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Writes data in EWF format from a buffer at an specific offset, | | /* Writes (media) data at a specific offset, | |
| * the necessary settings of the write values must have been made | | * the necessary settings of the write values must have been made | |
| * Will initialize write if necessary | | * Will initialize write if necessary | |
|
| * Returns the amount of input bytes written, 0 when no longer bytes can be
written or -1 on error | | * Returns the number of input bytes written, 0 when no longer bytes can be
written or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_write_random( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | ssize_t libewf_handle_write_random( | |
| void *buffer, | | libewf_handle_t *handle, | |
| size_t buffer_size, | | const void *buffer, | |
| off64_t offset ); | | size_t buffer_size, | |
| | | off64_t offset, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Finalizes the write by correcting the EWF the meta data in the segment f
iles | | /* Finalizes the write by correcting the EWF the meta data in the segment f
iles | |
| * This function is required after writing from stream | | * This function is required after writing from stream | |
|
| * Returns the amount of input bytes written or -1 on error | | * Returns the number of input bytes written or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_write_finalize( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle ); | | ssize_t libewf_handle_write_finalize( | |
| | | libewf_handle_t *handle, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Seeks a certain offset of the (media) data | |
| | | * Returns the offset if seek is successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | off64_t libewf_handle_seek_offset( | |
| | | libewf_handle_t *handle, | |
| | | off64_t offset, | |
| | | int whence, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the current offset of the (media) data | |
| | | * Returns the offset if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_offset( | |
| | | libewf_handle_t *handle, | |
| | | off64_t *offset, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the maximum number of (concurrent) open file handles | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_maximum_number_of_open_handles( | |
| | | libewf_handle_t *handle, | |
| | | int maximum_number_of_open_handles, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the segment filename size | |
| | | * The filename size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_segment_filename_size( | |
| | | libewf_handle_t *handle, | |
| | | size_t *filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Retrieves the segment filename | | /* Retrieves the segment filename | |
| * The filename size should include the end of string character | | * The filename size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_get_segment_filename( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_get_segment_filename( | |
| char *filename, | | libewf_handle_t *handle, | |
| size_t filename_size ); | | char *filename, | |
| | | size_t filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Sets the segment filename | | /* Sets the segment filename | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_set_segment_filename( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_set_segment_filename( | |
| const char *filename, | | libewf_handle_t *handle, | |
| size_t filename_length ); | | const char *filename, | |
| | | size_t filename_length, | |
| | | libewf_error_t **error ); | |
| | | | |
| #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | | #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | |
|
| | | /* Retrieves the segment filename size | |
| | | * The filename size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_segment_filename_size_wide( | |
| | | libewf_handle_t *handle, | |
| | | size_t *filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Retrieves the segment filename | | /* Retrieves the segment filename | |
| * The filename size should include the end of string character | | * The filename size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_get_segment_filename_wide( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_get_segment_filename_wide( | |
| wchar_t *filename, | | libewf_handle_t *handle, | |
| size_t filename_size ); | | wchar_t *filename, | |
| | | size_t filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Sets the segment filename | | /* Sets the segment filename | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_set_segment_filename_wide( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_set_segment_filename_wide( | |
| const wchar_t *filename, | | libewf_handle_t *handle, | |
| size_t filename_length ); | | const wchar_t *filename, | |
| | | size_t filename_length, | |
| | | libewf_error_t **error ); | |
| #endif | | #endif | |
| | | | |
|
| /* Retrieves the segment file size | | /* Retrieves the maximum segment file size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_get_segment_file_size( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_get_maximum_segment_size( | |
| size64_t *segment_file_size ); | | libewf_handle_t *handle, | |
| | | size64_t *maximum_segment_size, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Sets the segment file size | | /* Sets the maximum segment file size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_set_segment_file_size( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_set_maximum_segment_size( | |
| size64_t segment_file_size ); | | libewf_handle_t *handle, | |
| | | size64_t maximum_segment_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the delta segment filename size | |
| | | * The filename size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_delta_segment_filename_size( | |
| | | libewf_handle_t *handle, | |
| | | size_t *filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Retrieves the delta segment filename | | /* Retrieves the delta segment filename | |
| * The filename size should include the end of string character | | * The filename size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_get_delta_segment_filename( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_get_delta_segment_filename( | |
| char *filename, | | libewf_handle_t *handle, | |
| size_t filename_size ); | | char *filename, | |
| | | size_t filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Sets the delta segment filename | | /* Sets the delta segment filename | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_set_delta_segment_filename( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_set_delta_segment_filename( | |
| const char *filename, | | libewf_handle_t *handle, | |
| size_t filename_length ); | | const char *filename, | |
| | | size_t filename_length, | |
| | | libewf_error_t **error ); | |
| | | | |
| #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | | #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | |
|
| | | /* Retrieves the delta segment filename size | |
| | | * The filename size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_delta_segment_filename_size_wide( | |
| | | libewf_handle_t *handle, | |
| | | size_t *filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Retrieves the delta segment filename | | /* Retrieves the delta segment filename | |
| * The filename size should include the end of string character | | * The filename size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_get_delta_segment_filename_wide( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_get_delta_segment_filename_wide( | |
| wchar_t *filename, | | libewf_handle_t *handle, | |
| size_t filename_size ); | | wchar_t *filename, | |
| | | size_t filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Sets the delta segment filename | | /* Sets the delta segment filename | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_set_delta_segment_filename_wide( | | LIBEWF_EXTERN \ | |
| libewf_handle_t *handle, | | int libewf_handle_set_delta_segment_filename_wide( | |
| const wchar_t *filename, | | libewf_handle_t *handle, | |
| size_t filename_length ); | | const wchar_t *filename, | |
| | | size_t filename_length, | |
| | | libewf_error_t **error ); | |
| | | #endif | |
| | | | |
| | | /* Retrieves the maximum delta segment file size | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_maximum_delta_segment_size( | |
| | | libewf_handle_t *handle, | |
| | | size64_t *maximum_delta_segment_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the maximum delta segment file size | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_maximum_delta_segment_size( | |
| | | libewf_handle_t *handle, | |
| | | size64_t maximum_delta_segment_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the filename size of the (delta) segment file of the current c | |
| | | hunk | |
| | | * The filename size includes the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_filename_size( | |
| | | libewf_handle_t *handle, | |
| | | size_t *filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the filename of the (delta) segment file of the current chunk | |
| | | * The filename size should include the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_filename( | |
| | | libewf_handle_t *handle, | |
| | | char *filename, | |
| | | size_t filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | |
| | | /* Retrieves the filename size of the (delta) segment file of the current c | |
| | | hunk | |
| | | * The filename size includes the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_filename_size_wide( | |
| | | libewf_handle_t *handle, | |
| | | size_t *filename_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the filename of the (delta) segment file of the current chunk | |
| | | * The filename size should include the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_filename_wide( | |
| | | libewf_handle_t *handle, | |
| | | wchar_t *filename, | |
| | | size_t filename_size, | |
| | | libewf_error_t **error ); | |
| #endif | | #endif | |
| | | | |
|
| | | #if defined( LIBEWF_HAVE_BFIO ) | |
| | | /* Retrieves the file io handle of the (delta) segment file of the current | |
| | | chunk | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_file_io_handle( | |
| | | libewf_handle_t *handle, | |
| | | libbfio_handle_t **file_io_handle, | |
| | | libewf_error_t **error ); | |
| | | #endif | |
| | | | |
| | | /* ------------------------------------------------------------------------ | |
| | | - | |
| | | * File/Handle functions - deprecated | |
| | | * ------------------------------------------------------------------------ | |
| | | - */ | |
| | | | |
| | | /* Sets the maximum amount of (concurrent) open file handles | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_set_maximum_number_of_open_ha | |
| | | ndles instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_maximum_amount_of_open_handles( | |
| | | libewf_handle_t *handle, | |
| | | int maximum_amount_of_open_handles, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the amount of sectors | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_number_of_sectors instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_amount_of_sectors( | |
| | | libewf_handle_t *handle, | |
| | | uint64_t *amount_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the amount of chunks written | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_number_of_chunks_written | |
| | | instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_write_amount_of_chunks( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *amount_of_chunks, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the segment file size | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_maximum_segment_size inst | |
| | | ead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_segment_file_size( | |
| | | libewf_handle_t *handle, | |
| | | size64_t *segment_file_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the segment file size | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_set_maximum_segment_size inst | |
| | | ead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_segment_file_size( | |
| | | libewf_handle_t *handle, | |
| | | size64_t segment_file_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Retrieves the delta segment file size | | /* Retrieves the delta segment file size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function deprecated use libewf_handle_get_maximum_delta_segment_siz | |
| | | e instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_get_delta_segment_file_size( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN \ | |
| size64_t *delta_segment_file_size ); | | int libewf_handle_get_delta_segment_file_size( | |
| | | libewf_handle_t *handle, | |
| | | size64_t *delta_segment_file_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* Sets the delta segment file size | | /* Sets the delta segment file size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function deprecated use libewf_handle_set_maximum_delta_segment_siz | |
| | | e instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_set_delta_segment_file_size( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN \ | |
| size64_t delta_segment_file_size ); | | int libewf_handle_set_delta_segment_file_size( | |
| | | libewf_handle_t *handle, | |
| | | size64_t delta_segment_file_size, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| #endif | | /* ------------------------------------------------------------------------ | |
| | | - | |
| | | * Meta data functions | |
| | | * ------------------------------------------------------------------------ | |
| | | - */ | |
| | | | |
| | | /* Retrieves the number of sectors per chunk | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_sectors_per_chunk( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *sectors_per_chunk, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the number of sectors per chunk | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_sectors_per_chunk( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t sectors_per_chunk, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of bytes per sector | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_bytes_per_sector( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *bytes_per_sector, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the number of bytes per sector | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_bytes_per_sector( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t bytes_per_sector, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of sectors | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_number_of_sectors( | |
| | | libewf_handle_t *handle, | |
| | | uint64_t *number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the chunk size | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_chunk_size( | |
| | | libewf_handle_t *handle, | |
| | | size32_t *chunk_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the error granularity | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_error_granularity( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *error_granularity, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the error granularity | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_error_granularity( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t error_granularity, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the compression values | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_compression_values( | |
| | | libewf_handle_t *handle, | |
| | | int8_t *compression_level, | |
| | | uint8_t *compression_flags, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the compression values | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_compression_values( | |
| | | libewf_handle_t *handle, | |
| | | int8_t compression_level, | |
| | | uint8_t compression_flags, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size of the contained (media) data | |
| | | * This function will compensate for a media_size that is not a multitude o | |
| | | f bytes_per_sector | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_media_size( | |
| | | libewf_handle_t *handle, | |
| | | size64_t *media_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the media size | |
| | | * The media_size is stored as number_of_sectors x bytes_per_sector | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_media_size( | |
| | | libewf_handle_t *handle, | |
| | | size64_t media_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the media type value | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_media_type( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t *media_type, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the media type | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_media_type( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t media_type, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the media flags | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_media_flags( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t *media_flags, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the media flags | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_media_flags( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t media_flags, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the format type value | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_format( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t *format, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the output format | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_format( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t format, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the GUID | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_guid( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t *guid, | |
| | | size_t size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the GUID | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_guid( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t *guid, | |
| | | size_t size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the MD5 hash | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_md5_hash( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t *md5_hash, | |
| | | size_t size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the MD5 hash | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_md5_hash( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t *md5_hash, | |
| | | size_t size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the SHA1 hash | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_sha1_hash( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t *sha1_hash, | |
| | | size_t size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the SHA1 hash | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_sha1_hash( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t *sha1_hash, | |
| | | size_t size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of chunks written | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_number_of_chunks_written( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *number_of_chunks, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the read zero chunk on error | |
| | | * The chunk is not zeroed if read raw is used | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_read_zero_chunk_on_error( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t zero_on_error, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Copies the media values from the source to the destination handle | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_copy_media_values( | |
| | | libewf_handle_t *destination_handle, | |
| | | libewf_handle_t *source_handle, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of acquiry errors | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_number_of_acquiry_errors( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *number_of_errors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves an acquiry error | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_acquiry_error( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t index, | |
| | | uint64_t *first_sector, | |
| | | uint64_t *number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Appends an acquiry error | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_append_acquiry_error( | |
| | | libewf_handle_t *handle, | |
| | | uint64_t first_sector, | |
| | | uint64_t number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of checksum errors | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_number_of_checksum_errors( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *number_of_errors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves a checksum error | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_checksum_error( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t index, | |
| | | uint64_t *first_sector, | |
| | | uint64_t *number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Appends a checksum error | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_append_checksum_error( | |
| | | libewf_handle_t *handle, | |
| | | uint64_t first_sector, | |
| | | uint64_t number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of sessions | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_number_of_sessions( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *number_of_sessions, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves a session | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_session( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t index, | |
| | | uint64_t *first_sector, | |
| | | uint64_t *number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Appends a session | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_append_session( | |
| | | libewf_handle_t *handle, | |
| | | uint64_t first_sector, | |
| | | uint64_t number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of tracks | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_number_of_tracks( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *number_of_tracks, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves a track | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_track( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t index, | |
| | | uint64_t *first_sector, | |
| | | uint64_t *number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Appends a track | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_append_track( | |
| | | libewf_handle_t *handle, | |
| | | uint64_t first_sector, | |
| | | uint64_t number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the header codepage | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_header_codepage( | |
| | | libewf_handle_t *handle, | |
| | | int *header_codepage, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the header codepage | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_header_codepage( | |
| | | libewf_handle_t *handle, | |
| | | int header_codepage, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the header values date format | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_header_values_date_format( | |
| | | libewf_handle_t *handle, | |
| | | int *date_format, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the header values date format | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_header_values_date_format( | |
| | | libewf_handle_t *handle, | |
| | | int date_format, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of header values | |
| | | * Returns 1 if successful, 0 if no header values are present or -1 on erro | |
| | | r | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_number_of_header_values( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *number_of_values, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size of the header value identifier of a specific index | |
| | | * The identifier size includes the end of string character | |
| | | * Returns 1 if successful, 0 if no header values are present or -1 on erro | |
| | | r | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_header_value_identifier_size( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t index, | |
| | | size_t *identifier_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the header value identifier of a specific index | |
| | | * The identifier size should include the end of string character | |
| | | * Returns 1 if successful, 0 if no header values are present or -1 on erro | |
| | | r | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_header_value_identifier( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t index, | |
| | | uint8_t *identifier, | |
| | | size_t identifier_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size of the UTF-8 encoded header value of an identifier | |
| | | * The string size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_utf8_header_value_size( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | size_t *utf8_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-8 encoded header value of an identifier | |
| | | * The string size should include the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_utf8_header_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | uint8_t *utf8_string, | |
| | | size_t utf8_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the header value case number | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_case_number( handle, value, val | |
| | | ue_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "case_numb | |
| | | er", 11, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value description | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_description( handle, value, val | |
| | | ue_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "descripti | |
| | | on", 11, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value examiner name | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_examiner_name( handle, value, v | |
| | | alue_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "examiner_ | |
| | | name", 13, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value evidence number | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_evidence_number( handle, value, | |
| | | value_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "evidence_ | |
| | | number", 15, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value notes | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_notes( handle, value, lengt, er | |
| | | ror ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "notes", 5 | |
| | | , value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value acquiry date | |
| | | * The string is encoded according to the date format | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_acquiry_date( handle, value, va | |
| | | lue_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "acquiry_d | |
| | | ate", 12, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value system date | |
| | | * The string is encoded according to the date format | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_system_date( handle, value, val | |
| | | ue_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "system_da | |
| | | te", 11, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value acquiry operating system | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_acquiry_operating_system( handl | |
| | | e, value, value_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "acquiry_o | |
| | | perating_system", 24, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value acquiry software version | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_acquiry_software_version( handl | |
| | | e, value, value_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "acquiry_s | |
| | | oftware_version", 24, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value password | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_password( handle, value, value_ | |
| | | size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "password" | |
| | | , 8, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value compression level | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_compression_level( handle, valu | |
| | | e, value_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "compressi | |
| | | on_level", 17, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value model | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_model( handle, value, value_siz | |
| | | e, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "model", 5 | |
| | | , value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value serial number | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_serial_number( handle, value, v | |
| | | alue_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "serial_nu | |
| | | mber", 13, value, value_size, error ) | |
| | | | |
| | | /* Sets the UTF-8 encoded header value specified by the identifier | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_utf8_header_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | const uint8_t *utf8_string, | |
| | | size_t utf8_string_length, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the header value case number | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_case_number( handle, value, val | |
| | | ue_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "case_numb | |
| | | er", 11, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value description | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_description( handle, value, val | |
| | | ue_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "descripti | |
| | | on", 11, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value examiner name | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_examiner_name( handle, value, v | |
| | | alue_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "examiner_ | |
| | | name", 13, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value evidence number | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_evidence_number( handle, value, | |
| | | value_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "evidence_ | |
| | | number", 15, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value notes | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_notes( handle, value, value_len | |
| | | gth, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "notes", 5 | |
| | | , value, value_length, error ) | |
| | | | |
| | | /* Sets the header value acquiry date | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_acquiry_date( handle, value, va | |
| | | lue_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "acquiry_d | |
| | | ate", 12, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value system date | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_system_date( handle, value, val | |
| | | ue_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "system_da | |
| | | te", 11, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value acquiry operating system | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_acquiry_operating_system( handl | |
| | | e, value, value_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "acquiry_o | |
| | | perating_system", 24, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value acquiry software version | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_acquiry_software_version( handl | |
| | | e, value, value_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "acquiry_s | |
| | | oftware_version", 24, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value password | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_password( handle, value, value_ | |
| | | length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "password" | |
| | | , 8, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value compression level | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_compression_level( handle, valu | |
| | | e, value_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "compressi | |
| | | on_level", 17, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value model | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_model( handle, value, value_len | |
| | | gth, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "model", 5 | |
| | | , value, value_length, error ) | |
| | | | |
| | | /* Sets the header value serial number | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_serial_number( handle, value, v | |
| | | alue_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "serial_nu | |
| | | mber", 13, value, value_length, error ) | |
| | | | |
| | | /* Retrieves the size of the UTF-16 encoded header value of an identifier | |
| | | * The string size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_utf16_header_value_size( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | size_t *utf16_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-16 encoded header value of an identifier | |
| | | * The string size should include the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_utf16_header_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | uint16_t *utf16_string, | |
| | | size_t utf16_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the UTF-16 encoded header value specified by the identifier | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_utf16_header_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | const uint16_t *utf16_string, | |
| | | size_t utf16_string_length, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Copies the header values from the source to the destination handle | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_copy_header_values( | |
| | | libewf_handle_t *destination_handle, | |
| | | libewf_handle_t *source_handle, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of hash values | |
| | | * Returns 1 if successful, 0 if no hash values are present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_number_of_hash_values( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *number_of_values, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size of the hash value identifier of a specific index | |
| | | * The identifier size includes the end of string character | |
| | | * Returns 1 if successful, 0 if no hash values are present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_hash_value_identifier_size( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t index, | |
| | | size_t *identifier_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the hash value identifier of a specific index | |
| | | * The identifier size should include the end of string character | |
| | | * Returns 1 if successful, 0 if no hash values are present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_hash_value_identifier( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t index, | |
| | | uint8_t *identifier, | |
| | | size_t identifier_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size of the UTF-8 encoded hash value of an identifier | |
| | | * The string size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_utf8_hash_value_size( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | size_t *utf8_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-8 encoded hash value of an identifier | |
| | | * The string size should include the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_utf8_hash_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | uint8_t *utf8_string, | |
| | | size_t utf8_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the hash value MD5 | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_hash_value_md5( handle, value, value_size, e | |
| | | rror ) \ | |
| | | libewf_handle_get_utf8_hash_value( handle, (uint8_t *) "MD5", 3, va | |
| | | lue, value_size, error ) | |
| | | | |
| | | /* Retrieves the hash value SHA1 | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_utf8_hash_value_sha1( handle, value, value_size, | |
| | | error ) \ | |
| | | libewf_handle_get_utf8_hash_value( handle, (uint8_t *) "SHA1", 4, v | |
| | | alue, value_size, error ) | |
| | | | |
| | | /* Sets the UTF-8 hash value specified by the identifier | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_utf8_hash_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | const uint8_t *utf8_string, | |
| | | size_t utf8_string_length, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the hash value MD5 | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_hash_value_md5( handle, value, value_length, | |
| | | error ) \ | |
| | | libewf_handle_set_utf8_hash_value( handle, (uint8_t *) "MD5", 3, va | |
| | | lue, value_length, error ) | |
| | | | |
| | | /* Sets the hash value SHA1 | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_utf8_hash_value_sha1( handle, value, value_length | |
| | | , error ) \ | |
| | | libewf_handle_set_utf8_hash_value( handle, (uint8_t *) "SHA1", 4, v | |
| | | alue, value_length, error ) | |
| | | | |
| | | /* Retrieves the size of the UTF-16 encoded hash value of an identifier | |
| | | * The string size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_utf16_hash_value_size( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | size_t *utf16_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-16 encoded hash value of an identifier | |
| | | * The string size should include the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_utf16_hash_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | uint16_t *utf16_string, | |
| | | size_t utf16_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the UTF-16 hash value specified by the identifier | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_utf16_hash_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | const uint16_t *utf16_string, | |
| | | size_t utf16_string_length, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the root (single) file entry | |
| | | * Returns 1 if successful, 0 if no file entries are present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_root_file_entry( | |
| | | libewf_handle_t *handle, | |
| | | libewf_file_entry_t **root_file_entry, | |
| | | libewf_error_t **error ); | |
| | | | |
| /* ------------------------------------------------------------------------
- | | /* ------------------------------------------------------------------------
- | |
|
| * File/Handle functions (APIv2) | | * Meta data functions - deprecated | |
| * ------------------------------------------------------------------------
- */ | | * ------------------------------------------------------------------------
- */ | |
| | | | |
|
| #if 0 || defined( HAVE_V2_API ) | | /* Sets the read wipe chunk on error | |
| | | * The chunk is not wiped if read raw is used | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function is deprecated use libewf_handle_set_read_zero_chunk_on_err | |
| | | or instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_read_wipe_chunk_on_error( | |
| | | libewf_handle_t *handle, | |
| | | uint8_t wipe_on_error, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Initialize the handle | | /* Retrieves the amount of acquiry errors | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function deprecated use libewf_handle_get_number_of_acquiry_errors | |
| | | instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_initialize( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t **handle, | | LIBEWF_EXTERN \ | |
| libewf_error_t **error ); | | int libewf_handle_get_amount_of_acquiry_errors( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *amount_of_errors, | |
| | | libewf_error_t **error ); | |
| | | | |
|
| /* Frees the handle including elements | | /* Add an acquiry error | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function deprecated use libewf_handle_append_acquiry_error instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_free( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t **handle, | | LIBEWF_EXTERN \ | |
| libewf_error_t **error ); | | int libewf_handle_add_acquiry_error( | |
| | | libewf_handle_t *handle, | |
| | | uint64_t first_sector, | |
| | | uint64_t number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of checksum errors | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_number_of_checksum_errors | |
| | | instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_number_of_crc_errors( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *number_of_errors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the amount of checksum errors | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_number_of_checksum_errors | |
| | | instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_amount_of_crc_errors( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *amount_of_errors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves a checksum error | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_checksum_error instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_crc_error( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t index, | |
| | | uint64_t *first_sector, | |
| | | uint64_t *number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Add a checksum error | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_append_checksum_error instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_add_crc_error( | |
| | | libewf_handle_t *handle, | |
| | | uint64_t first_sector, | |
| | | uint64_t number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the amount of sessions | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_number_of_sessions instea | |
| | | d | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_amount_of_sessions( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *amount_of_sessions, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Add a session | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_append_session instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_add_session( | |
| | | libewf_handle_t *handle, | |
| | | uint64_t first_sector, | |
| | | uint64_t number_of_sectors, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the amount of header values | |
| | | * Returns 1 if successful, 0 if no header values are present or -1 on erro | |
| | | r | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_number_of_header_values i | |
| | | nstead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_amount_of_header_values( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *amount_of_values, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size of the UTF-8 encoded header value of an identifier | |
| | | * The value size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_utf8_header_value_size in | |
| | | stead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_header_value_size( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | size_t *value_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-8 encoded header value of an identifier | |
| | | * The value size should include the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_utf8_header_value instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_header_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | uint8_t *value, | |
| | | size_t value_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the header value case number | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_case_number( handle, value, value_si | |
| | | ze, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "case_number", | |
| | | 11, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value description | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_description( handle, value, value_si | |
| | | ze, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "description", | |
| | | 11, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value examiner name | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_examiner_name( handle, value, value_ | |
| | | size, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "examiner_name" | |
| | | , 13, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value evidence number | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_evidence_number( handle, value, valu | |
| | | e_size, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "evidence_numbe | |
| | | r", 15, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value notes | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_notes( handle, value, lengt, error ) | |
| | | \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "notes", 5, val | |
| | | ue, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value acquiry date | |
| | | * The string is encoded according to the date format | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_acquiry_date( handle, value, value_s | |
| | | ize, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "acquiry_date", | |
| | | 12, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value system date | |
| | | * The string is encoded according to the date format | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_system_date( handle, value, value_si | |
| | | ze, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "system_date", | |
| | | 11, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value acquiry operating system | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_acquiry_operating_system( handle, va | |
| | | lue, value_size, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "acquiry_operat | |
| | | ing_system", 24, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value acquiry software version | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_acquiry_software_version( handle, va | |
| | | lue, value_size, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "acquiry_softwa | |
| | | re_version", 24, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value password | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_password( handle, value, value_size, | |
| | | error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "password", 8, | |
| | | value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value compression type | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_compression_type( handle, value, val | |
| | | ue_size, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "compression_ty | |
| | | pe", 16, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value model | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_model( handle, value, value_size, er | |
| | | ror ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "model", 5, val | |
| | | ue, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value serial number | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_header_value_serial_number( handle, value, value_ | |
| | | size, error ) \ | |
| | | libewf_handle_get_header_value( handle, (uint8_t *) "serial_number" | |
| | | , 13, value, value_size, error ) | |
| | | | |
| | | /* Retrieves the header value compression type | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_utf8_header_value_compres | |
| | | sion_level instead | |
| | | */ | |
| | | #define libewf_handle_get_utf8_header_value_compression_type( handle, value | |
| | | , value_size, error ) \ | |
| | | libewf_handle_get_utf8_header_value( handle, (uint8_t *) "compressi | |
| | | on_type", 16, value, value_size, error ) | |
| | | | |
| | | /* Sets the UTF-8 encoded header value specified by the identifier | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_set_utf8_header_value instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_header_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | const uint8_t *value, | |
| | | size_t value_length, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the header value case number | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_case_number( handle, value, value_le | |
| | | ngth, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "case_number", | |
| | | 11, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value description | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_description( handle, value, value_le | |
| | | ngth, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "description", | |
| | | 11, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value examiner name | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_examiner_name( handle, value, value_ | |
| | | length, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "examiner_name" | |
| | | , 13, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value evidence number | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_evidence_number( handle, value, valu | |
| | | e_length, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "evidence_numbe | |
| | | r", 15, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value notes | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_notes( handle, value, value_length, | |
| | | error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "notes", 5, val | |
| | | ue, value_length, error ) | |
| | | | |
| | | /* Sets the header value acquiry date | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_acquiry_date( handle, value, value_l | |
| | | ength, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "acquiry_date", | |
| | | 12, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value system date | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_system_date( handle, value, value_le | |
| | | ngth, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "system_date", | |
| | | 11, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value acquiry operating system | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_acquiry_operating_system( handle, va | |
| | | lue, value_length, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "acquiry_operat | |
| | | ing_system", 24, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value acquiry software version | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_acquiry_software_version( handle, va | |
| | | lue, value_length, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "acquiry_softwa | |
| | | re_version", 24, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value password | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_password( handle, value, value_lengt | |
| | | h, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "password", 8, | |
| | | value, value_length, error ) | |
| | | | |
| | | /* Sets the header value compression type | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_compression_type( handle, value, val | |
| | | ue_length, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "compression_ty | |
| | | pe", 16, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value model | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_model( handle, value, value_length, | |
| | | error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "model", 5, val | |
| | | ue, value_length, error ) | |
| | | | |
| | | /* Sets the header value serial number | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_header_value_serial_number( handle, value, value_ | |
| | | length, error ) \ | |
| | | libewf_handle_set_header_value( handle, (uint8_t *) "serial_number" | |
| | | , 13, value, value_length, error ) | |
| | | | |
| | | /* Sets the header value compression type | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_set_utf8_header_value_compres | |
| | | sion_level instead | |
| | | */ | |
| | | #define libewf_handle_set_utf8_header_value_compression_type( handle, value | |
| | | , value_length, error ) \ | |
| | | libewf_handle_set_utf8_header_value( handle, (uint8_t *) "compressi | |
| | | on_type", 16, value, value_length, error ) | |
| | | | |
| | | /* Retrieves the amount of hash values | |
| | | * Returns 1 if successful, 0 if no hash values are present or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_number_of_hash_values ins | |
| | | tead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_amount_of_hash_values( | |
| | | libewf_handle_t *handle, | |
| | | uint32_t *amount_of_values, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size of the UTF-8 encoded hash value of an identifier | |
| | | * The value size includes the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_utf8_hash_value_size inst | |
| | | ead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_hash_value_size( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | size_t *value_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-8 encoded hash value of an identifier | |
| | | * The value size should include the end of string character | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_get_utf8_hash_value instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_get_hash_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | uint8_t *value, | |
| | | size_t value_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the hash value MD5 | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_hash_value_md5( handle, value, value_size, error | |
| | | ) \ | |
| | | libewf_handle_get_hash_value( handle, "MD5", 3, value, value_size, | |
| | | error ) | |
| | | | |
| | | /* Retrieves the hash value SHA1 | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | #define libewf_handle_get_hash_value_sha1( handle, value, value_size, error | |
| | | ) \ | |
| | | libewf_handle_get_hash_value( handle, "SHA1", 4, value, value_size, | |
| | | error ) | |
| | | | |
| | | /* Sets the UTF-8 hash value specified by the identifier | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_handle_set_utf8_hash_value instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_handle_set_hash_value( | |
| | | libewf_handle_t *handle, | |
| | | const uint8_t *identifier, | |
| | | size_t identifier_length, | |
| | | const uint8_t *value, | |
| | | size_t value_length, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Sets the hash value MD5 | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_hash_value_md5( handle, value, value_length, erro | |
| | | r ) \ | |
| | | libewf_handle_set_hash_value( handle, "MD5", 3, value, value_length | |
| | | , error ) | |
| | | | |
| | | /* Sets the hash value SHA1 | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | #define libewf_handle_set_hash_value_sha1( handle, value, value_length, err | |
| | | or ) \ | |
| | | libewf_handle_set_hash_value( handle, "SHA1", 4, value, value_lengt | |
| | | h, error ) | |
| | | | |
| | | /* ------------------------------------------------------------------------ | |
| | | - | |
| | | * Single file entry functions | |
| | | * ------------------------------------------------------------------------ | |
| | | - */ | |
| | | | |
| | | /* Frees a file entry | |
| | | * REturns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_free( | |
| | | libewf_file_entry_t **file_entry, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the flags | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_flags( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint32_t *flags, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size of the UTF-8 encoded name | |
| | | * The returned size includes the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_utf8_name_size( | |
| | | libewf_file_entry_t *file_entry, | |
| | | size_t *utf8_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-8 encoded name value | |
| | | * The size should include the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_utf8_name( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint8_t *utf8_string, | |
| | | size_t utf8_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size of the UTF-16 encoded name | |
| | | * The returned size includes the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_utf16_name_size( | |
| | | libewf_file_entry_t *file_entry, | |
| | | size_t *utf16_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-16 encoded name value | |
| | | * The size should include the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_utf16_name( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint16_t *utf16_string, | |
| | | size_t utf16_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the size | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_size( | |
| | | libewf_file_entry_t *file_entry, | |
| | | size64_t *size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the creation date and time | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_creation_time( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint64_t *creation_time, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the modification date and time | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_modification_time( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint64_t *modification_time, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the access date and time | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_access_time( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint64_t *access_time, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the entry modification date and time | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_entry_modification_time( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint64_t *entry_modification_time, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-8 encoded MD5 hash value | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_utf8_hash_value_md5( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint8_t *utf8_string, | |
| | | size_t utf8_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-16 encoded MD5 hash value | |
| | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_utf16_hash_value_md5( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint16_t *utf16_string, | |
| | | size_t utf16_string_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the number of sub file entries | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_number_of_sub_file_entries( | |
| | | libewf_file_entry_t *file_entry, | |
| | | int *number_of_sub_file_entries, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the sub file entry for the specific index | |
| | | * Returns 1 if successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_sub_file_entry( | |
| | | libewf_file_entry_t *file_entry, | |
| | | int sub_file_entry_index, | |
| | | libewf_file_entry_t **sub_file_entry, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Reads data at the current offset | |
| | | * Returns the number of bytes read or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | ssize_t libewf_file_entry_read_buffer( | |
| | | libewf_file_entry_t *file_entry, | |
| | | void *buffer, | |
| | | size_t buffer_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Reads data at a specific offset | |
| | | * Returns the number of bytes read or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | ssize_t libewf_file_entry_read_random( | |
| | | libewf_file_entry_t *file_entry, | |
| | | void *buffer, | |
| | | size_t buffer_size, | |
| | | off64_t offset, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Seeks a certain offset of the data | |
| | | * Returns the offset if seek is successful or -1 on error | |
| | | */ | |
| | | LIBEWF_EXTERN \ | |
| | | off64_t libewf_file_entry_seek_offset( | |
| | | libewf_file_entry_t *file_entry, | |
| | | off64_t offset, | |
| | | int whence, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* ------------------------------------------------------------------------ | |
| | | - | |
| | | * Single file entry functions - deprecated | |
| | | * ------------------------------------------------------------------------ | |
| | | - */ | |
| | | | |
| | | /* Retrieves the size of the UTF-8 encoded name | |
| | | * The returned size includes the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_file_entry_get_utf8_name_size instea | |
| | | d | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_name_size( | |
| | | libewf_file_entry_t *file_entry, | |
| | | size_t *name_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the UTF-8 encoded name value | |
| | | * The size should include the end of string character | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_file_entry_get_utf8_name instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_name( | |
| | | libewf_file_entry_t *file_entry, | |
| | | uint8_t *name, | |
| | | size_t name_size, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* Retrieves the amount of sub file entries | |
| | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function deprecated use libewf_file_entry_get_number_of_sub_file_en | |
| | | tries instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN \ | |
| | | int libewf_file_entry_get_amount_of_sub_file_entries( | |
| | | libewf_file_entry_t *file_entry, | |
| | | int *amount_of_sub_file_entries, | |
| | | libewf_error_t **error ); | |
| | | | |
| | | /* ------------------------------------------------------------------------ | |
| | | - | |
| | | * APIv1 functions - deprecated | |
| | | * ------------------------------------------------------------------------ | |
| | | - */ | |
| | | | |
| | | #if 1 || defined( HAVE_V1_API ) | |
| | | | |
| | | /* ------------------------------------------------------------------------ | |
| | | - | |
| | | * Notify functions | |
| | | * ------------------------------------------------------------------------ | |
| | | - */ | |
| | | | |
| | | /* Sets the notify values | |
| | | * | |
| | | * This function is deprecated use libewf_notify_set_value instead | |
| | | */ | |
| | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN void libewf_set_notify_values( | |
| | | FILE *stream, | |
| | | uint8_t verbose ); | |
| | | | |
| | | /* ------------------------------------------------------------------------ | |
| | | - | |
| | | * File/Handle functions | |
| | | * ------------------------------------------------------------------------ | |
| | | - */ | |
| | | | |
| /* Signals the libewf handle to abort its current activity | | /* Signals the libewf handle to abort its current activity | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function deprecated use libewf_handle_signal_abort instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_signal_abort( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN int libewf_signal_abort( | |
| libewf_error_t **error ); | | libewf_handle_t *handle ); | |
| | | | |
| /* Opens a set of EWF file(s) | | /* Opens a set of EWF file(s) | |
| * For reading files should contain all filenames that make up an EWF image | | * For reading files should contain all filenames that make up an EWF image | |
| * For writing files should contain the base of the filename, extentions li
ke .e01 will be automatically added | | * For writing files should contain the base of the filename, extentions li
ke .e01 will be automatically added | |
| * Returns a pointer to the new instance of handle, NULL on error | | * Returns a pointer to the new instance of handle, NULL on error | |
|
| | | * | |
| | | * This function deprecated use libewf_handle_open instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_open( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN libewf_handle_t *libewf_open( | |
| char * const filenames[], | | char * const filenames[], | |
| int amount_of_filenames, | | int amount_of_filenames, | |
| uint8_t flags, | | uint8_t flags ); | |
| libewf_error_t **error ); | | | |
| | | | |
| #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | | #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | |
| /* Opens a set of EWF file(s) | | /* Opens a set of EWF file(s) | |
| * For reading files should contain all filenames that make up an EWF image | | * For reading files should contain all filenames that make up an EWF image | |
| * For writing files should contain the base of the filename, extentions li
ke .e01 will be automatically added | | * For writing files should contain the base of the filename, extentions li
ke .e01 will be automatically added | |
| * Returns a pointer to the new instance of handle, NULL on error | | * Returns a pointer to the new instance of handle, NULL on error | |
|
| | | * | |
| | | * This function deprecated use libewf_handle_open_wide instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_open_wide( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN libewf_handle_t *libewf_open_wide( | |
| wchar_t * const filenames[], | | wchar_t * const filenames[], | |
| int amount_of_filenames, | | int amount_of_filenames, | |
| uint8_t flags, | | uint8_t flags ); | |
| libewf_error_t **error ); | | | |
| #endif | | | |
| | | | |
| #if defined( LIBEWF_HAVE_BFIO ) | | | |
| /* Opens a set of EWF file(s) using a Basic File IO (bfio) pool | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_open_file_io_pool( | | | |
| libewf_handle_t *handle, | | | |
| libbfio_pool_t *file_io_pool, | | | |
| uint8_t flags, | | | |
| libewf_error_t **error ); | | | |
| #endif | | #endif | |
| | | | |
| /* Closes the EWF handle and frees memory used within the handle | | /* Closes the EWF handle and frees memory used within the handle | |
| * Returns 0 if successful or -1 on error | | * Returns 0 if successful or -1 on error | |
|
| | | * | |
| | | * This function deprecated use libewf_handle_close instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_close( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN int libewf_close( | |
| libewf_error_t **error ); | | libewf_handle_t *handle ); | |
| | | | |
|
| /* Seeks a certain offset of the media data within the EWF file(s) | | /* Seeks a certain offset of the (media) data | |
| * It will set the related file offset to the specific chunk offset | | | |
| * Returns the offset if seek is successful or -1 on error | | * Returns the offset if seek is successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_seek_offset instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN off64_t libewf_handle_seek_offset( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN off64_t libewf_seek_offset( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
|
| off64_t offset, | | off64_t offset ); | |
| int whence, | | | |
| libewf_error_t **error ); | | | |
| | | | |
|
| /* Retrieves the current offset of the media data within the EWF file(s) | | /* Retrieves the current offset of the (media) data | |
| * Returns the offset if successful or -1 on error | | * Returns the offset if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_offset instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_get_offset( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN off64_t libewf_get_offset( | |
| off64_t *offset, | | libewf_handle_t *handle ); | |
| libewf_error_t **error ); | | | |
| | | | |
|
| /* Prepares chunk data after reading it according to the handle settings | | /* Prepares a buffer with chunk data after reading it according to the hand | |
| * This function should be used after libewf_handle_read_chunk | | le settings | |
| * The chunk buffer size should contain the actual chunk size | | * intended for raw read | |
| | | * The buffer size cannot be larger than the chunk size | |
| * Returns the resulting chunk size or -1 on error | | * Returns the resulting chunk size or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_prepare_read_chunk instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_handle_prepare_read_chunk( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN ssize_t libewf_raw_read_prepare_buffer( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
|
| void *chunk_buffer, | | void *buffer, | |
| size_t chunk_buffer_size, | | size_t buffer_size, | |
| void *uncompressed_buffer, | | void *uncompressed_buffer, | |
| size_t *uncompressed_buffer_size, | | size_t *uncompressed_buffer_size, | |
| int8_t is_compressed, | | int8_t is_compressed, | |
|
| uint32_t chunk_crc, | | uint32_t chunk_checksum, | |
| int8_t read_crc, | | int8_t read_checksum ); | |
| libewf_error_t **error ); | | | |
| | | | |
|
| /* Reads a chunk from the curent offset into a buffer | | /* Reads 'raw' data from the current offset into a buffer | |
| * size contains the size of the chunk buffer | | * size contains the size of the buffer | |
| * The function sets the chunk crc, is compressed and read crc values | | * The function sets the chunk checksum, is compressed and read checksum va | |
| | | lues | |
| * Returns the amount of bytes read or -1 on error | | * Returns the amount of bytes read or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_read_chunk instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_handle_read_chunk( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN ssize_t libewf_raw_read_buffer( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
|
| void *chunk_buffer, | | void *buffer, | |
| size_t chunk_buffer_size, | | size_t buffer_size, | |
| int8_t *is_compressed, | | int8_t *is_compressed, | |
|
| void *crc_buffer, | | uint32_t *chunk_checksum, | |
| uint32_t *chunk_crc, | | int8_t *read_checksum ); | |
| int8_t *read_crc, | | | |
| libewf_error_t **error ); | | | |
| | | | |
|
| /* Reads data from the curent offset into a buffer | | /* Reads data from the current offset into a buffer | |
| * Returns the amount of bytes read or -1 on error | | * Returns the amount of bytes read or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_read_buffer instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_handle_read_buffer( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN ssize_t libewf_read_buffer( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| void *buffer, | | void *buffer, | |
|
| size_t buffer_size, | | size_t buffer_size ); | |
| libewf_error_t **error ); | | | |
| | | | |
|
| /* Reads media data from an offset into a buffer | | /* Reads (media) data at a specific offset | |
| * Returns the amount of bytes read or -1 on error | | * Returns the amount of bytes read or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_read_random instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_handle_read_random( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN ssize_t libewf_read_random( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| void *buffer, | | void *buffer, | |
| size_t buffer_size, | | size_t buffer_size, | |
|
| off64_t offset, | | off64_t offset ); | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Prepares a buffer with chunk data before writing according to the handle
settings | | /* Prepares a buffer with chunk data before writing according to the handle
settings | |
|
| * This function should be used before libewf_handle_write_chunk | | * intended for raw write | |
| * The chunk buffer size should contain the actual chunk size | | * The buffer size cannot be larger than the chunk size | |
| * The function sets the chunk crc, is compressed and write crc values | | * The function sets the chunk checksum, is compressed and write checksum v | |
| | | alues | |
| * Returns the resulting chunk size or -1 on error | | * Returns the resulting chunk size or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_prepare_write_chunk instea | |
| | | d | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_handle_prepare_write_chunk( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN ssize_t libewf_raw_write_prepare_buffer( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| void *buffer, | | void *buffer, | |
| size_t buffer_size, | | size_t buffer_size, | |
| void *compressed_buffer, | | void *compressed_buffer, | |
| size_t *compressed_buffer_size, | | size_t *compressed_buffer_size, | |
| int8_t *is_compressed, | | int8_t *is_compressed, | |
|
| uint32_t *chunk_crc, | | uint32_t *chunk_checksum, | |
| int8_t *write_crc, | | int8_t *write_checksum ); | |
| libewf_error_t **error ); | | | |
| | | | |
|
| /* Writes a chunk in EWF format from a buffer at the current offset | | /* Writes 'raw' data in EWF format at the current offset | |
| * the necessary settings of the write values must have been made | | * the necessary settings of the write values must have been made | |
| * size contains the size of the data within the buffer while | | * size contains the size of the data within the buffer while | |
| * data size contains the size of the actual input data | | * data size contains the size of the actual input data | |
| * Will initialize write if necessary | | * Will initialize write if necessary | |
| * Returns the amount of input bytes written, 0 when no longer bytes can be
written or -1 on error | | * Returns the amount of input bytes written, 0 when no longer bytes can be
written or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_write_chunk instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_handle_write_chunk( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN ssize_t libewf_raw_write_buffer( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
|
| void *chunk_buffer, | | void *buffer, | |
| size_t chunk_buffer_size, | | size_t buffer_size, | |
| size_t data_size, | | size_t data_size, | |
| int8_t is_compressed, | | int8_t is_compressed, | |
|
| void *crc_buffer, | | uint32_t chunk_checksum, | |
| uint32_t chunk_crc, | | int8_t write_checksum ); | |
| int8_t write_crc, | | | |
| libewf_error_t **error ); | | | |
| | | | |
|
| /* Writes data in EWF format from a buffer at the current offset | | /* Writes data in EWF format at the current offset | |
| * the necessary settings of the write values must have been made | | * the necessary settings of the write values must have been made | |
| * Will initialize write if necessary | | * Will initialize write if necessary | |
| * Returns the amount of input bytes written, 0 when no longer bytes can be
written or -1 on error | | * Returns the amount of input bytes written, 0 when no longer bytes can be
written or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_write_buffer instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_handle_write_buffer( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN ssize_t libewf_write_buffer( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| void *buffer, | | void *buffer, | |
|
| size_t buffer_size, | | size_t buffer_size ); | |
| libewf_error_t **error ); | | | |
| | | | |
|
| /* Writes data in EWF format from a buffer at an specific offset, | | /* Writes data in EWF format at a specific offset, | |
| * the necessary settings of the write values must have been made | | * the necessary settings of the write values must have been made | |
| * Will initialize write if necessary | | * Will initialize write if necessary | |
| * Returns the amount of input bytes written, 0 when no longer bytes can be
written or -1 on error | | * Returns the amount of input bytes written, 0 when no longer bytes can be
written or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_write_random instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_handle_write_random( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN ssize_t libewf_write_random( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| void *buffer, | | void *buffer, | |
| size_t buffer_size, | | size_t buffer_size, | |
|
| off64_t offset, | | off64_t offset ); | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Finalizes the write by correcting the EWF the meta data in the segment f
iles | | /* Finalizes the write by correcting the EWF the meta data in the segment f
iles | |
| * This function is required after writing from stream | | * This function is required after writing from stream | |
| * Returns the amount of input bytes written or -1 on error | | * Returns the amount of input bytes written or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_write_finalize instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN ssize_t libewf_handle_write_finalize( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN ssize_t libewf_write_finalize( | |
| libewf_error_t **error ); | | libewf_handle_t *handle ); | |
| | | | |
| /* Retrieves the segment filename size | | | |
| * The filename size includes the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_segment_filename_size( | | | |
| libewf_handle_t *handle, | | | |
| size_t *filename_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the segment filename | | /* Retrieves the segment filename | |
| * The filename size should include the end of string character | | * The filename size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_segment_filename inste | |
| | | ad | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_get_segment_filename( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_get_segment_filename( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| char *filename, | | char *filename, | |
|
| size_t filename_size, | | size_t filename_size ); | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the segment filename | | /* Sets the segment filename | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_segment_filename inste | |
| | | ad | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_set_segment_filename( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_set_segment_filename( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const char *filename, | | const char *filename, | |
|
| size_t filename_length, | | size_t filename_length ); | |
| libewf_error_t **error ); | | | |
| | | | |
| #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | | #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | |
|
| /* Retrieves the segment filename size | | | |
| * The filename size includes the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_segment_filename_size_wide( | | | |
| libewf_handle_t *handle, | | | |
| size_t *filename_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the segment filename | | /* Retrieves the segment filename | |
| * The filename size should include the end of string character | | * The filename size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_segment_filename_wide | |
| | | instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_get_segment_filename_wide( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_get_segment_filename_wide( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| wchar_t *filename, | | wchar_t *filename, | |
|
| size_t filename_size, | | size_t filename_size ); | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the segment filename | | /* Sets the segment filename | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_segment_filename_wide | |
| | | instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_set_segment_filename_wide( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_set_segment_filename_wide( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const wchar_t *filename, | | const wchar_t *filename, | |
|
| size_t filename_length, | | size_t filename_length ); | |
| libewf_error_t **error ); | | | |
| #endif | | #endif | |
| | | | |
| /* Retrieves the segment file size | | /* Retrieves the segment file size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_maximum_segment_size i | |
| | | nstead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_get_segment_file_size( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_get_segment_file_size( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
|
| size64_t *segment_file_size, | | size64_t *segment_file_size ); | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the segment file size | | /* Sets the segment file size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_maximum_segment_size i | |
| | | nstead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_set_segment_file_size( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN int libewf_set_segment_file_size( | |
| size64_t segment_file_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the delta segment filename size | | | |
| * The filename size includes the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_delta_segment_filename_size( | | | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
|
| size_t *filename_size, | | size64_t segment_file_size ); | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the delta segment filename | | /* Retrieves the delta segment filename | |
| * The filename size should include the end of string character | | * The filename size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_delta_segment_filename | |
| | | instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_get_delta_segment_filename( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_get_delta_segment_filename( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| char *filename, | | char *filename, | |
|
| size_t filename_size, | | size_t filename_size ); | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the delta segment filename | | /* Sets the delta segment filename | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_delta_segment_filename | |
| | | instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_set_delta_segment_filename( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_set_delta_segment_filename( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const char *filename, | | const char *filename, | |
|
| size_t filename_length, | | size_t filename_length ); | |
| libewf_error_t **error ); | | | |
| | | | |
| #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | | #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | |
|
| /* Retrieves the delta segment filename size | | | |
| * The filename size includes the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_delta_segment_filename_size_wide( | | | |
| libewf_handle_t *handle, | | | |
| size_t *filename_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the delta segment filename | | /* Retrieves the delta segment filename | |
| * The filename size should include the end of string character | | * The filename size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_delta_segment_filename | |
| | | _wide instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_get_delta_segment_filename_wide( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_get_delta_segment_filename_wide( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| wchar_t *filename, | | wchar_t *filename, | |
|
| size_t filename_size, | | size_t filename_size ); | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the delta segment filename | | /* Sets the delta segment filename | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_delta_segment_filename | |
| | | _wide instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_set_delta_segment_filename_wide( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_set_delta_segment_filename_wide( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const wchar_t *filename, | | const wchar_t *filename, | |
|
| size_t filename_length, | | size_t filename_length ); | |
| libewf_error_t **error ); | | | |
| #endif | | #endif | |
| | | | |
| /* Retrieves the delta segment file size | | /* Retrieves the delta segment file size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_maximum_delta_segment_ | |
| | | size instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_get_delta_segment_file_size( | | LIBEWF_DEPRECATED \ | |
| | | LIBEWF_EXTERN int libewf_get_delta_segment_file_size( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
|
| size64_t *delta_segment_file_size, | | size64_t *delta_segment_file_size ); | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the delta segment file size | | /* Sets the delta segment file size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_maximum_delta_segment_ | |
| | | size instead | |
| */ | | */ | |
|
| LIBEWF_EXTERN int libewf_handle_set_delta_segment_file_size( | | LIBEWF_DEPRECATED \ | |
| libewf_handle_t *handle, | | LIBEWF_EXTERN int libewf_set_delta_segment_file_size( | |
| size64_t delta_segment_file_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the filename size of the (delta) segment file of the current c | | | |
| hunk | | | |
| * The filename size includes the end of string character | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_filename_size( | | | |
| libewf_handle_t *handle, | | | |
| size_t *filename_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the filename of the (delta) segment file of the current chunk | | | |
| * The filename size should include the end of string character | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_filename( | | | |
| libewf_handle_t *handle, | | | |
| char *filename, | | | |
| size_t filename_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| #if defined( LIBEWF_HAVE_WIDE_CHARACTER_TYPE ) | | | |
| /* Retrieves the filename size of the (delta) segment file of the current c | | | |
| hunk | | | |
| * The filename size includes the end of string character | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_filename_size_wide( | | | |
| libewf_handle_t *handle, | | | |
| size_t *filename_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the filename of the (delta) segment file of the current chunk | | | |
| * The filename size should include the end of string character | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_filename_wide( | | | |
| libewf_handle_t *handle, | | | |
| wchar_t *filename, | | | |
| size_t filename_size, | | | |
| libewf_error_t **error ); | | | |
| #endif | | | |
| | | | |
| #if defined( LIBEWF_HAVE_BFIO ) | | | |
| /* Retrieves the file io handle of the (delta) segment file of the current | | | |
| chunk | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_file_io_handle( | | | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
|
| libbfio_handle_t **file_io_handle, | | size64_t delta_segment_file_size ); | |
| libewf_error_t **error ); | | | |
| #endif | | | |
| | | | |
| #endif | | | |
| | | | |
| /* ------------------------------------------------------------------------
- | | /* ------------------------------------------------------------------------
- | |
|
| * Meta data functions (APIv1) | | * Meta data functions | |
| * ------------------------------------------------------------------------
- */ | | * ------------------------------------------------------------------------
- */ | |
| | | | |
|
| #if 1 || defined( HAVE_V1_API ) | | /* Retrieves the amount of sectors per chunk | |
| | | | |
| /* Retrieves the amount of sectors per chunk from the media information | | | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_sectors_per_chunk inst | |
| | | ead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_sectors_per_chunk( | | LIBEWF_EXTERN int libewf_get_sectors_per_chunk( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *sectors_per_chunk ); | | uint32_t *sectors_per_chunk ); | |
| | | | |
|
| /* Sets the amount of sectors per chunk in the media information | | /* Sets the amount of sectors per chunk | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_sectors_per_chunk inst | |
| | | ead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_sectors_per_chunk( | | LIBEWF_EXTERN int libewf_set_sectors_per_chunk( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t sectors_per_chunk ); | | uint32_t sectors_per_chunk ); | |
| | | | |
|
| /* Retrieves the amount of bytes per sector from the media information | | /* Retrieves the amount of bytes per sector | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_bytes_per_sector inste | |
| | | ad | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_bytes_per_sector( | | LIBEWF_EXTERN int libewf_get_bytes_per_sector( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *bytes_per_sector ); | | uint32_t *bytes_per_sector ); | |
| | | | |
|
| /* Sets the amount of bytes per sector in the media information | | /* Sets the amount of bytes per sector | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_bytes_per_sector inste | |
| | | ad | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_bytes_per_sector( | | LIBEWF_EXTERN int libewf_set_bytes_per_sector( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t bytes_per_sector ); | | uint32_t bytes_per_sector ); | |
| | | | |
|
| /* Retrieves the amount of sectors from the media information | | /* Retrieves the amount of sectors | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_number_of_sectors inst | |
| | | ead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_amount_of_sectors( | | LIBEWF_EXTERN int libewf_get_amount_of_sectors( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *amount_of_sectors ); | | uint32_t *amount_of_sectors ); | |
| | | | |
|
| /* Retrieves the chunk size from the media information | | /* Retrieves the chunk size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_chunk_size instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_chunk_size( | | LIBEWF_EXTERN int libewf_get_chunk_size( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| size32_t *chunk_size ); | | size32_t *chunk_size ); | |
| | | | |
|
| /* Retrieves the error granularity from the media information | | /* Retrieves the error granularity | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_error_granularity inst | |
| | | ead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_error_granularity( | | LIBEWF_EXTERN int libewf_get_error_granularity( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *error_granularity ); | | uint32_t *error_granularity ); | |
| | | | |
| /* Sets the error granularity | | /* Sets the error granularity | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_error_granularity inst | |
| | | ead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_error_granularity( | | LIBEWF_EXTERN int libewf_set_error_granularity( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t error_granularity ); | | uint32_t error_granularity ); | |
| | | | |
| /* Retrieves the compression values | | /* Retrieves the compression values | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_compression_values ins | |
| | | tead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_compression_values( | | LIBEWF_EXTERN int libewf_get_compression_values( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| int8_t *compression_level, | | int8_t *compression_level, | |
| uint8_t *compress_empty_block ); | | uint8_t *compress_empty_block ); | |
| | | | |
| /* Sets the compression values | | /* Sets the compression values | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_compression_values ins | |
| | | tead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_compression_values( | | LIBEWF_EXTERN int libewf_set_compression_values( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| int8_t compression_level, | | int8_t compression_level, | |
| uint8_t compress_empty_block ); | | uint8_t compress_empty_block ); | |
| | | | |
|
| /* Retrieves the size of the contained media data | | /* Retrieves the size of the contained (media) data | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_media_size instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_media_size( | | LIBEWF_EXTERN int libewf_get_media_size( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| size64_t *media_size ); | | size64_t *media_size ); | |
| | | | |
| /* Sets the media size | | /* Sets the media size | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_media_size instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_media_size( | | LIBEWF_EXTERN int libewf_set_media_size( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| size64_t media_size ); | | size64_t media_size ); | |
| | | | |
| /* Retrieves the media type value | | /* Retrieves the media type value | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_media_type instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_media_type( | | LIBEWF_EXTERN int libewf_get_media_type( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *media_type ); | | uint8_t *media_type ); | |
| | | | |
| /* Sets the media type | | /* Sets the media type | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_media_type instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_media_type( | | LIBEWF_EXTERN int libewf_set_media_type( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t media_type ); | | uint8_t media_type ); | |
| | | | |
| /* Retrieves the media flags | | /* Retrieves the media flags | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_media_flags instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_media_flags( | | LIBEWF_EXTERN int libewf_get_media_flags( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *media_flags ); | | uint8_t *media_flags ); | |
| | | | |
| /* Sets the media flags | | /* Sets the media flags | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_media_flags instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_media_flags( | | LIBEWF_EXTERN int libewf_set_media_flags( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t media_flags ); | | uint8_t media_flags ); | |
| | | | |
| /* Retrieves the volume type value | | /* Retrieves the volume type value | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_media_flags instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_volume_type( | | LIBEWF_EXTERN int libewf_get_volume_type( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *volume_type ); | | uint8_t *volume_type ); | |
| | | | |
| /* Sets the volume type | | /* Sets the volume type | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_media_flags instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_volume_type( | | LIBEWF_EXTERN int libewf_set_volume_type( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t volume_type ); | | uint8_t volume_type ); | |
| | | | |
| /* Retrieves the format type value | | /* Retrieves the format type value | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_format instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_format( | | LIBEWF_EXTERN int libewf_get_format( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *format ); | | uint8_t *format ); | |
| | | | |
| /* Sets the output format | | /* Sets the output format | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_format instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_format( | | LIBEWF_EXTERN int libewf_set_format( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t format ); | | uint8_t format ); | |
| | | | |
| /* Retrieves the GUID | | /* Retrieves the GUID | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_guid instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_guid( | | LIBEWF_EXTERN int libewf_get_guid( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *guid, | | uint8_t *guid, | |
| size_t size ); | | size_t size ); | |
| | | | |
| /* Sets the GUID | | /* Sets the GUID | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_guid instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_guid( | | LIBEWF_EXTERN int libewf_set_guid( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *guid, | | uint8_t *guid, | |
| size_t size ); | | size_t size ); | |
| | | | |
| /* Retrieves the MD5 hash | | /* Retrieves the MD5 hash | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_md5_hash instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_md5_hash( | | LIBEWF_EXTERN int libewf_get_md5_hash( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *md5_hash, | | uint8_t *md5_hash, | |
| size_t size ); | | size_t size ); | |
| | | | |
| /* Sets the MD5 hash | | /* Sets the MD5 hash | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_md5_hash instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_md5_hash( | | LIBEWF_EXTERN int libewf_set_md5_hash( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *md5_hash, | | uint8_t *md5_hash, | |
| size_t size ); | | size_t size ); | |
| | | | |
| /* Retrieves the SHA1 hash | | /* Retrieves the SHA1 hash | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_sha1_hash instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_sha1_hash( | | LIBEWF_EXTERN int libewf_get_sha1_hash( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *sha1_hash, | | uint8_t *sha1_hash, | |
| size_t size ); | | size_t size ); | |
| | | | |
| /* Sets the SHA1 hash | | /* Sets the SHA1 hash | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_sha1_hash instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_sha1_hash( | | LIBEWF_EXTERN int libewf_set_sha1_hash( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t *sha1_hash, | | uint8_t *sha1_hash, | |
| size_t size ); | | size_t size ); | |
| | | | |
| /* Retrieves the amount of chunks written | | /* Retrieves the amount of chunks written | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_write_amount_of_chunks | |
| | | instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_write_amount_of_chunks( | | LIBEWF_EXTERN int libewf_get_write_amount_of_chunks( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *amount_of_chunks ); | | uint32_t *amount_of_chunks ); | |
| | | | |
| /* Sets the read wipe chunk on error | | /* Sets the read wipe chunk on error | |
| * The chunk is not wiped if read raw is used | | * The chunk is not wiped if read raw is used | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_read_zero_chunk_on_err | |
| | | or instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_read_wipe_chunk_on_error( | | LIBEWF_EXTERN int libewf_set_read_wipe_chunk_on_error( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t wipe_on_error ); | | uint8_t wipe_on_error ); | |
| | | | |
| /* Copies the media values from the source to the destination handle | | /* Copies the media values from the source to the destination handle | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_copy_media_values instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_copy_media_values( | | LIBEWF_EXTERN int libewf_copy_media_values( | |
| libewf_handle_t *destination_handle, | | libewf_handle_t *destination_handle, | |
| libewf_handle_t *source_handle ); | | libewf_handle_t *source_handle ); | |
| | | | |
| /* Retrieves the amount of acquiry errors | | /* Retrieves the amount of acquiry errors | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_number_of_acquiry_erro | |
| | | rs instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_amount_of_acquiry_errors( | | LIBEWF_EXTERN int libewf_get_amount_of_acquiry_errors( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *amount_of_errors ); | | uint32_t *amount_of_errors ); | |
| | | | |
|
| /* Retrieves the information of an acquiry error | | /* Retrieves an acquiry error | |
| * Returns 1 if successful, 0 if no acquiry error could be found or -1 on e | | * Returns 1 if successful or -1 on error | |
| rror | | * | |
| | | * This function is deprecated use libewf_handle_get_acquiry_error instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_acquiry_error( | | LIBEWF_EXTERN int libewf_get_acquiry_error( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t index, | | uint32_t index, | |
| off64_t *first_sector, | | off64_t *first_sector, | |
| uint32_t *amount_of_sectors ); | | uint32_t *amount_of_sectors ); | |
| | | | |
| /* Add an acquiry error | | /* Add an acquiry error | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_append_acquiry_error inste | |
| | | ad | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_add_acquiry_error( | | LIBEWF_EXTERN int libewf_add_acquiry_error( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| off64_t first_sector, | | off64_t first_sector, | |
| uint32_t amount_of_sectors ); | | uint32_t amount_of_sectors ); | |
| | | | |
|
| /* Retrieves the amount of CRC errors | | /* Retrieves the amount of checksum errors | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_number_of_checksum_err | |
| | | ors instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_amount_of_crc_errors( | | LIBEWF_EXTERN int libewf_get_amount_of_crc_errors( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *amount_of_errors ); | | uint32_t *amount_of_errors ); | |
| | | | |
|
| /* Retrieves the information of a CRC error | | /* Retrieves a checksum error | |
| * Returns 1 if successful, 0 if no CRC error could be found or -1 on error | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function is deprecated use libewf_handle_get_checksum_error instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_crc_error( | | LIBEWF_EXTERN int libewf_get_crc_error( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t index, | | uint32_t index, | |
| off64_t *first_sector, | | off64_t *first_sector, | |
| uint32_t *amount_of_sectors ); | | uint32_t *amount_of_sectors ); | |
| | | | |
|
| /* Add a CRC error | | /* Add a checksum error | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_append_checksum_error inst | |
| | | ead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_add_crc_error( | | LIBEWF_EXTERN int libewf_add_crc_error( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| off64_t first_sector, | | off64_t first_sector, | |
| uint32_t amount_of_sectors ); | | uint32_t amount_of_sectors ); | |
| | | | |
| /* Retrieves the amount of sessions | | /* Retrieves the amount of sessions | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_number_of_sessions ins | |
| | | tead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_amount_of_sessions( | | LIBEWF_EXTERN int libewf_get_amount_of_sessions( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *amount_of_sessions ); | | uint32_t *amount_of_sessions ); | |
| | | | |
|
| /* Retrieves the information of a session | | /* Retrieves a session | |
| * Returns 1 if successful, 0 if no sessions could be found or -1 on error | | * Returns 1 if successful or -1 on error | |
| | | * | |
| | | * This function is deprecated use libewf_handle_get_session instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_session( | | LIBEWF_EXTERN int libewf_get_session( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t index, | | uint32_t index, | |
| off64_t *first_sector, | | off64_t *first_sector, | |
| uint32_t *amount_of_sectors ); | | uint32_t *amount_of_sectors ); | |
| | | | |
| /* Add a session | | /* Add a session | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_append_session instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_add_session( | | LIBEWF_EXTERN int libewf_add_session( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| off64_t first_sector, | | off64_t first_sector, | |
| uint32_t amount_of_sectors ); | | uint32_t amount_of_sectors ); | |
| | | | |
| /* Retrieves the header codepage | | /* Retrieves the header codepage | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_header_codepage instea | |
| | | d | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_header_codepage( | | LIBEWF_EXTERN int libewf_get_header_codepage( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| int *header_codepage ); | | int *header_codepage ); | |
| | | | |
| /* Sets the header codepage | | /* Sets the header codepage | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_header_codepage instea | |
| | | d | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_header_codepage( | | LIBEWF_EXTERN int libewf_set_header_codepage( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| int header_codepage ); | | int header_codepage ); | |
| | | | |
| /* Retrieves the amount of header values | | /* Retrieves the amount of header values | |
| * Returns 1 if successful, 0 if no header values are present or -1 on erro
r | | * Returns 1 if successful, 0 if no header values are present or -1 on erro
r | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_number_of_header_value | |
| | | s instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_amount_of_header_values( | | LIBEWF_EXTERN int libewf_get_amount_of_header_values( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *amount_of_values ); | | uint32_t *amount_of_values ); | |
| | | | |
| /* Retrieves the header value identifier size specified by its index | | /* Retrieves the header value identifier size specified by its index | |
| * The identifier size includes the end of string character | | * The identifier size includes the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_header_value_identifie | |
| | | r_size instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_header_value_identifier_size( | | LIBEWF_EXTERN int libewf_get_header_value_identifier_size( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t index, | | uint32_t index, | |
| size_t *identifier_size ); | | size_t *identifier_size ); | |
| | | | |
| /* Retrieves the header value identifier specified by its index | | /* Retrieves the header value identifier specified by its index | |
| * The strings are encoded in UTF-8 | | * The strings are encoded in UTF-8 | |
| * The identifier size should include the end of string character | | * The identifier size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_header_value_identifie | |
| | | r instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_header_value_identifier( | | LIBEWF_EXTERN int libewf_get_header_value_identifier( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t index, | | uint32_t index, | |
| char *identifier, | | char *identifier, | |
| size_t identifier_size ); | | size_t identifier_size ); | |
| | | | |
| /* Retrieves the header value size specified by the identifier | | /* Retrieves the header value size specified by the identifier | |
| * The value size includes the end of string character | | * The value size includes the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_header_value_size inst | |
| | | ead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_header_value_size( | | LIBEWF_EXTERN int libewf_get_header_value_size( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const char *identifier, | | const char *identifier, | |
| size_t *value_size ); | | size_t *value_size ); | |
| | | | |
| /* Retrieves the header value specified by the identifier | | /* Retrieves the header value specified by the identifier | |
| * The strings are encoded in UTF-8 | | * The strings are encoded in UTF-8 | |
| * The value size should include the end of string character | | * The value size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_header_value instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_header_value( | | LIBEWF_EXTERN int libewf_get_header_value( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const char *identifier, | | const char *identifier, | |
| char *value, | | char *value, | |
| size_t value_size ); | | size_t value_size ); | |
| | | | |
| /* Retrieves the header value case number | | /* Retrieves the header value case number | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
| #define libewf_get_header_value_case_number( handle, value, value_size ) \ | | #define libewf_get_header_value_case_number( handle, value, value_size ) \ | |
| | | | |
| skipping to change at line 1326 | | skipping to change at line 3190 | |
| #define libewf_get_header_value_evidence_number( handle, value, value_size
) \ | | #define libewf_get_header_value_evidence_number( handle, value, value_size
) \ | |
| libewf_get_header_value( handle, "evidence_number", value, value_si
ze ) | | libewf_get_header_value( handle, "evidence_number", value, value_si
ze ) | |
| | | | |
| /* Retrieves the header value notes | | /* Retrieves the header value notes | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
| #define libewf_get_header_value_notes( handle, value, value_size ) \ | | #define libewf_get_header_value_notes( handle, value, value_size ) \ | |
| libewf_get_header_value( handle, "notes", value, value_size ) | | libewf_get_header_value( handle, "notes", value, value_size ) | |
| | | | |
| /* Retrieves the header value acquiry date | | /* Retrieves the header value acquiry date | |
|
| * The string is formatted according to the date format | | * The string is encoded according to the date format | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
| #define libewf_get_header_value_acquiry_date( handle, value, value_size ) \ | | #define libewf_get_header_value_acquiry_date( handle, value, value_size ) \ | |
| libewf_get_header_value( handle, "acquiry_date", value, value_size
) | | libewf_get_header_value( handle, "acquiry_date", value, value_size
) | |
| | | | |
| /* Retrieves the header value system date | | /* Retrieves the header value system date | |
|
| * The string is formatted according to the date format | | * The string is encoded according to the date format | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
| #define libewf_get_header_value_system_date( handle, value, value_size ) \ | | #define libewf_get_header_value_system_date( handle, value, value_size ) \ | |
| libewf_get_header_value( handle, "system_date", value, value_size ) | | libewf_get_header_value( handle, "system_date", value, value_size ) | |
| | | | |
| /* Retrieves the header value acquiry operating system | | /* Retrieves the header value acquiry operating system | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
| #define libewf_get_header_value_acquiry_operating_system( handle, value, va
lue_size ) \ | | #define libewf_get_header_value_acquiry_operating_system( handle, value, va
lue_size ) \ | |
| libewf_get_header_value( handle, "acquiry_operating_system", value,
value_size ) | | libewf_get_header_value( handle, "acquiry_operating_system", value,
value_size ) | |
| | | | |
| skipping to change at line 1378 | | skipping to change at line 3242 | |
| | | | |
| /* Retrieves the header value serial number | | /* Retrieves the header value serial number | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
| #define libewf_get_header_value_serial_number( handle, value, value_size )
\ | | #define libewf_get_header_value_serial_number( handle, value, value_size )
\ | |
| libewf_get_header_value( handle, "serial_number", value, value_size
) | | libewf_get_header_value( handle, "serial_number", value, value_size
) | |
| | | | |
| /* Sets the header value specified by the identifier | | /* Sets the header value specified by the identifier | |
| * The strings are encoded in UTF-8 | | * The strings are encoded in UTF-8 | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_header_value instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_header_value( | | LIBEWF_EXTERN int libewf_set_header_value( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const char *identifier, | | const char *identifier, | |
| const char *value, | | const char *value, | |
| size_t value_length ); | | size_t value_length ); | |
| | | | |
| /* Sets the header value case number | | /* Sets the header value case number | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
| #define libewf_set_header_value_case_number( handle, value, value_length )
\ | | #define libewf_set_header_value_case_number( handle, value, value_length )
\ | |
| | | | |
| skipping to change at line 1466 | | skipping to change at line 3333 | |
| | | | |
| /* Sets the header value serial number | | /* Sets the header value serial number | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
| #define libewf_set_header_value_serial_number( handle, value, value_length
) \ | | #define libewf_set_header_value_serial_number( handle, value, value_length
) \ | |
| libewf_set_header_value( handle, "serial_number", value, value_leng
th ) | | libewf_set_header_value( handle, "serial_number", value, value_leng
th ) | |
| | | | |
| /* Parses the header values from the xheader, header2 or header section | | /* Parses the header values from the xheader, header2 or header section | |
| * Will parse the first available header in order mentioned above | | * Will parse the first available header in order mentioned above | |
| * Returns 1 if successful, 0 if already parsed or -1 on error | | * Returns 1 if successful, 0 if already parsed or -1 on error | |
|
| | | * | |
| | | * This function is deprecated and no longer required | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_parse_header_values( | | LIBEWF_EXTERN int libewf_parse_header_values( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint8_t date_format ); | | uint8_t date_format ); | |
| | | | |
| /* Copies the header values from the source to the destination handle | | /* Copies the header values from the source to the destination handle | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_copy_header_values instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_copy_header_values( | | LIBEWF_EXTERN int libewf_copy_header_values( | |
| libewf_handle_t *destination_handle, | | libewf_handle_t *destination_handle, | |
| libewf_handle_t *source_handle ); | | libewf_handle_t *source_handle ); | |
| | | | |
| /* Retrieves the amount of hash values | | /* Retrieves the amount of hash values | |
| * Returns 1 if successful, 0 if no hash values are present or -1 on error | | * Returns 1 if successful, 0 if no hash values are present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_number_of_hash_values | |
| | | instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_amount_of_hash_values( | | LIBEWF_EXTERN int libewf_get_amount_of_hash_values( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t *amount_of_values ); | | uint32_t *amount_of_values ); | |
| | | | |
| /* Retrieves the hash value identifier size specified by its index | | /* Retrieves the hash value identifier size specified by its index | |
| * The identifier size includes the end of string character | | * The identifier size includes the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_hash_value_identifier_ | |
| | | size instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_hash_value_identifier_size( | | LIBEWF_EXTERN int libewf_get_hash_value_identifier_size( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t index, | | uint32_t index, | |
| size_t *identifier_size ); | | size_t *identifier_size ); | |
| | | | |
| /* Retrieves the hash value identifier specified by its index | | /* Retrieves the hash value identifier specified by its index | |
| * The strings are encoded in UTF-8 | | * The strings are encoded in UTF-8 | |
| * The identifier size should include the end of string character | | * The identifier size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_hash_value_identifier | |
| | | instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_hash_value_identifier( | | LIBEWF_EXTERN int libewf_get_hash_value_identifier( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| uint32_t index, | | uint32_t index, | |
| char *identifier, | | char *identifier, | |
| size_t identifier_size ); | | size_t identifier_size ); | |
| | | | |
| /* Retrieves the hash value size specified by the identifier | | /* Retrieves the hash value size specified by the identifier | |
| * The value size includes the end of string character | | * The value size includes the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_hash_value_size instea | |
| | | d | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_hash_value_size( | | LIBEWF_EXTERN int libewf_get_hash_value_size( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const char *identifier, | | const char *identifier, | |
| size_t *value_size ); | | size_t *value_size ); | |
| | | | |
| /* Retrieves the hash value specified by the identifier | | /* Retrieves the hash value specified by the identifier | |
| * The strings are encoded in UTF-8 | | * The strings are encoded in UTF-8 | |
| * The value size should include the end of string character | | * The value size should include the end of string character | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_get_hash_value instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_get_hash_value( | | LIBEWF_EXTERN int libewf_get_hash_value( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const char *identifier, | | const char *identifier, | |
| char *value, | | char *value, | |
| size_t value_size ); | | size_t value_size ); | |
| | | | |
| /* Retrieves the hash value MD5 | | /* Retrieves the hash value MD5 | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
| #define libewf_get_hash_value_md5( handle, value, value_size ) \ | | #define libewf_get_hash_value_md5( handle, value, value_size ) \ | |
| | | | |
| skipping to change at line 1540 | | skipping to change at line 3428 | |
| | | | |
| /* Retrieves the hash value SHA1 | | /* Retrieves the hash value SHA1 | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | * Returns 1 if successful, 0 if value not present or -1 on error | |
| */ | | */ | |
| #define libewf_get_hash_value_sha1( handle, value, value_size ) \ | | #define libewf_get_hash_value_sha1( handle, value, value_size ) \ | |
| libewf_get_hash_value( handle, "SHA1", value, value_size ) | | libewf_get_hash_value( handle, "SHA1", value, value_size ) | |
| | | | |
| /* Sets the hash value specified by the identifier | | /* Sets the hash value specified by the identifier | |
| * The strings are encoded in UTF-8 | | * The strings are encoded in UTF-8 | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
|
| | | * | |
| | | * This function is deprecated use libewf_handle_set_hash_value instead | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_set_hash_value( | | LIBEWF_EXTERN int libewf_set_hash_value( | |
| libewf_handle_t *handle, | | libewf_handle_t *handle, | |
| const char *identifier, | | const char *identifier, | |
| const char *value, | | const char *value, | |
| size_t value_length ); | | size_t value_length ); | |
| | | | |
| /* Sets the hash value MD5 | | /* Sets the hash value MD5 | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
| #define libewf_set_hash_value_md5( handle, value, value_length ) \ | | #define libewf_set_hash_value_md5( handle, value, value_length ) \ | |
| libewf_set_hash_value( handle, "MD5", value, value_length ) | | libewf_set_hash_value( handle, "MD5", value, value_length ) | |
| | | | |
| /* Sets the hash value SHA1 | | /* Sets the hash value SHA1 | |
| * Returns 1 if successful or -1 on error | | * Returns 1 if successful or -1 on error | |
| */ | | */ | |
| #define libewf_set_hash_value_sha1( handle, value, value_length ) \ | | #define libewf_set_hash_value_sha1( handle, value, value_length ) \ | |
| libewf_set_hash_value( handle, "SHA1", value, value_length ) | | libewf_set_hash_value( handle, "SHA1", value, value_length ) | |
| | | | |
| /* Parses the hash values from the xhash section | | /* Parses the hash values from the xhash section | |
| * Returns 1 if successful, 0 if already parsed or -1 on error | | * Returns 1 if successful, 0 if already parsed or -1 on error | |
|
| | | * | |
| | | * This function is deprecated and no longer required | |
| */ | | */ | |
|
| | | LIBEWF_DEPRECATED \ | |
| LIBEWF_EXTERN int libewf_parse_hash_values( | | LIBEWF_EXTERN int libewf_parse_hash_values( | |
| libewf_handle_t *handle ); | | libewf_handle_t *handle ); | |
| | | | |
|
| #endif | | #endif /* defined( HAVE_V1_API ) */ | |
| | | | |
| /* ------------------------------------------------------------------------ | | | |
| - | | | |
| * Meta data functions (APIv2) | | | |
| * ------------------------------------------------------------------------ | | | |
| - */ | | | |
| | | | |
| #if 0 || defined( HAVE_V2_API ) | | | |
| | | | |
| /* Retrieves the amount of sectors per chunk from the media information | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_sectors_per_chunk( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t *sectors_per_chunk, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the amount of sectors per chunk in the media information | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_sectors_per_chunk( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t sectors_per_chunk, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the amount of bytes per sector from the media information | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_bytes_per_sector( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t *bytes_per_sector, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the amount of bytes per sector in the media information | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_bytes_per_sector( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t bytes_per_sector, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the amount of sectors from the media information | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_amount_of_sectors( | | | |
| libewf_handle_t *handle, | | | |
| uint64_t *amount_of_sectors, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the chunk size from the media information | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_chunk_size( | | | |
| libewf_handle_t *handle, | | | |
| size32_t *chunk_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the error granularity from the media information | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_error_granularity( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t *error_granularity, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the error granularity | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_error_granularity( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t error_granularity, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the compression values | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_compression_values( | | | |
| libewf_handle_t *handle, | | | |
| int8_t *compression_level, | | | |
| uint8_t *compression_flags, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the compression values | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_compression_values( | | | |
| libewf_handle_t *handle, | | | |
| int8_t compression_level, | | | |
| uint8_t compression_flags, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the size of the contained media data | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_media_size( | | | |
| libewf_handle_t *handle, | | | |
| size64_t *media_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the media size | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_media_size( | | | |
| libewf_handle_t *handle, | | | |
| size64_t media_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the media type value | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_media_type( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t *media_type, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the media type | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_media_type( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t media_type, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the media flags | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_media_flags( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t *media_flags, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the media flags | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_media_flags( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t media_flags, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the format type value | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_format( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t *format, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the output format | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_format( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t format, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the GUID | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_guid( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t *guid, | | | |
| size_t size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the GUID | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_guid( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t *guid, | | | |
| size_t size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the MD5 hash | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_md5_hash( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t *md5_hash, | | | |
| size_t size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the MD5 hash | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_md5_hash( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t *md5_hash, | | | |
| size_t size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the SHA1 hash | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_sha1_hash( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t *sha1_hash, | | | |
| size_t size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the SHA1 hash | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_sha1_hash( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t *sha1_hash, | | | |
| size_t size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the amount of chunks written | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_write_amount_of_chunks( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t *amount_of_chunks, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the read wipe chunk on error | | | |
| * The chunk is not wiped if read raw is used | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_read_wipe_chunk_on_error( | | | |
| libewf_handle_t *handle, | | | |
| uint8_t wipe_on_error, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Copies the media values from the source to the destination handle | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_copy_media_values( | | | |
| libewf_handle_t *destination_handle, | | | |
| libewf_handle_t *source_handle, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the amount of acquiry errors | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_amount_of_acquiry_errors( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t *amount_of_errors, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the information of an acquiry error | | | |
| * Returns 1 if successful, 0 if no acquiry error could be found or -1 on e | | | |
| rror | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_acquiry_error( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t index, | | | |
| uint64_t *first_sector, | | | |
| uint64_t *amount_of_sectors, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Add an acquiry error | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_add_acquiry_error( | | | |
| libewf_handle_t *handle, | | | |
| uint64_t first_sector, | | | |
| uint64_t amount_of_sectors, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the amount of CRC errors | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_amount_of_crc_errors( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t *amount_of_errors, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the information of a CRC error | | | |
| * Returns 1 if successful, 0 if no CRC error could be found or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_crc_error( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t index, | | | |
| uint64_t *first_sector, | | | |
| uint64_t *amount_of_sectors, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Add a CRC error | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_add_crc_error( | | | |
| libewf_handle_t *handle, | | | |
| uint64_t first_sector, | | | |
| uint64_t amount_of_sectors, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the amount of sessions | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_amount_of_sessions( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t *amount_of_sessions, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the information of a session | | | |
| * Returns 1 if successful, 0 if no sessions could be found or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_session( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t index, | | | |
| uint64_t *first_sector, | | | |
| uint64_t *amount_of_sectors, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Add a session | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_add_session( | | | |
| libewf_handle_t *handle, | | | |
| uint64_t first_sector, | | | |
| uint64_t amount_of_sectors, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the header codepage | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_header_codepage( | | | |
| libewf_handle_t *handle, | | | |
| int *header_codepage, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the header codepage | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_header_codepage( | | | |
| libewf_handle_t *handle, | | | |
| int header_codepage, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the header values date format | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_header_values_date_format( | | | |
| libewf_handle_t *handle, | | | |
| int *date_format, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the header values date format | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_header_values_date_format( | | | |
| libewf_handle_t *handle, | | | |
| int date_format, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the amount of header values | | | |
| * Returns 1 if successful, 0 if no header values are present or -1 on erro | | | |
| r | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_amount_of_header_values( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t *amount_of_values, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the header value identifier size specified by its index | | | |
| * The identifier size includes the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_header_value_identifier_size( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t index, | | | |
| size_t *identifier_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the header value identifier specified by its index | | | |
| * The strings are encoded in UTF-8 | | | |
| * The identifier size should include the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_header_value_identifier( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t index, | | | |
| uint8_t *identifier, | | | |
| size_t identifier_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the header value size specified by the identifier | | | |
| * The value size includes the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_header_value_size( | | | |
| libewf_handle_t *handle, | | | |
| const uint8_t *identifier, | | | |
| size_t identifier_length, | | | |
| size_t *value_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the header value specified by the identifier | | | |
| * The strings are encoded in UTF-8 | | | |
| * The value size should include the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_header_value( | | | |
| libewf_handle_t *handle, | | | |
| const uint8_t *identifier, | | | |
| size_t identifier_length, | | | |
| uint8_t *value, | | | |
| size_t value_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the header value case number | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_case_number( handle, value, value_si | | | |
| ze, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "case_number", | | | |
| 11, value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value description | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_description( handle, value, value_si | | | |
| ze, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "description", | | | |
| 11, value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value examiner name | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_examiner_name( handle, value, value_ | | | |
| size, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "examiner_name" | | | |
| , 13, value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value evidence number | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_evidence_number( handle, value, valu | | | |
| e_size, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "evidence_numbe | | | |
| r", 15, value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value notes | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_notes( handle, value, lengt, error ) | | | |
| \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "notes", 5, val | | | |
| ue, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value acquiry date | | | |
| * The string is formatted according to the date format | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_acquiry_date( handle, value, value_s | | | |
| ize, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "acquiry_date", | | | |
| 12, value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value system date | | | |
| * The string is formatted according to the date format | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_system_date( handle, value, value_si | | | |
| ze, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "system_date", | | | |
| 11, value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value acquiry operating system | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_acquiry_operating_system( handle, va | | | |
| lue, value_size, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "acquiry_operat | | | |
| ing_system", 24, value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value acquiry software version | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_acquiry_software_version( handle, va | | | |
| lue, value_size, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "acquiry_softwa | | | |
| re_version", 24, value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value password | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_password( handle, value, value_size, | | | |
| error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "password", 8, | | | |
| value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value compression type | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_compression_type( handle, value, val | | | |
| ue_size, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "compression_ty | | | |
| pe", 16, value, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value model | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_model( handle, value, value_size, er | | | |
| ror ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "model", 5, val | | | |
| ue, value_size, error ) | | | |
| | | | |
| /* Retrieves the header value serial number | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_header_value_serial_number( handle, value, value_ | | | |
| size, error ) \ | | | |
| libewf_handle_get_header_value( handle, (uint8_t *) "serial_number" | | | |
| , 13, value, value_size, error ) | | | |
| | | | |
| /* Sets the header value specified by the identifier | | | |
| * The strings are encoded in UTF-8 | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_header_value( | | | |
| libewf_handle_t *handle, | | | |
| const uint8_t *identifier, | | | |
| size_t identifier_length, | | | |
| const uint8_t *value, | | | |
| size_t value_length, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the header value case number | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_case_number( handle, value, value_le | | | |
| ngth, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "case_number", | | | |
| 11, value, value_length, error ) | | | |
| | | | |
| /* Sets the header value description | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_description( handle, value, value_le | | | |
| ngth, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "description", | | | |
| 11, value, value_length, error ) | | | |
| | | | |
| /* Sets the header value examiner name | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_examiner_name( handle, value, value_ | | | |
| length, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "examiner_name" | | | |
| , 13, value, value_length, error ) | | | |
| | | | |
| /* Sets the header value evidence number | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_evidence_number( handle, value, valu | | | |
| e_length, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "evidence_numbe | | | |
| r", 15, value, value_length, error ) | | | |
| | | | |
| /* Sets the header value notes | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_notes( handle, value, value_length, | | | |
| error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "notes", 5, val | | | |
| ue, value_length, error ) | | | |
| | | | |
| /* Sets the header value acquiry date | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_acquiry_date( handle, value, value_l | | | |
| ength, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "acquiry_date", | | | |
| 12, value, value_length, error ) | | | |
| | | | |
| /* Sets the header value system date | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_system_date( handle, value, value_le | | | |
| ngth, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "system_date", | | | |
| 11, value, value_length, error ) | | | |
| | | | |
| /* Sets the header value acquiry operating system | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_acquiry_operating_system( handle, va | | | |
| lue, value_length, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "acquiry_operat | | | |
| ing_system", 24, value, value_length, error ) | | | |
| | | | |
| /* Sets the header value acquiry software version | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_acquiry_software_version( handle, va | | | |
| lue, value_length, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "acquiry_softwa | | | |
| re_version", 24, value, value_length, error ) | | | |
| | | | |
| /* Sets the header value password | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_password( handle, value, value_lengt | | | |
| h, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "password", 8, | | | |
| value, value_length, error ) | | | |
| | | | |
| /* Sets the header value compression type | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_compression_type( handle, value, val | | | |
| ue_length, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "compression_ty | | | |
| pe", 16, value, value_length, error ) | | | |
| | | | |
| /* Sets the header value model | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_model( handle, value, value_length, | | | |
| error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "model", 5, val | | | |
| ue, value_length, error ) | | | |
| | | | |
| /* Sets the header value serial number | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_header_value_serial_number( handle, value, value_ | | | |
| length, error ) \ | | | |
| libewf_handle_set_header_value( handle, (uint8_t *) "serial_number" | | | |
| , 13, value, value_length, error ) | | | |
| | | | |
| /* Copies the header values from the source to the destination handle | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_copy_header_values( | | | |
| libewf_handle_t *destination_handle, | | | |
| libewf_handle_t *source_handle, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the amount of hash values | | | |
| * Returns 1 if successful, 0 if no hash values are present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_amount_of_hash_values( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t *amount_of_values, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the hash value identifier size specified by its index | | | |
| * The identifier size includes the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_hash_value_identifier_size( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t index, | | | |
| size_t *identifier_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the hash value identifier specified by its index | | | |
| * The strings are encoded in UTF-8 | | | |
| * The identifier size should include the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_hash_value_identifier( | | | |
| libewf_handle_t *handle, | | | |
| uint32_t index, | | | |
| uint8_t *identifier, | | | |
| size_t identifier_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the hash value size specified by the identifier | | | |
| * The value size includes the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_hash_value_size( | | | |
| libewf_handle_t *handle, | | | |
| const uint8_t *identifier, | | | |
| size_t identifier_length, | | | |
| size_t *value_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the hash value specified by the identifier | | | |
| * The strings are encoded in UTF-8 | | | |
| * The value size should include the end of string character | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_get_hash_value( | | | |
| libewf_handle_t *handle, | | | |
| const uint8_t *identifier, | | | |
| size_t identifier_length, | | | |
| uint8_t *value, | | | |
| size_t value_size, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Retrieves the hash value MD5 | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_hash_value_md5( handle, value, value_size, error | | | |
| ) \ | | | |
| libewf_handle_get_hash_value( handle, "MD5", 3, value, value_size, | | | |
| error ) | | | |
| | | | |
| /* Retrieves the hash value SHA1 | | | |
| * Returns 1 if successful, 0 if value not present or -1 on error | | | |
| */ | | | |
| #define libewf_handle_get_hash_value_sha1( handle, value, value_size, error | | | |
| ) \ | | | |
| libewf_handle_get_hash_value( handle, "SHA1", 4, value, value_size, | | | |
| error ) | | | |
| | | | |
| /* Sets the hash value specified by the identifier | | | |
| * The strings are encoded in UTF-8 | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| LIBEWF_EXTERN int libewf_handle_set_hash_value( | | | |
| libewf_handle_t *handle, | | | |
| const uint8_t *identifier, | | | |
| size_t identifier_length, | | | |
| const uint8_t *value, | | | |
| size_t value_length, | | | |
| libewf_error_t **error ); | | | |
| | | | |
| /* Sets the hash value MD5 | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_hash_value_md5( handle, value, value_length, erro | | | |
| r ) \ | | | |
| libewf_handle_set_hash_value( handle, "MD5", 3, value, value_length | | | |
| , error ) | | | |
| | | | |
| /* Sets the hash value SHA1 | | | |
| * Returns 1 if successful or -1 on error | | | |
| */ | | | |
| #define libewf_handle_set_hash_value_sha1( handle, value, value_length, err | | | |
| or ) \ | | | |
| libewf_handle_set_hash_value( handle, "SHA1", 4, value, value_lengt | | | |
| h, error ) | | | |
| | | | |
| #endif | | | |
| | | | |
| #ifdef __cplusplus | | #ifdef __cplusplus | |
| } | | } | |
| #endif | | #endif | |
| | | | |
|
| #endif | | #endif /* !defined( _LIBEWF_H ) */ | |
| | | | |
End of changes. 322 change blocks. |
| 1290 lines changed or deleted | | 2656 lines changed or added | |
|