-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathsql_plugin.cc
3528 lines (3042 loc) · 118 KB
/
sql_plugin.cc
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 */
#include "sql/sql_plugin.h"
#include "my_config.h"
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <optional>
#include "map_helpers.h"
#include "mutex_lock.h" // MUTEX_LOCK
#include "my_alloc.h"
#include "my_base.h"
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_getopt.h"
#include "my_inttypes.h"
#include "my_list.h"
#include "my_macros.h"
#include "my_psi_config.h"
#include "my_sharedlib.h"
#include "my_sys.h"
#include "my_thread_local.h"
#include "mysql/components/services/bits/psi_bits.h"
#include "mysql/components/services/bits/psi_memory_bits.h"
#include "mysql/components/services/bits/psi_mutex_bits.h"
#include "mysql/components/services/log_builtins.h"
#include "mysql/components/services/log_shared.h"
#include "mysql/components/services/system_variable_source_type.h"
#include "mysql/my_loglevel.h"
#include "mysql/plugin_audit.h"
#include "mysql/plugin_auth.h"
#include "mysql/plugin_clone.h"
#include "mysql/plugin_group_replication.h"
#include "mysql/plugin_keyring.h"
#include "mysql/plugin_validate_password.h"
#include "mysql/psi/mysql_memory.h"
#include "mysql/psi/mysql_mutex.h"
#include "mysql/psi/mysql_rwlock.h"
#include "mysql/psi/mysql_system.h"
#include "mysql/psi/mysql_thread.h"
#include "mysql/service_mysql_alloc.h"
#include "mysql/strings/m_ctype.h"
#include "mysql_com.h"
#include "mysql_version.h"
#include "mysqld_error.h"
#include "nulls.h"
#include "prealloced_array.h"
#include "sql/auth/auth_acls.h"
#include "sql/auth/auth_common.h" // check_table_access
#include "sql/auto_thd.h" // Auto_THD
#include "sql/current_thd.h"
#include "sql/dd/cache/dictionary_client.h" // dd::cache::Dictionary_client
#include "sql/dd/dd_schema.h" // dd::Schema_MDL_locker
#include "sql/dd/info_schema/metadata.h" // dd::info_schema::store_dynamic_p...
#include "sql/dd/string_type.h" // dd::String_type
#include "sql/dd_sql_view.h" // update_referencing_views_metadata
#include "sql/debug_sync.h" // DEBUG_SYNC
#include "sql/derror.h" // ER_THD
#include "sql/field.h"
#include "sql/handler.h" // ha_initalize_handlerton
#include "sql/iterators/row_iterator.h"
#include "sql/key.h" // key_copy
#include "sql/lock.h" // acquire_shared_global...
#include "sql/log.h"
#include "sql/mdl.h"
#include "sql/mysqld.h" // files_charset_info
#include "sql/persisted_variable.h" // Persisted_variables_cache
#include "sql/protocol_classic.h"
#include "sql/psi_memory_key.h"
#include "sql/sd_notify.h" // sysd::notify(..) calls
#include "sql/set_var.h"
#include "sql/sql_audit.h" // mysql_audit_acquire_plugins
#include "sql/sql_backup_lock.h" // acquire_shared_backup_lock
#include "sql/sql_base.h" // close_mysql_tables
#include "sql/sql_class.h" // THD
#include "sql/sql_const.h"
#include "sql/sql_error.h"
#include "sql/sql_executor.h" // unique_ptr_destroy_only<RowIterator>
#include "sql/sql_lex.h"
#include "sql/sql_list.h"
#include "sql/sql_parse.h" // check_string_char_length
#include "sql/sql_plugin_var.h"
#include "sql/sql_show.h" // add_status_vars
#include "sql/sql_system_table_check.h" // System_table_intact
#include "sql/sql_table.h"
#include "sql/sys_vars_resource_mgr.h"
#include "sql/sys_vars_shared.h" // intern_find_sys_var
#include "sql/system_variables.h"
#include "sql/table.h"
#include "sql/thd_raii.h"
#include "sql/thr_malloc.h"
#include "sql/transaction.h" // trans_rollback_stmt
#include "sql_string.h"
#include "string_with_len.h"
#include "strxmov.h"
#include "strxnmov.h"
#include "template_utils.h" // pointer_cast
#include "thr_lock.h"
#include "thr_mutex.h"
#include "typelib.h"
/* clang-format off */
/**
@page page_ext_plugins Plugins
The Big Picture
----------------
@startuml
actor "SQL client" as client
box "MySQL Server" #LightBlue
participant "Server Code" as server
participant "Plugin" as plugin
endbox
== INSTALL PLUGIN ==
server -> plugin : initialize
activate plugin
plugin --> server : initialization done
== CLIENT SESSION ==
loop many
client -> server : SQL command
server -> server : Add reference for Plugin if absent
loop one or many
server -> plugin : plugin API call
plugin --> server : plugin API call result
end
server -> server : Optionally release reference for Plugin
server --> client : SQL command reply
end
== UNINSTALL PLUGIN ==
server -> plugin : deinitialize
plugin --> server : deinitialization done
deactivate plugin
@enduml
@sa Sql_cmd_install_plugin, Sql_cmd_uninstall_plugin.
*/
/**
@page page_ext_plugin_services Plugin Services
Adding Plugin Services Into The Big Picture
------------------------------------
You probably remember the big picture for @ref page_ext_plugins.
Below is an extended version of it with plugin services added.
@startuml
actor "SQL client" as client
box "MySQL Server" #LightBlue
participant "Server Code" as server
participant "Plugin" as plugin
endbox
== INSTALL PLUGIN ==
server -> plugin : initialize
activate plugin
loop zero or many
plugin -> server : service API call
server --> plugin : service API result
end
plugin --> server : initialization done
== CLIENT SESSION ==
loop many
client -> server : SQL command
server -> server : Add reference for Plugin if absent
loop one or many
server -> plugin : plugin API call
loop zero or many
plugin -> server : service API call
server --> plugin : service API result
end
plugin --> server : plugin API call result
end
server -> server : Optionally release reference for Plugin
server --> client : SQL command reply
end
== UNINSTALL PLUGIN ==
server -> plugin : deinitialize
loop zero or many
plugin -> server : service API call
server --> plugin : service API result
end
plugin --> server : deinitialization done
deactivate plugin
@enduml
Understanding and creating plugin services
-----------------------------
- @subpage page_ext_plugin_svc_anathomy
- @subpage page_ext_plugin_svc_new_service_howto
- @subpage page_ext_plugin_api_goodservices
@section sect_ext_plugin_svc_reference Plugin Services Reference
See @ref group_ext_plugin_services
*/
/**
@page page_ext_plugin_svc_anathomy Plugin Service Anathomy
A "service" is a struct of C function pointers.
It is a tool to expose a pre-exitsing set of server functions to plugins.
You need the actual server functions as a starting point.
The server has all service structs defined and initialized so
that the the function pointers point to the actual service implementation
functions.
The server also keeps a global list of the plugin service reference
structures called ::list_of_services.
See ::st_service_ref for details of what a service reference is.
The server copies of all plugin structures are filled in at compile time
with the function pointers of the actual server functions that implement
the service functions. References to them are stored into the relevant
element of ::list_of_services.
Each plugin must export pointer symbols for every plugin service that
the server knows about.
The plugin service pointers are initialized with the version of the plugin
service that the plugin expects.
When a dynamic plugin shared object is loaded by ::plugin_dl_add it will
iterate over ::list_of_services, find the plugin symbol by name,
check the service version stored in that symbol against the one stored into
::st_service_ref and then will replace the version stored in plugin's struct
pointer with the actual pointer of the server's copy of the same structure.
When that is filled in the plugin can use the newly set server structure
through its local pointer to call into the service method pointers that point
to the server implementation functions.
Once set to the server's structure, the plugin's service pointer value is
never reset back to service version.
The plugin service header also defines a set of convenience macros
that replace top level plugin service calls with the corresponding function
pointer call, i.e. for service foo:
~~~~
struct foo_service_st {
int (*foo_mtd_1)(int a);
}
struct foo_service_st *foo_service;
~~~~
a convenience macro is defined for `foo_mtd_1` as follows:
~~~~
#define foo_mtd_1(a) foo_service->foo_mtd_1(a)
~~~~
This trick allows plugin service functions to look as top level function
calls inside the plugin code.
@sa plugin_add, plugin_del, plugin_dl_add, plugin_dl_del, list_of_services,
st_service_ref
*/
/* clang-format on */
#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#endif
#include <algorithm>
#include <memory>
#include <new>
#include <unordered_map>
#include <utility>
#include "sql/srv_session.h" // Srv_session::check_for_stale_threads()
using std::max;
using std::min;
#define REPORT_TO_LOG 1
#define REPORT_TO_USER 2
#ifndef NDEBUG
static PSI_memory_key key_memory_plugin_ref;
#endif
static PSI_memory_key key_memory_plugin_mem_root;
static PSI_memory_key key_memory_plugin_init_tmp;
static PSI_memory_key key_memory_plugin_int_mem_root;
static PSI_memory_key key_memory_mysql_plugin;
static PSI_memory_key key_memory_mysql_plugin_dl;
static PSI_memory_key key_memory_plugin_bookmark;
extern st_mysql_plugin *mysql_optional_plugins[];
extern st_mysql_plugin *mysql_mandatory_plugins[];
/**
@note The order of the enumeration is critical.
@see construct_options
*/
const char *global_plugin_typelib_names[] = {"OFF", "ON", "FORCE",
"FORCE_PLUS_PERMANENT", nullptr};
static TYPELIB global_plugin_typelib = {
array_elements(global_plugin_typelib_names) - 1, "",
global_plugin_typelib_names, nullptr};
static I_List<i_string> opt_plugin_load_list;
I_List<i_string> *opt_plugin_load_list_ptr = &opt_plugin_load_list;
static I_List<i_string> opt_early_plugin_load_list;
I_List<i_string> *opt_early_plugin_load_list_ptr = &opt_early_plugin_load_list;
char *opt_plugin_dir_ptr;
char opt_plugin_dir[FN_REFLEN];
/*
When you ad a new plugin type, add both a string and make sure that the
init and deinit array are correctly updated.
*/
const LEX_CSTRING plugin_type_names[MYSQL_MAX_PLUGIN_TYPE_NUM] = {
{STRING_WITH_LEN("UDF")},
{STRING_WITH_LEN("STORAGE ENGINE")},
{STRING_WITH_LEN("FTPARSER")},
{STRING_WITH_LEN("DAEMON")},
{STRING_WITH_LEN("INFORMATION SCHEMA")},
{STRING_WITH_LEN("AUDIT")},
{STRING_WITH_LEN("REPLICATION")},
{STRING_WITH_LEN("AUTHENTICATION")},
{STRING_WITH_LEN("VALIDATE PASSWORD")},
{STRING_WITH_LEN("GROUP REPLICATION")},
{STRING_WITH_LEN("KEYRING")},
{STRING_WITH_LEN("CLONE")}};
extern int initialize_schema_table(st_plugin_int *plugin);
extern int finalize_schema_table(st_plugin_int *plugin);
/*
The number of elements in both plugin_type_initialize and
plugin_type_deinitialize should equal to the number of plugins
defined.
*/
plugin_type_init plugin_type_initialize[MYSQL_MAX_PLUGIN_TYPE_NUM] = {
nullptr,
ha_initialize_handlerton,
nullptr,
nullptr,
initialize_schema_table,
initialize_audit_plugin,
nullptr,
nullptr,
nullptr};
plugin_type_init plugin_type_deinitialize[MYSQL_MAX_PLUGIN_TYPE_NUM] = {
nullptr,
ha_finalize_handlerton,
nullptr,
nullptr,
finalize_schema_table,
finalize_audit_plugin,
nullptr,
nullptr,
nullptr};
static const char *plugin_interface_version_sym =
"_mysql_plugin_interface_version_";
static const char *sizeof_st_plugin_sym = "_mysql_sizeof_struct_st_plugin_";
static const char *plugin_declarations_sym = "_mysql_plugin_declarations_";
static int min_plugin_interface_version =
MYSQL_PLUGIN_INTERFACE_VERSION & ~0xFF;
/* Note that 'int version' must be the first field of every plugin
sub-structure (plugin->info).
*/
static int min_plugin_info_interface_version[MYSQL_MAX_PLUGIN_TYPE_NUM] = {
0x0000,
MYSQL_HANDLERTON_INTERFACE_VERSION,
MYSQL_FTPARSER_INTERFACE_VERSION,
MYSQL_DAEMON_INTERFACE_VERSION,
MYSQL_INFORMATION_SCHEMA_INTERFACE_VERSION,
MYSQL_AUDIT_INTERFACE_VERSION,
MYSQL_REPLICATION_INTERFACE_VERSION,
MYSQL_AUTHENTICATION_INTERFACE_VERSION,
MYSQL_VALIDATE_PASSWORD_INTERFACE_VERSION,
MYSQL_GROUP_REPLICATION_INTERFACE_VERSION,
MYSQL_KEYRING_INTERFACE_VERSION,
MYSQL_CLONE_INTERFACE_VERSION};
static int cur_plugin_info_interface_version[MYSQL_MAX_PLUGIN_TYPE_NUM] = {
0x0000, /* UDF: not implemented */
MYSQL_HANDLERTON_INTERFACE_VERSION,
MYSQL_FTPARSER_INTERFACE_VERSION,
MYSQL_DAEMON_INTERFACE_VERSION,
MYSQL_INFORMATION_SCHEMA_INTERFACE_VERSION,
MYSQL_AUDIT_INTERFACE_VERSION,
MYSQL_REPLICATION_INTERFACE_VERSION,
MYSQL_AUTHENTICATION_INTERFACE_VERSION,
MYSQL_VALIDATE_PASSWORD_INTERFACE_VERSION,
MYSQL_GROUP_REPLICATION_INTERFACE_VERSION,
MYSQL_KEYRING_INTERFACE_VERSION,
MYSQL_CLONE_INTERFACE_VERSION};
/* support for Services */
#include "sql/sql_plugin_services.h"
/*
A mutex LOCK_plugin_delete must be acquired before calling plugin_del
function.
*/
mysql_mutex_t LOCK_plugin_delete;
/**
Serializes access to the global plugin memory list.
LOCK_plugin must be acquired before accessing
plugin_dl_array, plugin_array and plugin_hash.
We are always manipulating ref count, so a rwlock here is unnecessary.
If it must be taken together with the LOCK_system_variables_hash then
LOCK_plugin must be taken after LOCK_system_variables_hash.
*/
mysql_mutex_t LOCK_plugin;
/**
Serializes the INSTALL and UNINSTALL PLUGIN commands.
Must be taken before LOCK_plugin.
*/
mysql_mutex_t LOCK_plugin_install;
static Prealloced_array<st_plugin_dl *, 16> *plugin_dl_array;
static Prealloced_array<st_plugin_int *, 16> *plugin_array;
static collation_unordered_map<std::string, st_plugin_int *>
*plugin_hash[MYSQL_MAX_PLUGIN_TYPE_NUM] = {nullptr};
static bool reap_needed = false;
static int plugin_array_version = 0;
static bool initialized = false;
MEM_ROOT plugin_mem_root;
uint global_variables_dynamic_size = 0;
malloc_unordered_map<std::string, st_bookmark *> *bookmark_hash;
/** Hash for system variables of string type with MEMALLOC flag. */
malloc_unordered_map<std::string, st_bookmark *>
*malloced_string_type_sysvars_bookmark_hash;
/* prototypes */
static void plugin_load(MEM_ROOT *tmp_root, int *argc, char **argv);
static bool plugin_load_list(MEM_ROOT *tmp_root, int *argc, char **argv,
const char *list, bool load_early);
static bool check_if_option_is_deprecated(int optid,
const struct my_option *opt,
char *argument);
static int test_plugin_options(MEM_ROOT *, st_plugin_int *, int *, char **,
std::optional<enum_plugin_load_option> = {});
static bool register_builtin(st_mysql_plugin *, st_plugin_int *,
st_plugin_int **);
static void unlock_variables(struct System_variables *vars);
static void cleanup_variables(THD *thd, struct System_variables *vars);
static void plugin_vars_free_values(sys_var *vars);
static void plugin_var_memalloc_free(struct System_variables *vars);
static void restore_pluginvar_names(sys_var *first);
#define my_intern_plugin_lock(A, B) intern_plugin_lock(A, B)
#define my_intern_plugin_lock_ci(A, B) intern_plugin_lock(A, B)
static void reap_plugins();
// mysql.plugin table definition.
static const int MYSQL_PLUGIN_TABLE_FIELD_COUNT = 2;
static const TABLE_FIELD_TYPE
mysql_plugin_table_fields[MYSQL_PLUGIN_TABLE_FIELD_COUNT] = {
{{STRING_WITH_LEN("name")},
{STRING_WITH_LEN("varchar(64)")},
{nullptr, 0}},
{{STRING_WITH_LEN("dl")},
{STRING_WITH_LEN("varchar(128)")},
{nullptr, 0}}};
static const TABLE_FIELD_DEF mysql_plugin_table_def = {
MYSQL_PLUGIN_TABLE_FIELD_COUNT, mysql_plugin_table_fields};
malloc_unordered_map<std::string, st_bookmark *> *get_bookmark_hash() {
return bookmark_hash;
}
/**
@warning Make sure all errors reported to the log here are
defined in share/messages_to_error_log.txt as well as in
share/messages_to_clients.txt.
@arg where_to a combination of @ref REPORT_TO_USER and @ref REPORT_TO_LOG
@arg error the code for the mysql_error()
*/
static void report_error(int where_to, uint error, ...) {
va_list args;
if (where_to & REPORT_TO_USER) {
va_start(args, error);
my_printv_error(error, ER_THD_NONCONST(current_thd, error), MYF(0), args);
va_end(args);
}
if (where_to & REPORT_TO_LOG) {
longlong ecode = 0;
switch (error) {
case ER_UDF_NO_PATHS:
ecode = ER_NO_PATH_FOR_SHARED_LIBRARY;
break;
case ER_CANT_OPEN_LIBRARY:
ecode = ER_FAILED_TO_OPEN_SHARED_LIBRARY;
break;
case ER_CANT_FIND_DL_ENTRY:
ecode = ER_FAILED_TO_FIND_DL_ENTRY;
break;
case ER_OUTOFMEMORY:
ecode = ER_SERVER_OUTOFMEMORY;
break;
case ER_UDF_EXISTS:
ecode = ER_UDF_ALREADY_EXISTS;
break;
case ER_PLUGIN_NO_INSTALL:
ecode = ER_PLUGIN_NO_INSTALL_DUP;
break;
case ER_PLUGIN_NOT_EARLY:
ecode = ER_PLUGIN_NOT_EARLY_DUP;
break;
default:
assert(false);
return;
}
va_start(args, error);
LogEvent().type(LOG_TYPE_ERROR).prio(ERROR_LEVEL).lookupv(ecode, args);
va_end(args);
}
}
/**
Check if the provided path is valid in the sense that it does cause
a relative reference outside the directory.
@note Currently, this function only check if there are any
characters in FN_DIRSEP in the string, but it might change in the
future.
@code
check_valid_path("../foo.so") -> true
check_valid_path("foo.so") -> false
@endcode
*/
bool check_valid_path(const char *path, size_t len) {
const size_t prefix = my_strcspn(files_charset_info, path, path + len,
FN_DIRSEP, strlen(FN_DIRSEP));
return prefix < len;
}
/****************************************************************************
Plugin support code
****************************************************************************/
static st_plugin_dl *plugin_dl_find(const LEX_STRING *dl) {
DBUG_TRACE;
for (st_plugin_dl **it = plugin_dl_array->begin();
it != plugin_dl_array->end(); ++it) {
st_plugin_dl *tmp = *it;
if (tmp->ref_count &&
!my_strnncoll(files_charset_info, pointer_cast<uchar *>(dl->str),
dl->length, pointer_cast<uchar *>(tmp->dl.str),
tmp->dl.length))
return tmp;
}
return nullptr;
}
static st_plugin_dl *plugin_dl_insert_or_reuse(st_plugin_dl *plugin_dl) {
DBUG_TRACE;
st_plugin_dl *tmp;
for (st_plugin_dl **it = plugin_dl_array->begin();
it != plugin_dl_array->end(); ++it) {
tmp = *it;
if (!tmp->ref_count) {
memcpy(tmp, plugin_dl, sizeof(st_plugin_dl));
return tmp;
}
}
if (plugin_dl_array->push_back(plugin_dl)) return nullptr;
tmp = plugin_dl_array->back() = static_cast<st_plugin_dl *>(
memdup_root(&plugin_mem_root, plugin_dl, sizeof(st_plugin_dl)));
return tmp;
}
static inline void free_plugin_mem(st_plugin_dl *p) {
/*
The valgrind leak report is done at the end of the program execution.
But since the plugins are unloaded from the memory,
it is impossible for valgrind to correctly report the leak locations.
So leave the shared objects (.DLL/.so) open for the symbols definition.
*/
bool preserve_shared_objects_after_unload = false;
DBUG_EXECUTE_IF("preserve_shared_objects_after_unload",
{ preserve_shared_objects_after_unload = true; });
if (p->handle != nullptr && !preserve_shared_objects_after_unload) {
#ifdef HAVE_PSI_SYSTEM_INTERFACE
PSI_SYSTEM_CALL(unload_plugin)
(std::string(p->dl.str, p->dl.length).c_str());
#endif
dlclose(p->handle);
}
my_free(p->dl.str);
if (p->version != MYSQL_PLUGIN_INTERFACE_VERSION) my_free(p->plugins);
}
/**
Loads a dynamic plugin
Fills in a ::st_plugin_dl structure.
Initializes the plugin services pointer inside the plugin.
Does not initialize the individual plugins.
Must have LOCK_plugin and LOCK_system_variables locked(write).
On error releases LOCK_system_variables and LOCK_plugin.
@arg dl The path to the plugin binary to load
@arg report a bitmask that's passed down to report_error()
@arg load_early true if loading the "early" plugins (--early-plugin-load etc)
@return A plugin reference.
@retval NULL failed to load the plugin
*/
static st_plugin_dl *plugin_dl_add(const LEX_STRING *dl, int report,
bool load_early) {
char dlpath[FN_REFLEN];
uint dummy_errors, i;
size_t plugin_dir_len, dlpathlen;
st_plugin_dl *tmp, plugin_dl;
void *sym;
DBUG_TRACE;
DBUG_PRINT("enter",
("dl->str: '%s', dl->length: %d", dl->str, (int)dl->length));
plugin_dir_len = strlen(opt_plugin_dir);
/*
Ensure that the dll doesn't have a path.
This is done to ensure that only approved libraries from the
plugin directory are used (to make this even remotely secure).
*/
const LEX_CSTRING dl_cstr = {dl->str, dl->length};
if (check_valid_path(dl->str, dl->length) ||
check_string_char_length(dl_cstr, "", NAME_CHAR_LEN, system_charset_info,
true) ||
plugin_dir_len + dl->length + 1 >= FN_REFLEN) {
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
report_error(report, ER_UDF_NO_PATHS);
return nullptr;
}
/* If this dll is already loaded just increase ref_count. */
if ((tmp = plugin_dl_find(dl))) {
tmp->ref_count++;
return tmp;
}
memset(&plugin_dl, 0, sizeof(plugin_dl));
/* Compile dll path */
dlpathlen = strxnmov(dlpath, sizeof(dlpath) - 1, opt_plugin_dir, "/", dl->str,
NullS) -
dlpath;
(void)unpack_filename(dlpath, dlpath);
plugin_dl.ref_count = 1;
/* Open new dll handle */
mysql_mutex_assert_owner(&LOCK_plugin);
// We cannot use the RTLD_NODELETE trick for HAVE_ASAN | HAVE_LSAN here,
// since we still have plugins which depend on running static destructors
// at dlclose().
// If a test has valgrind/LSAN/ASAN leaks, then use the debug flag
// preserve_shared_objects_after_unload (see elsewhere in this file).
plugin_dl.handle = dlopen(dlpath, RTLD_NOW);
if (plugin_dl.handle == nullptr) {
const char *errmsg;
const int error_number = dlopen_errno;
/*
Conforming applications should use a critical section to retrieve
the error pointer and buffer...
*/
DLERROR_GENERATE(errmsg, error_number);
if (!strncmp(
dlpath, errmsg,
dlpathlen)) { // if errmsg starts from dlpath, trim this prefix.
errmsg += dlpathlen;
if (*errmsg == ':') errmsg++;
if (*errmsg == ' ') errmsg++;
}
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
report_error(report, ER_CANT_OPEN_LIBRARY, dlpath, error_number, errmsg);
/*
"The messages returned by dlerror() may reside in a static buffer
that is overwritten on each call to dlerror()."
Some implementations have a static pointer instead, and the memory it
points to may be reported as "still reachable" by Valgrind.
Calling dlerror() once more will free the memory.
*/
#if !defined(_WIN32)
errmsg = dlerror();
assert(errmsg == nullptr);
#endif
return nullptr;
}
/* Determine interface version */
if (!(sym = dlsym(plugin_dl.handle, plugin_interface_version_sym))) {
free_plugin_mem(&plugin_dl);
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
report_error(report, ER_CANT_FIND_DL_ENTRY, plugin_interface_version_sym);
return nullptr;
}
plugin_dl.version = *(int *)sym;
/* Versioning */
if (plugin_dl.version < min_plugin_interface_version ||
(plugin_dl.version >> 8) > (MYSQL_PLUGIN_INTERFACE_VERSION >> 8)) {
free_plugin_mem(&plugin_dl);
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
report_error(report, ER_CANT_OPEN_LIBRARY, dlpath, 0,
"plugin interface version mismatch");
return nullptr;
}
/* link the services in */
for (i = 0; i < array_elements(list_of_services); i++) {
if ((sym = dlsym(plugin_dl.handle, list_of_services[i].name))) {
const uint ver = (uint)(intptr) * (void **)sym;
if ((*(void **)sym) !=
list_of_services[i].service && /* already replaced */
(ver > list_of_services[i].version ||
(ver >> 8) < (list_of_services[i].version >> 8))) {
char buf[MYSQL_ERRMSG_SIZE];
snprintf(buf, sizeof(buf), "service '%s' interface version mismatch",
list_of_services[i].name);
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
report_error(report, ER_CANT_OPEN_LIBRARY, dlpath, 0, buf);
return nullptr;
}
*(void **)sym = list_of_services[i].service;
}
}
/* Find plugin declarations */
if (!(sym = dlsym(plugin_dl.handle, plugin_declarations_sym))) {
free_plugin_mem(&plugin_dl);
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
report_error(report, ER_CANT_FIND_DL_ENTRY, plugin_declarations_sym);
return nullptr;
}
if (plugin_dl.version != MYSQL_PLUGIN_INTERFACE_VERSION) {
uint sizeof_st_plugin;
st_mysql_plugin *old, *cur;
char *ptr = (char *)sym;
if ((sym = dlsym(plugin_dl.handle, sizeof_st_plugin_sym)))
sizeof_st_plugin = *(int *)sym;
else {
/*
When the following assert starts failing, we'll have to call
report_error(report, ER_CANT_FIND_DL_ENTRY, sizeof_st_plugin_sym);
*/
assert(min_plugin_interface_version == 0);
sizeof_st_plugin = (int)offsetof(st_mysql_plugin, version);
}
/*
What's the purpose of this loop? If the goal is to catch a
missing 0 record at the end of a list, it will fail miserably
since the compiler is likely to optimize this away. /Matz
*/
for (i = 0; ((st_mysql_plugin *)(ptr + i * sizeof_st_plugin))->info; i++)
/* no op */;
cur = (st_mysql_plugin *)my_malloc(key_memory_mysql_plugin,
(i + 1) * sizeof(st_mysql_plugin),
MYF(MY_ZEROFILL | MY_WME));
if (!cur) {
free_plugin_mem(&plugin_dl);
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
report_error(report, ER_OUTOFMEMORY,
static_cast<int>(plugin_dl.dl.length));
return nullptr;
}
/*
All st_plugin fields not initialized in the plugin explicitly, are
set to 0. It matches C standard behaviour for struct initializers that
have less values than the struct definition.
*/
for (i = 0; (old = (st_mysql_plugin *)(ptr + i * sizeof_st_plugin))->info;
i++)
memcpy(cur + i, old, min<size_t>(sizeof(cur[i]), sizeof_st_plugin));
sym = cur;
}
plugin_dl.plugins = (st_mysql_plugin *)sym;
/*
If report is REPORT_TO_USER, we were called from
mysql_install_plugin. Otherwise, we are called
indirectly from plugin_register_dynamic_and_init_all().
*/
if (report == REPORT_TO_USER) {
st_mysql_plugin *plugin = plugin_dl.plugins;
for (; plugin->info; ++plugin)
if (plugin->flags & PLUGIN_OPT_NO_INSTALL) {
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
report_error(report, ER_PLUGIN_NO_INSTALL, plugin->name);
free_plugin_mem(&plugin_dl);
return nullptr;
}
}
if (load_early) {
st_mysql_plugin *plugin = plugin_dl.plugins;
for (; plugin->info; ++plugin)
if (!(plugin->flags & PLUGIN_OPT_ALLOW_EARLY)) {
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
report_error(report, ER_PLUGIN_NOT_EARLY, plugin->name);
free_plugin_mem(&plugin_dl);
return nullptr;
}
}
/* Duplicate and convert dll name */
plugin_dl.dl.length = dl->length * files_charset_info->mbmaxlen + 1;
if (!(plugin_dl.dl.str = (char *)my_malloc(key_memory_mysql_plugin_dl,
plugin_dl.dl.length, MYF(0)))) {
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
free_plugin_mem(&plugin_dl);
report_error(report, ER_OUTOFMEMORY, static_cast<int>(plugin_dl.dl.length));
return nullptr;
}
plugin_dl.dl.length = copy_and_convert(
plugin_dl.dl.str, plugin_dl.dl.length, files_charset_info, dl->str,
dl->length, system_charset_info, &dummy_errors);
plugin_dl.dl.str[plugin_dl.dl.length] = 0;
/* Add this dll to array */
if (!(tmp = plugin_dl_insert_or_reuse(&plugin_dl))) {
mysql_mutex_unlock(&LOCK_plugin);
mysql_rwlock_unlock(&LOCK_system_variables_hash);
free_plugin_mem(&plugin_dl);
report_error(report, ER_OUTOFMEMORY,
static_cast<int>(sizeof(st_plugin_dl)));
return nullptr;
}
return tmp;
}
static void plugin_dl_del(const LEX_STRING *dl) {
DBUG_TRACE;
mysql_mutex_assert_owner(&LOCK_plugin);
for (st_plugin_dl **it = plugin_dl_array->begin();
it != plugin_dl_array->end(); ++it) {
st_plugin_dl *tmp = *it;
if (tmp->ref_count &&
!my_strnncoll(files_charset_info, pointer_cast<uchar *>(dl->str),
dl->length, pointer_cast<uchar *>(tmp->dl.str),
tmp->dl.length)) {
/* Do not remove this element, unless no other plugin uses this dll. */
if (!--tmp->ref_count) {
free_plugin_mem(tmp);
memset(tmp, 0, sizeof(st_plugin_dl));
}
break;
}
}
}
static st_plugin_int *plugin_find_internal(const LEX_CSTRING &name, int type) {
uint i;
DBUG_TRACE;
if (!initialized) return nullptr;
mysql_mutex_assert_owner(&LOCK_plugin);
if (type == MYSQL_ANY_PLUGIN) {
for (i = 0; i < MYSQL_MAX_PLUGIN_TYPE_NUM; i++) {
const auto it = plugin_hash[i]->find(to_string(name));
if (it != plugin_hash[i]->end()) return it->second;
}
} else
return find_or_nullptr(*plugin_hash[type], to_string(name));
return nullptr;
}
static SHOW_COMP_OPTION plugin_status(const LEX_CSTRING &name, int type) {
SHOW_COMP_OPTION rc = SHOW_OPTION_NO;
st_plugin_int *plugin;
DBUG_TRACE;
mysql_mutex_lock(&LOCK_plugin);
if ((plugin = plugin_find_internal(name, type))) {
rc = SHOW_OPTION_DISABLED;
if (plugin->state == PLUGIN_IS_READY) rc = SHOW_OPTION_YES;
}
mysql_mutex_unlock(&LOCK_plugin);
return rc;
}
bool plugin_is_ready(const LEX_CSTRING &name, int type) {
bool rc = false;
if (plugin_status(name, type) == SHOW_OPTION_YES) rc = true;
return rc;
}
SHOW_COMP_OPTION plugin_status(const char *name, size_t len, int type) {
const LEX_CSTRING plugin_name = {name, len};
return plugin_status(plugin_name, type);
}
plugin_ref intern_plugin_lock(LEX *lex, plugin_ref rc) {
st_plugin_int *pi = plugin_ref_to_int(rc);
DBUG_TRACE;
#ifndef NDEBUG
// See force_plugin_lock, in System_variable_tracker::visit_plugin_variable.
if (current_thd != nullptr) {
mysql_mutex_assert_owner(&LOCK_plugin);
}
#endif
if (pi->state & (PLUGIN_IS_READY | PLUGIN_IS_UNINITIALIZED)) {
plugin_ref plugin;
#ifdef NDEBUG
/* built-in plugins don't need ref counting */
if (!pi->plugin_dl) return pi;
plugin = pi;
#else
/*
For debugging, we do an additional malloc which allows the
memory manager and/or valgrind to track locked references and
double unlocks to aid resolving reference counting problems.
*/
if (!(plugin = (plugin_ref)my_malloc(key_memory_plugin_ref, sizeof(pi),
MYF(MY_WME))))
return nullptr;
*plugin = pi;
#endif
pi->ref_count++;
DBUG_PRINT("info", ("thd: %p, plugin: \"%s\", ref_count: %d", current_thd,
pi->name.str, pi->ref_count));
if (lex) lex->plugins.push_back(plugin);
return plugin;
}
return nullptr;
}
plugin_ref plugin_lock(THD *thd, plugin_ref *ptr) {
LEX *lex = thd ? thd->lex : nullptr;
plugin_ref rc;
DBUG_TRACE;
mysql_mutex_lock(&LOCK_plugin);
rc = my_intern_plugin_lock_ci(lex, *ptr);
mysql_mutex_unlock(&LOCK_plugin);
return rc;
}
plugin_ref plugin_lock_by_name(THD *thd, const LEX_CSTRING &name, int type) {
LEX *lex = thd ? thd->lex : nullptr;
plugin_ref rc = nullptr;
st_plugin_int *plugin;
DBUG_TRACE;
mysql_mutex_lock(&LOCK_plugin);
if ((plugin = plugin_find_internal(name, type)))
rc = my_intern_plugin_lock_ci(lex, plugin_int_to_ref(plugin));
mysql_mutex_unlock(&LOCK_plugin);