mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
325 lines
9.2 KiB
C#
325 lines
9.2 KiB
C#
using System;
|
|
using System.IO;
|
|
using libhac.XTSSharp;
|
|
|
|
namespace libhac
|
|
{
|
|
public class Nca
|
|
{
|
|
public NcaHeader Header { get; private set; }
|
|
public string Name { get; set; }
|
|
public bool HasRightsId { get; private set; }
|
|
public int CryptoType { get; private set; }
|
|
public byte[][] DecryptedKeys { get; } = Util.CreateJaggedArray<byte[][]>(4, 0x10);
|
|
|
|
public Nca(Keyset keyset, Stream stream)
|
|
{
|
|
ReadHeader(keyset, stream);
|
|
|
|
CryptoType = Math.Max(Header.CryptoType, Header.CryptoType2);
|
|
if (CryptoType > 0) CryptoType--;
|
|
|
|
HasRightsId = !Header.RightsId.IsEmpty();
|
|
|
|
if (!HasRightsId)
|
|
{
|
|
DecryptKeyArea(keyset);
|
|
}
|
|
}
|
|
|
|
private void ReadHeader(Keyset keyset, Stream stream)
|
|
{
|
|
stream.Position = 0;
|
|
var xts = XtsAes128.Create(keyset.header_key);
|
|
var headerDec = new RandomAccessSectorStream(new XtsSectorStream(stream, xts, 0x200));
|
|
var reader = new BinaryReader(headerDec);
|
|
|
|
Header = NcaHeader.Read(reader);
|
|
|
|
headerDec.Close();
|
|
}
|
|
|
|
private void DecryptKeyArea(Keyset keyset)
|
|
{
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
Crypto.DecryptEcb(keyset.key_area_keys[CryptoType][Header.KaekInd], Header.EncryptedKeys[i],
|
|
DecryptedKeys[i], 0x10);
|
|
}
|
|
}
|
|
}
|
|
|
|
public class NcaHeader
|
|
{
|
|
public byte[] Signature1; // RSA-PSS signature over header with fixed key.
|
|
public byte[] Signature2; // RSA-PSS signature over header with key in NPDM.
|
|
public string Magic;
|
|
public byte Distribution; // System vs gamecard.
|
|
public ContentType ContentType;
|
|
public byte CryptoType; // Which keyblob (field 1)
|
|
public byte KaekInd; // Which kaek index?
|
|
public ulong NcaSize; // Entire archive size.
|
|
public ulong TitleId;
|
|
public uint SdkVersion; // What SDK was this built with?
|
|
public byte CryptoType2; // Which keyblob (field 2)
|
|
public byte[] RightsId;
|
|
public string Name;
|
|
|
|
public NcaSectionEntry[] SectionEntries = new NcaSectionEntry[4];
|
|
public byte[][] SectionHashes = new byte[4][];
|
|
public byte[][] EncryptedKeys = new byte[4][];
|
|
|
|
public NcaFsHeader[] FsHeaders = new NcaFsHeader[4];
|
|
|
|
public static NcaHeader Read(BinaryReader reader)
|
|
{
|
|
var head = new NcaHeader();
|
|
|
|
head.Signature1 = reader.ReadBytes(0x100);
|
|
head.Signature2 = reader.ReadBytes(0x100);
|
|
head.Magic = reader.ReadAscii(4);
|
|
head.Distribution = reader.ReadByte();
|
|
head.ContentType = (ContentType)reader.ReadByte();
|
|
head.CryptoType = reader.ReadByte();
|
|
head.KaekInd = reader.ReadByte();
|
|
head.NcaSize = reader.ReadUInt64();
|
|
head.TitleId = reader.ReadUInt64();
|
|
reader.BaseStream.Position += 4;
|
|
|
|
head.SdkVersion = reader.ReadUInt32();
|
|
head.CryptoType2 = reader.ReadByte();
|
|
reader.BaseStream.Position += 0xF;
|
|
|
|
head.RightsId = reader.ReadBytes(0x10);
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
head.SectionEntries[i] = new NcaSectionEntry(reader);
|
|
}
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
head.SectionHashes[i] = reader.ReadBytes(0x20);
|
|
}
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
head.EncryptedKeys[i] = reader.ReadBytes(0x10);
|
|
}
|
|
|
|
reader.BaseStream.Position += 0xC0;
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
head.FsHeaders[i] = new NcaFsHeader(reader);
|
|
}
|
|
return head;
|
|
}
|
|
}
|
|
|
|
public class NcaSectionEntry
|
|
{
|
|
public uint MediaStartOffset;
|
|
public uint MediaEndOffset;
|
|
|
|
public NcaSectionEntry(BinaryReader reader)
|
|
{
|
|
MediaStartOffset = reader.ReadUInt32();
|
|
MediaEndOffset = reader.ReadUInt32();
|
|
reader.BaseStream.Position += 8;
|
|
}
|
|
}
|
|
|
|
public class NcaFsHeader
|
|
{
|
|
public byte Field0;
|
|
public byte Field1;
|
|
public SectionPartitionType PartitionType;
|
|
public SectionFsType FsType;
|
|
public SectionCryptType CryptType;
|
|
public SectionType Type;
|
|
|
|
public Pfs0Superblock Pfs0;
|
|
public RomfsSuperblock Romfs;
|
|
public BktrSuperblock Bktr;
|
|
|
|
public NcaFsHeader(BinaryReader reader)
|
|
{
|
|
Field0 = reader.ReadByte();
|
|
Field1 = reader.ReadByte();
|
|
PartitionType = (SectionPartitionType)reader.ReadByte();
|
|
FsType = (SectionFsType)reader.ReadByte();
|
|
CryptType = (SectionCryptType)reader.ReadByte();
|
|
reader.BaseStream.Position += 3;
|
|
|
|
if (PartitionType == SectionPartitionType.Pfs0 && FsType == SectionFsType.Pfs0)
|
|
{
|
|
Type = SectionType.Pfs0;
|
|
Pfs0 = new Pfs0Superblock(reader);
|
|
}
|
|
else if (PartitionType == SectionPartitionType.Romfs && FsType == SectionFsType.Romfs)
|
|
{
|
|
if (CryptType == SectionCryptType.BKTR)
|
|
{
|
|
Type = SectionType.Bktr;
|
|
Bktr = new BktrSuperblock(reader);
|
|
}
|
|
else
|
|
{
|
|
Type = SectionType.Romfs;
|
|
Romfs = new RomfsSuperblock(reader);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public class Pfs0Superblock
|
|
{
|
|
public byte[] MasterHash; /* SHA-256 hash of the hash table. */
|
|
public uint BlockSize; /* In bytes. */
|
|
public uint Always2;
|
|
public ulong HashTableOffset; /* Normally zero. */
|
|
public ulong HashTableSize;
|
|
public ulong Pfs0Offset;
|
|
public ulong Pfs0Size;
|
|
|
|
public Pfs0Superblock(BinaryReader reader)
|
|
{
|
|
MasterHash = reader.ReadBytes(0x20);
|
|
BlockSize = reader.ReadUInt32();
|
|
Always2 = reader.ReadUInt32();
|
|
HashTableOffset = reader.ReadUInt64();
|
|
HashTableSize = reader.ReadUInt64();
|
|
Pfs0Offset = reader.ReadUInt64();
|
|
Pfs0Size = reader.ReadUInt64();
|
|
reader.BaseStream.Position += 0xF0;
|
|
}
|
|
}
|
|
|
|
public class RomfsSuperblock
|
|
{
|
|
public IvfcHeader IvfcHeader;
|
|
|
|
public RomfsSuperblock(BinaryReader reader)
|
|
{
|
|
IvfcHeader = new IvfcHeader(reader);
|
|
reader.BaseStream.Position += 0x58;
|
|
}
|
|
}
|
|
|
|
public class BktrSuperblock
|
|
{
|
|
public IvfcHeader IvfcHeader;
|
|
public BktrHeader RelocationHeader;
|
|
public BktrHeader SubsectionHeader;
|
|
|
|
public BktrSuperblock(BinaryReader reader)
|
|
{
|
|
IvfcHeader = new IvfcHeader(reader);
|
|
reader.BaseStream.Position += 0x18;
|
|
RelocationHeader = new BktrHeader(reader);
|
|
SubsectionHeader = new BktrHeader(reader);
|
|
}
|
|
}
|
|
|
|
public class IvfcHeader
|
|
{
|
|
public string Magic;
|
|
public uint Id;
|
|
public uint MasterHashSize;
|
|
public uint NumLevels;
|
|
public IvfcLevelHeader[] LevelHeaders = new IvfcLevelHeader[6];
|
|
public byte[] MasterHash;
|
|
|
|
|
|
public IvfcHeader(BinaryReader reader)
|
|
{
|
|
Magic = reader.ReadAscii(4);
|
|
Id = reader.ReadUInt32();
|
|
MasterHashSize = reader.ReadUInt32();
|
|
NumLevels = reader.ReadUInt32();
|
|
|
|
for (int i = 0; i < LevelHeaders.Length; i++)
|
|
{
|
|
LevelHeaders[i] = new IvfcLevelHeader(reader);
|
|
}
|
|
|
|
reader.BaseStream.Position += 0x20;
|
|
MasterHash = reader.ReadBytes(0x20);
|
|
}
|
|
}
|
|
|
|
public class IvfcLevelHeader
|
|
{
|
|
public ulong LogicalOffset;
|
|
public ulong HashDataSize;
|
|
public uint BlockSize;
|
|
public uint Reserved;
|
|
|
|
public IvfcLevelHeader(BinaryReader reader)
|
|
{
|
|
LogicalOffset = reader.ReadUInt64();
|
|
HashDataSize = reader.ReadUInt64();
|
|
BlockSize = reader.ReadUInt32();
|
|
Reserved = reader.ReadUInt32();
|
|
}
|
|
}
|
|
|
|
public class BktrHeader
|
|
{
|
|
public ulong Offset;
|
|
public ulong Size;
|
|
public uint Magic;
|
|
public uint Field14;
|
|
public uint NumEntries;
|
|
public uint Field1C;
|
|
|
|
public BktrHeader(BinaryReader reader)
|
|
{
|
|
Offset = reader.ReadUInt64();
|
|
Size = reader.ReadUInt64();
|
|
Magic = reader.ReadUInt32();
|
|
Field14 = reader.ReadUInt32();
|
|
NumEntries = reader.ReadUInt32();
|
|
Field1C = reader.ReadUInt32();
|
|
}
|
|
}
|
|
|
|
public enum ContentType
|
|
{
|
|
Program,
|
|
Meta,
|
|
Control,
|
|
Manual,
|
|
Data,
|
|
Unknown
|
|
}
|
|
|
|
public enum SectionCryptType
|
|
{
|
|
None = 1,
|
|
XTS,
|
|
CTR,
|
|
BKTR
|
|
}
|
|
|
|
public enum SectionFsType
|
|
{
|
|
Pfs0 = 2,
|
|
Romfs
|
|
}
|
|
|
|
public enum SectionPartitionType
|
|
{
|
|
Romfs,
|
|
Pfs0
|
|
}
|
|
|
|
public enum SectionType
|
|
{
|
|
Invalid,
|
|
Pfs0,
|
|
Romfs,
|
|
Bktr
|
|
}
|
|
}
|