Server IP : 172.67.216.182 / Your IP : 162.158.189.201 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/sql/ |
Upload File : |
/* Copyright (c) 2011, 2023, 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 also distributed 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 included with MySQL. 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 "rpl_gtid.h" #include "mysqld_error.h" // ER_* PSI_memory_key key_memory_Sid_map_Node; Sid_map::Sid_map(Checkable_rwlock *_sid_lock) : sid_lock(_sid_lock), _sidno_to_sid(key_memory_Sid_map_Node), _sorted(key_memory_Sid_map_Node) { DBUG_ENTER("Sid_map::Sid_map"); my_hash_init(&_sid_to_sidno, &my_charset_bin, 20, offsetof(Node, sid.bytes), binary_log::Uuid::BYTE_LENGTH, NULL, my_free, 0, key_memory_Sid_map_Node); DBUG_VOID_RETURN; } Sid_map::~Sid_map() { DBUG_ENTER("Sid_map::~Sid_map"); my_hash_free(&_sid_to_sidno); DBUG_VOID_RETURN; } /* This code is not being used but we will keep it as it may be useful to optimize gtids by avoiding sharing mappings from sid to sidno. For instance, the IO Thread and the SQL Thread may have different mappings in the future. */ #ifdef NON_DISABLED_GTID enum_return_status Sid_map::clear() { DBUG_ENTER("Sid_map::clear"); my_hash_free(&_sid_to_sidno); my_hash_init(&_sid_to_sidno, &my_charset_bin, 20, offsetof(Node, sid.bytes), binary_log::Uuid::BYTE_LENGTH, NULL, my_free, 0); _sidno_to_sid.clear(); _sorted.clear(); RETURN_OK; } #endif rpl_sidno Sid_map::add_sid(const rpl_sid &sid) { DBUG_ENTER("Sid_map::add_sid(const rpl_sid *)"); #ifndef NDEBUG char buf[binary_log::Uuid::TEXT_LENGTH + 1]; sid.to_string(buf); DBUG_PRINT("info", ("SID=%s", buf)); #endif if (sid_lock) sid_lock->assert_some_lock(); Node *node= (Node *)my_hash_search(&_sid_to_sidno, sid.bytes, binary_log::Uuid::BYTE_LENGTH); if (node != NULL) { DBUG_PRINT("info", ("existed as sidno=%d", node->sidno)); DBUG_RETURN(node->sidno); } bool is_wrlock= false; if (sid_lock) { is_wrlock= sid_lock->is_wrlock(); if (!is_wrlock) { sid_lock->unlock(); sid_lock->wrlock(); } } DBUG_PRINT("info", ("is_wrlock=%d sid_lock=%p", is_wrlock, sid_lock)); rpl_sidno sidno; node= (Node *)my_hash_search(&_sid_to_sidno, sid.bytes, binary_log::Uuid::BYTE_LENGTH); if (node != NULL) sidno= node->sidno; else { sidno= get_max_sidno() + 1; if (add_node(sidno, sid) != RETURN_STATUS_OK) sidno= -1; } if (sid_lock) { if (!is_wrlock) { sid_lock->unlock(); sid_lock->rdlock(); } } DBUG_RETURN(sidno); } enum_return_status Sid_map::add_node(rpl_sidno sidno, const rpl_sid &sid) { DBUG_ENTER("Sid_map::add_node(rpl_sidno, const rpl_sid *)"); if (sid_lock) sid_lock->assert_some_wrlock(); Node *node= (Node *)my_malloc(key_memory_Sid_map_Node, sizeof(Node), MYF(MY_WME)); if (node == NULL) RETURN_REPORTED_ERROR; node->sidno= sidno; node->sid= sid; if (!_sidno_to_sid.push_back(node)) { if (!_sorted.push_back(sidno)) { if (my_hash_insert(&_sid_to_sidno, (uchar *)node) == 0) { #ifdef MYSQL_SERVER /* If this is the global_sid_map, we take the opportunity to resize all arrays in gtid_state while holding the wrlock. */ if (this != global_sid_map || gtid_state->ensure_sidno() == RETURN_STATUS_OK) #endif { // We have added one element to the end of _sorted. Now we // bubble it down to the sorted position. int sorted_i= sidno - 1; rpl_sidno *prev_sorted_p= &_sorted[sorted_i]; sorted_i--; while (sorted_i >= 0) { rpl_sidno *sorted_p= &_sorted[sorted_i]; const rpl_sid &other_sid= sidno_to_sid(*sorted_p); if (memcmp(sid.bytes, other_sid.bytes, binary_log::Uuid::BYTE_LENGTH) >= 0) break; memcpy(prev_sorted_p, sorted_p, sizeof(rpl_sidno)); sorted_i--; prev_sorted_p= sorted_p; } memcpy(prev_sorted_p, &sidno, sizeof(rpl_sidno)); RETURN_OK; } } _sorted.pop_back(); } _sidno_to_sid.pop_back(); } my_free(node); BINLOG_ERROR(("Out of memory."), (ER_OUT_OF_RESOURCES, MYF(0))); RETURN_REPORTED_ERROR; } enum_return_status Sid_map::copy(Sid_map *dest) { DBUG_ENTER("Sid_map::copy(Sid_map)"); enum_return_status return_status= RETURN_STATUS_OK; rpl_sidno max_sidno= get_max_sidno(); for (rpl_sidno sidno= 1; sidno <= max_sidno && return_status == RETURN_STATUS_OK; sidno++) { rpl_sid sid; sid.copy_from(sidno_to_sid(sidno)); return_status= dest->add_node(sidno, sid); } DBUG_RETURN(return_status); }