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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371 | // Copyright (C) 2024 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// Functions accessed by the hooks framework use C linkage to avoid the name
// mangling that accompanies use of the C++ compiler as well as to avoid
// issues related to namespaces.
#include <config.h>
#include <perfmon_log.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <perfmon_mgr.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <cc/simple_parser.h>
#include <config/cmd_response_creator.h>
#include <stats/stats_mgr.h>
#include <dhcp/dhcp6.h>
#include <util/boost_time_utils.h>
namespace isc {
namespace perfmon {
using namespace isc::config;
using namespace isc::data;
using namespace isc::dhcp;
using namespace isc::log;
using namespace isc::stats;
using namespace isc::util;
using namespace boost::posix_time;
PerfMonMgr::PerfMonMgr(uint16_t family_)
: PerfMonConfig(family_), mutex_(new std::mutex) {
init();
}
void
PerfMonMgr::init() {
// Set convenience values.
interval_duration_ = seconds(interval_width_secs_);
alarm_report_interval_ = seconds(alarm_report_secs_);
// Re-create the duration store.
duration_store_.reset(new MonitoredDurationStore(family_, interval_duration_));
}
void
PerfMonMgr::configure(const ConstElementPtr& params) {
if (!params) {
// User wants passive logging only.
setEnableMonitoring(false);
return;
}
if (params->getType() != Element::map) {
isc_throw(dhcp::DhcpConfigError, "params must be an Element::map");
return;
}
// Parse 'parameters' map.
try {
parse(params);
} catch (std::exception& ex) {
isc_throw(dhcp::DhcpConfigError,
"PerfMonMgr::configure failed - " << ex.what());
}
init();
}
void
PerfMonMgr::processPktEventStack(PktPtr query, PktPtr response, SubnetPtr subnet) {
if (!query) {
isc_throw(Unexpected, "PerfMonMgr::processPktEventStack - query is empty!");
}
uint16_t query_type = query->getType();
// Response is optional to allow for future support of responseless queries
// such as declines or releases.
uint16_t response_type;
if (!response) {
response_type = (family_ == AF_INET ? static_cast<uint16_t>(DHCP_NOTYPE)
: static_cast<uint16_t>(DHCPV6_NOTYPE));
} else {
response_type = response->getType();
}
// Sanity check the message types.
DurationKey::validateMessagePair(family_, query_type, response_type);
auto events = query->getPktEvents();
if (events.size() < 2) {
isc_throw(Unexpected, "PerfMonMgr::processPtkEventStack - incomplete stack, size: "
<< events.size());
}
// If we're here without a selected subnet, use global subnet id.
SubnetID subnet_id = (subnet ? subnet->getID() : SUBNET_ID_GLOBAL);
LOG_DEBUG(perfmon_logger, DBGLVL_TRACE_DETAIL,
(family_ == AF_INET ? PERFMON_DHCP4_PKT_EVENTS : PERFMON_DHCP6_PKT_EVENTS))
.arg(query->getLabel())
.arg(query->dumpPktEvents());
// If monitoring is disabled, then punt.
if (!enable_monitoring_) {
return;
}
boost::posix_time::ptime start_time;
boost::posix_time::ptime prev_time;
std::string prev_event_label;
bool first_pass = true;
for (auto const& event : events) {
if (first_pass) {
prev_event_label = event.label_;
prev_time = event.timestamp_;
start_time = prev_time;
first_pass = false;
} else {
Duration sample = event.timestamp_ - prev_time;
DurationKeyPtr key(new DurationKey(family_, query_type, response_type,
prev_event_label, event.label_, subnet_id));
addDurationSample(key, sample);
// Update global duration.
if (subnet_id != SUBNET_ID_GLOBAL) {
key->setSubnetId(SUBNET_ID_GLOBAL);
addDurationSample(key, sample);
}
prev_event_label = event.label_;
prev_time = event.timestamp_;
}
}
// Generate composite total.
Duration sample = prev_time - start_time;
DurationKeyPtr key(new DurationKey(family_, query_type, response_type,
"composite", "total_response", subnet_id));
addDurationSample(key, sample);
// Update global duration.
if (subnet_id != SUBNET_ID_GLOBAL) {
key->setSubnetId(SUBNET_ID_GLOBAL);
addDurationSample(key, sample);
}
}
void
PerfMonMgr::addDurationSample(DurationKeyPtr key, const Duration& sample) {
// Update duration - duration is only returned if its time to report.
MonitoredDurationPtr duration = duration_store_->addDurationSample(key, sample);
if (duration) {
// Report to stat mgr, returns mean duration.
Duration mean = reportToStatsMgr(duration);
// Check the mean against an alarm, if one exists.
AlarmPtr alarm = alarm_store_->checkDurationSample(duration, mean, alarm_report_interval_);
// If an alarm had a reportable outcome, report it.
if (alarm) {
reportAlarm(alarm, mean);
}
}
}
Duration
PerfMonMgr::reportToStatsMgr(MonitoredDurationPtr duration) {
if (!duration) {
isc_throw(BadValue, "reportToStatsMgr - duration is empty!");
}
auto previous_interval = duration->getPreviousInterval();
if (!previous_interval) {
isc_throw(BadValue, "reportToStatsMgr - duration previous interval is empty!");
}
auto mean = previous_interval->getMeanDuration();
if (getStatsMgrReporting()) {
StatsMgr::instance().setValue(duration->getStatName("mean-usecs"),
static_cast<int64_t>(mean.total_microseconds()));
}
/// @todo - decide if we want to report min and max values too.
return (mean);
}
void
PerfMonMgr::reportAlarm(AlarmPtr alarm, const Duration& mean) {
std::string label = alarm->getLabel();<--- Variable 'label' is assigned a value that is never used.
switch(alarm->getState()) {
case Alarm::CLEAR:
LOG_INFO(perfmon_logger, PERFMON_ALARM_CLEARED)
.arg(alarm->getLabel())
.arg(mean)
.arg(alarm->getLowWater().total_milliseconds());
break;
case Alarm::TRIGGERED:
LOG_WARN(perfmon_logger, PERFMON_ALARM_TRIGGERED)
.arg(alarm->getLabel())
.arg(ptimeToText(alarm->getStosTime(), 3))
.arg(mean)
.arg(alarm->getHighWater().total_milliseconds());
alarm->setLastHighWaterReport();
alarm_store_->updateAlarm(alarm);
break;
case Alarm::DISABLED:
// Shouldn't happen. We'll silently ignore for now.
break;
}
}
void
PerfMonMgr::reportTimerExpired() {
isc_throw (NotImplemented, __FILE__ << ":" << __LINE__ << ":" << __FUNCTION__);
}
void
PerfMonMgr::setNextReportExpiration() {
isc_throw (NotImplemented, __FILE__ << ":" << __LINE__ << ":" << __FUNCTION__);
}
int
PerfMonMgr::perfmonControlHandler(hooks::CalloutHandle& handle) {
static SimpleKeywords keywords = {
{ "enable-monitoring", Element::boolean },
{ "stats-mgr-reporting", Element::boolean }
};
std::string txt = "(missing parameters)";<--- The scope of the variable 'txt' can be reduced. [+]The scope of the variable 'txt' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
ElementPtr result = Element::createMap();
ConstElementPtr response;
// Extract the command and then the parameters
try {
extractCommand(handle);
if (cmd_args_) {
txt = cmd_args_->str();
}
// Both arguments are optional.
if (cmd_args_) {
SimpleParser::checkKeywords(keywords, cmd_args_);
ConstElementPtr elem = cmd_args_->get("enable-monitoring");
if (elem) {
enable_monitoring_ = elem->boolValue();
}
elem = cmd_args_->get("stats-mgr-reporting");
if (elem) {
stats_mgr_reporting_ = elem->boolValue();
}
}
LOG_INFO(perfmon_logger, PERFMON_CMDS_CONTROL_OK)
.arg(enable_monitoring_ ? "enabled" : "disabled")
.arg(stats_mgr_reporting_ ? "enabled" : "disabled");
// Always return the new/current values for both settings.
result->set("enable-monitoring", Element::create(enable_monitoring_));
result->set("stats-mgr-reporting", Element::create(stats_mgr_reporting_));
response = createAnswer(CONTROL_RESULT_SUCCESS, "perfmon-control success", result);
} catch (const std::exception& ex) {
LOG_ERROR(perfmon_logger, PERFMON_CMDS_CONTROL_ERROR)
.arg(ex.what());
setErrorResponse(handle, ex.what());
return (1);
}
setResponse(handle, response);
return (0);
}
int
PerfMonMgr::perfmonGetAllDurationsHandler(hooks::CalloutHandle& handle) {
static SimpleKeywords keywords = {
{ "result-set-format", Element::boolean }
};
ElementPtr result = Element::createMap();
ConstElementPtr response;
try {
// Extract the command and then the parameters
bool result_set_format = false;
extractCommand(handle);
if (cmd_args_) {
SimpleParser::checkKeywords(keywords, cmd_args_);
ConstElementPtr elem = cmd_args_->get("result-set-format");
if (elem) {
result_set_format = elem->boolValue();
}
}
// Fetch the durations from the store.
auto durations = duration_store_->getAll();
auto rows = durations->size();
ElementPtr formatted_durations;
// Format them either as a list of elements or as a result set
if (!result_set_format) {
formatted_durations = formatDurationDataAsElements(durations);
} else {
formatted_durations = formatDurationDataAsResultSet(durations);
}
// Construct the result
result->set("interval-width-secs", Element::create(getIntervalWidthSecs()));
result->set("timestamp", Element::create(isc::util::ptimeToText(PktEvent::now())));
result->set("result-set-format", Element::create(result_set_format));
result->set((result_set_format ? "durations-result-set" : "durations"), formatted_durations);
std::ostringstream oss;
oss << "perfmon-get-all-durations: " << rows << " found";
response = createAnswer((rows > 0 ? CONTROL_RESULT_SUCCESS : CONTROL_RESULT_EMPTY),
oss.str(), result);
LOG_INFO(perfmon_logger, PERFMON_CMDS_GET_ALL_DURATIONS_OK)
.arg(rows);
} catch (const std::exception& ex) {
LOG_ERROR(perfmon_logger, PERFMON_CMDS_GET_ALL_DURATIONS_ERROR)
.arg(ex.what());
setErrorResponse(handle, ex.what());
return (1);
}
setResponse(handle, response);
return (0);
}
ElementPtr
PerfMonMgr::formatDurationDataAsElements(MonitoredDurationCollectionPtr durations) const {
// Create the list.
ElementPtr duration_list = Element::createList();
// Add in the duration elements.
for (auto const& d : *durations) {
ElementPtr element = d->toElement();
duration_list->add(element);
}
return (duration_list);
}
ElementPtr
PerfMonMgr::formatDurationDataAsResultSet(MonitoredDurationCollectionPtr durations) const{
// Create the result-set map and add it to the wrapper.
ElementPtr result_set = Element::createMap();
// Create the list of column names and add it to the result set.
result_set->set("columns", MonitoredDuration::valueRowColumns());
// Create the rows list and add it to the result set.
ElementPtr rows = Element::createList();
result_set->set("rows", rows);
for (auto const& d : *durations) {
// Create the value row.
ElementPtr row = d->toValueRow();
rows->add(row);
}
return (result_set);
}
} // end of namespace perfmon
} // end of namespace isc
|