/* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. 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 */ /** @file storage/perfschema/table_data_lock_waits.cc Table DATA_LOCK_WAITS (implementation). */ #include "storage/perfschema/table_data_lock_waits.h" #include #include "my_compiler.h" #include "my_dbug.h" #include "my_inttypes.h" #include "my_thread.h" #include "sql/field.h" #include "sql/plugin_table.h" #include "sql/table.h" #include "storage/perfschema/pfs_buffer_container.h" #include "storage/perfschema/pfs_column_types.h" #include "storage/perfschema/pfs_column_values.h" #include "storage/perfschema/pfs_global.h" #include "storage/perfschema/pfs_instr.h" THR_LOCK table_data_lock_waits::m_table_lock; Plugin_table table_data_lock_waits::m_table_def( /* Schema name */ "performance_schema", /* Name */ "data_lock_waits", /* Definition */ " ENGINE VARCHAR(32) not null,\n" " REQUESTING_ENGINE_LOCK_ID VARCHAR(128) not null,\n" " REQUESTING_ENGINE_TRANSACTION_ID BIGINT unsigned,\n" " REQUESTING_THREAD_ID BIGINT unsigned,\n" " REQUESTING_EVENT_ID BIGINT unsigned,\n" " REQUESTING_OBJECT_INSTANCE_BEGIN BIGINT unsigned not null,\n" " BLOCKING_ENGINE_LOCK_ID VARCHAR(128) not null,\n" " BLOCKING_ENGINE_TRANSACTION_ID BIGINT unsigned,\n" " BLOCKING_THREAD_ID BIGINT unsigned,\n" " BLOCKING_EVENT_ID BIGINT unsigned,\n" " BLOCKING_OBJECT_INSTANCE_BEGIN BIGINT unsigned not null,\n" " KEY (REQUESTING_ENGINE_LOCK_ID, ENGINE) USING HASH,\n" " KEY (BLOCKING_ENGINE_LOCK_ID, ENGINE) USING HASH,\n" " KEY (REQUESTING_ENGINE_TRANSACTION_ID, ENGINE) USING HASH,\n" " KEY (BLOCKING_ENGINE_TRANSACTION_ID, ENGINE) USING HASH,\n" " KEY (REQUESTING_THREAD_ID, REQUESTING_EVENT_ID) USING HASH,\n" " KEY (BLOCKING_THREAD_ID, BLOCKING_EVENT_ID) USING HASH\n", /* Options */ " ENGINE=PERFORMANCE_SCHEMA", /* Tablespace */ nullptr); PFS_engine_table_share table_data_lock_waits::m_share = { &pfs_readonly_acl, table_data_lock_waits::create, NULL, /* write_row */ NULL, /* delete_all_rows */ table_data_lock_waits::get_row_count, sizeof(pk_pos_t), &m_table_lock, &m_table_def, false, /* perpetual */ PFS_engine_table_proxy(), {0}, false /* m_in_purgatory */ }; PFS_engine_table *table_data_lock_waits::create(PFS_engine_table_share *) { return new table_data_lock_waits(); } ha_rows table_data_lock_waits::get_row_count(void) { // FIXME return 99999; } table_data_lock_waits::table_data_lock_waits() : PFS_engine_table(&m_share, &m_pk_pos), m_row(NULL), m_pos(), m_next_pos(), m_pk_pos() { for (unsigned int i = 0; i < COUNT_DATA_LOCK_ENGINES; i++) { m_iterator[i] = NULL; } } void table_data_lock_waits::destroy_iterators() { for (unsigned int i = 0; i < COUNT_DATA_LOCK_ENGINES; i++) { if (m_iterator[i] != NULL) { g_data_lock_inspector[i]->destroy_data_lock_wait_iterator(m_iterator[i]); m_iterator[i] = NULL; } } } table_data_lock_waits::~table_data_lock_waits() { destroy_iterators(); } void table_data_lock_waits::reset_position(void) { m_pos.reset(); m_next_pos.reset(); m_pk_pos.reset(); m_container.clear(); destroy_iterators(); } int table_data_lock_waits::rnd_next(void) { row_data_lock_wait *data; for (m_pos.set_at(&m_next_pos); m_pos.has_more_engine(); m_pos.next_engine()) { unsigned int index = m_pos.m_index_1; if (m_iterator[index] == NULL) { if (g_data_lock_inspector[index] == NULL) { continue; } m_iterator[index] = g_data_lock_inspector[index]->create_data_lock_wait_iterator(); if (m_iterator[index] == NULL) { continue; } } bool iterator_done = false; PSI_engine_data_lock_wait_iterator *it = m_iterator[index]; for (;;) { data = m_container.get_row(m_pos.m_index_2); if (data != NULL) { m_row = data; m_next_pos.set_after(&m_pos); m_pk_pos.set(&m_row->m_hidden_pk); return 0; } if (iterator_done) { break; } m_container.shrink(); /* PSI_engine_data_lock_iterator::scan() can return an unbounded number of rows during a scan, depending on the application payload, as some user sessions may have an unbounded number or records locked. This can cause severe memory spike, which in turn can take the server down if not handled properly. Here a select on the table performance_schema.data_lock_waits will fail with an error, instead of taking the server down, if out of memory conditions occur. This is a fail safe only, the implementation of PSI_engine_data_lock_iterator::scan() in each storage engine should be constrained to return fewer rows at a time if necessary, by making more calls to scan(), to handle the load gracefully. */ try { DBUG_EXECUTE_IF("simulate_bad_alloc_exception_2", throw std::bad_alloc();); iterator_done = it->scan(&m_container); } catch (const std::bad_alloc &) { my_error(ER_STD_BAD_ALLOC_ERROR, MYF(0), "while scanning data_lock_waits table", "rnd_next"); return ER_STD_BAD_ALLOC_ERROR; } } } return HA_ERR_END_OF_FILE; } int table_data_lock_waits::rnd_pos(const void *pos) { row_data_lock_wait *data; set_position(pos); /* TODO: Multiple engine support. Find the proper engine based on column ENGINE. */ static_assert(COUNT_DATA_LOCK_ENGINES == 1, "We don't support multiple engines yet."); unsigned int index = 0; if (m_iterator[index] == NULL) { if (g_data_lock_inspector[index] == NULL) { return HA_ERR_RECORD_DELETED; } m_iterator[index] = g_data_lock_inspector[index]->create_data_lock_wait_iterator(); if (m_iterator[index] == NULL) { return HA_ERR_RECORD_DELETED; } } PSI_engine_data_lock_wait_iterator *it = m_iterator[index]; m_container.clear(); it->fetch(&m_container, m_pk_pos.m_requesting_engine_lock_id, m_pk_pos.m_requesting_engine_lock_id_length, m_pk_pos.m_blocking_engine_lock_id, m_pk_pos.m_blocking_engine_lock_id_length); data = m_container.get_row(0); if (data != NULL) { m_row = data; return 0; } return HA_ERR_RECORD_DELETED; } int table_data_lock_waits::index_init(uint idx, bool) { PFS_index_data_lock_waits *result = NULL; switch (idx) { case 0: result = PFS_NEW(PFS_index_data_lock_waits_by_requesting_lock_id); break; case 1: result = PFS_NEW(PFS_index_data_lock_waits_by_blocking_lock_id); break; case 2: result = PFS_NEW(PFS_index_data_lock_waits_by_requesting_transaction_id); break; case 3: result = PFS_NEW(PFS_index_data_lock_waits_by_blocking_transaction_id); break; case 4: result = PFS_NEW(PFS_index_data_lock_waits_by_requesting_thread_id); break; case 5: result = PFS_NEW(PFS_index_data_lock_waits_by_blocking_thread_id); break; default: DBUG_ASSERT(false); break; } m_opened_index = result; m_index = result; m_container.set_filter(m_opened_index); return 0; } int table_data_lock_waits::index_next() { return rnd_next(); } int table_data_lock_waits::read_row_values(TABLE *table, unsigned char *buf, Field **fields, bool read_all) { Field *f; if (unlikely(m_row == NULL)) { return HA_ERR_RECORD_DELETED; } /* Set the null bits */ DBUG_ASSERT(table->s->null_bytes == 1); buf[0] = 0; for (; (f = *fields); fields++) { if (read_all || bitmap_is_set(table->read_set, f->field_index)) { switch (f->field_index) { case 0: /* ENGINE */ set_field_varchar_utf8(f, m_row->m_engine); break; case 1: /* REQUESTING_ENGINE_LOCK_ID */ set_field_varchar_utf8( f, m_row->m_hidden_pk.m_requesting_engine_lock_id, m_row->m_hidden_pk.m_requesting_engine_lock_id_length); break; case 2: /* REQUESTING_ENGINE_TRANSACTION_ID */ set_field_ulonglong(f, m_row->m_requesting_transaction_id); break; case 3: /* REQUESTING_THREAD_ID */ set_field_ulonglong(f, m_row->m_requesting_thread_id); break; case 4: /* REQUESTING_EVENT_ID */ set_field_ulonglong(f, m_row->m_requesting_event_id); break; case 5: /* REQUESTING_OBJECT_INSTANCE_BEGIN */ set_field_ulonglong(f, (intptr)m_row->m_requesting_identity); break; case 6: /* BLOCKING_ENGINE_LOCK_ID */ set_field_varchar_utf8( f, m_row->m_hidden_pk.m_blocking_engine_lock_id, m_row->m_hidden_pk.m_blocking_engine_lock_id_length); break; case 7: /* BLOCKING_ENGINE_TRANSACTION_ID */ set_field_ulonglong(f, m_row->m_blocking_transaction_id); break; case 8: /* BLOCKING_THREAD_ID */ set_field_ulonglong(f, m_row->m_blocking_thread_id); break; case 9: /* BLOCKING_EVENT_ID */ set_field_ulonglong(f, m_row->m_blocking_event_id); break; case 10: /* BLOCKING_OBJECT_INSTANCE_BEGIN */ set_field_ulonglong(f, (intptr)m_row->m_blocking_identity); break; default: DBUG_ASSERT(false); } } } return 0; }