blob: 07df07f80530c85aa5e37c97b03ec149a5696709 [file] [log] [blame]
/** @file
A brief file description
@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.
*/
#ifndef LOG_CONFIG_H
#define LOG_CONFIG_H
#include "libts.h"
#include "P_RecProcess.h"
/* Instead of enumerating the stats in DynamicStats.h, each module needs
to enumerate its stats separately and register them with librecords
*/
enum
{
log_stat_bytes_buffered_stat,
log_stat_bytes_written_to_disk_stat,
log_stat_bytes_sent_to_network_stat,
log_stat_bytes_received_from_network_stat,
// Logging I/O
log_stat_log_files_open_stat,
log_stat_log_files_space_used_stat,
// Logging Events
log_stat_event_log_error_stat,
log_stat_event_log_access_stat,
log_stat_event_log_access_fail_stat,
log_stat_event_log_access_skip_stat,
log_stat_count
};
extern RecRawStatBlock *log_rsb;
/* Stats should only be accessed using these macros */
#define LOG_SET_DYN_STAT(x,C, S) \
do { \
RecSetRawStatSum(log_rsb, x, S); \
RecSetRawStatCount(log_rsb, x, C); \
} while (0);
#define LOG_INCREMENT_DYN_STAT(x) \
RecIncrRawStat(log_rsb, mutex->thread_holding, (int) x, 1);
#define LOG_DECREMENT_DYN_STAT(x) \
RecIncrRawStat(log_rsb, mutex->thread_holding, (int) x, -1);
#define LOG_SUM_DYN_STAT(x, y) \
RecIncrRawStat(log_rsb, mutex->thread_holding, (int) x, (int) y);
#define LOG_SUM_GLOBAL_DYN_STAT(x, y) \
RecIncrGlobalRawStatSum(log_rsb,x,y)
#define LOG_CLEAR_DYN_STAT(x) \
do { \
RecSetRawStatSum(log_rsb, x, 0); \
RecSetRawStatCount(log_rsb, x, 0); \
} while (0);
#define LOG_ConfigReadInteger REC_ConfigReadInteger
#define LOG_LocalReadInteger REC_ConfigReadInteger
#define LOG_ConfigReadString REC_ConfigReadString
#define LOG_RegisterConfigUpdateFunc REC_RegisterConfigUpdateFunc
#define LOG_RegisterLocalUpdateFunc REC_RegisterConfigUpdateFunc
#define LOG_RegisterMgmtCallback RecRegisterManagerCb
struct dirent;
#if defined(IOCORE_LOG_COLLATION)
struct LogCollationAccept;
#endif
/*-------------------------------------------------------------------------
LogConfig
This object keeps the state of the logging configuraion variables. Upon
construction, the log configuration file is read and the logging
variables are initialized.
The "global" LogConfig object is kept as a static pointer in the Log
class, called "config", and changed whenever the configuration variables
are changed in the config file, using Log::change_configuration().
To add a new config variable:
1. Add a line in records.config for the new config variable.
The name in records.config should be "proxy.config.log.xxx".
2. Create a member variable to store the current value.
The name of the member variable should be "xxx".
3. If the member variable is a string, add a delete for it in the
destructor, LogConfig::~LogConfig.
4. Initialize the member variable in LogConfig::setup_default_values
5. Update the member variable from the records.config file
in LogConfig::read_configuration_variables() using a call to
ConfigReadInteger or ConfigReadString.
6. Add a line in the LogConfig::register_config_callbacks() function
for this new variable if it is exposed in the GUI
-------------------------------------------------------------------------*/
class LogConfig
{
public:
enum CollationMode
{
NO_COLLATION = 0,
COLLATION_HOST,
SEND_STD_FMTS,
SEND_NON_XML_CUSTOM_FMTS,
SEND_STD_AND_NON_XML_CUSTOM_FMTS,
N_COLLATION_MODES
};
enum RollingEnabledValues
{
NO_ROLLING = 0,
ROLL_ON_TIME_ONLY,
ROLL_ON_SIZE_ONLY,
ROLL_ON_TIME_OR_SIZE,
ROLL_ON_TIME_AND_SIZE,
INVALID_ROLLING_VALUE
};
enum
{
// 5 minute minimum rolling interval
MIN_ROLLING_INTERVAL_SEC = 300
};
LogConfig();
~LogConfig();
void init(LogConfig * previous_config = 0);
void display(FILE * fd = stdout);
void setup_log_objects();
static void register_configs();
static int reconfigure(const char *name, RecDataT data_type, RecData data, void *cookie);
static void register_config_callbacks();
static void register_stat_callbacks();
static void register_mgmt_callbacks();
bool am_collation_host()
{
return collation_mode == COLLATION_HOST;
};
bool space_to_write(int64_t bytes_to_write);
bool space_is_short()
{
return !space_to_write(max_space_mb_headroom * LOG_MEGABYTE);
};
void increment_space_used(int bytes)
{
m_space_used += bytes;
m_partition_space_left -= bytes;
};
void update_space_used();
void read_configuration_variables();
// CVR This is the mgmt callback function, hence all the strange arguments
static void *reconfigure_mgmt_variables(void *token, char *data_raw, int data_len);
int get_max_space_mb()
{
return (use_orphan_log_space_value ? max_space_mb_for_orphan_logs : max_space_mb_for_logs);
};
void transfer_objects(LogConfig * old_config)
{
log_object_manager.transfer_objects(old_config->log_object_manager);
};
bool has_api_objects()
{
return log_object_manager.has_api_objects();
};
public:
bool initialized;
bool reconfiguration_needed;
bool logging_space_exhausted;
int64_t m_space_used;
int64_t m_partition_space_left;
bool roll_log_files_now; // signal that files must be rolled
LogObjectManager log_object_manager;
LogFilterList global_filter_list;
LogFormatList global_format_list;
int log_buffer_size;
int max_entries_per_buffer;
int max_secs_per_buffer;
int max_space_mb_for_logs;
int max_space_mb_for_orphan_logs;
int max_space_mb_headroom;
int logfile_perm;
int squid_log_enabled;
int xuid_logging_enabled;
int squid_log_is_ascii;
int common_log_enabled;
int common_log_is_ascii;
int extended_log_enabled;
int extended_log_is_ascii;
int extended2_log_enabled;
int extended2_log_is_ascii;
int separate_icp_logs;
int separate_host_logs;
int collation_mode;
int collation_port;
int collation_host_tagged;
int collation_retry_sec;
int collation_max_send_buffers;
int rolling_enabled;
int rolling_interval_sec;
int rolling_offset_hr;
int rolling_size_mb;
int auto_delete_rolled_files;
int custom_logs_enabled;
int search_log_enabled;
int search_rolling_interval_sec;
unsigned int search_server_ip_addr;
int search_server_port;
int search_top_sites;
char *search_log_filters;
char *search_url_filter;
char *search_log_file_one;
char *search_log_file_two;
int sampling_frequency;
int file_stat_frequency;
int space_used_frequency;
int ascii_buffer_size;
int max_line_size;
int overspill_report_count;
char *hostname;
char *logfile_dir;
char *squid_log_name;
char *squid_log_header;
char *common_log_name;
char *common_log_header;
char *extended_log_name;
char *extended_log_header;
char *extended2_log_name;
char *extended2_log_header;
char *collation_host;
char *collation_secret;
char *xml_config_file;
char *hosts_config_file;
private:
// this struct collects all the necesary info to build a pre-defined object
//
struct PreDefinedFormatInfo
{
LogFormat *format;
char *filename;
int is_ascii;
char *header;
LINK(PreDefinedFormatInfo, link);
PreDefinedFormatInfo(LogFormat * fmt, char *fname, int ascii,
char *hdr):format(fmt), filename(fname), is_ascii(ascii), header(hdr)
{
};
};
typedef Queue<PreDefinedFormatInfo> PreDefinedFormatInfoList;
void read_xml_log_config(int from_memory);
char **read_log_hosts_file(size_t * nhosts);
void setup_default_values();
void setup_collation(LogConfig * prev_config);
void setup_pre_defined_info(PreDefinedFormatInfoList * pre_def_info_list);
LogFilter *split_by_protocol(const PreDefinedFormatInfoList & pre_def_info_list);
size_t split_by_hostname(const PreDefinedFormatInfoList & pre_def_info_list, LogFilter * reject_protocol);
void create_pre_defined_objects_with_filter(const PreDefinedFormatInfoList &pre_def_info_list, size_t num_filt,
LogFilter ** filter, const char *filt_name = 0, bool force_extension = false);
void add_filters_to_search_log_object(const char *format_name);
private:
// if true, use max_space_mb_for_orphan_logs to determine the amount
// of space that logging can use, otherwise use max_space_mb_for_logs
//
bool use_orphan_log_space_value;
#if defined(IOCORE_LOG_COLLATION)
LogCollationAccept *m_log_collation_accept;
#endif
struct dirent *m_dir_entry;
char *m_pDir;
bool m_disk_full;
bool m_disk_low;
bool m_partition_full;
bool m_partition_low;
bool m_log_directory_inaccessible;
private:
// -- member functions not allowed --
LogConfig(const LogConfig &);
LogConfig & operator=(const LogConfig &);
};
/*-------------------------------------------------------------------------
LogDeleteCandidate
-------------------------------------------------------------------------*/
struct LogDeleteCandidate
{
time_t mtime;
char *name;
int64_t size;
};
#endif