99 const uint8_t *data, uint8_t sector_status, uint32_t length)
101 TRACE(
"Entering aaruf_write_sector(%p, %" PRIu64
", %d, %p, %u, %u)", context, sector_address, negative, data,
102 sector_status, length);
107 FATAL(
"Invalid context");
109 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
118 FATAL(
"Invalid context");
120 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
127 FATAL(
"Trying to write a read-only image");
129 TRACE(
"Exiting aaruf_write_sector() = AARUF_READ_ONLY");
135 FATAL(
"Sector address out of bounds");
137 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
143 FATAL(
"Sector address out of bounds");
145 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
151 if(sector_address <= ctx->last_written_block)
198 TRACE(
"Closing current block before writing new data");
203 FATAL(
"Error closing current block: %d", error);
205 TRACE(
"Exiting aaruf_write_sector() = %d", error);
210 uint64_t ddt_entry = 0;
216 TRACE(
"Hashing sector data for deduplication");
217 uint64_t hash = XXH3_64bits(data, length);
221 TRACE(
"Block does %s exist in deduplication map", existing ?
"already" :
"not yet");
224 sector_status, &ddt_entry);
227 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_CANNOT_SET_DDT_ENTRY");
233 TRACE(
"Sector exists, so not writing to image");
234 TRACE(
"Exiting aaruf_write_sector() = AARUF_STATUS_OK");
238 TRACE(
"Inserting sector hash into deduplication map, proceeding to write into image as normal");
243 sector_status, &ddt_entry);
247 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_CANNOT_SET_DDT_ENTRY");
254 TRACE(
"Creating new writing block");
264 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
307 TRACE(
"Setting max buffer size to %u bytes", max_buffer_size);
309 TRACE(
"Allocating memory for writing buffer");
313 FATAL(
"Could not allocate memory");
315 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
327 TRACE(
"Exiting aaruf_write_sector() = AARUF_STATUS_OK");
538 const uint8_t *data, uint8_t sector_status, uint32_t length)
540 TRACE(
"Entering aaruf_write_sector_long(%p, %" PRIu64
", %d, %p, %u, %u)", context, sector_address, negative, data,
541 sector_status, length);
546 FATAL(
"Invalid context");
548 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
557 FATAL(
"Invalid context");
559 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
566 FATAL(
"Trying to write a read-only image");
568 TRACE(
"Exiting aaruf_write_sector() = AARUF_READ_ONLY");
574 FATAL(
"Sector address out of bounds");
576 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
582 FATAL(
"Sector address out of bounds");
584 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
595 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
603 uint64_t corrected_sector_address = sector_address;
611 uint64_t total_sectors =
629 memcpy(ctx->
sector_id + corrected_sector_address * 4, data, 4);
630 memcpy(ctx->
sector_ied + corrected_sector_address * 2, data + 4, 2);
631 memcpy(ctx->
sector_cpr_mai + corrected_sector_address * 6, data + 6, 6);
632 memcpy(ctx->
sector_edc + corrected_sector_address * 4, data + 2060, 4);
634 return aaruf_write_sector(context, sector_address, negative, data + 12, sector_status, 2048);
639 FATAL(
"Incorrect sector size");
640 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INCORRECT_DATA_SIZE");
648 if(sector_address <= ctx->last_written_block)
674 if(ctx->
calculating_md5 && !negative && sector_address <= ctx->image_info.Sectors)
677 if(ctx->
calculating_sha1 && !negative && sector_address <= ctx->image_info.Sectors)
696 return aaruf_write_sector(context, sector_address, negative, data, sector_status, length);
708 FATAL(
"Could not allocate memory for CD sector prefix DDT");
710 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
724 FATAL(
"Could not allocate memory for CD sector prefix DDT");
726 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
739 FATAL(
"Could not allocate memory for CD sector prefix buffer");
741 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
755 FATAL(
"Could not allocate memory for CD sector suffix buffer");
757 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
764 for(
int i = 0; i < length; i++)
779 prefix_correct =
true;
781 if(data[0x00] != 0x00 || data[0x01] != 0xFF || data[0x02] != 0xFF || data[0x03] != 0xFF ||
782 data[0x04] != 0xFF || data[0x05] != 0xFF || data[0x06] != 0xFF || data[0x07] != 0xFF ||
783 data[0x08] != 0xFF || data[0x09] != 0xFF || data[0x0A] != 0xFF || data[0x0B] != 0x00 ||
785 prefix_correct =
false;
789 const int minute = (data[0x0C] >> 4) * 10 + (data[0x0C] & 0x0F);
790 const int second = (data[0x0D] >> 4) * 10 + (data[0x0D] & 0x0F);
791 const int frame = (data[0x0E] >> 4) * 10 + (data[0x0E] & 0x0F);
792 const int stored_lba = minute * 60 * 75 + second * 75 + frame - 150;
793 prefix_correct = stored_lba == sector_address;
814 FATAL(
"Could not allocate memory for CD sector prefix buffer");
816 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
842 FATAL(
"Could not allocate memory for CD sector suffix buffer");
844 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
864 FATAL(
"Could not allocate memory for CD sector prefix DDT");
866 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
880 FATAL(
"Could not allocate memory for CD sector prefix DDT");
882 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
895 FATAL(
"Could not allocate memory for CD sector prefix buffer");
897 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
911 FATAL(
"Could not allocate memory for CD sector suffix buffer");
913 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
920 for(
int i = 0; i < length; i++)
935 const bool form2 = (data[18] & 0x20) == 0x20 || (data[22] & 0x20) == 0x20;
937 prefix_correct =
true;
939 if(data[0x00] != 0x00 || data[0x01] != 0xFF || data[0x02] != 0xFF || data[0x03] != 0xFF ||
940 data[0x04] != 0xFF || data[0x05] != 0xFF || data[0x06] != 0xFF || data[0x07] != 0xFF ||
941 data[0x08] != 0xFF || data[0x09] != 0xFF || data[0x0A] != 0xFF || data[0x0B] != 0x00 ||
943 prefix_correct =
false;
947 const int minute = (data[0x0C] >> 4) * 10 + (data[0x0C] & 0x0F);
948 const int second = (data[0x0D] >> 4) * 10 + (data[0x0D] & 0x0F);
949 const int frame = (data[0x0E] >> 4) * 10 + (data[0x0E] & 0x0F);
950 const int stored_lba = minute * 60 * 75 + second * 75 + frame - 150;
951 prefix_correct = stored_lba == sector_address;
973 FATAL(
"Could not allocate memory for CD sector prefix buffer");
975 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
989 FATAL(
"Could not allocate memory for CD mode 2 subheader buffer");
991 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1000 memcpy(&edc, data + 0x92C,
sizeof(edc));
1001 const bool correct_edc = computed_edc == edc;
1026 FATAL(
"Could not allocate memory for CD sector suffix buffer");
1028 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1035 memcpy(ctx->
mode2_subheaders + corrected_sector_address * 8, data + 0x10, 8);
1046 memcpy(&edc, data + 0x818,
sizeof(edc));
1047 const bool correct_edc = computed_edc == edc;
1049 if(correct_ecc && correct_edc)
1067 FATAL(
"Could not allocate memory for CD sector suffix buffer");
1069 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1076 memcpy(ctx->
mode2_subheaders + corrected_sector_address * 8, data + 0x10, 8);
1078 context, sector_address, negative, data + 24,
1097 switch(length - 512)
1119 newTag = malloc(12);
1120 memcpy(newTag, data + 512, 12);
1132 newTag = malloc(20);
1133 memcpy(newTag, data + 512, 20);
1163 newTag = malloc(24);
1164 memcpy(newTag, data + 512, 24);
1180 FATAL(
"Incorrect sector size");
1181 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INCORRECT_DATA_SIZE");
1186 return aaruf_write_sector(context, sector_address, negative, data, sector_status, 512);
1195 FATAL(
"Could not allocate memory for sector subchannel DDT");
1199 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1204 memcpy(ctx->
sector_subchannel + sector_address * newTagSize, newTag, newTagSize);
1207 return aaruf_write_sector(context, sector_address, negative, data, sector_status, 512);
1213 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
1413 TRACE(
"Initializing CRC64 context");
1415 TRACE(
"Updating CRC64");
1420 uint8_t *cmp_buffer = NULL;
1428 if(cmp_buffer == NULL)
1430 FATAL(
"Could not allocate buffer for compressed data");
1439 const long remaining = current_samples % flac_block_size;
1447 flac_block_size,
true,
false,
"hamming", 12, 15,
true,
false, 0, 8,
"Aaru", 4);
1458 if(cmp_buffer == NULL)
1460 FATAL(
"Could not allocate buffer for compressed data");
1467 lzma_properties, &props_size, 9, ctx->
lzma_dict_size, 4, 0, 2, 273, 8);
1479 FATAL(
"Invalid compression type");
1494 TRACE(
"Adding block to index");
1501 TRACE(
"Block added to index at offset %" PRIu64, index_entry.
offset);
1801 const uint32_t length)
1803 TRACE(
"Entering aaruf_write_media_tag(%p, %p, %d, %d)", context, data, type, length);
1808 FATAL(
"Invalid context");
1810 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_ERROR_NOT_AARUFORMAT");
1819 FATAL(
"Invalid context");
1821 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_ERROR_NOT_AARUFORMAT");
1828 FATAL(
"Trying to write a read-only image");
1830 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_READ_ONLY");
1834 if(data == NULL || length == 0)
1836 FATAL(
"Invalid data or length");
1840 uint8_t *new_data = malloc(length);
1842 if(new_data == NULL)
1844 FATAL(
"Could not allocate memory for media tag");
1847 memcpy(new_data, data, length);
1852 if(media_tag == NULL)
1854 TRACE(
"Cannot allocate memory for media tag entry.");
1861 media_tag->
type = type;
1862 media_tag->
data = new_data;
1863 media_tag->
length = length;
1865 HASH_REPLACE_INT(ctx->
mediaTags, type, media_tag, old_media_tag);
1867 if(old_media_tag != NULL)
1869 TRACE(
"Replaced media tag with type %d", old_media_tag->
type);
1870 free(old_media_tag->
data);
1871 free(old_media_tag);
1872 old_media_tag = NULL;
1875 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_STATUS_OK");
2070 const uint8_t *data,
const size_t length,
const int32_t tag)
2072 TRACE(
"Entering aaruf_write_sector_tag(%p, %" PRIu64
", %d, %p, %zu, %d)", context, sector_address, negative, data,
2078 FATAL(
"Invalid context");
2080 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_AARUFORMAT");
2089 FATAL(
"Invalid context");
2091 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_AARUFORMAT");
2098 FATAL(
"Trying to write a read-only image");
2100 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_READ_ONLY");
2106 FATAL(
"Sector address out of bounds");
2108 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
2114 FATAL(
"Sector address out of bounds");
2116 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
2120 if(data == NULL || length == 0)
2122 FATAL(
"Invalid data or length");
2126 uint64_t corrected_sector_address = sector_address;
2134 const uint64_t total_sectors =
2142 FATAL(
"Invalid media type for tag");
2143 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2149 FATAL(
"Incorrect tag size");
2150 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2155 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
2158 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2162 FATAL(
"Track not found");
2167 FATAL(
"Invalid media type for tag");
2168 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2174 FATAL(
"Incorrect tag size");
2175 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2180 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
2183 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2187 FATAL(
"Track not found");
2192 FATAL(
"Invalid media type for tag");
2193 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2199 FATAL(
"Incorrect tag size");
2200 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2208 FATAL(
"Could not allocate memory for sector subchannel");
2210 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2215 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2220 FATAL(
"Invalid media type for tag");
2221 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2227 FATAL(
"Incorrect tag size");
2228 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2236 FATAL(
"Could not allocate memory for sector CPR/MAI");
2238 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2242 memcpy(ctx->
sector_cpr_mai + corrected_sector_address * 6, data, 1);
2243 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2248 FATAL(
"Invalid media type for tag");
2249 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2255 FATAL(
"Incorrect tag size");
2256 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2264 FATAL(
"Could not allocate memory for sector ID");
2266 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2270 memcpy(ctx->
sector_id + corrected_sector_address * 4, data, 1);
2271 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2276 FATAL(
"Invalid media type for tag");
2277 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2283 FATAL(
"Incorrect tag size");
2284 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2292 FATAL(
"Could not allocate memory for sector ID");
2294 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2298 memcpy(ctx->
sector_id + corrected_sector_address * 4 + 1, data, 3);
2299 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2304 FATAL(
"Invalid media type for tag");
2305 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2311 FATAL(
"Incorrect tag size");
2312 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2320 FATAL(
"Could not allocate memory for sector IED");
2322 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2326 memcpy(ctx->
sector_ied + corrected_sector_address * 2, data, 2);
2327 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2332 FATAL(
"Invalid media type for tag");
2333 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2339 FATAL(
"Incorrect tag size");
2340 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2348 FATAL(
"Could not allocate memory for sector EDC");
2350 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2354 memcpy(ctx->
sector_edc + corrected_sector_address * 4, data, 4);
2355 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2360 FATAL(
"Invalid media type for tag");
2361 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2367 FATAL(
"Incorrect tag size");
2368 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2376 FATAL(
"Could not allocate memory for sector decrypted title key");
2378 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2383 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2388 FATAL(
"Invalid media type for tag");
2389 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2395 FATAL(
"Incorrect tag size");
2396 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2404 FATAL(
"Could not allocate memory for Apple Sony tag");
2406 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2411 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2416 FATAL(
"Invalid media type for tag");
2417 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2423 FATAL(
"Incorrect tag size");
2424 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2432 FATAL(
"Could not allocate memory for Apple Profile tag");
2434 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2439 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2444 FATAL(
"Invalid media type for tag");
2445 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2451 FATAL(
"Incorrect tag size");
2452 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2460 FATAL(
"Could not allocate memory for Priam Data Tower tag");
2462 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2467 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2470 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_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 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.
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.
uint8_t * sector_prefix
Raw per-sector prefix (e.g., sync+header) uncorrected.
uint64_t * sector_suffix_ddt2
CD sector suffix DDT V2.
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.
CdEccContext * ecc_cd_context
CD ECC/EDC helper tables (allocated on demand).
bool rewinded
True if stream has been rewound after open (write path).
uint8_t * sector_suffix
Raw per-sector suffix (EDC/ECC) uncorrected.
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.
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).
FILE * imageStream
Underlying FILE* stream (binary mode).
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...