MySQL 9.1.0
Source Code Documentation
|
Error logging, slow query logging, general query logging: If it's server-internal, and it's logging, it's here. More...
#include <mysql/components/services/log_shared.h>
#include <stdarg.h>
#include <stddef.h>
#include <sys/types.h>
#include "lex_string.h"
#include "my_command.h"
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_io.h"
#include "my_psi_config.h"
#include "my_thread_local.h"
#include "mysql/components/services/bits/mysql_mutex_bits.h"
#include "mysql/components/services/bits/mysql_rwlock_bits.h"
#include "mysql/components/services/bits/psi_file_bits.h"
#include "mysql/my_loglevel.h"
#include "mysql/psi/mysql_mutex.h"
#include "mysql_com.h"
#include "sql/auth/sql_security_ctx.h"
Go to the source code of this file.
Classes | |
class | Log_event_handler |
Abstract superclass for handling logging to slow/general logs. More... | |
class | Log_to_csv_event_handler |
Class responsible for table based logging. More... | |
class | Query_logger |
Class which manages slow and general log event handlers. More... | |
class | Log_throttle |
Base class for rate-limiting a log (slow query log etc.) More... | |
class | Slow_log_throttle |
Used for rate-limiting the slow query log. More... | |
class | Error_log_throttle |
Macros | |
#define | log_errlog(level, errcode, ...) |
Set up basics, fetch message for "errcode", insert any va_args, call the new error stack. More... | |
#define | log_errlog_formatted(level, ...) |
Default tags + freeform message. More... | |
#define | log_errlog_rich(level, ...) |
Set up the default tags, then let us add/override any key/value we like, call the new error stack. More... | |
#define | sql_print_information(...) log_errlog_formatted(INFORMATION_LEVEL, ##__VA_ARGS__) |
Define sql_print_*() so they use the new log_message() variadic convenience interface to logging. More... | |
#define | sql_print_warning(...) log_errlog_formatted(WARNING_LEVEL, ##__VA_ARGS__) |
#define | sql_print_error(...) log_errlog_formatted(ERROR_LEVEL, ##__VA_ARGS__) |
Typedefs | |
typedef bool(* | log_summary_t) (THD *thd, const char *query, size_t query_length, bool aggregate, ulonglong lock_usec, ulonglong exec_usec) |
typedef enum enum_log_error_stack_error | log_error_stack_error |
Well-known values returned by log_error_stack(). More... | |
Enumerations | |
enum | enum_log_table_type { QUERY_LOG_NONE = 0 , QUERY_LOG_SLOW = 1 , QUERY_LOG_GENERAL = 2 } |
Type of the log table. More... | |
enum | enum_iso8601_tzmode { iso8601_sysvar_logtimestamps = -1 , iso8601_utc = 0 , iso8601_system_time = 1 } |
Whether to generate a UTC timestamp, or one following system-time. More... | |
enum | enum_log_error_stack_error { LOG_ERROR_STACK_SUCCESS = 0 , LOG_ERROR_STACK_DELIMITER_MISSING = -1 , LOG_ERROR_STACK_SERVICE_MISSING = -2 , LOG_ERROR_STACK_CACHE_ENTRY_OOM = -3 , LOG_ERROR_STACK_MULTITON_DENIED = -4 , LOG_ERROR_STACK_SERVICE_INSTANCE_OOM = -5 , LOG_ERROR_STACK_ENDS_IN_NON_SINK = -6 , LOG_ERROR_STACK_SERVICE_UNAVAILABLE = -7 , LOG_ERROR_STACK_NO_PFS_SUPPORT = -50 , LOG_ERROR_STACK_NO_LOG_PARSER = -51 , LOG_ERROR_MULTIPLE_FILTERS = -52 , LOG_ERROR_UNEXPECTED_DELIMITER_FOUND = -101 , LOG_ERROR_MIXED_DELIMITERS = -102 } |
Well-known values returned by log_error_stack(). More... | |
Functions | |
int | log_vmessage (int log_type, va_list lili) |
Write a message to a log (for now just used for error log). More... | |
int | log_message (int log_type,...) |
Variadic convenience function for logging. More... | |
my_thread_id | log_get_thread_id (THD *thd) |
A helper that we can stubify so we don't have to pull all of THD into the unit tests. More... | |
char * | make_query_log_name (char *buff, enum_log_table_type log_type) |
Create the name of the query log specified. More... | |
bool | is_valid_log_name (const char *name, size_t len) |
Check given log name against certain blacklisted names/extensions. More... | |
bool | log_slow_applicable (THD *thd) |
Check whether we need to write the current statement (or its rewritten version if it exists) to the slow query log. More... | |
void | log_slow_do (THD *thd) |
Unconditionally writes the current statement (or its rewritten version if it exists) to the slow query log. More... | |
void | log_slow_statement (THD *thd) |
Check whether we need to write the current statement to the slow query log. More... | |
void | error_log_print (enum loglevel level, uint ecode, va_list args) |
Prints a printf style message to the error log. More... | |
bool | init_error_log () |
Initialize structures (e.g. More... | |
bool | open_error_log (const char *filename, bool get_lock) |
Open the error log and redirect stderr and optionally stdout to the error log file. More... | |
void | destroy_error_log () |
Free any error log resources. More... | |
bool | reopen_error_log () |
Flush any pending data to disk and reopen the error log. More... | |
void | discard_error_log_messages () |
Discard all buffered messages and deallocate buffer without printing anything. More... | |
void | flush_error_log_messages () |
We buffer all error log messages that have been printed before the error log has been opened. More... | |
int | log_string_compare (const char *a, const char *b, size_t len, bool case_insensitive) |
Modular logger: log line and key/value manipulation helpers. More... | |
bool | log_item_generic_type (log_item_type t) |
Predicate used to determine whether a type is generic (generic string, generic float, generic integer) rather than a well-known type. More... | |
bool | log_item_string_class (log_item_class c) |
Predicate used to determine whether a class is a string class (C-string or Lex-string). More... | |
bool | log_item_numeric_class (log_item_class c) |
Predicate used to determine whether a class is a numeric class (integer or float). More... | |
void | log_item_get_int (log_item *li, longlong *i) |
Get an integer value from a log-item of float or integer type. More... | |
void | log_item_get_float (log_item *li, double *f) |
Get a float value from a log-item of float or integer type. More... | |
void | log_item_get_string (log_item *li, char **str, size_t *len) |
Get a string value from a log-item of C-string or Lex string type. More... | |
bool | log_item_set_int (log_item_data *lid, longlong i) |
Set an integer value on a log_item. More... | |
bool | log_item_set_float (log_item_data *lid, double f) |
Set a floating point value on a log_item. More... | |
bool | log_item_set_lexstring (log_item_data *lid, const char *s, size_t s_len) |
Set a string value on a log_item. More... | |
bool | log_item_set_cstring (log_item_data *lid, const char *s) |
Set a string value on a log_item. More... | |
int | log_item_wellknown_by_name (const char *key, size_t len) |
See whether a string is a wellknown field name. More... | |
int | log_item_wellknown_by_type (log_item_type t) |
See whether a type is wellknown. More... | |
const char * | log_item_wellknown_get_name (uint idx) |
Accessor: from a record describing a wellknown key, get its name. More... | |
log_item_type | log_item_wellknown_get_type (uint idx) |
Accessor: from a record describing a wellknown key, get its type. More... | |
log_item_class | log_item_wellknown_get_class (uint idx) |
Accessor: from a record describing a wellknown key, get its class. More... | |
void | log_item_free (log_item *li) |
Release any of key and value on a log-item that were dynamically allocated. More... | |
bool | log_line_full (log_line *ll) |
Predicate indicating whether a log line is "willing" to accept any more key/value pairs. More... | |
int | log_line_item_count (log_line *ll) |
How many items are currently set on the given log_line? More... | |
log_item_type_mask | log_line_item_types_seen (log_line *ll, log_item_type_mask m) |
Test whether a given type is presumed present on the log line. More... | |
log_line * | log_line_init () |
Initialize a log_line. More... | |
void | log_line_exit (log_line *ll) |
Release a log_line allocated with log_line_init. More... | |
log_item * | log_line_get_output_buffer (log_line *ll) |
Get log-line's output buffer. More... | |
void | log_line_item_free (log_line *ll, size_t elem) |
Release log line item (key/value pair) with the index elem in log line ll. More... | |
void | log_line_item_free_all (log_line *ll) |
Release all log line items (key/value pairs) in log line ll. More... | |
void | log_line_item_remove (log_line *ll, int elem) |
Release log line item (key/value pair) with the index elem in log line ll. More... | |
int | log_line_index_by_name (log_line *ll, const char *key) |
Find the (index of the) last key/value pair of the given name in the log line. More... | |
log_item * | log_line_item_by_name (log_line *ll, const char *key) |
Find the last item matching the given key in the log line. More... | |
int | log_line_index_by_type (log_line *ll, log_item_type t) |
Find the (index of the) first key/value pair of the given type in the log line. More... | |
int | log_line_index_by_item (log_line *ll, log_item *ref) |
Find the (index of the) first key/value pair of the given type in the log line. More... | |
void | log_item_init (log_item *li) |
Initializes a log entry for use. More... | |
log_item * | log_line_item_init (log_line *ll) |
Initializes an entry in a log line for use. More... | |
log_item_data * | log_item_set_with_key (log_item *li, log_item_type t, const char *key, uint32 alloc) |
Create new log item with key name "key", and allocation flags of "alloc" (see enum_log_item_free). More... | |
log_item_data * | log_line_item_set_with_key (log_line *ll, log_item_type t, const char *key, uint32 alloc) |
Create new log item in log line "ll", with key name "key", and allocation flags of "alloc" (see enum_log_item_free). More... | |
log_item_data * | log_item_set (log_item *li, log_item_type t) |
As log_item_set_with_key(), except that the key is automatically derived from the wellknown log_item_type t. More... | |
log_item_data * | log_line_item_set (log_line *ll, log_item_type t) |
Create a new log item of well-known type "t" in log line "ll". More... | |
const char * | log_label_from_prio (int prio) |
Convenience function: Derive a log label ("error", "warning", "information") from a severity. More... | |
enum loglevel | log_prio_from_label (const char *label) |
Derive the event's priority (SYSTEM_LEVEL, ERROR_LEVEL, ...) from a textual label. More... | |
int | log_line_submit (log_line *ll) |
Complete, filter, and write submitted log items. More... | |
void | log_line_set_flag (log_line *ll, log_line_flags_mask mask, log_line_flags_mask value) |
Set/reset one or more log line flags. More... | |
int | make_iso8601_timestamp (char *buf, ulonglong utime, enum enum_iso8601_tzmode mode) |
Make and return an ISO 8601 / RFC 3339 compliant timestamp. More... | |
ulonglong | iso8601_timestamp_to_microseconds (const char *timestamp, size_t len) |
Parse a ISO8601 timestamp and return the number of microseconds since the epoch. More... | |
log_error_stack_error | log_builtins_error_stack (const char *conf, bool check_only, size_t *pos) |
Set up custom error logging stack. More... | |
int | log_builtins_error_stack_flush () |
Call flush() on all log_services. More... | |
int | log_builtins_init () |
Initialize the structured logging subsystem. More... | |
int | log_builtins_exit () |
De-initialize the structured logging subsystem. More... | |
void | log_write_errstream (const char *buffer, size_t length) |
Interim helper: write to the default error stream. More... | |
Variables | |
static const uint | LOG_NONE = 1 |
static const uint | LOG_FILE = 2 |
static const uint | LOG_TABLE = 4 |
Query_logger | query_logger |
Slow_log_throttle | log_throttle_qni |
Error logging, slow query logging, general query logging: If it's server-internal, and it's logging, it's here.
Components/services should NOT include this, but include include/mysql/components/services/log_builtins.h instead to gain access to the error logging stack.
Legacy plugins (pre-"services") will likely include include/mysql/service_my_plugin_log.h instead.
#define log_errlog | ( | level, | |
errcode, | |||
... | |||
) |
Set up basics, fetch message for "errcode", insert any va_args, call the new error stack.
A helper for the transition to the new stack.
#define log_errlog_formatted | ( | level, | |
... | |||
) |
Default tags + freeform message.
A helper for re::defining sql_print_*() to go through the new error log service stack.
Remember to never blindly LOG_MESSAGE a string you that may contain user input as it may contain % which will be treated as substitutions.
BAD: LOG_ITEM_LOG_MESSAGE, dodgy_message OK: LOG_ITEM_LOG_MESSAGE, "%s", dodgy_message GOOD: LOG_ITEM_LOG_VERBATIM, dodgy_message
#define log_errlog_rich | ( | level, | |
... | |||
) |
Set up the default tags, then let us add/override any key/value we like, call the new error stack.
A helper for the transition to the new stack.
#define sql_print_error | ( | ... | ) | log_errlog_formatted(ERROR_LEVEL, ##__VA_ARGS__) |
#define sql_print_information | ( | ... | ) | log_errlog_formatted(INFORMATION_LEVEL, ##__VA_ARGS__) |
Define sql_print_*() so they use the new log_message() variadic convenience interface to logging.
This lets us switch over the bulk of the messages right away until we can attend to them individually; it also verifies that we no longer use function pointers to log functions.
As before, sql_print_*() only accepts a printf-style format string, and the arguments to same, if any.
#define sql_print_warning | ( | ... | ) | log_errlog_formatted(WARNING_LEVEL, ##__VA_ARGS__) |
typedef enum enum_log_error_stack_error log_error_stack_error |
Well-known values returned by log_error_stack().
typedef bool(* log_summary_t) (THD *thd, const char *query, size_t query_length, bool aggregate, ulonglong lock_usec, ulonglong exec_usec) |
enum enum_iso8601_tzmode |
Whether to generate a UTC timestamp, or one following system-time.
These values are not arbitrary; they must correspond to the range and meaning of opt_log_timestamps.
Enumerator | |
---|---|
iso8601_sysvar_logtimestamps | use value of opt_log_timestamps |
iso8601_utc | create UTC timestamp |
iso8601_system_time | use system time |
Well-known values returned by log_error_stack().
enum enum_log_table_type |
void destroy_error_log | ( | ) |
Free any error log resources.
void discard_error_log_messages | ( | ) |
Discard all buffered messages and deallocate buffer without printing anything.
Needed when terminating launching process after daemon has started. At this point we may have messages in the error log, but we don't want to show them to stderr (the daemon will output them in its error log).
void error_log_print | ( | enum loglevel | level, |
uint | ecode, | ||
va_list | args | ||
) |
Prints a printf style message to the error log.
A thin wrapper around log_message() for local_message_hook, Table_check_intact::report_error, and others.
level | The level of the msg significance |
ecode | Error code of the error message. |
args | va_list list of arguments for the message |
void flush_error_log_messages | ( | ) |
We buffer all error log messages that have been printed before the error log has been opened.
This allows us to write them to the correct file once the error log has been opened.
This function will explicitly flush buffered messages to stderr. It is only needed in cases where open_error_log() is not called as it otherwise will be done there.
This function also turns buffering off (there is no way to turn buffering back on).
bool init_error_log | ( | ) |
Initialize structures (e.g.
mutex) needed by the error log.
true | an error occurred |
false | basic error logging is now available in multi-threaded mode |
bool is_valid_log_name | ( | const char * | name, |
size_t | len | ||
) |
Check given log name against certain blacklisted names/extensions.
name | Log name to check |
len | Length of log name |
ulonglong iso8601_timestamp_to_microseconds | ( | const char * | timestamp, |
size_t | len | ||
) |
Parse a ISO8601 timestamp and return the number of microseconds since the epoch.
Heeds +/- timezone info if present.
timestamp | an ASCII string containing an ISO8601 timestamp |
len | Length in bytes of the aforementioned string |
log_error_stack_error log_builtins_error_stack | ( | const char * | conf, |
bool | check_only, | ||
size_t * | pos | ||
) |
Set up custom error logging stack.
conf | The configuration string | |
check_only | If true, report on whether configuration is valid (i.e. whether all requested services are available), but do not apply the new configuration. if false, set the configuration (acquire the necessary services, update the hash by adding/deleting entries as necessary) | |
[out] | pos | If an error occurs and this pointer is non-null, the position in the configuration string where the error occurred will be written to the pointed-to size_t. |
LOG_ERROR_STACK_SUCCESS | success |
LOG_ERROR_STACK_DELIMITER_MISSING | expected delimiter not found |
LOG_ERROR_STACK_SERVICE_MISSING | one or more services not found |
LOG_ERROR_STACK_CACHE_ENTRY_OOM | couldn't create service cache entry |
LOG_ERROR_STACK_MULTITON_DENIED | tried to multi-open singleton |
LOG_ERROR_STACK_SERVICE_INSTANCE_OOM | couldn't create service instance entry |
LOG_ERROR_STACK_ENDS_IN_NON_SINK | last element should be a sink |
LOG_ERROR_STACK_SERVICE_UNAVAILABLE | service only available during start-up (may not be set by the user) |
LOG_ERROR_STACK_NO_PFS_SUPPORT | (check_only warning) no sink with performance_schema support selected |
LOG_ERROR_STACK_NO_LOG_PARSER | (check_only warning) no sink providing a log-parser selected |
LOG_ERROR_MULTIPLE_FILTERS | (check_only warning) more than one filter service selected |
LOG_ERROR_UNEXPECTED_DELIMITER_FOUND | service starts with a delimiter |
LOG_ERROR_MIXED_DELIMITERS | use ',' or ';', not both! |
int log_builtins_error_stack_flush | ( | ) |
Call flush() on all log_services.
flush() function must not try to log anything, as we hold an exclusive lock on the stack.
int log_builtins_exit | ( | ) |
De-initialize the structured logging subsystem.
0 | no errors |
-1 | not stopping, never started |
int log_builtins_init | ( | ) |
Initialize the structured logging subsystem.
Since we're initializing various locks here, we must call this late enough so this is clean, but early enough so it still happens while we're running single-threaded – this specifically also means we must call it before we start plug-ins / storage engines / external components!
0 | no errors |
-1 | couldn't initialize stack lock |
-2 | couldn't initialize built-in default filter |
-3 | couldn't set up service hash |
-4 | couldn't initialize syseventlog lock |
-5 | couldn't initialize buffered logging lock |
my_thread_id log_get_thread_id | ( | THD * | thd | ) |
A helper that we can stubify so we don't have to pull all of THD into the unit tests.
thd | a thd |
its | thread-ID |
void log_item_free | ( | log_item * | li | ) |
Release any of key and value on a log-item that were dynamically allocated.
li | log-item to release the payload of |
bool log_item_generic_type | ( | log_item_type | t | ) |
Predicate used to determine whether a type is generic (generic string, generic float, generic integer) rather than a well-known type.
t | log item type to examine |
true | if generic type |
false | if wellknown type |
void log_item_get_float | ( | log_item * | li, |
double * | f | ||
) |
Get a float value from a log-item of float or integer type.
li | log item to get the value from |
f | float to store the value in |
Get an integer value from a log-item of float or integer type.
li | log item to get the value from |
i | longlong to store the value in |
void log_item_get_string | ( | log_item * | li, |
char ** | str, | ||
size_t * | len | ||
) |
Get a string value from a log-item of C-string or Lex string type.
li | log item to get the value from |
str | char-pointer to store the pointer to the value in |
len | size_t pointer to store the length of the value in |
void log_item_init | ( | log_item * | li | ) |
Initializes a log entry for use.
This simply puts it in a defined state; if you wish to reset an existing item, see log_item_free().
li | the log-item to initialize |
bool log_item_numeric_class | ( | log_item_class | c | ) |
Predicate used to determine whether a class is a numeric class (integer or float).
c | log item class to examine |
true | if of a numeric class |
false | if not of a numeric class |
log_item_data * log_item_set | ( | log_item * | li, |
log_item_type | t | ||
) |
As log_item_set_with_key(), except that the key is automatically derived from the wellknown log_item_type t.
Create new log item with type "t". Will return a pointer to the item's log_item_data struct for convenience. This is mostly interesting for filters and other services that create items that are not part of a log_line; sources etc. that intend to create an item for a log_line (the more common case) should usually use the below line_item_set_with_key() which creates an item (like this function does), but also correctly inserts it into a log_line.
The allocation of this item will be LOG_ITEM_FREE_NONE; specifically, any pre-existing value will be clobbered. It is therefore WRONG a) to use this on a log_item that already has a key; it should only be used on freshly init'd log_items; b) to use this on a log_item that already has a value (specifically, an allocated one); the correct order is to init a log_item, then set up type and key, and finally to set the value. If said value is an allocated string, the log_item's alloc should be bitwise or'd with LOG_ITEM_FREE_VALUE.
li | the log_item to work on |
t | the item-type |
a | pointer to the log_item's log_data, for easy chaining: log_item_set_with_key(...)->data_integer= 1; |
bool log_item_set_cstring | ( | log_item_data * | lid, |
const char * | s | ||
) |
Set a string value on a log_item.
Fails gracefully if not log_item_data is supplied, so it can safely wrap log_line_item_set[_with_key]().
lid | log_item_data struct to set the value on |
s | pointer to NTBS |
true | lid was nullptr (possibly: OOM, could not set up log_item) |
false | all's well |
bool log_item_set_float | ( | log_item_data * | lid, |
double | f | ||
) |
Set a floating point value on a log_item.
Fails gracefully if not log_item_data is supplied, so it can safely wrap log_line_item_set[_with_key]().
lid | log_item_data struct to set the value on |
f | float to set |
true | lid was nullptr (possibly: OOM, could not set up log_item) |
false | all's well |
bool log_item_set_int | ( | log_item_data * | lid, |
longlong | i | ||
) |
Set an integer value on a log_item.
Fails gracefully if not log_item_data is supplied, so it can safely wrap log_line_item_set[_with_key]().
lid | log_item_data struct to set the value on |
i | integer to set |
true | lid was nullptr (possibly: OOM, could not set up log_item) |
false | all's well |
bool log_item_set_lexstring | ( | log_item_data * | lid, |
const char * | s, | ||
size_t | s_len | ||
) |
Set a string value on a log_item.
Fails gracefully if not log_item_data is supplied, so it can safely wrap log_line_item_set[_with_key]().
lid | log_item_data struct to set the value on |
s | pointer to string |
s_len | length of string |
true | lid was nullptr (possibly: OOM, could not set up log_item) |
false | all's well |
log_item_data * log_item_set_with_key | ( | log_item * | li, |
log_item_type | t, | ||
const char * | key, | ||
uint32 | alloc | ||
) |
Create new log item with key name "key", and allocation flags of "alloc" (see enum_log_item_free).
Will return a pointer to the item's log_item_data struct for convenience. This is mostly interesting for filters and other services that create items that are not part of a log_line; sources etc. that intend to create an item for a log_line (the more common case) should usually use the below line_item_set_with_key() which creates an item (like this function does), but also correctly inserts it into a log_line.
li | the log_item to work on |
t | the item-type |
key | the key to set on the item. ignored for non-generic types (may pass nullptr for those) see alloc |
alloc | LOG_ITEM_FREE_KEY if key was allocated by caller LOG_ITEM_FREE_NONE if key was not allocated Allocated keys will automatically free()d when the log_item is. The log_item's alloc flags will be set to the submitted value; specifically, any pre-existing value will be clobbered. It is therefore WRONG a) to use this on a log_item that already has a key; it should only be used on freshly init'd log_items; b) to use this on a log_item that already has a value (specifically, an allocated one); the correct order is to init a log_item, then set up type and key, and finally to set the value. If said value is an allocated string, the log_item's alloc should be bitwise or'd with LOG_ITEM_FREE_VALUE. |
a | pointer to the log_item's log_data, for easy chaining: log_item_set_with_key(...)->data_integer= 1; |
bool log_item_string_class | ( | log_item_class | c | ) |
Predicate used to determine whether a class is a string class (C-string or Lex-string).
c | log item class to examine |
true | if of a string class |
false | if not of a string class |
int log_item_wellknown_by_name | ( | const char * | key, |
size_t | len | ||
) |
See whether a string is a wellknown field name.
key | potential key starts here |
len | length of the string to examine |
LOG_ITEM_TYPE_RESERVED | reserved, but not "wellknown" key |
LOG_ITEM_TYPE_NOT_FOUND | key not found |
>0 | index in array of wellknowns |
int log_item_wellknown_by_type | ( | log_item_type | t | ) |
See whether a type is wellknown.
t | log item type to examine |
LOG_ITEM_TYPE_NOT_FOUND | key not found |
>0 | index in array of wellknowns |
log_item_class log_item_wellknown_get_class | ( | uint | idx | ) |
Accessor: from a record describing a wellknown key, get its class.
idx | index in array of wellknowns, see log_item_wellknown_by_...() |
the | log item class for the wellknown key |
const char * log_item_wellknown_get_name | ( | uint | idx | ) |
Accessor: from a record describing a wellknown key, get its name.
idx | index in array of wellknowns, see log_item_wellknown_by_...() |
name | (NTBS) |
log_item_type log_item_wellknown_get_type | ( | uint | idx | ) |
Accessor: from a record describing a wellknown key, get its type.
idx | index in array of wellknowns, see log_item_wellknown_by_...() |
the | log item type for the wellknown key |
const char * log_label_from_prio | ( | int | prio | ) |
Convenience function: Derive a log label ("error", "warning", "information") from a severity.
prio | the severity/prio in question |
ERROR | for prio of ERROR_LEVEL or higher |
Warning | for prio of WARNING_LEVEL |
Note | otherwise |
void log_line_exit | ( | log_line * | ll | ) |
Release a log_line allocated with log_line_init.
Release a log_line allocated with log_line_init.
ll | a log_line previously allocated with line_init() |
bool log_line_full | ( | log_line * | ll | ) |
Predicate indicating whether a log line is "willing" to accept any more key/value pairs.
ll | the log-line to examine |
false | if not full / if able to accept another log_item |
true | if full |
Get log-line's output buffer.
If the logger core provides this buffer, the log-service may use it to assemble its output therein and implicitly return it to the core. Participation is required for services that support populating performance_schema.error_log, and optional for all others.
ll | the log_line to examine |
nullptr | success, an output buffer is available |
otherwise | failure, no output buffer is available |
Find the (index of the) first key/value pair of the given type in the log line.
This variant accepts a reference item and looks for an item that is of the same type (for wellknown types), or one that is of a generic type, and with the same key name (for generic types). For example, a reference item containing a generic string with key "foo" will a generic string, integer, or float with the key "foo".
ll | log line |
ref | a reference item of the log item type to look for |
<0 | none found |
>=0 | index of the key/value pair in the log line |
int log_line_index_by_name | ( | log_line * | ll, |
const char * | key | ||
) |
Find the (index of the) last key/value pair of the given name in the log line.
ll | log line |
key | the key to look for |
-1 | none found |
-2 | invalid search-key given |
-3 | no log_line given |
>=0 | index of the key/value pair in the log line |
int log_line_index_by_type | ( | log_line * | ll, |
log_item_type | t | ||
) |
Find the (index of the) first key/value pair of the given type in the log line.
ll | log line |
t | the log item type to look for |
<0 | none found |
>=0 | index of the key/value pair in the log line |
log_line * log_line_init | ( | ) |
Initialize a log_line.
nullptr | could not set up buffer (too small?) |
other | address of the newly initialized log_line |
Find the last item matching the given key in the log line.
ll | log line |
key | the key to look for |
nullptr | item not found |
otherwise | pointer to the item (not a copy thereof!) |
int log_line_item_count | ( | log_line * | ll | ) |
How many items are currently set on the given log_line?
ll | the log-line to examine |
the | number of items set |
void log_line_item_free | ( | log_line * | ll, |
size_t | elem | ||
) |
Release log line item (key/value pair) with the index elem in log line ll.
This frees whichever of key and value were dynamically allocated. This leaves a "gap" in the bag that may immediately be overwritten with an updated element. If the intention is to remove the item without replacing it, use log_line_item_remove() instead!
ll | log_line |
elem | index of the key/value pair to release |
void log_line_item_free_all | ( | log_line * | ll | ) |
Release all log line items (key/value pairs) in log line ll.
This frees whichever keys and values were dynamically allocated.
ll | log_line |
Initializes an entry in a log line for use.
This simply puts it in a defined state; if you wish to reset an existing item, see log_item_free(). This resets the element beyond the last. The element count is not adjusted; this is for the caller to do once it sets up a valid element to suit its needs in the cleared slot. Finally, it is up to the caller to make sure that an element can be allocated.
ll | the log-line to initialize a log_item in |
the | address of the cleared log_item |
void log_line_item_remove | ( | log_line * | ll, |
int | elem | ||
) |
Release log line item (key/value pair) with the index elem in log line ll.
This frees whichever of key and value were dynamically allocated. This moves any trailing items to fill the "gap" and decreases the counter of elements in the log line. If the intention is to leave a "gap" in the bag that may immediately be overwritten with an updated element, use log_line_item_free() instead!
ll | log_line |
elem | index of the key/value pair to release |
log_item_data * log_line_item_set | ( | log_line * | ll, |
log_item_type | t | ||
) |
Create a new log item of well-known type "t" in log line "ll".
On success, the number of registered items on the log line is increased, the item's type is added to the log_line's "seen" property, and a pointer to the item's log_item_data struct is returned for convenience.
It is up to the caller to ensure the log_line can accept more items (e.g. by using log_line_full(ll)).
The allocation of this item will be LOG_ITEM_FREE_NONE; specifically, any pre-existing value will be clobbered. It is therefore WRONG a) to use this on a log_item that already has a key; it should only be used on freshly init'd log_items; b) to use this on a log_item that already has a value (specifically, an allocated one); the correct order is to init a log_item, then set up type and key, and finally to set the value. If said value is an allocated string, the log_item's alloc should be bitwise or'd with LOG_ITEM_FREE_VALUE.
ll | the log_line to work on |
t | the item-type |
a | pointer to the log_item's log_data, for easy chaining: log_line_item_set_with_key(...)->data_integer= 1; |
log_item_data * log_line_item_set_with_key | ( | log_line * | ll, |
log_item_type | t, | ||
const char * | key, | ||
uint32 | alloc | ||
) |
Create new log item in log line "ll", with key name "key", and allocation flags of "alloc" (see enum_log_item_free).
It is up to the caller to ensure the log_line can accept more items (e.g. by using log_line_full(ll)). On success, the number of registered items on the log line is increased, the item's type is added to the log_line's "seen" property, and a pointer to the item's log_item_data struct is returned for convenience.
ll | the log_line to work on |
t | the item-type |
key | the key to set on the item. ignored for non-generic types (may pass nullptr for those) see alloc |
alloc | LOG_ITEM_FREE_KEY if key was allocated by caller LOG_ITEM_FREE_NONE if key was not allocated Allocated keys will automatically free()d when the log_item is. The log_item's alloc flags will be set to the submitted value; specifically, any pre-existing value will be clobbered. It is therefore WRONG a) to use this on a log_item that already has a key; it should only be used on freshly init'd log_items; b) to use this on a log_item that already has a value (specifically, an allocated one); the correct order is to init a log_item, then set up type and key, and finally to set the value. If said value is an allocated string, the log_item's alloc should be bitwise or'd with LOG_ITEM_FREE_VALUE. |
a | pointer to the log_item's log_data, for easy chaining: log_line_item_set_with_key(...)->data_integer= 1; |
log_item_type_mask log_line_item_types_seen | ( | log_line * | ll, |
log_item_type_mask | m | ||
) |
Test whether a given type is presumed present on the log line.
ll | the log_line to examine |
m | the log_type to test for |
0 | not present |
!=0 | present |
void log_line_set_flag | ( | log_line * | ll, |
log_line_flags_mask | mask, | ||
log_line_flags_mask | value | ||
) |
Set/reset one or more log line flags.
Example to set the flag: log_line_set_flag(ll, LOG_LINE_EMIT_TELEMETRY, LOG_LINE_EMIT_TELEMETRY); to reset the flag: log_line_set_flag(ll, LOG_LINE_EMIT_TELEMETRY, 0);
ll | log line structure |
mask | mask that defines flags to be changed |
value | value to set to selected flags |
Example to set the flag: log_line_set_flag(ll, LOG_LINE_EMIT_TELEMETRY, LOG_LINE_EMIT_TELEMETRY); to reset the flag: log_line_set_flag(ll, LOG_LINE_EMIT_TELEMETRY, 0);
int log_line_submit | ( | log_line * | ll | ) |
Complete, filter, and write submitted log items.
This expects a log_line collection of log-related key/value pairs, e.g. from log_message().
Where missing, timestamp, priority, thread-ID (if any) and so forth are added.
Log item source services, log item filters, and log item sinks are then called.
ll | key/value pairs describing info to log |
int | number of fields in created log line |
int log_message | ( | int | log_type, |
... | |||
) |
Variadic convenience function for logging.
This fills in the array that is used by the filter and log-writer services. Where missing, timestamp, priority, and thread-ID (if any) are added. Log item source services, log item filters, and log item writers are called.
see log_vmessage() for more information.
log_type | what log should this go to? |
... | fields: LOG_ITEM_* tag, [[key], value] |
int | return value of log_vmessage() |
enum loglevel log_prio_from_label | ( | const char * | label | ) |
Derive the event's priority (SYSTEM_LEVEL, ERROR_LEVEL, ...) from a textual label.
If the label can not be identified, default to ERROR_LEVEL as it is better to keep something that needn't be kept than to discard something that shouldn't be.
label | The prio label as a \0 terminated C-string. |
the | priority (as an enum loglevel) |
bool log_slow_applicable | ( | THD * | thd | ) |
Check whether we need to write the current statement (or its rewritten version if it exists) to the slow query log.
As a side-effect, a digest of suppressed statements may be written.
thd | thread handle |
true | statement needs to be logged |
false | statement does not need to be logged |
void log_slow_do | ( | THD * | thd | ) |
Unconditionally writes the current statement (or its rewritten version if it exists) to the slow query log.
thd | thread handle |
void log_slow_statement | ( | THD * | thd | ) |
Check whether we need to write the current statement to the slow query log.
If so, do so. This is a wrapper for the two functions above; most callers should use this wrapper. Only use the above functions directly if you have expensive rewriting that you only need to do if the query actually needs to be logged (e.g. SP variables / NAME_CONST substitution when executing a PROCEDURE). A digest of suppressed statements may be logged instead of the current statement.
thd | thread handle |
int log_string_compare | ( | const char * | a, |
const char * | b, | ||
size_t | len, | ||
bool | case_insensitive | ||
) |
Modular logger: log line and key/value manipulation helpers.
Server-internal. External services should access these via the log_builtins service API (cf. preamble for this file). Compare two NUL-terminated byte strings
Note that when comparing without length limit, the long string is greater if they're equal up to the length of the shorter string, but the shorter string will be considered greater if its "value" up to that point is greater:
compare 'abc','abcd': -100 (longer wins if otherwise same) compare 'abca','abcd': -3 (higher value wins) compare 'abcaaaaa','abcd': -3 (higher value wins)
a | the first string |
b | the second string |
len | compare at most this many characters – 0 for no limit |
case_insensitive | ignore upper/lower case in comparison |
-1 | a < b |
0 | a == b |
1 | a > b |
int log_vmessage | ( | int | log_type, |
va_list | fili | ||
) |
Write a message to a log (for now just used for error log).
This is a variadic convenience interface to the logging components (which use the log_line structure internally), e.g.
log_message(LOG_TYPE_ERROR, LOG_ITEM_LOG_PRIO, INFORMATION_LEVEL, LOG_ITEM_LOG_MESSAGE, "file %s is %f %% yellow", filename, yellowfication);
For use by legacy sql_print_*(), legacy my_plugin_log_message(); also available via the log_builtins service as message().
Wherever possible, use the fluent C++ wrapper LogErr() (see log_builtins.h) instead.
See log_shared.h for LOG_TYPEs as well as for allowed LOG_ITEM_ types.
Write a message to a log (for now just used for error log).
This fills in the array that is used by the filter and log-writer services. Where missing, timestamp, priority, and thread-ID (if any) are added. Log item source services, log item filters, and log item writers are called.
For convenience, any number of fields may be added:
Newer items (further to the right/bottom) overwrite older ones (further to the left/top).
If a message is given, it must be the last tag in the argument list. The message may be given verbatim as a C format string, followed by its arguments:
LOG_ITEM_LOG_MESSAGE, "format string %s %d abc", "arg1", 12345
To avoid substitutions, use
LOG_ITEM_LOG_VERBATIM, "message from other subsys containing %user input"
Alternatively, an error code may be specified – the corresponding error message will be looked up and inserted –, followed by any arguments required by the error message:
LOG_ITEM_LOG_LOOKUP, ER_CANT_SET_DATA_DIR, filename, errno, strerror(errno)
If no message is to be included (this should never be the case for the error log), LOG_ITEM_END may be used instead to terminate the list.
log_type | what log should this go to? |
fili | field list: LOG_ITEM_* tag, [[key], value] |
int | return value of log_line_submit() |
void log_write_errstream | ( | const char * | buffer, |
size_t | length | ||
) |
Interim helper: write to the default error stream.
buffer | buffer containing serialized error message |
length | number of bytes in buffer |
int make_iso8601_timestamp | ( | char * | buf, |
ulonglong | utime, | ||
enum enum_iso8601_tzmode | mode | ||
) |
Make and return an ISO 8601 / RFC 3339 compliant timestamp.
Accepts the log_timestamps global variable in its third parameter.
buf | A buffer of at least iso8601_size bytes to store the timestamp in. The timestamp will be \0 terminated. |
utime | Microseconds since the epoch |
mode | if 0, use UTC; if 1, use local time |
length | of timestamp (excluding \0) |
char * make_query_log_name | ( | char * | buff, |
enum_log_table_type | log_type | ||
) |
Create the name of the query log specified.
This method forms a new path + file name for the log specified.
[in] | buff | Location for building new string. |
[in] | log_type | QUERY_LOG_SLOW or QUERY_LOG_GENERAL |
bool open_error_log | ( | const char * | filename, |
bool | get_lock | ||
) |
Open the error log and redirect stderr and optionally stdout to the error log file.
The streams are reopened only for appending (writing at end of file).
filename | Name of error log file |
get_lock | Should we acquire LOCK_error_log? |
Make sure, file is writable if it exists. If file does not exists then make sure directory path exists and it is writable.
bool reopen_error_log | ( | ) |
Flush any pending data to disk and reopen the error log.
|
static |
|
static |
|
static |
|
extern |
|
extern |