rpcsx/rpcs3/Crypto/unpkg.cpp

241 lines
5.5 KiB
C++
Raw Normal View History

#include "stdafx.h"
2014-08-23 16:51:51 +02:00
#include "utils.h"
#include "aes.h"
#include "sha1.h"
#include "key_vault.h"
#include "unpkg.h"
bool pkg_install(const fs::file& pkg_f, const std::string& dir, atomic_t<double>& sync)
{
const std::size_t BUF_SIZE = 8192 * 1024; // 8 MB
// Save current file offset (probably zero)
const u64 start_offset = pkg_f.pos();
// Get basic PKG information
PKGHeader header;
if (!pkg_f.read(header))
2015-04-19 15:19:24 +02:00
{
LOG_ERROR(LOADER, "PKG file is too short!");
return false;
}
if (header.pkg_magic != "\x7FPKG"_u32)
{
LOG_ERROR(LOADER, "Not a PKG file!");
return false;
}
switch (const u16 type = header.pkg_type)
{
case PKG_RELEASE_TYPE_DEBUG: break;
case PKG_RELEASE_TYPE_RELEASE: break;
default:
2015-04-19 15:19:24 +02:00
{
LOG_ERROR(LOADER, "Unknown PKG type (0x%x)", type);
return false;
}
2015-04-19 15:19:24 +02:00
}
switch (const u16 platform = header.pkg_platform)
{
case PKG_PLATFORM_TYPE_PS3: break;
case PKG_PLATFORM_TYPE_PSP: break;
default:
2015-04-19 15:19:24 +02:00
{
LOG_ERROR(LOADER, "Unknown PKG platform (0x%x)", platform);
return false;
}
2015-04-19 15:19:24 +02:00
}
if (header.header_size != PKG_HEADER_SIZE && header.header_size != PKG_HEADER_SIZE2)
2015-04-19 15:19:24 +02:00
{
LOG_ERROR(LOADER, "Wrong PKG header size (0x%x)", header.header_size);
return false;
}
if (header.pkg_size > pkg_f.size())
2015-04-19 15:19:24 +02:00
{
LOG_ERROR(LOADER, "PKG file size mismatch (pkg_size=0x%llx)", header.pkg_size);
return false;
}
if (header.data_size + header.data_offset > header.pkg_size)
2015-04-19 15:19:24 +02:00
{
LOG_ERROR(LOADER, "PKG data size mismatch (data_size=0x%llx, data_offset=0x%llx, file_size=0x%llx)", header.data_size, header.data_offset, header.pkg_size);
2015-08-06 01:59:41 +02:00
return false;
2015-04-19 15:19:24 +02:00
}
2015-09-13 00:37:57 +02:00
// Allocate buffer with BUF_SIZE size or more if required
const std::unique_ptr<u128[]> buf(new u128[std::max<u64>(BUF_SIZE, sizeof(PKGEntry) * header.file_count) / sizeof(u128)]);
// Define decryption subfunction (`psp` arg selects the key for specific block)
2015-09-13 00:37:57 +02:00
auto decrypt = [&](u64 offset, u64 size, bool psp) -> u64
2015-08-06 01:59:41 +02:00
{
2016-02-01 22:52:27 +01:00
pkg_f.seek(start_offset + header.data_offset + offset);
2015-09-13 00:37:57 +02:00
// Read the data and set available size
const u64 read = pkg_f.read(buf.get(), size);
// Get block count
const u64 blocks = (read + 15) / 16;
if (header.pkg_type == PKG_RELEASE_TYPE_DEBUG)
{
2015-09-13 00:37:57 +02:00
// Debug key
be_t<u64> input[8] =
{
2015-09-13 00:37:57 +02:00
header.qa_digest[0],
header.qa_digest[0],
header.qa_digest[1],
header.qa_digest[1],
};
for (u64 i = 0; i < blocks; i++)
{
// Initialize stream cipher for current position
2015-09-13 00:37:57 +02:00
input[7] = offset / 16 + i;
union sha1_hash
{
u8 data[20];
u128 _v128;
} hash;
2015-09-13 00:37:57 +02:00
sha1(reinterpret_cast<const u8*>(input), sizeof(input), hash.data);
2015-09-13 00:37:57 +02:00
buf[i] ^= hash._v128;
}
}
if (header.pkg_type == PKG_RELEASE_TYPE_RELEASE)
{
2015-09-13 00:37:57 +02:00
aes_context ctx;
// Set encryption key for stream cipher
2015-09-13 00:37:57 +02:00
aes_setkey_enc(&ctx, psp ? PKG_AES_KEY2 : PKG_AES_KEY, 128);
// Initialize stream cipher for start position
2015-09-13 00:37:57 +02:00
be_t<u128> input = header.klicensee.value() + offset / 16;
// Increment stream position for every block
2015-09-13 00:37:57 +02:00
for (u64 i = 0; i < blocks; i++, input++)
2015-08-06 01:59:41 +02:00
{
u128 key;
2015-08-06 01:59:41 +02:00
aes_crypt_ecb(&ctx, AES_ENCRYPT, reinterpret_cast<const u8*>(&input), reinterpret_cast<u8*>(&key));
2015-09-13 00:37:57 +02:00
buf[i] ^= key;
}
2015-08-06 01:59:41 +02:00
}
2015-09-13 00:37:57 +02:00
// Return the amount of data written in buf
return read;
2015-08-06 01:59:41 +02:00
};
decrypt(0, header.file_count * sizeof(PKGEntry), header.pkg_platform == PKG_PLATFORM_TYPE_PSP);
std::vector<PKGEntry> entries(header.file_count);
2015-08-06 01:59:41 +02:00
std::memcpy(entries.data(), buf.get(), entries.size() * sizeof(PKGEntry));
2015-08-06 01:59:41 +02:00
2015-09-13 00:37:57 +02:00
for (const auto& entry : entries)
2015-04-19 15:19:24 +02:00
{
const bool is_psp = (entry.type & PKG_FILE_ENTRY_PSP) != 0;
2015-08-06 01:59:41 +02:00
2015-09-13 00:37:57 +02:00
if (entry.name_size > 256)
{
LOG_ERROR(LOADER, "PKG name size is too big (0x%x)", entry.name_size);
2015-09-13 00:37:57 +02:00
continue;
}
decrypt(entry.name_offset, entry.name_size, is_psp);
const std::string name(reinterpret_cast<char*>(buf.get()), entry.name_size);
switch (entry.type & 0xff)
2015-08-06 01:59:41 +02:00
{
case PKG_FILE_ENTRY_NPDRM:
case PKG_FILE_ENTRY_NPDRMEDAT:
case PKG_FILE_ENTRY_SDAT:
case PKG_FILE_ENTRY_REGULAR:
case PKG_FILE_ENTRY_UNK1:
{
const std::string path = dir + name;
2015-08-06 01:59:41 +02:00
2015-09-13 00:37:57 +02:00
const bool did_overwrite = fs::is_file(path);
2016-02-01 22:52:27 +01:00
if (fs::file out{ path, fs::rewrite })
{
for (u64 pos = 0; pos < entry.file_size; pos += BUF_SIZE)
{
const u64 block_size = std::min<u64>(BUF_SIZE, entry.file_size - pos);
2015-09-13 00:37:57 +02:00
if (decrypt(entry.file_offset + pos, block_size, is_psp) != block_size)
{
LOG_ERROR(LOADER, "Failed to extract file %s", path);
2015-09-13 00:37:57 +02:00
break;
}
if (out.write(buf.get(), block_size) != block_size)
{
LOG_ERROR(LOADER, "Failed to write file %s", path);
2015-09-13 00:37:57 +02:00
break;
}
if (sync.fetch_add((block_size + 0.0) / header.data_size) < 0.)
{
LOG_ERROR(LOADER, "Package installation cancelled: %s", dir);
return false;
}
2015-09-13 00:37:57 +02:00
}
2015-09-13 00:37:57 +02:00
if (did_overwrite)
{
LOG_WARNING(LOADER, "Overwritten file %s", name);
2015-09-13 00:37:57 +02:00
}
else
{
LOG_NOTICE(LOADER, "Created file %s", name);
}
}
else
{
LOG_ERROR(LOADER, "Failed to create file %s", path);
}
2015-04-19 15:19:24 +02:00
break;
}
case PKG_FILE_ENTRY_FOLDER:
{
const std::string path = dir + name;
2015-09-13 00:37:57 +02:00
if (fs::create_dir(path))
{
LOG_NOTICE(LOADER, "Created directory %s", name);
2015-09-13 00:37:57 +02:00
}
else if (fs::is_dir(path))
2015-04-19 15:19:24 +02:00
{
LOG_WARNING(LOADER, "Reused existing directory %s", name);
2015-09-13 00:37:57 +02:00
}
else
{
LOG_ERROR(LOADER, "Failed to create directory %s", path);
}
2015-04-19 15:19:24 +02:00
break;
}
default:
{
LOG_ERROR(LOADER, "Unknown PKG entry type (0x%x) %s", entry.type, name);
}
}
}
2015-04-19 15:19:24 +02:00
LOG_SUCCESS(LOADER, "Package successfully installed to %s", dir);
2015-08-06 01:59:41 +02:00
return true;
2014-03-04 09:37:28 +01:00
}