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
|
/* thread timing time object and functions, for libreswan
*
* Copyright (C) 2019 Andrew Cagney <cagney@gnu.org>
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/lgpl-2.1.txt>.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
* License for more details.
*
*/
#include <errno.h>
#include "defs.h"
#include "state.h"
#include "connections.h"
#include "pluto_timing.h"
#include "log.h"
#define INDENT " "
#define MISSING_FUDGE 0.001
static struct timespec thread_clock(void)
{
static const clockid_t clock_id = CLOCK_THREAD_CPUTIME_ID;
struct timespec now;
int e = clock_gettime(clock_id, &now);
passert(e == 0);
return now;
}
static struct timespec wall_clock(void)
{
struct timespec now;
/* use the same clockid as monotime */
int e = clock_gettime(monotime_clockid(), &now);
passert(e == 0);
return now;
}
static double seconds_sub(struct timespec stop, const struct timespec start)
{
/* compute seconds */
double seconds = (stop.tv_sec - start.tv_sec);
/* adjust for nanoseconds */
seconds += (double) stop.tv_nsec / 1000 / 1000 / 1000;
seconds -= (double) start.tv_nsec / 1000 / 1000 / 1000;
return seconds;
}
static struct cpu_usage threadtime_sub(threadtime_t l, threadtime_t r)
{
struct cpu_usage s = {
.thread_seconds = seconds_sub(l.thread_clock, r.thread_clock),
.wall_seconds = seconds_sub(l.wall_clock, r.wall_clock),
};
return s;
}
threadtime_t threadtime_start(void)
{
threadtime_t start = {
.thread_clock = thread_clock(),
.wall_clock = wall_clock(),
};
return start;
}
void threadtime_stop(const threadtime_t *start, long serialno, const char *fmt, ...)
{
if (DBGP(DBG_CPU_USAGE)) {
struct cpu_usage usage = threadtime_sub(threadtime_start(), *start);
LLOG_JAMBUF(DEBUG_STREAM, &global_logger, buf) {
if (serialno > 0) {
/* on thread so in background */
jam(buf, "(#%lu) ", serialno);
}
jam(buf, PRI_CPU_USAGE" in ",
pri_cpu_usage(usage));
va_list ap;
va_start(ap, fmt);
jam_va_list(buf, fmt, ap);
va_end(ap);
}
}
}
logtime_t logtime_start(struct logger *logger)
{
logtime_t start = {
.time = threadtime_start(),
.logger = logger,
.level = logger->timing_level++,
};
return start;
}
struct cpu_usage logtime_stop(const logtime_t *start, const char *fmt, ...)
{
struct cpu_usage usage = threadtime_sub(threadtime_start(), start->time);
if (DBGP(DBG_CPU_USAGE)) {
LLOG_JAMBUF(DEBUG_STREAM, &global_logger, buf) {
/* update is indented by 2 indents */
for (int i = 0; i < start->level; i++) {
jam_string(buf, INDENT INDENT);
}
jam_logger_prefix(buf, start->logger);
jam(buf, PRI_CPU_USAGE" in ",
pri_cpu_usage(usage));
va_list ap;
va_start(ap, fmt);
jam_va_list(buf, fmt, ap);
va_end(ap);
}
}
start->logger->timing_level = start->level;
return usage;
}
static const statetime_t disabled_statetime = {
.so = SOS_NOBODY,
.level = -1,
};
static void DBG_missing(const statetime_t *start, threadtime_t now,
threadtime_t last_log)
{
/*
* If there a large blob of time unaccounted for since LAST,
* log it as a separate line item.
*/
struct cpu_usage missing = threadtime_sub(now, last_log);
if (missing.thread_seconds > MISSING_FUDGE) {
LLOG_JAMBUF(DEBUG_STREAM, &global_logger, buf) {
for (int i = 0; i < start->level; i++) {
jam_string(buf, INDENT INDENT);
}
jam(buf, "#%lu "PRI_CPU_USAGE"",
start->so, pri_cpu_usage(missing));
}
}
}
static statetime_t start_statetime(struct state *st,
threadtime_t inception)
{
statetime_t start = {
.so = st->st_serialno,
.level = st->st_timing.level++,
.time = inception,
};
st->st_timing.last_log.time = start.time;
st->st_timing.last_log.level = start.level;
return start;
}
statetime_t statetime_start(struct state *st)
{
if (st == NULL) {
/*
* IKEv1 sometimes doesn't have a state to time, just
* ignore it.
*/
dbg("in %s() with no state", __func__);
return disabled_statetime;
}
if (st->st_timing.level > 0 && !DBGP(DBG_CPU_USAGE)) {
/*
* When DBG_CPU_USAGE isn't enabled, only time the
* outer most leve.
*/
return disabled_statetime;
}
/* save last_log before start_statetime() updates it */
threadtime_t last_log = st->st_timing.last_log.time;
statetime_t start = start_statetime(st, threadtime_start());
if (DBGP(DBG_CPU_USAGE) && start.level > 0) {
/*
* If there a large blob of time unaccounted for since
* the last and nested start() or stop() call, log it
* as a separate line item.
*/
DBG_missing(&start, start.time, last_log);
}
return start;
}
statetime_t statetime_backdate(struct state *st, const threadtime_t *inception)
{
if (st == NULL) {
/*
* IKEv1 sometimes doesn't have a state to time, just
* ignore it.
*/
dbg("in %s() with no state", __func__);
return disabled_statetime;
}
passert(inception != NULL);
if (st->st_timing.level > 0) {
pexpect(st->st_ike_version == IKEv1);
dbg("in %s() with non-zero timing level", __func__);
st->st_timing.level = 0;
}
statetime_t start = start_statetime(st, *inception);
/*
* If there's a large blob of time between this call and
* inception, log it. Remember, start.time will be set to
* inception time so isn't useful.
*/
if (DBGP(DBG_CPU_USAGE)) {
DBG_missing(&start, threadtime_start(), *inception);
}
return start;
}
void statetime_stop(const statetime_t *start, const char *fmt, ...)
{
/*
* Check for disabled statetime, indicates that timing is
* disabled for this level.
*/
if (memeq(start, &disabled_statetime, sizeof(disabled_statetime))) {
return;
}
pexpect(start->level == 0 || DBGP(DBG_CPU_USAGE));
/* state disappeared? */
struct state *st = state_by_serialno(start->so);
if (st == NULL) {
dbg("in %s() and could not find #%lu", __func__, start->so);
return;
}
threadtime_t stop_time = threadtime_start();
/*
* If there a large blob of time unaccounted for since the
* last nested stop(), log it as a separate line item.
*/
if (DBGP(DBG_CPU_USAGE) &&
st->st_timing.last_log.level > start->level) {
DBG_missing(start, stop_time, st->st_timing.last_log.time);
}
/* time since start */
struct cpu_usage usage = threadtime_sub(stop_time, start->time);
if (DBGP(DBG_CPU_USAGE)) {
LLOG_JAMBUF(DEBUG_STREAM, &global_logger, buf) {
/* update is indented by 2 indents */
for (int i = 0; i < start->level; i++) {
jam_string(buf, INDENT INDENT);
}
jam(buf, "#%lu "PRI_CPU_USAGE"",
st->st_serialno,
pri_cpu_usage(usage));
jam(buf, " in ");
va_list ap;
va_start(ap, fmt);
jam_va_list(buf, fmt, ap);
va_end(ap);
}
}
/* everything logged, update */
st->st_timing.level = start->level;
st->st_timing.last_log.time = stop_time;
st->st_timing.last_log.level = start->level;
if (start->level == 0) {
/* bill total time */
cpu_usage_add(st->st_timing.main_usage, usage);
}
}
monotime_t monotime_from_threadtime(const threadtime_t time)
{
monotime_t m = {
.mt = {
.tv_sec = time.wall_clock.tv_sec,
.tv_usec = time.wall_clock.tv_nsec / 1000,
}
};
return m;
}
|