1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
|
/*
* Imaging handle
*
* Copyright (c) 2006-2014, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* 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
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined( _IMAGING_HANDLE_H )
#define _IMAGING_HANDLE_H
#include <common.h>
#include <file_stream.h>
#include <types.h>
#include "ewftools_libcerror.h"
#include "ewftools_libcstring.h"
#include "ewftools_libewf.h"
#include "ewftools_libhmac.h"
#include "storage_media_buffer.h"
#if defined( __cplusplus )
extern "C" {
#endif
typedef struct imaging_handle imaging_handle_t;
struct imaging_handle
{
/* The user input buffer
*/
libcstring_system_character_t *input_buffer;
/* The target filename
*/
libcstring_system_character_t *target_filename;
/* The target filename size
*/
size_t target_filename_size;
/* The secondary target filename
*/
libcstring_system_character_t *secondary_target_filename;
/* The secondary target filename size
*/
size_t secondary_target_filename_size;
/* The header codepage
*/
int header_codepage;
/* The case number
*/
libcstring_system_character_t *case_number;
/* The case number size
*/
size_t case_number_size;
/* The description
*/
libcstring_system_character_t *description;
/* The description size
*/
size_t description_size;
/* The evidence number
*/
libcstring_system_character_t *evidence_number;
/* The evidence number size
*/
size_t evidence_number_size;
/* The examiner name
*/
libcstring_system_character_t *examiner_name;
/* The examiner name size
*/
size_t examiner_name_size;
/* The notes
*/
libcstring_system_character_t *notes;
/* The notes size
*/
size_t notes_size;
/* The compression method
*/
uint16_t compression_method;
/* The compression level
*/
int8_t compression_level;
/* The compression flags
*/
uint8_t compression_flags;
/* The EWF format
*/
uint8_t ewf_format;
/* The media type
*/
uint8_t media_type;
/* The media flags
*/
uint8_t media_flags;
/* The number of bytes per sector
*/
uint32_t bytes_per_sector;
/* The number of sectors per chunk
*/
uint32_t sectors_per_chunk;
/* The error granularity number of sectors
*/
uint32_t sector_error_granularity;
/* The maximum segment size
*/
size64_t maximum_segment_size;
/* The acquiry offset
*/
uint64_t acquiry_offset;
/* The acquiry size
*/
uint64_t acquiry_size;
/* Value to indicate if the MD5 digest hash should be calculated
*/
uint8_t calculate_md5;
/* The MD5 digest context
*/
libhmac_md5_context_t *md5_context;
/* Value to indicate the MD5 digest context was initialized
*/
uint8_t md5_context_initialized;
/* The calculated MD5 digest hash string
*/
libcstring_system_character_t *calculated_md5_hash_string;
/* Value to indicate if the SHA1 digest hash should be calculated
*/
uint8_t calculate_sha1;
/* The SHA1 digest context
*/
libhmac_sha1_context_t *sha1_context;
/* Value to indicate the SHA1 digest context was initialized
*/
uint8_t sha1_context_initialized;
/* The calculated SHA1 digest hash string
*/
libcstring_system_character_t *calculated_sha1_hash_string;
/* Value to indicate if the SHA256 digest hash should be calculated
*/
uint8_t calculate_sha256;
/* The SHA256 digest context
*/
libhmac_sha256_context_t *sha256_context;
/* Value to indicate the SHA256 digest context was initialized
*/
uint8_t sha256_context_initialized;
/* Value to indicate if the chunk data instead of the buffered read and write functions should be used
*/
uint8_t use_chunk_data_functions;
/* The calculated SHA256 digest hash string
*/
libcstring_system_character_t *calculated_sha256_hash_string;
/* The libewf output handle
*/
libewf_handle_t *output_handle;
/* The secondary libewf output handle
*/
libewf_handle_t *secondary_output_handle;
/* The input media size
*/
size64_t input_media_size;
/* The process buffer size
*/
size_t process_buffer_size;
/* The nofication output stream
*/
FILE *notify_stream;
/* Value to indicate if abort was signalled
*/
int abort;
};
int imaging_handle_initialize(
imaging_handle_t **imaging_handle,
uint8_t calculate_md5,
uint8_t use_chunk_data_functions,
libcerror_error_t **error );
int imaging_handle_free(
imaging_handle_t **imaging_handle,
libcerror_error_t **error );
int imaging_handle_signal_abort(
imaging_handle_t *imaging_handle,
libcerror_error_t **error );
int imaging_handle_open_output(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *filename,
uint8_t resume,
libcerror_error_t **error );
int imaging_handle_open_secondary_output(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *filename,
uint8_t resume,
libcerror_error_t **error );
int imaging_handle_close(
imaging_handle_t *imaging_handle,
libcerror_error_t **error );
ssize_t imaging_handle_prepare_read_buffer(
imaging_handle_t *imaging_handle,
storage_media_buffer_t *storage_media_buffer,
libcerror_error_t **error );
ssize_t imaging_handle_read_buffer(
imaging_handle_t *imaging_handle,
storage_media_buffer_t *storage_media_buffer,
size_t read_size,
libcerror_error_t **error );
ssize_t imaging_handle_prepare_write_buffer(
imaging_handle_t *imaging_handle,
storage_media_buffer_t *storage_media_buffer,
libcerror_error_t **error );
ssize_t imaging_handle_write_buffer(
imaging_handle_t *imaging_handle,
storage_media_buffer_t *storage_media_buffer,
size_t write_size,
libcerror_error_t **error );
off64_t imaging_handle_seek_offset(
imaging_handle_t *imaging_handle,
off64_t offset,
libcerror_error_t **error );
int imaging_handle_get_offset(
imaging_handle_t *imaging_handle,
off64_t *offset,
libcerror_error_t **error );
int imaging_handle_swap_byte_pairs(
imaging_handle_t *imaging_handle,
storage_media_buffer_t *storage_media_buffer,
size_t read_size,
libcerror_error_t **error );
int imaging_handle_initialize_integrity_hash(
imaging_handle_t *imaging_handle,
libcerror_error_t **error );
int imaging_handle_update_integrity_hash(
imaging_handle_t *imaging_handle,
uint8_t *buffer,
size_t buffer_size,
libcerror_error_t **error );
int imaging_handle_finalize_integrity_hash(
imaging_handle_t *imaging_handle,
libcerror_error_t **error );
int imaging_handle_get_chunk_size(
imaging_handle_t *imaging_handle,
size32_t *chunk_size,
libcerror_error_t **error );
int imaging_handle_prompt_for_string(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcstring_system_character_t **internal_string,
size_t *internal_string_size,
libcerror_error_t **error );
int imaging_handle_prompt_for_compression_method(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_compression_level(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_format(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_media_type(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_media_flags(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_bytes_per_sector(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_sectors_per_chunk(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_sector_error_granularity(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_maximum_segment_size(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_acquiry_offset(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_prompt_for_acquiry_size(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *request_string,
libcerror_error_t **error );
int imaging_handle_get_output_values(
imaging_handle_t *imaging_handle,
libcerror_error_t **error );
int imaging_handle_set_string(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcstring_system_character_t **internal_string,
size_t *internal_string_size,
libcerror_error_t **error );
int imaging_handle_set_compression_values(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_format(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_media_type(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_media_flags(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_bytes_per_sector(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_sectors_per_chunk(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_sector_error_granularity(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_maximum_segment_size(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_acquiry_offset(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_acquiry_size(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_header_codepage(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_process_buffer_size(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_additional_digest_types(
imaging_handle_t *imaging_handle,
const libcstring_system_character_t *string,
libcerror_error_t **error );
int imaging_handle_set_output_values(
imaging_handle_t *imaging_handle,
libcstring_system_character_t *acquiry_software,
libcstring_system_character_t *acquiry_software_version,
libcstring_system_character_t *model,
libcstring_system_character_t *serial_number,
libcerror_error_t **error );
int imaging_handle_get_header_value(
imaging_handle_t *imaging_handle,
const uint8_t *identifier,
size_t identifier_size,
libcstring_system_character_t **header_value,
size_t *header_value_size,
libcerror_error_t **error );
int imaging_handle_set_header_value(
imaging_handle_t *imaging_handle,
const uint8_t *identifier,
size_t identifier_length,
const libcstring_system_character_t *header_value,
libcerror_error_t **error );
int imaging_handle_set_hash_value(
imaging_handle_t *imaging_handle,
char *hash_value_identifier,
size_t hash_value_identifier_length,
libcstring_system_character_t *hash_value,
size_t hash_value_length,
libcerror_error_t **error );
int imaging_handle_append_read_error(
imaging_handle_t *imaging_handle,
off64_t start_offset,
size64_t number_of_bytes,
libcerror_error_t **error );
int imaging_handle_append_session(
imaging_handle_t *imaging_handle,
uint64_t start_sector,
uint64_t number_of_sectors,
libcerror_error_t **error );
int imaging_handle_append_track(
imaging_handle_t *imaging_handle,
uint64_t start_sector,
uint64_t number_of_sectors,
libcerror_error_t **error );
ssize_t imaging_handle_finalize(
imaging_handle_t *imaging_handle,
libcerror_error_t **error );
int imaging_handle_print_parameters(
imaging_handle_t *imaging_handle,
off64_t resume_acquiry_offset,
uint8_t read_error_retries,
uint8_t zero_block_on_read_error,
uint8_t resume_acquiry,
libcerror_error_t **error );
int imaging_handle_print_hashes(
imaging_handle_t *imaging_handle,
FILE *stream,
libcerror_error_t **error );
#if defined( __cplusplus )
}
#endif
#endif
|