2007-12-08 23:42:33 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
/// \file block_header_decoder.c
|
2008-12-27 18:27:49 +01:00
|
|
|
/// \brief Decodes Block Header from .xz files
|
2007-12-08 23:42:33 +01:00
|
|
|
//
|
|
|
|
// Copyright (C) 2007 Lasse Collin
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "check.h"
|
|
|
|
|
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
static void
|
2008-12-27 18:27:49 +01:00
|
|
|
free_properties(lzma_block *block, lzma_allocator *allocator)
|
2007-12-08 23:42:33 +01:00
|
|
|
{
|
2008-06-18 17:02:10 +02:00
|
|
|
// Free allocated filter options. The last array member is not
|
|
|
|
// touched after the initialization in the beginning of
|
|
|
|
// lzma_block_header_decode(), so we don't need to touch that here.
|
2008-11-19 19:46:52 +01:00
|
|
|
for (size_t i = 0; i < LZMA_FILTERS_MAX; ++i) {
|
2008-12-27 18:27:49 +01:00
|
|
|
lzma_free(block->filters[i].options, allocator);
|
|
|
|
block->filters[i].id = LZMA_VLI_UNKNOWN;
|
|
|
|
block->filters[i].options = NULL;
|
2007-12-08 23:42:33 +01:00
|
|
|
}
|
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
return;
|
2007-12-08 23:42:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-02 19:14:03 +01:00
|
|
|
extern LZMA_API(lzma_ret)
|
2008-12-27 18:27:49 +01:00
|
|
|
lzma_block_header_decode(lzma_block *block,
|
2008-06-18 17:02:10 +02:00
|
|
|
lzma_allocator *allocator, const uint8_t *in)
|
2007-12-08 23:42:33 +01:00
|
|
|
{
|
2008-06-18 17:02:10 +02:00
|
|
|
// NOTE: We consider the header to be corrupt not only when the
|
|
|
|
// CRC32 doesn't match, but also when variable-length integers
|
2008-08-28 21:53:15 +02:00
|
|
|
// are invalid or over 63 bits, or if the header is too small
|
2008-06-18 17:02:10 +02:00
|
|
|
// to contain the claimed information.
|
|
|
|
|
|
|
|
// Initialize the filter options array. This way the caller can
|
|
|
|
// safely free() the options even if an error occurs in this function.
|
2008-11-19 19:46:52 +01:00
|
|
|
for (size_t i = 0; i <= LZMA_FILTERS_MAX; ++i) {
|
2008-12-27 18:27:49 +01:00
|
|
|
block->filters[i].id = LZMA_VLI_UNKNOWN;
|
|
|
|
block->filters[i].options = NULL;
|
2007-12-08 23:42:33 +01:00
|
|
|
}
|
|
|
|
|
2008-12-27 18:27:49 +01:00
|
|
|
// Always zero for now.
|
|
|
|
block->version = 0;
|
|
|
|
|
2008-11-19 19:46:52 +01:00
|
|
|
// Validate Block Header Size and Check type. The caller must have
|
|
|
|
// already set these, so it is a programming error if this test fails.
|
2008-12-27 18:27:49 +01:00
|
|
|
if (lzma_block_header_size_decode(in[0]) != block->header_size
|
|
|
|
|| (unsigned int)(block->check) > LZMA_CHECK_ID_MAX)
|
2008-06-18 17:02:10 +02:00
|
|
|
return LZMA_PROG_ERROR;
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
// Exclude the CRC32 field.
|
2008-12-27 18:27:49 +01:00
|
|
|
const size_t in_size = block->header_size - 4;
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
// Verify CRC32
|
|
|
|
if (lzma_crc32(in, in_size, 0) != integer_read_32(in + in_size))
|
|
|
|
return LZMA_DATA_ERROR;
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
// Check for unsupported flags.
|
|
|
|
if (in[1] & 0x3C)
|
2008-09-13 11:10:43 +02:00
|
|
|
return LZMA_OPTIONS_ERROR;
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
// Start after the Block Header Size and Block Flags fields.
|
|
|
|
size_t in_pos = 2;
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
// Compressed Size
|
|
|
|
if (in[1] & 0x40) {
|
2008-12-27 18:27:49 +01:00
|
|
|
return_if_error(lzma_vli_decode(&block->compressed_size,
|
2008-06-18 17:02:10 +02:00
|
|
|
NULL, in, &in_pos, in_size));
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-11-19 19:46:52 +01:00
|
|
|
// Validate Compressed Size. This checks that it isn't zero
|
|
|
|
// and that the total size of the Block is a valid VLI.
|
2008-12-27 18:27:49 +01:00
|
|
|
if (lzma_block_unpadded_size(block) == 0)
|
2007-12-08 23:42:33 +01:00
|
|
|
return LZMA_DATA_ERROR;
|
2008-06-18 17:02:10 +02:00
|
|
|
} else {
|
2008-12-27 18:27:49 +01:00
|
|
|
block->compressed_size = LZMA_VLI_UNKNOWN;
|
2007-12-08 23:42:33 +01:00
|
|
|
}
|
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
// Uncompressed Size
|
|
|
|
if (in[1] & 0x80)
|
2008-12-27 18:27:49 +01:00
|
|
|
return_if_error(lzma_vli_decode(&block->uncompressed_size,
|
2008-06-18 17:02:10 +02:00
|
|
|
NULL, in, &in_pos, in_size));
|
|
|
|
else
|
2008-12-27 18:27:49 +01:00
|
|
|
block->uncompressed_size = LZMA_VLI_UNKNOWN;
|
2008-06-18 17:02:10 +02:00
|
|
|
|
|
|
|
// Filter Flags
|
|
|
|
const size_t filter_count = (in[1] & 3) + 1;
|
|
|
|
for (size_t i = 0; i < filter_count; ++i) {
|
|
|
|
const lzma_ret ret = lzma_filter_flags_decode(
|
2008-12-27 18:27:49 +01:00
|
|
|
&block->filters[i], allocator,
|
2008-06-18 17:02:10 +02:00
|
|
|
in, &in_pos, in_size);
|
|
|
|
if (ret != LZMA_OK) {
|
2008-12-27 18:27:49 +01:00
|
|
|
free_properties(block, allocator);
|
2008-06-18 17:02:10 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2007-12-08 23:42:33 +01:00
|
|
|
}
|
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
// Padding
|
|
|
|
while (in_pos < in_size) {
|
|
|
|
if (in[in_pos++] != 0x00) {
|
2008-12-27 18:27:49 +01:00
|
|
|
free_properties(block, allocator);
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-06-18 17:02:10 +02:00
|
|
|
// Possibly some new field present so use
|
2008-09-13 11:10:43 +02:00
|
|
|
// LZMA_OPTIONS_ERROR instead of LZMA_DATA_ERROR.
|
|
|
|
return LZMA_OPTIONS_ERROR;
|
2008-06-18 17:02:10 +02:00
|
|
|
}
|
2007-12-08 23:42:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return LZMA_OK;
|
|
|
|
}
|