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)
193 TRACE(
"Closing current block before writing new data");
198 FATAL(
"Error closing current block: %d", error);
200 TRACE(
"Exiting aaruf_write_sector() = %d", error);
205 uint64_t ddt_entry = 0;
211 TRACE(
"Hashing sector data for deduplication");
212 uint64_t hash = XXH3_64bits(data, length);
216 TRACE(
"Block does %s exist in deduplication map", existing ?
"already" :
"not yet");
219 sector_status, &ddt_entry);
222 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_CANNOT_SET_DDT_ENTRY");
228 TRACE(
"Sector exists, so not writing to image");
229 TRACE(
"Exiting aaruf_write_sector() = AARUF_STATUS_OK");
233 TRACE(
"Inserting sector hash into deduplication map, proceeding to write into image as normal");
238 sector_status, &ddt_entry);
242 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_CANNOT_SET_DDT_ENTRY");
249 TRACE(
"Creating new writing block");
259 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
302 TRACE(
"Setting max buffer size to %u bytes", max_buffer_size);
304 TRACE(
"Allocating memory for writing buffer");
308 FATAL(
"Could not allocate memory");
310 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
322 TRACE(
"Exiting aaruf_write_sector() = AARUF_STATUS_OK");
533 const uint8_t *data, uint8_t sector_status, uint32_t length)
535 TRACE(
"Entering aaruf_write_sector_long(%p, %" PRIu64
", %d, %p, %u, %u)", context, sector_address, negative, data,
536 sector_status, length);
541 FATAL(
"Invalid context");
543 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
552 FATAL(
"Invalid context");
554 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_AARUFORMAT");
561 FATAL(
"Trying to write a read-only image");
563 TRACE(
"Exiting aaruf_write_sector() = AARUF_READ_ONLY");
569 FATAL(
"Sector address out of bounds");
571 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
577 FATAL(
"Sector address out of bounds");
579 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
590 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
598 uint64_t corrected_sector_address = sector_address;
606 uint64_t total_sectors =
624 memcpy(ctx->
sector_id + corrected_sector_address * 4, data, 4);
625 memcpy(ctx->
sector_ied + corrected_sector_address * 2, data + 4, 2);
626 memcpy(ctx->
sector_cpr_mai + corrected_sector_address * 6, data + 6, 6);
627 memcpy(ctx->
sector_edc + corrected_sector_address * 4, data + 2060, 4);
629 return aaruf_write_sector(context, sector_address, negative, data + 12, sector_status, 2048);
634 FATAL(
"Incorrect sector size");
635 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INCORRECT_DATA_SIZE");
643 if(sector_address <= ctx->last_written_block)
664 if(ctx->
calculating_md5 && !negative && sector_address <= ctx->image_info.Sectors)
667 if(ctx->
calculating_sha1 && !negative && sector_address <= ctx->image_info.Sectors)
686 return aaruf_write_sector(context, sector_address, negative, data, sector_status, length);
698 FATAL(
"Could not allocate memory for CD sector prefix DDT");
700 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
714 FATAL(
"Could not allocate memory for CD sector prefix DDT");
716 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
729 FATAL(
"Could not allocate memory for CD sector prefix buffer");
731 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
745 FATAL(
"Could not allocate memory for CD sector suffix buffer");
747 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
754 for(
int i = 0; i < length; i++)
769 prefix_correct =
true;
771 if(data[0x00] != 0x00 || data[0x01] != 0xFF || data[0x02] != 0xFF || data[0x03] != 0xFF ||
772 data[0x04] != 0xFF || data[0x05] != 0xFF || data[0x06] != 0xFF || data[0x07] != 0xFF ||
773 data[0x08] != 0xFF || data[0x09] != 0xFF || data[0x0A] != 0xFF || data[0x0B] != 0x00 ||
775 prefix_correct =
false;
779 const int minute = (data[0x0C] >> 4) * 10 + (data[0x0C] & 0x0F);
780 const int second = (data[0x0D] >> 4) * 10 + (data[0x0D] & 0x0F);
781 const int frame = (data[0x0E] >> 4) * 10 + (data[0x0E] & 0x0F);
782 const int stored_lba = minute * 60 * 75 + second * 75 + frame - 150;
783 prefix_correct = stored_lba == sector_address;
804 FATAL(
"Could not allocate memory for CD sector prefix buffer");
806 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
832 FATAL(
"Could not allocate memory for CD sector suffix buffer");
834 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
854 FATAL(
"Could not allocate memory for CD sector prefix DDT");
856 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
870 FATAL(
"Could not allocate memory for CD sector prefix DDT");
872 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
885 FATAL(
"Could not allocate memory for CD sector prefix buffer");
887 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
901 FATAL(
"Could not allocate memory for CD sector suffix buffer");
903 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
910 for(
int i = 0; i < length; i++)
925 const bool form2 = (data[18] & 0x20) == 0x20 || (data[22] & 0x20) == 0x20;
927 prefix_correct =
true;
929 if(data[0x00] != 0x00 || data[0x01] != 0xFF || data[0x02] != 0xFF || data[0x03] != 0xFF ||
930 data[0x04] != 0xFF || data[0x05] != 0xFF || data[0x06] != 0xFF || data[0x07] != 0xFF ||
931 data[0x08] != 0xFF || data[0x09] != 0xFF || data[0x0A] != 0xFF || data[0x0B] != 0x00 ||
933 prefix_correct =
false;
937 const int minute = (data[0x0C] >> 4) * 10 + (data[0x0C] & 0x0F);
938 const int second = (data[0x0D] >> 4) * 10 + (data[0x0D] & 0x0F);
939 const int frame = (data[0x0E] >> 4) * 10 + (data[0x0E] & 0x0F);
940 const int stored_lba = minute * 60 * 75 + second * 75 + frame - 150;
941 prefix_correct = stored_lba == sector_address;
963 FATAL(
"Could not allocate memory for CD sector prefix buffer");
965 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
979 FATAL(
"Could not allocate memory for CD mode 2 subheader buffer");
981 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
990 memcpy(&edc, data + 0x92C,
sizeof(edc));
991 const bool correct_edc = computed_edc == edc;
1016 FATAL(
"Could not allocate memory for CD sector suffix buffer");
1018 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1025 memcpy(ctx->
mode2_subheaders + corrected_sector_address * 8, data + 0x10, 8);
1036 memcpy(&edc, data + 0x818,
sizeof(edc));
1037 const bool correct_edc = computed_edc == edc;
1039 if(correct_ecc && correct_edc)
1057 FATAL(
"Could not allocate memory for CD sector suffix buffer");
1059 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1066 memcpy(ctx->
mode2_subheaders + corrected_sector_address * 8, data + 0x10, 8);
1068 context, sector_address, negative, data + 24,
1087 switch(length - 512)
1109 newTag = malloc(12);
1110 memcpy(newTag, data + 512, 12);
1122 newTag = malloc(20);
1123 memcpy(newTag, data + 512, 20);
1153 newTag = malloc(24);
1154 memcpy(newTag, data + 512, 24);
1170 FATAL(
"Incorrect sector size");
1171 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INCORRECT_DATA_SIZE");
1176 return aaruf_write_sector(context, sector_address, negative, data, sector_status, 512);
1185 FATAL(
"Could not allocate memory for sector subchannel DDT");
1189 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
1194 memcpy(ctx->
sector_subchannel + sector_address * newTagSize, newTag, newTagSize);
1197 return aaruf_write_sector(context, sector_address, negative, data, sector_status, 512);
1203 TRACE(
"Exiting aaruf_write_sector() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
1403 TRACE(
"Initializing CRC64 context");
1405 TRACE(
"Updating CRC64");
1410 uint8_t *cmp_buffer = NULL;
1418 if(cmp_buffer == NULL)
1420 FATAL(
"Could not allocate buffer for compressed data");
1429 const long remaining = current_samples % flac_block_size;
1437 flac_block_size,
true,
false,
"hamming", 12, 15,
true,
false, 0, 8,
"Aaru", 4);
1448 if(cmp_buffer == NULL)
1450 FATAL(
"Could not allocate buffer for compressed data");
1457 lzma_properties, &props_size, 9, ctx->
lzma_dict_size, 4, 0, 2, 273, 8);
1469 FATAL(
"Invalid compression type");
1484 TRACE(
"Adding block to index");
1491 TRACE(
"Block added to index at offset %" PRIu64, index_entry.
offset);
1791 const uint32_t length)
1793 TRACE(
"Entering aaruf_write_media_tag(%p, %p, %d, %d)", context, data, type, length);
1798 FATAL(
"Invalid context");
1800 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_ERROR_NOT_AARUFORMAT");
1809 FATAL(
"Invalid context");
1811 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_ERROR_NOT_AARUFORMAT");
1818 FATAL(
"Trying to write a read-only image");
1820 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_READ_ONLY");
1824 if(data == NULL || length == 0)
1826 FATAL(
"Invalid data or length");
1830 uint8_t *new_data = malloc(length);
1832 if(new_data == NULL)
1834 FATAL(
"Could not allocate memory for media tag");
1837 memcpy(new_data, data, length);
1842 if(media_tag == NULL)
1844 TRACE(
"Cannot allocate memory for media tag entry.");
1851 media_tag->
type = type;
1852 media_tag->
data = new_data;
1853 media_tag->
length = length;
1855 HASH_REPLACE_INT(ctx->
mediaTags, type, media_tag, old_media_tag);
1857 if(old_media_tag != NULL)
1859 TRACE(
"Replaced media tag with type %d", old_media_tag->
type);
1860 free(old_media_tag->
data);
1861 free(old_media_tag);
1862 old_media_tag = NULL;
1865 TRACE(
"Exiting aaruf_write_media_tag() = AARUF_STATUS_OK");
2060 const uint8_t *data,
const size_t length,
const int32_t tag)
2062 TRACE(
"Entering aaruf_write_sector_tag(%p, %" PRIu64
", %d, %p, %zu, %d)", context, sector_address, negative, data,
2068 FATAL(
"Invalid context");
2070 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_AARUFORMAT");
2079 FATAL(
"Invalid context");
2081 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_AARUFORMAT");
2088 FATAL(
"Trying to write a read-only image");
2090 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_READ_ONLY");
2096 FATAL(
"Sector address out of bounds");
2098 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
2104 FATAL(
"Sector address out of bounds");
2106 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_SECTOR_OUT_OF_BOUNDS");
2110 if(data == NULL || length == 0)
2112 FATAL(
"Invalid data or length");
2116 uint64_t corrected_sector_address = sector_address;
2124 const uint64_t total_sectors =
2132 FATAL(
"Invalid media type for tag");
2133 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2139 FATAL(
"Incorrect tag size");
2140 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2145 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
2148 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2152 FATAL(
"Track not found");
2157 FATAL(
"Invalid media type for tag");
2158 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2164 FATAL(
"Incorrect tag size");
2165 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2170 if(sector_address >= ctx->
track_entries[i].
start && sector_address <= ctx->track_entries[i].end)
2173 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2177 FATAL(
"Track not found");
2182 FATAL(
"Invalid media type for tag");
2183 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2189 FATAL(
"Incorrect tag size");
2190 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2198 FATAL(
"Could not allocate memory for sector subchannel");
2200 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2205 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2210 FATAL(
"Invalid media type for tag");
2211 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2217 FATAL(
"Incorrect tag size");
2218 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2226 FATAL(
"Could not allocate memory for sector CPR/MAI");
2228 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2232 memcpy(ctx->
sector_cpr_mai + corrected_sector_address * 6, data, 1);
2233 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2238 FATAL(
"Invalid media type for tag");
2239 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2245 FATAL(
"Incorrect tag size");
2246 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2254 FATAL(
"Could not allocate memory for sector ID");
2256 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2260 memcpy(ctx->
sector_id + corrected_sector_address * 4, data, 1);
2261 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2266 FATAL(
"Invalid media type for tag");
2267 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2273 FATAL(
"Incorrect tag size");
2274 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2282 FATAL(
"Could not allocate memory for sector ID");
2284 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2288 memcpy(ctx->
sector_id + corrected_sector_address * 4 + 1, data, 3);
2289 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2294 FATAL(
"Invalid media type for tag");
2295 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2301 FATAL(
"Incorrect tag size");
2302 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2310 FATAL(
"Could not allocate memory for sector IED");
2312 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2316 memcpy(ctx->
sector_ied + corrected_sector_address * 2, data, 2);
2317 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2322 FATAL(
"Invalid media type for tag");
2323 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2329 FATAL(
"Incorrect tag size");
2330 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2338 FATAL(
"Could not allocate memory for sector EDC");
2340 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2344 memcpy(ctx->
sector_edc + corrected_sector_address * 4, data, 4);
2345 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2350 FATAL(
"Invalid media type for tag");
2351 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2357 FATAL(
"Incorrect tag size");
2358 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2366 FATAL(
"Could not allocate memory for sector decrypted title key");
2368 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2373 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2378 FATAL(
"Invalid media type for tag");
2379 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2385 FATAL(
"Incorrect tag size");
2386 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2394 FATAL(
"Could not allocate memory for Apple Sony tag");
2396 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2401 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2406 FATAL(
"Invalid media type for tag");
2407 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2413 FATAL(
"Incorrect tag size");
2414 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2422 FATAL(
"Could not allocate memory for Apple Profile tag");
2424 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2429 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2434 FATAL(
"Invalid media type for tag");
2435 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_MEDIA_TYPE");
2441 FATAL(
"Incorrect tag size");
2442 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_INCORRECT_DATA_SIZE");
2450 FATAL(
"Could not allocate memory for Priam Data Tower tag");
2452 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_ERROR_NOT_ENOUGH_MEMORY");
2457 TRACE(
"Exiting aaruf_write_sector_tag() = AARUF_STATUS_OK");
2460 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.
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...