MySQL 9.6.0
Source Code Documentation
log_builtins_imp.h
Go to the documentation of this file.
1/* Copyright (c) 2017, 2025, Oracle and/or its affiliates.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License, version 2.0,
5as published by the Free Software Foundation.
6
7This program is designed to work with certain software (including
8but not limited to OpenSSL) that is licensed under separate terms,
9as designated in a particular file or component or in included license
10documentation. The authors of MySQL hereby grant you an additional
11permission to link the program and your derivative works with the
12separately licensed software that they have either included with
13the program or referenced in the documentation.
14
15This program is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License, version 2.0, for more details.
19
20You should have received a copy of the GNU General Public License
21along with this program; if not, write to the Free Software
22Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef LOG_BUILTINS_IMP_H
25#define LOG_BUILTINS_IMP_H
26
27#include <stdarg.h>
28
30#include "mysql/attribute.h"
31
32#ifdef IN_DOXYGEN
34#else
36#endif
37
38/**
39 This defines built-in functions for use by logging services.
40 These helpers are organized into a number of APIs grouping
41 related functionality.
42
43 This file defines internals; to use the logger from a service,
44 include log_builtins.h instead.
45
46 For documentation of the individual functions, see log_builtins.cc
47*/
48
50
51/**
52 Name of internal filtering engine (so we may recognize it when the
53 user refers to it by name in log_error_services).
54*/
55#define LOG_BUILTINS_FILTER "log_filter_internal"
56
57/**
58 Name of internal log writer (so we may recognize it when the user
59 refers to it by name in log_error_services).
60*/
61#define LOG_BUILTINS_SINK "log_sink_internal"
62
63/**
64 Default services pipeline for log_builtins_error_stack().
65*/
66#define LOG_ERROR_SERVICES_DEFAULT LOG_BUILTINS_FILTER "; " LOG_BUILTINS_SINK
67
68// see include/mysql/components/services/log_builtins.h
69
70/**
71 Primitives for services to interact with the structured logger:
72 functions pertaining to log_line and log_item data
73*/
75 public: /* Service Implementations */
78 (const char *key, size_t length));
80 static DEFINE_METHOD(const char *, wellknown_get_name, (uint i));
81
82 static DEFINE_METHOD(int, item_inconsistent, (log_item * li));
86
87 static DEFINE_METHOD(bool, item_set_int, (log_item_data * lid, longlong i));
88 static DEFINE_METHOD(bool, item_set_float, (log_item_data * lid, double f));
90 (log_item_data * lid, const char *s, size_t s_len));
92 (log_item_data * lid, const char *s));
93 static DEFINE_METHOD(void, line_set_flag,
96
98 (log_item * li, log_item_type t, const char *key,
99 uint32 alloc));
101 (log_item * li, log_item_type t));
102
104 (log_line * ll, log_item_type t, const char *key,
105 uint32 alloc));
107 (log_line * ll, log_item_type t));
108
109 static DEFINE_METHOD(log_line *, line_init, ());
110 static DEFINE_METHOD(void, line_exit, (log_line * ll));
111 static DEFINE_METHOD(int, line_item_count, (log_line * ll));
112
114 (log_line * ll, log_item_type_mask m));
115
117
119 (log_line * ll));
124 (log_item_iter * it));
125
126 static DEFINE_METHOD(int, line_submit, (log_line * ll));
127
128 static DEFINE_METHOD(int, message, (int log_type, ...));
129
130 static DEFINE_METHOD(int, sanitize, (log_item * li));
131
132 static DEFINE_METHOD(const char *, errmsg_by_errcode, (int mysql_errcode));
133
134 static DEFINE_METHOD(longlong, errcode_by_errsymbol, (const char *sym));
135
136 static DEFINE_METHOD(const char *, label_from_prio, (int prio));
137
139 (const char *timestamp, size_t len));
140
142 (const char *file, void **my_errstream));
143
145 (void *my_errstream, const char *buffer, size_t length));
146
147 static DEFINE_METHOD(int, dedicated_errstream, (void *my_errstream));
148
150 (void **my_errstream));
151
153 (const char *file, void **my_errstream));
154};
155
156/**
157 String primitives for logging services.
158*/
160 public: /* Service Implementations */
161 static DEFINE_METHOD(void *, malloc, (size_t len));
162 static DEFINE_METHOD(char *, strndup, (const char *fm, size_t len));
163 static DEFINE_METHOD(void, free, (void *ptr));
164 static DEFINE_METHOD(size_t, length, (const char *s));
165 static DEFINE_METHOD(char *, find_first, (const char *s, int c));
166 static DEFINE_METHOD(char *, find_last, (const char *s, int c));
167
168 static DEFINE_METHOD(int, compare,
169 (const char *a, const char *b, size_t len,
170 bool case_insensitive));
171
172 static DEFINE_METHOD(size_t, substitutev,
173 (char *to, size_t n, const char *fmt, va_list ap))
174 MY_ATTRIBUTE((format(printf, 3, 0)));
175
176 static DEFINE_METHOD(size_t, substitute,
177 (char *to, size_t n, const char *fmt, ...))
178 MY_ATTRIBUTE((format(printf, 3, 4)));
179};
180
181/**
182 Temporary primitives for logging services.
183*/
185 public: /* Service Implementations */
186 static DEFINE_METHOD(size_t, notify_client,
187 (void *thd, uint severity, uint code, char *to, size_t n,
188 const char *format, ...))
189 MY_ATTRIBUTE((format(printf, 6, 7)));
190};
191
192/**
193 Syslog/Eventlog functions for logging services.
194*/
196 public: /* Service Implementations */
198 (const char *name, int option, int facility));
200 (enum loglevel level, const char *msg));
201 static DEFINE_METHOD(log_service_error, close, (void));
202};
203
204#endif /* LOG_BUILTINS_IMP_H */
Primitives for services to interact with the structured logger: functions pertaining to log_line and ...
Definition: log_builtins_imp.h:74
static log_item * line_item_iter_first(log_item_iter *it) noexcept
Use the log_line iterator to get the first item from the set.
Definition: log_builtins.cc:2728
static log_item_iter * line_item_iter_acquire(log_line *ll) noexcept
Get an iterator for the items in a log_line.
Definition: log_builtins.cc:2695
static int item_inconsistent(log_item *li) noexcept
Sanity check an item.
Definition: log_builtins.cc:2364
static longlong errcode_by_errsymbol(const char *sym) noexcept
Return MySQL error code for a given error symbol.
Definition: log_builtins.cc:2944
static bool item_string_class(log_item_class c) noexcept
Predicate used to determine whether a class is a string class (C-string or Lex-string).
Definition: log_builtins.cc:2391
static log_item_data * item_set(log_item *li, log_item_type t) noexcept
As log_item_set_with_key(), except that the key is automatically derived from the wellknown log_item_...
Definition: log_builtins.cc:2551
static void line_set_flag(log_line *ll, log_line_flags_mask mask, log_line_flags_mask value) noexcept
Set/reset one or more log line flags.
Definition: log_builtins.cc:2475
static int line_submit(log_line *ll) noexcept
Complete, filter, and write submitted log items.
Definition: log_builtins.cc:2798
static log_item * line_item_iter_next(log_item_iter *it) noexcept
Use the log_line iterator to get the next item from the set.
Definition: log_builtins.cc:2747
static int dedicated_errstream(void *my_errstream) noexcept
Are we writing to a dedicated errstream, or are we sharing it?
Definition: log_builtins.cc:3190
static log_service_error open_errstream(const char *file, void **my_errstream) noexcept
Open an error log file.
Definition: log_builtins.cc:3072
static bool item_set_lexstring(log_item_data *lid, const char *s, size_t s_len) noexcept
Definition: log_builtins.cc:2441
static log_item * line_get_output_buffer(log_line *ll) noexcept
Get log-line's output buffer.
Definition: log_builtins.cc:2682
static int wellknown_by_name(const char *key, size_t length) noexcept
See whether a string is a wellknown field name.
Definition: log_builtins.cc:2318
static log_service_error write_errstream(void *my_errstream, const char *buffer, size_t length) noexcept
Write to an error log file previously opened with open_errstream().
Definition: log_builtins.cc:3165
static const char * wellknown_get_name(uint i) noexcept
Accessor: from a record describing a wellknown key, get its name.
Definition: log_builtins.cc:2340
static int sanitize(log_item *li) noexcept
Definition: log_builtins.cc:2857
static bool item_generic_type(log_item_type t) noexcept
Predicate used to determine whether a type is generic (generic string, generic float,...
Definition: log_builtins.cc:2378
static bool item_numeric_class(log_item_class c) noexcept
Predicate used to determine whether a class is a numeric class (integer or float).
Definition: log_builtins.cc:2404
static log_service_error close_errstream(void **my_errstream) noexcept
Close an error log file previously opened with open_errstream() (wrapper for the component system).
Definition: log_builtins.cc:3253
static log_item_data * item_set_with_key(log_item *li, log_item_type t, const char *key, uint32 alloc) noexcept
Create new log item with key name "key", and allocation flags of "alloc" (see enum_log_item_free).
Definition: log_builtins.cc:2515
static int message(int log_type,...) noexcept
Submit a log-message for log "log_type".
Definition: log_builtins.cc:2837
static const char * label_from_prio(int prio) noexcept
Convenience function: Derive a log label ("error", "warning", "information") from a severity.
Definition: log_builtins.cc:2959
static bool item_set_cstring(log_item_data *lid, const char *s) noexcept
Set a string value on a log_item.
Definition: log_builtins.cc:2457
static log_line * line_init() noexcept
Dynamically allocate and initialize a log_line.
Definition: log_builtins.cc:2631
static void line_item_iter_release(log_item_iter *it) noexcept
Release an iterator for the items in a log_line.
Definition: log_builtins.cc:2713
static bool item_set_int(log_item_data *lid, longlong i) noexcept
Set an integer value on a log_item.
Definition: log_builtins.cc:2420
static void line_exit(log_line *ll) noexcept
Release a log_line allocated with line_init()
Definition: log_builtins.cc:2640
static ulonglong parse_iso8601_timestamp(const char *timestamp, size_t len) noexcept
Parse a ISO8601 timestamp and return the number of microseconds since the epoch.
Definition: log_builtins.cc:2975
static bool item_set_float(log_item_data *lid, double f) noexcept
Set a floating point value on a log_item.
Definition: log_builtins.cc:2436
static log_item_data * line_item_set_with_key(log_line *ll, log_item_type t, const char *key, uint32 alloc) noexcept
Create new log item in log line "ll", with key name "key", and allocation flags of "alloc" (see enum_...
Definition: log_builtins.cc:2590
static const char * errmsg_by_errcode(int mysql_errcode) noexcept
Return MySQL error message for a given error code.
Definition: log_builtins.cc:2931
static log_item_type_mask line_item_types_seen(log_line *ll, log_item_type_mask m) noexcept
Test whether a given type is presumed present on the log line.
Definition: log_builtins.cc:2665
static int line_item_count(log_line *ll) noexcept
How many items are currently set on the given log_line?
Definition: log_builtins.cc:2651
static log_service_error reopen_errstream(const char *file, void **my_errstream) noexcept
Re-open an error log file (primarily to facilitate flush/log-rotation)
Definition: log_builtins.cc:3287
static log_item_data * line_item_set(log_line *ll, log_item_type t) noexcept
Create a new log item of well-known type "t" in log line "ll".
Definition: log_builtins.cc:2621
static int wellknown_by_type(log_item_type t) noexcept
See whether a type is wellknown.
Definition: log_builtins.cc:2303
static log_item * line_item_iter_current(log_item_iter *it) noexcept
Use the log_line iterator to get the current item from the set.
Definition: log_builtins.cc:2767
static log_item_type wellknown_get_type(uint i) noexcept
Accessor: from a record describing a wellknown key, get its type.
Definition: log_builtins.cc:2329
String primitives for logging services.
Definition: log_builtins_imp.h:159
static size_t length(const char *s) noexcept
Wrapper for strlen(): length of a nul-terminated byte string.
Definition: log_builtins.cc:3389
static size_t substitutev(char *to, size_t n, const char *fmt, va_list ap) noexcept
Wrapper for vsnprintf(): Replace all % in format string with variables from list.
Definition: log_builtins.cc:3449
static char * find_last(const char *s, int c) noexcept
Wrapper for strrchr(): find character in string, from the right.
Definition: log_builtins.cc:3405
static char * strndup(const char *fm, size_t len) noexcept
Wrapper for my_strndup(): Alloc (len+1) bytes, then copy len bytes from fm, and \0 terminate.
Definition: log_builtins.cc:3375
static int compare(const char *a, const char *b, size_t len, bool case_insensitive) noexcept
Compare two NUL-terminated byte strings.
Definition: log_builtins.cc:3433
static size_t substitute(char *to, size_t n, const char *fmt,...) noexcept
Wrapper for vsnprintf(): Replace all % in format string with variables from list.
Definition: log_builtins.cc:3458
static void * malloc(size_t len) noexcept
Wrapper for my_malloc(): Alloc (len+1) bytes.
Definition: log_builtins.cc:3362
static void free(void *ptr) noexcept
Wrapper for my_free(): free allocated memory.
Definition: log_builtins.cc:3382
static char * find_first(const char *s, int c) noexcept
Wrapper for strchr(): find character in string, from the left.
Definition: log_builtins.cc:3397
Syslog/Eventlog functions for logging services.
Definition: log_builtins_imp.h:195
static log_service_error open(const char *name, int option, int facility) noexcept
Wrapper for mysys' my_openlog.
Definition: log_builtins.cc:3515
static log_service_error close(void) noexcept
Wrapper for mysys' my_closelog.
Definition: log_builtins.cc:3566
static log_service_error write(enum loglevel level, const char *msg) noexcept
Wrapper for mysys' my_syslog.
Definition: log_builtins.cc:3549
Temporary primitives for logging services.
Definition: log_builtins_imp.h:184
static size_t notify_client(void *thd, uint severity, uint code, char *to, size_t n, const char *format,...) noexcept
Definition: log_builtins.cc:3475
enum enum_log_service_error log_service_error
Error codes.
uint64 log_line_flags_mask
a bit mask with flags describing a log line
Definition: log_shared.h:231
enum enum_log_item_class log_item_class
enum enum_log_item_type log_item_type
item_type – what to log
uint64 log_item_type_mask
a bit mask of log_types.
Definition: log_shared.h:222
static int log_type
Definition: mi_log.cc:47
static mi_bit_type mask[]
Definition: mi_packrec.cc:141
unsigned long long int ulonglong
Definition: my_inttypes.h:56
long long int longlong
Definition: my_inttypes.h:55
uint32_t uint32
Definition: my_inttypes.h:67
loglevel
Definition: my_loglevel.h:41
std::string format(const routing_guidelines::Session_info &session_info, bool extended_session_info)
Definition: dest_metadata_cache.cc:170
constexpr value_type timestamp
Definition: classic_protocol_constants.h:278
Definition: os0file.h:89
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:76
ValueType value(const std::optional< ValueType > &v)
Definition: gtid.h:83
mutable_buffer buffer(void *p, size_t n) noexcept
Definition: buffer.h:418
required string key
Definition: replication_asynchronous_connection_failover.proto:60
#define DEFINE_METHOD(retval, name, args)
A macro to ensure method implementation has required properties, that is it does not throw exceptions...
Definition: service_implementation.h:79
case opt name
Definition: sslopt-case.h:29
Iterator over the key/value pairs of a log_line.
Definition: keyring_log_builtins_definition.cc:64
Definition: log_shared.h:202
log_line ("log event")
Definition: keyring_log_builtins_definition.cc:72
Definition: log_shared.h:191
int n
Definition: xcom_base.cc:509