100 const uint8_t *data, uint8_t sector_status, uint32_t length)
102 TRACE(
"Entering aaruf_write_sector(%p, %" PRIu64
", %d, %p, %u, %u)", context, sector_address, negative, data,
103 sector_status, length);
108 FATAL(
"Invalid context");
110 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
119 FATAL(
"Invalid context");
121 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
128 FATAL(
"Trying to write a read-only image");
130 TRACE(
"Exiting aaruf_write_sector() = AARUF_READ_ONLY");
136 FATAL(
"Sector address out of bounds");
138 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
144 FATAL(
"Sector address out of bounds");
146 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
150 if(length > USHRT_MAX)
152 FATAL(
"Sector length too large");
154 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INVALID_SECTOR_LENGTH");
162 if(sector_address <= ctx->last_written_block)
206 !negative && sector_address <= ctx->image_info.Sectors && !ctx->
writing_long)
215 TRACE(
"Closing current block before writing new data");
220 FATAL(
"Error closing current block: %d", error);
222 TRACE(
"Exiting aaruf_write_sector() = %d", error);
227 uint64_t ddt_entry = 0;
233 TRACE(
"Hashing sector data for deduplication");
234 uint64_t hash = XXH3_64bits(data, length);
238 TRACE(
"Block does %s exist in deduplication map", existing ?
"already" :
"not yet");
241 sector_status, &ddt_entry);
244 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_CANNOT_SET_DDT_ENTRY");
250 TRACE(
"Sector exists, so not writing to image");
251 TRACE(
"Exiting aaruf_write_sector() = AARUF_STATUS_OK");
255 TRACE(
"Inserting sector hash into deduplication map, proceeding to write into image as normal");
260 sector_status, &ddt_entry);
264 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_CANNOT_SET_DDT_ENTRY");
271 TRACE(
"Creating new writing block");
281 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
323 uint32_t max_buffer_size =
325 TRACE(
"Setting max buffer size to %u bytes", max_buffer_size);
327 TRACE(
"Allocating memory for writing buffer");
331 FATAL(
"Could not allocate memory");
333 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
345 TRACE(
"Exiting aaruf_write_sector() = AARUF_STATUS_OK");
556 const uint8_t *data, uint8_t sector_status, uint32_t length)
558 TRACE(
"Entering aaruf_write_sector_long(%p, %" PRIu64
", %d, %p, %u, %u)", context, sector_address, negative, data,
559 sector_status, length);
564 FATAL(
"Invalid context");
566 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
575 FATAL(
"Invalid context");
577 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
584 FATAL(
"Trying to write a read-only image");
586 TRACE(
"Exiting aaruf_write_sector() = AARUF_READ_ONLY");
592 FATAL(
"Sector address out of bounds");
594 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
600 FATAL(
"Sector address out of bounds");
602 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
613 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
621 uint64_t corrected_sector_address = sector_address;
629 uint64_t total_sectors =
647 memcpy(ctx->
sector_id + corrected_sector_address * 4, data, 4);
648 memcpy(ctx->
sector_ied + corrected_sector_address * 2, data + 4, 2);
649 memcpy(ctx->
sector_cpr_mai + corrected_sector_address * 6, data + 6, 6);
650 memcpy(ctx->
sector_edc + corrected_sector_address * 4, data + 2060, 4);
652 return aaruf_write_sector(context, sector_address, negative, data + 12, sector_status, 2048);
657 FATAL(
"Incorrect sector size");
658 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INCORRECT_DATA_SIZE");
666 if(sector_address <= ctx->last_written_block)
692 if(ctx->
calculating_md5 && !negative && sector_address <= ctx->image_info.Sectors)
695 if(ctx->
calculating_sha1 && !negative && sector_address <= ctx->image_info.Sectors)
714 return aaruf_write_sector(context, sector_address, negative, data, sector_status, length);
726 FATAL(
"Could not allocate memory for CD sector prefix DDT");
728 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
742 FATAL(
"Could not allocate memory for CD sector prefix DDT");
744 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
757 FATAL(
"Could not allocate memory for CD sector prefix buffer");
759 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
773 FATAL(
"Could not allocate memory for CD sector suffix buffer");
775 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
782 for(
int i = 0; i < length; i++)
799 prefix_correct =
true;
801 if(data[0x00] != 0x00 || data[0x01] != 0xFF || data[0x02] != 0xFF || data[0x03] != 0xFF ||
802 data[0x04] != 0xFF || data[0x05] != 0xFF || data[0x06] != 0xFF || data[0x07] != 0xFF ||
803 data[0x08] != 0xFF || data[0x09] != 0xFF || data[0x0A] != 0xFF || data[0x0B] != 0x00 ||
805 prefix_correct =
false;
809 const int minute = (data[0x0C] >> 4) * 10 + (data[0x0C] & 0x0F);
810 const int second = (data[0x0D] >> 4) * 10 + (data[0x0D] & 0x0F);
811 const int frame = (data[0x0E] >> 4) * 10 + (data[0x0E] & 0x0F);
812 const int stored_lba = minute * 60 * 75 + second * 75 + frame - 150;
813 prefix_correct = stored_lba == sector_address;
835 FATAL(
"Could not allocate memory for CD sector prefix buffer");
837 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
865 FATAL(
"Could not allocate memory for CD sector suffix buffer");
867 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
888 FATAL(
"Could not allocate memory for CD sector prefix DDT");
890 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
904 FATAL(
"Could not allocate memory for CD sector prefix DDT");
906 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
919 FATAL(
"Could not allocate memory for CD sector prefix buffer");
921 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
935 FATAL(
"Could not allocate memory for CD sector suffix buffer");
937 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
944 for(
int i = 0; i < length; i++)
959 const bool form2 = (data[18] & 0x20) == 0x20 || (data[22] & 0x20) == 0x20;
961 prefix_correct =
true;
963 if(data[0x00] != 0x00 || data[0x01] != 0xFF || data[0x02] != 0xFF || data[0x03] != 0xFF ||
964 data[0x04] != 0xFF || data[0x05] != 0xFF || data[0x06] != 0xFF || data[0x07] != 0xFF ||
965 data[0x08] != 0xFF || data[0x09] != 0xFF || data[0x0A] != 0xFF || data[0x0B] != 0x00 ||
967 prefix_correct =
false;
971 const int minute = (data[0x0C] >> 4) * 10 + (data[0x0C] & 0x0F);
972 const int second = (data[0x0D] >> 4) * 10 + (data[0x0D] & 0x0F);
973 const int frame = (data[0x0E] >> 4) * 10 + (data[0x0E] & 0x0F);
974 const int stored_lba = minute * 60 * 75 + second * 75 + frame - 150;
975 prefix_correct = stored_lba == sector_address;
998 FATAL(
"Could not allocate memory for CD sector prefix buffer");
1000 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1015 FATAL(
"Could not allocate memory for CD mode 2 subheader buffer");
1017 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1026 memcpy(&edc, data + 0x92C,
sizeof(edc));
1027 const bool correct_edc = computed_edc == edc;
1053 FATAL(
"Could not allocate memory for CD sector suffix buffer");
1055 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1062 memcpy(ctx->
mode2_subheaders + corrected_sector_address * 8, data + 0x10, 8);
1076 memcpy(&edc, data + 0x818,
sizeof(edc));
1077 const bool correct_edc = computed_edc == edc;
1079 if(correct_ecc && correct_edc)
1098 FATAL(
"Could not allocate memory for CD sector suffix buffer");
1100 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1107 memcpy(ctx->
mode2_subheaders + corrected_sector_address * 8, data + 0x10, 8);
1112 context, sector_address, negative, data + 24,
1131 switch(length - 512)
1153 newTag = malloc(12);
1154 memcpy(newTag, data + 512, 12);
1166 newTag = malloc(20);
1167 memcpy(newTag, data + 512, 20);
1197 newTag = malloc(24);
1198 memcpy(newTag, data + 512, 24);
1214 FATAL(
"Incorrect sector size");
1215 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INCORRECT_DATA_SIZE");
1220 return aaruf_write_sector(context, sector_address, negative, data, sector_status, 512);
1229 FATAL(
"Could not allocate memory for sector subchannel DDT");
1233 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1238 memcpy(ctx->
sector_subchannel + sector_address * newTagSize, newTag, newTagSize);
1242 return aaruf_write_sector(context, sector_address, negative, data, sector_status, 512);
1248 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
1448 TRACE(
"Initializing CRC64 context");
1450 TRACE(
"Updating CRC64");
1455 uint8_t *cmp_buffer = NULL;
1463 if(cmp_buffer == NULL)
1465 FATAL(
"Could not allocate buffer for compressed data");
1474 const long remaining = current_samples % flac_block_size;
1482 flac_block_size,
true,
false,
"hamming", 12, 15,
true,
false, 0, 8,
"Aaru", 4);
1493 if(cmp_buffer == NULL)
1495 FATAL(
"Could not allocate buffer for compressed data");
1502 lzma_properties, &props_size, 9, ctx->
lzma_dict_size, 4, 0, 2, 273, 8);
1514 FATAL(
"Invalid compression type");
1529 TRACE(
"Adding block to index");
1537 TRACE(
"Block added to index at offset %" PRIu64, index_entry.
offset);
1837 const uint32_t length)
1839 TRACE(
"Entering aaruf_write_media_tag(%p, %p, %d, %d)", context, data, type, length);
1844 FATAL(
"Invalid context");
1846 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_ERROR_NOT_AARUFORMAT");
1855 FATAL(
"Invalid context");
1857 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_ERROR_NOT_AARUFORMAT");
1864 FATAL(
"Trying to write a read-only image");
1866 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_READ_ONLY");
1870 if(data == NULL || length == 0)
1872 FATAL(
"Invalid data or length");
1876 uint8_t *new_data = malloc(length);
1878 if(new_data == NULL)
1880 FATAL(
"Could not allocate memory for media tag");
1883 memcpy(new_data, data, length);
1888 if(media_tag == NULL)
1890 TRACE(
"Cannot allocate memory for media tag entry.");
1897 media_tag->
type = type;
1898 media_tag->
data = new_data;
1899 media_tag->
length = length;
1901 HASH_REPLACE_INT(ctx->
mediaTags, type, media_tag, old_media_tag);
1903 if(old_media_tag != NULL)
1905 TRACE(
"Replaced media tag with type %d", old_media_tag->
type);
1906 free(old_media_tag->
data);
1907 free(old_media_tag);
1908 old_media_tag = NULL;
1912 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_STATUS_OK");
2107 const uint8_t *data,
const size_t length,
const int32_t tag)
2109 TRACE(
"Entering aaruf_write_sector_tag(%p, %" PRIu64
", %d, %p, %zu, %d)", context, sector_address, negative, data,
2115 FATAL(
"Invalid context");
2117 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_AARUFORMAT");
2126 FATAL(
"Invalid context");
2128 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_AARUFORMAT");
2135 FATAL(
"Trying to write a read-only image");
2137 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_READ_ONLY");
2143 FATAL(
"Sector address out of bounds");
2145 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
2151 FATAL(
"Sector address out of bounds");
2153 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
2157 if(data == NULL || length == 0)
2159 FATAL(
"Invalid data or length");
2163 uint64_t corrected_sector_address = sector_address;
2171 const uint64_t total_sectors =
2179 FATAL(
"Invalid media type for tag");
2180 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2186 FATAL(
"Incorrect tag size");
2187 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2192 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
2196 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2200 FATAL(
"Track not found");
2205 FATAL(
"Invalid media type for tag");
2206 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2212 FATAL(
"Incorrect tag size");
2213 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2218 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
2222 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2226 FATAL(
"Track not found");
2231 FATAL(
"Invalid media type for tag");
2232 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2238 FATAL(
"Incorrect tag size");
2239 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2247 FATAL(
"Could not allocate memory for sector subchannel");
2249 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2255 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2260 FATAL(
"Invalid media type for tag");
2261 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2267 FATAL(
"Incorrect tag size");
2268 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2276 FATAL(
"Could not allocate memory for sector CPR/MAI");
2278 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2282 memcpy(ctx->
sector_cpr_mai + corrected_sector_address * 6, data, 1);
2284 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2289 FATAL(
"Invalid media type for tag");
2290 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2296 FATAL(
"Incorrect tag size");
2297 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2305 FATAL(
"Could not allocate memory for sector ID");
2307 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2311 memcpy(ctx->
sector_id + corrected_sector_address * 4, data, 1);
2312 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2317 FATAL(
"Invalid media type for tag");
2318 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2324 FATAL(
"Incorrect tag size");
2325 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2333 FATAL(
"Could not allocate memory for sector ID");
2335 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2339 memcpy(ctx->
sector_id + corrected_sector_address * 4 + 1, data, 3);
2341 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2346 FATAL(
"Invalid media type for tag");
2347 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2353 FATAL(
"Incorrect tag size");
2354 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2362 FATAL(
"Could not allocate memory for sector IED");
2364 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2368 memcpy(ctx->
sector_ied + corrected_sector_address * 2, data, 2);
2370 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2375 FATAL(
"Invalid media type for tag");
2376 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2382 FATAL(
"Incorrect tag size");
2383 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2391 FATAL(
"Could not allocate memory for sector EDC");
2393 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2397 memcpy(ctx->
sector_edc + corrected_sector_address * 4, data, 4);
2399 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2404 FATAL(
"Invalid media type for tag");
2405 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2411 FATAL(
"Incorrect tag size");
2412 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2420 FATAL(
"Could not allocate memory for sector decrypted title key");
2422 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2428 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2433 FATAL(
"Invalid media type for tag");
2434 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2440 FATAL(
"Incorrect tag size");
2441 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2449 FATAL(
"Could not allocate memory for Apple Sony tag");
2451 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2457 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2462 FATAL(
"Invalid media type for tag");
2463 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2469 FATAL(
"Incorrect tag size");
2470 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2478 FATAL(
"Could not allocate memory for Apple Profile tag");
2480 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2486 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2491 FATAL(
"Invalid media type for tag");
2492 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2498 FATAL(
"Incorrect tag size");
2499 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2507 FATAL(
"Could not allocate memory for Priam Data Tower tag");
2509 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2515 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2518 TRACE(
"Do not know how to write sector tag %d", tag);
#define MAX_FLAKE_BLOCK
FLAC maximum block size used for encoding audio sectors.
#define LZMA_PROPERTIES_LENGTH
Size in bytes of the fixed LZMA properties header (lc/lp/pb + dictionary size).
#define AARU_MAGIC
Magic identifier for AaruFormat container (ASCII "AARUFRMT").
#define MIN_FLAKE_BLOCK
FLAC minimum block size.
#define SAMPLES_PER_SECTOR
Red Book (CD‑DA) PCM samples per 2352‑byte sector: 44,100 Hz / 75 sectors per second = 588 samples.
int32_t aaruf_lzma_encode_buffer(uint8_t *dst_buffer, size_t *dst_size, const uint8_t *src_buffer, size_t src_size, uint8_t *out_props, size_t *out_props_size, int32_t level, uint32_t dict_size, int32_t lc, int32_t lp, int32_t pb, int32_t fb, int32_t num_threads)
Encodes a buffer using LZMA compression.
uint64_t aaruf_crc64_data(const uint8_t *data, uint32_t len)
size_t aaruf_flac_encode_redbook_buffer(uint8_t *dst_buffer, size_t dst_size, const uint8_t *src_buffer, size_t src_size, uint32_t blocksize, int32_t do_mid_side_stereo, int32_t loose_mid_side_stereo, const char *apodization, uint32_t max_lpc_order, uint32_t qlp_coeff_precision, int32_t do_qlp_coeff_prec_search, int32_t do_exhaustive_model_search, uint32_t min_residual_partition_order, uint32_t max_residual_partition_order, const char *application_id, uint32_t application_id_len)
Encodes a Red Book audio buffer to FLAC format.
int aaruf_crc64_update(crc64_ctx *ctx, const uint8_t *data, uint32_t len)
Updates the CRC64 context with new data.
void aaruf_crc64_free(crc64_ctx *ctx)
Frees a CRC64 context.
int aaruf_spamsum_update(spamsum_ctx *ctx, const uint8_t *data, uint32_t len)
Updates the spamsum context with new data.
crc64_ctx * aaruf_crc64_init()
Initializes a CRC64 context.
uint32_t aaruf_edc_cd_compute(void *context, uint32_t edc, const uint8_t *src, int size, int pos)
Computes the EDC (Error Detection Code) for a CD sector.
void aaruf_md5_update(md5_ctx *ctx, const void *data, unsigned long size)
void aaruf_sha256_update(sha256_ctx *ctx, const void *data, unsigned long size)
bool aaruf_ecc_cd_is_suffix_correct_mode2(void *context, const uint8_t *sector)
Checks if the suffix (EDC/ECC) of a CD sector is correct (Mode 2).
void aaruf_sha1_update(sha1_ctx *ctx, const void *data, unsigned long size)
int aaruf_crc64_final(crc64_ctx *ctx, uint64_t *crc)
Computes the final CRC64 value from the context.
bool aaruf_ecc_cd_is_suffix_correct(void *context, const uint8_t *sector)
Checks if the suffix (EDC/ECC) of a CD sector is correct (Mode 1).
@ DataBlock
Block containing data.
@ SectorStatusNotDumped
Sector(s) not yet acquired during image dumping.
@ SectorStatusMode2Form2NoCrc
Suffix matches MODE 2 Form 2 but CRC empty/missing.
@ SectorStatusMode1Correct
Valid MODE 1 data with regenerable suffix/prefix.
@ SectorStatusMode2Form2Ok
Suffix matches MODE 2 Form 2 with valid CRC.
@ SectorStatusErrored
Error during dumping; data may be incomplete or corrupt.
@ SectorStatusMode2Form1Ok
Suffix verified/regenerable for MODE 2 Form 1.
@ OpticalDisc
Purely optical discs.
@ BlockMedia
Media that is physically block-based or abstracted like that.
@ CdMode1
Compact Disc Mode 1 data track.
@ Data
Generic data track (not further specified).
@ CdMode2Form2
Compact Disc Mode 2 Form 2 data track.
@ CdMode2Form1
Compact Disc Mode 2 Form 1 data track.
@ CdMode2Formless
Compact Disc Mode 2 (formless) data track.
@ UserData
User (main) data.
#define AARUF_ERROR_CANNOT_WRITE_BLOCK_DATA
Failure writing block payload.
#define AARUF_STATUS_OK
Sector present and read without uncorrectable errors.
#define AARUF_READ_ONLY
Operation requires write mode but context is read-only.
#define AARUF_ERROR_INCORRECT_MEDIA_TYPE
Operation incompatible with image media type.
#define AARUF_ERROR_TRACK_NOT_FOUND
Referenced track number not present.
#define AARUF_ERROR_NOT_ENOUGH_MEMORY
Memory allocation failure (critical).
#define AARUF_ERROR_SECTOR_OUT_OF_BOUNDS
Requested logical sector outside media bounds.
#define AARUF_ERROR_INCORRECT_DATA_SIZE
Data size does not match expected size.
#define AARUF_ERROR_CANNOT_SET_DDT_ENTRY
Failed to encode/store a DDT entry (overflow or IO).
#define AARUF_ERROR_NOT_AARUFORMAT
Input file/stream failed magic or structural validation.
#define AARUF_ERROR_INVALID_TAG
Invalid or unsupported media or sector tag format.
#define AARUF_ERROR_INVALID_SECTOR_LENGTH
Sector length is too big.
#define AARUF_ERROR_CANNOT_WRITE_BLOCK_HEADER
Failure writing block header.
bool lookup_map(const hash_map_t *map, uint64_t key, uint64_t *out_value)
Looks up a value by key in the hash map.
bool insert_map(hash_map_t *map, uint64_t key, uint64_t value)
Inserts a key-value pair into the hash map.
bool set_ddt_entry_v2(aaruformat_context *ctx, uint64_t sector_address, bool negative, uint64_t offset, uint64_t block_offset, uint8_t sector_status, uint64_t *ddt_entry)
Sets a DDT v2 entry for a given sector address.
Structure definitions and conversion/serialization function declarations for Lisa family disk tags.
uint8_t * priam_tag_to_bytes(priam_tag tag)
Serialize a priam_tag into a newly allocated 24-byte big-endian on-disk representation.
priam_tag bytes_to_priam_tag(const uint8_t *bytes)
Parse a 24-byte Priam tag record into a priam_tag structure.
sony_tag profile_tag_to_sony(profile_tag tag)
Convert a profile_tag to a sony_tag.
uint8_t * sony_tag_to_bytes(sony_tag tag)
Serialize a sony_tag into a newly allocated 12-byte big-endian on-disk representation.
profile_tag priam_tag_to_profile(priam_tag tag)
Convert a priam_tag to a profile_tag.
uint8_t * profile_tag_to_bytes(profile_tag tag)
Serialize a profile_tag into a newly allocated 20-byte big-endian on-disk representation.
profile_tag sony_tag_to_profile(sony_tag tag)
Convert a sony_tag to a profile_tag representation.
sony_tag bytes_to_sony_tag(const uint8_t *bytes)
Parse a 12-byte Sony tag record into a sony_tag structure.
profile_tag bytes_to_profile_tag(const uint8_t *bytes)
Parse a 20-byte Profile tag record into a profile_tag structure.
priam_tag sony_tag_to_priam(sony_tag tag)
Convert a sony_tag to a priam_tag representation.
priam_tag profile_tag_to_priam(profile_tag tag)
Convert a profile_tag to a priam_tag.
sony_tag priam_tag_to_sony(priam_tag tag)
Convert a priam_tag to a sony_tag.
uint32_t MediaType
Media type identifier (see MediaType enum; 0=Unknown).
uint8_t MetadataMediaType
Media type for sidecar generation (internal archival use).
uint64_t Sectors
Total count of addressable logical sectors/blocks.
Single index entry describing a block's type, (optional) data classification, and file offset.
uint32_t blockType
Block identifier of the referenced block (value from BlockType).
uint64_t offset
Absolute byte offset in the image where the referenced block header begins.
uint16_t dataType
Data classification (value from DataType) or unused for untyped blocks.
Single optical disc track descriptor (sequence, type, LBAs, session, ISRC, flags).
uint8_t session
Session number (1-based). 1 for single-session discs.
uint8_t flags
Control / attribute bitfield (see file documentation for suggested bit mapping).
int64_t end
Inclusive ending LBA of the track.
uint8_t sequence
Track number (1..99 typical for CD audio/data). 0 may indicate placeholder/non-standard.
int64_t start
Inclusive starting LBA of the track.
uint8_t type
Track type (value from TrackType).
uint8_t isrc[13]
ISRC raw 13-byte code (no null terminator). All zeros if not present.
Master context representing an open or in‑creation Aaru image.
DdtHeader2 user_data_ddt_header
Active user data DDT v2 header (primary table meta).
bool dirty_checksum_block
True if checksum block should be written during close.
bool deduplicate
Storage deduplication active (duplicates coalesce).
size_t sector_suffix_length
Length of sector_suffix.
bool compression_enabled
True if block compression enabled (writing path).
uint64_t last_written_block
Last written block number (write path).
uint8_t * sector_cpr_mai
DVD sector CPR_MAI (6 bytes) if present.
bool dirty_media_tags
True if media tags should be written during close.
hash_map_t * sector_hash_map
Deduplication hash map (fingerprint->entry mapping).
sha256_ctx sha256_context
Opaque SHA-256 context for streaming updates.
bool calculating_sha256
True if whole-image SHA-256 being calculated on-the-fly.
uint8_t * sector_ied
DVD sector IED (2 bytes) if present.
md5_ctx md5_context
Opaque MD5 context for streaming updates.
bool dirty_sector_suffix_block
True if sector suffix block should be written during close.
uint8_t * sector_prefix
Raw per-sector prefix (e.g., sync+header) uncorrected.
bool dirty_dvd_title_key_decrypted_block
True if decrypted title key block should be written during close.
uint64_t * sector_suffix_ddt2
CD sector suffix DDT V2.
bool dirty_mode2_subheaders_block
True if MODE2 subheader block should be written during close.
uint8_t * sector_edc
DVD sector EDC (4 bytes) if present.
bool calculating_sha1
True if whole-image SHA-1 being calculated on-the-fly.
bool dirty_tracks_block
True if tracks block should be written during close.
CdEccContext * ecc_cd_context
CD ECC/EDC helper tables (allocated on demand).
bool rewinded
True if stream has been rewound after open (write path).
bool dirty_sector_prefix_block
True if sector prefix block should be written during close.
bool dirty_index_block
True if index block should be written during close.
uint8_t * sector_suffix
Raw per-sector suffix (EDC/ECC) uncorrected.
AaruHeaderV2 header
Parsed container header (v2).
int current_block_offset
Logical offset inside block (units: bytes or sectors depending on path).
bool is_writing
True if context opened/created for writing.
spamsum_ctx * spamsum_context
Opaque SpamSum context for streaming updates.
size_t sector_prefix_offset
Current position in sector_prefix.
BlockHeader current_block_header
Header for block currently being assembled (write path).
uint64_t magic
File magic (AARU_MAGIC) post-open.
uint8_t * writing_buffer
Accumulation buffer for current block data.
uint64_t * sector_prefix_ddt2
CD sector prefix DDT V2.
bool calculating_spamsum
True if whole-image SpamSum being calculated on-the-fly.
size_t sector_prefix_length
Length of sector_prefix.
mediaTagEntry * mediaTags
Hash table of extra media tags (uthash root).
blake3_hasher * blake3_context
Opaque BLAKE3 context for streaming updates.
bool calculating_blake3
True if whole-image BLAKE3 being calculated on-the-fly.
uint64_t next_block_position
Absolute file offset where next block will be written.
bool calculating_md5
True if whole-image MD5 being calculated on-the-fly.
bool dirty_sector_suffix_ddt
True if sector suffix DDT should be written during close.
size_t sector_suffix_offset
Current position in sector_suffix.
uint8_t * sector_decrypted_title_key
DVD decrypted title key (5 bytes) if present.
int writing_buffer_position
Current size / position within writingBuffer.
bool block_zero_written
True if block zero has been written (writing path).
crc64_ctx * crc64_context
Opaque CRC64 context for streaming updates.
uint8_t * sector_subchannel
Raw 96-byte subchannel (if captured).
bool dirty_sector_subchannel_block
True if subchannel block should be written during close.
FILE * imageStream
Underlying FILE* stream (binary mode).
bool dirty_dvd_long_sector_blocks
True if DVD long sector blocks should be written during close.
bool dirty_sector_prefix_ddt
True if sector prefix DDT should be written during close.
UT_array * index_entries
Flattened index entries (UT_array of IndexEntry).
uint8_t * mode2_subheaders
MODE2 Form1/Form2 8-byte subheaders (concatenated).
ImageInfo image_info
Exposed high-level image info summary.
uint8_t * sector_id
DVD sector ID (4 bytes) if present.
sha1_ctx sha1_context
Opaque SHA-1 context for streaming updates.
uint32_t lzma_dict_size
LZMA dictionary size (writing path).
TrackEntry * track_entries
Full track list (tracksHeader.entries elements).
uint8_t current_track_type
Current track type (when writing optical images with tracks, needed for block compression type).
bool writing_long
True if writing long sectors.
TracksHeader tracks_header
Tracks header (optical) if present.
Hash table entry for an arbitrary media tag (e.g., proprietary drive/medium descriptor).
uint8_t * data
Tag data blob (opaque to library core); length bytes long.
int32_t type
Numeric type identifier.
uint32_t length
Length in bytes of data.
int32_t aaruf_close_current_block(aaruformat_context *ctx)
Finalizes and writes the current data block to the AaruFormat image file.
int32_t aaruf_write_sector_tag(void *context, const uint64_t sector_address, const bool negative, const uint8_t *data, const size_t length, const int32_t tag)
Writes per-sector tag data (auxiliary metadata) for a specific sector.
int32_t aaruf_write_media_tag(void *context, const uint8_t *data, const int32_t type, const uint32_t length)
Writes a media tag to the AaruFormat image, storing medium-specific metadata and descriptors.
int32_t aaruf_write_sector(void *context, uint64_t sector_address, bool negative, const uint8_t *data, uint8_t sector_status, uint32_t length)
Writes a sector to the AaruFormat image.
int32_t aaruf_write_sector_long(void *context, uint64_t sector_address, bool negative, const uint8_t *data, uint8_t sector_status, uint32_t length)
Writes a full ("long") raw sector from optical or block media, parsing structure and validating conte...