2016-06-28 09:20:37 +02:00
|
|
|
#include "meta.h"
|
2017-09-17 03:41:36 +02:00
|
|
|
#include "hca_keys.h"
|
|
|
|
#include "../coding/coding.h"
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2020-02-22 20:40:21 +01:00
|
|
|
//#define HCA_BRUTEFORCE
|
|
|
|
#ifdef HCA_BRUTEFORCE
|
|
|
|
static void bruteforce_hca_key(STREAMFILE* sf, hca_codec_data* hca_data, unsigned long long* out_keycode, uint16_t subkey);
|
|
|
|
#endif
|
2020-04-12 20:36:46 +02:00
|
|
|
static void find_hca_key(hca_codec_data* hca_data, uint64_t* p_keycode, uint16_t subkey);
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2020-02-22 20:40:21 +01:00
|
|
|
|
|
|
|
/* CRI HCA - streamed audio from CRI ADX2/Atom middleware */
|
2020-07-16 21:43:01 +02:00
|
|
|
VGMSTREAM * init_vgmstream_hca(STREAMFILE* sf) {
|
|
|
|
return init_vgmstream_hca_subkey(sf, 0x0000);
|
2019-07-07 21:04:56 +02:00
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
VGMSTREAM * init_vgmstream_hca_subkey(STREAMFILE* sf, uint16_t subkey) {
|
2017-09-17 03:41:36 +02:00
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2020-07-16 21:43:01 +02:00
|
|
|
hca_codec_data* hca_data = NULL;
|
|
|
|
clHCA_stInfo* hca_info;
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2019-07-07 21:04:56 +02:00
|
|
|
|
2018-08-29 20:05:31 +02:00
|
|
|
/* checks */
|
2020-07-16 21:43:01 +02:00
|
|
|
if (!check_extensions(sf, "hca"))
|
2018-08-29 20:05:31 +02:00
|
|
|
return NULL;
|
2020-07-16 21:43:01 +02:00
|
|
|
|
|
|
|
if ((read_u32be(0x00,sf) & 0x7F7F7F7F) != 0x48434100) /* "HCA\0", possibly masked */
|
2018-08-29 20:05:31 +02:00
|
|
|
goto fail;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2018-09-01 20:28:00 +02:00
|
|
|
/* init vgmstream and library's context, will validate the HCA */
|
2020-07-16 21:43:01 +02:00
|
|
|
hca_data = init_hca(sf);
|
2018-09-01 20:28:00 +02:00
|
|
|
if (!hca_data) goto fail;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
hca_info = hca_get_info(hca_data);
|
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
/* find decryption key in external file or preloaded list */
|
2020-07-16 21:43:01 +02:00
|
|
|
if (hca_info->encryptionEnabled) {
|
2020-04-12 20:36:46 +02:00
|
|
|
uint64_t keycode = 0;
|
2018-10-13 19:53:25 +02:00
|
|
|
uint8_t keybuf[0x08+0x02];
|
|
|
|
size_t keysize;
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
keysize = read_key_file(keybuf, 0x08+0x04, sf);
|
2018-10-13 19:53:25 +02:00
|
|
|
if (keysize == 0x08) { /* standard */
|
2020-07-16 21:43:01 +02:00
|
|
|
keycode = get_u64be(keybuf+0x00);
|
2019-08-02 21:13:00 +02:00
|
|
|
if (subkey) {
|
|
|
|
keycode = keycode * ( ((uint64_t)subkey << 16u) | ((uint16_t)~subkey + 2u) );
|
|
|
|
}
|
2018-10-13 19:53:25 +02:00
|
|
|
}
|
|
|
|
else if (keysize == 0x08+0x02) { /* seed key + AWB subkey */
|
2020-07-16 21:43:01 +02:00
|
|
|
uint64_t file_key = get_u64be(keybuf+0x00);
|
|
|
|
uint16_t file_sub = get_u16be(keybuf+0x08);
|
2019-08-02 21:13:00 +02:00
|
|
|
keycode = file_key * ( ((uint64_t)file_sub << 16u) | ((uint16_t)~file_sub + 2u) );
|
2018-10-13 19:53:25 +02:00
|
|
|
}
|
2020-02-22 20:40:21 +01:00
|
|
|
#ifdef HCA_BRUTEFORCE
|
|
|
|
else if (1) {
|
2020-07-16 21:43:01 +02:00
|
|
|
bruteforce_hca_key(sf, hca_data, &keycode, subkey);
|
2020-02-22 20:40:21 +01:00
|
|
|
}
|
|
|
|
#endif
|
2018-10-13 19:53:25 +02:00
|
|
|
else {
|
2019-07-07 21:04:56 +02:00
|
|
|
find_hca_key(hca_data, &keycode, subkey);
|
2016-12-04 14:12:23 +01:00
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
hca_set_encryption_key(hca_data, keycode);
|
2018-09-01 20:28:00 +02:00
|
|
|
}
|
2017-09-17 03:41:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
2020-07-16 21:43:01 +02:00
|
|
|
vgmstream = allocate_vgmstream(hca_info->channelCount, hca_info->loopEnabled);
|
2017-09-17 03:41:36 +02:00
|
|
|
if (!vgmstream) goto fail;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2018-08-29 20:05:31 +02:00
|
|
|
vgmstream->meta_type = meta_HCA;
|
2020-07-16 21:43:01 +02:00
|
|
|
vgmstream->sample_rate = hca_info->samplingRate;
|
|
|
|
|
|
|
|
vgmstream->num_samples = hca_info->blockCount * hca_info->samplesPerBlock -
|
|
|
|
hca_info->encoderDelay - hca_info->encoderPadding;
|
|
|
|
vgmstream->loop_start_sample = hca_info->loopStartBlock * hca_info->samplesPerBlock -
|
|
|
|
hca_info->encoderDelay + hca_info->loopStartDelay;
|
|
|
|
vgmstream->loop_end_sample = hca_info->loopEndBlock * hca_info->samplesPerBlock -
|
|
|
|
hca_info->encoderDelay + (hca_info->samplesPerBlock - hca_info->loopEndPadding);
|
2018-08-29 23:42:47 +02:00
|
|
|
/* After loop end CRI's encoder removes the rest of the original samples and puts some
|
|
|
|
* garbage in the last frame that should be ignored. Optionally it can encode fully preserving
|
|
|
|
* the file too, but it isn't detectable, so we'll allow the whole thing just in case */
|
|
|
|
//if (vgmstream->loop_end_sample && vgmstream->num_samples > vgmstream->loop_end_sample)
|
|
|
|
// vgmstream->num_samples = vgmstream->loop_end_sample;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2019-07-14 21:24:28 +02:00
|
|
|
/* this can happen in preloading HCA from memory AWB */
|
2020-07-16 21:43:01 +02:00
|
|
|
if (hca_info->blockCount * hca_info->blockSize > get_streamfile_size(sf)) {
|
|
|
|
unsigned int max_block = get_streamfile_size(sf) / hca_info->blockSize;
|
|
|
|
vgmstream->num_samples = max_block * hca_info->samplesPerBlock -
|
|
|
|
hca_info->encoderDelay - hca_info->encoderPadding;
|
2019-07-14 21:24:28 +02:00
|
|
|
}
|
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
vgmstream->coding_type = coding_CRI_HCA;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
vgmstream->codec_data = hca_data;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2019-08-15 15:15:00 +02:00
|
|
|
/* assumed mappings */
|
|
|
|
{
|
|
|
|
static const uint32_t hca_mappings[] = {
|
|
|
|
0,
|
|
|
|
mapping_MONO,
|
|
|
|
mapping_STEREO,
|
|
|
|
mapping_2POINT1,
|
|
|
|
mapping_QUAD,
|
|
|
|
mapping_5POINT0,
|
|
|
|
mapping_5POINT1,
|
|
|
|
mapping_7POINT0,
|
|
|
|
mapping_7POINT1,
|
|
|
|
};
|
|
|
|
|
|
|
|
vgmstream->channel_layout = hca_mappings[vgmstream->channels];
|
|
|
|
}
|
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
return vgmstream;
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
fail:
|
2018-08-29 20:05:31 +02:00
|
|
|
free_hca(hca_data);
|
2017-09-17 03:41:36 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2016-06-28 09:20:37 +02:00
|
|
|
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
static inline void test_key(hca_codec_data* hca_data, uint64_t key, uint16_t subkey, int* best_score, uint64_t* best_keycode) {
|
2018-10-13 19:53:25 +02:00
|
|
|
int score;
|
|
|
|
|
|
|
|
if (subkey) {
|
|
|
|
key = key * ( ((uint64_t)subkey << 16u) | ((uint16_t)~subkey + 2u) );
|
|
|
|
}
|
|
|
|
|
|
|
|
score = test_hca_key(hca_data, (unsigned long long)key);
|
|
|
|
|
|
|
|
//;VGM_LOG("HCA: test key=%08x%08x, subkey=%04x, score=%i\n",
|
|
|
|
// (uint32_t)((key >> 32) & 0xFFFFFFFF), (uint32_t)(key & 0xFFFFFFFF), subkey, score);
|
|
|
|
|
|
|
|
/* wrong key */
|
|
|
|
if (score < 0)
|
|
|
|
return;
|
|
|
|
|
2018-12-22 19:44:30 +01:00
|
|
|
/* update if something better is found */
|
|
|
|
if (*best_score <= 0 || (score < *best_score && score > 0)) {
|
2018-10-13 19:53:25 +02:00
|
|
|
*best_score = score;
|
|
|
|
*best_keycode = key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-22 20:40:21 +01:00
|
|
|
/* try to find the decryption key from a list. */
|
2020-04-12 20:36:46 +02:00
|
|
|
static void find_hca_key(hca_codec_data* hca_data, uint64_t* p_keycode, uint16_t subkey) {
|
2018-09-01 20:28:00 +02:00
|
|
|
const size_t keys_length = sizeof(hcakey_list) / sizeof(hcakey_info);
|
2018-09-02 16:00:58 +02:00
|
|
|
int best_score = -1;
|
2018-10-13 19:53:25 +02:00
|
|
|
int i,j;
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2020-04-12 20:36:46 +02:00
|
|
|
*p_keycode = 0xCC55463930DBE1AB; /* defaults to PSO2 key, most common */
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
for (i = 0; i < keys_length; i++) {
|
2018-10-13 19:53:25 +02:00
|
|
|
uint64_t key = hcakey_list[i].key;
|
|
|
|
size_t subkeys_size = hcakey_list[i].subkeys_size;
|
|
|
|
const uint16_t *subkeys = hcakey_list[i].subkeys;
|
|
|
|
|
2020-04-12 20:36:46 +02:00
|
|
|
test_key(hca_data, key, subkey, &best_score, p_keycode);
|
2020-02-22 20:40:21 +01:00
|
|
|
if (best_score == 1)
|
2019-07-07 21:04:56 +02:00
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (subkeys_size > 0 && subkey == 0) {
|
2018-10-13 19:53:25 +02:00
|
|
|
for (j = 0; j < subkeys_size; j++) {
|
2020-04-12 20:36:46 +02:00
|
|
|
test_key(hca_data, key, subkeys[j], &best_score, p_keycode);
|
2020-02-22 20:40:21 +01:00
|
|
|
if (best_score == 1)
|
2018-10-13 19:53:25 +02:00
|
|
|
goto done;
|
|
|
|
}
|
2017-09-17 03:41:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-13 19:53:25 +02:00
|
|
|
done:
|
2018-09-02 16:00:58 +02:00
|
|
|
VGM_ASSERT(best_score > 1, "HCA: best key=%08x%08x (score=%i)\n",
|
2020-04-12 20:36:46 +02:00
|
|
|
(uint32_t)((*p_keycode >> 32) & 0xFFFFFFFF), (uint32_t)(*p_keycode & 0xFFFFFFFF), best_score);
|
2020-02-22 20:40:21 +01:00
|
|
|
VGM_ASSERT(best_score < 0, "HCA: key not found\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HCA_BRUTEFORCE
|
|
|
|
/* Bruteforce binary keys in executables and similar files, mainly for some mobile games.
|
|
|
|
* Kinda slow but acceptable for ~20MB exes, not very optimized. Unity usually has keys
|
|
|
|
* in plaintext (inside levelX or other base files) instead though. */
|
|
|
|
static void bruteforce_hca_key(STREAMFILE* sf, hca_codec_data* hca_data, unsigned long long* out_keycode, uint16_t subkey) {
|
|
|
|
STREAMFILE* sf_keys = NULL;
|
|
|
|
uint8_t* buf = NULL;
|
|
|
|
int best_score = -1;
|
|
|
|
off_t keys_size, bytes;
|
2020-08-29 01:05:08 +02:00
|
|
|
int pos;
|
2020-02-22 20:40:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
VGM_LOG("HCA: test keys\n");
|
|
|
|
|
|
|
|
*out_keycode = 0;
|
|
|
|
|
|
|
|
/* load whole file in memory for performance (exes with keys shouldn't be too big) */
|
|
|
|
sf_keys = open_streamfile_by_filename(sf, "keys.bin");
|
|
|
|
if (!sf_keys) goto done;
|
|
|
|
|
|
|
|
keys_size = get_streamfile_size(sf_keys);
|
2019-05-17 22:30:49 +02:00
|
|
|
|
2020-02-22 20:40:21 +01:00
|
|
|
buf = malloc(keys_size);
|
|
|
|
if (!buf) goto done;
|
|
|
|
|
|
|
|
bytes = read_streamfile(buf, 0, keys_size, sf_keys);
|
|
|
|
if (bytes != keys_size) goto done;
|
|
|
|
|
|
|
|
pos = 0;
|
|
|
|
while (pos < keys_size - 4) {
|
|
|
|
uint64_t key;
|
|
|
|
|
|
|
|
/* keys are usually u32le lower, u32le upper (u64le) but other orders may exist */
|
|
|
|
key = ((uint64_t)get_u32le(buf + pos + 0x00) << 0 ) | ((uint64_t)get_u32le(buf + pos + 0x04) << 32);
|
|
|
|
//key = ((uint64_t)get_u32le(buf + pos + 0x00) << 32) | ((uint64_t)get_u32le(buf + pos + 0x04) << 0);
|
|
|
|
//key = ((uint64_t)get_u32be(buf + pos + 0x00) << 0 ) | ((uint64_t)get_u32be(buf + pos + 0x04) << 32);
|
|
|
|
//key = ((uint64_t)get_u32be(buf + pos + 0x00) << 32) | ((uint64_t)get_u32be(buf + pos + 0x04) << 0);
|
|
|
|
if (key == 0)
|
|
|
|
continue;
|
|
|
|
|
2020-08-29 01:05:08 +02:00
|
|
|
test_key(hca_data, key, subkey, &best_score, out_keycode);
|
2020-02-22 20:40:21 +01:00
|
|
|
if (best_score == 1)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
VGM_ASSERT(pos % 0x100000 == 0, "HCA: pos %x...\n", pos);
|
|
|
|
|
|
|
|
/* observed files have aligned keys in the .text section, change if needed */
|
|
|
|
pos += 0x04; //pos++;
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
VGM_ASSERT(best_score > 0, "HCA: best key=%08x%08x (score=%i)\n",
|
|
|
|
(uint32_t)((*out_keycode >> 32) & 0xFFFFFFFF), (uint32_t)(*out_keycode & 0xFFFFFFFF), best_score);
|
2019-05-17 22:30:49 +02:00
|
|
|
VGM_ASSERT(best_score < 0, "HCA: key not found\n");
|
2020-02-22 20:40:21 +01:00
|
|
|
|
|
|
|
close_streamfile(sf_keys);
|
|
|
|
free(buf);
|
2016-06-28 09:20:37 +02:00
|
|
|
}
|
2020-02-22 20:40:21 +01:00
|
|
|
#endif
|