-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathlog.h
1623 lines (1288 loc) · 55.3 KB
/
log.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Copyright (c) 2005, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/**
@file sql/log.h
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.
*/
#ifndef LOG_H
#define LOG_H
#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" // Security_context
class THD;
struct CHARSET_INFO;
class Table_ref;
////////////////////////////////////////////////////////////
//
// Slow/General Log
//
////////////////////////////////////////////////////////////
/*
System variables controlling logging:
log_output (--log-output)
Values: NONE, FILE, TABLE
Select output destination. Does not enable logging.
Can set more than one (e.g. TABLE | FILE).
general_log (--general_log)
slow_query_log (--slow_query_log)
Values: 0, 1
Enable/disable general/slow query log.
general_log_file (--general-log-file)
slow_query_log_file (--slow-query-log-file)
Values: filename
Set name of general/slow query log file.
sql_log_off
Values: ON, OFF
Enable/disable general query log (OPTION_LOG_OFF).
log_queries_not_using_indexes (--log-queries-not-using-indexes)
Values: ON, OFF
Control slow query logging of queries that do not use indexes.
--log-raw
Values: ON, OFF
Control query rewrite of passwords to the general log.
--log-short-format
Values: ON, OFF
Write short format to the slow query log (and the binary log).
--log-slow-admin-statements
Values: ON, OFF
Log statements such as OPTIMIZE TABLE, ALTER TABLE to the slow query log.
--log-slow-replica-statements
Values: ON, OFF
log_throttle_queries_not_using_indexes
Values: INT
Number of queries not using indexes logged to the slow query log per min.
*/
/**
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.
*/
int log_vmessage(int log_type, va_list lili);
int log_message(int log_type, ...);
/**
A helper that we can stubify so we don't have to pull all of THD
into the unit tests.
@param thd a thd
@retval its thread-ID
*/
my_thread_id log_get_thread_id(THD *thd);
/** Type of the log table */
enum enum_log_table_type {
QUERY_LOG_NONE = 0,
QUERY_LOG_SLOW = 1,
QUERY_LOG_GENERAL = 2
};
/**
Abstract superclass for handling logging to slow/general logs.
Currently has two subclasses, for table and file based logging.
*/
class Log_event_handler {
public:
Log_event_handler() = default;
virtual ~Log_event_handler() = default;
/**
Log a query to the slow log.
@param thd THD of the query
@param current_utime Current timestamp in microseconds
@param query_start_arg Command start timestamp in microseconds
@param user_host The pointer to the string with user\@host info
@param user_host_len Length of the user_host string
@param query_utime Number of microseconds query execution took
@param lock_utime Number of microseconds the query was locked
@param is_command The flag which determines whether the sql_text
is a query or an administrator command
@param sql_text The query or administrator in textual form
@param sql_text_len The length of sql_text string
@return true if error, false otherwise.
*/
virtual bool log_slow(THD *thd, ulonglong current_utime,
ulonglong query_start_arg, const char *user_host,
size_t user_host_len, ulonglong query_utime,
ulonglong lock_utime, bool is_command,
const char *sql_text, size_t sql_text_len) = 0;
/**
Log command to the general log.
@param thd THD of the query
@param event_utime Command start timestamp in micro seconds
@param user_host The pointer to the string with user\@host info
@param user_host_len Length of the user_host string. this is computed
once and passed to all general log event handlers
@param thread_id Id of the thread, issued a query
@param command_type The type of the command being logged
@param command_type_len The length of the string above
@param sql_text The very text of the query being executed
@param sql_text_len The length of sql_text string
@param client_cs Character set to use for strings
@return This function attempts to never call my_error(). This is
necessary, because general logging happens already after a statement
status has been sent to the client, so the client can not see the
error anyway. Besides, the error is not related to the statement
being executed and is internal, and thus should be handled
internally (@todo: how?).
If a write to the table has failed, the function attempts to
write to a short error message to the file. The failure is also
indicated in the return value.
@retval false OK
@retval true error occurred
*/
virtual bool log_general(THD *thd, ulonglong event_utime,
const char *user_host, size_t user_host_len,
my_thread_id thread_id, const char *command_type,
size_t command_type_len, const char *sql_text,
size_t sql_text_len,
const CHARSET_INFO *client_cs) = 0;
};
/** Class responsible for table based logging. */
class Log_to_csv_event_handler : public Log_event_handler {
public:
/** @see Log_event_handler::log_slow(). */
bool log_slow(THD *thd, ulonglong current_utime, ulonglong query_start_arg,
const char *user_host, size_t user_host_len,
ulonglong query_utime, ulonglong lock_utime, bool is_command,
const char *sql_text, size_t sql_text_len) override;
/** @see Log_event_handler::log_general(). */
bool log_general(THD *thd, ulonglong event_utime, const char *user_host,
size_t user_host_len, my_thread_id thread_id,
const char *command_type, size_t command_type_len,
const char *sql_text, size_t sql_text_len,
const CHARSET_INFO *client_cs) override;
private:
/**
Check if log table for given log type exists and can be opened.
@param thd Thread handle
@param log_type QUERY_LOG_SLOW or QUERY_LOG_GENERAL
@return true if table could not be opened, false otherwise.
*/
bool activate_log(THD *thd, enum_log_table_type log_type);
friend class Query_logger;
};
/* Log event handler flags */
static const uint LOG_NONE = 1;
static const uint LOG_FILE = 2;
static const uint LOG_TABLE = 4;
class Log_to_file_event_handler;
/** Class which manages slow and general log event handlers. */
class Query_logger {
/**
Currently we have only 2 kinds of logging functions: old-fashioned
file logs and csv logging routines.
*/
static const uint MAX_LOG_HANDLERS_NUM = 2;
/**
RW-lock protecting Query_logger.
R-lock taken when writing to slow/general query log.
W-lock taken when activating/deactivating logs.
*/
mysql_rwlock_t LOCK_logger;
/** Available log handlers. */
Log_to_csv_event_handler table_log_handler;
Log_to_file_event_handler *file_log_handler;
/** NULL-terminated arrays of log handlers. */
Log_event_handler *slow_log_handler_list[MAX_LOG_HANDLERS_NUM + 1];
Log_event_handler *general_log_handler_list[MAX_LOG_HANDLERS_NUM + 1];
private:
/**
Setup log event handlers for the given log_type.
@param log_type QUERY_LOG_SLOW or QUERY_LOG_GENERAL
@param log_printer Bitmap of LOG_NONE, LOG_FILE, LOG_TABLE
*/
void init_query_log(enum_log_table_type log_type, ulonglong log_printer);
public:
Query_logger() : file_log_handler(nullptr) {}
/**
Check if table logging is turned on for the given log_type.
@param log_type QUERY_LOG_SLOW or QUERY_LOG_GENERAL
@return true if table logging is on, false otherwise.
*/
bool is_log_table_enabled(enum_log_table_type log_type) const;
/**
Check if file logging is turned on for the given log type.
@param log_type QUERY_LOG_SLOW or QUERY_LOG_GENERAL
@return true if the file logging is on, false otherwise.
*/
bool is_log_file_enabled(enum_log_table_type log_type) const;
/**
Perform basic log initialization: create file-based log handler.
We want to initialize all log mutexes as soon as possible,
but we cannot do it in constructor, as safe_mutex relies on
initialization, performed by MY_INIT(). This why this is done in
this function.
*/
void init();
/** Free memory. Nothing could be logged after this function is called. */
void cleanup();
/**
Log slow query with all enabled log event handlers.
@param thd THD of the statement being logged.
@param query The query string being logged.
@param query_length The length of the query string.
@param aggregate True if writing log throttle record
@param lock_usec Lock time, in microseconds.
Only used when aggregate is true.
@param exec_usec Execution time, in microseconds.
Only used when aggregate is true.
@return true if error, false otherwise.
*/
bool slow_log_write(THD *thd, const char *query, size_t query_length,
bool aggregate, ulonglong lock_usec, ulonglong exec_usec);
/**
Write printf style message to general query log.
@param thd THD of the statement being logged.
@param command COM of statement being logged.
@param format Printf style format of message.
@param ... Printf parameters to write.
@return true if error, false otherwise.
*/
bool general_log_print(THD *thd, enum_server_command command,
const char *format, ...)
MY_ATTRIBUTE((format(printf, 4, 5)));
/**
Write query to general query log.
@param thd THD of the statement being logged.
@param command COM of statement being logged.
@param query The query string being logged.
@param query_length The length of the query string.
@return true if error, false otherwise.
*/
bool general_log_write(THD *thd, enum_server_command command,
const char *query, size_t query_length);
/**
Enable log event handlers for slow/general log.
@param log_printer Bitmask of log event handlers.
@note Acceptable values are LOG_NONE, LOG_FILE, LOG_TABLE
*/
void set_handlers(ulonglong log_printer);
/**
Activate log handlers for the given log type.
@param thd Thread handle
@param log_type QUERY_LOG_SLOW or QUERY_LOG_GENERAL
@return true if error, false otherwise.
*/
bool activate_log_handler(THD *thd, enum_log_table_type log_type);
/**
Close file log for the given log type.
@param log_type QUERY_LOG_SLOW or QUERY_LOG_GENERAL
*/
void deactivate_log_handler(enum_log_table_type log_type);
/**
Close file log for the given log type and the reopen it.
@param log_type QUERY_LOG_SLOW or QUERY_LOG_GENERAL
*/
bool reopen_log_file(enum_log_table_type log_type);
/**
Read log file name from global variable opt_*_logname.
If called from a sys_var update function, the caller
must hold a lock protecting the sys_var
(LOCK_global_system_variables, a polylock for the
variable, etc.).
@param log_type QUERY_LOG_SLOW or QUERY_LOG_GENERAL
*/
bool set_log_file(enum_log_table_type log_type);
/**
Check if given Table_ref has a query log table name and
optionally check if the query log is currently enabled.
@param table_list Table_ref representing the table to check
@param check_if_opened Always return QUERY_LOG_NONE unless the
query log table is enabled.
@retval QUERY_LOG_NONE, QUERY_LOG_SLOW or QUERY_LOG_GENERAL
*/
enum_log_table_type check_if_log_table(Table_ref *table_list,
bool check_if_opened) const;
};
extern Query_logger query_logger;
/**
Create the name of the query log specified.
This method forms a new path + file name for the log specified.
@param[in] buff Location for building new string.
@param[in] log_type QUERY_LOG_SLOW or QUERY_LOG_GENERAL
@returns Pointer to new string containing the name.
*/
char *make_query_log_name(char *buff, enum_log_table_type log_type);
/**
Check given log name against certain blacklisted names/extensions.
@param name Log name to check
@param len Length of log name
@returns true if name is valid, false otherwise.
*/
bool is_valid_log_name(const char *name, size_t len);
/**
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.
@param thd thread handle
@retval
true statement needs to be logged
@retval
false statement does not need to be logged
*/
bool log_slow_applicable(THD *thd);
/**
Unconditionally writes the current statement (or its rewritten version if it
exists) to the slow query log.
@param thd thread handle
*/
void log_slow_do(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.
@param thd thread handle
*/
void log_slow_statement(THD *thd);
/**
@class Log_throttle
@brief Base class for rate-limiting a log (slow query log etc.)
*/
class Log_throttle {
/**
When will/did current window end?
*/
ulonglong window_end;
/**
Log no more than rate lines of a given type per window_size
(e.g. per minute, usually LOG_THROTTLE_WINDOW_SIZE).
*/
const ulong window_size;
/**
There have been this many lines of this type in this window,
including those that we suppressed. (We don't simply stop
counting once we reach the threshold as we'll write a summary
of the suppressed lines later.)
*/
ulong count;
protected:
/**
Template for the summary line. Should contain %lu as the only
conversion specification.
*/
const char *summary_template;
/**
Start a new window.
*/
void new_window(ulonglong now);
/**
Increase count of logs we're handling.
@param rate Limit on records to be logged during the throttling window.
@retval true - log rate limit is exceeded, so record should be suppressed.
@retval false - log rate limit is not exceeded, record should be logged.
*/
bool inc_log_count(ulong rate) { return (++count > rate); }
/**
Check whether we're still in the current window. (If not, the caller
will want to print a summary (if the logging of any lines was suppressed),
and start a new window.)
*/
bool in_window(ulonglong now) const { return (now < window_end); }
/**
Prepare a summary of suppressed lines for logging.
This function returns the number of queries that were qualified for
inclusion in the log, but were not printed because of the rate-limiting.
The summary will contain this count as well as the respective totals for
lock and execution time.
This function assumes that the caller already holds the necessary locks.
@param rate Limit on records logged during the throttling window.
*/
ulong prepare_summary(ulong rate);
/**
@param window_usecs ... in this many micro-seconds
@param msg use this template containing %lu as only non-literal
*/
Log_throttle(ulong window_usecs, const char *msg)
: window_end(0),
window_size(window_usecs),
count(0),
summary_template(msg) {}
public:
/**
We're rate-limiting messages per minute; 60,000,000 microsecs = 60s
Debugging is less tedious with a window in the region of 5000000
*/
static const ulong LOG_THROTTLE_WINDOW_SIZE = 60000000;
};
typedef bool (*log_summary_t)(THD *thd, const char *query, size_t query_length,
bool aggregate, ulonglong lock_usec,
ulonglong exec_usec);
/**
@class Slow_log_throttle
@brief Used for rate-limiting the slow query log.
*/
class Slow_log_throttle : public Log_throttle {
private:
/**
We're using our own (empty) security context during summary generation.
That way, the aggregate value of the suppressed queries isn't printed
with a specific user's name (i.e. the user who sent a query when or
after the time-window closes), as that would be misleading.
*/
Security_context aggregate_sctx;
/**
Total of the execution times of queries in this time-window for which
we suppressed logging. For use in summary printing.
*/
ulonglong total_exec_time;
/**
Total of the lock times of queries in this time-window for which
we suppressed logging. For use in summary printing.
*/
ulonglong total_lock_time;
/**
A reference to the threshold ("no more than n log lines per ...").
References a (system-?) variable in the server.
*/
ulong *rate;
/**
The routine we call to actually log a line (our summary).
*/
log_summary_t log_summary;
/**
Slow_log_throttle is shared between THDs.
*/
mysql_mutex_t *LOCK_log_throttle;
/**
Start a new window.
*/
void new_window(ulonglong now);
/**
Actually print the prepared summary to log.
*/
void print_summary(THD *thd, ulong suppressed, ulonglong print_lock_time,
ulonglong print_exec_time);
public:
/**
@param threshold suppress after this many queries ...
@param lock mutex to use for consistency of calculations
@param window_usecs ... in this many micro-seconds
@param logger call this function to log a single line (our summary)
@param msg use this template containing %lu as only non-literal
*/
Slow_log_throttle(ulong *threshold, mysql_mutex_t *lock, ulong window_usecs,
log_summary_t logger, const char *msg);
/**
Prepare and print a summary of suppressed lines to log.
(For now, slow query log.)
The summary states the number of queries that were qualified for
inclusion in the log, but were not printed because of the rate-limiting,
and their respective totals for lock and execution time.
This wrapper for prepare_summary() and print_summary() handles the
locking/unlocking.
@param thd The THD that tries to log the statement.
@retval false Logging was not suppressed, no summary needed.
@retval true Logging was suppressed; a summary was printed.
*/
bool flush(THD *thd);
/**
Top-level function.
@param thd The THD that tries to log the statement.
@param eligible Is the statement of the type we might suppress?
@retval true Logging should be suppressed.
@retval false Logging should not be suppressed.
*/
bool log(THD *thd, bool eligible);
};
/**
@class Slow_log_throttle
@brief Used for rate-limiting a error logs.
*/
class Error_log_throttle : public Log_throttle {
private:
loglevel ll;
uint err_code;
const char *subsys;
/**
Actually print the prepared summary to log.
*/
void print_summary(ulong suppressed) {
log_message(LOG_TYPE_ERROR, LOG_ITEM_LOG_PRIO, (longlong)ll,
LOG_ITEM_SQL_ERRCODE, (longlong)err_code, LOG_ITEM_SRV_SUBSYS,
subsys, LOG_ITEM_LOG_MESSAGE, summary_template,
(unsigned long)suppressed);
}
public:
/**
@param window_usecs ... in this many micro-seconds (see Log_throttle)
@param lvl severity of the incident (error, warning, info)
@param errcode MySQL error code (e.g. ER_STARTUP)
@param subsystem subsystem tag, or nullptr for none
@param msg use this message template containing %lu as only
non-literal (for "number of suppressed events",
see Log_throttle)
*/
Error_log_throttle(ulong window_usecs, loglevel lvl, uint errcode,
const char *subsystem, const char *msg)
: Log_throttle(window_usecs, msg),
ll(lvl),
err_code(errcode),
subsys(subsystem) {}
/**
Prepare and print a summary of suppressed lines to log.
(For now, slow query log.)
The summary states the number of queries that were qualified for
inclusion in the log, but were not printed because of the rate-limiting.
@retval false Logging was not suppressed, no summary needed.
@retval true Logging was suppressed; a summary was printed.
*/
bool flush();
/**
Top-level function.
@retval true Logging should be suppressed.
@retval false Logging should not be suppressed.
*/
bool log();
};
extern Slow_log_throttle log_throttle_qni;
////////////////////////////////////////////////////////////
//
// Error Log
//
////////////////////////////////////////////////////////////
/*
Set up some convenience defines to help us while we change
old-style ("sql_print_...()") calls to new-style ones
("LogErr(...)"). New code should not use these, nor should
it use sql_print_...().
*/
/**
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(level, errcode, ...) \
log_message(LOG_TYPE_ERROR, LOG_ITEM_LOG_PRIO, (longlong)level, \
LOG_ITEM_SRV_SUBSYS, LOG_SUBSYSTEM_TAG, LOG_ITEM_SRC_LINE, \
(longlong)__LINE__, LOG_ITEM_SRC_FILE, MY_BASENAME, \
LOG_ITEM_LOG_LOOKUP, (longlong)errcode, ##__VA_ARGS__)
/**
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_formatted(level, ...) \
log_message(LOG_TYPE_ERROR, LOG_ITEM_LOG_PRIO, (longlong)level, \
LOG_ITEM_SRV_SUBSYS, LOG_SUBSYSTEM_TAG, LOG_ITEM_SRC_LINE, \
(longlong)__LINE__, LOG_ITEM_SRC_FILE, MY_BASENAME, \
LOG_ITEM_LOG_MESSAGE, ##__VA_ARGS__)
/**
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 log_errlog_rich(level, ...) \
log_message(LOG_TYPE_ERROR, LOG_ITEM_LOG_PRIO, (longlong)level, \
LOG_ITEM_SRV_SUBSYS, LOG_SUBSYSTEM_TAG, LOG_ITEM_SRC_LINE, \
(longlong)__LINE__, LOG_ITEM_SRC_FILE, MY_BASENAME, __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_information(...) \
log_errlog_formatted(INFORMATION_LEVEL, ##__VA_ARGS__)
#define sql_print_warning(...) \
log_errlog_formatted(WARNING_LEVEL, ##__VA_ARGS__)
#define sql_print_error(...) log_errlog_formatted(ERROR_LEVEL, ##__VA_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.
@param level The level of the msg significance
@param ecode Error code of the error message.
@param args va_list list of arguments for the message
*/
void error_log_print(enum loglevel level, uint ecode, va_list args);
/**
Initialize structures (e.g. mutex) needed by the error log.
@note This function accesses shared resources without protection, so
it should only be called while the server is running single-threaded.
@note The error log can still be used before this function is called,
but that should only be done single-threaded.
@retval true an error occurred
@retval false basic error logging is now available in multi-threaded mode
*/
bool init_error_log();
/**
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).
@note
On error, my_error() is not called here.
So, caller of this function should call my_error() to keep the protocol.
@note This function also writes any error log messages that
have been buffered by calling flush_error_log_messages().
@param filename Name of error log file
@param get_lock Should we acquire LOCK_error_log?
@param log_type Error log, diagnostic log or both.
*/
bool open_error_log(const char *filename, bool get_lock, uint log_type);
/**
Free any error log resources.
@note This function accesses shared resources without protection, so
it should only be called while the server is running single-threaded.
@note The error log can still be used after this function is called,
but that should only be done single-threaded. All buffered messages
should be flushed before calling this function.
*/
void destroy_error_log();
/**
Flush any pending data to disk and reopen the error log.
*/
bool reopen_error_log();
/**
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 discard_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).
*/
void flush_error_log_messages();
/**
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)
@param a the first string
@param b the second string
@param len compare at most this many characters --
0 for no limit
@param case_insensitive ignore upper/lower case in comparison
@retval -1 a < b
@retval 0 a == b
@retval 1 a > b
*/
int log_string_compare(const char *a, const char *b, size_t len,
bool case_insensitive);
/**
Predicate used to determine whether a type is generic
(generic string, generic float, generic integer) rather
than a well-known type.
@param t log item type to examine
@retval true if generic type
@retval false if wellknown type
*/
bool log_item_generic_type(log_item_type t);
/**
Predicate used to determine whether a class is a string
class (C-string or Lex-string).
@param c log item class to examine
@retval true if of a string class
@retval false if not of a string class
*/
bool log_item_string_class(log_item_class c);
/**
Predicate used to determine whether a class is a numeric
class (integer or float).
@param c log item class to examine
@retval true if of a numeric class
@retval false if not of a numeric class
*/
bool log_item_numeric_class(log_item_class c);
/**
Get an integer value from a log-item of float or integer type.
@param li log item to get the value from
@param i longlong to store the value in
*/
void log_item_get_int(log_item *li, longlong *i);
/**
Get a float value from a log-item of float or integer type.
@param li log item to get the value from
@param f float to store the value in
*/
void log_item_get_float(log_item *li, double *f);
/**
Get a string value from a log-item of C-string or Lex string type.
@param li log item to get the value from
@param str char-pointer to store the pointer to the value in
@param len size_t pointer to store the length of the value in
*/
void log_item_get_string(log_item *li, char **str, size_t *len);
/**
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]().
@param lid log_item_data struct to set the value on
@param i integer to set
@retval true lid was nullptr (possibly: OOM, could not set up log_item)
@retval false all's well
*/
bool log_item_set_int(log_item_data *lid, longlong i);
/**
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]().
@param lid log_item_data struct to set the value on
@param f float to set
@retval true lid was nullptr (possibly: OOM, could not set up log_item)
@retval false all's well
*/
bool log_item_set_float(log_item_data *lid, double f);
/**
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]().
@param lid log_item_data struct to set the value on
@param s pointer to string
@param s_len length of string