-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathsql_servers.cc
979 lines (812 loc) · 32.4 KB
/
sql_servers.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
/* Copyright (c) 2000, 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 */
/*
The servers are saved in the system table "servers"
Currently, when the user performs an ALTER SERVER or a DROP SERVER
operation, it will cause all open tables which refer to the named
server connection to be flushed. This may cause some undesirable
behaviour with regard to currently running transactions. It is
expected that the DBA knows what s/he is doing when s/he performs
the ALTER SERVER or DROP SERVER operation.
TODO:
It is desirable for us to implement a callback mechanism instead where
callbacks can be registered for specific server protocols. The callback
will be fired when such a server name has been created/altered/dropped
or when statistics are to be gathered such as how many actual connections.
Storage engines etc will be able to make use of the callback so that
currently running transactions etc will not be disrupted.
*/
#include "sql/sql_servers.h"
#include <stdlib.h>
#include <string.h>
#include <atomic>
#include <memory>
#include <string>
#include <unordered_map>
#include <utility>
#include "m_string.h"
#include "map_helpers.h"
#include "my_alloc.h"
#include "my_base.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_macros.h"
#include "my_psi_config.h"
#include "my_sys.h"
#include "mysql/components/services/bits/mysql_rwlock_bits.h"
#include "mysql/components/services/bits/psi_bits.h"
#include "mysql/components/services/bits/psi_memory_bits.h"
#include "mysql/components/services/bits/psi_rwlock_bits.h"
#include "mysql/components/services/log_builtins.h"
#include "mysql/my_loglevel.h"
#include "mysql/psi/mysql_memory.h"
#include "mysql/psi/mysql_mutex.h"
#include "mysql/psi/mysql_rwlock.h"
#include "mysql/strings/m_ctype.h"
#include "mysqld_error.h"
#include "sql/auth/auth_acls.h"
#include "sql/auth/auth_common.h"
#include "sql/field.h"
#include "sql/handler.h"
#include "sql/iterators/row_iterator.h"
#include "sql/psi_memory_key.h" // key_memory_servers
#include "sql/sql_backup_lock.h" // acquire_shared_backup_lock
#include "sql/sql_base.h" // close_mysql_tables
#include "sql/sql_class.h"
#include "sql/sql_const.h"
#include "sql/sql_error.h"
#include "sql/sql_executor.h" // init_read_record
#include "sql/sql_system_table_check.h" // System_table_intact
#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, trans_commit_stmt
#include "string_with_len.h"
#include "thr_lock.h"
/*
We only use 1 mutex to guard the data structures - THR_LOCK_servers.
Read locked when only reading data and write-locked for all other access.
*/
static collation_unordered_map<std::string, FOREIGN_SERVER *> *servers_cache;
static MEM_ROOT mem;
static mysql_rwlock_t THR_LOCK_servers;
/**
This enum describes the structure of the mysql.servers table.
*/
enum enum_servers_table_field {
SERVERS_FIELD_NAME = 0,
SERVERS_FIELD_HOST,
SERVERS_FIELD_DB,
SERVERS_FIELD_USERNAME,
SERVERS_FIELD_PASSWORD,
SERVERS_FIELD_PORT,
SERVERS_FIELD_SOCKET,
SERVERS_FIELD_SCHEME,
SERVERS_FIELD_OWNER
};
// mysql.servers table definition.
static const int MYSQL_SERVERS_TABLE_FIELD_COUNT = 9;
static const TABLE_FIELD_TYPE
mysql_servers_table_fields[MYSQL_SERVERS_TABLE_FIELD_COUNT] = {
{{STRING_WITH_LEN("Server_name")},
{STRING_WITH_LEN("char(64)")},
{nullptr, 0}},
{{STRING_WITH_LEN("Host")},
{STRING_WITH_LEN("char(255)")},
{STRING_WITH_LEN("ascii")}},
{{STRING_WITH_LEN("Db")}, {STRING_WITH_LEN("char(64)")}, {nullptr, 0}},
{{STRING_WITH_LEN("Username")},
{STRING_WITH_LEN("char(64)")},
{nullptr, 0}},
{{STRING_WITH_LEN("Password")},
{STRING_WITH_LEN("char(64)")},
{nullptr, 0}},
{{STRING_WITH_LEN("Port")}, {STRING_WITH_LEN("int")}, {nullptr, 0}},
{{STRING_WITH_LEN("Socket")},
{STRING_WITH_LEN("char(64)")},
{nullptr, 0}},
{{STRING_WITH_LEN("Wrapper")},
{STRING_WITH_LEN("char(64)")},
{nullptr, 0}},
{{STRING_WITH_LEN("Owner")},
{STRING_WITH_LEN("char(64)")},
{nullptr, 0}}};
static const TABLE_FIELD_DEF mysql_servers_table_def = {
MYSQL_SERVERS_TABLE_FIELD_COUNT, mysql_servers_table_fields};
static bool get_server_from_table_to_cache(TABLE *table);
#ifdef HAVE_PSI_INTERFACE
static PSI_rwlock_key key_rwlock_THR_LOCK_servers;
static PSI_rwlock_info all_servers_cache_rwlocks[] = {
{&key_rwlock_THR_LOCK_servers, "THR_LOCK_servers", PSI_FLAG_SINGLETON, 0,
PSI_DOCUMENT_ME}};
static PSI_memory_info all_servers_cache_memory[] = {
{&key_memory_servers, "servers_cache", PSI_FLAG_ONLY_GLOBAL_STAT, 0,
"Cache infrastructure and mem root for servers cache."}};
static void init_servers_cache_psi_keys(void) {
const char *category = "sql";
int count;
count = static_cast<int>(array_elements(all_servers_cache_rwlocks));
mysql_rwlock_register(category, all_servers_cache_rwlocks, count);
count = static_cast<int>(array_elements(all_servers_cache_memory));
mysql_memory_register(category, all_servers_cache_memory, count);
}
#endif /* HAVE_PSI_INTERFACE */
/*
Initialize structures responsible for servers used in federated
server scheme information for them from the server
table in the 'mysql' database.
SYNOPSIS
servers_init()
thd thread for reading the servers table and initializing necessary
structures.
NOTES
This function is mostly responsible for preparatory steps, main work
on initialization and grants loading is done in servers_reload().
RETURN VALUES
0 ok
1 Could not initialize servers
*/
bool servers_init(THD *thd) {
bool return_val = false;
DBUG_TRACE;
#ifdef HAVE_PSI_INTERFACE
init_servers_cache_psi_keys();
#endif
/* init the mutex */
if (mysql_rwlock_init(key_rwlock_THR_LOCK_servers, &THR_LOCK_servers))
return true;
/* initialise our servers cache */
servers_cache = new collation_unordered_map<std::string, FOREIGN_SERVER *>(
system_charset_info, key_memory_servers);
/* Initialize the mem root for data */
init_sql_alloc(key_memory_servers, &mem, ACL_ALLOC_BLOCK_SIZE);
if (thd == nullptr) {
/* To be able to run this from boot, we allocate a temporary THD. */
thd = new (std::nothrow) THD;
if (thd == nullptr) return true;
thd->thread_stack = (char *)&thd;
thd->store_globals();
/*
It is safe to call servers_reload() since servers_* arrays and hashes
which will be freed there are global static objects and thus are
initialized by zeros at startup.
*/
return_val = servers_reload(thd);
delete thd;
return return_val;
}
return servers_reload(thd);
}
/*
Initialize server structures
SYNOPSIS
servers_load()
thd Current thread
tables List containing open "mysql.servers"
RETURN VALUES
false Success
true Error
TODO
Revert back to old list if we failed to load new one.
*/
static bool servers_load(THD *thd, TABLE *table) {
DBUG_TRACE;
if (servers_cache != nullptr) {
servers_cache->clear();
}
mem.Clear();
init_sql_alloc(key_memory_servers, &mem, ACL_ALLOC_BLOCK_SIZE);
unique_ptr_destroy_only<RowIterator> iterator =
init_table_iterator(thd, table, /*ignore_not_found_rows=*/false,
/*count_examined_rows=*/false);
if (iterator == nullptr) return true;
while (!(iterator->Read())) {
if ((get_server_from_table_to_cache(table))) return true;
}
return false;
}
/*
Forget current servers cache and read new servers
from the connection table.
SYNOPSIS
servers_reload()
thd Current thread
NOTE
All tables of calling thread which were open and locked by LOCK TABLES
statement will be unlocked and closed.
This function is also used for initialization of structures responsible
for user/db-level privilege checking.
RETURN VALUE
false Success
true Failure
*/
bool servers_reload(THD *thd) {
bool return_val = true;
DBUG_TRACE;
DBUG_PRINT("info", ("locking servers_cache"));
mysql_rwlock_wrlock(&THR_LOCK_servers);
Table_ref tables("mysql", "servers", TL_READ);
if (open_trans_system_tables_for_read(thd, &tables)) {
/*
Execution might have been interrupted; only print the error message
if an error condition has been raised.
*/
if (thd->get_stmt_da()->is_error())
LogErr(ERROR_LEVEL, ER_CANT_OPEN_AND_LOCK_PRIVILEGE_TABLES,
thd->get_stmt_da()->message_text());
goto end;
}
if ((return_val =
servers_load(thd, tables.table))) { // Error. Revert to old list
/* blast, for now, we have no servers, discuss later way to preserve */
DBUG_PRINT("error", ("Reverting to old privileges"));
servers_free();
}
close_trans_system_tables(thd);
end:
DBUG_PRINT("info", ("unlocking servers_cache"));
mysql_rwlock_unlock(&THR_LOCK_servers);
return return_val;
}
/*
Initialize structures responsible for servers used in federated
server scheme information for them from the server
table in the 'mysql' database.
SYNOPSIS
get_server_from_table_to_cache()
TABLE *table open table pointer
NOTES
This function takes a TABLE pointer (pointing to an opened
table). With this open table, a FOREIGN_SERVER struct pointer
is allocated into root memory, then each member of the FOREIGN_SERVER
struct is populated. A char pointer takes the return value of get_field
for each column we're interested in obtaining, and if that pointer
isn't 0x0, the FOREIGN_SERVER member is set to that value, otherwise,
is set to the value of an empty string, since get_field would set it to
0x0 if the column's value is empty, even if the default value for that
column is NOT NULL.
RETURN VALUES
0 ok
1 could not insert server struct into global servers cache
*/
static bool get_server_from_table_to_cache(TABLE *table) {
/* alloc a server struct */
char *ptr;
char *blank = const_cast<char *>("");
FOREIGN_SERVER *server = new (&mem) FOREIGN_SERVER();
DBUG_TRACE;
table->use_all_columns();
/* get each field into the server struct ptr */
ptr = get_field(&mem, table->field[SERVERS_FIELD_NAME]);
server->server_name = ptr ? ptr : blank;
server->server_name_length = strlen(server->server_name);
ptr = get_field(&mem, table->field[SERVERS_FIELD_HOST]);
server->host = ptr ? ptr : blank;
ptr = get_field(&mem, table->field[SERVERS_FIELD_DB]);
server->db = ptr ? ptr : blank;
ptr = get_field(&mem, table->field[SERVERS_FIELD_USERNAME]);
server->username = ptr ? ptr : blank;
ptr = get_field(&mem, table->field[SERVERS_FIELD_PASSWORD]);
server->password = ptr ? ptr : blank;
ptr = get_field(&mem, table->field[SERVERS_FIELD_PORT]);
server->sport = ptr ? ptr : blank;
server->port = server->sport ? atoi(server->sport) : 0;
ptr = get_field(&mem, table->field[SERVERS_FIELD_SOCKET]);
server->socket = ptr && strlen(ptr) ? ptr : blank;
ptr = get_field(&mem, table->field[SERVERS_FIELD_SCHEME]);
server->scheme = ptr ? ptr : blank;
ptr = get_field(&mem, table->field[SERVERS_FIELD_OWNER]);
server->owner = ptr ? ptr : blank;
DBUG_PRINT("info", ("server->server_name %s", server->server_name));
DBUG_PRINT("info", ("server->host %s", server->host));
DBUG_PRINT("info", ("server->db %s", server->db));
DBUG_PRINT("info", ("server->username %s", server->username));
DBUG_PRINT("info", ("server->password %s", server->password));
DBUG_PRINT("info", ("server->socket %s", server->socket));
servers_cache->emplace(server->server_name, server);
return false;
}
/**
Close all tables which match specified connection string or
if specified string is NULL, then any table with a connection string.
*/
static bool close_cached_connection_tables(THD *thd,
const char *connection_string,
size_t connection_length) {
Table_ref tmp, *tables = nullptr;
bool result = false;
DBUG_TRACE;
assert(thd);
mysql_mutex_lock(&LOCK_open);
for (const auto &key_and_value : *table_def_cache) {
TABLE_SHARE *share = key_and_value.second.get();
/*
Skip table shares being opened to avoid comparison reading into
uninitialized memory further below.
Thus, in theory, there is a risk that shares are left in the
cache that should really be closed (matching the submitted
connection string), and this risk is already present since
LOCK_open is unlocked before calling this function. However,
this function is called as the final step of DROP/ALTER SERVER,
so its goal is to flush all tables which were open before
DROP/ALTER SERVER started. Thus, if a share gets opened after
this function is called, the information about the server has
already been updated, so the new table will use the new
definition of the server.
It might have been an issue, however if one thread started
opening a federated table, read the old server definition into a
share, and then a switch to another thread doing ALTER SERVER
happened right before setting m_open_in_progress to false for
the share. Because in this case ALTER SERVER would not flush
the share opened by the first thread as it should have been. But
luckily, server definitions affected by * SERVER statements are
not read into TABLE_SHARE structures, but are read when we
create the TABLE object in ha_federated::open().
This means that ignoring shares that are in the process of being
opened is safe, because such shares don't have TABLE objects
associated with them yet.
*/
if (share->m_open_in_progress) continue;
/* Ignore if table is not open or does not have a connect_string */
if (!share->connect_string.length || share->ref_count() == 0) continue;
/* Compare the connection string */
if (connection_string &&
(connection_length > share->connect_string.length ||
(connection_length < share->connect_string.length &&
(share->connect_string.str[connection_length] != '/' &&
share->connect_string.str[connection_length] != '\\')) ||
native_strncasecmp(connection_string, share->connect_string.str,
connection_length)))
continue;
/* close_cached_tables() only uses these elements */
tmp.db = share->db.str;
tmp.table_name = share->table_name.str;
tmp.next_local = tables;
tables = new (thd->mem_root) Table_ref(tmp);
}
mysql_mutex_unlock(&LOCK_open);
if (tables) result = close_cached_tables(thd, tables, false, LONG_TIMEOUT);
return result;
}
void Server_options::reset() {
m_server_name.str = nullptr;
m_server_name.length = 0;
m_port = PORT_NOT_SET;
m_host.str = nullptr;
m_host.length = 0;
m_db.str = nullptr;
m_db.length = 0;
m_username.str = nullptr;
m_db.length = 0;
m_password.str = nullptr;
m_password.length = 0;
m_scheme.str = nullptr;
m_scheme.length = 0;
m_socket.str = nullptr;
m_socket.length = 0;
m_owner.str = nullptr;
m_owner.length = 0;
}
bool Server_options::insert_into_cache() const {
char *unset_ptr = const_cast<char *>("");
DBUG_TRACE;
FOREIGN_SERVER *server = new (&mem) FOREIGN_SERVER();
if (!server) return true;
/* these two MUST be set */
if (!(server->server_name = strdup_root(&mem, m_server_name.str)))
return true;
server->server_name_length = m_server_name.length;
if (!(server->host = m_host.str ? strdup_root(&mem, m_host.str) : unset_ptr))
return true;
if (!(server->db = m_db.str ? strdup_root(&mem, m_db.str) : unset_ptr))
return true;
if (!(server->username =
m_username.str ? strdup_root(&mem, m_username.str) : unset_ptr))
return true;
if (!(server->password =
m_password.str ? strdup_root(&mem, m_password.str) : unset_ptr))
return true;
/* set to 0 if not specified */
server->port = m_port != PORT_NOT_SET ? m_port : 0;
if (!(server->socket =
m_socket.str ? strdup_root(&mem, m_socket.str) : unset_ptr))
return true;
if (!(server->scheme =
m_scheme.str ? strdup_root(&mem, m_scheme.str) : unset_ptr))
return true;
if (!(server->owner =
m_owner.str ? strdup_root(&mem, m_owner.str) : unset_ptr))
return true;
servers_cache->emplace(
std::string(server->server_name, server->server_name_length), server);
return false;
}
bool Server_options::update_cache(FOREIGN_SERVER *existing) const {
DBUG_TRACE;
/*
Note: Since the name can't change, we don't need to set it.
This also means we can just update the existing cache entry.
*/
/*
The logic here is this: is this value set AND is it different
than the existing value?
*/
if (m_host.str && strcmp(m_host.str, existing->host) &&
!(existing->host = strdup_root(&mem, m_host.str)))
return true;
if (m_db.str && strcmp(m_db.str, existing->db) &&
!(existing->db = strdup_root(&mem, m_db.str)))
return true;
if (m_username.str && strcmp(m_username.str, existing->username) &&
!(existing->username = strdup_root(&mem, m_username.str)))
return true;
if (m_password.str && strcmp(m_password.str, existing->password) &&
!(existing->password = strdup_root(&mem, m_password.str)))
return true;
/*
port is initialised to PORT_NOT_SET, so if unset, it will be -1
*/
if (m_port != PORT_NOT_SET && m_port != existing->port)
existing->port = m_port;
if (m_socket.str && strcmp(m_socket.str, existing->socket) &&
!(existing->socket = strdup_root(&mem, m_socket.str)))
return true;
if (m_scheme.str && strcmp(m_scheme.str, existing->scheme) &&
!(existing->scheme = strdup_root(&mem, m_scheme.str)))
return true;
if (m_owner.str && strcmp(m_owner.str, existing->owner) &&
!(existing->owner = strdup_root(&mem, m_owner.str)))
return true;
return false;
}
/**
Helper function for creating a record for inserting
a new server into the mysql.servers table.
Set a field to the given parser string. If the parser
string is empty, set the field to "" instead.
*/
static inline void store_new_field(TABLE *table, enum_servers_table_field field,
const LEX_STRING *val) {
if (val->str)
table->field[field]->store(val->str, val->length, system_charset_info);
else
table->field[field]->store("", 0U, system_charset_info);
}
void Server_options::store_new_server(TABLE *table) const {
store_new_field(table, SERVERS_FIELD_HOST, &m_host);
store_new_field(table, SERVERS_FIELD_DB, &m_db);
store_new_field(table, SERVERS_FIELD_USERNAME, &m_username);
store_new_field(table, SERVERS_FIELD_PASSWORD, &m_password);
if (m_port != PORT_NOT_SET)
table->field[SERVERS_FIELD_PORT]->store(m_port);
else
table->field[SERVERS_FIELD_PORT]->store(0);
store_new_field(table, SERVERS_FIELD_SOCKET, &m_socket);
store_new_field(table, SERVERS_FIELD_SCHEME, &m_scheme);
store_new_field(table, SERVERS_FIELD_OWNER, &m_owner);
}
/**
Helper function for creating a record for updating
an existing server in the mysql.servers table.
Set a field to the given parser string unless
the parser string is empty or equal to the existing value.
*/
static inline void store_updated_field(TABLE *table,
enum_servers_table_field field,
const char *existing_val,
const LEX_STRING *new_val) {
if (new_val->str && strcmp(new_val->str, existing_val))
table->field[field]->store(new_val->str, new_val->length,
system_charset_info);
}
void Server_options::store_altered_server(TABLE *table,
FOREIGN_SERVER *existing) const {
store_updated_field(table, SERVERS_FIELD_HOST, existing->host, &m_host);
store_updated_field(table, SERVERS_FIELD_DB, existing->db, &m_db);
store_updated_field(table, SERVERS_FIELD_USERNAME, existing->username,
&m_username);
store_updated_field(table, SERVERS_FIELD_PASSWORD, existing->password,
&m_password);
if (m_port != PORT_NOT_SET && m_port != existing->port)
table->field[SERVERS_FIELD_PORT]->store(m_port);
store_updated_field(table, SERVERS_FIELD_SOCKET, existing->socket, &m_socket);
store_updated_field(table, SERVERS_FIELD_SCHEME, existing->scheme, &m_scheme);
store_updated_field(table, SERVERS_FIELD_OWNER, existing->owner, &m_owner);
}
bool Sql_cmd_common_server::check_and_open_table(THD *thd) {
if (check_global_access(thd, SUPER_ACL) ||
acquire_shared_backup_lock(thd, thd->variables.lock_wait_timeout))
return true;
Table_ref tables("mysql", "servers", TL_WRITE);
table = open_ltable(thd, &tables, TL_WRITE, MYSQL_LOCK_IGNORE_TIMEOUT);
if (table == nullptr) return true;
/*
System table mysql.servers is supported by only InnoDB engine. Changing
table's engine is not allowed. But to support logical upgrade creating
system table is allowed in MyISAM engine. CREATE, ALTER and DROP SERVER
operations are not allowed in this case.
*/
if ((table->file->ht->is_supported_system_table != nullptr) &&
!table->file->ht->is_supported_system_table(tables.db, tables.table_name,
true)) {
my_error(ER_UNSUPPORTED_ENGINE, MYF(0),
ha_resolve_storage_engine_name(table->file->ht), tables.db,
tables.table_name);
return true;
}
/*
CREATE, ALTER and DROP SERVER operations are *not* allowed if table
structure is changed.
*/
System_table_intact table_intact(thd);
if (table_intact.check(thd, table, &mysql_servers_table_def)) return true;
return false;
}
bool Sql_cmd_create_server::execute(THD *thd) {
DBUG_TRACE;
if (Sql_cmd_common_server::check_and_open_table(thd)) return true;
// Check for existing cache entries with same name
mysql_rwlock_wrlock(&THR_LOCK_servers);
const auto it =
servers_cache->find(to_string(m_server_options->m_server_name));
if (it != servers_cache->end()) {
mysql_rwlock_unlock(&THR_LOCK_servers);
my_error(ER_FOREIGN_SERVER_EXISTS, MYF(0),
m_server_options->m_server_name.str);
trans_rollback_stmt(thd);
close_mysql_tables(thd);
return true;
}
int error;
{
const Disable_binlog_guard binlog_guard(thd);
table->use_all_columns();
empty_record(table);
/* set the field that's the PK to the value we're looking for */
table->field[SERVERS_FIELD_NAME]->store(
m_server_options->m_server_name.str,
m_server_options->m_server_name.length, system_charset_info);
/* read index until record is that specified in server_name */
error = table->file->ha_index_read_idx_map(
table->record[0], 0, table->field[SERVERS_FIELD_NAME]->field_ptr(),
HA_WHOLE_KEY, HA_READ_KEY_EXACT);
if (!error) {
my_error(ER_FOREIGN_SERVER_EXISTS, MYF(0),
m_server_options->m_server_name.str);
error = 1;
} else if (error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE) {
/* if not found, err */
table->file->print_error(error, MYF(0));
} else {
/* store each field to be inserted */
m_server_options->store_new_server(table);
/* write/insert the new server */
if ((error = table->file->ha_write_row(table->record[0])))
table->file->print_error(error, MYF(0));
else {
/* insert the server into the cache */
if ((error = m_server_options->insert_into_cache()))
my_error(ER_OUT_OF_RESOURCES, MYF(0));
}
}
}
mysql_rwlock_unlock(&THR_LOCK_servers);
if (error)
trans_rollback_stmt(thd);
else
trans_commit_stmt(thd);
close_mysql_tables(thd);
if (error == 0 && !thd->killed) my_ok(thd, 1);
return error != 0 || thd->killed;
}
bool Sql_cmd_alter_server::execute(THD *thd) {
DBUG_TRACE;
if (Sql_cmd_common_server::check_and_open_table(thd)) return true;
// Find existing cache entry to update
mysql_rwlock_wrlock(&THR_LOCK_servers);
const auto it =
servers_cache->find(to_string(m_server_options->m_server_name));
if (it == servers_cache->end()) {
my_error(ER_FOREIGN_SERVER_DOESNT_EXIST, MYF(0),
m_server_options->m_server_name.str);
mysql_rwlock_unlock(&THR_LOCK_servers);
trans_rollback_stmt(thd);
close_mysql_tables(thd);
return true;
}
FOREIGN_SERVER *existing = it->second;
int error;
{
const Disable_binlog_guard binlog_guard(thd);
table->use_all_columns();
/* set the field that's the PK to the value we're looking for */
table->field[SERVERS_FIELD_NAME]->store(
m_server_options->m_server_name.str,
m_server_options->m_server_name.length, system_charset_info);
error = table->file->ha_index_read_idx_map(
table->record[0], 0, table->field[SERVERS_FIELD_NAME]->field_ptr(),
~(longlong)0, HA_READ_KEY_EXACT);
if (error) {
if (error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE)
table->file->print_error(error, MYF(0));
else
my_error(ER_FOREIGN_SERVER_DOESNT_EXIST, MYF(0),
m_server_options->m_server_name.str);
} else {
/* ok, so we can update since the record exists in the table */
store_record(table, record[1]);
m_server_options->store_altered_server(table, existing);
if ((error = table->file->ha_update_row(table->record[1],
table->record[0])) &&
error != HA_ERR_RECORD_IS_THE_SAME)
table->file->print_error(error, MYF(0));
else {
// Update cache entry
if ((error = m_server_options->update_cache(existing)))
my_error(ER_OUT_OF_RESOURCES, MYF(0));
}
}
}
/* Perform a reload so we don't have a 'hole' in our mem_root */
servers_load(thd, table);
// NOTE: servers_load() must be called under acquired THR_LOCK_servers.
mysql_rwlock_unlock(&THR_LOCK_servers);
if (error)
trans_rollback_stmt(thd);
else
trans_commit_stmt(thd);
close_mysql_tables(thd);
if (close_cached_connection_tables(thd, m_server_options->m_server_name.str,
m_server_options->m_server_name.length)) {
push_warning(thd, Sql_condition::SL_WARNING, ER_UNKNOWN_ERROR,
"Server connection in use");
}
if (error == 0 && !thd->killed) my_ok(thd, 1);
return error != 0 || thd->killed;
}
bool Sql_cmd_drop_server::execute(THD *thd) {
DBUG_TRACE;
if (Sql_cmd_common_server::check_and_open_table(thd)) return true;
int error;
mysql_rwlock_wrlock(&THR_LOCK_servers);
{
const Disable_binlog_guard binlog_guard(thd);
table->use_all_columns();
/* set the field that's the PK to the value we're looking for */
table->field[SERVERS_FIELD_NAME]->store(
m_server_name.str, m_server_name.length, system_charset_info);
error = table->file->ha_index_read_idx_map(
table->record[0], 0, table->field[SERVERS_FIELD_NAME]->field_ptr(),
HA_WHOLE_KEY, HA_READ_KEY_EXACT);
if (error) {
if (error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE)
table->file->print_error(error, MYF(0));
else if (!m_if_exists)
my_error(ER_FOREIGN_SERVER_DOESNT_EXIST, MYF(0), m_server_name.str);
else
error = 0; // Reset error - we will report my_ok() in this case.
} else {
// Delete from table
if ((error = table->file->ha_delete_row(table->record[0])))
table->file->print_error(error, MYF(0));
else {
// Remove from cache
size_t num_erased = servers_cache->erase(to_string(m_server_name));
if (num_erased == 0 && !m_if_exists) {
my_error(ER_FOREIGN_SERVER_DOESNT_EXIST, MYF(0), m_server_name.str);
error = 1;
}
}
}
}
mysql_rwlock_unlock(&THR_LOCK_servers);
if (error)
trans_rollback_stmt(thd);
else
trans_commit_stmt(thd);
close_mysql_tables(thd);
if (close_cached_connection_tables(thd, m_server_name.str,
m_server_name.length)) {
push_warning(thd, Sql_condition::SL_WARNING, ER_UNKNOWN_ERROR,
"Server connection in use");
}
if (error == 0 && !thd->killed) my_ok(thd, 1);
return error != 0 || thd->killed;
}
void servers_free(bool end) {
DBUG_TRACE;
if (servers_cache == nullptr) return;
if (!end) {
mem.ClearForReuse();
servers_cache->clear();
return;
}
mysql_rwlock_destroy(&THR_LOCK_servers);
mem.Clear();
delete servers_cache;
servers_cache = nullptr;
}
/*
SYNOPSIS
clone_server(MEM_ROOT *mem_root, FOREIGN_SERVER *orig, FOREIGN_SERVER *buff)
Create a clone of FOREIGN_SERVER. If the supplied mem_root is of
thd->mem_root then the copy is automatically disposed at end of statement.
NOTES
ARGS
MEM_ROOT pointer (strings are copied into this mem root)
FOREIGN_SERVER pointer (made a copy of)
FOREIGN_SERVER buffer (if not-NULL, this pointer is returned)
RETURN VALUE
FOREIGN_SEVER pointer (copy of one supplied FOREIGN_SERVER)
*/
static FOREIGN_SERVER *clone_server(MEM_ROOT *mem, const FOREIGN_SERVER *server,
FOREIGN_SERVER *buffer) {
DBUG_TRACE;
if (!buffer) buffer = new (mem) FOREIGN_SERVER();
buffer->server_name =
strmake_root(mem, server->server_name, server->server_name_length);
buffer->port = server->port;
buffer->server_name_length = server->server_name_length;
/* TODO: We need to examine which of these can really be NULL */
buffer->db = server->db ? strdup_root(mem, server->db) : nullptr;
buffer->scheme = server->scheme ? strdup_root(mem, server->scheme) : nullptr;
buffer->username =
server->username ? strdup_root(mem, server->username) : nullptr;
buffer->password =
server->password ? strdup_root(mem, server->password) : nullptr;
buffer->socket = server->socket ? strdup_root(mem, server->socket) : nullptr;
buffer->owner = server->owner ? strdup_root(mem, server->owner) : nullptr;
buffer->host = server->host ? strdup_root(mem, server->host) : nullptr;
return buffer;
}
FOREIGN_SERVER *get_server_by_name(MEM_ROOT *mem, const char *server_name,
FOREIGN_SERVER *buff) {
size_t server_name_length;
FOREIGN_SERVER *server = nullptr;
DBUG_TRACE;
DBUG_EXECUTE_IF("bug33962357_simulate_null_server",
{ server_name = nullptr; });
if (!server_name || !strlen(server_name)) {
DBUG_PRINT("info", ("server_name not defined!"));
return nullptr;
}
DBUG_PRINT("info", ("server_name %s", server_name));
server_name_length = strlen(server_name);
const std::string str_server(server_name, server_name_length);
DBUG_PRINT("info", ("locking servers_cache"));
mysql_rwlock_rdlock(&THR_LOCK_servers);
collation_unordered_map<std::string, FOREIGN_SERVER *> *cache = servers_cache;
DBUG_EXECUTE_IF("bug33962357_simulate_null_cache", { cache = nullptr; });
if (!cache) {
DBUG_PRINT("error", ("server_cache not initialized!"));
} else {
const auto it = cache->find(str_server);
if (it == cache->end()) {
DBUG_PRINT("info", ("server_name %s length %u not found!", server_name,
(unsigned)server_name_length));
}
/* otherwise, make copy of server */
else
server = clone_server(mem, it->second, buff);
}
DBUG_PRINT("info", ("unlocking servers_cache"));
mysql_rwlock_unlock(&THR_LOCK_servers);
return server;
}