mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
201 lines
8.2 KiB
C#
201 lines
8.2 KiB
C#
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using LibHac;
|
|
using static hactoolnet.Print;
|
|
|
|
namespace hactoolnet
|
|
{
|
|
internal static class ProcessNca
|
|
{
|
|
public static void Process(Context ctx)
|
|
{
|
|
using (var file = new FileStream(ctx.Options.InFile, FileMode.Open, FileAccess.Read))
|
|
{
|
|
var nca = new Nca(ctx.Keyset, file, false);
|
|
nca.ValidateMasterHashes();
|
|
|
|
if (ctx.Options.BaseNca != null)
|
|
{
|
|
var baseFile = new FileStream(ctx.Options.BaseNca, FileMode.Open, FileAccess.Read);
|
|
var baseNca = new Nca(ctx.Keyset, baseFile, false);
|
|
nca.SetBaseNca(baseNca);
|
|
}
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
{
|
|
if (ctx.Options.SectionOut[i] != null)
|
|
{
|
|
nca.ExportSection(i, ctx.Options.SectionOut[i], ctx.Options.Raw, ctx.Options.IntegrityLevel, ctx.Logger);
|
|
}
|
|
|
|
if (ctx.Options.SectionOutDir[i] != null)
|
|
{
|
|
nca.ExtractSection(i, ctx.Options.SectionOutDir[i], ctx.Options.IntegrityLevel, ctx.Logger);
|
|
}
|
|
|
|
if (ctx.Options.Validate && nca.Sections[i] != null)
|
|
{
|
|
nca.VerifySection(i, ctx.Logger);
|
|
}
|
|
}
|
|
|
|
if (ctx.Options.ListRomFs && nca.Sections[1] != null)
|
|
{
|
|
var romfs = new Romfs(nca.OpenSection(1, false, ctx.Options.IntegrityLevel));
|
|
|
|
foreach (RomfsFile romfsFile in romfs.Files)
|
|
{
|
|
ctx.Logger.LogMessage(romfsFile.FullPath);
|
|
}
|
|
}
|
|
|
|
if (ctx.Options.RomfsOutDir != null || ctx.Options.RomfsOut != null)
|
|
{
|
|
NcaSection section = nca.Sections.FirstOrDefault(x => x?.Type == SectionType.Romfs || x?.Type == SectionType.Bktr);
|
|
|
|
if (section == null)
|
|
{
|
|
ctx.Logger.LogMessage("NCA has no RomFS section");
|
|
return;
|
|
}
|
|
|
|
if (section.Type == SectionType.Bktr && ctx.Options.BaseNca == null)
|
|
{
|
|
ctx.Logger.LogMessage("Cannot save BKTR section without base RomFS");
|
|
return;
|
|
}
|
|
|
|
if (ctx.Options.RomfsOut != null)
|
|
{
|
|
nca.ExportSection(section.SectionNum, ctx.Options.RomfsOut, ctx.Options.Raw, ctx.Options.IntegrityLevel, ctx.Logger);
|
|
}
|
|
|
|
if (ctx.Options.RomfsOutDir != null)
|
|
{
|
|
var romfs = new Romfs(nca.OpenSection(section.SectionNum, false, ctx.Options.IntegrityLevel));
|
|
romfs.Extract(ctx.Options.RomfsOutDir, ctx.Logger);
|
|
}
|
|
}
|
|
|
|
if (ctx.Options.ExefsOutDir != null || ctx.Options.ExefsOut != null)
|
|
{
|
|
if (nca.Header.ContentType != ContentType.Program)
|
|
{
|
|
ctx.Logger.LogMessage("NCA's content type is not \"Program\"");
|
|
return;
|
|
}
|
|
|
|
NcaSection section = nca.Sections[(int)ProgramPartitionType.Code];
|
|
|
|
if (section == null)
|
|
{
|
|
ctx.Logger.LogMessage("Could not find an ExeFS section");
|
|
return;
|
|
}
|
|
|
|
if (ctx.Options.ExefsOut != null)
|
|
{
|
|
nca.ExportSection(section.SectionNum, ctx.Options.ExefsOut, ctx.Options.Raw, ctx.Options.IntegrityLevel, ctx.Logger);
|
|
}
|
|
|
|
if (ctx.Options.ExefsOutDir != null)
|
|
{
|
|
nca.ExtractSection(section.SectionNum, ctx.Options.ExefsOutDir, ctx.Options.IntegrityLevel, ctx.Logger);
|
|
}
|
|
}
|
|
|
|
ctx.Logger.LogMessage(nca.Print());
|
|
}
|
|
}
|
|
|
|
private static string Print(this Nca nca)
|
|
{
|
|
int colLen = 36;
|
|
var sb = new StringBuilder();
|
|
sb.AppendLine();
|
|
|
|
sb.AppendLine("NCA:");
|
|
PrintItem(sb, colLen, "Magic:", nca.Header.Magic);
|
|
PrintItem(sb, colLen, "Fixed-Key Signature:", nca.Header.Signature1);
|
|
PrintItem(sb, colLen, "NPDM Signature:", nca.Header.Signature2);
|
|
PrintItem(sb, colLen, "Content Size:", $"0x{nca.Header.NcaSize:x12}");
|
|
PrintItem(sb, colLen, "TitleID:", $"{nca.Header.TitleId:X16}");
|
|
PrintItem(sb, colLen, "SDK Version:", nca.Header.SdkVersion);
|
|
PrintItem(sb, colLen, "Distribution type:", nca.Header.Distribution);
|
|
PrintItem(sb, colLen, "Content Type:", nca.Header.ContentType);
|
|
PrintItem(sb, colLen, "Master Key Revision:", $"{nca.CryptoType} ({Util.GetKeyRevisionSummary(nca.CryptoType)})");
|
|
PrintItem(sb, colLen, "Encryption Type:", $"{(nca.HasRightsId ? "Titlekey crypto" : "Standard crypto")}");
|
|
|
|
if (nca.HasRightsId)
|
|
{
|
|
PrintItem(sb, colLen, "Rights ID:", nca.Header.RightsId);
|
|
}
|
|
else
|
|
{
|
|
PrintItem(sb, colLen, "Key Area Encryption Key:", nca.Header.KaekInd);
|
|
sb.AppendLine("Key Area (Encrypted):");
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
PrintItem(sb, colLen, $" Key {i} (Encrypted):", nca.Header.EncryptedKeys[i]);
|
|
}
|
|
|
|
sb.AppendLine("Key Area (Decrypted):");
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
PrintItem(sb, colLen, $" Key {i} (Decrypted):", nca.DecryptedKeys[i]);
|
|
}
|
|
}
|
|
|
|
PrintSections();
|
|
|
|
return sb.ToString();
|
|
|
|
void PrintSections()
|
|
{
|
|
sb.AppendLine("Sections:");
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
NcaSection sect = nca.Sections[i];
|
|
if (sect == null) continue;
|
|
|
|
bool isExefs = nca.Header.ContentType == ContentType.Program && i == (int)ProgramPartitionType.Code;
|
|
|
|
sb.AppendLine($" Section {i}:");
|
|
PrintItem(sb, colLen, " Offset:", $"0x{sect.Offset:x12}");
|
|
PrintItem(sb, colLen, " Size:", $"0x{sect.Size:x12}");
|
|
PrintItem(sb, colLen, " Partition Type:", isExefs ? "ExeFS" : sect.Type.ToString());
|
|
PrintItem(sb, colLen, " Section CTR:", sect.Header.Ctr);
|
|
|
|
switch (sect.Header.HashType)
|
|
{
|
|
case NcaHashType.Sha256:
|
|
PrintSha256Hash(sect);
|
|
break;
|
|
case NcaHashType.Ivfc:
|
|
PrintIvfcHash(sb, colLen, 8, sect.Header.IvfcInfo, IntegrityStreamType.RomFs);
|
|
break;
|
|
default:
|
|
sb.AppendLine(" Unknown/invalid superblock!");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void PrintSha256Hash(NcaSection sect)
|
|
{
|
|
Sha256Info hashInfo = sect.Header.Sha256Info;
|
|
|
|
PrintItem(sb, colLen, $" Master Hash{sect.MasterHashValidity.GetValidityString()}:", hashInfo.MasterHash);
|
|
sb.AppendLine($" Hash Table{sect.Header.Sha256Info.HashValidity.GetValidityString()}:");
|
|
|
|
PrintItem(sb, colLen, " Offset:", $"0x{hashInfo.HashTableOffset:x12}");
|
|
PrintItem(sb, colLen, " Size:", $"0x{hashInfo.HashTableSize:x12}");
|
|
PrintItem(sb, colLen, " Block Size:", $"0x{hashInfo.BlockSize:x}");
|
|
PrintItem(sb, colLen, " PFS0 Offset:", $"0x{hashInfo.DataOffset:x12}");
|
|
PrintItem(sb, colLen, " PFS0 Size:", $"0x{hashInfo.DataSize:x12}");
|
|
}
|
|
}
|
|
}
|
|
}
|