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
|
/*
Copyright (C) 2021 The Falco Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "logger.h"
#include "sinsp.h"
#include "sinsp_int.h"
#ifndef _WIN32
#include <sys/time.h>
#else
#include <time.h>
#endif
#include <stdarg.h>
namespace
{
thread_local char s_tbuf[16384];
const size_t ENCODE_LEN = sizeof(uint64_t);
} // end namespace
const uint32_t sinsp_logger::OT_NONE = 0;
const uint32_t sinsp_logger::OT_STDOUT = 1;
const uint32_t sinsp_logger::OT_STDERR = (OT_STDOUT << 1);
const uint32_t sinsp_logger::OT_FILE = (OT_STDERR << 1);
const uint32_t sinsp_logger::OT_CALLBACK = (OT_FILE << 1);
const uint32_t sinsp_logger::OT_NOTS = (OT_CALLBACK << 1);
const uint32_t sinsp_logger::OT_ENCODE_SEV = (OT_NOTS << 1);
sinsp_logger::sinsp_logger():
m_file(nullptr),
m_callback(nullptr),
m_flags(OT_NONE),
m_sev(SEV_INFO)
{ }
sinsp_logger::~sinsp_logger()
{
if(m_file)
{
ASSERT(m_flags & sinsp_logger::OT_FILE);
fclose(m_file);
}
}
bool sinsp_logger::is_callback() const
{
return (m_flags & sinsp_logger::OT_CALLBACK) != 0;
}
uint32_t sinsp_logger::get_log_output_type() const
{
return m_flags;
}
void sinsp_logger::add_stdout_log()
{
m_flags |= sinsp_logger::OT_STDOUT;
}
void sinsp_logger::add_stderr_log()
{
m_flags |= sinsp_logger::OT_STDERR;
}
void sinsp_logger::add_file_log(const std::string& filename)
{
ASSERT(m_file == nullptr);
m_file = fopen(filename.c_str(), "w");
if(!m_file)
{
throw sinsp_exception("Unable to open file " + filename + " for writing");
}
m_flags |= sinsp_logger::OT_FILE;
}
void sinsp_logger::disable_timestamps()
{
m_flags |= sinsp_logger::OT_NOTS;
}
void sinsp_logger::add_encoded_severity()
{
m_flags |= sinsp_logger::OT_ENCODE_SEV;
}
void sinsp_logger::add_callback_log(const sinsp_logger_callback callback)
{
const sinsp_logger_callback old_cb = m_callback.exchange(callback);
ASSERT(old_cb == nullptr);
// For release builds, the compiler doesn't see that old_cb is used,
// so do something that will satisfy the compiler
static_cast<void>(old_cb);
m_flags |= sinsp_logger::OT_CALLBACK;
}
void sinsp_logger::remove_callback_log()
{
m_callback = nullptr;
m_flags &= ~sinsp_logger::OT_CALLBACK;
}
void sinsp_logger::set_severity(const severity sev)
{
if(m_sev < SEV_MIN || m_sev > SEV_MAX)
{
throw sinsp_exception("Invalid log severity");
}
m_sev = sev;
}
sinsp_logger::severity sinsp_logger::get_severity() const
{
return m_sev;
}
void sinsp_logger::log(std::string msg, const severity sev)
{
sinsp_logger_callback cb = nullptr;
if(sev > m_sev)
{
return;
}
if((m_flags & sinsp_logger::OT_NOTS) == 0)
{
struct timeval ts = {};
if(gettimeofday(&ts, nullptr) == 0)
{
const std::string::size_type ts_length = sizeof("31-12 23:59:59.999999 ");
char ts_buf[ts_length];
struct tm* ti;
struct tm time_info = {};
#ifdef _WIN32
ti = _gmtime32((__time32_t*)&ts.tv_sec);
#else
gmtime_r(&ts.tv_sec, &time_info);
ti = &time_info;
#endif
snprintf(ts_buf,
sizeof(ts_buf),
"%.2d-%.2d %.2d:%.2d:%.2d.%.6d ",
ti->tm_mon + 1,
ti->tm_mday,
ti->tm_hour,
ti->tm_min,
ti->tm_sec,
(int)ts.tv_usec);
ts_buf[sizeof(ts_buf) - 1] = '\0';
msg.insert(0, ts_buf);
}
}
if(m_flags & sinsp_logger::OT_ENCODE_SEV)
{
char sev_buf[ENCODE_LEN + 1];
strlcpy(sev_buf, encode_severity(sev), sizeof(sev_buf));
msg.insert(0, sev_buf);
}
if(is_callback())
{
cb = m_callback;
}
if(cb != nullptr)
{
cb(std::move(msg), sev);
}
else if((m_flags & sinsp_logger::OT_FILE) && m_file)
{
fprintf(m_file, "%s\n", msg.c_str());
fflush(m_file);
}
else if(m_flags & sinsp_logger::OT_STDOUT)
{
fprintf(stdout, "%s\n", msg.c_str());
fflush(stdout);
}
else if(m_flags & sinsp_logger::OT_STDERR)
{
fprintf(stderr, "%s\n", msg.c_str());
fflush(stderr);
}
}
void sinsp_logger::format(const severity sev, const char* const fmt, ...)
{
if(sev > m_sev)
{
return;
}
va_list ap;
va_start(ap, fmt);
vsnprintf(s_tbuf, sizeof s_tbuf, fmt, ap);
va_end(ap);
log(s_tbuf, sev);
}
void sinsp_logger::format(const char* const fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vsnprintf(s_tbuf, sizeof s_tbuf, fmt, ap);
va_end(ap);
log(s_tbuf, SEV_INFO);
}
const char* sinsp_logger::format_and_return(const severity sev, const char* const fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vsnprintf(s_tbuf, sizeof s_tbuf, fmt, ap);
va_end(ap);
log(s_tbuf, SEV_INFO);
return s_tbuf;
}
namespace {
// All severity strings should be ENCODE_LEN chars long
const char* SEV_LEVELS[] = {
"SEV_DEF ",
"SEV_FAT ",
"SEV_CRI ",
"SEV_ERR ",
"SEV_WAR ",
"SEV_NOT ",
"SEV_INF ",
"SEV_DEB ",
"SEV_TRA "
};
static_assert(sizeof(SEV_LEVELS) == sizeof(*SEV_LEVELS) * ((size_t)(sinsp_logger::SEV_MAX) + 1),
"severity array must have SEV_MAX+1 elements");
}
const char* sinsp_logger::encode_severity(const sinsp_logger::severity sev)
{
const char* ret;
auto sev_int = (size_t)sev;
if (sev_int > SEV_MAX)
{
sev_int = 0;
}
ret = SEV_LEVELS[sev_int];
assert(strlen(ret) == ENCODE_LEN);
return ret;
}
size_t sinsp_logger::decode_severity(const std::string &str, severity& sev)
{
if(str.length() < ENCODE_LEN)
{
return 0;
}
const char* msg = str.c_str();
// we don't really expect "SEV_DEF " messages so skip severity 0
for(size_t i = SEV_MIN; i <= SEV_MAX; ++i)
{
if(!strncmp(msg, SEV_LEVELS[i], ENCODE_LEN))
{
sev = static_cast<severity>(i);
return ENCODE_LEN;
}
}
return 0;
}
|