/* Copyright (c) 2019, 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 "compression.h" #include "my_dbug.h" #include "my_sys.h" #include "mysql/strings/m_ctype.h" #include "mysqld_error.h" /** This function is used to validate compression algorithm specified as part of change replication source to statement. @param name compression algorithm name. Name can be either zlib,zstd or empty string. @retval an enum to represents what algorithm is specified in case it is a valid algorithm else return INVALID. */ enum_compression_algorithm get_compression_algorithm(std::string name) { if (name.empty() || name.c_str() == nullptr) return enum_compression_algorithm::MYSQL_INVALID; if (!my_strcasecmp(&my_charset_latin1, name.c_str(), COMPRESSION_ALGORITHM_ZLIB)) return enum_compression_algorithm::MYSQL_ZLIB; else if (!my_strcasecmp(&my_charset_latin1, name.c_str(), COMPRESSION_ALGORITHM_ZSTD)) return enum_compression_algorithm::MYSQL_ZSTD; else if (!my_strcasecmp(&my_charset_latin1, name.c_str(), COMPRESSION_ALGORITHM_UNCOMPRESSED)) return enum_compression_algorithm::MYSQL_UNCOMPRESSED; return enum_compression_algorithm::MYSQL_INVALID; } /** This function is used to parse comma separated list of compression algorithm names and return a list containing every algorithm name. @param name comma separated list of compression algorithm names @param[out] list list containing algorithm names */ void parse_compression_algorithms_list(std::string name, std::vector &list) { std::string token; std::stringstream str(name); while (getline(str, token, ',')) list.push_back(token); } /** This function is used to validate compression level for zstd compression @param level compression level to be validated against compression name @retval false if level is not valid. @retval true if level is valid. */ bool is_zstd_compression_level_valid(uint level) { return (level >= 1 && level <= 22); } /** This function is used to validate compression algorithm names and maximum names is not more than 3 @param algorithm_names list of compression algorithm names. @param channel_name Replication channel name. @param ignore_errors If set to false, report errors to the client, otherwise do not report errors" @retval 0 success @retval 1 error or warnings */ bool validate_compression_attributes(std::string algorithm_names, std::string channel_name [[maybe_unused]], bool ignore_errors [[maybe_unused]]) { DBUG_TRACE; /* Note: there's no real limit like that to the string. But, since the replication */ if (algorithm_names.length() >= COMPRESSION_ALGORITHM_NAME_BUFFER_SIZE) { #ifdef MYSQL_SERVER if (!ignore_errors) { my_error(ER_CHANGE_RPL_SRC_WRONG_COMPRESSION_ALGORITHM_SIZE, MYF(0), algorithm_names.length(), channel_name.data()); } #endif return true; } std::vector algorithm_name_list; parse_compression_algorithms_list(algorithm_names, algorithm_name_list); unsigned int total_names = algorithm_name_list.size(); if (!total_names) { #ifdef MYSQL_SERVER if (!ignore_errors) { my_error(ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_CLIENT, MYF(0), algorithm_names.c_str(), channel_name.c_str()); } #endif return true; } if (total_names > COMPRESSION_ALGORITHM_COUNT_MAX) { #ifdef MYSQL_SERVER if (!ignore_errors) { my_error(ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_LIST_CLIENT, MYF(0), algorithm_names.c_str(), channel_name.c_str()); } #endif return true; } /* validate compression algorithm names */ auto name_it = algorithm_name_list.begin(); enum_compression_algorithm method = enum_compression_algorithm::MYSQL_INVALID; while (name_it != algorithm_name_list.end()) { std::string algorithm_name = *name_it; /* validate algorithm name */ method = get_compression_algorithm(algorithm_name); if (method == enum_compression_algorithm::MYSQL_INVALID) { #ifdef MYSQL_SERVER if (!ignore_errors) { my_error(ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_CLIENT, MYF(0), algorithm_name.c_str(), channel_name.c_str()); } #endif return true; } name_it++; } return false; }