]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/libarchive/libarchive/archive_read_support_format_rar5.c
MFC r344063,r344088:
[FreeBSD/stable/10.git] / contrib / libarchive / libarchive / archive_read_support_format_rar5.c
1 /*-
2 * Copyright (c) 2018 Grzegorz Antoniak (http://antoniak.org)
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26 #include "archive_platform.h"
27
28 #ifdef HAVE_ERRNO_H
29 #include <errno.h>
30 #endif
31 #include <time.h>
32 #ifdef HAVE_ZLIB_H
33 #include <zlib.h> /* crc32 */
34 #endif
35
36 #include "archive.h"
37 #ifndef HAVE_ZLIB_H
38 #include "archive_crc32.h"
39 #endif
40
41 #include "archive_entry.h"
42 #include "archive_entry_locale.h"
43 #include "archive_ppmd7_private.h"
44 #include "archive_entry_private.h"
45
46 #ifdef HAVE_BLAKE2_H
47 #include <blake2.h>
48 #else
49 #include "archive_blake2.h"
50 #endif
51
52 /*#define CHECK_CRC_ON_SOLID_SKIP*/
53 /*#define DONT_FAIL_ON_CRC_ERROR*/
54 /*#define DEBUG*/
55
56 #define rar5_min(a, b) (((a) > (b)) ? (b) : (a))
57 #define rar5_max(a, b) (((a) > (b)) ? (a) : (b))
58 #define rar5_countof(X) ((const ssize_t) (sizeof(X) / sizeof(*X)))
59
60 #if defined DEBUG
61 #define DEBUG_CODE if(1)
62 #else
63 #define DEBUG_CODE if(0)
64 #endif
65
66 /* Real RAR5 magic number is:
67  *
68  * 0x52, 0x61, 0x72, 0x21, 0x1a, 0x07, 0x01, 0x00
69  * "Rar!→•☺·\x00"
70  *
71  * It's stored in `rar5_signature` after XOR'ing it with 0xA1, because I don't
72  * want to put this magic sequence in each binary that uses libarchive, so
73  * applications that scan through the file for this marker won't trigger on
74  * this "false" one.
75  *
76  * The array itself is decrypted in `rar5_init` function. */
77
78 static unsigned char rar5_signature[] = { 243, 192, 211, 128, 187, 166, 160, 161 };
79 static const ssize_t rar5_signature_size = sizeof(rar5_signature);
80 /* static const size_t g_unpack_buf_chunk_size = 1024; */
81 static const size_t g_unpack_window_size = 0x20000;
82
83 struct file_header {
84     ssize_t bytes_remaining;
85     ssize_t unpacked_size;
86     int64_t last_offset;         /* Used in sanity checks. */
87     int64_t last_size;           /* Used in sanity checks. */
88
89     uint8_t solid : 1;           /* Is this a solid stream? */
90     uint8_t service : 1;         /* Is this file a service data? */
91
92     /* Optional time fields. */
93     uint64_t e_mtime;
94     uint64_t e_ctime;
95     uint64_t e_atime;
96     uint32_t e_unix_ns;
97
98     /* Optional hash fields. */
99     uint32_t stored_crc32;
100     uint32_t calculated_crc32;
101     uint8_t blake2sp[32];
102     blake2sp_state b2state;
103     char has_blake2;
104 };
105
106 enum FILTER_TYPE {
107     FILTER_DELTA = 0,   /* Generic pattern. */
108     FILTER_E8    = 1,   /* Intel x86 code. */
109     FILTER_E8E9  = 2,   /* Intel x86 code. */
110     FILTER_ARM   = 3,   /* ARM code. */
111     FILTER_AUDIO = 4,   /* Audio filter, not used in RARv5. */
112     FILTER_RGB   = 5,   /* Color palette, not used in RARv5. */
113     FILTER_ITANIUM = 6, /* Intel's Itanium, not used in RARv5. */
114     FILTER_PPM   = 7,   /* Predictive pattern matching, not used in RARv5. */
115     FILTER_NONE  = 8,
116 };
117
118 struct filter_info {
119     int type;
120     int channels;
121     int pos_r;
122
123     int64_t block_start;
124     ssize_t block_length;
125     uint16_t width;
126 };
127
128 struct data_ready {
129     char used;
130     const uint8_t* buf;
131     size_t size;
132     int64_t offset;
133 };
134
135 struct cdeque {
136     uint16_t beg_pos;
137     uint16_t end_pos;
138     uint16_t cap_mask;
139     uint16_t size;
140     size_t* arr;
141 };
142
143 struct decode_table {
144     uint32_t size;
145     int32_t decode_len[16];
146     uint32_t decode_pos[16];
147     uint32_t quick_bits;
148     uint8_t quick_len[1 << 10];
149     uint16_t quick_num[1 << 10];
150     uint16_t decode_num[306];
151 };
152
153 struct comp_state {
154     /* Flag used to specify if unpacker needs to reinitialize the uncompression
155      * context. */
156     uint8_t initialized : 1;
157
158     /* Flag used when applying filters. */
159     uint8_t all_filters_applied : 1;
160
161     /* Flag used to skip file context reinitialization, used when unpacker is
162      * skipping through different multivolume archives. */
163     uint8_t switch_multivolume : 1;
164
165     /* Flag used to specify if unpacker has processed the whole data block or
166      * just a part of it. */
167     uint8_t block_parsing_finished : 1;
168
169     int notused : 4;
170
171     int flags;                   /* Uncompression flags. */
172     int method;                  /* Uncompression algorithm method. */
173     int version;                 /* Uncompression algorithm version. */
174     ssize_t window_size;         /* Size of window_buf. */
175     uint8_t* window_buf;         /* Circular buffer used during
176                                     decompression. */
177     uint8_t* filtered_buf;       /* Buffer used when applying filters. */
178     const uint8_t* block_buf;    /* Buffer used when merging blocks. */
179     size_t window_mask;          /* Convinience field; window_size - 1. */
180     int64_t write_ptr;           /* This amount of data has been unpacked in
181                                     the window buffer. */
182     int64_t last_write_ptr;      /* This amount of data has been stored in
183                                     the output file. */
184     int64_t last_unstore_ptr;    /* Counter of bytes extracted during
185                                     unstoring. This is separate from
186                                     last_write_ptr because of how SERVICE
187                                     base blocks are handled during skipping
188                                     in solid multiarchive archives. */
189     int64_t solid_offset;        /* Additional offset inside the window
190                                     buffer, used in unpacking solid
191                                     archives. */
192     ssize_t cur_block_size;      /* Size of current data block. */
193     int last_len;                /* Flag used in lzss decompression. */
194
195     /* Decode tables used during lzss uncompression. */
196
197 #define HUFF_BC 20
198     struct decode_table bd;      /* huffman bit lengths */
199 #define HUFF_NC 306
200     struct decode_table ld;      /* literals */
201 #define HUFF_DC 64
202     struct decode_table dd;      /* distances */
203 #define HUFF_LDC 16
204     struct decode_table ldd;     /* lower bits of distances */
205 #define HUFF_RC 44
206     struct decode_table rd;      /* repeating distances */
207 #define HUFF_TABLE_SIZE (HUFF_NC + HUFF_DC + HUFF_RC + HUFF_LDC)
208
209     /* Circular deque for storing filters. */
210     struct cdeque filters;
211     int64_t last_block_start;    /* Used for sanity checking. */
212     ssize_t last_block_length;   /* Used for sanity checking. */
213
214     /* Distance cache used during lzss uncompression. */
215     int dist_cache[4];
216
217     /* Data buffer stack. */
218     struct data_ready dready[2];
219 };
220
221 /* Bit reader state. */
222 struct bit_reader {
223     int8_t bit_addr;    /* Current bit pointer inside current byte. */
224     int in_addr;        /* Current byte pointer. */
225 };
226
227 /* RARv5 block header structure. */
228 struct compressed_block_header {
229     union {
230         struct {
231             uint8_t bit_size : 3;
232             uint8_t byte_count : 3;
233             uint8_t is_last_block : 1;
234             uint8_t is_table_present : 1;
235         } block_flags;
236         uint8_t block_flags_u8;
237     };
238
239     uint8_t block_cksum;
240 };
241
242 /* RARv5 main header structure. */
243 struct main_header {
244     /* Does the archive contain solid streams? */
245     uint8_t solid : 1;
246
247     /* If this a multi-file archive? */
248     uint8_t volume : 1;
249     uint8_t endarc : 1;
250     uint8_t notused : 5;
251
252     int vol_no;
253 };
254
255 struct generic_header {
256     uint8_t split_after : 1;
257     uint8_t split_before : 1;
258     uint8_t padding : 6;
259     int size;
260     int last_header_id;
261 };
262
263 struct multivolume {
264     int expected_vol_no;
265     uint8_t* push_buf;
266 };
267
268 /* Main context structure. */
269 struct rar5 {
270     int header_initialized;
271
272     /* Set to 1 if current file is positioned AFTER the magic value
273      * of the archive file. This is used in header reading functions. */
274     int skipped_magic;
275
276     /* Set to not zero if we're in skip mode (either by calling rar5_data_skip
277      * function or when skipping over solid streams). Set to 0 when in
278      * extraction mode. This is used during checksum calculation functions. */
279     int skip_mode;
280
281     /* An offset to QuickOpen list. This is not supported by this unpacker,
282      * becuase we're focusing on streaming interface. QuickOpen is designed
283      * to make things quicker for non-stream interfaces, so it's not our
284      * use case. */
285     uint64_t qlist_offset;
286
287     /* An offset to additional Recovery data. This is not supported by this
288      * unpacker. Recovery data are additional Reed-Solomon codes that could
289      * be used to calculate bytes that are missing in archive or are
290      * corrupted. */
291     uint64_t rr_offset;
292
293     /* Various context variables grouped to different structures. */
294     struct generic_header generic;
295     struct main_header main;
296     struct comp_state cstate;
297     struct file_header file;
298     struct bit_reader bits;
299     struct multivolume vol;
300
301     /* The header of currently processed RARv5 block. Used in main
302      * decompression logic loop. */
303     struct compressed_block_header last_block_hdr;
304 };
305
306 /* Forward function declarations. */
307
308 static int verify_global_checksums(struct archive_read* a);
309 static int rar5_read_data_skip(struct archive_read *a);
310 static int push_data_ready(struct archive_read* a, struct rar5* rar,
311         const uint8_t* buf, size_t size, int64_t offset);
312
313 /* CDE_xxx = Circular Double Ended (Queue) return values. */
314 enum CDE_RETURN_VALUES {
315     CDE_OK, CDE_ALLOC, CDE_PARAM, CDE_OUT_OF_BOUNDS,
316 };
317
318 /* Clears the contents of this circular deque. */
319 static void cdeque_clear(struct cdeque* d) {
320     d->size = 0;
321     d->beg_pos = 0;
322     d->end_pos = 0;
323 }
324
325 /* Creates a new circular deque object. Capacity must be power of 2: 8, 16, 32,
326  * 64, 256, etc. When the user will add another item above current capacity,
327  * the circular deque will overwrite the oldest entry. */
328 static int cdeque_init(struct cdeque* d, int max_capacity_power_of_2) {
329     if(d == NULL || max_capacity_power_of_2 == 0)
330         return CDE_PARAM;
331
332     d->cap_mask = max_capacity_power_of_2 - 1;
333     d->arr = NULL;
334
335     if((max_capacity_power_of_2 & d->cap_mask) > 0)
336         return CDE_PARAM;
337
338     cdeque_clear(d);
339     d->arr = malloc(sizeof(void*) * max_capacity_power_of_2);
340
341     return d->arr ? CDE_OK : CDE_ALLOC;
342 }
343
344 /* Return the current size (not capacity) of circular deque `d`. */
345 static size_t cdeque_size(struct cdeque* d) {
346     return d->size;
347 }
348
349 /* Returns the first element of current circular deque. Note that this function
350  * doesn't perform any bounds checking. If you need bounds checking, use
351  * `cdeque_front()` function instead. */
352 static void cdeque_front_fast(struct cdeque* d, void** value) {
353     *value = (void*) d->arr[d->beg_pos];
354 }
355
356 /* Returns the first element of current circular deque. This function
357  * performs bounds checking. */
358 static int cdeque_front(struct cdeque* d, void** value) {
359     if(d->size > 0) {
360         cdeque_front_fast(d, value);
361         return CDE_OK;
362     } else
363         return CDE_OUT_OF_BOUNDS;
364 }
365
366 /* Pushes a new element into the end of this circular deque object. If current
367  * size will exceed capacity, the oldest element will be overwritten. */
368 static int cdeque_push_back(struct cdeque* d, void* item) {
369     if(d == NULL)
370         return CDE_PARAM;
371
372     if(d->size == d->cap_mask + 1)
373         return CDE_OUT_OF_BOUNDS;
374
375     d->arr[d->end_pos] = (size_t) item;
376     d->end_pos = (d->end_pos + 1) & d->cap_mask;
377     d->size++;
378
379     return CDE_OK;
380 }
381
382 /* Pops a front element of this circular deque object and returns its value.
383  * This function doesn't perform any bounds checking. */
384 static void cdeque_pop_front_fast(struct cdeque* d, void** value) {
385     *value = (void*) d->arr[d->beg_pos];
386     d->beg_pos = (d->beg_pos + 1) & d->cap_mask;
387     d->size--;
388 }
389
390 /* Pops a front element of this cicrular deque object and returns its value.
391  * This function performs bounds checking. */
392 static int cdeque_pop_front(struct cdeque* d, void** value) {
393     if(!d || !value)
394         return CDE_PARAM;
395
396     if(d->size == 0)
397         return CDE_OUT_OF_BOUNDS;
398
399     cdeque_pop_front_fast(d, value);
400     return CDE_OK;
401 }
402
403 /* Convinience function to cast filter_info** to void **. */
404 static void** cdeque_filter_p(struct filter_info** f) {
405     return (void**) (size_t) f;
406 }
407
408 /* Convinience function to cast filter_info* to void *. */
409 static void* cdeque_filter(struct filter_info* f) {
410     return (void**) (size_t) f;
411 }
412
413 /* Destroys this circular deque object. Dellocates the memory of the collection
414  * buffer, but doesn't deallocate the memory of any pointer passed to this
415  * deque as a value. */
416 static void cdeque_free(struct cdeque* d) {
417     if(!d)
418         return;
419
420     if(!d->arr)
421         return;
422
423     free(d->arr);
424
425     d->arr = NULL;
426     d->beg_pos = -1;
427     d->end_pos = -1;
428     d->cap_mask = 0;
429 }
430
431 static inline struct rar5* get_context(struct archive_read* a) {
432     return (struct rar5*) a->format->data;
433 }
434
435 // TODO: make sure these functions return a little endian number
436
437 /* Convinience functions used by filter implementations. */
438
439 static uint32_t read_filter_data(struct rar5* rar, uint32_t offset) {
440     uint32_t* dptr = (uint32_t*) &rar->cstate.window_buf[offset];
441     // TODO: bswap if big endian
442     return *dptr;
443 }
444
445 static void write_filter_data(struct rar5* rar, uint32_t offset,
446         uint32_t value)
447 {
448     uint32_t* dptr = (uint32_t*) &rar->cstate.filtered_buf[offset];
449     // TODO: bswap if big endian
450     *dptr = value;
451 }
452
453 static void circular_memcpy(uint8_t* dst, uint8_t* window, const int mask,
454         int64_t start, int64_t end)
455 {
456     if((start & mask) > (end & mask)) {
457         ssize_t len1 = mask + 1 - (start & mask);
458         ssize_t len2 = end & mask;
459
460         memcpy(dst, &window[start & mask], len1);
461         memcpy(dst + len1, window, len2);
462     } else {
463         memcpy(dst, &window[start & mask], (size_t) (end - start));
464     }
465 }
466
467 /* Allocates a new filter descriptor and adds it to the filter array. */
468 static struct filter_info* add_new_filter(struct rar5* rar) {
469     struct filter_info* f =
470         (struct filter_info*) calloc(1, sizeof(struct filter_info));
471
472     if(!f) {
473         return NULL;
474     }
475
476     cdeque_push_back(&rar->cstate.filters, cdeque_filter(f));
477     return f;
478 }
479
480 static int run_delta_filter(struct rar5* rar, struct filter_info* flt) {
481     int i;
482     ssize_t dest_pos, src_pos = 0;
483
484     for(i = 0; i < flt->channels; i++) {
485         uint8_t prev_byte = 0;
486         for(dest_pos = i;
487                 dest_pos < flt->block_length;
488                 dest_pos += flt->channels)
489         {
490             uint8_t byte;
491
492             byte = rar->cstate.window_buf[(rar->cstate.solid_offset +
493                     flt->block_start + src_pos) & rar->cstate.window_mask];
494
495             prev_byte -= byte;
496             rar->cstate.filtered_buf[dest_pos] = prev_byte;
497             src_pos++;
498         }
499     }
500
501     return ARCHIVE_OK;
502 }
503
504 static int run_e8e9_filter(struct rar5* rar, struct filter_info* flt,
505         int extended)
506 {
507     const uint32_t file_size = 0x1000000;
508     ssize_t i;
509
510     circular_memcpy(rar->cstate.filtered_buf,
511         rar->cstate.window_buf,
512         rar->cstate.window_mask,
513         rar->cstate.solid_offset + flt->block_start,
514         rar->cstate.solid_offset + flt->block_start + flt->block_length);
515
516     for(i = 0; i < flt->block_length - 4;) {
517         uint8_t b = rar->cstate.window_buf[(rar->cstate.solid_offset +
518                 flt->block_start + i++) & rar->cstate.window_mask];
519
520         /* 0xE8 = x86's call <relative_addr_uint32> (function call)
521          * 0xE9 = x86's jmp <relative_addr_uint32> (unconditional jump) */
522         if(b == 0xE8 || (extended && b == 0xE9)) {
523
524             uint32_t addr;
525             uint32_t offset = (i + flt->block_start) % file_size;
526
527             addr = read_filter_data(rar, (rar->cstate.solid_offset +
528                         flt->block_start + i) & rar->cstate.window_mask);
529
530             if(addr & 0x80000000) {
531                 if(((addr + offset) & 0x80000000) == 0) {
532                     write_filter_data(rar, i, addr + file_size);
533                 }
534             } else {
535                 if((addr - file_size) & 0x80000000) {
536                     uint32_t naddr = addr - offset;
537                     write_filter_data(rar, i, naddr);
538                 }
539             }
540
541             i += 4;
542         }
543     }
544
545     return ARCHIVE_OK;
546 }
547
548 static int run_arm_filter(struct rar5* rar, struct filter_info* flt) {
549     ssize_t i = 0;
550     uint32_t offset;
551     const int mask = rar->cstate.window_mask;
552
553     circular_memcpy(rar->cstate.filtered_buf,
554         rar->cstate.window_buf,
555         rar->cstate.window_mask,
556         rar->cstate.solid_offset + flt->block_start,
557         rar->cstate.solid_offset + flt->block_start + flt->block_length);
558
559     for(i = 0; i < flt->block_length - 3; i += 4) {
560         uint8_t* b = &rar->cstate.window_buf[(rar->cstate.solid_offset +
561                 flt->block_start + i) & mask];
562
563         if(b[3] == 0xEB) {
564             /* 0xEB = ARM's BL (branch + link) instruction. */
565             offset = read_filter_data(rar, (rar->cstate.solid_offset +
566                         flt->block_start + i) & mask) & 0x00ffffff;
567
568             offset -= (uint32_t) ((i + flt->block_start) / 4);
569             offset = (offset & 0x00ffffff) | 0xeb000000;
570             write_filter_data(rar, i, offset);
571         }
572     }
573
574     return ARCHIVE_OK;
575 }
576
577 static int run_filter(struct archive_read* a, struct filter_info* flt) {
578     int ret;
579     struct rar5* rar = get_context(a);
580
581     free(rar->cstate.filtered_buf);
582
583     rar->cstate.filtered_buf = malloc(flt->block_length);
584     if(!rar->cstate.filtered_buf) {
585         archive_set_error(&a->archive, ENOMEM, "Can't allocate memory for "
586                 "filter data.");
587         return ARCHIVE_FATAL;
588     }
589
590     switch(flt->type) {
591         case FILTER_DELTA:
592             ret = run_delta_filter(rar, flt);
593             break;
594
595         case FILTER_E8:
596             /* fallthrough */
597         case FILTER_E8E9:
598             ret = run_e8e9_filter(rar, flt, flt->type == FILTER_E8E9);
599             break;
600
601         case FILTER_ARM:
602             ret = run_arm_filter(rar, flt);
603             break;
604
605         default:
606             archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
607                     "Unsupported filter type: 0x%02x", flt->type);
608             return ARCHIVE_FATAL;
609     }
610
611     if(ret != ARCHIVE_OK) {
612         /* Filter has failed. */
613         return ret;
614     }
615
616     if(ARCHIVE_OK != push_data_ready(a, rar, rar->cstate.filtered_buf,
617                 flt->block_length, rar->cstate.last_write_ptr))
618     {
619         archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
620                 "Stack overflow when submitting unpacked data");
621
622         return ARCHIVE_FATAL;
623     }
624
625     rar->cstate.last_write_ptr += flt->block_length;
626     return ARCHIVE_OK;
627 }
628
629 /* The `push_data` function submits the selected data range to the user.
630  * Next call of `use_data` will use the pointer, size and offset arguments
631  * that are specified here. These arguments are pushed to the FIFO stack here,
632  * and popped from the stack by the `use_data` function. */
633 static void push_data(struct archive_read* a, struct rar5* rar,
634         const uint8_t* buf, int64_t idx_begin, int64_t idx_end)
635 {
636     const int wmask = rar->cstate.window_mask;
637     const ssize_t solid_write_ptr = (rar->cstate.solid_offset +
638         rar->cstate.last_write_ptr) & wmask;
639
640     idx_begin += rar->cstate.solid_offset;
641     idx_end += rar->cstate.solid_offset;
642
643     /* Check if our unpacked data is wrapped inside the window circular buffer.
644      * If it's not wrapped, it can be copied out by using a single memcpy,
645      * but when it's wrapped, we need to copy the first part with one
646      * memcpy, and the second part with another memcpy. */
647
648     if((idx_begin & wmask) > (idx_end & wmask)) {
649         /* The data is wrapped (begin offset sis bigger than end offset). */
650         const ssize_t frag1_size = rar->cstate.window_size - (idx_begin & wmask);
651         const ssize_t frag2_size = idx_end & wmask;
652
653         /* Copy the first part of the buffer first. */
654         push_data_ready(a, rar, buf + solid_write_ptr, frag1_size,
655             rar->cstate.last_write_ptr);
656
657         /* Copy the second part of the buffer. */
658         push_data_ready(a, rar, buf, frag2_size,
659             rar->cstate.last_write_ptr + frag1_size);
660
661         rar->cstate.last_write_ptr += frag1_size + frag2_size;
662     } else {
663         /* Data is not wrapped, so we can just use one call to copy the
664          * data. */
665         push_data_ready(a, rar,
666             buf + solid_write_ptr,
667             (idx_end - idx_begin) & wmask,
668             rar->cstate.last_write_ptr);
669
670         rar->cstate.last_write_ptr += idx_end - idx_begin;
671     }
672 }
673
674 /* Convinience function that submits the data to the user. It uses the
675  * unpack window buffer as a source location. */
676 static void push_window_data(struct archive_read* a, struct rar5* rar,
677         int64_t idx_begin, int64_t idx_end)
678 {
679     push_data(a, rar, rar->cstate.window_buf, idx_begin, idx_end);
680 }
681
682 static int apply_filters(struct archive_read* a) {
683     struct filter_info* flt;
684     struct rar5* rar = get_context(a);
685     int ret;
686
687     rar->cstate.all_filters_applied = 0;
688
689     /* Get the first filter that can be applied to our data. The data needs to
690      * be fully unpacked before the filter can be run. */
691     if(CDE_OK ==
692             cdeque_front(&rar->cstate.filters, cdeque_filter_p(&flt)))
693     {
694         /* Check if our unpacked data fully covers this filter's range. */
695         if(rar->cstate.write_ptr > flt->block_start &&
696                 rar->cstate.write_ptr >= flt->block_start + flt->block_length)
697         {
698             /* Check if we have some data pending to be written right before
699              * the filter's start offset. */
700             if(rar->cstate.last_write_ptr == flt->block_start) {
701                 /* Run the filter specified by descriptor `flt`. */
702                 ret = run_filter(a, flt);
703                 if(ret != ARCHIVE_OK) {
704                     /* Filter failure, return error. */
705                     return ret;
706                 }
707
708                 /* Filter descriptor won't be needed anymore after it's used,
709                  * so remove it from the filter list and free its memory. */
710                 (void) cdeque_pop_front(&rar->cstate.filters,
711                         cdeque_filter_p(&flt));
712
713                 free(flt);
714             } else {
715                 /* We can't run filters yet, dump the memory right before the
716                  * filter. */
717                 push_window_data(a, rar, rar->cstate.last_write_ptr,
718                         flt->block_start);
719             }
720
721             /* Return 'filter applied or not needed' state to the caller. */
722             return ARCHIVE_RETRY;
723         }
724     }
725
726     rar->cstate.all_filters_applied = 1;
727     return ARCHIVE_OK;
728 }
729
730 static void dist_cache_push(struct rar5* rar, int value) {
731     int* q = rar->cstate.dist_cache;
732
733     q[3] = q[2];
734     q[2] = q[1];
735     q[1] = q[0];
736     q[0] = value;
737 }
738
739 static int dist_cache_touch(struct rar5* rar, int index) {
740     int* q = rar->cstate.dist_cache;
741     int i, dist = q[index];
742
743     for(i = index; i > 0; i--)
744         q[i] = q[i - 1];
745
746     q[0] = dist;
747     return dist;
748 }
749
750 static void free_filters(struct rar5* rar) {
751     struct cdeque* d = &rar->cstate.filters;
752
753     /* Free any remaining filters. All filters should be naturally consumed by
754      * the unpacking function, so remaining filters after unpacking normally
755      * mean that unpacking wasn't successfull. But still of course we shouldn't
756      * leak memory in such case. */
757
758     /* cdeque_size() is a fast operation, so we can use it as a loop
759      * expression. */
760     while(cdeque_size(d) > 0) {
761         struct filter_info* f = NULL;
762
763         /* Pop_front will also decrease the collection's size. */
764         if (CDE_OK == cdeque_pop_front(d, cdeque_filter_p(&f)))
765             free(f);
766     }
767
768     cdeque_clear(d);
769
770     /* Also clear out the variables needed for sanity checking. */
771     rar->cstate.last_block_start = 0;
772     rar->cstate.last_block_length = 0;
773 }
774
775 static void reset_file_context(struct rar5* rar) {
776     memset(&rar->file, 0, sizeof(rar->file));
777     blake2sp_init(&rar->file.b2state, 32);
778
779     if(rar->main.solid) {
780         rar->cstate.solid_offset += rar->cstate.write_ptr;
781     } else {
782         rar->cstate.solid_offset = 0;
783     }
784
785     rar->cstate.write_ptr = 0;
786     rar->cstate.last_write_ptr = 0;
787     rar->cstate.last_unstore_ptr = 0;
788
789     free_filters(rar);
790 }
791
792 static inline int get_archive_read(struct archive* a,
793         struct archive_read** ar)
794 {
795     *ar = (struct archive_read*) a;
796     archive_check_magic(a, ARCHIVE_READ_MAGIC, ARCHIVE_STATE_NEW,
797                         "archive_read_support_format_rar5");
798
799     return ARCHIVE_OK;
800 }
801
802 static int read_ahead(struct archive_read* a, size_t how_many,
803         const uint8_t** ptr)
804 {
805     if(!ptr)
806         return 0;
807
808     ssize_t avail = -1;
809     *ptr = __archive_read_ahead(a, how_many, &avail);
810
811     if(*ptr == NULL) {
812         return 0;
813     }
814
815     return 1;
816 }
817
818 static int consume(struct archive_read* a, int64_t how_many) {
819     int ret;
820
821     ret =
822         how_many == __archive_read_consume(a, how_many)
823         ? ARCHIVE_OK
824         : ARCHIVE_FATAL;
825
826     return ret;
827 }
828
829 /**
830  * Read a RAR5 variable sized numeric value. This value will be stored in
831  * `pvalue`. The `pvalue_len` argument points to a variable that will receive
832  * the byte count that was consumed in order to decode the `pvalue` value, plus
833  * one.
834  *
835  * pvalue_len is optional and can be NULL.
836  *
837  * NOTE: if `pvalue_len` is NOT NULL, the caller needs to manually consume
838  * the number of bytes that `pvalue_len` value contains. If the `pvalue_len`
839  * is NULL, this consuming operation is done automatically.
840  *
841  * Returns 1 if *pvalue was successfully read.
842  * Returns 0 if there was an error. In this case, *pvalue contains an
843  *           invalid value.
844  */
845
846 static int read_var(struct archive_read* a, uint64_t* pvalue,
847         uint64_t* pvalue_len)
848 {
849     uint64_t result = 0;
850     size_t shift, i;
851     const uint8_t* p;
852     uint8_t b;
853
854     /* We will read maximum of 8 bytes. We don't have to handle the situation
855      * to read the RAR5 variable-sized value stored at the end of the file,
856      * because such situation will never happen. */
857     if(!read_ahead(a, 8, &p))
858         return 0;
859
860     for(shift = 0, i = 0; i < 8; i++, shift += 7) {
861         b = p[i];
862
863         /* Strip the MSB from the input byte and add the resulting number
864          * to the `result`. */
865         result += (b & (uint64_t)0x7F) << shift;
866
867         /* MSB set to 1 means we need to continue decoding process. MSB set
868          * to 0 means we're done.
869          *
870          * This conditional checks for the second case. */
871         if((b & 0x80) == 0) {
872             if(pvalue) {
873                 *pvalue = result;
874             }
875
876             /* If the caller has passed the `pvalue_len` pointer, store the
877              * number of consumed bytes in it and do NOT consume those bytes,
878              * since the caller has all the information it needs to perform
879              * the consuming process itself. */
880             if(pvalue_len) {
881                 *pvalue_len = 1 + i;
882             } else {
883                 /* If the caller did not provide the `pvalue_len` pointer,
884                  * it will not have the possibility to advance the file
885                  * pointer, because it will not know how many bytes it needs
886                  * to consume. This is why we handle such situation here
887                  * autmatically. */
888                 if(ARCHIVE_OK != consume(a, 1 + i)) {
889                     return 0;
890                 }
891             }
892
893             /* End of decoding process, return success. */
894             return 1;
895         }
896     }
897
898     /* The decoded value takes the maximum number of 8 bytes. It's a maximum
899      * number of bytes, so end decoding process here even if the first bit
900      * of last byte is 1. */
901     if(pvalue) {
902         *pvalue = result;
903     }
904
905     if(pvalue_len) {
906         *pvalue_len = 9;
907     } else {
908         if(ARCHIVE_OK != consume(a, 9)) {
909             return 0;
910         }
911     }
912
913     return 1;
914 }
915
916 static int read_var_sized(struct archive_read* a, size_t* pvalue,
917         size_t* pvalue_len)
918 {
919     uint64_t v;
920     uint64_t v_size;
921
922     const int ret = pvalue_len
923                     ? read_var(a, &v, &v_size)
924                     : read_var(a, &v, NULL);
925
926     if(ret == 1 && pvalue) {
927         *pvalue = (size_t) v;
928     }
929
930     if(pvalue_len) {
931         /* Possible data truncation should be safe. */
932         *pvalue_len = (size_t) v_size;
933     }
934
935     return ret;
936 }
937
938 static int read_bits_32(struct rar5* rar, const uint8_t* p, uint32_t* value) {
939     uint32_t bits = p[rar->bits.in_addr] << 24;
940     bits |= p[rar->bits.in_addr + 1] << 16;
941     bits |= p[rar->bits.in_addr + 2] << 8;
942     bits |= p[rar->bits.in_addr + 3];
943     bits <<= rar->bits.bit_addr;
944     bits |= p[rar->bits.in_addr + 4] >> (8 - rar->bits.bit_addr);
945     *value = bits;
946     return ARCHIVE_OK;
947 }
948
949 static int read_bits_16(struct rar5* rar, const uint8_t* p, uint16_t* value) {
950     int bits = (int) p[rar->bits.in_addr] << 16;
951     bits |= (int) p[rar->bits.in_addr + 1] << 8;
952     bits |= (int) p[rar->bits.in_addr + 2];
953     bits >>= (8 - rar->bits.bit_addr);
954     *value = bits & 0xffff;
955     return ARCHIVE_OK;
956 }
957
958 static void skip_bits(struct rar5* rar, int bits) {
959     const int new_bits = rar->bits.bit_addr + bits;
960     rar->bits.in_addr += new_bits >> 3;
961     rar->bits.bit_addr = new_bits & 7;
962 }
963
964 /* n = up to 16 */
965 static int read_consume_bits(struct rar5* rar, const uint8_t* p, int n,
966         int* value)
967 {
968     uint16_t v;
969     int ret, num;
970
971     if(n == 0 || n > 16) {
972         /* This is a programmer error and should never happen in runtime. */
973         return ARCHIVE_FATAL;
974     }
975
976     ret = read_bits_16(rar, p, &v);
977     if(ret != ARCHIVE_OK)
978         return ret;
979
980     num = (int) v;
981     num >>= 16 - n;
982
983     skip_bits(rar, n);
984
985     if(value)
986         *value = num;
987
988     return ARCHIVE_OK;
989 }
990
991 static int read_u32(struct archive_read* a, uint32_t* pvalue) {
992     const uint8_t* p;
993     if(!read_ahead(a, 4, &p))
994         return 0;
995
996     *pvalue = *(const uint32_t*)p;
997
998     return ARCHIVE_OK == consume(a, 4) ? 1 : 0;
999 }
1000
1001 static int read_u64(struct archive_read* a, uint64_t* pvalue) {
1002     const uint8_t* p;
1003     if(!read_ahead(a, 8, &p))
1004         return 0;
1005
1006     *pvalue = *(const uint64_t*)p;
1007
1008     return ARCHIVE_OK == consume(a, 8) ? 1 : 0;
1009 }
1010
1011 static int bid_standard(struct archive_read* a) {
1012     const uint8_t* p;
1013
1014     if(!read_ahead(a, rar5_signature_size, &p))
1015         return -1;
1016
1017     if(!memcmp(rar5_signature, p, rar5_signature_size))
1018         return 30;
1019
1020     return -1;
1021 }
1022
1023 static int rar5_bid(struct archive_read* a, int best_bid) {
1024     int my_bid;
1025
1026     if(best_bid > 30)
1027         return -1;
1028
1029     my_bid = bid_standard(a);
1030     if(my_bid > -1) {
1031         return my_bid;
1032     }
1033
1034     return -1;
1035 }
1036
1037 static int rar5_options(struct archive_read *a, const char *key, const char *val) {
1038     (void) a;
1039     (void) key;
1040     (void) val;
1041
1042     /* No options supported in this version. Return the ARCHIVE_WARN code to
1043      * signal the options supervisor that the unpacker didn't handle setting
1044      * this option. */
1045
1046     return ARCHIVE_WARN;
1047 }
1048
1049 static void init_header(struct archive_read* a) {
1050     a->archive.archive_format = ARCHIVE_FORMAT_RAR_V5;
1051     a->archive.archive_format_name = "RAR5";
1052 }
1053
1054 enum HEADER_FLAGS {
1055     HFL_EXTRA_DATA = 0x0001, HFL_DATA = 0x0002, HFL_SKIP_IF_UNKNOWN = 0x0004,
1056     HFL_SPLIT_BEFORE = 0x0008, HFL_SPLIT_AFTER = 0x0010, HFL_CHILD = 0x0020,
1057     HFL_INHERITED = 0x0040
1058 };
1059
1060 static int process_main_locator_extra_block(struct archive_read* a,
1061         struct rar5* rar)
1062 {
1063     uint64_t locator_flags;
1064
1065     if(!read_var(a, &locator_flags, NULL)) {
1066         return ARCHIVE_EOF;
1067     }
1068
1069     enum LOCATOR_FLAGS {
1070         QLIST = 0x01, RECOVERY = 0x02,
1071     };
1072
1073     if(locator_flags & QLIST) {
1074         if(!read_var(a, &rar->qlist_offset, NULL)) {
1075             return ARCHIVE_EOF;
1076         }
1077
1078         /* qlist is not used */
1079     }
1080
1081     if(locator_flags & RECOVERY) {
1082         if(!read_var(a, &rar->rr_offset, NULL)) {
1083             return ARCHIVE_EOF;
1084         }
1085
1086         /* rr is not used */
1087     }
1088
1089     return ARCHIVE_OK;
1090 }
1091
1092 static int parse_file_extra_hash(struct archive_read* a, struct rar5* rar,
1093         ssize_t* extra_data_size)
1094 {
1095     size_t hash_type;
1096     size_t value_len;
1097
1098     if(!read_var_sized(a, &hash_type, &value_len))
1099         return ARCHIVE_EOF;
1100
1101     *extra_data_size -= value_len;
1102     if(ARCHIVE_OK != consume(a, value_len)) {
1103         return ARCHIVE_EOF;
1104     }
1105
1106     enum HASH_TYPE {
1107         BLAKE2sp = 0x00
1108     };
1109
1110     /* The file uses BLAKE2sp checksum algorithm instead of plain old
1111      * CRC32. */
1112     if(hash_type == BLAKE2sp) {
1113         const uint8_t* p;
1114         const int hash_size = sizeof(rar->file.blake2sp);
1115
1116         if(!read_ahead(a, hash_size, &p))
1117             return ARCHIVE_EOF;
1118
1119         rar->file.has_blake2 = 1;
1120         memcpy(&rar->file.blake2sp, p, hash_size);
1121
1122         if(ARCHIVE_OK != consume(a, hash_size)) {
1123             return ARCHIVE_EOF;
1124         }
1125
1126         *extra_data_size -= hash_size;
1127     } else {
1128         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1129                 "Unsupported hash type (0x%02x)", (int) hash_type);
1130         return ARCHIVE_FATAL;
1131     }
1132
1133     return ARCHIVE_OK;
1134 }
1135
1136 static uint64_t time_win_to_unix(uint64_t win_time) {
1137     const size_t ns_in_sec = 10000000;
1138     const uint64_t sec_to_unix = 11644473600LL;
1139     return win_time / ns_in_sec - sec_to_unix;
1140 }
1141
1142 static int parse_htime_item(struct archive_read* a, char unix_time,
1143         uint64_t* where, ssize_t* extra_data_size)
1144 {
1145     if(unix_time) {
1146         uint32_t time_val;
1147         if(!read_u32(a, &time_val))
1148             return ARCHIVE_EOF;
1149
1150         *extra_data_size -= 4;
1151         *where = (uint64_t) time_val;
1152     } else {
1153         uint64_t windows_time;
1154         if(!read_u64(a, &windows_time))
1155             return ARCHIVE_EOF;
1156
1157         *where = time_win_to_unix(windows_time);
1158         *extra_data_size -= 8;
1159     }
1160
1161     return ARCHIVE_OK;
1162 }
1163
1164 static int parse_file_extra_htime(struct archive_read* a,
1165         struct archive_entry* e, struct rar5* rar,
1166         ssize_t* extra_data_size)
1167 {
1168     char unix_time = 0;
1169     size_t flags;
1170     size_t value_len;
1171
1172     enum HTIME_FLAGS {
1173         IS_UNIX       = 0x01,
1174         HAS_MTIME     = 0x02,
1175         HAS_CTIME     = 0x04,
1176         HAS_ATIME     = 0x08,
1177         HAS_UNIX_NS   = 0x10,
1178     };
1179
1180     if(!read_var_sized(a, &flags, &value_len))
1181         return ARCHIVE_EOF;
1182
1183     *extra_data_size -= value_len;
1184     if(ARCHIVE_OK != consume(a, value_len)) {
1185         return ARCHIVE_EOF;
1186     }
1187
1188     unix_time = flags & IS_UNIX;
1189
1190     if(flags & HAS_MTIME) {
1191         parse_htime_item(a, unix_time, &rar->file.e_mtime, extra_data_size);
1192         archive_entry_set_mtime(e, rar->file.e_mtime, 0);
1193     }
1194
1195     if(flags & HAS_CTIME) {
1196         parse_htime_item(a, unix_time, &rar->file.e_ctime, extra_data_size);
1197         archive_entry_set_ctime(e, rar->file.e_ctime, 0);
1198     }
1199
1200     if(flags & HAS_ATIME) {
1201         parse_htime_item(a, unix_time, &rar->file.e_atime, extra_data_size);
1202         archive_entry_set_atime(e, rar->file.e_atime, 0);
1203     }
1204
1205     if(flags & HAS_UNIX_NS) {
1206         if(!read_u32(a, &rar->file.e_unix_ns))
1207             return ARCHIVE_EOF;
1208
1209         *extra_data_size -= 4;
1210     }
1211
1212     return ARCHIVE_OK;
1213 }
1214
1215 static int process_head_file_extra(struct archive_read* a,
1216         struct archive_entry* e, struct rar5* rar,
1217         ssize_t extra_data_size)
1218 {
1219     size_t extra_field_size;
1220     size_t extra_field_id;
1221     int ret = ARCHIVE_FATAL;
1222     size_t var_size;
1223
1224     enum EXTRA {
1225         CRYPT = 0x01, HASH = 0x02, HTIME = 0x03, VERSION_ = 0x04,
1226         REDIR = 0x05, UOWNER = 0x06, SUBDATA = 0x07
1227     };
1228
1229     while(extra_data_size > 0) {
1230         if(!read_var_sized(a, &extra_field_size, &var_size))
1231             return ARCHIVE_EOF;
1232
1233         extra_data_size -= var_size;
1234         if(ARCHIVE_OK != consume(a, var_size)) {
1235             return ARCHIVE_EOF;
1236         }
1237
1238         if(!read_var_sized(a, &extra_field_id, &var_size))
1239             return ARCHIVE_EOF;
1240
1241         extra_data_size -= var_size;
1242         if(ARCHIVE_OK != consume(a, var_size)) {
1243             return ARCHIVE_EOF;
1244         }
1245
1246         switch(extra_field_id) {
1247             case HASH:
1248                 ret = parse_file_extra_hash(a, rar, &extra_data_size);
1249                 break;
1250             case HTIME:
1251                 ret = parse_file_extra_htime(a, e, rar, &extra_data_size);
1252                 break;
1253             case CRYPT:
1254                 /* fallthrough */
1255             case VERSION_:
1256                 /* fallthrough */
1257             case REDIR:
1258                 /* fallthrough */
1259             case UOWNER:
1260                 /* fallthrough */
1261             case SUBDATA:
1262                 /* fallthrough */
1263             default:
1264                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1265                         "Unknown extra field in file/service block: 0x%02x",
1266                         (int) extra_field_id);
1267                 return ARCHIVE_FATAL;
1268         }
1269     }
1270
1271     if(ret != ARCHIVE_OK) {
1272         /* Attribute not implemented. */
1273         return ret;
1274     }
1275
1276     return ARCHIVE_OK;
1277 }
1278
1279 static int process_head_file(struct archive_read* a, struct rar5* rar,
1280         struct archive_entry* entry, size_t block_flags)
1281 {
1282     ssize_t extra_data_size = 0;
1283     size_t data_size, file_flags, file_attr, compression_info, host_os,
1284            name_size;
1285     uint64_t unpacked_size;
1286     uint32_t mtime = 0, crc;
1287     int c_method = 0, c_version = 0, is_dir;
1288     char name_utf8_buf[2048 * 4];
1289     const uint8_t* p;
1290
1291     archive_entry_clear(entry);
1292
1293     /* Do not reset file context if we're switching archives. */
1294     if(!rar->cstate.switch_multivolume) {
1295         reset_file_context(rar);
1296     }
1297
1298     if(block_flags & HFL_EXTRA_DATA) {
1299         size_t edata_size;
1300         if(!read_var_sized(a, &edata_size, NULL))
1301             return ARCHIVE_EOF;
1302
1303         /* Intentional type cast from unsigned to signed. */
1304         extra_data_size = (ssize_t) edata_size;
1305     }
1306
1307     if(block_flags & HFL_DATA) {
1308         if(!read_var_sized(a, &data_size, NULL))
1309             return ARCHIVE_EOF;
1310
1311         rar->file.bytes_remaining = data_size;
1312     } else {
1313         rar->file.bytes_remaining = 0;
1314
1315         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1316                 "no data found in file/service block");
1317         return ARCHIVE_FATAL;
1318     }
1319
1320     enum FILE_FLAGS {
1321         DIRECTORY = 0x0001, UTIME = 0x0002, CRC32 = 0x0004,
1322         UNKNOWN_UNPACKED_SIZE = 0x0008,
1323     };
1324
1325     enum COMP_INFO_FLAGS {
1326         SOLID = 0x0040,
1327     };
1328
1329     if(!read_var_sized(a, &file_flags, NULL))
1330         return ARCHIVE_EOF;
1331
1332     if(!read_var(a, &unpacked_size, NULL))
1333         return ARCHIVE_EOF;
1334
1335     if(file_flags & UNKNOWN_UNPACKED_SIZE) {
1336         archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
1337                 "Files with unknown unpacked size are not supported");
1338         return ARCHIVE_FATAL;
1339     }
1340
1341     is_dir = (int) (file_flags & DIRECTORY);
1342
1343     if(!read_var_sized(a, &file_attr, NULL))
1344         return ARCHIVE_EOF;
1345
1346     if(file_flags & UTIME) {
1347         if(!read_u32(a, &mtime))
1348             return ARCHIVE_EOF;
1349     }
1350
1351     if(file_flags & CRC32) {
1352         if(!read_u32(a, &crc))
1353             return ARCHIVE_EOF;
1354     }
1355
1356     if(!read_var_sized(a, &compression_info, NULL))
1357         return ARCHIVE_EOF;
1358
1359     c_method = (int) (compression_info >> 7) & 0x7;
1360     c_version = (int) (compression_info & 0x3f);
1361
1362     rar->cstate.window_size = is_dir ?
1363         0 :
1364         g_unpack_window_size << ((compression_info >> 10) & 15);
1365     rar->cstate.method = c_method;
1366     rar->cstate.version = c_version + 50;
1367
1368     rar->file.solid = (compression_info & SOLID) > 0;
1369     rar->file.service = 0;
1370
1371     if(!read_var_sized(a, &host_os, NULL))
1372         return ARCHIVE_EOF;
1373
1374     enum HOST_OS {
1375         HOST_WINDOWS = 0,
1376         HOST_UNIX = 1,
1377     };
1378
1379     if(host_os == HOST_WINDOWS) {
1380         /* Host OS is Windows */
1381
1382         unsigned short mode = 0660;
1383
1384         if(is_dir)
1385             mode |= AE_IFDIR;
1386         else
1387             mode |= AE_IFREG;
1388
1389         archive_entry_set_mode(entry, mode);
1390     } else if(host_os == HOST_UNIX) {
1391         /* Host OS is Unix */
1392         archive_entry_set_mode(entry, (unsigned short) file_attr);
1393     } else {
1394         /* Unknown host OS */
1395         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1396                 "Unsupported Host OS: 0x%02x", (int) host_os);
1397
1398         return ARCHIVE_FATAL;
1399     }
1400
1401     if(!read_var_sized(a, &name_size, NULL))
1402         return ARCHIVE_EOF;
1403
1404     if(!read_ahead(a, name_size, &p))
1405         return ARCHIVE_EOF;
1406
1407     if(name_size > 2047) {
1408         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1409                 "Filename is too long");
1410
1411         return ARCHIVE_FATAL;
1412     }
1413
1414     if(name_size == 0) {
1415         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1416                 "No filename specified");
1417
1418         return ARCHIVE_FATAL;
1419     }
1420
1421     memcpy(name_utf8_buf, p, name_size);
1422     name_utf8_buf[name_size] = 0;
1423     if(ARCHIVE_OK != consume(a, name_size)) {
1424         return ARCHIVE_EOF;
1425     }
1426
1427     if(extra_data_size > 0) {
1428         int ret = process_head_file_extra(a, entry, rar, extra_data_size);
1429
1430         /* Sanity check. */
1431         if(extra_data_size < 0) {
1432             archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
1433                     "File extra data size is not zero");
1434             return ARCHIVE_FATAL;
1435         }
1436
1437         if(ret != ARCHIVE_OK)
1438             return ret;
1439     }
1440
1441     if((file_flags & UNKNOWN_UNPACKED_SIZE) == 0) {
1442         rar->file.unpacked_size = (ssize_t) unpacked_size;
1443         archive_entry_set_size(entry, unpacked_size);
1444     }
1445
1446     if(file_flags & UTIME) {
1447         archive_entry_set_mtime(entry, (time_t) mtime, 0);
1448     }
1449
1450     if(file_flags & CRC32) {
1451         rar->file.stored_crc32 = crc;
1452     }
1453
1454     archive_entry_update_pathname_utf8(entry, name_utf8_buf);
1455
1456     if(!rar->cstate.switch_multivolume) {
1457         /* Do not reinitialize unpacking state if we're switching archives. */
1458         rar->cstate.block_parsing_finished = 1;
1459         rar->cstate.all_filters_applied = 1;
1460         rar->cstate.initialized = 0;
1461     }
1462
1463     if(rar->generic.split_before > 0) {
1464         /* If now we're standing on a header that has a 'split before' mark,
1465          * it means we're standing on a 'continuation' file header. Signal
1466          * the caller that if it wants to move to another file, it must call
1467          * rar5_read_header() function again. */
1468
1469         return ARCHIVE_RETRY;
1470     } else {
1471         return ARCHIVE_OK;
1472     }
1473 }
1474
1475 static int process_head_service(struct archive_read* a, struct rar5* rar,
1476         struct archive_entry* entry, size_t block_flags)
1477 {
1478     /* Process this SERVICE block the same way as FILE blocks. */
1479     int ret = process_head_file(a, rar, entry, block_flags);
1480     if(ret != ARCHIVE_OK)
1481         return ret;
1482
1483     rar->file.service = 1;
1484
1485     /* But skip the data part automatically. It's no use for the user anyway.
1486      * It contains only service data, not even needed to properly unpack the
1487      * file. */
1488     ret = rar5_read_data_skip(a);
1489     if(ret != ARCHIVE_OK)
1490         return ret;
1491
1492     /* After skipping, try parsing another block automatically. */
1493     return ARCHIVE_RETRY;
1494 }
1495
1496 static int process_head_main(struct archive_read* a, struct rar5* rar,
1497         struct archive_entry* entry, size_t block_flags)
1498 {
1499     (void) entry;
1500
1501     int ret;
1502     size_t extra_data_size,
1503         extra_field_size,
1504         extra_field_id,
1505         archive_flags;
1506
1507     if(block_flags & HFL_EXTRA_DATA) {
1508         if(!read_var_sized(a, &extra_data_size, NULL))
1509             return ARCHIVE_EOF;
1510     } else {
1511         extra_data_size = 0;
1512     }
1513
1514     if(!read_var_sized(a, &archive_flags, NULL)) {
1515         return ARCHIVE_EOF;
1516     }
1517
1518     enum MAIN_FLAGS {
1519         VOLUME = 0x0001,         /* multi-volume archive */
1520         VOLUME_NUMBER = 0x0002,  /* volume number, first vol doesnt have it */
1521         SOLID = 0x0004,          /* solid archive */
1522         PROTECT = 0x0008,        /* contains Recovery info */
1523         LOCK = 0x0010,           /* readonly flag, not used */
1524     };
1525
1526     rar->main.volume = (archive_flags & VOLUME) > 0;
1527     rar->main.solid = (archive_flags & SOLID) > 0;
1528
1529     if(archive_flags & VOLUME_NUMBER) {
1530         size_t v;
1531         if(!read_var_sized(a, &v, NULL)) {
1532             return ARCHIVE_EOF;
1533         }
1534
1535         rar->main.vol_no = (int) v;
1536     } else {
1537         rar->main.vol_no = 0;
1538     }
1539
1540     if(rar->vol.expected_vol_no > 0 &&
1541         rar->main.vol_no != rar->vol.expected_vol_no)
1542     {
1543         /* Returning EOF instead of FATAL because of strange libarchive
1544          * behavior. When opening multiple files via
1545          * archive_read_open_filenames(), after reading up the whole last file,
1546          * the __archive_read_ahead function wraps up to the first archive
1547          * instead of returning EOF. */
1548         return ARCHIVE_EOF;
1549     }
1550
1551     if(extra_data_size == 0) {
1552         /* Early return. */
1553         return ARCHIVE_OK;
1554     }
1555
1556     if(!read_var_sized(a, &extra_field_size, NULL)) {
1557         return ARCHIVE_EOF;
1558     }
1559
1560     if(!read_var_sized(a, &extra_field_id, NULL)) {
1561         return ARCHIVE_EOF;
1562     }
1563
1564     if(extra_field_size == 0) {
1565         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1566                 "Invalid extra field size");
1567         return ARCHIVE_FATAL;
1568     }
1569
1570     enum MAIN_EXTRA {
1571         // Just one attribute here.
1572         LOCATOR = 0x01,
1573     };
1574
1575     switch(extra_field_id) {
1576         case LOCATOR:
1577             ret = process_main_locator_extra_block(a, rar);
1578             if(ret != ARCHIVE_OK) {
1579                 /* Error while parsing main locator extra block. */
1580                 return ret;
1581             }
1582
1583             break;
1584         default:
1585             archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1586                     "Unsupported extra type (0x%02x)", (int) extra_field_id);
1587             return ARCHIVE_FATAL;
1588     }
1589
1590     return ARCHIVE_OK;
1591 }
1592
1593 static int scan_for_signature(struct archive_read* a);
1594
1595 /* Base block processing function. A 'base block' is a RARv5 header block
1596  * that tells the reader what kind of data is stored inside the block.
1597  *
1598  * From the birds-eye view a RAR file looks file this:
1599  *
1600  * <magic><base_block_1><base_block_2>...<base_block_n>
1601  *
1602  * There are a few types of base blocks. Those types are specified inside
1603  * the 'switch' statement in this function. For example purposes, I'll write
1604  * how a standard RARv5 file could look like here:
1605  *
1606  * <magic><MAIN><FILE><FILE><FILE><SERVICE><ENDARC>
1607  *
1608  * The structure above could describe an archive file with 3 files in it,
1609  * one service "QuickOpen" block (that is ignored by this parser), and an
1610  * end of file base block marker.
1611  *
1612  * If the file is stored in multiple archive files ("multiarchive"), it might
1613  * look like this:
1614  *
1615  * .part01.rar: <magic><MAIN><FILE><ENDARC>
1616  * .part02.rar: <magic><MAIN><FILE><ENDARC>
1617  * .part03.rar: <magic><MAIN><FILE><ENDARC>
1618  *
1619  * This example could describe 3 RAR files that contain ONE archived file.
1620  * Or it could describe 3 RAR files that contain 3 different files. Or 3
1621  * RAR files than contain 2 files. It all depends what metadata is stored in
1622  * the headers of <FILE> blocks.
1623  *
1624  * Each <FILE> block contains info about its size, the name of the file it's
1625  * storing inside, and whether this FILE block is a continuation block of
1626  * previous archive ('split before'), and is this FILE block should be
1627  * continued in another archive ('split after'). By parsing the 'split before'
1628  * and 'split after' flags, we're able to tell if multiple <FILE> base blocks
1629  * are describing one file, or multiple files (with the same filename, for
1630  * example).
1631  *
1632  * One thing to note is that if we're parsing the first <FILE> block, and
1633  * we see 'split after' flag, then we need to jump over to another <FILE>
1634  * block to be able to decompress rest of the data. To do this, we need
1635  * to skip the <ENDARC> block, then switch to another file, then skip the
1636  * <magic> block, <MAIN> block, and then we're standing on the proper
1637  * <FILE> block.
1638  */
1639
1640 static int process_base_block(struct archive_read* a,
1641         struct archive_entry* entry)
1642 {
1643     struct rar5* rar = get_context(a);
1644     uint32_t hdr_crc, computed_crc;
1645     size_t raw_hdr_size, hdr_size_len, hdr_size;
1646     size_t header_id, header_flags;
1647     const uint8_t* p;
1648     int ret;
1649
1650     /* Skip any unprocessed data for this file. */
1651     if(rar->file.bytes_remaining) {
1652         ret = rar5_read_data_skip(a);
1653         if(ret != ARCHIVE_OK) {
1654             return ret;
1655         }
1656     }
1657
1658     /* Read the expected CRC32 checksum. */
1659     if(!read_u32(a, &hdr_crc)) {
1660         return ARCHIVE_EOF;
1661     }
1662
1663     /* Read header size. */
1664     if(!read_var_sized(a, &raw_hdr_size, &hdr_size_len)) {
1665         return ARCHIVE_EOF;
1666     }
1667
1668     /* Sanity check, maximum header size for RAR5 is 2MB. */
1669     if(raw_hdr_size > (2 * 1024 * 1024)) {
1670         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1671                 "Base block header is too large");
1672
1673         return ARCHIVE_FATAL;
1674     }
1675
1676     hdr_size = raw_hdr_size + hdr_size_len;
1677
1678     /* Read the whole header data into memory, maximum memory use here is
1679      * 2MB. */
1680     if(!read_ahead(a, hdr_size, &p)) {
1681         return ARCHIVE_EOF;
1682     }
1683
1684     /* Verify the CRC32 of the header data. */
1685     computed_crc = (uint32_t) crc32(0, p, (int) hdr_size);
1686     if(computed_crc != hdr_crc) {
1687         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1688                 "Header CRC error");
1689
1690         return ARCHIVE_FATAL;
1691     }
1692
1693     /* If the checksum is OK, we proceed with parsing. */
1694     if(ARCHIVE_OK != consume(a, hdr_size_len)) {
1695         return ARCHIVE_EOF;
1696     }
1697
1698     if(!read_var_sized(a, &header_id, NULL))
1699         return ARCHIVE_EOF;
1700
1701     if(!read_var_sized(a, &header_flags, NULL))
1702         return ARCHIVE_EOF;
1703
1704     rar->generic.split_after = (header_flags & HFL_SPLIT_AFTER) > 0;
1705     rar->generic.split_before = (header_flags & HFL_SPLIT_BEFORE) > 0;
1706     rar->generic.size = hdr_size;
1707     rar->generic.last_header_id = header_id;
1708     rar->main.endarc = 0;
1709
1710     /* Those are possible header ids in RARv5. */
1711     enum HEADER_TYPE {
1712         HEAD_MARK    = 0x00, HEAD_MAIN  = 0x01, HEAD_FILE   = 0x02,
1713         HEAD_SERVICE = 0x03, HEAD_CRYPT = 0x04, HEAD_ENDARC = 0x05,
1714         HEAD_UNKNOWN = 0xff,
1715     };
1716
1717     switch(header_id) {
1718         case HEAD_MAIN:
1719             ret = process_head_main(a, rar, entry, header_flags);
1720
1721             /* Main header doesn't have any files in it, so it's pointless
1722              * to return to the caller. Retry to next header, which should be
1723              * HEAD_FILE/HEAD_SERVICE. */
1724             if(ret == ARCHIVE_OK)
1725                 return ARCHIVE_RETRY;
1726
1727             return ret;
1728         case HEAD_SERVICE:
1729             ret = process_head_service(a, rar, entry, header_flags);
1730             return ret;
1731         case HEAD_FILE:
1732             ret = process_head_file(a, rar, entry, header_flags);
1733             return ret;
1734         case HEAD_CRYPT:
1735             archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1736                     "Encryption is not supported");
1737             return ARCHIVE_FATAL;
1738         case HEAD_ENDARC:
1739             rar->main.endarc = 1;
1740
1741             /* After encountering an end of file marker, we need to take
1742              * into consideration if this archive is continued in another
1743              * file (i.e. is it part01.rar: is there a part02.rar?) */
1744             if(rar->main.volume) {
1745                 /* In case there is part02.rar, position the read pointer
1746                  * in a proper place, so we can resume parsing. */
1747
1748                 ret = scan_for_signature(a);
1749                 if(ret == ARCHIVE_FATAL) {
1750                     return ARCHIVE_EOF;
1751                 } else {
1752                     rar->vol.expected_vol_no = rar->main.vol_no + 1;
1753                     return ARCHIVE_OK;
1754                 }
1755             } else {
1756                 return ARCHIVE_EOF;
1757             }
1758         case HEAD_MARK:
1759             return ARCHIVE_EOF;
1760         default:
1761             if((header_flags & HFL_SKIP_IF_UNKNOWN) == 0) {
1762                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1763                         "Header type error");
1764                 return ARCHIVE_FATAL;
1765             } else {
1766                 /* If the block is marked as 'skip if unknown', do as the flag
1767                  * says: skip the block instead on failing on it. */
1768                 return ARCHIVE_RETRY;
1769             }
1770     }
1771
1772 #if !defined WIN32
1773     // Not reached.
1774     archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
1775             "Internal unpacker error");
1776     return ARCHIVE_FATAL;
1777 #endif
1778 }
1779
1780 static int skip_base_block(struct archive_read* a) {
1781     int ret;
1782     struct rar5* rar = get_context(a);
1783
1784     /* Create a new local archive_entry structure that will be operated on
1785      * by header reader; operations on this archive_entry will be discarded.
1786      */
1787     struct archive_entry* entry = archive_entry_new();
1788     ret = process_base_block(a, entry);
1789
1790     /* Discard operations on this archive_entry structure. */
1791     archive_entry_free(entry);
1792
1793     if(rar->generic.last_header_id == 2 && rar->generic.split_before > 0)
1794         return ARCHIVE_OK;
1795
1796     if(ret == ARCHIVE_OK)
1797         return ARCHIVE_RETRY;
1798     else
1799         return ret;
1800 }
1801
1802 static int rar5_read_header(struct archive_read *a,
1803         struct archive_entry *entry)
1804 {
1805     struct rar5* rar = get_context(a);
1806     int ret;
1807
1808     if(rar->header_initialized == 0) {
1809         init_header(a);
1810         rar->header_initialized = 1;
1811     }
1812
1813     if(rar->skipped_magic == 0) {
1814         if(ARCHIVE_OK != consume(a, rar5_signature_size)) {
1815             return ARCHIVE_EOF;
1816         }
1817
1818         rar->skipped_magic = 1;
1819     }
1820
1821     do {
1822         ret = process_base_block(a, entry);
1823     } while(ret == ARCHIVE_RETRY ||
1824             (rar->main.endarc > 0 && ret == ARCHIVE_OK));
1825
1826     return ret;
1827 }
1828
1829 static void init_unpack(struct rar5* rar) {
1830     rar->file.calculated_crc32 = 0;
1831     if (rar->cstate.window_size)
1832         rar->cstate.window_mask = rar->cstate.window_size - 1;
1833     else
1834         rar->cstate.window_mask = 0;
1835
1836     free(rar->cstate.window_buf);
1837
1838     free(rar->cstate.filtered_buf);
1839
1840     rar->cstate.window_buf = calloc(1, rar->cstate.window_size);
1841     rar->cstate.filtered_buf = calloc(1, rar->cstate.window_size);
1842
1843     rar->cstate.write_ptr = 0;
1844     rar->cstate.last_write_ptr = 0;
1845
1846     memset(&rar->cstate.bd, 0, sizeof(rar->cstate.bd));
1847     memset(&rar->cstate.ld, 0, sizeof(rar->cstate.ld));
1848     memset(&rar->cstate.dd, 0, sizeof(rar->cstate.dd));
1849     memset(&rar->cstate.ldd, 0, sizeof(rar->cstate.ldd));
1850     memset(&rar->cstate.rd, 0, sizeof(rar->cstate.rd));
1851 }
1852
1853 static void update_crc(struct rar5* rar, const uint8_t* p, size_t to_read) {
1854     int verify_crc;
1855
1856     if(rar->skip_mode) {
1857 #if defined CHECK_CRC_ON_SOLID_SKIP
1858         verify_crc = 1;
1859 #else
1860         verify_crc = 0;
1861 #endif
1862     } else
1863         verify_crc = 1;
1864
1865     if(verify_crc) {
1866         /* Don't update CRC32 if the file doesn't have the `stored_crc32` info
1867            filled in. */
1868         if(rar->file.stored_crc32 > 0) {
1869             rar->file.calculated_crc32 =
1870                 crc32(rar->file.calculated_crc32, p, to_read);
1871         }
1872
1873         /* Check if the file uses an optional BLAKE2sp checksum algorithm. */
1874         if(rar->file.has_blake2 > 0) {
1875             /* Return value of the `update` function is always 0, so we can
1876              * explicitly ignore it here. */
1877             (void) blake2sp_update(&rar->file.b2state, p, to_read);
1878         }
1879     }
1880 }
1881
1882 static int create_decode_tables(uint8_t* bit_length,
1883         struct decode_table* table,
1884         int size)
1885 {
1886     int code, upper_limit = 0, i, lc[16];
1887     uint32_t decode_pos_clone[rar5_countof(table->decode_pos)];
1888     ssize_t cur_len, quick_data_size;
1889
1890     memset(&lc, 0, sizeof(lc));
1891     memset(table->decode_num, 0, sizeof(table->decode_num));
1892     table->size = size;
1893     table->quick_bits = size == HUFF_NC ? 10 : 7;
1894
1895     for(i = 0; i < size; i++) {
1896         lc[bit_length[i] & 15]++;
1897     }
1898
1899     lc[0] = 0;
1900     table->decode_pos[0] = 0;
1901     table->decode_len[0] = 0;
1902
1903     for(i = 1; i < 16; i++) {
1904         upper_limit += lc[i];
1905
1906         table->decode_len[i] = upper_limit << (16 - i);
1907         table->decode_pos[i] = table->decode_pos[i - 1] + lc[i - 1];
1908
1909         upper_limit <<= 1;
1910     }
1911
1912     memcpy(decode_pos_clone, table->decode_pos, sizeof(decode_pos_clone));
1913
1914     for(i = 0; i < size; i++) {
1915         uint8_t clen = bit_length[i] & 15;
1916         if(clen > 0) {
1917             int last_pos = decode_pos_clone[clen];
1918             table->decode_num[last_pos] = i;
1919             decode_pos_clone[clen]++;
1920         }
1921     }
1922
1923     quick_data_size = 1 << table->quick_bits;
1924     cur_len = 1;
1925     for(code = 0; code < quick_data_size; code++) {
1926         int bit_field = code << (16 - table->quick_bits);
1927         int dist, pos;
1928
1929         while(cur_len < rar5_countof(table->decode_len) &&
1930                 bit_field >= table->decode_len[cur_len]) {
1931             cur_len++;
1932         }
1933
1934         table->quick_len[code] = (uint8_t) cur_len;
1935
1936         dist = bit_field - table->decode_len[cur_len - 1];
1937         dist >>= (16 - cur_len);
1938
1939         pos = table->decode_pos[cur_len] + dist;
1940         if(cur_len < rar5_countof(table->decode_pos) && pos < size) {
1941             table->quick_num[code] = table->decode_num[pos];
1942         } else {
1943             table->quick_num[code] = 0;
1944         }
1945     }
1946
1947     return ARCHIVE_OK;
1948 }
1949
1950 static int decode_number(struct archive_read* a, struct decode_table* table,
1951         const uint8_t* p, uint16_t* num)
1952 {
1953     int i, bits, dist;
1954     uint16_t bitfield;
1955     uint32_t pos;
1956     struct rar5* rar = get_context(a);
1957
1958     if(ARCHIVE_OK != read_bits_16(rar, p, &bitfield)) {
1959         return ARCHIVE_EOF;
1960     }
1961
1962     bitfield &= 0xfffe;
1963
1964     if(bitfield < table->decode_len[table->quick_bits]) {
1965         int code = bitfield >> (16 - table->quick_bits);
1966         skip_bits(rar, table->quick_len[code]);
1967         *num = table->quick_num[code];
1968         return ARCHIVE_OK;
1969     }
1970
1971     bits = 15;
1972
1973     for(i = table->quick_bits + 1; i < 15; i++) {
1974         if(bitfield < table->decode_len[i]) {
1975             bits = i;
1976             break;
1977         }
1978     }
1979
1980     skip_bits(rar, bits);
1981
1982     dist = bitfield - table->decode_len[bits - 1];
1983     dist >>= (16 - bits);
1984     pos = table->decode_pos[bits] + dist;
1985
1986     if(pos >= table->size)
1987         pos = 0;
1988
1989     *num = table->decode_num[pos];
1990     return ARCHIVE_OK;
1991 }
1992
1993 /* Reads and parses Huffman tables from the beginning of the block. */
1994 static int parse_tables(struct archive_read* a, struct rar5* rar,
1995         const uint8_t* p)
1996 {
1997     int ret, value, i, w, idx = 0;
1998     uint8_t bit_length[HUFF_BC],
1999         table[HUFF_TABLE_SIZE],
2000         nibble_mask = 0xF0,
2001         nibble_shift = 4;
2002
2003     enum { ESCAPE = 15 };
2004
2005     /* The data for table generation is compressed using a simple RLE-like
2006      * algorithm when storing zeroes, so we need to unpack it first. */
2007     for(w = 0, i = 0; w < HUFF_BC;) {
2008         value = (p[i] & nibble_mask) >> nibble_shift;
2009
2010         if(nibble_mask == 0x0F)
2011             ++i;
2012
2013         nibble_mask ^= 0xFF;
2014         nibble_shift ^= 4;
2015
2016         /* Values smaller than 15 is data, so we write it directly. Value 15
2017          * is a flag telling us that we need to unpack more bytes. */
2018         if(value == ESCAPE) {
2019             value = (p[i] & nibble_mask) >> nibble_shift;
2020             if(nibble_mask == 0x0F)
2021                 ++i;
2022             nibble_mask ^= 0xFF;
2023             nibble_shift ^= 4;
2024
2025             if(value == 0) {
2026                 /* We sometimes need to write the actual value of 15, so this
2027                  * case handles that. */
2028                 bit_length[w++] = ESCAPE;
2029             } else {
2030                 int k;
2031
2032                 /* Fill zeroes. */
2033                 for(k = 0; k < value + 2; k++) {
2034                     bit_length[w++] = 0;
2035                 }
2036             }
2037         } else {
2038             bit_length[w++] = value;
2039         }
2040     }
2041
2042     rar->bits.in_addr = i;
2043     rar->bits.bit_addr = nibble_shift ^ 4;
2044
2045     ret = create_decode_tables(bit_length, &rar->cstate.bd, HUFF_BC);
2046     if(ret != ARCHIVE_OK) {
2047         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2048                 "Decoding huffman tables failed");
2049         return ARCHIVE_FATAL;
2050     }
2051
2052     for(i = 0; i < HUFF_TABLE_SIZE;) {
2053         uint16_t num;
2054
2055         ret = decode_number(a, &rar->cstate.bd, p, &num);
2056         if(ret != ARCHIVE_OK) {
2057             archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2058                     "Decoding huffman tables failed");
2059             return ARCHIVE_FATAL;
2060         }
2061
2062         if(num < 16) {
2063             /* 0..15: store directly */
2064             table[i] = (uint8_t) num;
2065             i++;
2066             continue;
2067         }
2068
2069         if(num < 18) {
2070             /* 16..17: repeat previous code */
2071             uint16_t n;
2072             if(ARCHIVE_OK != read_bits_16(rar, p, &n))
2073                 return ARCHIVE_EOF;
2074
2075             if(num == 16) {
2076                 n >>= 13;
2077                 n += 3;
2078                 skip_bits(rar, 3);
2079             } else {
2080                 n >>= 9;
2081                 n += 11;
2082                 skip_bits(rar, 7);
2083             }
2084
2085             if(i > 0) {
2086                 while(n-- > 0 && i < HUFF_TABLE_SIZE) {
2087                     table[i] = table[i - 1];
2088                     i++;
2089                 }
2090             } else {
2091                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2092                         "Unexpected error when decoding huffman tables");
2093                 return ARCHIVE_FATAL;
2094             }
2095
2096             continue;
2097         }
2098
2099         /* other codes: fill with zeroes `n` times */
2100         uint16_t n;
2101         if(ARCHIVE_OK != read_bits_16(rar, p, &n))
2102             return ARCHIVE_EOF;
2103
2104         if(num == 18) {
2105             n >>= 13;
2106             n += 3;
2107             skip_bits(rar, 3);
2108         } else {
2109             n >>= 9;
2110             n += 11;
2111             skip_bits(rar, 7);
2112         }
2113
2114         while(n-- > 0 && i < HUFF_TABLE_SIZE)
2115             table[i++] = 0;
2116     }
2117
2118     ret = create_decode_tables(&table[idx], &rar->cstate.ld, HUFF_NC);
2119     if(ret != ARCHIVE_OK) {
2120         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2121                 "Failed to create literal table");
2122         return ARCHIVE_FATAL;
2123     }
2124
2125     idx += HUFF_NC;
2126
2127     ret = create_decode_tables(&table[idx], &rar->cstate.dd, HUFF_DC);
2128     if(ret != ARCHIVE_OK) {
2129         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2130                 "Failed to create distance table");
2131         return ARCHIVE_FATAL;
2132     }
2133
2134     idx += HUFF_DC;
2135
2136     ret = create_decode_tables(&table[idx], &rar->cstate.ldd, HUFF_LDC);
2137     if(ret != ARCHIVE_OK) {
2138         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2139                 "Failed to create lower bits of distances table");
2140         return ARCHIVE_FATAL;
2141     }
2142
2143     idx += HUFF_LDC;
2144
2145     ret = create_decode_tables(&table[idx], &rar->cstate.rd, HUFF_RC);
2146     if(ret != ARCHIVE_OK) {
2147         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2148                 "Failed to create repeating distances table");
2149         return ARCHIVE_FATAL;
2150     }
2151
2152     return ARCHIVE_OK;
2153 }
2154
2155 /* Parses the block header, verifies its CRC byte, and saves the header
2156  * fields inside the `hdr` pointer. */
2157 static int parse_block_header(struct archive_read* a, const uint8_t* p,
2158         ssize_t* block_size, struct compressed_block_header* hdr)
2159 {
2160     memcpy(hdr, p, sizeof(struct compressed_block_header));
2161
2162     if(hdr->block_flags.byte_count > 2) {
2163         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2164                 "Unsupported block header size (was %d, max is 2)",
2165                 hdr->block_flags.byte_count);
2166         return ARCHIVE_FATAL;
2167     }
2168
2169     /* This should probably use bit reader interface in order to be more
2170      * future-proof. */
2171     *block_size = 0;
2172     switch(hdr->block_flags.byte_count) {
2173         /* 1-byte block size */
2174         case 0:
2175             *block_size = *(const uint8_t*) &p[2];
2176             break;
2177
2178         /* 2-byte block size */
2179         case 1:
2180             *block_size = *(const uint16_t*) &p[2];
2181             break;
2182
2183         /* 3-byte block size */
2184         case 2:
2185             *block_size = *(const uint32_t*) &p[2];
2186             *block_size &= 0x00FFFFFF;
2187             break;
2188
2189         /* Other block sizes are not supported. This case is not reached,
2190          * because we have an 'if' guard before the switch that makes sure
2191          * of it. */
2192         default:
2193             return ARCHIVE_FATAL;
2194     }
2195
2196     /* Verify the block header checksum. 0x5A is a magic value and is always
2197      * constant. */
2198     uint8_t calculated_cksum = 0x5A
2199                                ^ (uint8_t) hdr->block_flags_u8
2200                                ^ (uint8_t) *block_size
2201                                ^ (uint8_t) (*block_size >> 8)
2202                                ^ (uint8_t) (*block_size >> 16);
2203
2204     if(calculated_cksum != hdr->block_cksum) {
2205         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2206                 "Block checksum error: got 0x%02x, expected 0x%02x",
2207                 hdr->block_cksum, calculated_cksum);
2208
2209         return ARCHIVE_FATAL;
2210     }
2211
2212     return ARCHIVE_OK;
2213 }
2214
2215 /* Convinience function used during filter processing. */
2216 static int parse_filter_data(struct rar5* rar, const uint8_t* p,
2217         uint32_t* filter_data)
2218 {
2219     int i, bytes;
2220     uint32_t data = 0;
2221
2222     if(ARCHIVE_OK != read_consume_bits(rar, p, 2, &bytes))
2223         return ARCHIVE_EOF;
2224
2225     bytes++;
2226
2227     for(i = 0; i < bytes; i++) {
2228         uint16_t byte;
2229
2230         if(ARCHIVE_OK != read_bits_16(rar, p, &byte)) {
2231             return ARCHIVE_EOF;
2232         }
2233
2234         data += (byte >> 8) << (i * 8);
2235         skip_bits(rar, 8);
2236     }
2237
2238     *filter_data = data;
2239     return ARCHIVE_OK;
2240 }
2241
2242 /* Function is used during sanity checking. */
2243 static int is_valid_filter_block_start(struct rar5* rar,
2244         uint32_t start)
2245 {
2246     const int64_t block_start = (ssize_t) start + rar->cstate.write_ptr;
2247     const int64_t last_bs = rar->cstate.last_block_start;
2248     const ssize_t last_bl = rar->cstate.last_block_length;
2249
2250     if(last_bs == 0 || last_bl == 0) {
2251         /* We didn't have any filters yet, so accept this offset. */
2252         return 1;
2253     }
2254
2255     if(block_start >= last_bs + last_bl) {
2256         /* Current offset is bigger than last block's end offset, so
2257          * accept current offset. */
2258         return 1;
2259     }
2260
2261     /* Any other case is not a normal situation and we should fail. */
2262     return 0;
2263 }
2264
2265 /* The function will create a new filter, read its parameters from the input
2266  * stream and add it to the filter collection. */
2267 static int parse_filter(struct archive_read* ar, const uint8_t* p) {
2268     uint32_t block_start, block_length;
2269     uint16_t filter_type;
2270     struct rar5* rar = get_context(ar);
2271
2272     /* Read the parameters from the input stream. */
2273     if(ARCHIVE_OK != parse_filter_data(rar, p, &block_start))
2274         return ARCHIVE_EOF;
2275
2276     if(ARCHIVE_OK != parse_filter_data(rar, p, &block_length))
2277         return ARCHIVE_EOF;
2278
2279     if(ARCHIVE_OK != read_bits_16(rar, p, &filter_type))
2280         return ARCHIVE_EOF;
2281
2282     filter_type >>= 13;
2283     skip_bits(rar, 3);
2284
2285     /* Perform some sanity checks on this filter parameters. Note that we
2286      * allow only DELTA, E8/E9 and ARM filters here, because rest of filters
2287      * are not used in RARv5. */
2288
2289     if(block_length < 4 ||
2290         block_length > 0x400000 ||
2291         filter_type > FILTER_ARM ||
2292         !is_valid_filter_block_start(rar, block_start))
2293     {
2294         archive_set_error(&ar->archive, ARCHIVE_ERRNO_FILE_FORMAT, "Invalid "
2295                 "filter encountered");
2296         return ARCHIVE_FATAL;
2297     }
2298
2299     /* Allocate a new filter. */
2300     struct filter_info* filt = add_new_filter(rar);
2301     if(filt == NULL) {
2302         archive_set_error(&ar->archive, ENOMEM, "Can't allocate memory for a "
2303                 "filter descriptor.");
2304         return ARCHIVE_FATAL;
2305     }
2306
2307     filt->type = filter_type;
2308     filt->block_start = rar->cstate.write_ptr + block_start;
2309     filt->block_length = block_length;
2310
2311     rar->cstate.last_block_start = filt->block_start;
2312     rar->cstate.last_block_length = filt->block_length;
2313
2314     /* Read some more data in case this is a DELTA filter. Other filter types
2315      * don't require any additional data over what was already read. */
2316     if(filter_type == FILTER_DELTA) {
2317         int channels;
2318
2319         if(ARCHIVE_OK != read_consume_bits(rar, p, 5, &channels))
2320             return ARCHIVE_EOF;
2321
2322         filt->channels = channels + 1;
2323     }
2324
2325     return ARCHIVE_OK;
2326 }
2327
2328 static int decode_code_length(struct rar5* rar, const uint8_t* p,
2329         uint16_t code)
2330 {
2331     int lbits, length = 2;
2332     if(code < 8) {
2333         lbits = 0;
2334         length += code;
2335     } else {
2336         lbits = code / 4 - 1;
2337         length += (4 | (code & 3)) << lbits;
2338     }
2339
2340     if(lbits > 0) {
2341         int add;
2342
2343         if(ARCHIVE_OK != read_consume_bits(rar, p, lbits, &add))
2344             return -1;
2345
2346         length += add;
2347     }
2348
2349     return length;
2350 }
2351
2352 static int copy_string(struct archive_read* a, int len, int dist) {
2353     struct rar5* rar = get_context(a);
2354     const int cmask = rar->cstate.window_mask;
2355     const int64_t write_ptr = rar->cstate.write_ptr + rar->cstate.solid_offset;
2356     int i;
2357
2358     /* The unpacker spends most of the time in this function. It would be
2359      * a good idea to introduce some optimizations here.
2360      *
2361      * Just remember that this loop treats buffers that overlap differently
2362      * than buffers that do not overlap. This is why a simple memcpy(3) call
2363      * will not be enough. */
2364
2365     for(i = 0; i < len; i++) {
2366         const ssize_t write_idx = (write_ptr + i) & cmask;
2367         const ssize_t read_idx = (write_ptr + i - dist) & cmask;
2368         rar->cstate.window_buf[write_idx] = rar->cstate.window_buf[read_idx];
2369     }
2370
2371     rar->cstate.write_ptr += len;
2372     return ARCHIVE_OK;
2373 }
2374
2375 static int do_uncompress_block(struct archive_read* a, const uint8_t* p) {
2376     struct rar5* rar = get_context(a);
2377     uint16_t num;
2378     int ret;
2379
2380     const int cmask = rar->cstate.window_mask;
2381     const struct compressed_block_header* hdr = &rar->last_block_hdr;
2382     const uint8_t bit_size = 1 + hdr->block_flags.bit_size;
2383
2384     while(1) {
2385         if(rar->cstate.write_ptr - rar->cstate.last_write_ptr >
2386                 (rar->cstate.window_size >> 1)) {
2387
2388             /* Don't allow growing data by more than half of the window size
2389              * at a time. In such case, break the loop; next call to this
2390              * function will continue processing from this moment. */
2391
2392             break;
2393         }
2394
2395         if(rar->bits.in_addr > rar->cstate.cur_block_size - 1 ||
2396                 (rar->bits.in_addr == rar->cstate.cur_block_size - 1 &&
2397                  rar->bits.bit_addr >= bit_size))
2398         {
2399             /* If the program counter is here, it means the function has
2400              * finished processing the block. */
2401             rar->cstate.block_parsing_finished = 1;
2402             break;
2403         }
2404
2405         /* Decode the next literal. */
2406         if(ARCHIVE_OK != decode_number(a, &rar->cstate.ld, p, &num)) {
2407             return ARCHIVE_EOF;
2408         }
2409
2410         /* Num holds a decompression literal, or 'command code'.
2411          *
2412          * - Values lower than 256 are just bytes. Those codes can be stored
2413          *   in the output buffer directly.
2414          *
2415          * - Code 256 defines a new filter, which is later used to transform
2416          *   the data block accordingly to the filter type. The data block
2417          *   needs to be fully uncompressed first.
2418          *
2419          * - Code bigger than 257 and smaller than 262 define a repetition
2420          *   pattern that should be copied from an already uncompressed chunk
2421          *   of data.
2422          */
2423
2424         if(num < 256) {
2425             /* Directly store the byte. */
2426
2427             int64_t write_idx = rar->cstate.solid_offset +
2428                 rar->cstate.write_ptr++;
2429
2430             rar->cstate.window_buf[write_idx & cmask] = (uint8_t) num;
2431             continue;
2432         } else if(num >= 262) {
2433             uint16_t dist_slot;
2434             int len = decode_code_length(rar, p, num - 262),
2435                 dbits,
2436                 dist = 1;
2437
2438             if(len == -1) {
2439                 archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
2440                     "Failed to decode the code length");
2441
2442                 return ARCHIVE_FATAL;
2443             }
2444
2445             if(ARCHIVE_OK != decode_number(a, &rar->cstate.dd, p, &dist_slot))
2446             {
2447                 archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
2448                     "Failed to decode the distance slot");
2449
2450                 return ARCHIVE_FATAL;
2451             }
2452
2453             if(dist_slot < 4) {
2454                 dbits = 0;
2455                 dist += dist_slot;
2456             } else {
2457                 dbits = dist_slot / 2 - 1;
2458                 dist += (2 | (dist_slot & 1)) << dbits;
2459             }
2460
2461             if(dbits > 0) {
2462                 if(dbits >= 4) {
2463                     uint32_t add = 0;
2464                     uint16_t low_dist;
2465
2466                     if(dbits > 4) {
2467                         if(ARCHIVE_OK != read_bits_32(rar, p, &add)) {
2468                             /* Return EOF if we can't read more data. */
2469                             return ARCHIVE_EOF;
2470                         }
2471
2472                         skip_bits(rar, dbits - 4);
2473                         add = (add >> (36 - dbits)) << 4;
2474                         dist += add;
2475                     }
2476
2477                     if(ARCHIVE_OK != decode_number(a, &rar->cstate.ldd, p,
2478                                 &low_dist))
2479                     {
2480                         archive_set_error(&a->archive,
2481                                 ARCHIVE_ERRNO_PROGRAMMER,
2482                                 "Failed to decode the distance slot");
2483
2484                         return ARCHIVE_FATAL;
2485                     }
2486
2487                     dist += low_dist;
2488                 } else {
2489                     /* dbits is one of [0,1,2,3] */
2490                     int add;
2491
2492                     if(ARCHIVE_OK != read_consume_bits(rar, p, dbits, &add)) {
2493                         /* Return EOF if we can't read more data. */
2494                         return ARCHIVE_EOF;
2495                     }
2496
2497                     dist += add;
2498                 }
2499             }
2500
2501             if(dist > 0x100) {
2502                 len++;
2503
2504                 if(dist > 0x2000) {
2505                     len++;
2506
2507                     if(dist > 0x40000) {
2508                         len++;
2509                     }
2510                 }
2511             }
2512
2513             dist_cache_push(rar, dist);
2514             rar->cstate.last_len = len;
2515
2516             if(ARCHIVE_OK != copy_string(a, len, dist))
2517                 return ARCHIVE_FATAL;
2518
2519             continue;
2520         } else if(num == 256) {
2521             /* Create a filter. */
2522             ret = parse_filter(a, p);
2523             if(ret != ARCHIVE_OK)
2524                 return ret;
2525
2526             continue;
2527         } else if(num == 257) {
2528             if(rar->cstate.last_len != 0) {
2529                 if(ARCHIVE_OK != copy_string(a, rar->cstate.last_len,
2530                             rar->cstate.dist_cache[0]))
2531                 {
2532                     return ARCHIVE_FATAL;
2533                 }
2534             }
2535
2536             continue;
2537         } else if(num < 262) {
2538             const int index = num - 258;
2539             const int dist = dist_cache_touch(rar, index);
2540
2541             uint16_t len_slot;
2542             int len;
2543
2544             if(ARCHIVE_OK != decode_number(a, &rar->cstate.rd, p, &len_slot)) {
2545                 return ARCHIVE_FATAL;
2546             }
2547
2548             len = decode_code_length(rar, p, len_slot);
2549             rar->cstate.last_len = len;
2550
2551             if(ARCHIVE_OK != copy_string(a, len, dist))
2552                 return ARCHIVE_FATAL;
2553
2554             continue;
2555         }
2556
2557         /* The program counter shouldn't reach here. */
2558         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
2559                 "Unsupported block code: 0x%02x", num);
2560
2561         return ARCHIVE_FATAL;
2562     }
2563
2564     return ARCHIVE_OK;
2565 }
2566
2567 /* Binary search for the RARv5 signature. */
2568 static int scan_for_signature(struct archive_read* a) {
2569     const uint8_t* p;
2570     const int chunk_size = 512;
2571     ssize_t i;
2572
2573     /* If we're here, it means we're on an 'unknown territory' data.
2574      * There's no indication what kind of data we're reading here. It could be
2575      * some text comment, any kind of binary data, digital sign, dragons, etc.
2576      *
2577      * We want to find a valid RARv5 magic header inside this unknown data. */
2578
2579     /* Is it possible in libarchive to just skip everything until the
2580      * end of the file? If so, it would be a better approach than the
2581      * current implementation of this function. */
2582
2583     while(1) {
2584         if(!read_ahead(a, chunk_size, &p))
2585             return ARCHIVE_EOF;
2586
2587         for(i = 0; i < chunk_size - rar5_signature_size; i++) {
2588             if(memcmp(&p[i], rar5_signature, rar5_signature_size) == 0) {
2589                 /* Consume the number of bytes we've used to search for the
2590                  * signature, as well as the number of bytes used by the
2591                  * signature itself. After this we should be standing on a
2592                  * valid base block header. */
2593                 (void) consume(a, i + rar5_signature_size);
2594                 return ARCHIVE_OK;
2595             }
2596         }
2597
2598         consume(a, chunk_size);
2599     }
2600
2601     return ARCHIVE_FATAL;
2602 }
2603
2604 /* This function will switch the multivolume archive file to another file,
2605  * i.e. from part03 to part 04. */
2606 static int advance_multivolume(struct archive_read* a) {
2607     int lret;
2608     struct rar5* rar = get_context(a);
2609
2610     /* A small state machine that will skip unnecessary data, needed to
2611      * switch from one multivolume to another. Such skipping is needed if
2612      * we want to be an stream-oriented (instead of file-oriented)
2613      * unpacker.
2614      *
2615      * The state machine starts with `rar->main.endarc` == 0. It also
2616      * assumes that current stream pointer points to some base block header.
2617      *
2618      * The `endarc` field is being set when the base block parsing function
2619      * encounters the 'end of archive' marker.
2620      */
2621
2622     while(1) {
2623         if(rar->main.endarc == 1) {
2624             rar->main.endarc = 0;
2625             while(ARCHIVE_RETRY == skip_base_block(a));
2626             break;
2627         } else {
2628             /* Skip current base block. In order to properly skip it,
2629              * we really need to simply parse it and discard the results. */
2630
2631             lret = skip_base_block(a);
2632
2633             /* The `skip_base_block` function tells us if we should continue
2634              * with skipping, or we should stop skipping. We're trying to skip
2635              * everything up to a base FILE block. */
2636
2637             if(lret != ARCHIVE_RETRY) {
2638                 /* If there was an error during skipping, or we have just
2639                  * skipped a FILE base block... */
2640
2641                 if(rar->main.endarc == 0) {
2642                     return lret;
2643                 } else {
2644                     continue;
2645                 }
2646             }
2647         }
2648     }
2649
2650     return ARCHIVE_OK;
2651 }
2652
2653 /* Merges the partial block from the first multivolume archive file, and
2654  * partial block from the second multivolume archive file. The result is
2655  * a chunk of memory containing the whole block, and the stream pointer
2656  * is advanced to the next block in the second multivolume archive file. */
2657 static int merge_block(struct archive_read* a, ssize_t block_size,
2658         const uint8_t** p)
2659 {
2660     struct rar5* rar = get_context(a);
2661     ssize_t cur_block_size, partial_offset = 0;
2662     const uint8_t* lp;
2663     int ret;
2664
2665     /* Set a flag that we're in the switching mode. */
2666     rar->cstate.switch_multivolume = 1;
2667
2668     /* Reallocate the memory which will hold the whole block. */
2669     if(rar->vol.push_buf)
2670         free((void*) rar->vol.push_buf);
2671
2672     /* Increasing the allocation block by 8 is due to bit reading functions,
2673      * which are using additional 2 or 4 bytes. Allocating the block size
2674      * by exact value would make bit reader perform reads from invalid memory
2675      * block when reading the last byte from the buffer. */
2676     rar->vol.push_buf = malloc(block_size + 8);
2677     if(!rar->vol.push_buf) {
2678         archive_set_error(&a->archive, ENOMEM, "Can't allocate memory for a "
2679                 "merge block buffer.");
2680         return ARCHIVE_FATAL;
2681     }
2682
2683     /* Valgrind complains if the extension block for bit reader is not
2684      * initialized, so initialize it. */
2685     memset(&rar->vol.push_buf[block_size], 0, 8);
2686
2687     /* A single block can span across multiple multivolume archive files,
2688      * so we use a loop here. This loop will consume enough multivolume
2689      * archive files until the whole block is read. */
2690
2691     while(1) {
2692         /* Get the size of current block chunk in this multivolume archive
2693          * file and read it. */
2694         cur_block_size =
2695             rar5_min(rar->file.bytes_remaining, block_size - partial_offset);
2696
2697         if(!read_ahead(a, cur_block_size, &lp))
2698             return ARCHIVE_EOF;
2699
2700         /* Sanity check; there should never be a situation where this function
2701          * reads more data than the block's size. */
2702         if(partial_offset + cur_block_size > block_size) {
2703             archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
2704                 "Consumed too much data when merging blocks.");
2705             return ARCHIVE_FATAL;
2706         }
2707
2708         /* Merge previous block chunk with current block chunk, or create
2709          * first block chunk if this is our first iteration. */
2710         memcpy(&rar->vol.push_buf[partial_offset], lp, cur_block_size);
2711
2712         /* Advance the stream read pointer by this block chunk size. */
2713         if(ARCHIVE_OK != consume(a, cur_block_size))
2714             return ARCHIVE_EOF;
2715
2716         /* Update the pointers. `partial_offset` contains information about
2717          * the sum of merged block chunks. */
2718         partial_offset += cur_block_size;
2719         rar->file.bytes_remaining -= cur_block_size;
2720
2721         /* If `partial_offset` is the same as `block_size`, this means we've
2722          * merged all block chunks and we have a valid full block. */
2723         if(partial_offset == block_size) {
2724             break;
2725         }
2726
2727         /* If we don't have any bytes to read, this means we should switch
2728          * to another multivolume archive file. */
2729         if(rar->file.bytes_remaining == 0) {
2730             ret = advance_multivolume(a);
2731             if(ret != ARCHIVE_OK)
2732                 return ret;
2733         }
2734     }
2735
2736     *p = rar->vol.push_buf;
2737
2738     /* If we're here, we can resume unpacking by processing the block pointed
2739      * to by the `*p` memory pointer. */
2740
2741     return ARCHIVE_OK;
2742 }
2743
2744 static int process_block(struct archive_read* a) {
2745     const uint8_t* p;
2746     struct rar5* rar = get_context(a);
2747     int ret;
2748
2749     /* If we don't have any data to be processed, this most probably means
2750      * we need to switch to the next volume. */
2751     if(rar->main.volume && rar->file.bytes_remaining == 0) {
2752         ret = advance_multivolume(a);
2753         if(ret != ARCHIVE_OK)
2754             return ret;
2755     }
2756
2757     if(rar->cstate.block_parsing_finished) {
2758         ssize_t block_size;
2759
2760         rar->cstate.block_parsing_finished = 0;
2761
2762         /* The header size won't be bigger than 6 bytes. */
2763         if(!read_ahead(a, 6, &p)) {
2764             /* Failed to prefetch data block header. */
2765             return ARCHIVE_EOF;
2766         }
2767
2768         /*
2769          * Read block_size by parsing block header. Validate the header by
2770          * calculating CRC byte stored inside the header. Size of the header is
2771          * not constant (block size can be stored either in 1 or 2 bytes),
2772          * that's why block size is left out from the `compressed_block_header`
2773          * structure and returned by `parse_block_header` as the second
2774          * argument. */
2775
2776         ret = parse_block_header(a, p, &block_size, &rar->last_block_hdr);
2777         if(ret != ARCHIVE_OK)
2778             return ret;
2779
2780         /* Skip block header. Next data is huffman tables, if present. */
2781         ssize_t to_skip = sizeof(struct compressed_block_header) +
2782             rar->last_block_hdr.block_flags.byte_count + 1;
2783
2784         if(ARCHIVE_OK != consume(a, to_skip))
2785             return ARCHIVE_EOF;
2786
2787         rar->file.bytes_remaining -= to_skip;
2788
2789         /* The block size gives information about the whole block size, but
2790          * the block could be stored in split form when using multi-volume
2791          * archives. In this case, the block size will be bigger than the
2792          * actual data stored in this file. Remaining part of the data will
2793          * be in another file. */
2794
2795         ssize_t cur_block_size =
2796             rar5_min(rar->file.bytes_remaining, block_size);
2797
2798         if(block_size > rar->file.bytes_remaining) {
2799             /* If current blocks' size is bigger than our data size, this
2800              * means we have a multivolume archive. In this case, skip
2801              * all base headers until the end of the file, proceed to next
2802              * "partXXX.rar" volume, find its signature, skip all headers up
2803              * to the first FILE base header, and continue from there.
2804              *
2805              * Note that `merge_block` will update the `rar` context structure
2806              * quite extensively. */
2807
2808             ret = merge_block(a, block_size, &p);
2809             if(ret != ARCHIVE_OK) {
2810                 return ret;
2811             }
2812
2813             cur_block_size = block_size;
2814
2815             /* Current stream pointer should be now directly *after* the
2816              * block that spanned through multiple archive files. `p` pointer
2817              * should have the data of the *whole* block (merged from
2818              * partial blocks stored in multiple archives files). */
2819         } else {
2820             rar->cstate.switch_multivolume = 0;
2821
2822             /* Read the whole block size into memory. This can take up to
2823              * 8 megabytes of memory in theoretical cases. Might be worth to
2824              * optimize this and use a standard chunk of 4kb's. */
2825
2826             if(!read_ahead(a, 4 + cur_block_size, &p)) {
2827                 /* Failed to prefetch block data. */
2828                 return ARCHIVE_EOF;
2829             }
2830         }
2831
2832         rar->cstate.block_buf = p;
2833         rar->cstate.cur_block_size = cur_block_size;
2834
2835         rar->bits.in_addr = 0;
2836         rar->bits.bit_addr = 0;
2837
2838         if(rar->last_block_hdr.block_flags.is_table_present) {
2839             /* Load Huffman tables. */
2840             ret = parse_tables(a, rar, p);
2841             if(ret != ARCHIVE_OK) {
2842                 /* Error during decompression of Huffman tables. */
2843                 return ret;
2844             }
2845         }
2846     } else {
2847         p = rar->cstate.block_buf;
2848     }
2849
2850     /* Uncompress the block, or a part of it, depending on how many bytes
2851      * will be generated by uncompressing the block.
2852      *
2853      * In case too many bytes will be generated, calling this function again
2854      * will resume the uncompression operation. */
2855     ret = do_uncompress_block(a, p);
2856     if(ret != ARCHIVE_OK) {
2857         return ret;
2858     }
2859
2860     if(rar->cstate.block_parsing_finished &&
2861             rar->cstate.switch_multivolume == 0 &&
2862             rar->cstate.cur_block_size > 0)
2863     {
2864         /* If we're processing a normal block, consume the whole block. We
2865          * can do this because we've already read the whole block to memory.
2866          */
2867         if(ARCHIVE_OK != consume(a, rar->cstate.cur_block_size))
2868             return ARCHIVE_FATAL;
2869
2870         rar->file.bytes_remaining -= rar->cstate.cur_block_size;
2871     } else if(rar->cstate.switch_multivolume) {
2872         /* Don't consume the block if we're doing multivolume processing.
2873          * The volume switching function will consume the proper count of
2874          * bytes instead. */
2875
2876         rar->cstate.switch_multivolume = 0;
2877     }
2878
2879     return ARCHIVE_OK;
2880 }
2881
2882 /* Pops the `buf`, `size` and `offset` from the "data ready" stack.
2883  *
2884  * Returns ARCHIVE_OK when those arguments can be used, ARCHIVE_RETRY
2885  * when there is no data on the stack. */
2886 static int use_data(struct rar5* rar, const void** buf, size_t* size,
2887         int64_t* offset)
2888 {
2889     int i;
2890
2891     for(i = 0; i < rar5_countof(rar->cstate.dready); i++) {
2892         struct data_ready *d = &rar->cstate.dready[i];
2893
2894         if(d->used) {
2895             if(buf)    *buf = d->buf;
2896             if(size)   *size = d->size;
2897             if(offset) *offset = d->offset;
2898
2899             d->used = 0;
2900             return ARCHIVE_OK;
2901         }
2902     }
2903
2904     return ARCHIVE_RETRY;
2905 }
2906
2907 /* Pushes the `buf`, `size` and `offset` arguments to the rar->cstate.dready
2908  * FIFO stack. Those values will be popped from this stack by the `use_data`
2909  * function. */
2910 static int push_data_ready(struct archive_read* a, struct rar5* rar,
2911         const uint8_t* buf, size_t size, int64_t offset)
2912 {
2913     int i;
2914
2915     /* Don't push if we're in skip mode. This is needed because solid
2916      * streams need full processing even if we're skipping data. After fully
2917      * processing the stream, we need to discard the generated bytes, because
2918      * we're interested only in the side effect: building up the internal
2919      * window circular buffer. This window buffer will be used later during
2920      * unpacking of requested data. */
2921     if(rar->skip_mode)
2922         return ARCHIVE_OK;
2923
2924     /* Sanity check. */
2925     if(offset != rar->file.last_offset + rar->file.last_size) {
2926         archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER, "Sanity "
2927                 "check error: output stream is not continuous");
2928         return ARCHIVE_FATAL;
2929     }
2930
2931     for(i = 0; i < rar5_countof(rar->cstate.dready); i++) {
2932         struct data_ready* d = &rar->cstate.dready[i];
2933         if(!d->used) {
2934             d->used = 1;
2935             d->buf = buf;
2936             d->size = size;
2937             d->offset = offset;
2938
2939             /* These fields are used only in sanity checking. */
2940             rar->file.last_offset = offset;
2941             rar->file.last_size = size;
2942
2943             /* Calculate the checksum of this new block before submitting
2944              * data to libarchive's engine. */
2945             update_crc(rar, d->buf, d->size);
2946
2947             return ARCHIVE_OK;
2948         }
2949     }
2950
2951     /* Program counter will reach this code if the `rar->cstate.data_ready`
2952      * stack will be filled up so that no new entries will be allowed. The
2953      * code shouldn't allow such situation to occur. So we treat this case
2954      * as an internal error. */
2955
2956     archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER, "Error: "
2957             "premature end of data_ready stack");
2958     return ARCHIVE_FATAL;
2959 }
2960
2961 /* This function uncompresses the data that is stored in the <FILE> base
2962  * block.
2963  *
2964  * The FILE base block looks like this:
2965  *
2966  * <header><huffman tables><block_1><block_2>...<block_n>
2967  *
2968  * The <header> is a block header, that is parsed in parse_block_header().
2969  * It's a "compressed_block_header" structure, containing metadata needed
2970  * to know when we should stop looking for more <block_n> blocks.
2971  *
2972  * <huffman tables> contain data needed to set up the huffman tables, needed
2973  * for the actual decompression.
2974  *
2975  * Each <block_n> consists of series of literals:
2976  *
2977  * <literal><literal><literal>...<literal>
2978  *
2979  * Those literals generate the uncompression data. They operate on a circular
2980  * buffer, sometimes writing raw data into it, sometimes referencing
2981  * some previous data inside this buffer, and sometimes declaring a filter
2982  * that will need to be executed on the data stored in the circular buffer.
2983  * It all depends on the literal that is used.
2984  *
2985  * Sometimes blocks produce output data, sometimes they don't. For example, for
2986  * some huge files that use lots of filters, sometimes a block is filled with
2987  * only filter declaration literals. Such blocks won't produce any data in the
2988  * circular buffer.
2989  *
2990  * Sometimes blocks will produce 4 bytes of data, and sometimes 1 megabyte,
2991  * because a literal can reference previously decompressed data. For example,
2992  * there can be a literal that says: 'append a byte 0xFE here', and after
2993  * it another literal can say 'append 1 megabyte of data from circular buffer
2994  * offset 0x12345'. This is how RAR format handles compressing repeated
2995  * patterns.
2996  *
2997  * The RAR compressor creates those literals and the actual efficiency of
2998  * compression depends on what those literals are. The literals can also
2999  * be seen as a kind of a non-turing-complete virtual machine that simply
3000  * tells the decompressor what it should do.
3001  * */
3002
3003 static int do_uncompress_file(struct archive_read* a) {
3004     struct rar5* rar = get_context(a);
3005     int ret;
3006     int64_t max_end_pos;
3007
3008     if(!rar->cstate.initialized) {
3009         /* Don't perform full context reinitialization if we're processing
3010          * a solid archive. */
3011         if(!rar->main.solid || !rar->cstate.window_buf) {
3012             init_unpack(rar);
3013         }
3014
3015         rar->cstate.initialized = 1;
3016     }
3017
3018     if(rar->cstate.all_filters_applied == 1) {
3019         /* We use while(1) here, but standard case allows for just 1 iteration.
3020          * The loop will iterate if process_block() didn't generate any data at
3021          * all. This can happen if the block contains only filter definitions
3022          * (this is common in big files). */
3023
3024         while(1) {
3025             ret = process_block(a);
3026             if(ret == ARCHIVE_EOF || ret == ARCHIVE_FATAL)
3027                 return ret;
3028
3029             if(rar->cstate.last_write_ptr == rar->cstate.write_ptr) {
3030                 /* The block didn't generate any new data, so just process
3031                  * a new block. */
3032                 continue;
3033             }
3034
3035             /* The block has generated some new data, so break the loop. */
3036             break;
3037         }
3038     }
3039
3040     /* Try to run filters. If filters won't be applied, it means that
3041      * insufficient data was generated. */
3042     ret = apply_filters(a);
3043     if(ret == ARCHIVE_RETRY) {
3044         return ARCHIVE_OK;
3045     } else if(ret == ARCHIVE_FATAL) {
3046         return ARCHIVE_FATAL;
3047     }
3048
3049     /* If apply_filters() will return ARCHIVE_OK, we can continue here. */
3050
3051     if(cdeque_size(&rar->cstate.filters) > 0) {
3052         /* Check if we can write something before hitting first filter. */
3053         struct filter_info* flt;
3054
3055         /* Get the block_start offset from the first filter. */
3056         if(CDE_OK != cdeque_front(&rar->cstate.filters, cdeque_filter_p(&flt)))
3057         {
3058             archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
3059                     "Can't read first filter");
3060             return ARCHIVE_FATAL;
3061         }
3062
3063         max_end_pos = rar5_min(flt->block_start, rar->cstate.write_ptr);
3064     } else {
3065         /* There are no filters defined, or all filters were applied. This
3066          * means we can just store the data without any postprocessing. */
3067         max_end_pos = rar->cstate.write_ptr;
3068     }
3069
3070     if(max_end_pos == rar->cstate.last_write_ptr) {
3071         /* We can't write anything yet. The block uncompression function did
3072          * not generate enough data, and no filter can be applied. At the same
3073          * time we don't have any data that can be stored without filter
3074          * postprocessing. This means we need to wait for more data to be
3075          * generated, so we can apply the filters.
3076          *
3077          * Signal the caller that we need more data to be able to do anything.
3078          */
3079         return ARCHIVE_RETRY;
3080     } else {
3081         /* We can write the data before hitting the first filter. So let's
3082          * do it. The push_window_data() function will effectively return
3083          * the selected data block to the user application. */
3084         push_window_data(a, rar, rar->cstate.last_write_ptr, max_end_pos);
3085         rar->cstate.last_write_ptr = max_end_pos;
3086     }
3087
3088     return ARCHIVE_OK;
3089 }
3090
3091 static int uncompress_file(struct archive_read* a) {
3092     int ret;
3093
3094     while(1) {
3095         /* Sometimes the uncompression function will return a 'retry' signal.
3096          * If this will happen, we have to retry the function. */
3097         ret = do_uncompress_file(a);
3098         if(ret != ARCHIVE_RETRY)
3099             return ret;
3100     }
3101 }
3102
3103
3104 static int do_unstore_file(struct archive_read* a,
3105                            struct rar5* rar,
3106                            const void** buf,
3107                            size_t* size,
3108                            int64_t* offset)
3109 {
3110     const uint8_t* p;
3111
3112     if(rar->file.bytes_remaining == 0 && rar->main.volume > 0 &&
3113             rar->generic.split_after > 0)
3114     {
3115         int ret;
3116
3117         rar->cstate.switch_multivolume = 1;
3118         ret = advance_multivolume(a);
3119         rar->cstate.switch_multivolume = 0;
3120
3121         if(ret != ARCHIVE_OK) {
3122             /* Failed to advance to next multivolume archive file. */
3123             return ret;
3124         }
3125     }
3126
3127     size_t to_read = rar5_min(rar->file.bytes_remaining, 64 * 1024);
3128
3129     if(!read_ahead(a, to_read, &p)) {
3130         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT, "I/O error "
3131                 "when unstoring file");
3132         return ARCHIVE_FATAL;
3133     }
3134
3135     if(ARCHIVE_OK != consume(a, to_read)) {
3136         return ARCHIVE_EOF;
3137     }
3138
3139     if(buf)    *buf = p;
3140     if(size)   *size = to_read;
3141     if(offset) *offset = rar->cstate.last_unstore_ptr;
3142
3143     rar->file.bytes_remaining -= to_read;
3144     rar->cstate.last_unstore_ptr += to_read;
3145
3146     update_crc(rar, p, to_read);
3147     return ARCHIVE_OK;
3148 }
3149
3150 static int do_unpack(struct archive_read* a, struct rar5* rar,
3151         const void** buf, size_t* size, int64_t* offset)
3152 {
3153     enum COMPRESSION_METHOD {
3154         STORE = 0, FASTEST = 1, FAST = 2, NORMAL = 3, GOOD = 4, BEST = 5
3155     };
3156
3157     if(rar->file.service > 0) {
3158         return do_unstore_file(a, rar, buf, size, offset);
3159     } else {
3160         switch(rar->cstate.method) {
3161             case STORE:
3162                 return do_unstore_file(a, rar, buf, size, offset);
3163             case FASTEST:
3164                 /* fallthrough */
3165             case FAST:
3166                 /* fallthrough */
3167             case NORMAL:
3168                 /* fallthrough */
3169             case GOOD:
3170                 /* fallthrough */
3171             case BEST:
3172                 return uncompress_file(a);
3173             default:
3174                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
3175                         "Compression method not supported: 0x%08x",
3176                         rar->cstate.method);
3177
3178                 return ARCHIVE_FATAL;
3179         }
3180     }
3181
3182 #if !defined WIN32
3183     /* Not reached. */
3184     return ARCHIVE_OK;
3185 #endif
3186 }
3187
3188 static int verify_checksums(struct archive_read* a) {
3189     int verify_crc;
3190     struct rar5* rar = get_context(a);
3191
3192     /* Check checksums only when actually unpacking the data. There's no need
3193      * to calculate checksum when we're skipping data in solid archives
3194      * (skipping in solid archives is the same thing as unpacking compressed
3195      * data and discarding the result). */
3196
3197     if(!rar->skip_mode) {
3198         /* Always check checkums if we're not in skip mode */
3199         verify_crc = 1;
3200     } else {
3201         /* We can override the logic above with a compile-time option
3202          * NO_CRC_ON_SOLID_SKIP. This option is used during debugging, and it
3203          * will check checksums of unpacked data even when we're skipping it.
3204          */
3205
3206 #if defined CHECK_CRC_ON_SOLID_SKIP
3207         /* Debug case */
3208         verify_crc = 1;
3209 #else
3210         /* Normal case */
3211         verify_crc = 0;
3212 #endif
3213     }
3214
3215     if(verify_crc) {
3216         /* During unpacking, on each unpacked block we're calling the
3217          * update_crc() function. Since we are here, the unpacking process is
3218          * already over and we can check if calculated checksum (CRC32 or
3219          * BLAKE2sp) is the same as what is stored in the archive.
3220          */
3221         if(rar->file.stored_crc32 > 0) {
3222             /* Check CRC32 only when the file contains a CRC32 value for this
3223              * file. */
3224
3225             if(rar->file.calculated_crc32 != rar->file.stored_crc32) {
3226                 /* Checksums do not match; the unpacked file is corrupted. */
3227
3228                 DEBUG_CODE {
3229                     printf("Checksum error: CRC32 (was: %08x, expected: %08x)\n",
3230                         rar->file.calculated_crc32, rar->file.stored_crc32);
3231                 }
3232
3233 #ifndef DONT_FAIL_ON_CRC_ERROR
3234                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
3235                                   "Checksum error: CRC32");
3236                 return ARCHIVE_FATAL;
3237 #endif
3238             } else {
3239                 DEBUG_CODE {
3240                     printf("Checksum OK: CRC32 (%08x/%08x)\n",
3241                         rar->file.stored_crc32,
3242                         rar->file.calculated_crc32);
3243                 }
3244             }
3245         }
3246
3247         if(rar->file.has_blake2 > 0) {
3248             /* BLAKE2sp is an optional checksum algorithm that is added to
3249              * RARv5 archives when using the `-htb` switch during creation of
3250              * archive.
3251              *
3252              * We now finalize the hash calculation by calling the `final`
3253              * function. This will generate the final hash value we can use to
3254              * compare it with the BLAKE2sp checksum that is stored in the
3255              * archive.
3256              *
3257              * The return value of this `final` function is not very helpful,
3258              * as it guards only against improper use. This is why we're
3259              * explicitly ignoring it. */
3260
3261             uint8_t b2_buf[32];
3262             (void) blake2sp_final(&rar->file.b2state, b2_buf, 32);
3263
3264             if(memcmp(&rar->file.blake2sp, b2_buf, 32) != 0) {
3265 #ifndef DONT_FAIL_ON_CRC_ERROR
3266                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
3267                                   "Checksum error: BLAKE2");
3268
3269                 return ARCHIVE_FATAL;
3270 #endif
3271             }
3272         }
3273     }
3274
3275     /* Finalization for this file has been successfully completed. */
3276     return ARCHIVE_OK;
3277 }
3278
3279 static int verify_global_checksums(struct archive_read* a) {
3280     return verify_checksums(a);
3281 }
3282
3283 static int rar5_read_data(struct archive_read *a, const void **buff,
3284                                   size_t *size, int64_t *offset) {
3285     int ret;
3286     struct rar5* rar = get_context(a);
3287
3288     if(!rar->skip_mode && (rar->cstate.last_write_ptr > rar->file.unpacked_size)) {
3289         archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
3290                 "Unpacker has written too many bytes");
3291         return ARCHIVE_FATAL;
3292     }
3293
3294     ret = use_data(rar, buff, size, offset);
3295     if(ret == ARCHIVE_OK)
3296         return ret;
3297
3298     ret = do_unpack(a, rar, buff, size, offset);
3299     if(ret != ARCHIVE_OK) {
3300         return ret;
3301     }
3302
3303     if(rar->file.bytes_remaining == 0 &&
3304             rar->cstate.last_write_ptr == rar->file.unpacked_size)
3305     {
3306         /* If all bytes of current file were processed, run finalization.
3307          *
3308          * Finalization will check checksum against proper values. If
3309          * some of the checksums will not match, we'll return an error
3310          * value in the last `archive_read_data` call to signal an error
3311          * to the user. */
3312
3313         return verify_global_checksums(a);
3314     }
3315
3316     return ARCHIVE_OK;
3317 }
3318
3319 static int rar5_read_data_skip(struct archive_read *a) {
3320     struct rar5* rar = get_context(a);
3321
3322     if(rar->main.solid) {
3323         /* In solid archives, instead of skipping the data, we need to extract
3324          * it, and dispose the result. The side effect of this operation will
3325          * be setting up the initial window buffer state needed to be able to
3326          * extract the selected file. */
3327
3328         int ret;
3329
3330         /* Make sure to process all blocks in the compressed stream. */
3331         while(rar->file.bytes_remaining > 0) {
3332             /* Setting the "skip mode" will allow us to skip checksum checks
3333              * during data skipping. Checking the checksum of skipped data
3334              * isn't really necessary and it's only slowing things down.
3335              *
3336              * This is incremented instead of setting to 1 because this data
3337              * skipping function can be called recursively. */
3338             rar->skip_mode++;
3339
3340             /* We're disposing 1 block of data, so we use triple NULLs in
3341              * arguments.
3342              */
3343             ret = rar5_read_data(a, NULL, NULL, NULL);
3344
3345             /* Turn off "skip mode". */
3346             rar->skip_mode--;
3347
3348             if(ret < 0) {
3349                 /* Propagate any potential error conditions to the caller. */
3350                 return ret;
3351             }
3352         }
3353     } else {
3354         /* In standard archives, we can just jump over the compressed stream.
3355          * Each file in non-solid archives starts from an empty window buffer.
3356          */
3357
3358         if(ARCHIVE_OK != consume(a, rar->file.bytes_remaining)) {
3359             return ARCHIVE_FATAL;
3360         }
3361
3362         rar->file.bytes_remaining = 0;
3363     }
3364
3365     return ARCHIVE_OK;
3366 }
3367
3368 static int64_t rar5_seek_data(struct archive_read *a, int64_t offset,
3369         int whence)
3370 {
3371     (void) a;
3372     (void) offset;
3373     (void) whence;
3374
3375     /* We're a streaming unpacker, and we don't support seeking. */
3376
3377     return ARCHIVE_FATAL;
3378 }
3379
3380 static int rar5_cleanup(struct archive_read *a) {
3381     struct rar5* rar = get_context(a);
3382
3383     free(rar->cstate.window_buf);
3384
3385     free(rar->cstate.filtered_buf);
3386
3387     free(rar->vol.push_buf);
3388
3389     free_filters(rar);
3390     cdeque_free(&rar->cstate.filters);
3391
3392     free(rar);
3393     a->format->data = NULL;
3394
3395     return ARCHIVE_OK;
3396 }
3397
3398 static int rar5_capabilities(struct archive_read * a) {
3399     (void) a;
3400     return 0;
3401 }
3402
3403 static int rar5_has_encrypted_entries(struct archive_read *_a) {
3404     (void) _a;
3405
3406     /* Unsupported for now. */
3407     return ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED;
3408 }
3409
3410 static int rar5_init(struct rar5* rar) {
3411     ssize_t i;
3412
3413     memset(rar, 0, sizeof(struct rar5));
3414
3415     /* Decrypt the magic signature pattern. Check the comment near the
3416      * `rar5_signature` symbol to read the rationale behind this. */
3417
3418     if(rar5_signature[0] == 243) {
3419         for(i = 0; i < rar5_signature_size; i++) {
3420             rar5_signature[i] ^= 0xA1;
3421         }
3422     }
3423
3424     if(CDE_OK != cdeque_init(&rar->cstate.filters, 8192))
3425         return ARCHIVE_FATAL;
3426
3427     return ARCHIVE_OK;
3428 }
3429
3430 int archive_read_support_format_rar5(struct archive *_a) {
3431     struct archive_read* ar;
3432     int ret;
3433     struct rar5* rar;
3434
3435     if(ARCHIVE_OK != (ret = get_archive_read(_a, &ar)))
3436         return ret;
3437
3438     rar = malloc(sizeof(*rar));
3439     if(rar == NULL) {
3440         archive_set_error(&ar->archive, ENOMEM, "Can't allocate rar5 data");
3441         return ARCHIVE_FATAL;
3442     }
3443
3444     if(ARCHIVE_OK != rar5_init(rar)) {
3445         archive_set_error(&ar->archive, ENOMEM, "Can't allocate rar5 filter "
3446                 "buffer");
3447         return ARCHIVE_FATAL;
3448     }
3449
3450     ret = __archive_read_register_format(ar,
3451                                          rar,
3452                                          "rar5",
3453                                          rar5_bid,
3454                                          rar5_options,
3455                                          rar5_read_header,
3456                                          rar5_read_data,
3457                                          rar5_read_data_skip,
3458                                          rar5_seek_data,
3459                                          rar5_cleanup,
3460                                          rar5_capabilities,
3461                                          rar5_has_encrypted_entries);
3462
3463     if(ret != ARCHIVE_OK) {
3464         (void) rar5_cleanup(ar);
3465     }
3466
3467     return ret;
3468 }