blob: 270ce4a0370ec7740ed281cbd4cd58e522c192de [file] [log] [blame]
/** @file
This file implements the LogConfig object.
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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 "tscore/ink_platform.h"
#include "tscore/I_Layout.h"
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#include <memory>
#include "tscore/ink_platform.h"
#include "tscore/ink_file.h"
#include "Main.h"
#include "tscore/List.h"
#include "Log.h"
#include "LogField.h"
#include "LogFilter.h"
#include "LogFormat.h"
#include "LogFile.h"
#include "LogBuffer.h"
#include "LogHost.h"
#include "LogObject.h"
#include "LogConfig.h"
#include "LogUtils.h"
#include "tscore/SimpleTokenizer.h"
#include "LogCollationAccept.h"
#include "YamlLogConfig.h"
#define DISK_IS_CONFIG_FULL_MESSAGE \
"Access logging to local log directory suspended - " \
"configured space allocation exhausted."
#define DISK_IS_ACTUAL_FULL_MESSAGE \
"Access logging to local log directory suspended - " \
"no more space on the logging partition."
#define DISK_IS_CONFIG_LOW_MESSAGE \
"Access logging to local log directory suspended - " \
"configured space allocation almost exhausted."
#define DISK_IS_ACTUAL_LOW_MESSAGE "Access logging to local log directory suspended - partition space is low."
#define PARTITION_HEADROOM_MB 10
void
LogConfig::setup_default_values()
{
const unsigned int bufSize = 512;
char name[bufSize];
if (!gethostname(name, bufSize)) {
ink_strlcpy(name, "unknown_host_name", sizeof(name));
}
hostname = ats_strdup(name);
log_buffer_size = (int)(10 * LOG_KILOBYTE);
max_secs_per_buffer = 5;
max_space_mb_for_logs = 100;
max_space_mb_for_orphan_logs = 25;
max_space_mb_headroom = 10;
logfile_perm = 0644;
logfile_dir = ats_strdup(".");
collation_mode = Log::NO_COLLATION;
collation_host = ats_strdup("none");
collation_port = 0;
collation_host_tagged = false;
collation_preproc_threads = 1;
collation_secret = ats_strdup("foobar");
collation_retry_sec = 0;
collation_max_send_buffers = 0;
rolling_enabled = Log::NO_ROLLING;
rolling_interval_sec = 86400; // 24 hours
rolling_offset_hr = 0;
rolling_size_mb = 10;
rolling_max_count = 0;
rolling_allow_empty = false;
auto_delete_rolled_files = true;
roll_log_files_now = false;
sampling_frequency = 1;
file_stat_frequency = 16;
space_used_frequency = 900;
use_orphan_log_space_value = false;
ascii_buffer_size = 4 * 9216;
max_line_size = 9216; // size of pipe buffer for SunOS 5.6
}
void *
LogConfig::reconfigure_mgmt_variables(void * /* token ATS_UNUSED */, char * /* data_raw ATS_UNUSED */,
int /* data_len ATS_UNUSED */)
{
Note("received log reconfiguration event, rolling now");
Log::config->roll_log_files_now = true;
return nullptr;
}
void
LogConfig::read_configuration_variables()
{
int val;
char *ptr;
val = (int)REC_ConfigReadInteger("proxy.config.log.log_buffer_size");
if (val > 0) {
log_buffer_size = val;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.max_secs_per_buffer");
if (val > 0) {
max_secs_per_buffer = val;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.max_space_mb_for_logs");
if (val > 0) {
max_space_mb_for_logs = val;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.max_space_mb_for_orphan_logs");
if (val > 0) {
max_space_mb_for_orphan_logs = val;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.max_space_mb_headroom");
if (val > 0) {
max_space_mb_headroom = val;
}
ptr = REC_ConfigReadString("proxy.config.log.logfile_perm");
int logfile_perm_parsed = ink_fileperm_parse(ptr);
if (logfile_perm_parsed != -1) {
logfile_perm = logfile_perm_parsed;
}
ats_free(ptr);
ptr = REC_ConfigReadString("proxy.config.log.hostname");
if (ptr != nullptr) {
ats_free(hostname);
hostname = ptr;
}
ats_free(logfile_dir);
logfile_dir = ats_stringdup(RecConfigReadLogDir());
if (access(logfile_dir, R_OK | W_OK | X_OK) == -1) {
// Try 'system_root_dir/var/log/trafficserver' directory
fprintf(stderr, "unable to access log directory '%s': %d, %s\n", logfile_dir, errno, strerror(errno));
fprintf(stderr, "please set 'proxy.config.log.logfile_dir'\n");
::exit(1);
}
// COLLATION
val = (int)REC_ConfigReadInteger("proxy.local.log.collation_mode");
// do not restrict value so that error message is logged if
// collation_mode is out of range
collation_mode = val;
ptr = REC_ConfigReadString("proxy.config.log.collation_host");
if (ptr != nullptr) {
ats_free(collation_host);
collation_host = ptr;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.collation_port");
if (val >= 0) {
collation_port = val;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.collation_host_tagged");
collation_host_tagged = (val > 0);
val = (int)REC_ConfigReadInteger("proxy.config.log.collation_preproc_threads");
if (val > 0 && val <= 128) {
collation_preproc_threads = val;
}
ptr = REC_ConfigReadString("proxy.config.log.collation_secret");
if (ptr != nullptr) {
ats_free(collation_secret);
collation_secret = ptr;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.collation_retry_sec");
if (val >= 0) {
collation_retry_sec = val;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.collation_max_send_buffers");
if (val >= 0) {
collation_max_send_buffers = val;
}
// ROLLING
// we don't check for valid values of rolling_enabled, rolling_interval_sec,
// rolling_offset_hr, or rolling_size_mb because the LogObject takes care of this
//
rolling_interval_sec = (int)REC_ConfigReadInteger("proxy.config.log.rolling_interval_sec");
rolling_offset_hr = (int)REC_ConfigReadInteger("proxy.config.log.rolling_offset_hr");
rolling_size_mb = (int)REC_ConfigReadInteger("proxy.config.log.rolling_size_mb");
val = (int)REC_ConfigReadInteger("proxy.config.log.rolling_enabled");
if (LogRollingEnabledIsValid(val)) {
rolling_enabled = (Log::RollingEnabledValues)val;
} else {
Warning("invalid value '%d' for '%s', disabling log rolling", val, "proxy.config.log.rolling_enabled");
rolling_enabled = Log::NO_ROLLING;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.auto_delete_rolled_files");
auto_delete_rolled_files = (val > 0);
val = (int)REC_ConfigReadInteger("proxy.config.log.rolling_allow_empty");
rolling_allow_empty = (val > 0);
rolling_max_count = (int)REC_ConfigReadInteger("proxy.config.log.rolling_max_count");
// PERFORMANCE
val = (int)REC_ConfigReadInteger("proxy.config.log.sampling_frequency");
if (val > 0) {
sampling_frequency = val;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.file_stat_frequency");
if (val > 0) {
file_stat_frequency = val;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.space_used_frequency");
if (val > 0) {
space_used_frequency = val;
}
// ASCII BUFFER
val = (int)REC_ConfigReadInteger("proxy.config.log.ascii_buffer_size");
if (val > 0) {
ascii_buffer_size = val;
}
val = (int)REC_ConfigReadInteger("proxy.config.log.max_line_size");
if (val > 0) {
max_line_size = val;
}
}
/*-------------------------------------------------------------------------
LogConfig::LogConfig
Read the logging configuration variables from the config file and
initialize the LogConfig member variables. Assign some meaningful
default value if we get garbage back from the config file.
-------------------------------------------------------------------------*/
// TODO: Is UINT_MAX here really correct?
LogConfig::LogConfig()
: initialized(false),
reconfiguration_needed(false),
logging_space_exhausted(false),
m_space_used(0),
m_partition_space_left((int64_t)UINT_MAX),
m_log_collation_accept(nullptr),
m_disk_full(false),
m_disk_low(false),
m_partition_full(false),
m_partition_low(false),
m_log_directory_inaccessible(false)
{
// Setup the default values for all LogConfig public variables so that
// a LogConfig object is valid upon return from the constructor even
// if no configuration file is read
//
setup_default_values();
}
/*-------------------------------------------------------------------------
LogConfig::~LogConfig
Delete all config variable strings.
-------------------------------------------------------------------------*/
LogConfig::~LogConfig()
{
// we don't delete the log collation accept because it may be transferred
// to another LogConfig object
//
// delete m_log_collation_accept;
ats_free(hostname);
ats_free(logfile_dir);
ats_free(collation_host);
ats_free(collation_secret);
}
/*-------------------------------------------------------------------------
LogConfig::setup_collation
-------------------------------------------------------------------------*/
void
LogConfig::setup_collation(LogConfig *prev_config)
{
// Set-up the collation status, but only if collation is enabled and
// there are valid entries for the collation host and port.
//
if (collation_mode < Log::NO_COLLATION || collation_mode >= Log::N_COLLATION_MODES) {
Note("Invalid value %d for proxy.local.log.collation_mode"
" configuration variable (valid range is from %d to %d)\n"
"Log collation disabled",
collation_mode, Log::NO_COLLATION, Log::N_COLLATION_MODES - 1);
} else if (collation_mode == Log::NO_COLLATION) {
// if the previous configuration had a collation accept, delete it
//
if (prev_config && prev_config->m_log_collation_accept) {
delete prev_config->m_log_collation_accept;
prev_config->m_log_collation_accept = nullptr;
}
} else {
Warning("Log collation is deprecated as of ATS v8.0.0!");
if (!collation_port) {
Note("Cannot activate log collation, %d is an invalid collation port", collation_port);
} else if (collation_mode > Log::COLLATION_HOST && strcmp(collation_host, "none") == 0) {
Note("Cannot activate log collation, \"%s\" is an invalid collation host", collation_host);
} else {
if (collation_mode == Log::COLLATION_HOST) {
ink_assert(m_log_collation_accept == nullptr);
if (prev_config && prev_config->m_log_collation_accept) {
if (prev_config->collation_port == collation_port) {
m_log_collation_accept = prev_config->m_log_collation_accept;
} else {
delete prev_config->m_log_collation_accept;
}
}
if (!m_log_collation_accept) {
Log::collation_port = collation_port;
m_log_collation_accept = new LogCollationAccept(collation_port);
}
Debug("log", "I am a collation host listening on port %d.", collation_port);
} else {
Debug("log",
"I am a collation client (%d)."
" My collation host is %s:%d",
collation_mode, collation_host, collation_port);
}
Debug("log", "using iocore log collation");
if (collation_host_tagged) {
LogFormat::turn_tagging_on();
} else {
LogFormat::turn_tagging_off();
}
}
}
}
/*-------------------------------------------------------------------------
LogConfig::init
-------------------------------------------------------------------------*/
void
LogConfig::init(LogConfig *prev_config)
{
LogObject *errlog = nullptr;
ink_assert(!initialized);
setup_collation(prev_config);
update_space_used();
// create log objects
//
if (Log::transaction_logging_enabled()) {
setup_log_objects();
}
// ----------------------------------------------------------------------
// Construct a new error log object candidate.
if (Log::error_logging_enabled()) {
std::unique_ptr<LogFormat> fmt(MakeTextLogFormat("error"));
Debug("log", "creating predefined error log object");
errlog = new LogObject(fmt.get(), logfile_dir, "error.log", LOG_FILE_ASCII, nullptr, (Log::RollingEnabledValues)rolling_enabled,
collation_preproc_threads, rolling_interval_sec, rolling_offset_hr, rolling_size_mb);
log_object_manager.manage_object(errlog);
errlog->set_fmt_timestamps();
} else {
Log::error_log = nullptr;
}
if (prev_config) {
// Transfer objects from previous configuration.
transfer_objects(prev_config);
// After transferring objects, we are going to keep either the new error log or the old one. Figure out
// which one we are keeping and make that the global ...
if (Log::error_log) {
errlog = this->log_object_manager.find_by_format_name(Log::error_log->m_format->name());
}
}
ink_atomic_swap(&Log::error_log, errlog);
// determine if we should use the orphan log space value or not
// we use it if all objects are collation clients, or if some are and
// the specified space for collation is larger than that for local files
//
size_t num_collation_clients = log_object_manager.get_num_collation_clients();
use_orphan_log_space_value = (num_collation_clients == 0 ? false :
(log_object_manager.get_num_objects() == num_collation_clients ?
true :
max_space_mb_for_orphan_logs > max_space_mb_for_logs));
initialized = true;
}
/*-------------------------------------------------------------------------
LogConfig::display
Dump the values for the current LogConfig object.
-------------------------------------------------------------------------*/
void
LogConfig::display(FILE *fd)
{
fprintf(fd, "-----------------------------\n");
fprintf(fd, "--- Logging Configuration ---\n");
fprintf(fd, "-----------------------------\n");
fprintf(fd, "Config variables:\n");
fprintf(fd, " log_buffer_size = %d\n", log_buffer_size);
fprintf(fd, " max_secs_per_buffer = %d\n", max_secs_per_buffer);
fprintf(fd, " max_space_mb_for_logs = %d\n", max_space_mb_for_logs);
fprintf(fd, " max_space_mb_for_orphan_logs = %d\n", max_space_mb_for_orphan_logs);
fprintf(fd, " use_orphan_log_space_value = %d\n", use_orphan_log_space_value);
fprintf(fd, " max_space_mb_headroom = %d\n", max_space_mb_headroom);
fprintf(fd, " hostname = %s\n", hostname);
fprintf(fd, " logfile_dir = %s\n", logfile_dir);
fprintf(fd, " logfile_perm = 0%o\n", logfile_perm);
fprintf(fd, " collation_mode = %d\n", collation_mode);
fprintf(fd, " collation_host = %s\n", collation_host);
fprintf(fd, " collation_port = %d\n", collation_port);
fprintf(fd, " collation_host_tagged = %d\n", collation_host_tagged);
fprintf(fd, " collation_preproc_threads = %d\n", collation_preproc_threads);
fprintf(fd, " collation_secret = %s\n", collation_secret);
fprintf(fd, " rolling_enabled = %d\n", rolling_enabled);
fprintf(fd, " rolling_interval_sec = %d\n", rolling_interval_sec);
fprintf(fd, " rolling_offset_hr = %d\n", rolling_offset_hr);
fprintf(fd, " rolling_size_mb = %d\n", rolling_size_mb);
fprintf(fd, " rolling_max_count = %d\n", rolling_max_count);
fprintf(fd, " rolling_allow_empty = %d\n", rolling_allow_empty);
fprintf(fd, " auto_delete_rolled_files = %d\n", auto_delete_rolled_files);
fprintf(fd, " sampling_frequency = %d\n", sampling_frequency);
fprintf(fd, " file_stat_frequency = %d\n", file_stat_frequency);
fprintf(fd, " space_used_frequency = %d\n", space_used_frequency);
fprintf(fd, "\n");
fprintf(fd, "************ Log Objects (%u objects) ************\n", (unsigned int)log_object_manager.get_num_objects());
log_object_manager.display(fd);
fprintf(fd, "************ Filter List (%u filters) ************\n", filter_list.count());
filter_list.display(fd);
fprintf(fd, "************ Format List (%u formats) ************\n", format_list.count());
format_list.display(fd);
}
//-----------------------------------------------------------------------------
// setup_log_objects
//
// Construct: All custom objects.
//
// Upon return from this function:
// - global_object_list has the aforementioned objects
// - global_filter_list has all custom filters
//
void
LogConfig::setup_log_objects()
{
Debug("log", "creating objects...");
filter_list.clear();
// Evaluate logging.yaml to construct the custom log objects.
evaluate_config();
// Open local pipes so readers can see them.
log_object_manager.open_local_pipes();
if (is_debug_tag_set("log")) {
log_object_manager.display();
}
}
/*-------------------------------------------------------------------------
LogConfig::reconfigure
This is the manager callback for any logging config variable change.
Since we want to access the config variables to build a new config
object, but can't from this function (big lock technology in the
manager), we'll just set a flag and call the real reconfiguration
function from the logging thread.
-------------------------------------------------------------------------*/
int
LogConfig::reconfigure(const char * /* name ATS_UNUSED */, RecDataT /* data_type ATS_UNUSED */, RecData /* data ATS_UNUSED */,
void * /* cookie ATS_UNUSED */)
{
Debug("log-config", "Reconfiguration request accepted");
Log::config->reconfiguration_needed = true;
return 0;
}
/*-------------------------------------------------------------------------
LogConfig::register_config_callbacks
This static function is called by Log::init to register the config update
function for each of the logging configuration variables.
-------------------------------------------------------------------------*/
void
LogConfig::register_config_callbacks()
{
static const char *names[] = {
"proxy.config.log.log_buffer_size",
"proxy.config.log.max_secs_per_buffer",
"proxy.config.log.max_space_mb_for_logs",
"proxy.config.log.max_space_mb_for_orphan_logs",
"proxy.config.log.max_space_mb_headroom",
"proxy.config.log.logfile_perm",
"proxy.config.log.hostname",
"proxy.config.log.logfile_dir",
"proxy.local.log.collation_mode",
"proxy.config.log.collation_host",
"proxy.config.log.collation_port",
"proxy.config.log.collation_host_tagged",
"proxy.config.log.collation_secret",
"proxy.config.log.collation_retry_sec",
"proxy.config.log.collation_max_send_buffers",
"proxy.config.log.rolling_enabled",
"proxy.config.log.rolling_interval_sec",
"proxy.config.log.rolling_offset_hr",
"proxy.config.log.rolling_size_mb",
"proxy.config.log.auto_delete_rolled_files",
"proxy.config.log.rolling_max_count",
"proxy.config.log.rolling_allow_empty",
"proxy.config.log.config.filename",
"proxy.config.log.sampling_frequency",
"proxy.config.log.file_stat_frequency",
"proxy.config.log.space_used_frequency",
};
for (unsigned i = 0; i < countof(names); ++i) {
REC_RegisterConfigUpdateFunc(names[i], &LogConfig::reconfigure, nullptr);
}
}
/*-------------------------------------------------------------------------
LogConfig::register_stat_callbacks
This static function is called by Log::init to register the stat update
function for each of the logging stats variables.
-------------------------------------------------------------------------*/
void
LogConfig::register_stat_callbacks()
{
//
// events
//
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_ok", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_ok_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_skip", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_skip_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_aggr", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_aggr_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_full", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_full_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_fail", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_fail_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_ok", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_ok_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_skip", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_skip_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_aggr", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_aggr_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_full", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_full_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_fail", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_fail_stat, RecRawStatSyncCount);
//
// number vs bytes of logs
//
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_sent_to_network", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_sent_to_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_lost_before_sent_to_network", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_lost_before_sent_to_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_received_from_network", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_received_from_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_flush_to_disk", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_flush_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_lost_before_flush_to_disk", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_lost_before_flush_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_lost_before_preproc", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_lost_before_preproc_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_sent_to_network", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_sent_to_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_lost_before_sent_to_network", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_lost_before_sent_to_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_received_from_network", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_received_from_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_flush_to_disk", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_flush_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_lost_before_flush_to_disk", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_lost_before_flush_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_written_to_disk", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_written_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_lost_before_written_to_disk", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_lost_before_written_to_disk_stat, RecRawStatSyncSum);
//
// I/O
//
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.log_files_open", RECD_COUNTER, RECP_NON_PERSISTENT,
(int)log_stat_log_files_open_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.log_files_space_used", RECD_INT, RECP_NON_PERSISTENT,
(int)log_stat_log_files_space_used_stat, RecRawStatSyncSum);
}
/*-------------------------------------------------------------------------
LogConfig::register_mgmt_callbacks
This static function is called by Log::init to register the mgmt callback
function for each of the logging mgmt messages.
-------------------------------------------------------------------------*/
void
LogConfig::register_mgmt_callbacks()
{
RecRegisterManagerCb(REC_EVENT_ROLL_LOG_FILES, &LogConfig::reconfigure_mgmt_variables, nullptr);
}
/*-------------------------------------------------------------------------
LogConfig::space_to_write
This function returns true if there is enough disk space to write the
given number of bytes, false otherwise.
-------------------------------------------------------------------------*/
bool
LogConfig::space_to_write(int64_t bytes_to_write) const
{
int64_t config_space, partition_headroom;
int64_t logical_space_used, physical_space_left;
bool space;
config_space = (int64_t)get_max_space_mb() * LOG_MEGABYTE;
partition_headroom = (int64_t)PARTITION_HEADROOM_MB * LOG_MEGABYTE;
logical_space_used = m_space_used + bytes_to_write;
physical_space_left = m_partition_space_left - (int64_t)bytes_to_write;
space = ((logical_space_used < config_space) && (physical_space_left > partition_headroom));
Debug("logspace",
"logical space used %" PRId64 ", configured space %" PRId64 ", physical space left %" PRId64 ", partition headroom %" PRId64
", space %s available",
logical_space_used, config_space, physical_space_left, partition_headroom, space ? "is" : "is not");
return space;
}
/*-------------------------------------------------------------------------
LogConfig::update_space_used
Update the m_space_used variable by reading the logging dir and counting
the total bytes being occupied by files. If we've used too much space
(space_used > max_space - headroom) then start deleting some files (if
auto_delete_rolled_files is set) to make room. Finally, update the
space_used stat.
This routine will only be executed SINGLE-THREADED, either by the main
thread when a LogConfig is initialized, or by the event thread during the
periodic space check.
-------------------------------------------------------------------------*/
static int
delete_candidate_compare(const LogDeleteCandidate *a, const LogDeleteCandidate *b)
{
return ((int)(a->mtime - b->mtime));
}
void
LogConfig::update_space_used()
{
// no need to update space used if log directory is inaccessible
//
if (m_log_directory_inaccessible) {
return;
}
static const int MAX_CANDIDATES = 128;
LogDeleteCandidate candidates[MAX_CANDIDATES];
int i, victim, candidate_count;
int64_t total_space_used, partition_space_left;
char path[MAXPATHLEN];
int sret;
struct dirent *entry;
struct stat sbuf;
DIR *ld;
// check if logging directory has been specified
//
if (!logfile_dir) {
const char *msg = "Logging directory not specified";
Error("%s", msg);
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, "%s", msg);
m_log_directory_inaccessible = true;
return;
}
// check if logging directory exists and is searchable readable & writable
int err;
do {
err = access(logfile_dir, R_OK | W_OK | X_OK);
} while ((err < 0) && (errno == EINTR));
if (err < 0) {
const char *msg = "Error accessing logging directory %s: %s.";
Error(msg, logfile_dir, strerror(errno));
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, msg, logfile_dir, strerror(errno));
m_log_directory_inaccessible = true;
return;
}
ld = ::opendir(logfile_dir);
if (ld == nullptr) {
const char *msg = "Error opening logging directory %s to perform a space check: %s.";
Error(msg, logfile_dir, strerror(errno));
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, msg, logfile_dir, strerror(errno));
m_log_directory_inaccessible = true;
return;
}
total_space_used = 0LL;
candidate_count = 0;
while ((entry = readdir(ld))) {
snprintf(path, MAXPATHLEN, "%s/%s", logfile_dir, entry->d_name);
sret = ::stat(path, &sbuf);
if (sret != -1 && S_ISREG(sbuf.st_mode)) {
total_space_used += (int64_t)sbuf.st_size;
if (auto_delete_rolled_files && LogFile::rolled_logfile(entry->d_name) && candidate_count < MAX_CANDIDATES) {
//
// then add this entry to the candidate list
//
candidates[candidate_count].name = ats_strdup(path);
candidates[candidate_count].size = (int64_t)sbuf.st_size;
candidates[candidate_count].mtime = sbuf.st_mtime;
candidate_count++;
}
}
}
::closedir(ld);
//
// Now check the partition to see if there is enough *actual* space.
//
partition_space_left = m_partition_space_left;
struct statvfs fs;
if (::statvfs(logfile_dir, &fs) >= 0) {
partition_space_left = (int64_t)fs.f_bavail * (int64_t)fs.f_bsize;
}
//
// Update the config variables for space used/left
//
m_space_used = total_space_used;
m_partition_space_left = partition_space_left;
RecSetRawStatSum(log_rsb, log_stat_log_files_space_used_stat, m_space_used);
RecSetRawStatCount(log_rsb, log_stat_log_files_space_used_stat, 1);
Debug("logspace", "%" PRId64 " bytes being used for logs", m_space_used);
Debug("logspace", "%" PRId64 " bytes left on partition", m_partition_space_left);
//
// Now that we have an accurate picture of the amount of space being
// used by logging, we can see if we're running low on space. If so,
// we might consider deleting some files that are stored in the
// candidate array.
//
// To delete oldest files first, we'll sort our candidate array by
// timestamps, making the oldest files first in the array (thus first
// selected).
//
int64_t max_space = (int64_t)get_max_space_mb() * LOG_MEGABYTE;
int64_t headroom = (int64_t)max_space_mb_headroom * LOG_MEGABYTE;
if (candidate_count > 0 && !space_to_write(headroom)) {
Debug("logspace", "headroom reached, trying to clear space ...");
Debug("logspace", "sorting %d delete candidates ...", candidate_count);
qsort(candidates, candidate_count, sizeof(LogDeleteCandidate), (int (*)(const void *, const void *))delete_candidate_compare);
for (victim = 0; victim < candidate_count; victim++) {
if (space_to_write(headroom + log_buffer_size)) {
Debug("logspace", "low water mark reached; stop deleting");
break;
}
Debug("logspace", "auto-deleting %s", candidates[victim].name);
if (unlink(candidates[victim].name) < 0) {
Note("Traffic Server was Unable to auto-delete rolled "
"logfile %s: %s.",
candidates[victim].name, strerror(errno));
} else {
Debug("logspace",
"The rolled logfile, %s, was auto-deleted; "
"%" PRId64 " bytes were reclaimed.",
candidates[victim].name, candidates[victim].size);
m_space_used -= candidates[victim].size;
m_partition_space_left += candidates[victim].size;
}
}
}
//
// Clean up the candidate array
//
for (i = 0; i < candidate_count; i++) {
ats_free(candidates[i].name);
}
//
// Now that we've updated the m_space_used value, see if we need to
// issue any alarms or warnings about space
//
if (!space_to_write(headroom)) {
if (!logging_space_exhausted) {
Note("Logging space exhausted, any logs writing to local disk will be dropped!");
}
logging_space_exhausted = true;
//
// Despite our best efforts, we still can't write to the disk.
// Find out why and set/clear warnings.
//
// First, are we out of space based on configuration?
//
if (m_space_used >= max_space) {
if (!m_disk_full) {
m_disk_full = true;
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, DISK_IS_CONFIG_FULL_MESSAGE);
Warning(DISK_IS_CONFIG_FULL_MESSAGE);
}
}
//
// How about out of actual space on the partition?
//
else if (m_partition_space_left <= 0) {
if (!m_partition_full) {
m_partition_full = true;
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, DISK_IS_ACTUAL_FULL_MESSAGE);
Warning(DISK_IS_ACTUAL_FULL_MESSAGE);
}
}
//
// How about being within the headroom limit?
//
else if (m_space_used + headroom >= max_space) {
if (!m_disk_low) {
m_disk_low = true;
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, DISK_IS_CONFIG_LOW_MESSAGE);
Warning(DISK_IS_CONFIG_LOW_MESSAGE);
}
} else {
if (!m_partition_low) {
m_partition_low = true;
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, DISK_IS_ACTUAL_LOW_MESSAGE);
Warning(DISK_IS_ACTUAL_LOW_MESSAGE);
}
}
} else {
//
// We have enough space to log again; clear any previous messages
//
if (logging_space_exhausted) {
Note("Logging space is no longer exhausted.");
}
logging_space_exhausted = false;
if (m_disk_full || m_partition_full) {
Note("Logging disk is no longer full; access logging to local log directory resumed.");
m_disk_full = false;
m_partition_full = false;
}
if (m_disk_low || m_partition_low) {
Note("Logging disk is no longer low; access logging to local log directory resumed.");
m_disk_low = false;
m_partition_low = false;
}
}
}
bool
LogConfig::evaluate_config()
{
ats_scoped_str path(RecConfigReadConfigPath("proxy.config.log.config.filename", "logging.yaml"));
struct stat sbuf;
if (stat(path.get(), &sbuf) == -1 && errno == ENOENT) {
Warning("logging configuration '%s' doesn't exist", path.get());
return false;
}
Note("loading logging.yaml");
YamlLogConfig y(this);
bool zret = y.parse(path.get());
if (zret) {
Note("logging.yaml done reloading!");
} else {
Note("failed to reload logging.yaml");
}
return zret;
}