2017-05-02 04:09:15 +00:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-10-09 18:42:49 +00:00
|
|
|
#include <array>
|
|
|
|
|
2018-10-09 18:47:24 +00:00
|
|
|
#include <mbedtls/ctr_drbg.h>
|
|
|
|
#include <mbedtls/entropy.h>
|
|
|
|
|
2017-07-13 02:19:34 +00:00
|
|
|
#include "common/assert.h"
|
2018-08-14 22:48:28 +00:00
|
|
|
#include "common/common_types.h"
|
2017-08-23 00:58:19 +00:00
|
|
|
#include "common/file_util.h"
|
2018-10-09 18:47:24 +00:00
|
|
|
#include "common/logging/log.h"
|
2018-08-14 22:48:28 +00:00
|
|
|
|
2017-08-01 23:55:48 +00:00
|
|
|
#include "core/core.h"
|
2018-09-03 23:00:51 +00:00
|
|
|
#include "core/file_sys/control_metadata.h"
|
|
|
|
#include "core/file_sys/patch_manager.h"
|
2018-08-31 16:21:34 +00:00
|
|
|
#include "core/loader/loader.h"
|
2017-07-13 02:19:34 +00:00
|
|
|
#include "core/settings.h"
|
2017-05-02 04:09:15 +00:00
|
|
|
#include "core/telemetry_session.h"
|
2017-07-09 21:52:18 +00:00
|
|
|
|
2018-09-16 18:05:51 +00:00
|
|
|
#ifdef ENABLE_WEB_SERVICE
|
|
|
|
#include "web_service/telemetry_json.h"
|
|
|
|
#include "web_service/verify_login.h"
|
|
|
|
#endif
|
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
namespace Core {
|
|
|
|
|
2017-08-23 00:58:19 +00:00
|
|
|
static u64 GenerateTelemetryId() {
|
|
|
|
u64 telemetry_id{};
|
2018-09-16 18:05:51 +00:00
|
|
|
|
|
|
|
mbedtls_entropy_context entropy;
|
|
|
|
mbedtls_entropy_init(&entropy);
|
|
|
|
mbedtls_ctr_drbg_context ctr_drbg;
|
2018-10-09 18:42:49 +00:00
|
|
|
constexpr std::array<char, 18> personalization{{"yuzu Telemetry ID"}};
|
2018-09-16 18:05:51 +00:00
|
|
|
|
|
|
|
mbedtls_ctr_drbg_init(&ctr_drbg);
|
2018-09-17 15:16:01 +00:00
|
|
|
ASSERT(mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy,
|
2018-10-09 18:42:49 +00:00
|
|
|
reinterpret_cast<const unsigned char*>(personalization.data()),
|
2018-09-17 18:58:24 +00:00
|
|
|
personalization.size()) == 0);
|
2018-09-16 18:05:51 +00:00
|
|
|
ASSERT(mbedtls_ctr_drbg_random(&ctr_drbg, reinterpret_cast<unsigned char*>(&telemetry_id),
|
|
|
|
sizeof(u64)) == 0);
|
|
|
|
|
|
|
|
mbedtls_ctr_drbg_free(&ctr_drbg);
|
|
|
|
mbedtls_entropy_free(&entropy);
|
|
|
|
|
2017-08-23 00:58:19 +00:00
|
|
|
return telemetry_id;
|
|
|
|
}
|
|
|
|
|
2017-08-23 04:08:07 +00:00
|
|
|
u64 GetTelemetryId() {
|
2017-08-23 00:58:19 +00:00
|
|
|
u64 telemetry_id{};
|
2018-08-21 00:06:22 +00:00
|
|
|
const std::string filename{FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) +
|
|
|
|
"telemetry_id"};
|
2017-08-23 00:58:19 +00:00
|
|
|
|
2018-09-16 18:05:51 +00:00
|
|
|
bool generate_new_id = !FileUtil::Exists(filename);
|
|
|
|
if (!generate_new_id) {
|
2017-08-23 00:58:19 +00:00
|
|
|
FileUtil::IOFile file(filename, "rb");
|
|
|
|
if (!file.IsOpen()) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(Core, "failed to open telemetry_id: {}", filename);
|
2017-08-23 00:58:19 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
file.ReadBytes(&telemetry_id, sizeof(u64));
|
2018-09-16 18:05:51 +00:00
|
|
|
if (telemetry_id == 0) {
|
|
|
|
LOG_ERROR(Frontend, "telemetry_id is 0. Generating a new one.", telemetry_id);
|
|
|
|
generate_new_id = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (generate_new_id) {
|
2017-08-23 00:58:19 +00:00
|
|
|
FileUtil::IOFile file(filename, "wb");
|
|
|
|
if (!file.IsOpen()) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(Core, "failed to open telemetry_id: {}", filename);
|
2017-08-23 00:58:19 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
telemetry_id = GenerateTelemetryId();
|
|
|
|
file.WriteBytes(&telemetry_id, sizeof(u64));
|
|
|
|
}
|
|
|
|
|
|
|
|
return telemetry_id;
|
|
|
|
}
|
|
|
|
|
2017-08-23 04:08:07 +00:00
|
|
|
u64 RegenerateTelemetryId() {
|
|
|
|
const u64 new_telemetry_id{GenerateTelemetryId()};
|
2018-08-21 00:06:22 +00:00
|
|
|
const std::string filename{FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) +
|
|
|
|
"telemetry_id"};
|
2017-08-23 04:08:07 +00:00
|
|
|
|
|
|
|
FileUtil::IOFile file(filename, "wb");
|
|
|
|
if (!file.IsOpen()) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(Core, "failed to open telemetry_id: {}", filename);
|
2017-08-23 04:08:07 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
file.WriteBytes(&new_telemetry_id, sizeof(u64));
|
|
|
|
return new_telemetry_id;
|
|
|
|
}
|
|
|
|
|
2018-09-17 15:16:01 +00:00
|
|
|
bool VerifyLogin(const std::string& username, const std::string& token) {
|
2017-09-19 01:18:26 +00:00
|
|
|
#ifdef ENABLE_WEB_SERVICE
|
2018-09-16 18:05:51 +00:00
|
|
|
return WebService::VerifyLogin(Settings::values.web_api_url, username, token);
|
2017-09-19 01:18:26 +00:00
|
|
|
#else
|
2018-09-16 18:05:51 +00:00
|
|
|
return false;
|
2017-09-19 01:18:26 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
TelemetrySession::TelemetrySession() {
|
2017-07-09 21:52:18 +00:00
|
|
|
#ifdef ENABLE_WEB_SERVICE
|
2018-11-30 18:01:05 +00:00
|
|
|
backend = std::make_unique<WebService::TelemetryJson>(
|
|
|
|
Settings::values.web_api_url, Settings::values.yuzu_username, Settings::values.yuzu_token);
|
2017-07-09 21:52:18 +00:00
|
|
|
#else
|
|
|
|
backend = std::make_unique<Telemetry::NullVisitor>();
|
|
|
|
#endif
|
2017-08-23 00:58:19 +00:00
|
|
|
// Log one-time top-level information
|
|
|
|
AddField(Telemetry::FieldType::None, "TelemetryId", GetTelemetryId());
|
|
|
|
|
2017-05-02 04:10:04 +00:00
|
|
|
// Log one-time session start information
|
2017-07-13 02:19:34 +00:00
|
|
|
const s64 init_time{std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
|
|
std::chrono::system_clock::now().time_since_epoch())
|
|
|
|
.count()};
|
|
|
|
AddField(Telemetry::FieldType::Session, "Init_Time", init_time);
|
2018-09-03 23:00:51 +00:00
|
|
|
|
|
|
|
u64 program_id{};
|
|
|
|
const Loader::ResultStatus res{System::GetInstance().GetAppLoader().ReadProgramId(program_id)};
|
2017-08-01 23:55:48 +00:00
|
|
|
if (res == Loader::ResultStatus::Success) {
|
2018-09-17 15:16:01 +00:00
|
|
|
const std::string formatted_program_id{fmt::format("{:016X}", program_id)};
|
2018-09-16 18:05:51 +00:00
|
|
|
AddField(Telemetry::FieldType::Session, "ProgramId", formatted_program_id);
|
2018-09-03 23:00:51 +00:00
|
|
|
|
|
|
|
std::string name;
|
|
|
|
System::GetInstance().GetAppLoader().ReadTitle(name);
|
|
|
|
|
|
|
|
if (name.empty()) {
|
|
|
|
auto [nacp, icon_file] = FileSys::PatchManager(program_id).GetControlMetadata();
|
|
|
|
if (nacp != nullptr)
|
|
|
|
name = nacp->GetApplicationName();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!name.empty())
|
|
|
|
AddField(Telemetry::FieldType::Session, "ProgramName", name);
|
2017-08-01 23:55:48 +00:00
|
|
|
}
|
2017-05-02 04:10:04 +00:00
|
|
|
|
2018-09-03 23:00:51 +00:00
|
|
|
AddField(Telemetry::FieldType::Session, "ProgramFormat",
|
|
|
|
static_cast<u8>(System::GetInstance().GetAppLoader().GetFileType()));
|
|
|
|
|
2017-07-13 02:19:34 +00:00
|
|
|
// Log application information
|
2018-08-14 22:48:28 +00:00
|
|
|
Telemetry::AppendBuildInfo(field_collection);
|
2017-07-13 02:19:34 +00:00
|
|
|
|
2018-08-14 22:48:28 +00:00
|
|
|
// Log user system information
|
|
|
|
Telemetry::AppendCPUInfo(field_collection);
|
|
|
|
Telemetry::AppendOSInfo(field_collection);
|
2017-07-13 02:19:34 +00:00
|
|
|
|
|
|
|
// Log user configuration information
|
2018-08-23 12:33:03 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Audio_SinkId", Settings::values.sink_id);
|
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Audio_EnableAudioStretching",
|
|
|
|
Settings::values.enable_audio_stretching);
|
2018-03-27 03:01:40 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Core_UseCpuJit", Settings::values.use_cpu_jit);
|
2018-05-03 04:34:54 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Core_UseMultiCore",
|
|
|
|
Settings::values.use_multi_core);
|
2017-07-13 02:19:34 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Renderer_ResolutionFactor",
|
|
|
|
Settings::values.resolution_factor);
|
2018-08-20 23:14:06 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Renderer_UseFrameLimit",
|
|
|
|
Settings::values.use_frame_limit);
|
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Renderer_FrameLimit", Settings::values.frame_limit);
|
2018-10-16 21:02:29 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Renderer_UseAccurateGpuEmulation",
|
|
|
|
Settings::values.use_accurate_gpu_emulation);
|
2018-03-27 03:01:40 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "System_UseDockedMode",
|
|
|
|
Settings::values.use_docked_mode);
|
2017-05-02 04:09:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TelemetrySession::~TelemetrySession() {
|
2017-05-02 04:10:04 +00:00
|
|
|
// Log one-time session end information
|
2017-07-13 02:19:34 +00:00
|
|
|
const s64 shutdown_time{std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
|
|
std::chrono::system_clock::now().time_since_epoch())
|
|
|
|
.count()};
|
|
|
|
AddField(Telemetry::FieldType::Session, "Shutdown_Time", shutdown_time);
|
2017-05-02 04:10:04 +00:00
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
// Complete the session, submitting to web service if necessary
|
|
|
|
// This is just a placeholder to wrap up the session once the core completes and this is
|
|
|
|
// destroyed. This will be moved elsewhere once we are actually doing real I/O with the service.
|
|
|
|
field_collection.Accept(*backend);
|
2018-11-30 18:01:05 +00:00
|
|
|
if (Settings::values.enable_telemetry)
|
|
|
|
backend->Complete();
|
2017-05-02 04:09:15 +00:00
|
|
|
backend = nullptr;
|
|
|
|
}
|
|
|
|
|
2018-10-26 14:21:45 +00:00
|
|
|
bool TelemetrySession::SubmitTestcase() {
|
|
|
|
#ifdef ENABLE_WEB_SERVICE
|
|
|
|
field_collection.Accept(*backend);
|
|
|
|
return backend->SubmitTestcase();
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
} // namespace Core
|