"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Small lzma deflate implementation. |
| 4 | * Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org> |
| 5 | * |
| 6 | * Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/) |
| 7 | * Copyright (C) 1999-2005 Igor Pavlov |
| 8 | * |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 9 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 10 | */ |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 11 | #include "libbb.h" |
Bernhard Reutner-Fischer | cfb53df | 2006-04-02 21:50:01 +0000 | [diff] [blame] | 12 | #include "unarchive.h" |
| 13 | |
Denis Vlasenko | e324184 | 2007-08-13 10:36:25 +0000 | [diff] [blame] | 14 | #if ENABLE_FEATURE_LZMA_FAST |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 15 | # define speed_inline ALWAYS_INLINE |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 16 | # define size_inline |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 17 | #else |
| 18 | # define speed_inline |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 19 | # define size_inline ALWAYS_INLINE |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 20 | #endif |
| 21 | |
| 22 | |
| 23 | typedef struct { |
| 24 | int fd; |
| 25 | uint8_t *ptr; |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 26 | |
| 27 | /* Was keeping rc on stack in unlzma and separately allocating buffer, |
| 28 | * but with "buffer 'attached to' allocated rc" code is smaller: */ |
| 29 | /* uint8_t *buffer; */ |
| 30 | #define RC_BUFFER ((uint8_t*)(rc+1)) |
| 31 | |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 32 | uint8_t *buffer_end; |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 33 | |
| 34 | /* Had provisions for variable buffer, but we don't need it here */ |
| 35 | /* int buffer_size; */ |
| 36 | #define RC_BUFFER_SIZE 0x10000 |
| 37 | |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 38 | uint32_t code; |
| 39 | uint32_t range; |
| 40 | uint32_t bound; |
| 41 | } rc_t; |
| 42 | |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 43 | #define RC_TOP_BITS 24 |
| 44 | #define RC_MOVE_BITS 5 |
| 45 | #define RC_MODEL_TOTAL_BITS 11 |
| 46 | |
| 47 | |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 48 | /* Called twice: once at startup (LZMA_FAST only) and once in rc_normalize() */ |
| 49 | static size_inline void rc_read(rc_t *rc) |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 50 | { |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 51 | int buffer_size = safe_read(rc->fd, RC_BUFFER, RC_BUFFER_SIZE); |
| 52 | if (buffer_size <= 0) |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 53 | bb_error_msg_and_die("unexpected EOF"); |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 54 | rc->ptr = RC_BUFFER; |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 55 | rc->buffer_end = RC_BUFFER + buffer_size; |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 56 | } |
| 57 | |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 58 | /* Called twice, but one callsite is in speed_inline'd rc_is_bit_1() */ |
| 59 | static void rc_do_normalize(rc_t *rc) |
| 60 | { |
| 61 | if (rc->ptr >= rc->buffer_end) |
| 62 | rc_read(rc); |
| 63 | rc->range <<= 8; |
| 64 | rc->code = (rc->code << 8) | *rc->ptr++; |
| 65 | } |
| 66 | |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 67 | /* Called once */ |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 68 | static ALWAYS_INLINE rc_t* rc_init(int fd) /*, int buffer_size) */ |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 69 | { |
| 70 | int i; |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 71 | rc_t *rc; |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 72 | |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 73 | rc = xmalloc(sizeof(*rc) + RC_BUFFER_SIZE); |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 74 | |
| 75 | rc->fd = fd; |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 76 | rc->ptr = rc->buffer_end; |
| 77 | |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 78 | for (i = 0; i < 5; i++) { |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 79 | #if ENABLE_FEATURE_LZMA_FAST |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 80 | if (rc->ptr >= rc->buffer_end) |
| 81 | rc_read(rc); |
| 82 | rc->code = (rc->code << 8) | *rc->ptr++; |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 83 | #else |
| 84 | rc_do_normalize(rc); |
| 85 | #endif |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 86 | } |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 87 | rc->range = 0xFFFFFFFF; |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 88 | return rc; |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 91 | /* Called once */ |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 92 | static ALWAYS_INLINE void rc_free(rc_t *rc) |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 93 | { |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 94 | free(rc); |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 97 | static ALWAYS_INLINE void rc_normalize(rc_t *rc) |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 98 | { |
| 99 | if (rc->range < (1 << RC_TOP_BITS)) { |
| 100 | rc_do_normalize(rc); |
| 101 | } |
| 102 | } |
| 103 | |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 104 | /* rc_is_bit_1 is called 9 times */ |
| 105 | static speed_inline int rc_is_bit_1(rc_t *rc, uint16_t *p) |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 106 | { |
| 107 | rc_normalize(rc); |
| 108 | rc->bound = *p * (rc->range >> RC_MODEL_TOTAL_BITS); |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 109 | if (rc->code < rc->bound) { |
| 110 | rc->range = rc->bound; |
| 111 | *p += ((1 << RC_MODEL_TOTAL_BITS) - *p) >> RC_MOVE_BITS; |
| 112 | return 0; |
| 113 | } |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 114 | rc->range -= rc->bound; |
| 115 | rc->code -= rc->bound; |
| 116 | *p -= *p >> RC_MOVE_BITS; |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 117 | return 1; |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /* Called 4 times in unlzma loop */ |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 121 | static speed_inline int rc_get_bit(rc_t *rc, uint16_t *p, int *symbol) |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 122 | { |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 123 | int ret = rc_is_bit_1(rc, p); |
| 124 | *symbol = *symbol * 2 + ret; |
| 125 | return ret; |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | /* Called once */ |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 129 | static ALWAYS_INLINE int rc_direct_bit(rc_t *rc) |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 130 | { |
| 131 | rc_normalize(rc); |
| 132 | rc->range >>= 1; |
| 133 | if (rc->code >= rc->range) { |
| 134 | rc->code -= rc->range; |
| 135 | return 1; |
| 136 | } |
| 137 | return 0; |
| 138 | } |
| 139 | |
| 140 | /* Called twice */ |
| 141 | static speed_inline void |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 142 | rc_bit_tree_decode(rc_t *rc, uint16_t *p, int num_levels, int *symbol) |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 143 | { |
| 144 | int i = num_levels; |
| 145 | |
| 146 | *symbol = 1; |
| 147 | while (i--) |
| 148 | rc_get_bit(rc, p + *symbol, symbol); |
| 149 | *symbol -= 1 << num_levels; |
| 150 | } |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 151 | |
| 152 | |
| 153 | typedef struct { |
| 154 | uint8_t pos; |
| 155 | uint32_t dict_size; |
| 156 | uint64_t dst_size; |
| 157 | } __attribute__ ((packed)) lzma_header_t; |
| 158 | |
| 159 | |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 160 | /* #defines will force compiler to compute/optimize each one with each usage. |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 161 | * Have heart and use enum instead. */ |
| 162 | enum { |
| 163 | LZMA_BASE_SIZE = 1846, |
| 164 | LZMA_LIT_SIZE = 768, |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 165 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 166 | LZMA_NUM_POS_BITS_MAX = 4, |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 167 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 168 | LZMA_LEN_NUM_LOW_BITS = 3, |
| 169 | LZMA_LEN_NUM_MID_BITS = 3, |
| 170 | LZMA_LEN_NUM_HIGH_BITS = 8, |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 171 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 172 | LZMA_LEN_CHOICE = 0, |
| 173 | LZMA_LEN_CHOICE_2 = (LZMA_LEN_CHOICE + 1), |
| 174 | LZMA_LEN_LOW = (LZMA_LEN_CHOICE_2 + 1), |
| 175 | LZMA_LEN_MID = (LZMA_LEN_LOW \ |
| 176 | + (1 << (LZMA_NUM_POS_BITS_MAX + LZMA_LEN_NUM_LOW_BITS))), |
| 177 | LZMA_LEN_HIGH = (LZMA_LEN_MID \ |
| 178 | + (1 << (LZMA_NUM_POS_BITS_MAX + LZMA_LEN_NUM_MID_BITS))), |
| 179 | LZMA_NUM_LEN_PROBS = (LZMA_LEN_HIGH + (1 << LZMA_LEN_NUM_HIGH_BITS)), |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 180 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 181 | LZMA_NUM_STATES = 12, |
| 182 | LZMA_NUM_LIT_STATES = 7, |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 183 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 184 | LZMA_START_POS_MODEL_INDEX = 4, |
| 185 | LZMA_END_POS_MODEL_INDEX = 14, |
| 186 | LZMA_NUM_FULL_DISTANCES = (1 << (LZMA_END_POS_MODEL_INDEX >> 1)), |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 187 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 188 | LZMA_NUM_POS_SLOT_BITS = 6, |
| 189 | LZMA_NUM_LEN_TO_POS_STATES = 4, |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 190 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 191 | LZMA_NUM_ALIGN_BITS = 4, |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 192 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 193 | LZMA_MATCH_MIN_LEN = 2, |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 194 | |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 195 | LZMA_IS_MATCH = 0, |
| 196 | LZMA_IS_REP = (LZMA_IS_MATCH + (LZMA_NUM_STATES << LZMA_NUM_POS_BITS_MAX)), |
| 197 | LZMA_IS_REP_G0 = (LZMA_IS_REP + LZMA_NUM_STATES), |
| 198 | LZMA_IS_REP_G1 = (LZMA_IS_REP_G0 + LZMA_NUM_STATES), |
| 199 | LZMA_IS_REP_G2 = (LZMA_IS_REP_G1 + LZMA_NUM_STATES), |
| 200 | LZMA_IS_REP_0_LONG = (LZMA_IS_REP_G2 + LZMA_NUM_STATES), |
| 201 | LZMA_POS_SLOT = (LZMA_IS_REP_0_LONG \ |
| 202 | + (LZMA_NUM_STATES << LZMA_NUM_POS_BITS_MAX)), |
| 203 | LZMA_SPEC_POS = (LZMA_POS_SLOT \ |
| 204 | + (LZMA_NUM_LEN_TO_POS_STATES << LZMA_NUM_POS_SLOT_BITS)), |
| 205 | LZMA_ALIGN = (LZMA_SPEC_POS \ |
| 206 | + LZMA_NUM_FULL_DISTANCES - LZMA_END_POS_MODEL_INDEX), |
| 207 | LZMA_LEN_CODER = (LZMA_ALIGN + (1 << LZMA_NUM_ALIGN_BITS)), |
| 208 | LZMA_REP_LEN_CODER = (LZMA_LEN_CODER + LZMA_NUM_LEN_PROBS), |
| 209 | LZMA_LITERAL = (LZMA_REP_LEN_CODER + LZMA_NUM_LEN_PROBS), |
| 210 | }; |
| 211 | |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 212 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 213 | IF_DESKTOP(long long) int FAST_FUNC |
Denis Vlasenko | c14d39e | 2007-06-08 13:05:39 +0000 | [diff] [blame] | 214 | unpack_lzma_stream(int src_fd, int dst_fd) |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 215 | { |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 216 | IF_DESKTOP(long long total_written = 0;) |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 217 | lzma_header_t header; |
| 218 | int lc, pb, lp; |
| 219 | uint32_t pos_state_mask; |
| 220 | uint32_t literal_pos_mask; |
| 221 | uint32_t pos; |
| 222 | uint16_t *p; |
| 223 | uint16_t *prob; |
| 224 | uint16_t *prob_lit; |
| 225 | int num_bits; |
| 226 | int num_probs; |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 227 | rc_t *rc; |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 228 | int i, mi; |
| 229 | uint8_t *buffer; |
| 230 | uint8_t previous_byte = 0; |
| 231 | size_t buffer_pos = 0, global_pos = 0; |
| 232 | int len = 0; |
| 233 | int state = 0; |
| 234 | uint32_t rep0 = 1, rep1 = 1, rep2 = 1, rep3 = 1; |
| 235 | |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 236 | xread(src_fd, &header, sizeof(header)); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 237 | |
| 238 | if (header.pos >= (9 * 5 * 5)) |
| 239 | bb_error_msg_and_die("bad header"); |
| 240 | mi = header.pos / 9; |
| 241 | lc = header.pos % 9; |
| 242 | pb = mi / 5; |
| 243 | lp = mi % 5; |
| 244 | pos_state_mask = (1 << pb) - 1; |
| 245 | literal_pos_mask = (1 << lp) - 1; |
| 246 | |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 247 | header.dict_size = SWAP_LE32(header.dict_size); |
| 248 | header.dst_size = SWAP_LE64(header.dst_size); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 249 | |
| 250 | if (header.dict_size == 0) |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 251 | header.dict_size++; |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 252 | |
| 253 | buffer = xmalloc(MIN(header.dst_size, header.dict_size)); |
| 254 | |
| 255 | num_probs = LZMA_BASE_SIZE + (LZMA_LIT_SIZE << (lc + lp)); |
| 256 | p = xmalloc(num_probs * sizeof(*p)); |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 257 | num_probs += LZMA_LITERAL - LZMA_BASE_SIZE; |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 258 | for (i = 0; i < num_probs; i++) |
| 259 | p[i] = (1 << RC_MODEL_TOTAL_BITS) >> 1; |
| 260 | |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 261 | rc = rc_init(src_fd); /*, RC_BUFFER_SIZE); */ |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 262 | |
| 263 | while (global_pos + buffer_pos < header.dst_size) { |
| 264 | int pos_state = (buffer_pos + global_pos) & pos_state_mask; |
| 265 | |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 266 | prob = p + LZMA_IS_MATCH + (state << LZMA_NUM_POS_BITS_MAX) + pos_state; |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 267 | if (!rc_is_bit_1(rc, prob)) { |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 268 | mi = 1; |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 269 | prob = (p + LZMA_LITERAL |
| 270 | + (LZMA_LIT_SIZE * ((((buffer_pos + global_pos) & literal_pos_mask) << lc) |
| 271 | + (previous_byte >> (8 - lc)) |
| 272 | ) |
| 273 | ) |
| 274 | ); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 275 | |
| 276 | if (state >= LZMA_NUM_LIT_STATES) { |
| 277 | int match_byte; |
| 278 | |
| 279 | pos = buffer_pos - rep0; |
| 280 | while (pos >= header.dict_size) |
| 281 | pos += header.dict_size; |
| 282 | match_byte = buffer[pos]; |
| 283 | do { |
| 284 | int bit; |
| 285 | |
| 286 | match_byte <<= 1; |
| 287 | bit = match_byte & 0x100; |
| 288 | prob_lit = prob + 0x100 + bit + mi; |
Denis Vlasenko | 444639c | 2008-03-02 18:56:23 +0000 | [diff] [blame] | 289 | bit ^= (rc_get_bit(rc, prob_lit, &mi) << 8); /* 0x100 or 0 */ |
| 290 | if (bit) |
| 291 | break; |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 292 | } while (mi < 0x100); |
| 293 | } |
| 294 | while (mi < 0x100) { |
| 295 | prob_lit = prob + mi; |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 296 | rc_get_bit(rc, prob_lit, &mi); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 297 | } |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 298 | |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 299 | state -= 3; |
| 300 | if (state < 4-3) |
| 301 | state = 0; |
| 302 | if (state >= 10-3) |
| 303 | state -= 6-3; |
| 304 | |
| 305 | previous_byte = (uint8_t) mi; |
| 306 | #if ENABLE_FEATURE_LZMA_FAST |
Denis Vlasenko | c0183e6 | 2008-03-18 03:13:25 +0000 | [diff] [blame] | 307 | one_byte1: |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 308 | buffer[buffer_pos++] = previous_byte; |
| 309 | if (buffer_pos == header.dict_size) { |
| 310 | buffer_pos = 0; |
| 311 | global_pos += header.dict_size; |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 312 | if (full_write(dst_fd, buffer, header.dict_size) != (ssize_t)header.dict_size) |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 313 | goto bad; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 314 | IF_DESKTOP(total_written += header.dict_size;) |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 315 | } |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 316 | #else |
| 317 | len = 1; |
Denis Vlasenko | c0183e6 | 2008-03-18 03:13:25 +0000 | [diff] [blame] | 318 | goto one_byte2; |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 319 | #endif |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 320 | } else { |
| 321 | int offset; |
| 322 | uint16_t *prob_len; |
| 323 | |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 324 | prob = p + LZMA_IS_REP + state; |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 325 | if (!rc_is_bit_1(rc, prob)) { |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 326 | rep3 = rep2; |
| 327 | rep2 = rep1; |
| 328 | rep1 = rep0; |
| 329 | state = state < LZMA_NUM_LIT_STATES ? 0 : 3; |
| 330 | prob = p + LZMA_LEN_CODER; |
| 331 | } else { |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 332 | prob += LZMA_IS_REP_G0 - LZMA_IS_REP; |
| 333 | if (!rc_is_bit_1(rc, prob)) { |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 334 | prob = (p + LZMA_IS_REP_0_LONG |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 335 | + (state << LZMA_NUM_POS_BITS_MAX) |
| 336 | + pos_state |
| 337 | ); |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 338 | if (!rc_is_bit_1(rc, prob)) { |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 339 | state = state < LZMA_NUM_LIT_STATES ? 9 : 11; |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 340 | #if ENABLE_FEATURE_LZMA_FAST |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 341 | pos = buffer_pos - rep0; |
| 342 | while (pos >= header.dict_size) |
| 343 | pos += header.dict_size; |
| 344 | previous_byte = buffer[pos]; |
Denis Vlasenko | c0183e6 | 2008-03-18 03:13:25 +0000 | [diff] [blame] | 345 | goto one_byte1; |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 346 | #else |
| 347 | len = 1; |
| 348 | goto string; |
| 349 | #endif |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 350 | } |
| 351 | } else { |
| 352 | uint32_t distance; |
| 353 | |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 354 | prob += LZMA_IS_REP_G1 - LZMA_IS_REP_G0; |
| 355 | distance = rep1; |
| 356 | if (rc_is_bit_1(rc, prob)) { |
| 357 | prob += LZMA_IS_REP_G2 - LZMA_IS_REP_G1; |
| 358 | distance = rep2; |
| 359 | if (rc_is_bit_1(rc, prob)) { |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 360 | distance = rep3; |
| 361 | rep3 = rep2; |
| 362 | } |
| 363 | rep2 = rep1; |
| 364 | } |
| 365 | rep1 = rep0; |
| 366 | rep0 = distance; |
| 367 | } |
| 368 | state = state < LZMA_NUM_LIT_STATES ? 8 : 11; |
| 369 | prob = p + LZMA_REP_LEN_CODER; |
| 370 | } |
| 371 | |
| 372 | prob_len = prob + LZMA_LEN_CHOICE; |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 373 | if (!rc_is_bit_1(rc, prob_len)) { |
| 374 | prob_len += LZMA_LEN_LOW - LZMA_LEN_CHOICE |
| 375 | + (pos_state << LZMA_LEN_NUM_LOW_BITS); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 376 | offset = 0; |
| 377 | num_bits = LZMA_LEN_NUM_LOW_BITS; |
| 378 | } else { |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 379 | prob_len += LZMA_LEN_CHOICE_2 - LZMA_LEN_CHOICE; |
| 380 | if (!rc_is_bit_1(rc, prob_len)) { |
| 381 | prob_len += LZMA_LEN_MID - LZMA_LEN_CHOICE_2 |
| 382 | + (pos_state << LZMA_LEN_NUM_MID_BITS); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 383 | offset = 1 << LZMA_LEN_NUM_LOW_BITS; |
| 384 | num_bits = LZMA_LEN_NUM_MID_BITS; |
| 385 | } else { |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 386 | prob_len += LZMA_LEN_HIGH - LZMA_LEN_CHOICE_2; |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 387 | offset = ((1 << LZMA_LEN_NUM_LOW_BITS) |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 388 | + (1 << LZMA_LEN_NUM_MID_BITS)); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 389 | num_bits = LZMA_LEN_NUM_HIGH_BITS; |
| 390 | } |
| 391 | } |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 392 | rc_bit_tree_decode(rc, prob_len, num_bits, &len); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 393 | len += offset; |
| 394 | |
| 395 | if (state < 4) { |
| 396 | int pos_slot; |
| 397 | |
| 398 | state += LZMA_NUM_LIT_STATES; |
Denis Vlasenko | c3fff87 | 2008-03-02 18:55:49 +0000 | [diff] [blame] | 399 | prob = p + LZMA_POS_SLOT + |
| 400 | ((len < LZMA_NUM_LEN_TO_POS_STATES ? len : |
| 401 | LZMA_NUM_LEN_TO_POS_STATES - 1) |
| 402 | << LZMA_NUM_POS_SLOT_BITS); |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 403 | rc_bit_tree_decode(rc, prob, |
| 404 | LZMA_NUM_POS_SLOT_BITS, &pos_slot); |
| 405 | rep0 = pos_slot; |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 406 | if (pos_slot >= LZMA_START_POS_MODEL_INDEX) { |
| 407 | num_bits = (pos_slot >> 1) - 1; |
| 408 | rep0 = 2 | (pos_slot & 1); |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 409 | prob = p + LZMA_ALIGN; |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 410 | if (pos_slot < LZMA_END_POS_MODEL_INDEX) { |
| 411 | rep0 <<= num_bits; |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 412 | prob += LZMA_SPEC_POS - LZMA_ALIGN - 1 + rep0 - pos_slot; |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 413 | } else { |
| 414 | num_bits -= LZMA_NUM_ALIGN_BITS; |
| 415 | while (num_bits--) |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 416 | rep0 = (rep0 << 1) | rc_direct_bit(rc); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 417 | rep0 <<= LZMA_NUM_ALIGN_BITS; |
| 418 | num_bits = LZMA_NUM_ALIGN_BITS; |
| 419 | } |
| 420 | i = 1; |
| 421 | mi = 1; |
| 422 | while (num_bits--) { |
Denis Vlasenko | 98b8e94 | 2007-01-05 13:59:05 +0000 | [diff] [blame] | 423 | if (rc_get_bit(rc, prob + mi, &mi)) |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 424 | rep0 |= i; |
| 425 | i <<= 1; |
| 426 | } |
Denis Vlasenko | 9ac3dc7 | 2009-04-25 12:19:35 +0000 | [diff] [blame] | 427 | } |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 428 | if (++rep0 == 0) |
| 429 | break; |
| 430 | } |
| 431 | |
| 432 | len += LZMA_MATCH_MIN_LEN; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 433 | IF_NOT_FEATURE_LZMA_FAST(string:) |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 434 | do { |
| 435 | pos = buffer_pos - rep0; |
| 436 | while (pos >= header.dict_size) |
| 437 | pos += header.dict_size; |
| 438 | previous_byte = buffer[pos]; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 439 | IF_NOT_FEATURE_LZMA_FAST(one_byte2:) |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 440 | buffer[buffer_pos++] = previous_byte; |
| 441 | if (buffer_pos == header.dict_size) { |
| 442 | buffer_pos = 0; |
| 443 | global_pos += header.dict_size; |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 444 | if (full_write(dst_fd, buffer, header.dict_size) != (ssize_t)header.dict_size) |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 445 | goto bad; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 446 | IF_DESKTOP(total_written += header.dict_size;) |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 447 | } |
| 448 | len--; |
| 449 | } while (len != 0 && buffer_pos < header.dst_size); |
| 450 | } |
| 451 | } |
| 452 | |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 453 | { |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 454 | IF_NOT_DESKTOP(int total_written = 0; /* success */) |
| 455 | IF_DESKTOP(total_written += buffer_pos;) |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 456 | if (full_write(dst_fd, buffer, buffer_pos) != (ssize_t)buffer_pos) { |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 457 | bad: |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 458 | total_written = -1; /* failure */ |
| 459 | } |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 460 | rc_free(rc); |
Denis Vlasenko | 2bbdda0 | 2008-06-27 15:48:45 +0000 | [diff] [blame] | 461 | free(p); |
| 462 | free(buffer); |
| 463 | return total_written; |
Denis Vlasenko | 3376298 | 2007-01-05 14:04:47 +0000 | [diff] [blame] | 464 | } |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 465 | } |