#include <string_view>
#include "build/build_config.h"
#if BUILDFLAG(IS_WIN)
#include <windows.h>
#endif
#include <fstream>
#include <memory>
#include <string>
#include "base/base_switches.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/debug/debugger.h"
#include "base/debug/dump_without_crashing.h"
#include "base/environment.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/metrics/statistics_recorder.h"
#include "base/path_service.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/common/buildflags.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/env_vars.h"
#include "chrome/common/logging_chrome.h"
#include "content/public/common/content_switches.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "ash/constants/ash_switches.h"
#include "base/i18n/time_formatting.h"
#include "third_party/icu/source/i18n/unicode/timezone.h"
#endif
#if BUILDFLAG(IS_WIN)
#include <initguid.h>
#include "base/logging_win.h"
#include "base/process/process_info.h"
#include "base/syslog_logging.h"
#include "base/win/scoped_handle.h"
#include "base/win/windows_handle_util.h"
#include "chrome/common/win/eventlog_messages.h"
#include "chrome/install_static/install_details.h"
#include "sandbox/policy/switches.h"
#endif
namespace logging {
namespace {
bool dialogs_are_suppressed_ = false;
ScopedLogAssertHandler* assert_handler_ = nullptr;
bool chrome_logging_initialized_ = false;
bool chrome_logging_failed_ = false;
bool chrome_logging_redirected_ = false;
#if BUILDFLAG(IS_CHROMEOS)
constexpr char kChronosHomeDir[] = "/home/chronos/user/";
#endif
#if BUILDFLAG(IS_WIN)
const GUID kChromeTraceProviderName = {
0x7fe69228,
0x633e,
0x4f06,
{0x80, 0xc1, 0x52, 0x7f, 0xea, 0x23, 0xe3, 0xa7}};
#endif
NOINLINE void SilentRuntimeAssertHandler(const char* file,
int line,
std::string_view message,
std::string_view stack_trace) {
base::debug::BreakDebugger();
}
void SuppressDialogs() {
if (dialogs_are_suppressed_)
return;
assert_handler_ = new ScopedLogAssertHandler(
base::BindRepeating(SilentRuntimeAssertHandler));
#if BUILDFLAG(IS_WIN)
UINT new_flags =
SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX;
UINT existing_flags = SetErrorMode(new_flags);
SetErrorMode(existing_flags | new_flags);
#endif
dialogs_are_suppressed_ = true;
}
#if BUILDFLAG(IS_WIN)
base::win::ScopedHandle GetLogInheritedHandle(
const base::CommandLine& command_line) {
auto handle_str = command_line.GetSwitchValueNative(switches::kLogFile);
uint32_t handle_value = 0;
if (!base::StringToUint(handle_str, &handle_value)) {
return base::win::ScopedHandle();
}
HANDLE log_handle = nullptr;
if (!::DuplicateHandle(GetCurrentProcess(),
base::win::Uint32ToHandle(handle_value),
GetCurrentProcess(), &log_handle, 0,
FALSE, DUPLICATE_SAME_ACCESS)) {
return base::win::ScopedHandle();
}
return base::win::ScopedHandle(log_handle);
}
#endif
LoggingDestination LoggingDestFromCommandLine(
const base::CommandLine& command_line,
bool& filename_is_handle) {
filename_is_handle = false;
#if defined(NDEBUG)
const LoggingDestination kDefaultLoggingMode = LOG_TO_FILE;
#else
const LoggingDestination kDefaultLoggingMode = LOG_TO_ALL;
#endif
#if BUILDFLAG(CHROME_ENABLE_LOGGING_BY_DEFAULT)
bool enable_logging = true;
const char* const kInvertLoggingSwitch = switches::kDisableLogging;
#else
bool enable_logging = false;
const char* const kInvertLoggingSwitch = switches::kEnableLogging;
#endif
if (command_line.HasSwitch(kInvertLoggingSwitch))
enable_logging = !enable_logging;
if (!enable_logging)
return LOG_NONE;
if (command_line.HasSwitch(switches::kEnableLogging)) {
std::string logging_destination =
command_line.GetSwitchValueASCII(switches::kEnableLogging);
if (logging_destination == "stderr") {
return LOG_TO_SYSTEM_DEBUG_LOG | LOG_TO_STDERR;
}
#if BUILDFLAG(IS_WIN)
if (logging_destination == "handle" &&
command_line.HasSwitch(switches::kProcessType) &&
command_line.HasSwitch(switches::kLogFile)) {
filename_is_handle = true;
return kDefaultLoggingMode | LOG_TO_FILE;
}
#endif
if (logging_destination != "") {
LOG(ERROR) << "Invalid logging destination: " << logging_destination;
return kDefaultLoggingMode;
}
#if BUILDFLAG(IS_WIN)
if (command_line.HasSwitch(switches::kProcessType) &&
!command_line.HasSwitch(sandbox::policy::switches::kNoSandbox)) {
return kDefaultLoggingMode & ~LOG_TO_FILE;
}
#endif
}
return kDefaultLoggingMode;
}
}
LoggingDestination DetermineLoggingDestination(
const base::CommandLine& command_line) {
bool unused = false;
return LoggingDestFromCommandLine(command_line, unused);
}
#if BUILDFLAG(IS_CHROMEOS)
bool RotateLogFile(const base::FilePath& target_path) {
DCHECK(!target_path.empty());
if (!base::PathExists(target_path)) {
return true;
}
base::File::Info info;
{
base::File fp(target_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
if (!fp.IsValid() || !fp.GetInfo(&info)) {
return false;
}
}
base::Time timestamp = info.creation_time;
base::FilePath rotated_path = GenerateTimestampedName(target_path, timestamp);
while (base::PathExists(rotated_path)) {
timestamp += base::Seconds(1);
rotated_path = GenerateTimestampedName(target_path, timestamp);
}
if (!base::ReplaceFile(target_path, rotated_path, nullptr)) {
PLOG(ERROR) << "Failed to rotate the log files: " << target_path << " => "
<< rotated_path;
return false;
}
return true;
}
base::FilePath SetUpSymlinkIfNeeded(const base::FilePath& symlink_path,
bool new_log) {
DCHECK(!symlink_path.empty());
if (symlink_path.Extension() == ".LATEST") {
base::FilePath extensionless_path = symlink_path.ReplaceExtension("");
base::FilePath target_path;
bool extensionless_symlink_exists =
base::ReadSymbolicLink(extensionless_path, &target_path);
if (target_path != symlink_path) {
if (extensionless_symlink_exists &&
!base::DeleteFile(extensionless_path)) {
DPLOG(WARNING) << "Cannot delete " << extensionless_path.value();
}
if (!base::CreateSymbolicLink(symlink_path, extensionless_path)) {
DPLOG(ERROR) << "Cannot create " << extensionless_path.value();
}
}
}
base::FilePath target_path;
bool symlink_exists = base::ReadSymbolicLink(symlink_path, &target_path);
if (symlink_exists && !new_log)
return target_path;
target_path = GenerateTimestampedName(symlink_path.RemoveExtension(),
base::Time::Now());
if (symlink_exists) {
base::FilePath previous_symlink_path =
symlink_path.ReplaceExtension(".PREVIOUS");
if (!base::ReplaceFile(symlink_path, previous_symlink_path, nullptr)) {
DPLOG(WARNING) << "Cannot rename " << symlink_path.value() << " to "
<< previous_symlink_path.value();
}
}
base::FilePath relative_target_path = target_path.BaseName();
if (!base::CreateSymbolicLink(relative_target_path, symlink_path)) {
DPLOG(ERROR) << "Unable to create symlink " << symlink_path.value()
<< " pointing at " << relative_target_path.value();
}
return target_path;
}
void RemoveSymlinkAndLog(const base::FilePath& link_path,
const base::FilePath& target_path) {
if (::unlink(link_path.value().c_str()) == -1)
DPLOG(WARNING) << "Unable to unlink symlink " << link_path.value();
if (target_path != link_path && ::unlink(target_path.value().c_str()) == -1)
DPLOG(WARNING) << "Unable to unlink log file " << target_path.value();
}
base::FilePath GetSessionLogDir(const base::CommandLine& command_line) {
std::unique_ptr<base::Environment> env(base::Environment::Create());
std::optional<std::string> log_dir = env->GetVar(env_vars::kSessionLogDir);
if (!log_dir.has_value()) {
NOTREACHED();
}
return base::FilePath(log_dir.value());
}
base::FilePath GetSessionLogFile(const base::CommandLine& command_line) {
return GetSessionLogDir(command_line)
.Append(GetLogFileName(command_line).BaseName());
}
base::FilePath SetUpLogFile(const base::FilePath& target_path, bool new_log) {
const bool supports_symlinks =
!(target_path.IsAbsolute() &&
base::StartsWith(target_path.value(), kChronosHomeDir));
if (supports_symlinks) {
return SetUpSymlinkIfNeeded(target_path, new_log);
}
if (!new_log) {
return target_path;
}
base::FilePath bare_path = target_path;
if (target_path.Extension() == ".LATEST") {
bare_path = target_path.ReplaceExtension("");
}
if (!RotateLogFile(bare_path)) {
PLOG(ERROR) << "Failed to rotate the log file: " << bare_path.value()
<< ". Keeping using the same log file without rotating.";
}
return bare_path;
}
#endif
void InitChromeLogging(const base::CommandLine& command_line,
OldFileDeletionState delete_old_log_file) {
DCHECK(!chrome_logging_initialized_)
<< "Attempted to initialize logging when it was already initialized.";
bool filename_is_handle = false;
LoggingDestination logging_dest =
LoggingDestFromCommandLine(command_line, filename_is_handle);
LogLockingState log_locking_state = LOCK_LOG_FILE;
base::FilePath log_path;
#if BUILDFLAG(IS_CHROMEOS)
base::FilePath target_path;
#endif
#if BUILDFLAG(IS_WIN)
base::win::ScopedHandle log_handle;
#endif
if (logging_dest & LOG_TO_FILE) {
if (filename_is_handle) {
#if BUILDFLAG(IS_WIN)
log_handle = GetLogInheritedHandle(command_line);
if (!log_handle.is_valid()) {
DLOG(ERROR) << "Unable to initialize logging from handle.";
chrome_logging_failed_ = true;
return;
}
#endif
} else {
log_path = GetLogFileName(command_line);
#if BUILDFLAG(IS_CHROMEOS)
if (command_line.HasSwitch(ash::switches::kGuestSession)) {
log_path = GetSessionLogFile(command_line);
}
target_path =
SetUpLogFile(log_path, delete_old_log_file == DELETE_OLD_LOG_FILE);
delete_old_log_file = APPEND_TO_OLD_LOG_FILE;
#endif
}
} else {
log_locking_state = DONT_LOCK_LOG_FILE;
}
LoggingSettings settings;
settings.logging_dest = logging_dest;
if (!log_path.empty()) {
settings.log_file_path = log_path.value().c_str();
}
#if BUILDFLAG(IS_WIN)
settings.log_file = log_handle.is_valid() ? log_handle.release() : nullptr;
#endif
settings.lock_log = log_locking_state;
settings.delete_old = delete_old_log_file;
bool success = InitLogging(settings);
#if BUILDFLAG(IS_CHROMEOS)
if (!success) {
DPLOG(ERROR) << "Unable to initialize logging to " << log_path.value()
<< " (which should be a link to " << target_path.value()
<< ")";
RemoveSymlinkAndLog(log_path, target_path);
chrome_logging_failed_ = true;
return;
}
#else
if (!success) {
DPLOG(ERROR) << "Unable to initialize logging to " << log_path.value();
chrome_logging_failed_ = true;
return;
}
#endif
std::unique_ptr<base::Environment> env(base::Environment::Create());
const bool is_headless = env->HasVar(env_vars::kHeadless) ||
command_line.HasSwitch(switches::kNoErrorDialogs);
if (!is_headless)
SetShowErrorDialogs(true);
SetLogItems(true,
true,
true,
false);
if (is_headless)
SuppressDialogs();
if (command_line.HasSwitch(switches::kLoggingLevel) &&
GetMinLogLevel() >= 0) {
std::string log_level =
command_line.GetSwitchValueASCII(switches::kLoggingLevel);
int level = 0;
if (base::StringToInt(log_level, &level) && level >= 0 &&
level < LOGGING_NUM_SEVERITIES) {
SetMinLogLevel(level);
} else {
DLOG(WARNING) << "Bad log level: " << log_level;
}
}
#if BUILDFLAG(IS_WIN)
LogEventProvider::Initialize(kChromeTraceProviderName);
SetEventSource(base::WideToASCII(
install_static::InstallDetails::Get().install_full_name()),
BROWSER_CATEGORY, MSG_LOG_MESSAGE);
#endif
base::StatisticsRecorder::InitLogOnShutdown();
chrome_logging_initialized_ = true;
}
void CleanupChromeLogging() {
if (chrome_logging_failed_)
return;
if (!chrome_logging_initialized_)
return;
CloseLogFile();
chrome_logging_initialized_ = false;
chrome_logging_redirected_ = false;
}
base::FilePath GetLogFileName(const base::CommandLine& command_line) {
auto filename = command_line.GetSwitchValueNative(switches::kLogFile);
if (filename.empty()) {
std::optional<std::string> env_filename =
base::Environment::Create()->GetVar(env_vars::kLogFileName);
#if BUILDFLAG(IS_WIN)
filename = base::UTF8ToWide(env_filename.value_or(""));
#else
filename = env_filename.value_or("");
#endif
}
if (!filename.empty()) {
base::FilePath candidate_path(filename);
#if BUILDFLAG(IS_WIN)
candidate_path = candidate_path.NormalizePathSeparators();
if (candidate_path.IsAbsolute()) {
return candidate_path;
} else {
PLOG(ERROR) << "Invalid logging destination: " << filename;
}
#else
return candidate_path;
#endif
}
const base::FilePath log_filename(FILE_PATH_LITERAL("chrome_debug.log"));
base::FilePath log_path;
if (base::PathService::Get(chrome::DIR_LOGS, &log_path)) {
log_path = log_path.Append(log_filename);
return log_path;
} else {
#if BUILDFLAG(IS_WIN)
return base::FilePath();
#else
return log_filename;
#endif
}
}
bool DialogsAreSuppressed() {
return dialogs_are_suppressed_;
}
#if BUILDFLAG(IS_CHROMEOS)
base::FilePath GenerateTimestampedName(const base::FilePath& base_path,
base::Time timestamp) {
return base_path.InsertBeforeExtensionASCII(
base::UnlocalizedTimeFormatWithPattern(timestamp, "_yyMMdd-HHmmss",
icu::TimeZone::getGMT()));
}
#endif
}