unxz.c revision 1.7.4.1 1 1.7.4.1 christos /* $NetBSD: unxz.c,v 1.7.4.1 2019/06/10 22:10:20 christos Exp $ */
2 1.5 christos
3 1.5 christos /*-
4 1.5 christos * Copyright (c) 2011 The NetBSD Foundation, Inc.
5 1.5 christos * All rights reserved.
6 1.5 christos *
7 1.5 christos * This code is derived from software contributed to The NetBSD Foundation
8 1.5 christos * by Christos Zoulas.
9 1.5 christos *
10 1.5 christos * Redistribution and use in source and binary forms, with or without
11 1.5 christos * modification, are permitted provided that the following conditions
12 1.5 christos * are met:
13 1.5 christos * 1. Redistributions of source code must retain the above copyright
14 1.5 christos * notice, this list of conditions and the following disclaimer.
15 1.5 christos * 2. Redistributions in binary form must reproduce the above copyright
16 1.5 christos * notice, this list of conditions and the following disclaimer in the
17 1.5 christos * documentation and/or other materials provided with the distribution.
18 1.5 christos *
19 1.5 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.5 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.5 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.5 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.5 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.5 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.5 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.5 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.5 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.5 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.5 christos * POSSIBILITY OF SUCH DAMAGE.
30 1.5 christos */
31 1.5 christos #include <sys/cdefs.h>
32 1.7.4.1 christos __RCSID("$NetBSD: unxz.c,v 1.7.4.1 2019/06/10 22:10:20 christos Exp $");
33 1.1 christos
34 1.1 christos #include <stdarg.h>
35 1.1 christos #include <errno.h>
36 1.1 christos #include <stdio.h>
37 1.1 christos #include <unistd.h>
38 1.1 christos #include <lzma.h>
39 1.1 christos
40 1.1 christos static off_t
41 1.1 christos unxz(int i, int o, char *pre, size_t prelen, off_t *bytes_in)
42 1.1 christos {
43 1.1 christos lzma_stream strm = LZMA_STREAM_INIT;
44 1.2 christos static const int flags = LZMA_TELL_UNSUPPORTED_CHECK|LZMA_CONCATENATED;
45 1.1 christos lzma_ret ret;
46 1.3 christos lzma_action action = LZMA_RUN;
47 1.3 christos off_t bytes_out, bp;
48 1.1 christos uint8_t ibuf[BUFSIZ];
49 1.1 christos uint8_t obuf[BUFSIZ];
50 1.1 christos
51 1.3 christos if (bytes_in == NULL)
52 1.3 christos bytes_in = &bp;
53 1.3 christos
54 1.1 christos strm.next_in = ibuf;
55 1.2 christos memcpy(ibuf, pre, prelen);
56 1.1 christos strm.avail_in = read(i, ibuf + prelen, sizeof(ibuf) - prelen);
57 1.1 christos if (strm.avail_in == (size_t)-1)
58 1.3 christos maybe_err("read failed");
59 1.7 mrg infile_newdata(strm.avail_in);
60 1.3 christos strm.avail_in += prelen;
61 1.3 christos *bytes_in = strm.avail_in;
62 1.1 christos
63 1.2 christos if ((ret = lzma_stream_decoder(&strm, UINT64_MAX, flags)) != LZMA_OK)
64 1.2 christos maybe_errx("Can't initialize decoder (%d)", ret);
65 1.2 christos
66 1.2 christos strm.next_out = NULL;
67 1.2 christos strm.avail_out = 0;
68 1.2 christos if ((ret = lzma_code(&strm, LZMA_RUN)) != LZMA_OK)
69 1.2 christos maybe_errx("Can't read headers (%d)", ret);
70 1.1 christos
71 1.3 christos bytes_out = 0;
72 1.1 christos strm.next_out = obuf;
73 1.1 christos strm.avail_out = sizeof(obuf);
74 1.1 christos
75 1.1 christos for (;;) {
76 1.7 mrg check_siginfo();
77 1.1 christos if (strm.avail_in == 0) {
78 1.1 christos strm.next_in = ibuf;
79 1.1 christos strm.avail_in = read(i, ibuf, sizeof(ibuf));
80 1.3 christos switch (strm.avail_in) {
81 1.3 christos case (size_t)-1:
82 1.3 christos maybe_err("read failed");
83 1.3 christos /*NOTREACHED*/
84 1.3 christos case 0:
85 1.3 christos action = LZMA_FINISH;
86 1.3 christos break;
87 1.3 christos default:
88 1.7 mrg infile_newdata(strm.avail_in);
89 1.3 christos *bytes_in += strm.avail_in;
90 1.3 christos break;
91 1.3 christos }
92 1.1 christos }
93 1.1 christos
94 1.3 christos ret = lzma_code(&strm, action);
95 1.1 christos
96 1.1 christos // Write and check write error before checking decoder error.
97 1.1 christos // This way as much data as possible gets written to output
98 1.1 christos // even if decoder detected an error.
99 1.1 christos if (strm.avail_out == 0 || ret != LZMA_OK) {
100 1.1 christos const size_t write_size = sizeof(obuf) - strm.avail_out;
101 1.1 christos
102 1.1 christos if (write(o, obuf, write_size) != (ssize_t)write_size)
103 1.1 christos maybe_err("write failed");
104 1.1 christos
105 1.1 christos strm.next_out = obuf;
106 1.1 christos strm.avail_out = sizeof(obuf);
107 1.3 christos bytes_out += write_size;
108 1.1 christos }
109 1.1 christos
110 1.1 christos if (ret != LZMA_OK) {
111 1.1 christos if (ret == LZMA_STREAM_END) {
112 1.1 christos // Check that there's no trailing garbage.
113 1.1 christos if (strm.avail_in != 0 || read(i, ibuf, 1))
114 1.1 christos ret = LZMA_DATA_ERROR;
115 1.1 christos else {
116 1.1 christos lzma_end(&strm);
117 1.3 christos return bytes_out;
118 1.1 christos }
119 1.1 christos }
120 1.1 christos
121 1.1 christos const char *msg;
122 1.1 christos switch (ret) {
123 1.1 christos case LZMA_MEM_ERROR:
124 1.1 christos msg = strerror(ENOMEM);
125 1.1 christos break;
126 1.1 christos
127 1.1 christos case LZMA_FORMAT_ERROR:
128 1.1 christos msg = "File format not recognized";
129 1.1 christos break;
130 1.1 christos
131 1.1 christos case LZMA_OPTIONS_ERROR:
132 1.1 christos // FIXME: Better message?
133 1.1 christos msg = "Unsupported compression options";
134 1.1 christos break;
135 1.1 christos
136 1.1 christos case LZMA_DATA_ERROR:
137 1.1 christos msg = "File is corrupt";
138 1.1 christos break;
139 1.1 christos
140 1.1 christos case LZMA_BUF_ERROR:
141 1.1 christos msg = "Unexpected end of input";
142 1.1 christos break;
143 1.1 christos
144 1.1 christos case LZMA_MEMLIMIT_ERROR:
145 1.1 christos msg = "Reached memory limit";
146 1.1 christos break;
147 1.1 christos
148 1.1 christos default:
149 1.4 christos maybe_errx("Unknown error (%d)", ret);
150 1.1 christos break;
151 1.1 christos }
152 1.4 christos maybe_errx("%s", msg);
153 1.1 christos
154 1.1 christos }
155 1.1 christos }
156 1.1 christos }
157 1.7.4.1 christos
158 1.7.4.1 christos #include <stdbool.h>
159 1.7.4.1 christos
160 1.7.4.1 christos /*
161 1.7.4.1 christos * Copied various bits and pieces from xz support code or brute force
162 1.7.4.1 christos * replacements.
163 1.7.4.1 christos */
164 1.7.4.1 christos
165 1.7.4.1 christos #define my_min(A,B) ((A)<(B)?(A):(B))
166 1.7.4.1 christos
167 1.7.4.1 christos // Some systems have suboptimal BUFSIZ. Use a bit bigger value on them.
168 1.7.4.1 christos // We also need that IO_BUFFER_SIZE is a multiple of 8 (sizeof(uint64_t))
169 1.7.4.1 christos #if BUFSIZ <= 1024
170 1.7.4.1 christos # define IO_BUFFER_SIZE 8192
171 1.7.4.1 christos #else
172 1.7.4.1 christos # define IO_BUFFER_SIZE (BUFSIZ & ~7U)
173 1.7.4.1 christos #endif
174 1.7.4.1 christos
175 1.7.4.1 christos /// is_sparse() accesses the buffer as uint64_t for maximum speed.
176 1.7.4.1 christos /// Use an union to make sure that the buffer is properly aligned.
177 1.7.4.1 christos typedef union {
178 1.7.4.1 christos uint8_t u8[IO_BUFFER_SIZE];
179 1.7.4.1 christos uint32_t u32[IO_BUFFER_SIZE / sizeof(uint32_t)];
180 1.7.4.1 christos uint64_t u64[IO_BUFFER_SIZE / sizeof(uint64_t)];
181 1.7.4.1 christos } io_buf;
182 1.7.4.1 christos
183 1.7.4.1 christos
184 1.7.4.1 christos static bool
185 1.7.4.1 christos io_pread(int fd, io_buf *buf, size_t size, off_t pos)
186 1.7.4.1 christos {
187 1.7.4.1 christos // Using lseek() and read() is more portable than pread() and
188 1.7.4.1 christos // for us it is as good as real pread().
189 1.7.4.1 christos if (lseek(fd, pos, SEEK_SET) != pos) {
190 1.7.4.1 christos return true;
191 1.7.4.1 christos }
192 1.7.4.1 christos
193 1.7.4.1 christos const size_t amount = read(fd, buf, size);
194 1.7.4.1 christos if (amount == SIZE_MAX)
195 1.7.4.1 christos return true;
196 1.7.4.1 christos
197 1.7.4.1 christos if (amount != size) {
198 1.7.4.1 christos return true;
199 1.7.4.1 christos }
200 1.7.4.1 christos
201 1.7.4.1 christos return false;
202 1.7.4.1 christos }
203 1.7.4.1 christos
204 1.7.4.1 christos /*
205 1.7.4.1 christos * Most of the following is copied (mostly verbatim) from the xz
206 1.7.4.1 christos * distribution, from file src/xz/list.c
207 1.7.4.1 christos */
208 1.7.4.1 christos
209 1.7.4.1 christos ///////////////////////////////////////////////////////////////////////////////
210 1.7.4.1 christos //
211 1.7.4.1 christos /// \file list.c
212 1.7.4.1 christos /// \brief Listing information about .xz files
213 1.7.4.1 christos //
214 1.7.4.1 christos // Author: Lasse Collin
215 1.7.4.1 christos //
216 1.7.4.1 christos // This file has been put into the public domain.
217 1.7.4.1 christos // You can do whatever you want with this file.
218 1.7.4.1 christos //
219 1.7.4.1 christos ///////////////////////////////////////////////////////////////////////////////
220 1.7.4.1 christos
221 1.7.4.1 christos
222 1.7.4.1 christos /// Information about a .xz file
223 1.7.4.1 christos typedef struct {
224 1.7.4.1 christos /// Combined Index of all Streams in the file
225 1.7.4.1 christos lzma_index *idx;
226 1.7.4.1 christos
227 1.7.4.1 christos /// Total amount of Stream Padding
228 1.7.4.1 christos uint64_t stream_padding;
229 1.7.4.1 christos
230 1.7.4.1 christos /// Highest memory usage so far
231 1.7.4.1 christos uint64_t memusage_max;
232 1.7.4.1 christos
233 1.7.4.1 christos /// True if all Blocks so far have Compressed Size and
234 1.7.4.1 christos /// Uncompressed Size fields
235 1.7.4.1 christos bool all_have_sizes;
236 1.7.4.1 christos
237 1.7.4.1 christos /// Oldest XZ Utils version that will decompress the file
238 1.7.4.1 christos uint32_t min_version;
239 1.7.4.1 christos
240 1.7.4.1 christos } xz_file_info;
241 1.7.4.1 christos
242 1.7.4.1 christos #define XZ_FILE_INFO_INIT { NULL, 0, 0, true, 50000002 }
243 1.7.4.1 christos
244 1.7.4.1 christos
245 1.7.4.1 christos /// \brief Parse the Index(es) from the given .xz file
246 1.7.4.1 christos ///
247 1.7.4.1 christos /// \param xfi Pointer to structure where the decoded information
248 1.7.4.1 christos /// is stored.
249 1.7.4.1 christos /// \param pair Input file
250 1.7.4.1 christos ///
251 1.7.4.1 christos /// \return On success, false is returned. On error, true is returned.
252 1.7.4.1 christos ///
253 1.7.4.1 christos // TODO: This function is pretty big. liblzma should have a function that
254 1.7.4.1 christos // takes a callback function to parse the Index(es) from a .xz file to make
255 1.7.4.1 christos // it easy for applications.
256 1.7.4.1 christos static bool
257 1.7.4.1 christos parse_indexes(xz_file_info *xfi, int src_fd)
258 1.7.4.1 christos {
259 1.7.4.1 christos struct stat st;
260 1.7.4.1 christos
261 1.7.4.1 christos fstat(src_fd, &st);
262 1.7.4.1 christos if (st.st_size <= 0) {
263 1.7.4.1 christos return true;
264 1.7.4.1 christos }
265 1.7.4.1 christos
266 1.7.4.1 christos if (st.st_size < 2 * LZMA_STREAM_HEADER_SIZE) {
267 1.7.4.1 christos return true;
268 1.7.4.1 christos }
269 1.7.4.1 christos
270 1.7.4.1 christos io_buf buf;
271 1.7.4.1 christos lzma_stream_flags header_flags;
272 1.7.4.1 christos lzma_stream_flags footer_flags;
273 1.7.4.1 christos lzma_ret ret;
274 1.7.4.1 christos
275 1.7.4.1 christos // lzma_stream for the Index decoder
276 1.7.4.1 christos lzma_stream strm = LZMA_STREAM_INIT;
277 1.7.4.1 christos
278 1.7.4.1 christos // All Indexes decoded so far
279 1.7.4.1 christos lzma_index *combined_index = NULL;
280 1.7.4.1 christos
281 1.7.4.1 christos // The Index currently being decoded
282 1.7.4.1 christos lzma_index *this_index = NULL;
283 1.7.4.1 christos
284 1.7.4.1 christos // Current position in the file. We parse the file backwards so
285 1.7.4.1 christos // initialize it to point to the end of the file.
286 1.7.4.1 christos off_t pos = st.st_size;
287 1.7.4.1 christos
288 1.7.4.1 christos // Each loop iteration decodes one Index.
289 1.7.4.1 christos do {
290 1.7.4.1 christos // Check that there is enough data left to contain at least
291 1.7.4.1 christos // the Stream Header and Stream Footer. This check cannot
292 1.7.4.1 christos // fail in the first pass of this loop.
293 1.7.4.1 christos if (pos < 2 * LZMA_STREAM_HEADER_SIZE) {
294 1.7.4.1 christos goto error;
295 1.7.4.1 christos }
296 1.7.4.1 christos
297 1.7.4.1 christos pos -= LZMA_STREAM_HEADER_SIZE;
298 1.7.4.1 christos lzma_vli stream_padding = 0;
299 1.7.4.1 christos
300 1.7.4.1 christos // Locate the Stream Footer. There may be Stream Padding which
301 1.7.4.1 christos // we must skip when reading backwards.
302 1.7.4.1 christos while (true) {
303 1.7.4.1 christos if (pos < LZMA_STREAM_HEADER_SIZE) {
304 1.7.4.1 christos goto error;
305 1.7.4.1 christos }
306 1.7.4.1 christos
307 1.7.4.1 christos if (io_pread(src_fd, &buf,
308 1.7.4.1 christos LZMA_STREAM_HEADER_SIZE, pos))
309 1.7.4.1 christos goto error;
310 1.7.4.1 christos
311 1.7.4.1 christos // Stream Padding is always a multiple of four bytes.
312 1.7.4.1 christos int i = 2;
313 1.7.4.1 christos if (buf.u32[i] != 0)
314 1.7.4.1 christos break;
315 1.7.4.1 christos
316 1.7.4.1 christos // To avoid calling io_pread() for every four bytes
317 1.7.4.1 christos // of Stream Padding, take advantage that we read
318 1.7.4.1 christos // 12 bytes (LZMA_STREAM_HEADER_SIZE) already and
319 1.7.4.1 christos // check them too before calling io_pread() again.
320 1.7.4.1 christos do {
321 1.7.4.1 christos stream_padding += 4;
322 1.7.4.1 christos pos -= 4;
323 1.7.4.1 christos --i;
324 1.7.4.1 christos } while (i >= 0 && buf.u32[i] == 0);
325 1.7.4.1 christos }
326 1.7.4.1 christos
327 1.7.4.1 christos // Decode the Stream Footer.
328 1.7.4.1 christos ret = lzma_stream_footer_decode(&footer_flags, buf.u8);
329 1.7.4.1 christos if (ret != LZMA_OK) {
330 1.7.4.1 christos goto error;
331 1.7.4.1 christos }
332 1.7.4.1 christos
333 1.7.4.1 christos // Check that the Stream Footer doesn't specify something
334 1.7.4.1 christos // that we don't support. This can only happen if the xz
335 1.7.4.1 christos // version is older than liblzma and liblzma supports
336 1.7.4.1 christos // something new.
337 1.7.4.1 christos //
338 1.7.4.1 christos // It is enough to check Stream Footer. Stream Header must
339 1.7.4.1 christos // match when it is compared against Stream Footer with
340 1.7.4.1 christos // lzma_stream_flags_compare().
341 1.7.4.1 christos if (footer_flags.version != 0) {
342 1.7.4.1 christos goto error;
343 1.7.4.1 christos }
344 1.7.4.1 christos
345 1.7.4.1 christos // Check that the size of the Index field looks sane.
346 1.7.4.1 christos lzma_vli index_size = footer_flags.backward_size;
347 1.7.4.1 christos if ((lzma_vli)(pos) < index_size + LZMA_STREAM_HEADER_SIZE) {
348 1.7.4.1 christos goto error;
349 1.7.4.1 christos }
350 1.7.4.1 christos
351 1.7.4.1 christos // Set pos to the beginning of the Index.
352 1.7.4.1 christos pos -= index_size;
353 1.7.4.1 christos
354 1.7.4.1 christos // Decode the Index.
355 1.7.4.1 christos ret = lzma_index_decoder(&strm, &this_index, UINT64_MAX);
356 1.7.4.1 christos if (ret != LZMA_OK) {
357 1.7.4.1 christos goto error;
358 1.7.4.1 christos }
359 1.7.4.1 christos
360 1.7.4.1 christos do {
361 1.7.4.1 christos // Don't give the decoder more input than the
362 1.7.4.1 christos // Index size.
363 1.7.4.1 christos strm.avail_in = my_min(IO_BUFFER_SIZE, index_size);
364 1.7.4.1 christos if (io_pread(src_fd, &buf, strm.avail_in, pos))
365 1.7.4.1 christos goto error;
366 1.7.4.1 christos
367 1.7.4.1 christos pos += strm.avail_in;
368 1.7.4.1 christos index_size -= strm.avail_in;
369 1.7.4.1 christos
370 1.7.4.1 christos strm.next_in = buf.u8;
371 1.7.4.1 christos ret = lzma_code(&strm, LZMA_RUN);
372 1.7.4.1 christos
373 1.7.4.1 christos } while (ret == LZMA_OK);
374 1.7.4.1 christos
375 1.7.4.1 christos // If the decoding seems to be successful, check also that
376 1.7.4.1 christos // the Index decoder consumed as much input as indicated
377 1.7.4.1 christos // by the Backward Size field.
378 1.7.4.1 christos if (ret == LZMA_STREAM_END)
379 1.7.4.1 christos if (index_size != 0 || strm.avail_in != 0)
380 1.7.4.1 christos ret = LZMA_DATA_ERROR;
381 1.7.4.1 christos
382 1.7.4.1 christos if (ret != LZMA_STREAM_END) {
383 1.7.4.1 christos // LZMA_BUFFER_ERROR means that the Index decoder
384 1.7.4.1 christos // would have liked more input than what the Index
385 1.7.4.1 christos // size should be according to Stream Footer.
386 1.7.4.1 christos // The message for LZMA_DATA_ERROR makes more
387 1.7.4.1 christos // sense in that case.
388 1.7.4.1 christos if (ret == LZMA_BUF_ERROR)
389 1.7.4.1 christos ret = LZMA_DATA_ERROR;
390 1.7.4.1 christos
391 1.7.4.1 christos goto error;
392 1.7.4.1 christos }
393 1.7.4.1 christos
394 1.7.4.1 christos // Decode the Stream Header and check that its Stream Flags
395 1.7.4.1 christos // match the Stream Footer.
396 1.7.4.1 christos pos -= footer_flags.backward_size + LZMA_STREAM_HEADER_SIZE;
397 1.7.4.1 christos if ((lzma_vli)(pos) < lzma_index_total_size(this_index)) {
398 1.7.4.1 christos goto error;
399 1.7.4.1 christos }
400 1.7.4.1 christos
401 1.7.4.1 christos pos -= lzma_index_total_size(this_index);
402 1.7.4.1 christos if (io_pread(src_fd, &buf, LZMA_STREAM_HEADER_SIZE, pos))
403 1.7.4.1 christos goto error;
404 1.7.4.1 christos
405 1.7.4.1 christos ret = lzma_stream_header_decode(&header_flags, buf.u8);
406 1.7.4.1 christos if (ret != LZMA_OK) {
407 1.7.4.1 christos goto error;
408 1.7.4.1 christos }
409 1.7.4.1 christos
410 1.7.4.1 christos ret = lzma_stream_flags_compare(&header_flags, &footer_flags);
411 1.7.4.1 christos if (ret != LZMA_OK) {
412 1.7.4.1 christos goto error;
413 1.7.4.1 christos }
414 1.7.4.1 christos
415 1.7.4.1 christos // Store the decoded Stream Flags into this_index. This is
416 1.7.4.1 christos // needed so that we can print which Check is used in each
417 1.7.4.1 christos // Stream.
418 1.7.4.1 christos ret = lzma_index_stream_flags(this_index, &footer_flags);
419 1.7.4.1 christos if (ret != LZMA_OK)
420 1.7.4.1 christos goto error;
421 1.7.4.1 christos
422 1.7.4.1 christos // Store also the size of the Stream Padding field. It is
423 1.7.4.1 christos // needed to show the offsets of the Streams correctly.
424 1.7.4.1 christos ret = lzma_index_stream_padding(this_index, stream_padding);
425 1.7.4.1 christos if (ret != LZMA_OK)
426 1.7.4.1 christos goto error;
427 1.7.4.1 christos
428 1.7.4.1 christos if (combined_index != NULL) {
429 1.7.4.1 christos // Append the earlier decoded Indexes
430 1.7.4.1 christos // after this_index.
431 1.7.4.1 christos ret = lzma_index_cat(
432 1.7.4.1 christos this_index, combined_index, NULL);
433 1.7.4.1 christos if (ret != LZMA_OK) {
434 1.7.4.1 christos goto error;
435 1.7.4.1 christos }
436 1.7.4.1 christos }
437 1.7.4.1 christos
438 1.7.4.1 christos combined_index = this_index;
439 1.7.4.1 christos this_index = NULL;
440 1.7.4.1 christos
441 1.7.4.1 christos xfi->stream_padding += stream_padding;
442 1.7.4.1 christos
443 1.7.4.1 christos } while (pos > 0);
444 1.7.4.1 christos
445 1.7.4.1 christos lzma_end(&strm);
446 1.7.4.1 christos
447 1.7.4.1 christos // All OK. Make combined_index available to the caller.
448 1.7.4.1 christos xfi->idx = combined_index;
449 1.7.4.1 christos return false;
450 1.7.4.1 christos
451 1.7.4.1 christos error:
452 1.7.4.1 christos // Something went wrong, free the allocated memory.
453 1.7.4.1 christos lzma_end(&strm);
454 1.7.4.1 christos lzma_index_end(combined_index, NULL);
455 1.7.4.1 christos lzma_index_end(this_index, NULL);
456 1.7.4.1 christos return true;
457 1.7.4.1 christos }
458 1.7.4.1 christos
459 1.7.4.1 christos /***************** end of copy form list.c *************************/
460 1.7.4.1 christos
461 1.7.4.1 christos /*
462 1.7.4.1 christos * Small wrapper to extract total length of a file
463 1.7.4.1 christos */
464 1.7.4.1 christos off_t
465 1.7.4.1 christos unxz_len(int fd)
466 1.7.4.1 christos {
467 1.7.4.1 christos xz_file_info xfi = XZ_FILE_INFO_INIT;
468 1.7.4.1 christos if (!parse_indexes(&xfi, fd)) {
469 1.7.4.1 christos off_t res = lzma_index_uncompressed_size(xfi.idx);
470 1.7.4.1 christos lzma_index_end(xfi.idx, NULL);
471 1.7.4.1 christos return res;
472 1.7.4.1 christos }
473 1.7.4.1 christos return 0;
474 1.7.4.1 christos }
475 1.7.4.1 christos
476