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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
|
/* Copyright (c) 2004, 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/parse_file.h"
#include <fcntl.h>
#include <limits.h>
#include <string.h>
#include "m_string.h"
#include "my_alloc.h"
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_dir.h"
#include "my_inttypes.h"
#include "my_io.h"
#include "my_sys.h"
#include "mysql/psi/mysql_file.h"
#include "mysqld_error.h" // ER_*
#include "sql/mysqld.h" // key_file_fileparser
#include "sql/sql_list.h" // List_iterator_fast
// Dummy unknown key hook.
File_parser_dummy_hook file_parser_dummy_hook;
/**
Prepare frm to parse (read to memory).
@param file_name path & filename to .frm file
@param mem_root MEM_ROOT for buffer allocation
@param bad_format_errors send errors on bad content
@note
returned pointer + 1 will be type of .frm
@return
0 - error
@return
parser object
*/
File_parser *sql_parse_prepare(const LEX_STRING *file_name, MEM_ROOT *mem_root,
bool bad_format_errors) {
MY_STAT stat_info;
size_t len;
char *buff, *end, *sign;
File_parser *parser;
File file;
DBUG_TRACE;
if (!mysql_file_stat(key_file_fileparser, file_name->str, &stat_info,
MYF(MY_WME))) {
return nullptr;
}
if (stat_info.st_size > INT_MAX - 1) {
my_error(ER_FPARSER_TOO_BIG_FILE, MYF(0), file_name->str);
return nullptr;
}
if (!(parser = new (mem_root) File_parser)) {
return nullptr;
}
if (!(buff = (char *)mem_root->Alloc(static_cast<size_t>(stat_info.st_size) +
1))) {
return nullptr;
}
if ((file = mysql_file_open(key_file_fileparser, file_name->str, O_RDONLY,
MYF(MY_WME))) < 0) {
return nullptr;
}
if ((len = mysql_file_read(file, (uchar *)buff,
static_cast<size_t>(stat_info.st_size),
MYF(MY_WME))) == MY_FILE_ERROR) {
mysql_file_close(file, MYF(MY_WME));
return nullptr;
}
if (mysql_file_close(file, MYF(MY_WME))) {
return nullptr;
}
end = buff + len;
*end = '\0'; // barrier for more simple parsing
// 7 = 5 (TYPE=) + 1 (letter at least of type name) + 1 ('\n')
if (len < 7 || buff[0] != 'T' || buff[1] != 'Y' || buff[2] != 'P' ||
buff[3] != 'E' || buff[4] != '=')
goto frm_error;
// skip signature;
parser->file_type.str = sign = buff + 5;
while (*sign >= 'A' && *sign <= 'Z' && sign < end) sign++;
if (*sign != '\n') goto frm_error;
parser->file_type.length = sign - parser->file_type.str;
// EOS for file signature just for safety
*sign = '\0';
parser->end = end;
parser->start = sign + 1;
parser->content_ok = true;
return parser;
frm_error:
if (bad_format_errors) {
my_error(ER_FPARSER_BAD_HEADER, MYF(0), file_name->str);
return nullptr;
} else
return parser; // upper level have to check parser->ok()
}
/**
parse LEX_STRING.
@param ptr pointer on string beginning
@param end pointer on symbol after parsed string end (still owned
by buffer and can be accessed
@param mem_root MEM_ROOT for parameter allocation
@param str pointer on string, where results should be stored
@return Pointer on symbol after string
@retval 0 error
*/
static const char *parse_string(const char *ptr, const char *end,
MEM_ROOT *mem_root, LEX_STRING *str) {
// get string length
const char *eol = strchr(ptr, '\n');
if (eol >= end) return nullptr;
str->length = eol - ptr;
if (!(str->str = strmake_root(mem_root, ptr, str->length))) return nullptr;
return eol + 1;
}
/**
read escaped string from ptr to eol in already allocated str.
@param ptr pointer on string beginning
@param eol pointer on character after end of string
@param str target string
@retval
false OK
@retval
true error
*/
static bool read_escaped_string(const char *ptr, const char *eol,
LEX_STRING *str) {
char *write_pos = str->str;
for (; ptr < eol; ptr++, write_pos++) {
char c = *ptr;
if (c == '\\') {
ptr++;
if (ptr >= eol) return true;
/*
Should be in sync with write_escaped_string() and
parse_quoted_escaped_string()
*/
switch (*ptr) {
case '\\':
*write_pos = '\\';
break;
case 'n':
*write_pos = '\n';
break;
case '0':
*write_pos = '\0';
break;
case 'z':
*write_pos = 26;
break;
case '\'':
*write_pos = '\'';
break;
default:
return true;
}
} else
*write_pos = c;
}
str->str[str->length = write_pos - str->str] = '\0'; // just for safety
return false;
}
/**
parse @\n delimited escaped string.
@param ptr pointer on string beginning
@param end pointer on symbol after parsed string end (still owned
by buffer and can be accessed
@param mem_root MEM_ROOT for parameter allocation
@param str pointer on string, where results should be stored
@return Pointer on symbol after string
@retval
0 error
*/
static const char *parse_escaped_string(const char *ptr, const char *end,
MEM_ROOT *mem_root, LEX_STRING *str) {
const char *eol = strchr(ptr, '\n');
if (eol == nullptr || eol >= end ||
!(str->str = (char *)mem_root->Alloc((eol - ptr) + 1)) ||
read_escaped_string(ptr, eol, str))
return nullptr;
return eol + 1;
}
/**
parse '' delimited escaped string.
@param ptr pointer on string beginning
@param end pointer on symbol after parsed string end (still owned
by buffer and can be accessed
@param mem_root MEM_ROOT for parameter allocation
@param str pointer on string, where results should be stored
@return Pointer on symbol after string
@retval
0 error
*/
static const char *parse_quoted_escaped_string(const char *ptr, const char *end,
MEM_ROOT *mem_root,
LEX_STRING *str) {
const char *eol;
uint result_len = 0;
bool escaped = false;
// starting '
if (*(ptr++) != '\'') return nullptr;
// find ending '
for (eol = ptr; (*eol != '\'' || escaped) && eol < end; eol++) {
if (!(escaped = (*eol == '\\' && !escaped))) result_len++;
}
// process string
if (eol >= end || !(str->str = (char *)mem_root->Alloc(result_len + 1)) ||
read_escaped_string(ptr, eol, str))
return nullptr;
return eol + 1;
}
/**
Parser for FILE_OPTIONS_ULLLIST type value.
@param[in,out] ptr pointer to parameter
@param[in] end end of the configuration
@param[in] line pointer to the line beginning
@param[in] base base address for parameter writing (structure
like TABLE)
@param[in] parameter description
@param[in] mem_root MEM_ROOT for parameters allocation
*/
bool get_file_options_ulllist(const char *&ptr, const char *end,
const char *line, uchar *base,
File_option *parameter, MEM_ROOT *mem_root) {
List<ulonglong> *nlist = (List<ulonglong> *)(base + parameter->offset);
ulonglong *num;
nlist->clear();
// list parsing
while (ptr < end) {
int not_used;
const char *num_end = end;
if (!(num = (ulonglong *)mem_root->Alloc(sizeof(ulonglong))) ||
nlist->push_back(num, mem_root))
goto nlist_err;
*num = my_strtoll10(ptr, &num_end, ¬_used);
ptr = num_end;
switch (*ptr) {
case '\n':
goto end_of_nlist;
case ' ':
// we can't go over buffer bounds, because we have \0 at the end
ptr++;
break;
default:
goto nlist_err_w_message;
}
}
end_of_nlist:
if (*(ptr++) != '\n') goto nlist_err;
return false;
nlist_err_w_message:
my_error(ER_FPARSER_ERROR_IN_PARAMETER, MYF(0), parameter->name.str, line);
nlist_err:
return true;
}
/**
parse parameters.
@param base base address for parameter writing (structure like
TABLE)
@param mem_root MEM_ROOT for parameters allocation
@param parameters parameters description
@param required number of required parameters in above list. If the
file contains more parameters than "required", they will be ignored. If the
file contains less parameters then "required", non-existing parameters will
remain their values.
@param hook hook called for unknown keys
@retval
false OK
@retval
true error
*/
bool File_parser::parse(uchar *base, MEM_ROOT *mem_root,
struct File_option *parameters, uint required,
Unknown_key_hook *hook) const {
uint first_param = 0, found = 0;
const char *ptr = start;
const char *eol;
LEX_STRING *str;
List<LEX_STRING> *list;
DBUG_TRACE;
while (ptr < end && found < required) {
const char *line = ptr;
if (*ptr == '#') {
// it is comment
if (!(ptr = strchr(ptr, '\n'))) {
my_error(ER_FPARSER_EOF_IN_COMMENT, MYF(0), line);
return true;
}
ptr++;
} else {
File_option *parameter = parameters + first_param,
*parameters_end = parameters + required;
size_t len = 0;
for (; parameter < parameters_end; parameter++) {
len = parameter->name.length;
// check length
if (len < static_cast<size_t>(end - ptr) && ptr[len] != '=') continue;
// check keyword
if (memcmp(parameter->name.str, ptr, len) == 0) break;
}
if (parameter < parameters_end) {
found++;
/*
if we found first parameter, start search from next parameter
next time.
(this small optimisation should work, because they should be
written in same order)
*/
if (parameter == parameters + first_param) first_param++;
// get value
ptr += (len + 1);
switch (parameter->type) {
case FILE_OPTIONS_STRING: {
if (!(ptr =
parse_string(ptr, end, mem_root,
(LEX_STRING *)(base + parameter->offset)))) {
my_error(ER_FPARSER_ERROR_IN_PARAMETER, MYF(0),
parameter->name.str, line);
return true;
}
break;
}
case FILE_OPTIONS_ESTRING: {
if (!(ptr = parse_escaped_string(
ptr, end, mem_root,
(LEX_STRING *)(base + parameter->offset)))) {
my_error(ER_FPARSER_ERROR_IN_PARAMETER, MYF(0),
parameter->name.str, line);
return true;
}
break;
}
case FILE_OPTIONS_ULONGLONG:
if (!(eol = strchr(ptr, '\n'))) {
my_error(ER_FPARSER_ERROR_IN_PARAMETER, MYF(0),
parameter->name.str, line);
return true;
}
{
int not_used;
*((ulonglong *)(base + parameter->offset)) =
my_strtoll10(ptr, nullptr, ¬_used);
}
ptr = eol + 1;
break;
case FILE_OPTIONS_TIMESTAMP: {
/* string have to be allocated already */
LEX_STRING *val = (LEX_STRING *)(base + parameter->offset);
/* yyyy-mm-dd HH:MM:SS = 19(PARSE_FILE_TIMESTAMPLENGTH) characters
*/
if (ptr[PARSE_FILE_TIMESTAMPLENGTH] != '\n') {
my_error(ER_FPARSER_ERROR_IN_PARAMETER, MYF(0),
parameter->name.str, line);
return true;
}
memcpy(val->str, ptr, PARSE_FILE_TIMESTAMPLENGTH);
val->str[val->length = PARSE_FILE_TIMESTAMPLENGTH] = '\0';
ptr += (PARSE_FILE_TIMESTAMPLENGTH + 1);
break;
}
case FILE_OPTIONS_STRLIST: {
list = (List<LEX_STRING> *)(base + parameter->offset);
list->clear();
// list parsing
while (ptr < end) {
if (!(str = (LEX_STRING *)mem_root->Alloc(sizeof(LEX_STRING))) ||
list->push_back(str, mem_root))
goto list_err;
if (!(ptr = parse_quoted_escaped_string(ptr, end, mem_root, str)))
goto list_err_w_message;
switch (*ptr) {
case '\n':
goto end_of_list;
case ' ':
// we can't go over buffer bounds, because we have \0 at the
// end
ptr++;
break;
default:
goto list_err_w_message;
}
}
end_of_list:
if (*(ptr++) != '\n') goto list_err;
break;
list_err_w_message:
my_error(ER_FPARSER_ERROR_IN_PARAMETER, MYF(0), parameter->name.str,
line);
list_err:
return true;
}
case FILE_OPTIONS_ULLLIST:
if (get_file_options_ulllist(ptr, end, line, base, parameter,
mem_root))
return true;
break;
default:
assert(0); // never should happened
}
} else {
ptr = line;
if (hook->process_unknown_string(ptr, base, mem_root, end)) {
return true;
}
// skip unknown parameter
if (!(ptr = strchr(ptr, '\n'))) {
my_error(ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER, MYF(0), line);
return true;
}
ptr++;
}
}
}
/*
NOTE: if we read less than "required" parameters, it is still Ok.
Probably, we've just read the file of the previous version, which
contains less parameters.
*/
return false;
}
/**
Dummy unknown key hook.
@param[in,out] unknown_key reference on the line with unknown
parameter and the parsing point
@note
This hook used to catch no longer supported keys and process them for
backward compatibility, but it will not slow down processing of modern
format files.
This hook does nothing except debug output.
@retval
false OK
@retval
true Error
*/
bool File_parser_dummy_hook::process_unknown_string(const char *&unknown_key
[[maybe_unused]],
uchar *, MEM_ROOT *,
const char *) {
DBUG_TRACE;
DBUG_PRINT("info", ("Unknown key: '%60s'", unknown_key));
return false;
}
|