forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
guarddog_impl.cc
175 lines (155 loc) · 6.41 KB
/
guarddog_impl.cc
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#include "server/guarddog_impl.h"
#include <chrono>
#include <memory>
#include "envoy/stats/scope.h"
#include "common/common/assert.h"
#include "common/common/fmt.h"
#include "common/common/lock_guard.h"
#include "common/stats/symbol_table_impl.h"
#include "server/watchdog_impl.h"
#include "absl/synchronization/mutex.h"
namespace Envoy {
namespace Server {
GuardDogImpl::GuardDogImpl(Stats::Scope& stats_scope, const Server::Configuration::Main& config,
Api::Api& api, std::unique_ptr<TestInterlockHook>&& test_interlock)
: test_interlock_hook_(std::move(test_interlock)), stats_scope_(stats_scope),
time_source_(api.timeSource()), miss_timeout_(config.wdMissTimeout()),
megamiss_timeout_(config.wdMegaMissTimeout()), kill_timeout_(config.wdKillTimeout()),
multi_kill_timeout_(config.wdMultiKillTimeout()),
loop_interval_([&]() -> std::chrono::milliseconds {
// The loop interval is simply the minimum of all specified intervals,
// but we must account for the 0=disabled case. This lambda takes care
// of that and returns a value that initializes the const loop interval.
const auto min_of_nonfatal = std::min(miss_timeout_, megamiss_timeout_);
return std::min({killEnabled() ? kill_timeout_ : min_of_nonfatal,
multikillEnabled() ? multi_kill_timeout_ : min_of_nonfatal,
min_of_nonfatal});
}()),
watchdog_miss_counter_(stats_scope.counterFromStatName(
Stats::StatNameManagedStorage("server.watchdog_miss", stats_scope.symbolTable())
.statName())),
watchdog_megamiss_counter_(stats_scope.counterFromStatName(
Stats::StatNameManagedStorage("server.watchdog_mega_miss", stats_scope.symbolTable())
.statName())),
dispatcher_(api.allocateDispatcher()),
loop_timer_(dispatcher_->createTimer([this]() { step(); })), run_thread_(true) {
start(api);
}
GuardDogImpl::GuardDogImpl(Stats::Scope& stats_scope, const Server::Configuration::Main& config,
Api::Api& api)
: GuardDogImpl(stats_scope, config, api, std::make_unique<TestInterlockHook>()) {}
GuardDogImpl::~GuardDogImpl() { stop(); }
void GuardDogImpl::step() {
{
Thread::LockGuard guard(mutex_);
if (!run_thread_) {
return;
}
}
const auto now = time_source_.monotonicTime();
{
bool seen_one_multi_timeout(false);
Thread::LockGuard guard(wd_lock_);
for (auto& watched_dog : watched_dogs_) {
const auto ltt = watched_dog->dog_->lastTouchTime();
const auto delta = now - ltt;
if (watched_dog->last_alert_time_ && watched_dog->last_alert_time_.value() < ltt) {
watched_dog->miss_alerted_ = false;
watched_dog->megamiss_alerted_ = false;
}
if (delta > miss_timeout_) {
if (!watched_dog->miss_alerted_) {
watchdog_miss_counter_.inc();
watched_dog->miss_counter_.inc();
watched_dog->last_alert_time_ = ltt;
watched_dog->miss_alerted_ = true;
}
}
if (delta > megamiss_timeout_) {
if (!watched_dog->megamiss_alerted_) {
watchdog_megamiss_counter_.inc();
watched_dog->megamiss_counter_.inc();
watched_dog->last_alert_time_ = ltt;
watched_dog->megamiss_alerted_ = true;
}
}
if (killEnabled() && delta > kill_timeout_) {
PANIC(fmt::format("GuardDog: one thread ({}) stuck for more than watchdog_kill_timeout",
watched_dog->dog_->threadId().debugString()));
}
if (multikillEnabled() && delta > multi_kill_timeout_) {
if (seen_one_multi_timeout) {
PANIC(fmt::format(
"GuardDog: multiple threads ({},...) stuck for more than watchdog_multikill_timeout",
watched_dog->dog_->threadId().debugString()));
} else {
seen_one_multi_timeout = true;
}
}
}
}
{
Thread::LockGuard guard(mutex_);
test_interlock_hook_->signalFromImpl(now);
if (run_thread_) {
loop_timer_->enableTimer(loop_interval_);
}
}
}
WatchDogSharedPtr GuardDogImpl::createWatchDog(Thread::ThreadId thread_id,
const std::string& thread_name) {
// Timer started by WatchDog will try to fire at 1/2 of the interval of the
// minimum timeout specified. loop_interval_ is const so all shared state
// accessed out of the locked section below is const (time_source_ has no
// state).
const auto wd_interval = loop_interval_ / 2;
WatchDogSharedPtr new_watchdog =
std::make_shared<WatchDogImpl>(std::move(thread_id), time_source_, wd_interval);
WatchedDogPtr watched_dog = std::make_unique<WatchedDog>(stats_scope_, thread_name, new_watchdog);
{
Thread::LockGuard guard(wd_lock_);
watched_dogs_.push_back(std::move(watched_dog));
}
new_watchdog->touch();
return new_watchdog;
}
void GuardDogImpl::stopWatching(WatchDogSharedPtr wd) {
Thread::LockGuard guard(wd_lock_);
auto found_wd = std::find_if(watched_dogs_.begin(), watched_dogs_.end(),
[&wd](const WatchedDogPtr& d) -> bool { return d->dog_ == wd; });
if (found_wd != watched_dogs_.end()) {
watched_dogs_.erase(found_wd);
} else {
ASSERT(false);
}
}
void GuardDogImpl::start(Api::Api& api) {
Thread::LockGuard guard(mutex_);
thread_ = api.threadFactory().createThread(
[this]() -> void { dispatcher_->run(Event::Dispatcher::RunType::RunUntilExit); });
loop_timer_->enableTimer(std::chrono::milliseconds(0));
}
void GuardDogImpl::stop() {
{
Thread::LockGuard guard(mutex_);
run_thread_ = false;
}
dispatcher_->exit();
if (thread_) {
thread_->join();
thread_.reset();
}
}
GuardDogImpl::WatchedDog::WatchedDog(Stats::Scope& stats_scope, const std::string& thread_name,
const WatchDogSharedPtr& watch_dog)
: dog_(watch_dog),
miss_counter_(stats_scope.counterFromStatName(
Stats::StatNameManagedStorage(fmt::format("server.{}.watchdog_miss", thread_name),
stats_scope.symbolTable())
.statName())),
megamiss_counter_(stats_scope.counterFromStatName(
Stats::StatNameManagedStorage(fmt::format("server.{}.watchdog_mega_miss", thread_name),
stats_scope.symbolTable())
.statName())) {}
} // namespace Server
} // namespace Envoy