mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
91 lines
3.1 KiB
C#
91 lines
3.1 KiB
C#
// /***************************************************************************
|
|
// The Disc Image Chef
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : Structs.cs
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Component : Disk image plugins.
|
|
//
|
|
// --[ Description ] ----------------------------------------------------------
|
|
//
|
|
// Contains structures for QEMU Copy-On-Write disk images.
|
|
//
|
|
// --[ License ] --------------------------------------------------------------
|
|
//
|
|
// 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.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright © 2011-2019 Natalia Portillo
|
|
// ****************************************************************************/
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace DiscImageChef.DiscImages
|
|
{
|
|
public partial class Qcow
|
|
{
|
|
/// <summary>
|
|
/// QCOW header, big-endian
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
struct QCowHeader
|
|
{
|
|
/// <summary>
|
|
/// <see cref="Qcow.QCOW_MAGIC" />
|
|
/// </summary>
|
|
public uint magic;
|
|
/// <summary>
|
|
/// Must be 1
|
|
/// </summary>
|
|
public uint version;
|
|
/// <summary>
|
|
/// Offset inside file to string containing backing file
|
|
/// </summary>
|
|
public ulong backing_file_offset;
|
|
/// <summary>
|
|
/// Size of <see cref="backing_file_offset" />
|
|
/// </summary>
|
|
public uint backing_file_size;
|
|
/// <summary>
|
|
/// Modification time
|
|
/// </summary>
|
|
public uint mtime;
|
|
/// <summary>
|
|
/// Size in bytes
|
|
/// </summary>
|
|
public ulong size;
|
|
/// <summary>
|
|
/// Cluster bits
|
|
/// </summary>
|
|
public byte cluster_bits;
|
|
/// <summary>
|
|
/// L2 table bits
|
|
/// </summary>
|
|
public byte l2_bits;
|
|
/// <summary>
|
|
/// Padding
|
|
/// </summary>
|
|
public ushort padding;
|
|
/// <summary>
|
|
/// Encryption method
|
|
/// </summary>
|
|
public uint crypt_method;
|
|
/// <summary>
|
|
/// Offset to L1 table
|
|
/// </summary>
|
|
public ulong l1_table_offset;
|
|
}
|
|
}
|
|
} |