mysql-server/sql/sql_show_processlist.cc
2025-03-05 14:31:37 +07:00

257 lines
9.8 KiB
C++

/* Copyright (c) 2016, 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 <stddef.h>
#include "sql/sql_show_processlist.h"
#include "lex_string.h"
#include "sql/auth/auth_acls.h"
#include "sql/debug_sync.h"
#include "sql/item_cmpfunc.h" // Item_func_like
#include "sql/item_func.h" // Item_func_connection_id
#include "sql/mem_root_array.h"
#include "sql/parse_tree_items.h" // PTI_simple_ident_ident
#include "sql/parse_tree_nodes.h" // PT_select_item_list
#include "sql/sql_class.h" // THD
#include "sql/sql_const.h" // PROCESS_LIST_WIDTH
#include "sql/sql_lex.h" // Query_options
#include "sql/sql_parse.h" // check_table_access
#include "sql/strfunc.h"
#include "sql_string.h"
#include "string_with_len.h"
/**
Implement SHOW PROCESSLIST by using performance schema.processlist
*/
bool pfs_processlist_enabled = false;
static const LEX_CSTRING field_id = {STRING_WITH_LEN("ID")};
static const LEX_CSTRING alias_id = {STRING_WITH_LEN("Id")};
static const LEX_CSTRING field_user = {STRING_WITH_LEN("USER")};
static const LEX_CSTRING alias_user = {STRING_WITH_LEN("User")};
static const LEX_CSTRING field_host = {STRING_WITH_LEN("HOST")};
static const LEX_CSTRING alias_host = {STRING_WITH_LEN("Host")};
static const LEX_CSTRING field_db = {STRING_WITH_LEN("DB")};
static const LEX_CSTRING alias_db = {STRING_WITH_LEN("db")};
static const LEX_CSTRING field_command = {STRING_WITH_LEN("COMMAND")};
static const LEX_CSTRING alias_command = {STRING_WITH_LEN("Command")};
static const LEX_CSTRING field_time = {STRING_WITH_LEN("TIME")};
static const LEX_CSTRING alias_time = {STRING_WITH_LEN("Time")};
static const LEX_CSTRING field_state = {STRING_WITH_LEN("STATE")};
static const LEX_CSTRING alias_state = {STRING_WITH_LEN("State")};
static const LEX_CSTRING field_info = {STRING_WITH_LEN("INFO")};
static const LEX_CSTRING alias_info = {STRING_WITH_LEN("Info")};
static const LEX_CSTRING pfs = {STRING_WITH_LEN("performance_schema")};
static const LEX_CSTRING table_processlist = {STRING_WITH_LEN("processlist")};
static const Query_options options = {
0 /* query_spec_options */
};
/**
Build a replacement query for SHOW PROCESSLIST.
When the parser accepts the following syntax:
<code>
SHOW [FULL] PROCESSLIST
</code>
the parsed tree built for this query is in fact:
<code>
SELECT * FROM
(SELECT ID Id, USER User, HOST Host, DB db, COMMAND Command,
TIME Time, STATE State, LEFT(INFO, <info_len>) Info
FROM performance_schema.processlist)
AS show_processlist;
</code>
where @c info_len is 100 by default, otherwise 1024 for FULL PROCESSLIST.
MAINTAINER:
This code builds a parsed tree for a query.
Write the query to build in SQL first, then see turn_parser_debug_on()
in sql_yacc.yy to understand which grammar actions are needed to build
a parsed tree for this SQL query.
*/
static bool add_expression(const POS &pos, THD *thd,
PT_select_item_list *item_list,
const LEX_CSTRING &field, const LEX_CSTRING &alias) {
/* Field */
PTI_simple_ident_ident *ident;
ident = new (thd->mem_root) PTI_simple_ident_ident(pos, field);
if (ident == nullptr) return true;
/* Alias */
PTI_expr_with_alias *expr;
expr = new (thd->mem_root) PTI_expr_with_alias(pos, ident, pos.cpp, alias);
if (expr == nullptr) return true;
/* Add to item list */
item_list->push_back(expr);
return false;
}
bool build_processlist_query(const POS &pos, THD *thd, bool verbose) {
LEX_STRING info_len;
/*
Default Info field length is 100. Verbose field length is limited to the
size of the INFO columns in the Performance Schema.
*/
assert(PROCESS_LIST_WIDTH == 100);
if (verbose) {
if (lex_string_strmake(thd->mem_root, &info_len, "1024", 4)) return true;
} else {
if (lex_string_strmake(thd->mem_root, &info_len, "100", 3)) return true;
}
/* Id, User, Host, db, Command, Time, State */
PT_select_item_list *item_list = new (thd->mem_root) PT_select_item_list(pos);
if (item_list == nullptr) return true;
if (add_expression(pos, thd, item_list, field_id, alias_id)) return true;
if (add_expression(pos, thd, item_list, field_user, alias_user)) return true;
if (add_expression(pos, thd, item_list, field_host, alias_host)) return true;
if (add_expression(pos, thd, item_list, field_db, alias_db)) return true;
if (add_expression(pos, thd, item_list, field_command, alias_command))
return true;
if (add_expression(pos, thd, item_list, field_time, alias_time)) return true;
if (add_expression(pos, thd, item_list, field_state, alias_state))
return true;
/* ... INFO ... */
PTI_simple_ident_ident *ident_info =
new (thd->mem_root) PTI_simple_ident_ident(pos, field_info);
if (ident_info == nullptr) return true;
/* Info length is either "100" or "1024" depending on verbose */
Item_int *item_info_len = new (thd->mem_root) Item_int(pos, info_len);
if (item_info_len == nullptr) return true;
/* ... LEFT(INFO, <info_len>) AS Info ...*/
Item_func_left *func_left =
new (thd->mem_root) Item_func_left(pos, ident_info, item_info_len);
if (func_left == nullptr) return true;
PTI_expr_with_alias *expr_left = new (thd->mem_root)
PTI_expr_with_alias(pos, func_left, pos.cpp, alias_info);
if (expr_left == nullptr) return true;
item_list->push_back(expr_left);
/*
make_table_list() might alter the database and table name strings. Create
copies and leave the original values unaltered.
*/
/* ... performance_schema ... */
LEX_CSTRING tmp_db_name;
if (lex_string_strmake(thd->mem_root, &tmp_db_name, pfs.str, pfs.length))
return true;
/* ... performance_schema.processlist ... */
LEX_CSTRING tmp_table_processlist;
if (lex_string_strmake(thd->mem_root, &tmp_table_processlist,
table_processlist.str, table_processlist.length))
return true;
Table_ident *table_ident_processlist =
new (thd->mem_root) Table_ident(tmp_db_name, tmp_table_processlist);
if (table_ident_processlist == nullptr) return true;
PT_table_factor_table_ident *table_factor_processlist =
new (thd->mem_root) PT_table_factor_table_ident(
pos, table_ident_processlist, nullptr, NULL_CSTR, nullptr, nullptr);
if (table_factor_processlist == nullptr) return true;
Mem_root_array_YY<PT_table_reference *> table_reference_list;
table_reference_list.init(thd->mem_root);
if (table_reference_list.push_back(table_factor_processlist)) return true;
Item *where_clause = nullptr;
/* Form subquery
SELECT ID Id, USER User, HOST Host, DB db, COMMAND Command,
TIME Time STATE state, LEFT(INFO, <info_len>) Info
FROM performance_schema.processlist
*/
PT_query_primary *query_specification =
new (thd->mem_root) PT_query_specification(
pos, options, item_list, table_reference_list, where_clause);
if (query_specification == nullptr) return true;
PT_query_expression *query_expression =
new (thd->mem_root) PT_query_expression(pos, query_specification);
if (query_expression == nullptr) return true;
PT_subquery *sub_query =
new (thd->mem_root) PT_subquery(pos, query_expression);
if (sub_query == nullptr) return true;
Create_col_name_list column_names;
column_names.init(thd->mem_root);
/* ... AS show_processlist */
PT_derived_table *derived_table = new (thd->mem_root)
PT_derived_table(pos, false, sub_query, table_processlist, &column_names);
if (derived_table == nullptr) return true;
Mem_root_array_YY<PT_table_reference *> table_reference_list1;
table_reference_list1.init(thd->mem_root);
if (table_reference_list1.push_back(derived_table)) return true;
/* SELECT <star> */
Item_asterisk *ident_star =
new (thd->mem_root) Item_asterisk(pos, nullptr, nullptr);
if (ident_star == nullptr) return true;
PT_select_item_list *item_list1 =
new (thd->mem_root) PT_select_item_list(pos);
if (item_list1 == nullptr) return true;
item_list1->push_back(ident_star);
/* SELECT * FROM
(SELECT ... FROM performance_schema.processlist)
AS show_processlist
*/
PT_query_specification *query_specification2 =
new (thd->mem_root) PT_query_specification(
pos, options, item_list1, table_reference_list1, nullptr);
if (query_specification2 == nullptr) return true;
PT_query_expression *query_expression2 =
new (thd->mem_root) PT_query_expression(pos, query_specification2);
if (query_expression2 == nullptr) return true;
LEX *lex = thd->lex;
Query_block *current_query_block = lex->current_query_block();
Parse_context pc(thd, current_query_block);
assert(!thd->is_error());
if (query_expression2->contextualize(&pc)) return true;
if (pc.finalize_query_expression()) return true;
return false;
}