File: breakpad_win.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (117 lines) | stat: -rw-r--r-- 4,142 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "remoting/base/crash/breakpad_win.h"

#include <windows.h>

#include <crtdbg.h>

#include <memory>
#include <optional>
#include <string>
#include <utility>

#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/logging.h"
#include "base/no_destructor.h"
#include "base/process/process_handle.h"
#include "base/strings/string_number_conversions.h"
#include "base/time/time.h"
#include "base/win/wrapped_window_proc.h"
#include "remoting/base/crash/breakpad_utils.h"
#include "remoting/base/version.h"
#include "third_party/breakpad/breakpad/src/client/windows/handler/exception_handler.h"

namespace remoting {

bool FilterCallback(void* context,
                    EXCEPTION_POINTERS* exinfo,
                    MDRawAssertionInfo* assertion) {
  // If an exception is already being handled, this thread will be put to sleep.
  BreakpadWin::GetInstance().helper().OnException();
  return true;
}

bool MinidumpCallback(const wchar_t* dump_path,
                      const wchar_t* minidump_id,
                      void* context,
                      EXCEPTION_POINTERS* exinfo,
                      MDRawAssertionInfo* assertion,
                      bool succeeded) {
  return BreakpadWin::GetInstance().helper().OnMinidumpGenerated(
      base::FilePath(dump_path).Append(minidump_id).AddExtension(L"dmp"));
}

BreakpadWin::BreakpadWin() = default;

void BreakpadWin::Initialize(std::optional<std::string> server_pipe_handle) {
  // Initialize should only be called once.
  CHECK(!breakpad_);

  // Disable the message box for assertions.
  _CrtSetReportMode(_CRT_ASSERT, 0);

  HANDLE pipe_handle = nullptr;
  auto minidump_directory = GetMinidumpDirectoryPath();
  bool register_oop_handler =
      server_pipe_handle.has_value() && !server_pipe_handle->empty();
  if (register_oop_handler) {
    uint64_t pipe_handle_value = 0;
    if (base::StringToUint64(*server_pipe_handle, &pipe_handle_value)) {
      // We don't support mixed 32- and 64-bit binaries so HANDLE (really void*)
      // can be cast safely since the crash server will be the same bitness as
      // the client.
      pipe_handle = reinterpret_cast<HANDLE>(pipe_handle_value);
    } else {
      LOG(ERROR) << "server_pipe_handle conversion to number failed: "
                 << *server_pipe_handle;
      return;
    }
  } else if (!helper().Initialize(minidump_directory)) {
    LOG(ERROR) << "Failed to initialize minidump directory for in-proc "
               << "exception handling: " << minidump_directory;
    return;
  }

  breakpad_ = std::make_unique<google_breakpad::ExceptionHandler>(
      minidump_directory.value(), FilterCallback, MinidumpCallback,
      /*callback_context=*/nullptr,
      google_breakpad::ExceptionHandler::HANDLER_ALL, kMinidumpType,
      pipe_handle, /*custom_client_info=*/nullptr);

  bool using_oop_handler = breakpad_->IsOutOfProcess();
  LOG_IF(ERROR, register_oop_handler != using_oop_handler)
      << "Expected crash handling to be done "
      << (register_oop_handler ? "out-of-proc" : "in-proc") << " but is "
      << (using_oop_handler ? "out-of-proc" : "in-proc");

  // Tells breakpad to handle breakpoint and single step exceptions.
  breakpad_->set_handle_debug_exceptions(true);

  // Catch exceptions thrown from a window procedure.
  base::win::WinProcExceptionFilter exception_filter =
      base::win::SetWinProcExceptionFilter(&OnWindowProcedureException);
  CHECK(!exception_filter);
}

// static
BreakpadWin& BreakpadWin::GetInstance() {
  static base::NoDestructor<BreakpadWin> instance;
  return *instance;
}

// static
int BreakpadWin::OnWindowProcedureException(EXCEPTION_POINTERS* exinfo) {
  BreakpadWin& self = BreakpadWin::GetInstance();
  if (self.breakpad_.get() != nullptr) {
    self.breakpad_->WriteMinidumpForException(exinfo);
    TerminateProcess(GetCurrentProcess(),
                     exinfo->ExceptionRecord->ExceptionCode);
  }
  return EXCEPTION_CONTINUE_SEARCH;
}

}  // namespace remoting