#include "chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.h"
#include <memory>
#include <string>
#include <string_view>
#include <utility>
#include <vector>
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/json/json_string_value_serializer.h"
#include "base/logging.h"
#include "base/path_service.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/system/sys_info.h"
#include "base/task/thread_pool.h"
#include "base/time/time.h"
#include "build/branding_buildflags.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/extensions/chrome_content_browser_client_extensions_part.h"
#include "chrome/browser/google/google_brand.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/common/channel_info.h"
#include "components/feedback/system_logs/system_logs_source.h"
#include "components/prefs/pref_service.h"
#include "components/sync/service/sync_internals_util.h"
#include "components/sync/service/sync_service.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/gpu_data_manager.h"
#include "extensions/browser/api/power/power_api.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/common/api/power.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_set.h"
#include "gpu/config/gpu_finch_features.h"
#include "ui/display/types/display_constants.h"
#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "ash/public/ash_interfaces.h"
#include "base/i18n/time_formatting.h"
#include "chrome/browser/ash/arc/arc_util.h"
#include "chrome/browser/ash/arc/policy/arc_policy_bridge.h"
#include "chrome/browser/ash/crosapi/browser_manager.h"
#include "chrome/browser/ash/crosapi/browser_util.h"
#include "chrome/browser/ash/login/demo_mode/demo_session.h"
#include "chrome/browser/ash/login/login_pref_names.h"
#include "chrome/browser/metrics/chromeos_metrics_provider.h"
#include "chrome/browser/metrics/enrollment_status.h"
#include "chromeos/ash/components/dbus/spaced/spaced_client.h"
#include "chromeos/ash/components/login/auth/auth_events_recorder.h"
#include "chromeos/ash/components/settings/cros_settings.h"
#include "chromeos/ash/components/settings/cros_settings_names.h"
#include "chromeos/ash/components/system/statistics_provider.h"
#include "chromeos/version/version_loader.h"
#include "third_party/icu/source/i18n/unicode/timezone.h"
#endif
#if BUILDFLAG(IS_WIN)
#include "base/win/win_util.h"
#include "base/win/windows_version.h"
#include "ui/base/win/hidden_window.h"
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
#include "base/strings/stringprintf.h"
#include "chrome/browser/google/google_update_win.h"
#endif
#endif
#if BUILDFLAG(IS_MAC)
#include "base/mac/mac_util.h"
#endif
namespace system_logs {
namespace {
constexpr char kSyncDataKey[] = …;
constexpr char kExtensionsListKey[] = …;
constexpr char kPowerApiListKey[] = …;
constexpr char kChromeVersionTag[] = …;
constexpr char kSkiaGraphiteStatusKey[] = …;
#if BUILDFLAG(IS_CHROMEOS_ASH)
constexpr char kLacrosChromeVersionPrefix[] = "Lacros ";
#endif
#if BUILDFLAG(IS_CHROMEOS_ASH)
constexpr char kAshChromeVersionPrefix[] = "Ash ";
constexpr char kArcPolicyComplianceReportKey[] =
"CHROMEOS_ARC_POLICY_COMPLIANCE_REPORT";
constexpr char kArcDpcVersionKey[] = "CHROMEOS_ARC_DPC_VERSION";
constexpr char kArcPolicyKey[] = "CHROMEOS_ARC_POLICY";
constexpr char kChromeOsFirmwareVersion[] = "CHROMEOS_FIRMWARE_VERSION";
constexpr char kChromeEnrollmentTag[] = "ENTERPRISE_ENROLLED";
constexpr char kHWIDKey[] = "HWID";
constexpr char kSettingsKey[] = "settings";
constexpr char kLocalStateSettingsResponseKey[] = "Local State: settings";
constexpr char kLTSChromeVersionPrefix[] = "LTS ";
constexpr char kArcStatusKey[] = "CHROMEOS_ARC_STATUS";
constexpr char kMonitorInfoKey[] = "monitor_info";
constexpr char kAccountTypeKey[] = "account_type";
constexpr char kLacrosStatus[] = "lacros_status";
constexpr char kDemoModeConfigKey[] = "demo_mode_config";
constexpr char kOnboardingTime[] = "ONBOARDING_TIME";
constexpr char kFreeDiskSpace[] = "FREE_DISK_SPACE";
constexpr char kTotalDiskSpace[] = "TOTAL_DISK_SPACE";
constexpr char kChronosHomeDirectory[] = "/home/chronos/user";
constexpr char kFailedKnowledgeFactorAttempts[] =
"FAILED_KNOWLEDGE_FACTOR_ATTEMPTS";
constexpr char kRecordedAuthEvents[] = "RECORDED_AUTH_EVENTS";
#else
constexpr char kOsVersionTag[] = …;
#endif
#if BUILDFLAG(IS_WIN)
constexpr char kUsbKeyboardDetected[] = "usb_keyboard_detected";
constexpr char kIsEnrolledToDomain[] = "enrolled_to_domain";
constexpr char kInstallerBrandCode[] = "installer_brand_code";
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
constexpr char kUpdateErrorCode[] = "update_error_code";
constexpr char kUpdateHresult[] = "update_hresult";
constexpr char kInstallResultCode[] = "install_result_code";
constexpr char kInstallLocation[] = "install_location";
#endif
#endif
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
constexpr char kCpuArch[] = "cpu_arch";
#endif
#if BUILDFLAG(IS_CHROMEOS_ASH)
std::string GetPrimaryAccountTypeString() {
DCHECK(user_manager::UserManager::Get());
const user_manager::User* primary_user =
user_manager::UserManager::Get()->GetPrimaryUser();
if (!primary_user)
return "none";
switch (primary_user->GetType()) {
case user_manager::UserType::kRegular:
return "regular";
case user_manager::UserType::kGuest:
return "guest";
case user_manager::UserType::kPublicAccount:
return "public_account";
case user_manager::UserType::kKioskApp:
return "kiosk_app";
case user_manager::UserType::kChild:
return "child";
case user_manager::UserType::kWebKioskApp:
return "web_kiosk_app";
}
return std::string();
}
std::string GetEnrollmentStatusString() {
switch (ChromeOSMetricsProvider::GetEnrollmentStatus()) {
case EnrollmentStatus::kNonManaged:
return "Not managed";
case EnrollmentStatus::kManaged:
return "Managed";
case EnrollmentStatus::kUnused:
case EnrollmentStatus::kErrorGettingStatus:
return "Error retrieving status";
}
}
std::string GetDisplayInfoString(
const crosapi::mojom::DisplayUnitInfo& display_info) {
std::string entry;
if (!display_info.name.empty())
base::StringAppendF(&entry, "%s : ", display_info.name.c_str());
if (!display_info.edid)
return entry;
const crosapi::mojom::Edid& edid = *display_info.edid;
if (!edid.manufacturer_id.empty()) {
base::StringAppendF(&entry, "Manufacturer: %s - ",
edid.manufacturer_id.c_str());
}
if (!edid.product_id.empty()) {
base::StringAppendF(&entry, "Product ID: %s - ", edid.product_id.c_str());
}
if (edid.year_of_manufacture != display::kInvalidYearOfManufacture) {
base::StringAppendF(&entry, "Year of Manufacture: %d",
edid.year_of_manufacture);
}
return entry;
}
void PopulateEntriesAsync(std::unique_ptr<SystemLogsResponse> response,
SysLogsSourceCallback callback) {
auto populate_entries = [](SystemLogsResponse* response) {
DCHECK(response);
auto* stats = ash::system::StatisticsProvider::GetInstance();
DCHECK(stats);
std::optional<std::string_view> hwid =
stats->GetMachineStatistic(ash::system::kHardwareClassKey);
if (hwid) {
response->emplace(kHWIDKey, std::string(hwid.value()));
} else {
VLOG(1) << "Couldn't get machine statistic 'hardware_class'.";
}
response->emplace(kChromeOsFirmwareVersion,
chromeos::version_loader::GetFirmware());
};
SystemLogsResponse* response_ptr = response.get();
base::ThreadPool::PostTaskAndReply(
FROM_HERE, {base::MayBlock(), base::TaskPriority::BEST_EFFORT},
base::BindOnce(populate_entries, response_ptr),
base::BindOnce(std::move(callback), std::move(response)));
}
void PopulateDiskSpaceLogsAsync(std::unique_ptr<SystemLogsResponse> response,
SysLogsSourceCallback callback) {
auto on_get_free_disk_space = [](std::unique_ptr<SystemLogsResponse> response,
SysLogsSourceCallback callback,
std::optional<int64_t> free_space) {
auto on_get_total_disk_space =
[](std::unique_ptr<SystemLogsResponse> response,
SysLogsSourceCallback callback, std::optional<int64_t> total_space) {
if (total_space.has_value()) {
response->emplace(kTotalDiskSpace,
base::NumberToString(total_space.value()));
}
PopulateEntriesAsync(std::move(response), std::move(callback));
};
if (free_space.has_value()) {
response->emplace(kFreeDiskSpace,
base::NumberToString(free_space.value()));
}
if (ash::SpacedClient::Get()) {
ash::SpacedClient::Get()->GetTotalDiskSpace(
kChronosHomeDirectory,
base::BindOnce(on_get_total_disk_space, std::move(response),
std::move(callback)));
}
};
if (ash::SpacedClient::Get()) {
ash::SpacedClient::Get()->GetFreeDiskSpace(
kChronosHomeDirectory,
base::BindOnce(on_get_free_disk_space, std::move(response),
std::move(callback)));
} else {
PopulateEntriesAsync(std::move(response), std::move(callback));
}
}
void PopulateMonitorInfoAsync(
crosapi::mojom::CrosDisplayConfigController* cros_display_config_ptr,
SystemLogsResponse* response,
base::OnceCallback<void()> callback) {
cros_display_config_ptr->GetDisplayUnitInfoList(
false ,
base::BindOnce(
[](SystemLogsResponse* response, base::OnceCallback<void()> callback,
std::vector<crosapi::mojom::DisplayUnitInfoPtr> info_list) {
std::string entry;
for (const crosapi::mojom::DisplayUnitInfoPtr& info : info_list) {
if (!entry.empty())
base::StringAppendF(&entry, "\n");
entry += GetDisplayInfoString(*info);
}
response->emplace(kMonitorInfoKey, entry);
std::move(callback).Run();
},
response, std::move(callback)));
}
void OnPopulateMonitorInfoAsync(std::unique_ptr<SystemLogsResponse> response,
SysLogsSourceCallback callback) {
PopulateDiskSpaceLogsAsync(std::move(response), std::move(callback));
}
#endif
std::string GetChromeVersionString() { … }
#if BUILDFLAG(IS_WIN) && BUILDFLAG(GOOGLE_CHROME_BRANDING)
bool IsParentOf(int key, const base::FilePath& child) {
base::FilePath path;
return base::PathService::Get(key, &path) && path.IsParent(child);
}
std::string DetermineInstallLocation() {
base::FilePath exe_path;
if (base::PathService::Get(base::FILE_EXE, &exe_path)) {
if (IsParentOf(base::DIR_PROGRAM_FILESX86, exe_path) ||
IsParentOf(base::DIR_PROGRAM_FILES, exe_path)) {
return "per-machine";
}
if (IsParentOf(base::DIR_LOCAL_APP_DATA, exe_path))
return "per-user";
}
return "unknown";
}
#endif
#if BUILDFLAG(IS_MAC)
std::string MacCpuArchAsString() {
switch (base::mac::GetCPUType()) {
case base::mac::CPUType::kIntel:
return "x86-64";
case base::mac::CPUType::kTranslatedIntel:
return "x86-64/translated";
case base::mac::CPUType::kArm:
return "arm64";
}
}
#elif BUILDFLAG(IS_WIN)
std::string WinCpuArchAsString() {
#if defined(ARCH_CPU_ARM64)
return "arm64";
#else
bool emulated = base::win::OSInfo::IsRunningEmulatedOnArm64();
#if defined(ARCH_CPU_X86)
if (emulated) {
return "32-bit emulated";
}
return "32-bit";
#else
if (emulated) {
return "64-bit emulated";
}
return "64-bit";
#endif
#endif
}
#endif
}
ChromeInternalLogSource::ChromeInternalLogSource()
: … { … }
ChromeInternalLogSource::~ChromeInternalLogSource() { … }
void ChromeInternalLogSource::Fetch(SysLogsSourceCallback callback) { … }
void ChromeInternalLogSource::PopulateSyncLogs(SystemLogsResponse* response) { … }
void ChromeInternalLogSource::PopulateExtensionInfoLogs(
SystemLogsResponse* response) { … }
void ChromeInternalLogSource::PopulatePowerApiLogs(
SystemLogsResponse* response) { … }
#if BUILDFLAG(IS_CHROMEOS_ASH)
void ChromeInternalLogSource::PopulateLocalStateSettings(
SystemLogsResponse* response) {
base::Value::Dict local_state =
g_browser_process->local_state()->GetPreferenceValues(
PrefService::EXCLUDE_DEFAULTS);
const base::Value::Dict* local_state_settings =
local_state.FindDict(kSettingsKey);
if (!local_state_settings) {
VLOG(1) << "Failed to extract the settings entry from Local State.";
return;
}
std::string serialized_settings;
JSONStringValueSerializer serializer(&serialized_settings);
if (!serializer.Serialize(*local_state_settings))
return;
response->emplace(kLocalStateSettingsResponseKey, serialized_settings);
}
void ChromeInternalLogSource::PopulateArcPolicyStatus(
SystemLogsResponse* response) {
response->emplace(kArcPolicyKey, arc::ArcPolicyBridge::GetForBrowserContext(
ProfileManager::GetLastUsedProfile())
->get_arc_policy_for_reporting());
response->emplace(kArcPolicyComplianceReportKey,
arc::ArcPolicyBridge::GetForBrowserContext(
ProfileManager::GetLastUsedProfile())
->get_arc_policy_compliance_report());
response->emplace(kArcDpcVersionKey,
arc::ArcPolicyBridge::GetForBrowserContext(
ProfileManager::GetLastUsedProfile())
->get_arc_dpc_version());
}
void ChromeInternalLogSource::PopulateOnboardingTime(
SystemLogsResponse* response) {
Profile* profile = ProfileManager::GetPrimaryUserProfile();
if (!profile)
return;
base::Time time =
profile->GetPrefs()->GetTime(ash::prefs::kOobeOnboardingTime);
if (time.is_null())
return;
response->emplace(kOnboardingTime,
base::UnlocalizedTimeFormatWithPattern(
time, "yyyy-MM-dd", icu::TimeZone::getGMT()));
}
#endif
#if BUILDFLAG(IS_WIN)
void ChromeInternalLogSource::PopulateUsbKeyboardDetected(
SystemLogsResponse* response) {
std::string reason;
bool result =
base::win::IsKeyboardPresentOnSlate(ui::GetHiddenWindow(), &reason);
reason.insert(0, result ? "Keyboard Detected:\n" : "No Keyboard:\n");
response->emplace(kUsbKeyboardDetected, reason);
}
void ChromeInternalLogSource::PopulateEnrolledToDomain(
SystemLogsResponse* response) {
response->emplace(kIsEnrolledToDomain, base::win::IsEnrolledToDomain()
? "Enrolled to domain"
: "Not enrolled to domain");
}
void ChromeInternalLogSource::PopulateInstallerBrandCode(
SystemLogsResponse* response) {
std::string brand;
google_brand::GetBrand(&brand);
response->emplace(kInstallerBrandCode,
brand.empty() ? "Unknown brand code" : brand);
}
void ChromeInternalLogSource::PopulateLastUpdateState(
SystemLogsResponse* response) {
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
const std::optional<UpdateState> update_state = GetLastUpdateState();
if (!update_state)
return;
response->emplace(kUpdateErrorCode,
base::NumberToString(update_state->error_code));
response->emplace(kInstallLocation, DetermineInstallLocation());
if (update_state->error_code == GOOGLE_UPDATE_NO_ERROR)
return;
response->emplace(kUpdateHresult,
base::StringPrintf("0x%08lX", update_state->hresult));
if (update_state->installer_exit_code) {
response->emplace(kInstallResultCode,
base::NumberToString(*update_state->installer_exit_code));
}
#endif
}
#endif
}