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
|
/* Copyright (c) 2016, 2025, 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/dd/sdi_api.h"
#include <sys/types.h>
#include <algorithm>
#include <type_traits>
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_sys.h"
#include "mysql/psi/mysql_file.h" // mysql_file_x
#include "mysqld_error.h"
#include "sql/auth/auth_acls.h"
#include "sql/auth/auth_common.h" // CREATE_ACL
#include "sql/dd/cache/dictionary_client.h" // dd::Dictionary_client
#include "sql/dd/dd.h"
#include "sql/dd/dd_table.h" // has_primary_key()
#include "sql/dd/impl/sdi.h" // dd::deserialize
#include "sql/dd/impl/sdi_utils.h" // dd::sdi_utils::handle_errors
#include "sql/dd/impl/types/object_table_definition_impl.h" // Object_table_definition::fs_collation()
#include "sql/dd/sdi_file.h" // dd::sdi_file::load
#include "sql/dd/types/schema.h" // dd::Schema
#include "sql/dd/types/table.h" // dd::Table
#include "sql/dd_sql_view.h" // update_referencing_views_metadata()
#include "sql/mdl.h" // MDL_request
#include "sql/mysqld.h" // lower_case_table_names
#include "sql/sql_base.h" // open_tables()
#include "sql/sql_class.h" // THD
#include "sql/sql_error.h"
#include "sql/sql_servers.h"
#include "sql/strfunc.h" // casedn
#include "sql/table.h" // Table_ref
#include "thr_lock.h"
namespace dd {
namespace sdi {
Import_target::Import_target(String_type &&path, bool in_datadir)
: m_path{std::move(path)},
m_in_datadir{in_datadir},
m_table_object{dd::create_object<dd::Table>()} {}
bool Import_target::commit() const {
DBUG_EXECUTE_IF(
"sdi_import_commit_fail",
return (m_in_datadir &&
mysql_file_delete(key_file_sdi, "no_such_file", MYF(MY_FAE))););
return (
m_in_datadir &&
mysql_file_delete(key_file_sdi, m_tmp_sdi_filename.c_str(), MYF(MY_FAE)));
}
bool Import_target::rollback() const {
return (m_in_datadir && !m_tmp_sdi_filename.empty() &&
mysql_file_rename(key_file_sdi, m_tmp_sdi_filename.c_str(),
m_path.c_str(), MYF(MY_FAE)));
}
const dd::String_type *Import_target::can_table_name() const {
return m_lc_tname ? m_lc_tname.get() : &m_table_object->name();
}
const dd::String_type *Import_target::can_schema_name() const {
return m_lc_sname ? m_lc_sname.get() : &m_schema_name_in_sdi;
}
bool Import_target::load(THD *thd, String_type *shared_buffer) {
if (dd::sdi_file::load(thd, m_path, shared_buffer)) {
return true;
}
if (dd::deserialize(thd, *shared_buffer, m_table_object.get(),
&m_schema_name_in_sdi)) {
return true;
}
if (!dd::has_primary_key(*m_table_object) &&
thd->variables.sql_require_primary_key) {
my_error(ER_TABLE_WITHOUT_PK, MYF(0));
return true;
}
const CHARSET_INFO *dd_charset_info =
Object_table_definition_impl::fs_name_collation();
if (lower_case_table_names == 1) {
m_table_object->set_name(casedn(dd_charset_info, m_table_object->name()));
m_schema_name_in_sdi =
casedn(dd_charset_info, std::move(m_schema_name_in_sdi));
}
if (lower_case_table_names == 2) {
m_lc_tname.reset(
new dd::String_type(casedn(dd_charset_info, m_table_object->name())));
m_lc_sname.reset(
new dd::String_type(casedn(dd_charset_info, m_schema_name_in_sdi)));
}
if (!m_in_datadir) {
return false;
}
dd::String_type tmpname{m_path};
tmpname.insert(tmpname.length() - 4, "_import");
if (mysql_file_rename(key_file_sdi, m_path.c_str(), tmpname.c_str(),
MYF(MY_FAE))) {
return true;
}
m_tmp_sdi_filename = std::move(tmpname);
return false;
}
Table_ref Import_target::make_table_ref() const {
return Table_ref(can_schema_name()->c_str(), // schema_name, with case
can_schema_name()->length(),
can_table_name()->c_str(), // table_name, with case
can_table_name()->length(),
m_table_object->name().c_str(), // alias, lower_cased
TL_IGNORE);
}
bool Import_target::store_in_dd(THD *thd) const {
dd::cache::Dictionary_client &dc = *thd->dd_client();
const Schema *schema = nullptr;
if (dc.acquire(m_schema_name_in_sdi, &schema)) {
return true;
}
if (schema == nullptr) {
my_error(ER_IMP_SCHEMA_DOES_NOT_EXIST, MYF(0),
m_schema_name_in_sdi.c_str());
return true;
}
// Since deserialization does no longer does this automatically, we
// must do it here to make the table object valid.
m_table_object->set_schema_id(schema->id());
const Table *existing = nullptr;
if (dc.acquire(schema->name(), m_table_object->name(), &existing)) {
return true;
}
if (existing != nullptr) {
my_error(ER_IMP_TABLE_ALREADY_EXISTS, MYF(0), schema->name().c_str(),
m_table_object->name().c_str());
return true;
}
if (dd::sdi_file::check_data_files_exist(m_schema_name_in_sdi,
m_table_object->name())) {
return true;
}
if (dc.store(m_table_object.get())) {
return true;
}
Table_ref tl = make_table_ref();
// tl.init_one_table(schema->name().c_str(),
// schema->name().length(),
// m_table_object->name().c_str(),
// m_table_object->name().length(),
// m_table_object->name().c_str(),
// TL_IGNORE);
Uncommitted_tables_guard uncommitted_tables(thd);
if (update_referencing_views_metadata(thd, &tl, false, &uncommitted_tables)) {
return true;
}
Table_ref *tlp = &tl;
uint dummy = 0;
// Downgrade all errors from open to warnings as we don't want to
// fail import here, but rather give the user a chance to repair the
// table.
dd::sdi_utils::handle_errors(
thd,
[](uint, const char *, Sql_condition::enum_severity_level *level,
const char *) {
(*level) = Sql_condition::SL_WARNING;
return false;
},
[&]() { return open_tables(thd, &tlp, &dummy, 0); });
close_thread_tables(thd);
return false;
}
bool check_privileges(THD *thd, const Import_target &t) {
// const char *table_name= t.can_table_name()->c_str();
// size_t table_len= t.can_table_name()->length();
// const char *schema_name= t.can_schema_name()->c_str();
// size_t schema_len= t.can_schema_name()->length();
Table_ref tl = t.make_table_ref();
// tl.init_one_table(schema_name, schema_len, table_name, table_len,
// table_name, TL_IGNORE);
// Note! Passing the tl.grant.privilege and tl.grant.m_internal is NOT
// optional here. The call to check_grant() below depends on info being
// recorded there to correctly determine if we have CREATE privilege on
// the table.
bool create_access_denied =
check_access(thd, CREATE_ACL, tl.db, &tl.grant.privilege,
&tl.grant.m_internal, false, false);
if (create_access_denied) {
return true;
}
bool create_grant_denied =
check_grant(thd, CREATE_ACL, &tl, false /* any_combination_will_do */,
1 /* number */, false /* no_errors */);
if (create_grant_denied) {
return true;
}
return false;
}
MDL_request *mdl_request(const Import_target &t, MEM_ROOT *mem_root) {
MDL_request *req = new (mem_root) MDL_request;
MDL_REQUEST_INIT(req, MDL_key::TABLE, t.can_schema_name()->c_str(),
t.can_table_name()->c_str(), MDL_EXCLUSIVE, MDL_TRANSACTION);
return req;
}
} // namespace sdi
} // namespace dd
|