mysqltest.cc 267 KB
Newer Older
1 2
/* Copyright (c) 2000, 2011, Oracle and/or its affiliates.
   Copyright (c) 2009-2011 Monty Program Ab.
3

unknown's avatar
unknown committed
4 5
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
unknown's avatar
unknown committed
6
   the Free Software Foundation; version 2 of the License.
7

unknown's avatar
unknown committed
8 9 10 11
   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 for more details.
12

unknown's avatar
unknown committed
13 14
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
15 16
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
*/
unknown's avatar
unknown committed
17

unknown's avatar
unknown committed
18 19
/*
  mysqltest
20

unknown's avatar
unknown committed
21
  Tool used for executing a .test file
22

unknown's avatar
unknown committed
23 24
  See the "MySQL Test framework manual" for more information
  http://dev.mysql.com/doc/mysqltest/en/index.html
25

26 27
  Please keep the test framework tools identical in all versions!

unknown's avatar
unknown committed
28 29 30 31 32
  Written by:
  Sasha Pachev <sasha@mysql.com>
  Matt Wagner  <matt@mysql.com>
  Monty
  Jani
unknown's avatar
unknown committed
33
  Holyfoot
34
  And many others
unknown's avatar
unknown committed
35
*/
36

37
#define MTEST_VERSION "3.3"
38

39
#include "client_priv.h"
40
#include <mysql_version.h>
unknown's avatar
unknown committed
41
#include <mysqld_error.h>
42
#include <sql_common.h>
43 44
#include <m_ctype.h>
#include <my_dir.h>
unknown's avatar
unknown committed
45
#include <hash.h>
unknown's avatar
unknown committed
46
#include <stdarg.h>
unknown's avatar
unknown committed
47
#include <violite.h>
unknown's avatar
unknown committed
48
#include "my_regex.h" /* Our own version of regex */
unknown's avatar
unknown committed
49
#ifdef HAVE_SYS_WAIT_H
50
#include <sys/wait.h>
unknown's avatar
unknown committed
51
#endif
52 53 54
#ifdef __WIN__
#include <direct.h>
#endif
55
#include <signal.h>
56
#include <my_stacktrace.h>
57

58 59 60 61 62 63
#ifdef __WIN__
#include <crtdbg.h>
#define SIGNAL_FMT "exception 0x%x"
#else
#define SIGNAL_FMT "signal %d"
#endif
unknown's avatar
unknown committed
64

65 66 67 68 69
/* Use cygwin for --exec and --system before 5.0 */
#if MYSQL_VERSION_ID < 50000
#define USE_CYGWIN
#endif

unknown's avatar
unknown committed
70 71 72 73
#define MAX_VAR_NAME_LENGTH    256
#define MAX_COLUMNS            256
#define MAX_EMBEDDED_SERVER_ARGS 64
#define MAX_DELIMITER_LENGTH 16
74
#define DEFAULT_MAX_CONN        64
unknown's avatar
unknown committed
75 76 77 78 79

/* Flags controlling send and reap */
#define QUERY_SEND_FLAG  1
#define QUERY_REAP_FLAG  2

80 81 82 83
#ifndef HAVE_SETENV
static int setenv(const char *name, const char *value, int overwrite);
#endif

unknown's avatar
unknown committed
84
enum {
85 86
  OPT_SKIP_SAFEMALLOC=OPT_MAX_CLIENT_OPTION,
  OPT_PS_PROTOCOL, OPT_SP_PROTOCOL, OPT_CURSOR_PROTOCOL, OPT_VIEW_PROTOCOL,
87
  OPT_MAX_CONNECT_RETRIES, OPT_MAX_CONNECTIONS,
unknown's avatar
unknown committed
88
  OPT_MARK_PROGRESS, OPT_LOG_DIR, OPT_TAIL_LINES,
89
  OPT_GLOBAL_SUBST, OPT_MY_CONNECT_TIMEOUT
unknown's avatar
unknown committed
90
};
unknown's avatar
unknown committed
91

unknown's avatar
unknown committed
92
static int record= 0, opt_sleep= -1;
93 94
static char *opt_db= 0, *opt_pass= 0;
const char *opt_user= 0, *opt_host= 0, *unix_sock= 0, *opt_basedir= "./";
95 96 97
#ifdef HAVE_SMEM
static char *shared_memory_base_name=0;
#endif
98
const char *opt_logdir= "";
99
const char *opt_include= 0, *opt_charsets_dir;
100
static int opt_port= 0;
unknown's avatar
unknown committed
101
static int opt_max_connect_retries;
102
static int opt_max_connections= DEFAULT_MAX_CONN;
unknown's avatar
unknown committed
103
static my_bool opt_compress= 0, silent= 0, verbose= 0;
104
static int opt_connect_timeout= -1;
105
static my_bool debug_info_flag= 0, debug_check_flag= 0;
unknown's avatar
unknown committed
106 107 108 109 110 111 112
static my_bool tty_password= 0;
static my_bool opt_mark_progress= 0;
static my_bool ps_protocol= 0, ps_protocol_enabled= 0;
static my_bool sp_protocol= 0, sp_protocol_enabled= 0;
static my_bool view_protocol= 0, view_protocol_enabled= 0;
static my_bool cursor_protocol= 0, cursor_protocol_enabled= 0;
static my_bool parsing_disabled= 0;
113
static my_bool display_result_vertically= FALSE, display_result_lower= FALSE,
114
  display_metadata= FALSE, display_result_sorted= FALSE;
unknown's avatar
unknown committed
115
static my_bool disable_query_log= 0, disable_result_log= 0;
116
static my_bool disable_connect_log= 1;
117
static my_bool disable_warnings= 0;
118
static my_bool prepare_warnings_enabled= 0;
unknown's avatar
unknown committed
119
static my_bool disable_info= 1;
120
static char *opt_plugin_dir= 0, *opt_default_auth;
unknown's avatar
unknown committed
121
static my_bool abort_on_error= 1;
122
static my_bool server_initialized= 0;
123
static my_bool is_windows= 0;
unknown's avatar
unknown committed
124
static char **default_argv;
125 126
static const char *load_default_groups[]=
{ "mysqltest", "client", "client-server", "client-mariadb", 0 };
unknown's avatar
unknown committed
127
static char line_buffer[MAX_DELIMITER_LENGTH], *line_buffer_pos= line_buffer;
128

unknown's avatar
unknown committed
129
static uint start_lineno= 0; /* Start line of current command */
130
static uint my_end_arg= 0;
unknown's avatar
unknown committed
131

132 133 134
/* Number of lines of the result to include in failure report */
static uint opt_tail_lines= 0;

unknown's avatar
unknown committed
135 136 137 138
static char delimiter[MAX_DELIMITER_LENGTH]= ";";
static uint delimiter_length= 1;

static char TMPDIR[FN_REFLEN];
139 140 141
static char global_subst_from[200];
static char global_subst_to[200];
static char *global_subst= NULL;
142
static MEM_ROOT require_file_root;
unknown's avatar
unknown committed
143 144 145 146 147 148

/* Block stack */
enum block_cmd {
  cmd_none,
  cmd_if,
  cmd_while
149 150
};

unknown's avatar
unknown committed
151
struct st_block
152
{
unknown's avatar
unknown committed
153 154 155
  int             line; /* Start line of block */
  my_bool         ok;   /* Should block be executed */
  enum block_cmd  cmd;  /* Command owning the block */
156
  char            delim[MAX_DELIMITER_LENGTH];  /* Delimiter before block */
unknown's avatar
unknown committed
157
};
158

unknown's avatar
unknown committed
159 160
static struct st_block block_stack[32];
static struct st_block *cur_block, *block_stack_end;
unknown's avatar
unknown committed
161

unknown's avatar
unknown committed
162 163
/* Open file stack */
struct st_test_file
164 165 166
{
  FILE* file;
  const char *file_name;
unknown's avatar
unknown committed
167 168
  uint lineno; /* Current line in file */
};
169

unknown's avatar
unknown committed
170 171 172
static struct st_test_file file_stack[16];
static struct st_test_file* cur_file;
static struct st_test_file* file_stack_end;
173

unknown's avatar
unknown committed
174

unknown's avatar
unknown committed
175
static CHARSET_INFO *charset_info= &my_charset_latin1; /* Default charset */
176

unknown's avatar
unknown committed
177 178 179 180 181 182 183
static const char *embedded_server_groups[]=
{
  "server",
  "embedded",
  "mysqltest_SERVER",
  NullS
};
184

unknown's avatar
unknown committed
185 186
static int embedded_server_arg_count=0;
static char *embedded_server_args[MAX_EMBEDDED_SERVER_ARGS];
187

unknown's avatar
unknown committed
188 189 190 191
/*
  Timer related variables
  See the timer_output() definition for details
*/
unknown's avatar
unknown committed
192 193 194 195 196
static char *timer_file = NULL;
static ulonglong timer_start;
static void timer_output(void);
static ulonglong timer_now(void);

197

198 199
static ulong connection_retry_sleep= 100000; /* Microseconds */

unknown's avatar
unknown committed
200 201 202 203 204 205 206 207
/* Precompiled re's */
static my_regex_t ps_re;     /* the query can be run using PS protocol */
static my_regex_t sp_re;     /* the query can be run as a SP */
static my_regex_t view_re;   /* the query can be run as a view*/

static void init_re(void);
static int match_re(my_regex_t *, char *);
static void free_re(void);
208

209 210 211 212
static int replace(DYNAMIC_STRING *ds_str,
                   const char *search_str, ulong search_len,
                   const char *replace_str, ulong replace_len);

213 214
static uint opt_protocol=0;

215 216
DYNAMIC_ARRAY q_lines;

unknown's avatar
unknown committed
217 218
#include "sslopt-vars.h"

219
struct Parser
unknown's avatar
unknown committed
220 221
{
  int read_lines,current_line;
unknown's avatar
unknown committed
222
} parser;
223

224
struct MasterPos
unknown's avatar
unknown committed
225 226 227 228
{
  char file[FN_REFLEN];
  ulong pos;
} master_pos;
229

unknown's avatar
unknown committed
230
/* if set, all results are concated and compared against this file */
231
const char *result_file_name= 0;
232

233
typedef struct
234
{
unknown's avatar
unknown committed
235
  char *name;
unknown's avatar
unknown committed
236
  int name_len;
unknown's avatar
unknown committed
237
  char *str_val;
238 239 240 241
  int str_val_len;
  int int_val;
  int alloced_len;
  int int_dirty; /* do not update string if int is updated until first read */
unknown's avatar
unknown committed
242
  int alloced;
243 244 245
} VAR;

/*Perl/shell-like variable registers */
unknown's avatar
unknown committed
246
VAR var_reg[10];
247

unknown's avatar
unknown committed
248
HASH var_hash;
unknown's avatar
unknown committed
249

unknown's avatar
unknown committed
250 251
struct st_connection
{
252
  MYSQL *mysql;
unknown's avatar
unknown committed
253 254 255
  /* Used when creating views and sp, to avoid implicit commit */
  MYSQL* util_mysql;
  char *name;
256
  size_t name_len;
unknown's avatar
unknown committed
257
  MYSQL_STMT* stmt;
258 259
  /* Set after send to disallow other queries before reap */
  my_bool pending;
unknown's avatar
unknown committed
260

unknown's avatar
unknown committed
261
#ifdef EMBEDDED_LIBRARY
unknown's avatar
unknown committed
262 263 264 265
  const char *cur_query;
  int cur_query_len;
  pthread_mutex_t mutex;
  pthread_cond_t cond;
266
  pthread_t tid;
unknown's avatar
unknown committed
267
  int query_done;
268
  my_bool has_thread, mutex_inited;
unknown's avatar
unknown committed
269
#endif /*EMBEDDED_LIBRARY*/
unknown's avatar
unknown committed
270
};
271 272

struct st_connection *connections= NULL;
273
struct st_connection* cur_con= NULL, *next_con, *connections_end;
unknown's avatar
unknown committed
274

unknown's avatar
unknown committed
275 276 277 278 279
/*
  List of commands in mysqltest
  Must match the "command_names" array
  Add new commands before Q_UNKNOWN!
*/
unknown's avatar
unknown committed
280
enum enum_commands {
unknown's avatar
unknown committed
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
  Q_CONNECTION=1,     Q_QUERY,
  Q_CONNECT,	    Q_SLEEP, Q_REAL_SLEEP,
  Q_INC,		    Q_DEC,
  Q_SOURCE,	    Q_DISCONNECT,
  Q_LET,		    Q_ECHO,
  Q_WHILE,	    Q_END_BLOCK,
  Q_SYSTEM,	    Q_RESULT,
  Q_REQUIRE,	    Q_SAVE_MASTER_POS,
  Q_SYNC_WITH_MASTER,
  Q_SYNC_SLAVE_WITH_MASTER,
  Q_ERROR,
  Q_SEND,		    Q_REAP,
  Q_DIRTY_CLOSE,	    Q_REPLACE, Q_REPLACE_COLUMN,
  Q_PING,		    Q_EVAL,
  Q_RPL_PROBE,	    Q_ENABLE_RPL_PARSE,
  Q_DISABLE_RPL_PARSE, Q_EVAL_RESULT,
  Q_ENABLE_QUERY_LOG, Q_DISABLE_QUERY_LOG,
  Q_ENABLE_RESULT_LOG, Q_DISABLE_RESULT_LOG,
299
  Q_ENABLE_CONNECT_LOG, Q_DISABLE_CONNECT_LOG,
unknown's avatar
unknown committed
300 301 302 303 304 305 306
  Q_WAIT_FOR_SLAVE_TO_STOP,
  Q_ENABLE_WARNINGS, Q_DISABLE_WARNINGS,
  Q_ENABLE_INFO, Q_DISABLE_INFO,
  Q_ENABLE_METADATA, Q_DISABLE_METADATA,
  Q_EXEC, Q_DELIMITER,
  Q_DISABLE_ABORT_ON_ERROR, Q_ENABLE_ABORT_ON_ERROR,
  Q_DISPLAY_VERTICAL_RESULTS, Q_DISPLAY_HORIZONTAL_RESULTS,
307
  Q_QUERY_VERTICAL, Q_QUERY_HORIZONTAL, Q_SORTED_RESULT,
308
  Q_LOWERCASE,
unknown's avatar
unknown committed
309 310 311 312 313 314
  Q_START_TIMER, Q_END_TIMER,
  Q_CHARACTER_SET, Q_DISABLE_PS_PROTOCOL, Q_ENABLE_PS_PROTOCOL,
  Q_DISABLE_RECONNECT, Q_ENABLE_RECONNECT,
  Q_IF,
  Q_DISABLE_PARSING, Q_ENABLE_PARSING,
  Q_REPLACE_REGEX, Q_REMOVE_FILE, Q_FILE_EXIST,
315
  Q_WRITE_FILE, Q_COPY_FILE, Q_PERL, Q_DIE, Q_EXIT, Q_SKIP,
316
  Q_CHMOD_FILE, Q_APPEND_FILE, Q_CAT_FILE, Q_DIFF_FILES,
317
  Q_SEND_QUIT, Q_CHANGE_USER, Q_MKDIR, Q_RMDIR,
Sven Sandberg's avatar
Sven Sandberg committed
318
  Q_LIST_FILES, Q_LIST_FILES_WRITE_FILE, Q_LIST_FILES_APPEND_FILE,
319
  Q_SEND_SHUTDOWN, Q_SHUTDOWN_SERVER,
320
  Q_MOVE_FILE, Q_REMOVE_FILES_WILDCARD, Q_SEND_EVAL,
unknown's avatar
unknown committed
321
  Q_ENABLE_PREPARE_WARNINGS, Q_DISABLE_PREPARE_WARNINGS,
unknown's avatar
unknown committed
322 323 324 325

  Q_UNKNOWN,			       /* Unknown command.   */
  Q_COMMENT,			       /* Comments, ignored. */
  Q_COMMENT_WITH_COMMAND
unknown's avatar
unknown committed
326 327
};

unknown's avatar
unknown committed
328

329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
const char *command_names[]=
{
  "connection",
  "query",
  "connect",
  "sleep",
  "real_sleep",
  "inc",
  "dec",
  "source",
  "disconnect",
  "let",
  "echo",
  "while",
  "end",
  "system",
  "result",
  "require",
  "save_master_pos",
  "sync_with_master",
349
  "sync_slave_with_master",
350 351 352 353 354
  "error",
  "send",
  "reap",
  "dirty_close",
  "replace_result",
355
  "replace_column",
356 357 358 359 360 361
  "ping",
  "eval",
  "rpl_probe",
  "enable_rpl_parse",
  "disable_rpl_parse",
  "eval_result",
unknown's avatar
unknown committed
362
  /* Enable/disable that the _query_ is logged to result file */
363 364
  "enable_query_log",
  "disable_query_log",
unknown's avatar
unknown committed
365
  /* Enable/disable that the _result_ from a query is logged to result file */
366 367
  "enable_result_log",
  "disable_result_log",
368 369
  "enable_connect_log",
  "disable_connect_log",
370
  "wait_for_slave_to_stop",
371 372 373
  "enable_warnings",
  "disable_warnings",
  "enable_info",
374
  "disable_info",
375 376
  "enable_metadata",
  "disable_metadata",
377
  "exec",
378
  "delimiter",
379 380
  "disable_abort_on_error",
  "enable_abort_on_error",
381
  "vertical_results",
382
  "horizontal_results",
383
  "query_vertical",
384
  "query_horizontal",
385
  "sorted_result",
386
  "lowercase_result",
unknown's avatar
unknown committed
387 388
  "start_timer",
  "end_timer",
unknown's avatar
unknown committed
389
  "character_set",
390 391
  "disable_ps_protocol",
  "enable_ps_protocol",
392 393
  "disable_reconnect",
  "enable_reconnect",
394
  "if",
unknown's avatar
unknown committed
395 396 397 398 399 400 401 402 403
  "disable_parsing",
  "enable_parsing",
  "replace_regex",
  "remove_file",
  "file_exists",
  "write_file",
  "copy_file",
  "perl",
  "die",
404
               
405 406
  /* Don't execute any more commands, compare result */
  "exit",
407
  "skip",
unknown's avatar
unknown committed
408
  "chmod",
409
  "append_file",
unknown's avatar
unknown committed
410
  "cat_file",
411
  "diff_files",
412
  "send_quit",
413
  "change_user",
414 415
  "mkdir",
  "rmdir",
416 417 418
  "list_files",
  "list_files_write_file",
  "list_files_append_file",
419 420
  "send_shutdown",
  "shutdown_server",
421
  "move_file",
422
  "remove_files_wildcard",
423
  "send_eval",
424 425
  "enable_prepare_warnings",
  "disable_prepare_warnings",
426

unknown's avatar
unknown committed
427
  0
428 429
};

unknown's avatar
unknown committed
430 431 432 433 434 435 436 437 438

/*
  The list of error codes to --error are stored in an internal array of
  structs. This struct can hold numeric SQL error codes, error names or
  SQLSTATE codes as strings. The element next to the last active element
  in the list is set to type ERR_EMPTY. When an SQL statement returns an
  error, we use this list to check if this is an expected error.
*/
enum match_err_type
439
{
unknown's avatar
unknown committed
440 441 442 443
  ERR_EMPTY= 0,
  ERR_ERRNO,
  ERR_SQLSTATE
};
444

unknown's avatar
unknown committed
445 446 447 448 449 450 451 452 453
struct st_match_err
{
  enum match_err_type type;
  union
  {
    uint errnum;
    char sqlstate[SQLSTATE_LENGTH+1];  /* \0 terminated string */
  } code;
};
454

unknown's avatar
unknown committed
455 456 457 458 459 460
struct st_expected_errors
{
  struct st_match_err err[10];
  uint count;
};
static struct st_expected_errors saved_expected_errors;
unknown's avatar
unknown committed
461

unknown's avatar
unknown committed
462 463 464
struct st_command
{
  char *query, *query_buf,*first_argument,*last_argument,*end;
465
  DYNAMIC_STRING content;
unknown's avatar
unknown committed
466
  int first_word_len, query_len;
467
  my_bool abort_on_error, used_replace;
unknown's avatar
unknown committed
468
  struct st_expected_errors expected_errors;
469
  char *require_file;
unknown's avatar
unknown committed
470 471
  enum enum_commands type;
};
472

unknown's avatar
unknown committed
473 474
TYPELIB command_typelib= {array_elements(command_names),"",
			  command_names, 0};
unknown's avatar
unknown committed
475

476
DYNAMIC_STRING ds_res;
477
struct st_command *curr_command= 0;
unknown's avatar
unknown committed
478

479 480
char builtin_echo[FN_REFLEN];

481 482
static void cleanup_and_exit(int exit_code) __attribute__((noreturn));

unknown's avatar
unknown committed
483
void die(const char *fmt, ...)
484
  ATTRIBUTE_FORMAT(printf, 1, 2) __attribute__((noreturn));
unknown's avatar
unknown committed
485
void abort_not_supported_test(const char *fmt, ...)
486
  ATTRIBUTE_FORMAT(printf, 1, 2) __attribute__((noreturn));
unknown's avatar
unknown committed
487
void verbose_msg(const char *fmt, ...)
488
  ATTRIBUTE_FORMAT(printf, 1, 2);
489 490
void log_msg(const char *fmt, ...)
  ATTRIBUTE_FORMAT(printf, 1, 2);
unknown's avatar
unknown committed
491 492 493 494 495 496 497

VAR* var_from_env(const char *, const char *);
VAR* var_init(VAR* v, const char *name, int name_len, const char *val,
              int val_len);
void var_free(void* v);
VAR* var_get(const char *var_name, const char** var_name_end,
             my_bool raw, my_bool ignore_not_existing);
498
void eval_expr(VAR* v, const char *p, const char** p_end, bool do_eval= true);
unknown's avatar
unknown committed
499
my_bool match_delimiter(int c, const char *delim, uint length);
500 501
void dump_result_to_reject_file(char *buf, int size);
void dump_warning_messages();
unknown's avatar
unknown committed
502 503 504 505

void do_eval(DYNAMIC_STRING *query_eval, const char *query,
             const char *query_end, my_bool pass_through_escape_chars);
void str_to_file(const char *fname, char *str, int size);
506
void str_to_file2(const char *fname, char *str, int size, my_bool append);
507

unknown's avatar
unknown committed
508 509
void fix_win_paths(const char *val, int len);

unknown's avatar
unknown committed
510 511 512 513
#ifdef __WIN__
void free_tmp_sh_file();
void free_win_path_patterns();
#endif
unknown's avatar
unknown committed
514 515


unknown's avatar
unknown committed
516 517 518 519 520 521 522 523
/* For replace_column */
static char *replace_column[MAX_COLUMNS];
static uint max_replace_column= 0;
void do_get_replace_column(struct st_command*);
void free_replace_column();

/* For replace */
void do_get_replace(struct st_command *command);
524
void free_replace();
unknown's avatar
unknown committed
525

unknown's avatar
unknown committed
526 527 528 529
/* For replace_regex */
void do_get_replace_regex(struct st_command *command);
void free_replace_regex();

530 531
/* Used by sleep */
void check_eol_junk_line(const char *eol);
unknown's avatar
unknown committed
532

unknown's avatar
unknown committed
533 534 535 536 537
void free_all_replace(){
  free_replace();
  free_replace_regex();
  free_replace_column();
}
538 539


540 541 542
class LogFile {
  FILE* m_file;
  char m_file_name[FN_REFLEN];
Magnus Svensson's avatar
Magnus Svensson committed
543
  size_t m_bytes_written;
544 545 546 547 548 549 550 551 552 553
public:
  LogFile() : m_file(NULL), m_bytes_written(0) {
    bzero(m_file_name, sizeof(m_file_name));
  }

  ~LogFile() {
    close();
  }

  const char* file_name() const { return m_file_name; }
Magnus Svensson's avatar
Magnus Svensson committed
554
  size_t bytes_written() const { return m_bytes_written; }
555 556 557 558

  void open(const char* dir, const char* name, const char* ext)
  {
    DBUG_ENTER("LogFile::open");
Magnus Svensson's avatar
Magnus Svensson committed
559
    DBUG_PRINT("enter", ("dir: '%s', name: '%s'",
560
                         val_or_null(dir), val_or_null(name)));
561 562 563 564 565 566 567 568 569 570 571 572
    if (!name)
    {
      m_file= stdout;
      DBUG_VOID_RETURN;
    }

    fn_format(m_file_name, name, dir, ext,
              *dir ? MY_REPLACE_DIR | MY_REPLACE_EXT :
              MY_REPLACE_EXT);

    DBUG_PRINT("info", ("file_name: %s", m_file_name));

573
    if ((m_file= fopen(m_file_name, "wb+")) == NULL)
574 575 576 577 578 579 580
      die("Failed to open log file %s, errno: %d", m_file_name, errno);

    DBUG_VOID_RETURN;
  }

  void close()
  {
581 582 583 584 585 586
    if (m_file) {
      if (m_file != stdout)
        fclose(m_file);
      else
        fflush(m_file);
    }
587 588 589 590 591 592
    m_file= NULL;
  }

  void flush()
  {
    if (m_file && m_file != stdout)
593 594 595 596
    {
      if (fflush(m_file))
        die("Failed to flush '%s', errno: %d", m_file_name, errno);
    }
597 598 599 600 601 602 603 604 605 606 607
  }

  void write(DYNAMIC_STRING* ds)
  {
    DBUG_ENTER("LogFile::write");
    DBUG_ASSERT(m_file);

    if (ds->length == 0)
      DBUG_VOID_RETURN;
    DBUG_ASSERT(ds->str);

608 609 610 611
#ifdef EXTRA_DEBUG
    DBUG_PRINT("QQ", ("str: %*s", (int) ds->length, ds->str));
#endif

612
    if (fwrite(ds->str, 1, ds->length, m_file) != ds->length)
Magnus Svensson's avatar
Magnus Svensson committed
613 614
      die("Failed to write %lu bytes to '%s', errno: %d",
          (unsigned long)ds->length, m_file_name, errno);
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
    m_bytes_written+= ds->length;
    DBUG_VOID_RETURN;
  }

  void show_tail(uint lines) {
    DBUG_ENTER("LogFile::show_tail");

    if (!m_file || m_file == stdout)
      DBUG_VOID_RETURN;

    if (lines == 0)
      DBUG_VOID_RETURN;
    lines++;

    int show_offset= 0;
630
    char buf[256+1];                   /* + zero termination for DBUG_PRINT */
631 632 633 634 635 636
    size_t bytes;
    bool found_bof= false;

    /* Search backward in file until "lines" newline has been found */
    while (lines && !found_bof)
    {
637
      show_offset-= sizeof(buf)-1;
638 639 640 641 642 643 644
      while(fseek(m_file, show_offset, SEEK_END) != 0 && show_offset < 0)
      {
        found_bof= true;
        // Seeking before start of file
        show_offset++;
      }

645
      if ((bytes= fread(buf, 1, sizeof(buf)-1, m_file)) <= 0)
646
      {
647 648 649 650 651
	// ferror=0 will happen here if no queries executed yet
	if (ferror(m_file))
	  fprintf(stderr,
	          "Failed to read from '%s', errno: %d, feof:%d, ferror:%d\n",
	          m_file_name, errno, feof(m_file), ferror(m_file));
652 653 654
        DBUG_VOID_RETURN;
      }

655
      IF_DBUG(buf[bytes]= '\0';)
Magnus Svensson's avatar
Magnus Svensson committed
656 657
      DBUG_PRINT("info", ("Read %lu bytes from file, buf: %s",
                          (unsigned long)bytes, buf));
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699

      char* show_from= buf + bytes;
      while(show_from > buf && lines > 0 )
      {
        show_from--;
        if (*show_from == '\n')
          lines--;
      }
      if (show_from != buf)
      {
        // The last new line was found in this buf, adjust offset
        show_offset+= (show_from - buf) + 1;
        DBUG_PRINT("info", ("adjusted offset to %d", show_offset));
      }
      DBUG_PRINT("info", ("show_offset: %d", show_offset));
    }

    fprintf(stderr, "\nThe result from queries just before the failure was:\n");

    DBUG_PRINT("info", ("show_offset: %d", show_offset));
    if (!lines)
    {
      fprintf(stderr, "< snip >\n");

      if (fseek(m_file, show_offset, SEEK_END) != 0)
      {
        fprintf(stderr, "Failed to seek to position %d in '%s', errno: %d",
                show_offset, m_file_name, errno);
        DBUG_VOID_RETURN;
      }

    }
    else {
      DBUG_PRINT("info", ("Showing the whole file"));
      if (fseek(m_file, 0L, SEEK_SET) != 0)
      {
        fprintf(stderr, "Failed to seek to pos 0 in '%s', errno: %d",
                m_file_name, errno);
        DBUG_VOID_RETURN;
      }
    }

700 701
    while ((bytes= fread(buf, 1, sizeof(buf)-1, m_file)) > 0)
      if (bytes != fwrite(buf, 1, bytes, stderr))
702 703
        die("Failed to write to '%s', errno: %d",
            m_file_name, errno);
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720

    if (!lines)
    {
      fprintf(stderr,
              "\nMore results from queries before failure can be found in %s\n",
              m_file_name);
    }
    fflush(stderr);

    DBUG_VOID_RETURN;
  }
};

LogFile log_file;
LogFile progress_file;


unknown's avatar
unknown committed
721
/* Disable functions that only exist in MySQL 4.0 */
unknown's avatar
SCRUM  
unknown committed
722
#if MYSQL_VERSION_ID < 40000
unknown's avatar
unknown committed
723 724 725
void mysql_enable_rpl_parse(MYSQL* mysql __attribute__((unused))) {}
void mysql_disable_rpl_parse(MYSQL* mysql __attribute__((unused))) {}
int mysql_rpl_parse_enabled(MYSQL* mysql __attribute__((unused))) { return 1; }
726
my_bool mysql_rpl_probe(MYSQL *mysql __attribute__((unused))) { return 1; }
unknown's avatar
unknown committed
727
#endif
unknown's avatar
unknown committed
728 729 730 731
void replace_dynstr_append_mem(DYNAMIC_STRING *ds, const char *val,
                               int len);
void replace_dynstr_append(DYNAMIC_STRING *ds, const char *val);
void replace_dynstr_append_uint(DYNAMIC_STRING *ds, uint val);
732
void dynstr_append_sorted(DYNAMIC_STRING* ds, DYNAMIC_STRING* ds_input);
unknown's avatar
unknown committed
733

734 735 736
static int match_expected_error(struct st_command *command,
                                unsigned int err_errno,
                                const char *err_sqlstate);
unknown's avatar
unknown committed
737 738 739 740 741
void handle_error(struct st_command*,
                  unsigned int err_errno, const char *err_error,
                  const char *err_sqlstate, DYNAMIC_STRING *ds);
void handle_no_error(struct st_command*);

742
#ifdef EMBEDDED_LIBRARY
743

744 745 746 747
/* workaround for MySQL BUG#57491 */
#undef MY_WME
#define MY_WME 0

748 749 750
/* attributes of the query thread */
pthread_attr_t cn_thd_attrib;

751
/*
unknown's avatar
unknown committed
752
  send_one_query executes query in separate thread, which is
753 754 755
  necessary in embedded library to run 'send' in proper way.
  This implementation doesn't handle errors returned
  by mysql_send_query. It's technically possible, though
unknown's avatar
unknown committed
756
  I don't see where it is needed.
757
*/
unknown's avatar
unknown committed
758
pthread_handler_t send_one_query(void *arg)
759
{
unknown's avatar
unknown committed
760
  struct st_connection *cn= (struct st_connection*)arg;
761

762 763 764
  if (!cn->mysql)
    return 0;

765
  mysql_thread_init();
766
  VOID(mysql_send_query(cn->mysql, cn->cur_query, cn->cur_query_len));
767 768 769 770 771 772 773 774 775 776

  mysql_thread_end();
  pthread_mutex_lock(&cn->mutex);
  cn->query_done= 1;
  VOID(pthread_cond_signal(&cn->cond));
  pthread_mutex_unlock(&cn->mutex);
  pthread_exit(0);
  return 0;
}

unknown's avatar
unknown committed
777
static int do_send_query(struct st_connection *cn, const char *q, int q_len,
778 779
                         int flags)
{
780 781 782
  if (!cn->mysql)
    die("Trying to send a query without a connection");

unknown's avatar
unknown committed
783
  if (flags & QUERY_REAP_FLAG)
784
    return mysql_send_query(cn->mysql, q, q_len);
785

786 787 788
  if (!cn->mutex_inited &&
      (pthread_mutex_init(&cn->mutex, NULL) ||
       pthread_cond_init(&cn->cond, NULL)))
789
    die("Error in the thread library");
unknown's avatar
unknown committed
790

791
  cn->mutex_inited= 1;
792 793 794
  cn->cur_query= q;
  cn->cur_query_len= q_len;
  cn->query_done= 0;
795
  if (pthread_create(&cn->tid, &cn_thd_attrib, send_one_query, (void*)cn))
796 797
    die("Cannot start new thread for query");

798
  cn->has_thread= TRUE;
799 800 801
  return 0;
}

802 803 804 805 806 807 808 809 810
static void wait_query_thread_end(struct st_connection *con)
{
  if (!con->query_done)
  {
    pthread_mutex_lock(&con->mutex);
    while (!con->query_done)
      pthread_cond_wait(&con->cond, &con->mutex);
    pthread_mutex_unlock(&con->mutex);
  }
811 812
  if (con->has_thread)
  {
813 814
#ifndef __WIN__
    /* May hang on Windows, but the problem it solves is not seen there */
815
    pthread_join(con->tid, NULL);
816
#endif
817 818
    con->has_thread= FALSE;
  }
819 820
}

821 822 823 824 825 826 827 828 829 830
static void free_embedded_data(struct st_connection *con)
{
  if (con->mutex_inited)
  {
    con->mutex_inited= 0;
    pthread_mutex_destroy(&con->mutex);
    pthread_cond_destroy(&con->cond);
  }
}

831 832
#else /*EMBEDDED_LIBRARY*/

833
#define do_send_query(cn,q,q_len,flags) mysql_send_query(cn->mysql, q, q_len)
834
#define free_embedded_data(next_con) do { } while(0)
835 836

#endif /*EMBEDDED_LIBRARY*/
unknown's avatar
unknown committed
837 838 839

void do_eval(DYNAMIC_STRING *query_eval, const char *query,
             const char *query_end, my_bool pass_through_escape_chars)
840
{
841
  const char *p;
unknown's avatar
unknown committed
842
  register char c, next_c;
843
  register int escaped = 0;
unknown's avatar
unknown committed
844
  VAR *v;
unknown's avatar
unknown committed
845
  DBUG_ENTER("do_eval");
unknown's avatar
unknown committed
846

unknown's avatar
unknown committed
847
  for (p= query; (c= *p) && p < query_end; ++p)
848 849 850 851 852
  {
    switch(c) {
    case '$':
      if (escaped)
      {
unknown's avatar
unknown committed
853
	escaped= 0;
854 855 856 857
	dynstr_append_mem(query_eval, p, 1);
      }
      else
      {
unknown's avatar
unknown committed
858
	if (!(v= var_get(p, &p, 0, 0)))
859 860 861 862 863
	  die("Bad variable in eval");
	dynstr_append_mem(query_eval, v->str_val, v->str_val_len);
      }
      break;
    case '\\':
unknown's avatar
unknown committed
864
      next_c= *(p+1);
865 866
      if (escaped)
      {
unknown's avatar
unknown committed
867
	escaped= 0;
868 869
	dynstr_append_mem(query_eval, p, 1);
      }
unknown's avatar
unknown committed
870 871 872 873 874 875 876 877 878 879 880
      else if (next_c == '\\' || next_c == '$' || next_c == '"')
      {
        /* Set escaped only if next char is \, " or $ */
	escaped= 1;

        if (pass_through_escape_chars)
        {
          /* The escape char should be added to the output string. */
          dynstr_append_mem(query_eval, p, 1);
        }
      }
881
      else
unknown's avatar
unknown committed
882
	dynstr_append_mem(query_eval, p, 1);
883 884
      break;
    default:
885
      escaped= 0;
886 887
      dynstr_append_mem(query_eval, p, 1);
      break;
888
    }
889
  }
unknown's avatar
unknown committed
890 891 892
#ifdef __WIN__
    fix_win_paths(query_eval->str, query_eval->length);
#endif
unknown's avatar
unknown committed
893
  DBUG_VOID_RETURN;
894
}
unknown's avatar
unknown committed
895

896

897
/*
898
  Run query and dump the result to stderr in vertical format
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961

  NOTE! This function should be safe to call when an error
  has occured and thus any further errors will be ignored(although logged)

  SYNOPSIS
  show_query
  mysql - connection to use
  query - query to run

*/

static void show_query(MYSQL* mysql, const char* query)
{
  MYSQL_RES* res;
  DBUG_ENTER("show_query");

  if (!mysql)
    DBUG_VOID_RETURN;

  if (mysql_query(mysql, query))
  {
    log_msg("Error running query '%s': %d %s",
            query, mysql_errno(mysql), mysql_error(mysql));
    DBUG_VOID_RETURN;
  }

  if ((res= mysql_store_result(mysql)) == NULL)
  {
    /* No result set returned */
    DBUG_VOID_RETURN;
  }

  {
    MYSQL_ROW row;
    unsigned int i;
    unsigned int row_num= 0;
    unsigned int num_fields= mysql_num_fields(res);
    MYSQL_FIELD *fields= mysql_fetch_fields(res);

    fprintf(stderr, "=== %s ===\n", query);
    while ((row= mysql_fetch_row(res)))
    {
      unsigned long *lengths= mysql_fetch_lengths(res);
      row_num++;

      fprintf(stderr, "---- %d. ----\n", row_num);
      for(i= 0; i < num_fields; i++)
      {
        fprintf(stderr, "%s\t%.*s\n",
                fields[i].name,
                (int)lengths[i], row[i] ? row[i] : "NULL");
      }
    }
    for (i= 0; i < strlen(query)+8; i++)
      fprintf(stderr, "=");
    fprintf(stderr, "\n\n");
  }
  mysql_free_result(res);

  DBUG_VOID_RETURN;
}


962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
/*
  Show any warnings just before the error. Since the last error
  is added to the warning stack, only print @@warning_count-1 warnings.

  NOTE! This function should be safe to call when an error
  has occured and this any further errors will be ignored(although logged)

  SYNOPSIS
  show_warnings_before_error
  mysql - connection to use

*/

static void show_warnings_before_error(MYSQL* mysql)
{
  MYSQL_RES* res;
  const char* query= "SHOW WARNINGS";
  DBUG_ENTER("show_warnings_before_error");

  if (!mysql)
    DBUG_VOID_RETURN;

  if (mysql_query(mysql, query))
  {
    log_msg("Error running query '%s': %d %s",
            query, mysql_errno(mysql), mysql_error(mysql));
    DBUG_VOID_RETURN;
  }

  if ((res= mysql_store_result(mysql)) == NULL)
  {
    /* No result set returned */
    DBUG_VOID_RETURN;
  }

  if (mysql_num_rows(res) <= 1)
  {
    /* Don't display the last row, it's "last error" */
  }
  else
  {
    MYSQL_ROW row;
    unsigned int row_num= 0;
    unsigned int num_fields= mysql_num_fields(res);

    fprintf(stderr, "\nWarnings from just before the error:\n");
    while ((row= mysql_fetch_row(res)))
    {
      unsigned int i;
      unsigned long *lengths= mysql_fetch_lengths(res);

      if (++row_num >= mysql_num_rows(res))
      {
        /* Don't display the last row, it's "last error" */
        break;
      }

      for(i= 0; i < num_fields; i++)
      {
unknown's avatar
unknown committed
1021
        fprintf(stderr, "%.*s ", (int)lengths[i],
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
                row[i] ? row[i] : "NULL");
      }
      fprintf(stderr, "\n");
    }
  }
  mysql_free_result(res);

  DBUG_VOID_RETURN;
}


unknown's avatar
unknown committed
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
enum arg_type
{
  ARG_STRING,
  ARG_REST
};

struct command_arg {
  const char *argname;       /* Name of argument   */
  enum arg_type type;        /* Type of argument   */
  my_bool required;          /* Argument required  */
  DYNAMIC_STRING *ds;        /* Storage for argument */
  const char *description;   /* Description of the argument */
};


void check_command_args(struct st_command *command,
                        const char *arguments,
                        const struct command_arg *args,
                        int num_args, const char delimiter_arg)
{
  int i;
  const char *ptr= arguments;
  const char *start;
  DBUG_ENTER("check_command_args");
  DBUG_PRINT("enter", ("num_args: %d", num_args));
1058

unknown's avatar
unknown committed
1059 1060 1061
  for (i= 0; i < num_args; i++)
  {
    const struct command_arg *arg= &args[i];
1062
    char delimiter;
unknown's avatar
unknown committed
1063

1064
    switch (arg->type) {
unknown's avatar
unknown committed
1065 1066 1067 1068 1069 1070
      /* A string */
    case ARG_STRING:
      /* Skip leading spaces */
      while (*ptr && *ptr == ' ')
        ptr++;
      start= ptr;
1071 1072 1073 1074 1075 1076 1077 1078 1079
      delimiter = delimiter_arg;
      /* If start of arg is ' ` or " search to matching quote end instead */
      if (*ptr && strchr ("'`\"", *ptr))
      {
	delimiter= *ptr;
	start= ++ptr;
      }
      /* Find end of arg, terminated by "delimiter" */
      while (*ptr && *ptr != delimiter)
unknown's avatar
unknown committed
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
        ptr++;
      if (ptr > start)
      {
        init_dynamic_string(arg->ds, 0, ptr-start, 32);
        do_eval(arg->ds, start, ptr, FALSE);
      }
      else
      {
        /* Empty string */
        init_dynamic_string(arg->ds, "", 0, 0);
      }
1091 1092 1093 1094 1095
      /* Find real end of arg, terminated by "delimiter_arg" */
      /* This will do nothing if arg was not closed by quotes */
      while (*ptr && *ptr != delimiter_arg)
        ptr++;      

unknown's avatar
unknown committed
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
      command->last_argument= (char*)ptr;

      /* Step past the delimiter */
      if (*ptr && *ptr == delimiter_arg)
        ptr++;
      DBUG_PRINT("info", ("val: %s", arg->ds->str));
      break;

      /* Rest of line */
    case ARG_REST:
      start= ptr;
      init_dynamic_string(arg->ds, 0, command->query_len, 256);
      do_eval(arg->ds, start, command->end, FALSE);
      command->last_argument= command->end;
      DBUG_PRINT("info", ("val: %s", arg->ds->str));
      break;

    default:
      DBUG_ASSERT("Unknown argument type");
      break;
    }

    /* Check required arg */
    if (arg->ds->length == 0 && arg->required)
      die("Missing required argument '%s' to command '%.*s'", arg->argname,
          command->first_word_len, command->query);

  }
1124 1125
  /* Check for too many arguments passed */
  ptr= command->last_argument;
1126
  while(ptr <= command->end && *ptr != '#')
1127 1128 1129 1130 1131 1132
  {
    if (*ptr && *ptr != ' ')
      die("Extra argument '%s' passed to '%.*s'",
          ptr, command->first_word_len, command->query);
    ptr++;
  }
unknown's avatar
unknown committed
1133 1134 1135
  DBUG_VOID_RETURN;
}

1136 1137
void handle_command_error(struct st_command *command, uint error,
                          int sys_errno)
unknown's avatar
unknown committed
1138 1139 1140 1141 1142
{
  DBUG_ENTER("handle_command_error");
  DBUG_PRINT("enter", ("error: %d", error));
  if (error != 0)
  {
1143
    int i;
unknown's avatar
unknown committed
1144 1145

    if (command->abort_on_error)
Michael Widenius's avatar
Michael Widenius committed
1146 1147 1148
      die("command \"%.*s\" failed with error: %u  my_errno: %d  errno: %d",
          command->first_word_len, command->query, error, my_errno,
          sys_errno);
1149 1150 1151 1152

    i= match_expected_error(command, error, NULL);

    if (i >= 0)
unknown's avatar
unknown committed
1153
    {
1154 1155 1156
      DBUG_PRINT("info", ("command \"%.*s\" failed with expected error: %u, errno: %d",
                          command->first_word_len, command->query, error,
                          sys_errno));
1157
      DBUG_VOID_RETURN;
unknown's avatar
unknown committed
1158
    }
1159
    if (command->expected_errors.count > 0)
Michael Widenius's avatar
Michael Widenius committed
1160 1161
      die("command \"%.*s\" failed with wrong error: %u  my_errno: %d  errno: %d",
          command->first_word_len, command->query, error, my_errno, sys_errno);
unknown's avatar
unknown committed
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
  }
  else if (command->expected_errors.err[0].type == ERR_ERRNO &&
           command->expected_errors.err[0].code.errnum != 0)
  {
    /* Error code we wanted was != 0, i.e. not an expected success */
    die("command \"%.*s\" succeeded - should have failed with errno %d...",
        command->first_word_len, command->query,
        command->expected_errors.err[0].code.errnum);
  }
  DBUG_VOID_RETURN;
}


void close_connections()
1176
{
unknown's avatar
unknown committed
1177 1178
  DBUG_ENTER("close_connections");
  for (--next_con; next_con >= connections; --next_con)
1179
  {
unknown's avatar
unknown committed
1180 1181 1182
    if (next_con->stmt)
      mysql_stmt_close(next_con->stmt);
    next_con->stmt= 0;
1183 1184
    mysql_close(next_con->mysql);
    next_con->mysql= 0;
unknown's avatar
unknown committed
1185 1186
    if (next_con->util_mysql)
      mysql_close(next_con->util_mysql);
1187
    my_free(next_con->name, MYF(MY_ALLOW_ZERO_PTR));
1188
    free_embedded_data(next_con);
1189
  }
1190
  my_free(connections, MYF(MY_WME));
1191 1192 1193
  DBUG_VOID_RETURN;
}

1194

1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
void close_statements()
{
  struct st_connection *con;
  DBUG_ENTER("close_statements");
  for (con= connections; con < next_con; con++)
  {
    if (con->stmt)
      mysql_stmt_close(con->stmt);
    con->stmt= 0;
  }
  DBUG_VOID_RETURN;
}


unknown's avatar
unknown committed
1209
void close_files()
1210
{
unknown's avatar
unknown committed
1211
  DBUG_ENTER("close_files");
unknown's avatar
unknown committed
1212
  for (; cur_file >= file_stack; cur_file--)
1213
  {
1214
    if (cur_file->file && cur_file->file != stdin)
1215 1216
    {
      DBUG_PRINT("info", ("closing file: %s", cur_file->file_name));
1217
      fclose(cur_file->file);
1218
    }
1219
    my_free((uchar*) cur_file->file_name, MYF(MY_ALLOW_ZERO_PTR));
1220
    cur_file->file_name= 0;
unknown's avatar
unknown committed
1221 1222
  }
  DBUG_VOID_RETURN;
1223 1224
}

1225

unknown's avatar
unknown committed
1226
void free_used_memory()
1227 1228 1229
{
  uint i;
  DBUG_ENTER("free_used_memory");
unknown's avatar
unknown committed
1230

1231 1232
  if (connections)
    close_connections();
1233
  close_files();
unknown's avatar
unknown committed
1234
  hash_free(&var_hash);
unknown's avatar
unknown committed
1235

unknown's avatar
unknown committed
1236
  for (i= 0 ; i < q_lines.elements ; i++)
1237
  {
unknown's avatar
unknown committed
1238
    struct st_command **q= dynamic_element(&q_lines, i, struct st_command**);
1239
    my_free((*q)->query_buf,MYF(MY_ALLOW_ZERO_PTR));
1240 1241
    if ((*q)->content.str)
      dynstr_free(&(*q)->content);
1242
    my_free((*q),MYF(0));
1243
  }
unknown's avatar
unknown committed
1244
  for (i= 0; i < 10; i++)
unknown's avatar
unknown committed
1245 1246 1247 1248
  {
    if (var_reg[i].alloced_len)
      my_free(var_reg[i].str_val, MYF(MY_WME));
  }
1249 1250
  while (embedded_server_arg_count > 1)
    my_free(embedded_server_args[--embedded_server_arg_count],MYF(0));
1251 1252
  delete_dynamic(&q_lines);
  dynstr_free(&ds_res);
unknown's avatar
unknown committed
1253
  free_all_replace();
1254
  my_free(opt_pass,MYF(MY_ALLOW_ZERO_PTR));
1255
  free_defaults(default_argv);
1256
  free_root(&require_file_root, MYF(0));
unknown's avatar
unknown committed
1257 1258 1259 1260 1261
  free_re();
#ifdef __WIN__
  free_tmp_sh_file();
  free_win_path_patterns();
#endif
1262
  DBUG_VOID_RETURN;
1263 1264
}

unknown's avatar
unknown committed
1265

unknown's avatar
unknown committed
1266 1267 1268
static void cleanup_and_exit(int exit_code)
{
  free_used_memory();
1269 1270 1271 1272

  /* Only call mysql_server_end if mysql_server_init has been called */
  if (server_initialized)
    mysql_server_end();
1273
  my_end(my_end_arg);
unknown's avatar
unknown committed
1274

1275
  if (!silent) {
1276
    switch (exit_code) {
unknown's avatar
unknown committed
1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
    case 1:
      printf("not ok\n");
      break;
    case 0:
      printf("ok\n");
      break;
    case 62:
      printf("skipped\n");
    break;
    default:
      printf("unknown exit code: %d\n", exit_code);
      DBUG_ASSERT(0);
    }
  }

  exit(exit_code);
}

1295 1296
void print_file_stack()
{
1297 1298 1299 1300 1301
  struct st_test_file* err_file= cur_file;
  if (err_file == file_stack)
    return;

  for (;;)
1302
  {
1303
    err_file--;
1304 1305
    fprintf(stderr, "included from %s at line %d:\n",
            err_file->file_name, err_file->lineno);
1306 1307
    if (err_file == file_stack)
      break;
1308 1309 1310
  }
}

unknown's avatar
unknown committed
1311
void die(const char *fmt, ...)
1312
{
unknown's avatar
unknown committed
1313
  static int dying= 0;
1314
  va_list args;
1315
  DBUG_ENTER("die");
unknown's avatar
unknown committed
1316 1317
  DBUG_PRINT("enter", ("start_lineno: %d", start_lineno));

1318
  fflush(stdout);
unknown's avatar
unknown committed
1319
  /* Print the error message */
unknown's avatar
unknown committed
1320 1321
  fprintf(stderr, "mysqltest: ");
  if (cur_file && cur_file != file_stack)
1322 1323
  {
    fprintf(stderr, "In included file \"%s\": \n",
unknown's avatar
unknown committed
1324
            cur_file->file_name);
1325 1326
    print_file_stack();
  }
unknown's avatar
unknown committed
1327 1328
  if (start_lineno > 0)
    fprintf(stderr, "At line %u: ", start_lineno);
1329 1330
  if (fmt)
  {
unknown's avatar
unknown committed
1331
    va_start(args, fmt);
1332
    vfprintf(stderr, fmt, args);
unknown's avatar
unknown committed
1333
    va_end(args);
1334
  }
unknown's avatar
unknown committed
1335 1336 1337 1338
  else
    fprintf(stderr, "unknown error");
  fprintf(stderr, "\n");
  fflush(stderr);
unknown's avatar
unknown committed
1339

1340 1341 1342 1343 1344 1345 1346 1347 1348
  /*
    Protect against dying twice
    first time 'die' is called, try to write log files
    second time, just exit
  */
  if (dying)
    cleanup_and_exit(1);
  dying= 1;

1349
  log_file.show_tail(opt_tail_lines);
1350

1351 1352 1353 1354
  /*
    Help debugging by displaying any warnings that might have
    been produced prior to the error
  */
1355
  if (cur_con && !cur_con->pending)
1356
    show_warnings_before_error(cur_con->mysql);
1357

unknown's avatar
unknown committed
1358
  cleanup_and_exit(1);
1359 1360
}

1361

unknown's avatar
unknown committed
1362
void abort_not_supported_test(const char *fmt, ...)
1363
{
unknown's avatar
unknown committed
1364
  va_list args;
1365
  DBUG_ENTER("abort_not_supported_test");
unknown's avatar
unknown committed
1366 1367

  /* Print include filestack */
1368
  fflush(stdout);
unknown's avatar
unknown committed
1369 1370 1371
  fprintf(stderr, "The test '%s' is not supported by this installation\n",
          file_stack->file_name);
  fprintf(stderr, "Detected in file %s at line %d\n",
1372 1373
          cur_file->file_name, cur_file->lineno);
  print_file_stack();
unknown's avatar
unknown committed
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385

  /* Print error message */
  va_start(args, fmt);
  if (fmt)
  {
    fprintf(stderr, "reason: ");
    vfprintf(stderr, fmt, args);
    fprintf(stderr, "\n");
    fflush(stderr);
  }
  va_end(args);

unknown's avatar
unknown committed
1386
  cleanup_and_exit(62);
1387 1388
}

unknown's avatar
unknown committed
1389 1390 1391

void abort_not_in_this_version()
{
1392
  die("Not available in this version of mysqltest");
unknown's avatar
unknown committed
1393 1394 1395 1396
}


void verbose_msg(const char *fmt, ...)
1397 1398
{
  va_list args;
1399
  DBUG_ENTER("verbose_msg");
1400 1401
  DBUG_PRINT("enter", ("format: %s", fmt));

1402 1403
  if (!verbose)
    DBUG_VOID_RETURN;
1404

1405
  fflush(stdout);
1406
  va_start(args, fmt);
unknown's avatar
unknown committed
1407
  fprintf(stderr, "mysqltest: ");
1408 1409 1410
  if (cur_file && cur_file != file_stack)
    fprintf(stderr, "In included file \"%s\": ",
            cur_file->file_name);
unknown's avatar
unknown committed
1411
  if (start_lineno != 0)
unknown's avatar
unknown committed
1412
    fprintf(stderr, "At line %u: ", start_lineno);
1413 1414 1415
  vfprintf(stderr, fmt, args);
  fprintf(stderr, "\n");
  va_end(args);
1416
  fflush(stderr);
unknown's avatar
unknown committed
1417

1418
  DBUG_VOID_RETURN;
1419 1420
}

unknown's avatar
unknown committed
1421

1422 1423 1424
void log_msg(const char *fmt, ...)
{
  va_list args;
unknown's avatar
unknown committed
1425
  char buff[1024];
1426 1427 1428 1429
  size_t len;
  DBUG_ENTER("log_msg");

  va_start(args, fmt);
1430
  len= my_vsnprintf(buff, sizeof(buff)-1, fmt, args);
1431 1432 1433 1434 1435 1436 1437 1438 1439
  va_end(args);

  dynstr_append_mem(&ds_res, buff, len);
  dynstr_append(&ds_res, "\n");

  DBUG_VOID_RETURN;
}


unknown's avatar
unknown committed
1440
/*
1441 1442 1443 1444 1445 1446 1447
  Read a file and append it to ds

  SYNOPSIS
  cat_file
  ds - pointer to dynamic string where to add the files content
  filename - name of the file to read

unknown's avatar
unknown committed
1448
*/
unknown's avatar
unknown committed
1449

1450
int cat_file(DYNAMIC_STRING* ds, const char* filename)
unknown's avatar
unknown committed
1451 1452
{
  int fd;
1453
  size_t len;
1454
  char buff[512];
1455

1456
  if ((fd= my_open(filename, O_RDONLY, MYF(0))) < 0)
1457
    return 1;
1458
  while((len= my_read(fd, (uchar*)&buff,
1459
                      sizeof(buff), MYF(0))) > 0)
1460
  {
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
    char *p= buff, *start= buff;
    while (p < buff+len)
    {
      /* Convert cr/lf to lf */
      if (*p == '\r' && *(p+1) && *(p+1)== '\n')
      {
        /* Add fake newline instead of cr and output the line */
        *p= '\n';
        p++; /* Step past the "fake" newline */
        dynstr_append_mem(ds, start, p-start);
        p++; /* Step past the "fake" newline */
        start= p;
      }
      else
        p++;
    }
    /* Output any chars that migh be left */
    dynstr_append_mem(ds, start, p-start);
1479
  }
1480
  my_close(fd, MYF(0));
1481
  return 0;
1482
}
1483

1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500

/*
  Run the specified command with popen

  SYNOPSIS
  run_command
  cmd - command to execute(should be properly quoted
  ds_res- pointer to dynamic string where to store the result

*/

static int run_command(char* cmd,
                       DYNAMIC_STRING *ds_res)
{
  char buf[512]= {0};
  FILE *res_file;
  int error;
1501 1502
  DBUG_ENTER("run_command");
  DBUG_PRINT("enter", ("cmd: %s", cmd));
1503 1504 1505 1506 1507

  if (!(res_file= popen(cmd, "r")))
    die("popen(\"%s\", \"r\") failed", cmd);

  while (fgets(buf, sizeof(buf), res_file))
1508
  {
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
    DBUG_PRINT("info", ("buf: %s", buf));
    if(ds_res)
    {
      /* Save the output of this command in the supplied string */
      dynstr_append(ds_res, buf);
    }
    else
    {
      /* Print it directly on screen */
      fprintf(stdout, "%s", buf);
    }
1520
  }
1521

1522
  error= pclose(res_file);
1523
  DBUG_RETURN(WEXITSTATUS(error));
1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
}


/*
  Run the specified tool with variable number of arguments

  SYNOPSIS
  run_tool
  tool_path - the name of the tool to run
  ds_res - pointer to dynamic string where to store the result
  ... - variable number of arguments that will be properly
        quoted and appended after the tool's name

*/

static int run_tool(const char *tool_path, DYNAMIC_STRING *ds_res, ...)
{
  int ret;
  const char* arg;
  va_list args;
  DYNAMIC_STRING ds_cmdline;

  DBUG_ENTER("run_tool");
  DBUG_PRINT("enter", ("tool_path: %s", tool_path));

  if (init_dynamic_string(&ds_cmdline, IF_WIN("\"", ""), FN_REFLEN, FN_REFLEN))
    die("Out of memory");

  dynstr_append_os_quoted(&ds_cmdline, tool_path, NullS);
  dynstr_append(&ds_cmdline, " ");

  va_start(args, ds_res);

  while ((arg= va_arg(args, char *)))
1558
  {
1559 1560 1561 1562 1563 1564
    /* Options should be os quoted */
    if (strncmp(arg, "--", 2) == 0)
      dynstr_append_os_quoted(&ds_cmdline, arg, NullS);
    else
      dynstr_append(&ds_cmdline, arg);
    dynstr_append(&ds_cmdline, " ");
1565
  }
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580

  va_end(args);

#ifdef __WIN__
  dynstr_append(&ds_cmdline, "\"");
#endif

  DBUG_PRINT("info", ("Running: %s", ds_cmdline.str));
  ret= run_command(ds_cmdline.str, ds_res);
  DBUG_PRINT("exit", ("ret: %d", ret));
  dynstr_free(&ds_cmdline);
  DBUG_RETURN(ret);
}


1581 1582 1583 1584
/*
  Test if diff is present.  This is needed on Windows systems
  as the OS returns 1 whether diff is successful or if it is
  not present.
1585

1586 1587 1588 1589 1590 1591
  We run diff -v and look for output in stdout.
  We don't redirect stderr to stdout to make for a simplified check
  Windows will output '"diff"' is not recognized... to stderr if it is
  not present.
*/

1592 1593 1594
#ifdef __WIN__

static int diff_check(const char *diff_name)
1595
{
1596
  FILE *res_file;
1597 1598
  char buf[128];
  int have_diff= 0;
1599

1600
  my_snprintf(buf, sizeof(buf), "%s -v", diff_name);
1601

1602 1603 1604 1605
  if (!(res_file= popen(buf, "r")))
    die("popen(\"%s\", \"r\") failed", buf);

  /* if diff is not present, nothing will be in stdout to increment have_diff */
1606
  if (fgets(buf, sizeof(buf), res_file))
1607 1608
    have_diff= 1;

1609
  pclose(res_file);
1610

1611
  return have_diff;
1612
}
1613

1614 1615 1616
#endif


1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
/*
  Show the diff of two files using the systems builtin diff
  command. If no such diff command exist, just dump the content
  of the two files and inform about how to get "diff"

  SYNOPSIS
  show_diff
  ds - pointer to dynamic string where to add the diff(may be NULL)
  filename1 - name of first file
  filename2 - name of second file

*/

void show_diff(DYNAMIC_STRING* ds,
               const char* filename1, const char* filename2)
{
  DYNAMIC_STRING ds_tmp;
1634
  const char *diff_name = 0;
1635 1636

  if (init_dynamic_string(&ds_tmp, "", 256, 256))
unknown's avatar
unknown committed
1637
    die("Out of memory");
1638

1639 1640 1641
  /* determine if we have diff on Windows
     needs special processing due to return values
     on that OS
1642 1643 1644
     This test is only done on Windows since it's only needed there
     in order to correctly detect non-availibility of 'diff', and
     the way it's implemented does not work with default 'diff' on Solaris.
1645
  */
Luis Soares's avatar
Luis Soares committed
1646
#ifdef __WIN__
1647 1648 1649 1650 1651 1652
  if (diff_check("diff"))
    diff_name = "diff";
  else if (diff_check("mtrdiff"))
    diff_name = "mtrdiff";
  else
    diff_name = 0;
Luis Soares's avatar
Luis Soares committed
1653
#else
hery's avatar
hery committed
1654
  diff_name = "diff";           /* Otherwise always assume it's called diff */
1655
#endif
1656

1657
  if (diff_name)
1658
  {
1659
    /* First try with unified diff */
1660
    if (run_tool(diff_name,
1661
                 &ds_tmp, /* Get output from diff in ds_tmp */
1662
                 "-u",
1663 1664 1665 1666
                 filename1,
                 filename2,
                 "2>&1",
                 NULL) > 1) /* Most "diff" tools return >1 if error */
1667
    {
1668 1669
      dynstr_set(&ds_tmp, "");

1670
      /* Fallback to context diff with "diff -c" */
1671
      if (run_tool(diff_name,
1672
                   &ds_tmp, /* Get output from diff in ds_tmp */
1673
                   "-c",
1674 1675 1676 1677 1678
                   filename1,
                   filename2,
                   "2>&1",
                   NULL) > 1) /* Most "diff" tools return >1 if error */
      {
Luis Soares's avatar
Luis Soares committed
1679 1680 1681
	dynstr_set(&ds_tmp, "");

	/* Fallback to simple diff with "diff" */
1682
	if (run_tool(diff_name,
Luis Soares's avatar
Luis Soares committed
1683 1684 1685 1686 1687 1688
		     &ds_tmp, /* Get output from diff in ds_tmp */
		     filename1,
		     filename2,
		     "2>&1",
		     NULL) > 1) /* Most "diff" tools return >1 if error */
	    {
1689
		diff_name= 0;
Luis Soares's avatar
Luis Soares committed
1690
	    }
1691 1692
      }
    }
Luis Soares's avatar
Luis Soares committed
1693
  }  
1694

1695
  if (! diff_name)
1696 1697 1698 1699 1700 1701 1702
  {
    /*
      Fallback to dump both files to result file and inform
      about installing "diff"
    */
	dynstr_append(&ds_tmp, "\n");
    dynstr_append(&ds_tmp,
1703 1704
"\n"
"The two files differ but it was not possible to execute 'diff' in\n"
1705 1706
"order to show only the difference. Instead the whole content of the\n"
"two files was shown for you to diff manually.\n\n"
1707 1708 1709 1710 1711 1712 1713
"To get a better report you should install 'diff' on your system, which you\n"
"for example can get from http://www.gnu.org/software/diffutils/diffutils.html\n"
#ifdef __WIN__
"or http://gnuwin32.sourceforge.net/packages/diffutils.htm\n"
#endif
"\n");

1714 1715 1716 1717 1718 1719 1720 1721 1722
    dynstr_append(&ds_tmp, " --- ");
    dynstr_append(&ds_tmp, filename1);
    dynstr_append(&ds_tmp, " >>>\n");
    cat_file(&ds_tmp, filename1);
    dynstr_append(&ds_tmp, "<<<\n --- ");
    dynstr_append(&ds_tmp, filename1);
    dynstr_append(&ds_tmp, " >>>\n");
    cat_file(&ds_tmp, filename2);
    dynstr_append(&ds_tmp, "<<<<\n");
1723
  }
1724 1725 1726 1727 1728 1729

  if (ds)
  {
    /* Add the diff to output */
    dynstr_append_mem(ds, ds_tmp.str, ds_tmp.length);
  }
1730 1731
  else
  {
1732
    /* Print diff directly to stdout */
1733
    fprintf(stderr, "%s\n", ds_tmp.str);
1734
  }
1735 1736
 
  dynstr_free(&ds_tmp);
unknown's avatar
unknown committed
1737

1738
}
unknown's avatar
unknown committed
1739 1740


1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760
enum compare_files_result_enum {
   RESULT_OK= 0,
   RESULT_CONTENT_MISMATCH= 1,
   RESULT_LENGTH_MISMATCH= 2
};

/*
  Compare two files, given a fd to the first file and
  name of the second file

  SYNOPSIS
  compare_files2
  fd - Open file descriptor of the first file
  filename2 - Name of second file

  RETURN VALUES
  According to the values in "compare_files_result_enum"

*/

Michael Widenius's avatar
Michael Widenius committed
1761
int compare_files2(File fd1, const char* filename2)
1762 1763 1764
{
  int error= RESULT_OK;
  File fd2;
1765
  size_t fd1_length, fd2_length;
Michael Widenius's avatar
Michael Widenius committed
1766
  DYNAMIC_STRING fd1_result, fd2_result;
unknown's avatar
unknown committed
1767

1768 1769
  if ((fd2= my_open(filename2, O_RDONLY, MYF(0))) < 0)
  {
Michael Widenius's avatar
Michael Widenius committed
1770
    my_close(fd1, MYF(0));
unknown's avatar
unknown committed
1771
    die("Failed to open second file: '%s'", filename2);
1772
  }
Michael Widenius's avatar
Michael Widenius committed
1773

1774 1775
  fd1_length= (size_t) my_seek(fd1, 0, SEEK_END, MYF(0));
  fd2_length= (size_t) my_seek(fd2, 0, SEEK_END, MYF(0));
Michael Widenius's avatar
Michael Widenius committed
1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793

  if (init_dynamic_string(&fd1_result, 0, fd1_length, 0) ||
      init_dynamic_string(&fd2_result, 0, fd2_length, 0))
    die("Out of memory when allocating data for result");

  fd1_result.length= fd1_length;
  fd2_result.length= fd2_length;

  (void) my_seek(fd1, 0, SEEK_SET, MYF(0));
  (void) my_seek(fd2, 0, SEEK_SET, MYF(0));
  if (my_read(fd1, (uchar*) fd1_result.str, fd1_length, MYF(MY_WME | MY_NABP)))
    die("Error when reading data from result file");
  if (my_read(fd2, (uchar*) fd2_result.str, fd2_length, MYF(MY_WME | MY_NABP)))
    die("Error when reading data from result file");

  if (global_subst &&
      (fd1_length != fd2_length ||
       memcmp(fd1_result.str, fd2_result.str, fd1_length)))
1794
  {
Michael Widenius's avatar
Michael Widenius committed
1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813
    /**
       @todo MARIA_HACK
       This serves for when a test is run with --default-storage-engine=X
       where X is not MyISAM: tests using SHOW CREATE TABLE will always fail
       because SHOW CREATE TABLE prints X instead of MyISAM. With
       --global-subst=X,MyISAM , such trivial differences are eliminated and
       test may be reported as passing.
       --global-subst is only a quick way to run a lot of existing tests
       with Maria and find bugs; it is not good enough for reaching the main
       trees when Maria is merged into them.
         --global-subst should be removed.
    */
    uint global_subst_from_len= strlen(global_subst_from);
    uint global_subst_to_len=   strlen(global_subst_to);
    while (replace(&fd1_result,
                   global_subst_from, global_subst_from_len,
                   global_subst_to,   global_subst_to_len) == 0)
      /* do nothing */ ;
    /* let's compare again to see if it is ok now */
1814
  }
Michael Widenius's avatar
Michael Widenius committed
1815 1816

  if (fd1_result.length != fd2_result.length)
1817
    error= RESULT_LENGTH_MISMATCH;
Michael Widenius's avatar
Michael Widenius committed
1818 1819
  else if ((memcmp(fd1_result.str, fd2_result.str, fd1_result.length)))
    error= RESULT_CONTENT_MISMATCH;
1820 1821

  my_close(fd2, MYF(0));
Michael Widenius's avatar
Michael Widenius committed
1822 1823
  dynstr_free(&fd1_result);
  dynstr_free(&fd2_result);
unknown's avatar
unknown committed
1824

1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
  return error;
}


/*
  Compare two files, given their filenames

  SYNOPSIS
  compare_files
  filename1 - Name of first file
  filename2 - Name of second file

  RETURN VALUES
  See 'compare_files2'

*/

int compare_files(const char* filename1, const char* filename2)
{
  File fd;
  int error;

  if ((fd= my_open(filename1, O_RDONLY, MYF(0))) < 0)
unknown's avatar
unknown committed
1848
    die("Failed to open first file: '%s'", filename1);
1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873

  error= compare_files2(fd, filename2);

  my_close(fd, MYF(0));

  return error;
}


/*
  Compare content of the string in ds to content of file fname

  SYNOPSIS
  dyn_string_cmp
  ds - Dynamic string containing the string o be compared
  fname - Name of file to compare with

  RETURN VALUES
  See 'compare_files2'
*/

int dyn_string_cmp(DYNAMIC_STRING* ds, const char *fname)
{
  int error;
  File fd;
unknown's avatar
unknown committed
1874
  char temp_file_path[FN_REFLEN];
1875 1876 1877 1878

  DBUG_ENTER("dyn_string_cmp");
  DBUG_PRINT("enter", ("fname: %s", fname));

1879
  if ((fd= create_temp_file(temp_file_path, TMPDIR,
1880 1881 1882 1883 1884
                            "tmp", O_CREAT | O_SHARE | O_RDWR,
                            MYF(MY_WME))) < 0)
    die("Failed to create temporary file for ds");

  /* Write ds to temporary file and set file pos to beginning*/
unknown's avatar
unknown committed
1885
  if (my_write(fd, (uchar *) ds->str, ds->length,
1886 1887 1888 1889 1890
               MYF(MY_FNABP | MY_WME)) ||
      my_seek(fd, 0, SEEK_SET, MYF(0)) == MY_FILEPOS_ERROR)
  {
    my_close(fd, MYF(0));
    /* Remove the temporary file */
1891
    my_delete(temp_file_path, MYF(MY_WME));
unknown's avatar
unknown committed
1892
    die("Failed to write file '%s'", temp_file_path);
1893 1894 1895 1896 1897 1898
  }

  error= compare_files2(fd, fname);

  my_close(fd, MYF(0));
  /* Remove the temporary file */
1899
  my_delete(temp_file_path, MYF(MY_WME));
1900 1901

  DBUG_RETURN(error);
unknown's avatar
unknown committed
1902 1903
}

unknown's avatar
unknown committed
1904 1905

/*
1906
  Check the content of log against result file
unknown's avatar
unknown committed
1907 1908 1909 1910 1911 1912 1913 1914 1915

  SYNOPSIS
  check_result

  RETURN VALUES
  error - the function will not return

*/

1916
void check_result()
unknown's avatar
unknown committed
1917
{
1918 1919
  const char* mess= "Result content mismatch\n";

unknown's avatar
unknown committed
1920
  DBUG_ENTER("check_result");
1921
  DBUG_ASSERT(result_file_name);
1922
  DBUG_PRINT("enter", ("result_file_name: %s", result_file_name));
1923

1924
  switch (compare_files(log_file.file_name(), result_file_name)) {
1925
  case RESULT_OK:
1926
    break; /* ok */
1927
  case RESULT_LENGTH_MISMATCH:
1928 1929
    mess= "Result length mismatch\n";
    /* Fallthrough */
1930
  case RESULT_CONTENT_MISMATCH:
1931
  {
unknown's avatar
unknown committed
1932 1933 1934 1935
    /*
      Result mismatched, dump results to .reject file
      and then show the diff
    */
1936
    char reject_file[FN_REFLEN];
1937
    size_t reject_length;
1938
    dirname_part(reject_file, result_file_name, &reject_length);
1939 1940 1941 1942

    if (access(reject_file, W_OK) == 0)
    {
      /* Result file directory is writable, save reject file there */
1943
      fn_format(reject_file, result_file_name, "",
1944 1945 1946 1947 1948 1949 1950 1951
                ".reject", MY_REPLACE_EXT);
    }
    else
    {
      /* Put reject file in opt_logdir */
      fn_format(reject_file, result_file_name, opt_logdir,
                ".reject", MY_REPLACE_DIR | MY_REPLACE_EXT);
    }
1952

1953 1954 1955
    if (my_copy(log_file.file_name(), reject_file, MYF(0)) != 0)
      die("Failed to copy '%s' to '%s', errno: %d",
          log_file.file_name(), reject_file, errno);
1956 1957

    show_diff(NULL, result_file_name, reject_file);
1958
    die("%s", mess);
1959
    break;
1960
  }
1961 1962 1963
  default: /* impossible */
    die("Unknown error code from dyn_string_cmp()");
  }
unknown's avatar
unknown committed
1964 1965 1966 1967 1968

  DBUG_VOID_RETURN;
}


1969 1970 1971 1972 1973 1974
/*
  Check the content of ds against a require file
  If match fails, abort the test with special error code
  indicating that test is not supported

  SYNOPSIS
1975
  check_require
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997
  ds - content to be checked
  fname - name of file to check against

  RETURN VALUES
  error - the function will not return

*/

void check_require(DYNAMIC_STRING* ds, const char *fname)
{
  DBUG_ENTER("check_require");

  if (dyn_string_cmp(ds, fname))
  {
    char reason[FN_REFLEN];
    fn_format(reason, fname, "", "", MY_REPLACE_EXT | MY_REPLACE_DIR);
    abort_not_supported_test("Test requires: '%s'", reason);
  }
  DBUG_VOID_RETURN;
}


1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041
/*
   Remove surrounding chars from string

   Return 1 if first character is found but not last
*/
static int strip_surrounding(char* str, char c1, char c2)
{
  char* ptr= str;

  /* Check if the first non space character is c1 */
  while(*ptr && my_isspace(charset_info, *ptr))
    ptr++;
  if (*ptr == c1)
  {
    /* Replace it with a space */
    *ptr= ' ';

    /* Last non space charecter should be c2 */
    ptr= strend(str)-1;
    while(*ptr && my_isspace(charset_info, *ptr))
      ptr--;
    if (*ptr == c2)
    {
      /* Replace it with \0 */
      *ptr= 0;
    }
    else
    {
      /* Mismatch detected */
      return 1;
    }
  }
  return 0;
}


static void strip_parentheses(struct st_command *command)
{
  if (strip_surrounding(command->first_argument, '(', ')'))
      die("%.*s - argument list started with '%c' must be ended with '%c'",
          command->first_word_len, command->query, '(', ')');
}


2042 2043
static uchar *get_var_key(const uchar* var, size_t *len,
                          my_bool __attribute__((unused)) t)
unknown's avatar
unknown committed
2044 2045 2046 2047
{
  register char* key;
  key = ((VAR*)var)->name;
  *len = ((VAR*)var)->name_len;
2048
  return (uchar*)key;
unknown's avatar
unknown committed
2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062
}


VAR *var_init(VAR *v, const char *name, int name_len, const char *val,
              int val_len)
{
  int val_alloc_len;
  VAR *tmp_var;
  if (!name_len && name)
    name_len = strlen(name);
  if (!val_len && val)
    val_len = strlen(val) ;
  val_alloc_len = val_len + 16; /* room to grow */
  if (!(tmp_var=v) && !(tmp_var = (VAR*)my_malloc(sizeof(*tmp_var)
2063
                                                  + name_len+2, MYF(MY_WME))))
unknown's avatar
unknown committed
2064 2065
    die("Out of memory");

2066 2067 2068 2069 2070 2071 2072 2073 2074
  if (name != NULL)
  {
    tmp_var->name= reinterpret_cast<char*>(tmp_var) + sizeof(*tmp_var);
    memcpy(tmp_var->name, name, name_len);
    tmp_var->name[name_len]= 0;
  }
  else
    tmp_var->name= NULL;

unknown's avatar
unknown committed
2075 2076
  tmp_var->alloced = (v == 0);

2077
  if (!(tmp_var->str_val = (char*)my_malloc(val_alloc_len+1, MYF(MY_WME))))
unknown's avatar
unknown committed
2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097
    die("Out of memory");

  if (val)
  {
    memcpy(tmp_var->str_val, val, val_len);
    tmp_var->str_val[val_len]= 0;
  }
  tmp_var->name_len = name_len;
  tmp_var->str_val_len = val_len;
  tmp_var->alloced_len = val_alloc_len;
  tmp_var->int_val = (val) ? atoi(val) : 0;
  tmp_var->int_dirty = 0;
  return tmp_var;
}


void var_free(void *v)
{
  my_free(((VAR*) v)->str_val, MYF(MY_WME));
  if (((VAR*)v)->alloced)
2098
    my_free(v, MYF(MY_WME));
unknown's avatar
unknown committed
2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
}


VAR* var_from_env(const char *name, const char *def_val)
{
  const char *tmp;
  VAR *v;
  if (!(tmp = getenv(name)))
    tmp = def_val;

  v = var_init(0, name, strlen(name), tmp, strlen(tmp));
2110
  my_hash_insert(&var_hash, (uchar*)v);
unknown's avatar
unknown committed
2111
  return v;
unknown's avatar
unknown committed
2112 2113
}

2114

unknown's avatar
unknown committed
2115
VAR* var_get(const char *var_name, const char **var_name_end, my_bool raw,
2116
	     my_bool ignore_not_existing)
2117 2118
{
  int digit;
unknown's avatar
unknown committed
2119
  VAR *v;
2120
  DBUG_ENTER("var_get");
unknown's avatar
unknown committed
2121
  DBUG_PRINT("enter", ("var_name: %s",var_name));
2122 2123

  if (*var_name != '$')
2124
    goto err;
2125
  digit = *++var_name - '0';
unknown's avatar
unknown committed
2126
  if (digit < 0 || digit >= 10)
2127
  {
2128
    const char *save_var_name = var_name, *end;
2129
    uint length;
unknown's avatar
unknown committed
2130
    end = (var_name_end) ? *var_name_end : 0;
2131
    while (my_isvar(charset_info,*var_name) && var_name != end)
2132
      var_name++;
2133 2134 2135 2136
    if (var_name == save_var_name)
    {
      if (ignore_not_existing)
	DBUG_RETURN(0);
unknown's avatar
unknown committed
2137
      die("Empty variable");
2138
    }
2139
    length= (uint) (var_name - save_var_name);
unknown's avatar
unknown committed
2140
    if (length >= MAX_VAR_NAME_LENGTH)
2141
      die("Too long variable name: %s", save_var_name);
unknown's avatar
unknown committed
2142

2143 2144
    if (!(v = (VAR*) hash_search(&var_hash, (const uchar*) save_var_name,
                                            length)))
2145
    {
unknown's avatar
unknown committed
2146
      char buff[MAX_VAR_NAME_LENGTH+1];
unknown's avatar
unknown committed
2147
      strmake(buff, save_var_name, length);
2148
      v= var_from_env(buff, "");
2149
    }
unknown's avatar
unknown committed
2150
    var_name--;	/* Point at last character */
2151
  }
2152
  else
2153
    v = var_reg + digit;
unknown's avatar
unknown committed
2154

2155 2156 2157 2158
  if (!raw && v->int_dirty)
  {
    sprintf(v->str_val, "%d", v->int_val);
    v->int_dirty = 0;
2159
    v->str_val_len = strlen(v->str_val);
2160
  }
2161
  if (var_name_end)
2162
    *var_name_end = var_name  ;
2163
  DBUG_RETURN(v);
2164 2165
err:
  if (var_name_end)
2166 2167
    *var_name_end = 0;
  die("Unsupported variable name: %s", var_name);
2168
  DBUG_RETURN(0);
2169 2170
}

unknown's avatar
unknown committed
2171 2172

VAR *var_obtain(const char *name, int len)
unknown's avatar
unknown committed
2173 2174
{
  VAR* v;
2175
  if ((v = (VAR*)hash_search(&var_hash, (const uchar *) name, len)))
unknown's avatar
unknown committed
2176
    return v;
2177
  v = var_init(0, name, len, "", 0);
2178
  my_hash_insert(&var_hash, (uchar*)v);
unknown's avatar
unknown committed
2179 2180 2181
  return v;
}

unknown's avatar
unknown committed
2182 2183 2184 2185 2186 2187 2188 2189 2190

/*
  - if variable starts with a $ it is regarded as a local test varable
  - if not it is treated as a environment variable, and the corresponding
  environment variable will be updated
*/

void var_set(const char *var_name, const char *var_name_end,
             const char *var_val, const char *var_val_end)
2191
{
unknown's avatar
unknown committed
2192 2193
  int digit, env_var= 0;
  VAR *v;
2194 2195 2196 2197 2198 2199
  DBUG_ENTER("var_set");
  DBUG_PRINT("enter", ("var_name: '%.*s' = '%.*s' (length: %d)",
                       (int) (var_name_end - var_name), var_name,
                       (int) (var_val_end - var_val), var_val,
                       (int) (var_val_end - var_val)));

unknown's avatar
unknown committed
2200 2201 2202 2203 2204 2205 2206
  if (*var_name != '$')
    env_var= 1;
  else
    var_name++;

  digit= *var_name - '0';
  if (!(digit < 10 && digit >= 0))
2207
  {
unknown's avatar
unknown committed
2208
    v= var_obtain(var_name, (uint) (var_name_end - var_name));
2209
  }
unknown's avatar
unknown committed
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222
  else
    v= var_reg + digit;

  eval_expr(v, var_val, (const char**) &var_val_end);

  if (env_var)
  {
    if (v->int_dirty)
    {
      sprintf(v->str_val, "%d", v->int_val);
      v->int_dirty= 0;
      v->str_val_len= strlen(v->str_val);
    }
2223 2224 2225
    /* setenv() expects \0-terminated strings */
    DBUG_ASSERT(v->name[v->name_len] == 0);
    setenv(v->name, v->str_val, 1);
unknown's avatar
unknown committed
2226 2227 2228 2229
  }
  DBUG_VOID_RETURN;
}

2230 2231 2232 2233 2234 2235 2236 2237 2238 2239

void var_set_string(const char* name, const char* value)
{
  var_set(name, name + strlen(name), value, value + strlen(value));
}


void var_set_int(const char* name, int value)
{
  char buf[21];
2240
  my_snprintf(buf, sizeof(buf), "%d", value);
2241 2242 2243 2244
  var_set_string(name, buf);
}


unknown's avatar
unknown committed
2245 2246
/*
  Store an integer (typically the returncode of the last SQL)
2247
  statement in the mysqltest builtin variable $mysql_errno
unknown's avatar
unknown committed
2248 2249 2250 2251
*/

void var_set_errno(int sql_errno)
{
2252
  var_set_int("$mysql_errno", sql_errno);
unknown's avatar
unknown committed
2253 2254
}

2255

unknown's avatar
unknown committed
2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280
/*
  Set variable from the result of a query

  SYNOPSIS
  var_query_set()
  var	        variable to set from query
  query       start of query string to execute
  query_end   end of the query string to execute


  DESCRIPTION
  let @<var_name> = `<query>`

  Execute the query and assign the first row of result to var as
  a tab separated strings

  Also assign each column of the result set to
  variable "$<var_name>_<column_name>"
  Thus the tab separated output can be read from $<var_name> and
  and each individual column can be read as $<var_name>_<col_name>

*/

void var_query_set(VAR *var, const char *query, const char** query_end)
{
2281
  char *end = (char*)((query_end && *query_end) ?
unknown's avatar
unknown committed
2282 2283 2284
		      *query_end : query + strlen(query));
  MYSQL_RES *res;
  MYSQL_ROW row;
2285
  MYSQL* mysql = cur_con->mysql;
2286
  DYNAMIC_STRING ds_query;
unknown's avatar
unknown committed
2287 2288 2289
  DBUG_ENTER("var_query_set");
  LINT_INIT(res);

2290
  /* Only white space or ) allowed past ending ` */
unknown's avatar
unknown committed
2291
  while (end > query && *end != '`')
2292 2293 2294
  {
    if (*end && (*end != ' ' && *end != '\t' && *end != '\n' && *end != ')'))
      die("Spurious text after `query` expression");
unknown's avatar
unknown committed
2295
    --end;
2296 2297
  }

unknown's avatar
unknown committed
2298 2299 2300 2301
  if (query == end)
    die("Syntax error in query, missing '`'");
  ++query;

2302 2303 2304 2305
  /* Eval the query, thus replacing all environment variables */
  init_dynamic_string(&ds_query, 0, (end - query) + 32, 256);
  do_eval(&ds_query, query, end, FALSE);

2306 2307 2308 2309 2310 2311 2312 2313 2314 2315
  if (mysql_real_query(mysql, ds_query.str, ds_query.length)) 
  {
    handle_error (curr_command, mysql_errno(mysql), mysql_error(mysql),
                  mysql_sqlstate(mysql), &ds_res);
    /* If error was acceptable, return empty string */
    dynstr_free(&ds_query);
    eval_expr(var, "", 0);
    DBUG_VOID_RETURN;
  }
  
2316 2317
  if (!(res= mysql_store_result(mysql)))
    die("Query '%s' didn't return a result set", ds_query.str);
2318
  dynstr_free(&ds_query);
unknown's avatar
unknown committed
2319

unknown's avatar
unknown committed
2320
  if ((row= mysql_fetch_row(res)) && row[0])
2321
  {
unknown's avatar
unknown committed
2322
    /*
unknown's avatar
unknown committed
2323 2324
      Concatenate all fields in the first row with tab in between
      and assign that string to the $variable
unknown's avatar
unknown committed
2325 2326 2327 2328 2329
    */
    DYNAMIC_STRING result;
    uint i;
    ulong *lengths;

unknown's avatar
unknown committed
2330
    init_dynamic_string(&result, "", 512, 512);
unknown's avatar
unknown committed
2331
    lengths= mysql_fetch_lengths(res);
unknown's avatar
unknown committed
2332
    for (i= 0; i < mysql_num_fields(res); i++)
unknown's avatar
unknown committed
2333
    {
unknown's avatar
unknown committed
2334
      if (row[i])
unknown's avatar
unknown committed
2335 2336 2337 2338 2339 2340 2341
      {
        /* Add column to tab separated string */
	dynstr_append_mem(&result, row[i], lengths[i]);
      }
      dynstr_append_mem(&result, "\t", 1);
    }
    end= result.str + result.length-1;
2342 2343
    /* Evaluation should not recurse via backtick */
    eval_expr(var, result.str, (const char**) &end, false);
unknown's avatar
unknown committed
2344
    dynstr_free(&result);
2345
  }
2346
  else
unknown's avatar
unknown committed
2347 2348 2349 2350 2351 2352 2353
    eval_expr(var, "", 0);

  mysql_free_result(res);
  DBUG_VOID_RETURN;
}


2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377
/*
  Set variable from the result of a field in a query

  This function is useful when checking for a certain value
  in the output from a query that can't be restricted to only
  return some values. A very good example of that is most SHOW
  commands.

  SYNOPSIS
  var_set_query_get_value()

  DESCRIPTION
  let $variable= query_get_value(<query to run>,<column name>,<row no>);

  <query to run> -    The query that should be sent to the server
  <column name> -     Name of the column that holds the field be compared
                      against the expected value
  <row no> -          Number of the row that holds the field to be
                      compared against the expected value

*/

void var_set_query_get_value(struct st_command *command, VAR *var)
{
2378
  long row_no;
2379 2380
  int col_no= -1;
  MYSQL_RES* res;
2381
  MYSQL* mysql= cur_con->mysql;
2382 2383 2384 2385 2386

  static DYNAMIC_STRING ds_query;
  static DYNAMIC_STRING ds_col;
  static DYNAMIC_STRING ds_row;
  const struct command_arg query_get_value_args[] = {
2387 2388
    {"query", ARG_STRING, TRUE, &ds_query, "Query to run"},
    {"column name", ARG_STRING, TRUE, &ds_col, "Name of column"},
2389
    {"row number", ARG_STRING, TRUE, &ds_row, "Number for row"}
2390 2391 2392
  };

  DBUG_ENTER("var_set_query_get_value");
2393
  LINT_INIT(res);
2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415

  strip_parentheses(command);
  DBUG_PRINT("info", ("query: %s", command->query));
  check_command_args(command, command->first_argument, query_get_value_args,
                     sizeof(query_get_value_args)/sizeof(struct command_arg),
                     ',');

  DBUG_PRINT("info", ("query: %s", ds_query.str));
  DBUG_PRINT("info", ("col: %s", ds_col.str));

  /* Convert row number to int */
  if (!str2int(ds_row.str, 10, (long) 0, (long) INT_MAX, &row_no))
    die("Invalid row number: '%s'", ds_row.str);
  DBUG_PRINT("info", ("row: %s, row_no: %ld", ds_row.str, row_no));
  dynstr_free(&ds_row);

  /* Remove any surrounding "'s from the query - if there is any */
  if (strip_surrounding(ds_query.str, '"', '"'))
    die("Mismatched \"'s around query '%s'", ds_query.str);

  /* Run the query */
  if (mysql_real_query(mysql, ds_query.str, ds_query.length))
2416 2417 2418 2419 2420 2421 2422 2423 2424
  {
    handle_error (curr_command, mysql_errno(mysql), mysql_error(mysql),
                  mysql_sqlstate(mysql), &ds_res);
    /* If error was acceptable, return empty string */
    dynstr_free(&ds_query);
    eval_expr(var, "", 0);
    DBUG_VOID_RETURN;
  }

2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456
  if (!(res= mysql_store_result(mysql)))
    die("Query '%s' didn't return a result set", ds_query.str);

  {
    /* Find column number from the given column name */
    uint i;
    uint num_fields= mysql_num_fields(res);
    MYSQL_FIELD *fields= mysql_fetch_fields(res);

    for (i= 0; i < num_fields; i++)
    {
      if (strcmp(fields[i].name, ds_col.str) == 0 &&
          strlen(fields[i].name) == ds_col.length)
      {
        col_no= i;
        break;
      }
    }
    if (col_no == -1)
    {
      mysql_free_result(res);
      die("Could not find column '%s' in the result of '%s'",
          ds_col.str, ds_query.str);
    }
    DBUG_PRINT("info", ("Found column %d with name '%s'",
                        i, fields[i].name));
  }
  dynstr_free(&ds_col);

  {
    /* Get the value */
    MYSQL_ROW row;
2457
    long rows= 0;
2458 2459 2460 2461
    const char* value= "No such row";

    while ((row= mysql_fetch_row(res)))
    {
unknown's avatar
unknown committed
2462
      if (++rows == row_no)
2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
      {

        DBUG_PRINT("info", ("At row %ld, column %d is '%s'",
                            row_no, col_no, row[col_no]));
        /* Found the row to get */
        if (row[col_no])
          value= row[col_no];
        else
          value= "NULL";

        break;
      }
    }
2476
    eval_expr(var, value, 0, false);
2477 2478 2479 2480 2481 2482 2483 2484
  }
  dynstr_free(&ds_query);
  mysql_free_result(res);

  DBUG_VOID_RETURN;
}


unknown's avatar
unknown committed
2485 2486 2487 2488 2489 2490 2491 2492
void var_copy(VAR *dest, VAR *src)
{
  dest->int_val= src->int_val;
  dest->int_dirty= src->int_dirty;

  /* Alloc/realloc data for str_val in dest */
  if (dest->alloced_len < src->alloced_len &&
      !(dest->str_val= dest->str_val
2493 2494
        ? (char*)my_realloc(dest->str_val, src->alloced_len, MYF(MY_WME))
        : (char*)my_malloc(src->alloced_len, MYF(MY_WME))))
unknown's avatar
unknown committed
2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505
    die("Out of memory");
  else
    dest->alloced_len= src->alloced_len;

  /* Copy str_val data to dest */
  dest->str_val_len= src->str_val_len;
  if (src->str_val_len)
    memcpy(dest->str_val, src->str_val, src->str_val_len);
}


2506
void eval_expr(VAR *v, const char *p, const char **p_end, bool do_eval)
unknown's avatar
unknown committed
2507
{
2508 2509 2510 2511

  DBUG_ENTER("eval_expr");
  DBUG_PRINT("enter", ("p: '%s'", p));

2512 2513 2514 2515
  /* Skip to treat as pure string if no evaluation */
  if (! do_eval)
    goto NO_EVAL;
  
unknown's avatar
unknown committed
2516 2517
  if (*p == '$')
  {
2518
    VAR *vp;
2519
    const char* expected_end= *p_end; // Remember var end
unknown's avatar
unknown committed
2520 2521
    if ((vp= var_get(p, p_end, 0, 0)))
      var_copy(v, vp);
2522

2523 2524 2525
    /* Apparently it is not safe to assume null-terminated string */
    v->str_val[v->str_val_len]= 0;

2526 2527 2528 2529
    /* Make sure there was just a $variable and nothing else */
    const char* end= *p_end + 1;
    if (end < expected_end)
      die("Found junk '%.*s' after $variable in expression",
Magnus Svensson's avatar
Magnus Svensson committed
2530
          (int)(expected_end - end - 1), end);
2531

2532
    DBUG_VOID_RETURN;
unknown's avatar
unknown committed
2533
  }
2534

2535
  if (*p == '`')
unknown's avatar
unknown committed
2536 2537
  {
    var_query_set(v, p, p_end);
2538
    DBUG_VOID_RETURN;
unknown's avatar
unknown committed
2539
  }
2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557

  {
    /* Check if this is a "let $var= query_get_value()" */
    const char* get_value_str= "query_get_value";
    const size_t len= strlen(get_value_str);
    if (strncmp(p, get_value_str, len)==0)
    {
      struct st_command command;
      memset(&command, 0, sizeof(command));
      command.query= (char*)p;
      command.first_word_len= len;
      command.first_argument= command.query + len;
      command.end= (char*)*p_end;
      var_set_query_get_value(&command, v);
      DBUG_VOID_RETURN;
    }
  }

2558
 NO_EVAL:
unknown's avatar
unknown committed
2559 2560 2561 2562 2563
  {
    int new_val_len = (p_end && *p_end) ?
      (int) (*p_end - p) : (int) strlen(p);
    if (new_val_len + 1 >= v->alloced_len)
    {
2564
      static int MIN_VAR_ALLOC= 32;
unknown's avatar
unknown committed
2565 2566 2567
      v->alloced_len = (new_val_len < MIN_VAR_ALLOC - 1) ?
        MIN_VAR_ALLOC : new_val_len + 1;
      if (!(v->str_val =
2568 2569 2570
            v->str_val ?
            (char*)my_realloc(v->str_val, v->alloced_len+1, MYF(MY_WME)) :
            (char*)my_malloc(v->alloced_len+1, MYF(MY_WME))))
unknown's avatar
unknown committed
2571 2572 2573 2574 2575 2576
        die("Out of memory");
    }
    v->str_val_len = new_val_len;
    memcpy(v->str_val, p, new_val_len);
    v->str_val[new_val_len] = 0;
    v->int_val=atoi(p);
2577
    DBUG_PRINT("info", ("atoi on '%s', returns: %d", p, v->int_val));
unknown's avatar
unknown committed
2578 2579
    v->int_dirty=0;
  }
2580
  DBUG_VOID_RETURN;
2581 2582
}

2583

2584
int open_file(const char *name)
unknown's avatar
unknown committed
2585
{
unknown's avatar
unknown committed
2586
  char buff[FN_REFLEN];
unknown's avatar
unknown committed
2587
  size_t length;
2588 2589
  DBUG_ENTER("open_file");
  DBUG_PRINT("enter", ("name: %s", name));
unknown's avatar
unknown committed
2590 2591 2592 2593 2594 2595 2596 2597 2598 2599

  /* Extract path from current file and try it as base first */
  if (dirname_part(buff, cur_file->file_name, &length))
  {
    strxmov(buff, buff, name, NullS);
    if (access(buff, F_OK) == 0){
      DBUG_PRINT("info", ("The file exists"));
      name= buff;
    }
  }
2600 2601 2602 2603 2604
  if (!test_if_hard_path(name))
  {
    strxmov(buff, opt_basedir, name, NullS);
    name=buff;
  }
unknown's avatar
unknown committed
2605
  fn_format(buff, name, "", "", MY_UNPACK_FILENAME);
2606

2607
  if (cur_file == file_stack_end)
unknown's avatar
unknown committed
2608
    die("Source directives are nesting too deep");
2609
  cur_file++;
2610
  if (!(cur_file->file = fopen(buff, "rb")))
2611 2612
  {
    cur_file--;
2613
    die("Could not open '%s' for reading, errno: %d", buff, errno);
2614 2615
  }
  cur_file->file_name= my_strdup(buff, MYF(MY_FAE));
unknown's avatar
unknown committed
2616
  cur_file->lineno=1;
2617
  DBUG_RETURN(0);
2618
}
2619

2620 2621

/*
unknown's avatar
unknown committed
2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632
  Source and execute the given file

  SYNOPSIS
  do_source()
  query	called command

  DESCRIPTION
  source <file_name>

  Open the file <file_name> and execute it

2633 2634
*/

unknown's avatar
unknown committed
2635
void do_source(struct st_command *command)
2636
{
2637
  static DYNAMIC_STRING ds_filename;
unknown's avatar
unknown committed
2638
  const struct command_arg source_args[] = {
unknown's avatar
unknown committed
2639
    { "filename", ARG_STRING, TRUE, &ds_filename, "File to source" }
unknown's avatar
unknown committed
2640 2641
  };
  DBUG_ENTER("do_source");
2642

unknown's avatar
unknown committed
2643 2644 2645
  check_command_args(command, command->first_argument, source_args,
                     sizeof(source_args)/sizeof(struct command_arg),
                     ' ');
2646

unknown's avatar
unknown committed
2647 2648 2649 2650 2651 2652 2653
  /*
    If this file has already been sourced, don't source it again.
    It's already available in the q_lines cache.
  */
  if (parser.current_line < (parser.read_lines - 1))
    ; /* Do nothing */
  else
2654
  {
unknown's avatar
unknown committed
2655 2656
    DBUG_PRINT("info", ("sourcing file: %s", ds_filename.str));
    open_file(ds_filename.str);
2657
  }
unknown's avatar
unknown committed
2658 2659

  dynstr_free(&ds_filename);
2660
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
2661 2662
}

unknown's avatar
unknown committed
2663

2664 2665 2666
#if defined __WIN__

#ifdef USE_CYGWIN
unknown's avatar
unknown committed
2667
/* Variables used for temporary sh files used for emulating Unix on Windows */
unknown's avatar
unknown committed
2668
char tmp_sh_name[64], tmp_sh_cmd[70];
2669
#endif
unknown's avatar
unknown committed
2670 2671

void init_tmp_sh_file()
2672
{
2673
#ifdef USE_CYGWIN
unknown's avatar
unknown committed
2674 2675 2676 2677
  /* Format a name for the tmp sh file that is unique for this process */
  my_snprintf(tmp_sh_name, sizeof(tmp_sh_name), "tmp_%d.sh", getpid());
  /* Format the command to execute in order to run the script */
  my_snprintf(tmp_sh_cmd, sizeof(tmp_sh_cmd), "sh %s", tmp_sh_name);
2678
#endif
unknown's avatar
unknown committed
2679
}
2680

2681

unknown's avatar
unknown committed
2682
void free_tmp_sh_file()
2683
{
2684
#ifdef USE_CYGWIN
unknown's avatar
unknown committed
2685
  my_delete(tmp_sh_name, MYF(0));
2686
#endif
2687
}
2688
#endif
2689

2690

unknown's avatar
unknown committed
2691
FILE* my_popen(DYNAMIC_STRING *ds_cmd, const char *mode)
unknown's avatar
unknown committed
2692
{
2693
#if defined __WIN__ && defined USE_CYGWIN
unknown's avatar
unknown committed
2694 2695 2696 2697 2698 2699
  /* Dump the command into a sh script file and execute with popen */
  str_to_file(tmp_sh_name, ds_cmd->str, ds_cmd->length);
  return popen(tmp_sh_cmd, mode);
#else
  return popen(ds_cmd->str, mode);
#endif
unknown's avatar
unknown committed
2700 2701
}

2702

2703 2704 2705
static void init_builtin_echo(void)
{
#ifdef __WIN__
2706
  size_t echo_length;
2707 2708

  /* Look for "echo.exe" in same dir as mysqltest was started from */
2709
  dirname_part(builtin_echo, my_progname, &echo_length);
2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761
  fn_format(builtin_echo, ".\\echo.exe",
            builtin_echo, "", MYF(MY_REPLACE_DIR));

  /* Make sure echo.exe exists */
  if (access(builtin_echo, F_OK) != 0)
    builtin_echo[0]= 0;
  return;

#else

  builtin_echo[0]= 0;
  return;

#endif
}


/*
  Replace a substring

  SYNOPSIS
    replace
    ds_str      The string to search and perform the replace in
    search_str  The string to search for
    search_len  Length of the string to search for
    replace_str The string to replace with
    replace_len Length of the string to replace with

  RETURN
    0 String replaced
    1 Could not find search_str in str
*/

static int replace(DYNAMIC_STRING *ds_str,
                   const char *search_str, ulong search_len,
                   const char *replace_str, ulong replace_len)
{
  DYNAMIC_STRING ds_tmp;
  const char *start= strstr(ds_str->str, search_str);
  if (!start)
    return 1;
  init_dynamic_string(&ds_tmp, "",
                      ds_str->length + replace_len, 256);
  dynstr_append_mem(&ds_tmp, ds_str->str, start - ds_str->str);
  dynstr_append_mem(&ds_tmp, replace_str, replace_len);
  dynstr_append(&ds_tmp, start + search_len);
  dynstr_set(ds_str, ds_tmp.str);
  dynstr_free(&ds_tmp);
  return 0;
}


2762 2763 2764 2765
/*
  Execute given command.

  SYNOPSIS
unknown's avatar
unknown committed
2766 2767
  do_exec()
  query	called command
2768 2769

  DESCRIPTION
unknown's avatar
unknown committed
2770
  exec <command>
2771

unknown's avatar
unknown committed
2772 2773 2774 2775
  Execute the text between exec and end of line in a subprocess.
  The error code returned from the subprocess is checked against the
  expected error array, previously set with the --error command.
  It can thus be used to execute a command that shall fail.
2776

unknown's avatar
unknown committed
2777 2778 2779
  NOTE
  Although mysqltest is executed from cygwin shell, the command will be
  executed in "cmd.exe". Thus commands like "rm" etc can NOT be used, use
2780
  mysqltest commmand(s) like "remove_file" for that
2781 2782
*/

unknown's avatar
unknown committed
2783
void do_exec(struct st_command *command)
2784
{
unknown's avatar
unknown committed
2785
  int error;
2786
  char buf[512];
2787
  FILE *res_file;
unknown's avatar
unknown committed
2788 2789
  char *cmd= command->first_argument;
  DYNAMIC_STRING ds_cmd;
unknown's avatar
unknown committed
2790
  DBUG_ENTER("do_exec");
unknown's avatar
unknown committed
2791
  DBUG_PRINT("enter", ("cmd: '%s'", cmd));
2792

2793
  /* Skip leading space */
unknown's avatar
unknown committed
2794
  while (*cmd && my_isspace(charset_info, *cmd))
2795 2796
    cmd++;
  if (!*cmd)
2797
    die("Missing argument in exec");
unknown's avatar
unknown committed
2798 2799 2800 2801
  command->last_argument= command->end;

  init_dynamic_string(&ds_cmd, 0, command->query_len+256, 256);
  /* Eval the command, thus replacing all environment variables */
2802
  do_eval(&ds_cmd, cmd, command->end, !is_windows);
2803

2804 2805 2806 2807 2808 2809 2810
  /* Check if echo should be replaced with "builtin" echo */
  if (builtin_echo[0] && strncmp(cmd, "echo", 4) == 0)
  {
    /* Replace echo with our "builtin" echo */
    replace(&ds_cmd, "echo", 4, builtin_echo, strlen(builtin_echo));
  }

2811
#ifdef __WIN__
2812
#ifndef USE_CYGWIN
2813 2814 2815 2816 2817 2818
  /* Replace /dev/null with NUL */
  while(replace(&ds_cmd, "/dev/null", 9, "NUL", 3) == 0)
    ;
  /* Replace "closed stdout" with non existing output fd */
  while(replace(&ds_cmd, ">&-", 3, ">&4", 3) == 0)
    ;
2819
#endif
2820 2821
#endif

2822 2823 2824 2825
  /* exec command is interpreted externally and will not take newlines */
  while(replace(&ds_cmd, "\n", 1, " ", 1) == 0)
    ;
  
unknown's avatar
unknown committed
2826
  DBUG_PRINT("info", ("Executing '%s' as '%s'",
2827
                      command->first_argument, ds_cmd.str));
unknown's avatar
unknown committed
2828

unknown's avatar
unknown committed
2829
  if (!(res_file= my_popen(&ds_cmd, "r")) && command->abort_on_error)
2830 2831
  {
    dynstr_free(&ds_cmd);
unknown's avatar
unknown committed
2832
    die("popen(\"%s\", \"r\") failed", command->first_argument);
2833
  }
unknown's avatar
unknown committed
2834

unknown's avatar
unknown committed
2835
  while (fgets(buf, sizeof(buf), res_file))
2836
  {
unknown's avatar
unknown committed
2837
    if (disable_result_log)
2838 2839 2840 2841
    {
      buf[strlen(buf)-1]=0;
      DBUG_PRINT("exec_result",("%s", buf));
    }
unknown's avatar
unknown committed
2842
    else
2843
    {
unknown's avatar
unknown committed
2844
      replace_dynstr_append(&ds_res, buf);
2845
    }
unknown's avatar
unknown committed
2846 2847
  }
  error= pclose(res_file);
unknown's avatar
unknown committed
2848
  if (error > 0)
unknown's avatar
patch  
unknown committed
2849
  {
2850 2851
    uint status= WEXITSTATUS(error);
    int i;
unknown's avatar
unknown committed
2852

unknown's avatar
unknown committed
2853
    if (command->abort_on_error)
2854
    {
unknown's avatar
unknown committed
2855
      log_msg("exec of '%s' failed, error: %d, status: %d, errno: %d",
2856
              ds_cmd.str, error, status, errno);
2857
      dynstr_free(&ds_cmd);
2858 2859
      die("command \"%s\" failed\n\nOutput from before failure:\n%s\n",
          command->first_argument, ds_res.str);
2860
    }
unknown's avatar
unknown committed
2861 2862 2863

    DBUG_PRINT("info",
               ("error: %d, status: %d", error, status));
2864 2865 2866 2867 2868 2869 2870

    i= match_expected_error(command, status, NULL);

    if (i >= 0)
      DBUG_PRINT("info", ("command \"%s\" failed with expected error: %d",
                          command->first_argument, status));
    else
2871 2872
    {
      dynstr_free(&ds_cmd);
2873 2874 2875
      if (command->expected_errors.count > 0)
        die("command \"%s\" failed with wrong error: %d",
            command->first_argument, status);
2876
    }
unknown's avatar
patch  
unknown committed
2877
  }
unknown's avatar
unknown committed
2878 2879
  else if (command->expected_errors.err[0].type == ERR_ERRNO &&
           command->expected_errors.err[0].code.errnum != 0)
unknown's avatar
patch  
unknown committed
2880 2881
  {
    /* Error code we wanted was != 0, i.e. not an expected success */
2882 2883
    log_msg("exec of '%s failed, error: %d, errno: %d",
            ds_cmd.str, error, errno);
2884
    dynstr_free(&ds_cmd);
2885
    die("command \"%s\" succeeded - should have failed with errno %d...",
unknown's avatar
unknown committed
2886
        command->first_argument, command->expected_errors.err[0].code.errnum);
2887
  }
2888

unknown's avatar
unknown committed
2889 2890
  dynstr_free(&ds_cmd);
  DBUG_VOID_RETURN;
2891 2892
}

2893
enum enum_operator
2894
{
2895 2896 2897
  DO_DEC,
  DO_INC
};
2898

unknown's avatar
unknown committed
2899

2900
/*
2901
  Decrease or increase the value of a variable
2902 2903

  SYNOPSIS
unknown's avatar
unknown committed
2904 2905
  do_modify_var()
  query	called command
2906
  op    operation to perform on the var
2907 2908

  DESCRIPTION
unknown's avatar
unknown committed
2909 2910
  dec $var_name
  inc $var_name
2911

2912 2913
*/

unknown's avatar
unknown committed
2914
int do_modify_var(struct st_command *command,
2915
                  enum enum_operator op)
2916
{
unknown's avatar
unknown committed
2917
  const char *p= command->first_argument;
2918
  VAR* v;
2919
  if (!*p)
unknown's avatar
unknown committed
2920
    die("Missing argument to %.*s", command->first_word_len, command->query);
2921
  if (*p != '$')
unknown's avatar
unknown committed
2922 2923
    die("The argument to %.*s must be a variable (start with $)",
        command->first_word_len, command->query);
2924
  v= var_get(p, &p, 1, 0);
2925
  switch (op) {
2926 2927 2928 2929 2930 2931 2932
  case DO_DEC:
    v->int_val--;
    break;
  case DO_INC:
    v->int_val++;
    break;
  default:
unknown's avatar
unknown committed
2933
    die("Invalid operator to do_modify_var");
2934 2935 2936
    break;
  }
  v->int_dirty= 1;
unknown's avatar
unknown committed
2937
  command->last_argument= (char*)++p;
2938 2939 2940
  return 0;
}

2941

unknown's avatar
unknown committed
2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953
/*
  Wrapper for 'system' function

  NOTE
  If mysqltest is executed from cygwin shell, the command will be
  executed in the "windows command interpreter" cmd.exe and we prepend "sh"
  to make it be executed by cygwins "bash". Thus commands like "rm",
  "mkdir" as well as shellscripts can executed by "system" in Windows.

*/

int my_system(DYNAMIC_STRING* ds_cmd)
unknown's avatar
unknown committed
2954
{
2955
#if defined __WIN__ && defined USE_CYGWIN
unknown's avatar
unknown committed
2956 2957 2958 2959 2960 2961
  /* Dump the command into a sh script file and execute with system */
  str_to_file(tmp_sh_name, ds_cmd->str, ds_cmd->length);
  return system(tmp_sh_cmd);
#else
  return system(ds_cmd->str);
#endif
unknown's avatar
unknown committed
2962
}
2963

2964 2965 2966

/*
  SYNOPSIS
unknown's avatar
unknown committed
2967 2968
  do_system
  command	called command
2969 2970

  DESCRIPTION
unknown's avatar
unknown committed
2971
  system <command>
2972

unknown's avatar
unknown committed
2973 2974
  Eval the query to expand any $variables in the command.
  Execute the command with the "system" command.
2975 2976 2977

*/

unknown's avatar
unknown committed
2978
void do_system(struct st_command *command)
unknown's avatar
unknown committed
2979
{
unknown's avatar
unknown committed
2980 2981
  DYNAMIC_STRING ds_cmd;
  DBUG_ENTER("do_system");
2982

unknown's avatar
unknown committed
2983 2984
  if (strlen(command->first_argument) == 0)
    die("Missing arguments to system, nothing to do!");
unknown's avatar
unknown committed
2985

unknown's avatar
unknown committed
2986
  init_dynamic_string(&ds_cmd, 0, command->query_len + 64, 256);
unknown's avatar
unknown committed
2987

unknown's avatar
unknown committed
2988
  /* Eval the system command, thus replacing all environment variables */
2989 2990 2991
  do_eval(&ds_cmd, command->first_argument, command->end, !is_windows);

#ifdef __WIN__
2992
#ifndef USE_CYGWIN
2993 2994 2995 2996
   /* Replace /dev/null with NUL */
   while(replace(&ds_cmd, "/dev/null", 9, "NUL", 3) == 0)
     ;
#endif
2997
#endif
2998

unknown's avatar
unknown committed
2999

unknown's avatar
unknown committed
3000 3001 3002
  DBUG_PRINT("info", ("running system command '%s' as '%s'",
                      command->first_argument, ds_cmd.str));
  if (my_system(&ds_cmd))
3003
  {
unknown's avatar
unknown committed
3004 3005
    if (command->abort_on_error)
      die("system command '%s' failed", command->first_argument);
3006

unknown's avatar
unknown committed
3007 3008 3009 3010
    /* If ! abort_on_error, log message and continue */
    dynstr_append(&ds_res, "system command '");
    replace_dynstr_append(&ds_res, command->first_argument);
    dynstr_append(&ds_res, "' failed\n");
3011
  }
3012

unknown's avatar
unknown committed
3013 3014 3015 3016
  command->last_argument= command->end;
  dynstr_free(&ds_cmd);
  DBUG_VOID_RETURN;
}
unknown's avatar
unknown committed
3017

unknown's avatar
unknown committed
3018

3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053
/*
  SYNOPSIS
  set_wild_chars
  set  true to set * etc. as wild char, false to reset

  DESCRIPTION
  Auxiliary function to set "our" wild chars before calling wild_compare
  This is needed because the default values are changed to SQL syntax
  in mysqltest_embedded.
*/

void set_wild_chars (my_bool set)
{
  static char old_many= 0, old_one, old_prefix;

  if (set) 
  {
    if (wild_many == '*') return; // No need
    old_many= wild_many;
    old_one= wild_one;
    old_prefix= wild_prefix;
    wild_many= '*';
    wild_one= '?';
    wild_prefix= 0;
  }
  else 
  {
    if (! old_many) return;	// Was not set
    wild_many= old_many;
    wild_one= old_one;
    wild_prefix= old_prefix;
  }
}


unknown's avatar
unknown committed
3054 3055 3056 3057
/*
  SYNOPSIS
  do_remove_file
  command	called command
unknown's avatar
unknown committed
3058

unknown's avatar
unknown committed
3059 3060 3061 3062
  DESCRIPTION
  remove_file <file_name>
  Remove the file <file_name>
*/
unknown's avatar
unknown committed
3063

unknown's avatar
unknown committed
3064 3065 3066
void do_remove_file(struct st_command *command)
{
  int error;
3067
  static DYNAMIC_STRING ds_filename;
unknown's avatar
unknown committed
3068
  const struct command_arg rm_args[] = {
unknown's avatar
unknown committed
3069
    { "filename", ARG_STRING, TRUE, &ds_filename, "File to delete" }
unknown's avatar
unknown committed
3070 3071 3072 3073 3074 3075 3076 3077
  };
  DBUG_ENTER("do_remove_file");

  check_command_args(command, command->first_argument,
                     rm_args, sizeof(rm_args)/sizeof(struct command_arg),
                     ' ');

  DBUG_PRINT("info", ("removing file: %s", ds_filename.str));
Vladislav Vaintroub's avatar
Vladislav Vaintroub committed
3078
  error= my_delete_allow_opened(ds_filename.str, MYF(disable_warnings ? 0 : MY_WME)) != 0;
3079
  handle_command_error(command, error, my_errno);
unknown's avatar
unknown committed
3080 3081
  dynstr_free(&ds_filename);
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3082 3083 3084
}


3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096
/*
  SYNOPSIS
  do_remove_files_wildcard
  command	called command

  DESCRIPTION
  remove_files_wildcard <directory> [<file_name_pattern>]
  Remove the files in <directory> optionally matching <file_name_pattern>
*/

void do_remove_files_wildcard(struct st_command *command)
{
3097
  int error= 0, sys_errno= 0;
3098
  uint i;
3099
  size_t directory_length;
3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121
  MY_DIR *dir_info;
  FILEINFO *file;
  char dir_separator[2];
  static DYNAMIC_STRING ds_directory;
  static DYNAMIC_STRING ds_wild;
  static DYNAMIC_STRING ds_file_to_remove;
  char dirname[FN_REFLEN];
  
  const struct command_arg rm_args[] = {
    { "directory", ARG_STRING, TRUE, &ds_directory,
      "Directory containing files to delete" },
    { "filename", ARG_STRING, FALSE, &ds_wild, "File pattern to delete" }
  };
  DBUG_ENTER("do_remove_files_wildcard");

  check_command_args(command, command->first_argument,
                     rm_args, sizeof(rm_args)/sizeof(struct command_arg),
                     ' ');
  fn_format(dirname, ds_directory.str, "", "", MY_UNPACK_FILENAME);

  DBUG_PRINT("info", ("listing directory: %s", dirname));
  /* Note that my_dir sorts the list if not given any flags */
3122
  if (!(dir_info= my_dir(dirname, MYF(MY_DONT_SORT | MY_WANT_STAT | MY_WME))))
3123 3124
  {
    error= 1;
3125
    sys_errno= my_errno;
3126 3127 3128 3129
    goto end;
  }
  init_dynamic_string(&ds_file_to_remove, dirname, 1024, 1024);
  dir_separator[0]= FN_LIBCHAR;
3130 3131
  dynstr_append_mem(&ds_file_to_remove, dir_separator, 1);
  directory_length= ds_file_to_remove.length;
3132 3133 3134 3135
  
  /* Set default wild chars for wild_compare, is changed in embedded mode */
  set_wild_chars(1);
  
3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146
  for (i= 0; i < (uint) dir_info->number_off_files; i++)
  {
    file= dir_info->dir_entry + i;
    /* Remove only regular files, i.e. no directories etc. */
    /* if (!MY_S_ISREG(file->mystat->st_mode)) */
    /* MY_S_ISREG does not work here on Windows, just skip directories */
    if (MY_S_ISDIR(file->mystat->st_mode))
      continue;
    if (ds_wild.length &&
        wild_compare(file->name, ds_wild.str, 0))
      continue;
3147
    ds_file_to_remove.length= directory_length;
3148 3149
    dynstr_append(&ds_file_to_remove, file->name);
    DBUG_PRINT("info", ("removing file: %s", ds_file_to_remove.str));
3150 3151
    if ((error= (my_delete(ds_file_to_remove.str, MYF(MY_WME)) != 0)))
      sys_errno= my_errno;
3152 3153 3154
    if (error)
      break;
  }
3155
  set_wild_chars(0);
3156 3157 3158
  my_dirend(dir_info);

end:
3159
  handle_command_error(command, error, sys_errno);
3160 3161 3162 3163 3164 3165 3166
  dynstr_free(&ds_directory);
  dynstr_free(&ds_wild);
  dynstr_free(&ds_file_to_remove);
  DBUG_VOID_RETURN;
}


3167 3168
/*
  SYNOPSIS
unknown's avatar
unknown committed
3169 3170
  do_copy_file
  command	command handle
3171 3172

  DESCRIPTION
unknown's avatar
unknown committed
3173 3174
  copy_file <from_file> <to_file>
  Copy <from_file> to <to_file>
3175

unknown's avatar
unknown committed
3176 3177
  NOTE! Will fail if <to_file> exists
*/
3178

unknown's avatar
unknown committed
3179
void do_copy_file(struct st_command *command)
3180
{
unknown's avatar
unknown committed
3181
  int error;
3182 3183
  static DYNAMIC_STRING ds_from_file;
  static DYNAMIC_STRING ds_to_file;
unknown's avatar
unknown committed
3184
  const struct command_arg copy_file_args[] = {
unknown's avatar
unknown committed
3185 3186
    { "from_file", ARG_STRING, TRUE, &ds_from_file, "Filename to copy from" },
    { "to_file", ARG_STRING, TRUE, &ds_to_file, "Filename to copy to" }
unknown's avatar
unknown committed
3187 3188 3189 3190 3191 3192 3193 3194 3195 3196
  };
  DBUG_ENTER("do_copy_file");

  check_command_args(command, command->first_argument,
                     copy_file_args,
                     sizeof(copy_file_args)/sizeof(struct command_arg),
                     ' ');

  DBUG_PRINT("info", ("Copy %s to %s", ds_from_file.str, ds_to_file.str));
  error= (my_copy(ds_from_file.str, ds_to_file.str,
3197 3198
                  MYF(MY_DONT_OVERWRITE_FILE | MY_WME)) != 0);
  handle_command_error(command, error, my_errno);
unknown's avatar
unknown committed
3199 3200 3201
  dynstr_free(&ds_from_file);
  dynstr_free(&ds_to_file);
  DBUG_VOID_RETURN;
3202 3203
}

3204

3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232
/*
  SYNOPSIS
  do_move_file
  command	command handle

  DESCRIPTION
  move_file <from_file> <to_file>
  Move <from_file> to <to_file>
*/

void do_move_file(struct st_command *command)
{
  int error;
  static DYNAMIC_STRING ds_from_file;
  static DYNAMIC_STRING ds_to_file;
  const struct command_arg move_file_args[] = {
    { "from_file", ARG_STRING, TRUE, &ds_from_file, "Filename to move from" },
    { "to_file", ARG_STRING, TRUE, &ds_to_file, "Filename to move to" }
  };
  DBUG_ENTER("do_move_file");

  check_command_args(command, command->first_argument,
                     move_file_args,
                     sizeof(move_file_args)/sizeof(struct command_arg),
                     ' ');

  DBUG_PRINT("info", ("Move %s to %s", ds_from_file.str, ds_to_file.str));
  error= (my_rename(ds_from_file.str, ds_to_file.str,
3233 3234
                    MYF(disable_warnings ? 0 : MY_WME)) != 0);
  handle_command_error(command, error, my_errno);
3235 3236 3237 3238 3239 3240
  dynstr_free(&ds_from_file);
  dynstr_free(&ds_to_file);
  DBUG_VOID_RETURN;
}


unknown's avatar
unknown committed
3241 3242 3243 3244 3245 3246
/*
  SYNOPSIS
  do_chmod_file
  command	command handle

  DESCRIPTION
unknown's avatar
unknown committed
3247
  chmod <octal> <file_name>
3248
  Change file permission of <file_name>
unknown's avatar
unknown committed
3249 3250 3251 3252 3253

*/

void do_chmod_file(struct st_command *command)
{
3254
  int error;
unknown's avatar
unknown committed
3255
  long mode= 0;
3256 3257
  static DYNAMIC_STRING ds_mode;
  static DYNAMIC_STRING ds_file;
unknown's avatar
unknown committed
3258
  const struct command_arg chmod_file_args[] = {
3259 3260
    { "mode", ARG_STRING, TRUE, &ds_mode, "Mode of file(octal) ex. 0660"}, 
    { "filename", ARG_STRING, TRUE, &ds_file, "Filename of file to modify" }
unknown's avatar
unknown committed
3261 3262 3263 3264 3265 3266 3267 3268 3269
  };
  DBUG_ENTER("do_chmod_file");

  check_command_args(command, command->first_argument,
                     chmod_file_args,
                     sizeof(chmod_file_args)/sizeof(struct command_arg),
                     ' ');

  /* Parse what mode to set */
unknown's avatar
unknown committed
3270 3271
  if (ds_mode.length != 4 ||
      str2int(ds_mode.str, 8, 0, INT_MAX, &mode) == NullS)
unknown's avatar
unknown committed
3272 3273
    die("You must write a 4 digit octal number for mode");

unknown's avatar
unknown committed
3274
  DBUG_PRINT("info", ("chmod %o %s", (uint)mode, ds_file.str));
3275 3276 3277 3278
  error= 0;
  if (chmod(ds_file.str, mode))
    error= 1;
  handle_command_error(command, error, errno);
unknown's avatar
unknown committed
3279 3280 3281 3282 3283 3284
  dynstr_free(&ds_mode);
  dynstr_free(&ds_file);
  DBUG_VOID_RETURN;
}


3285
/*
unknown's avatar
unknown committed
3286 3287 3288 3289 3290 3291 3292
  SYNOPSIS
  do_file_exists
  command	called command

  DESCRIPTION
  fiile_exist <file_name>
  Check if file <file_name> exists
3293 3294
*/

unknown's avatar
unknown committed
3295
void do_file_exist(struct st_command *command)
3296
{
unknown's avatar
unknown committed
3297
  int error;
3298
  static DYNAMIC_STRING ds_filename;
unknown's avatar
unknown committed
3299
  const struct command_arg file_exist_args[] = {
unknown's avatar
unknown committed
3300
    { "filename", ARG_STRING, TRUE, &ds_filename, "File to check if it exist" }
unknown's avatar
unknown committed
3301 3302 3303 3304 3305 3306 3307 3308 3309 3310
  };
  DBUG_ENTER("do_file_exist");

  check_command_args(command, command->first_argument,
                     file_exist_args,
                     sizeof(file_exist_args)/sizeof(struct command_arg),
                     ' ');

  DBUG_PRINT("info", ("Checking for existence of file: %s", ds_filename.str));
  error= (access(ds_filename.str, F_OK) != 0);
3311
  handle_command_error(command, error, errno);
unknown's avatar
unknown committed
3312 3313
  dynstr_free(&ds_filename);
  DBUG_VOID_RETURN;
3314 3315
}

3316

3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331
/*
  SYNOPSIS
  do_mkdir
  command	called command

  DESCRIPTION
  mkdir <dir_name>
  Create the directory <dir_name>
*/

void do_mkdir(struct st_command *command)
{
  int error;
  static DYNAMIC_STRING ds_dirname;
  const struct command_arg mkdir_args[] = {
3332
    {"dirname", ARG_STRING, TRUE, &ds_dirname, "Directory to create"}
3333 3334 3335 3336 3337 3338 3339 3340
  };
  DBUG_ENTER("do_mkdir");

  check_command_args(command, command->first_argument,
                     mkdir_args, sizeof(mkdir_args)/sizeof(struct command_arg),
                     ' ');

  DBUG_PRINT("info", ("creating directory: %s", ds_dirname.str));
3341 3342
  error= my_mkdir(ds_dirname.str, 0777, MYF(MY_WME)) != 0;
  handle_command_error(command, error, my_errno);
3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361
  dynstr_free(&ds_dirname);
  DBUG_VOID_RETURN;
}

/*
  SYNOPSIS
  do_rmdir
  command	called command

  DESCRIPTION
  rmdir <dir_name>
  Remove the empty directory <dir_name>
*/

void do_rmdir(struct st_command *command)
{
  int error;
  static DYNAMIC_STRING ds_dirname;
  const struct command_arg rmdir_args[] = {
3362
    { "dirname", ARG_STRING, TRUE, &ds_dirname, "Directory to remove" }
3363 3364 3365 3366 3367 3368 3369 3370 3371
  };
  DBUG_ENTER("do_rmdir");

  check_command_args(command, command->first_argument,
                     rmdir_args, sizeof(rmdir_args)/sizeof(struct command_arg),
                     ' ');

  DBUG_PRINT("info", ("removing directory: %s", ds_dirname.str));
  error= rmdir(ds_dirname.str) != 0;
3372
  handle_command_error(command, error, errno);
3373 3374 3375 3376 3377
  dynstr_free(&ds_dirname);
  DBUG_VOID_RETURN;
}


3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400
/*
  SYNOPSIS
  get_list_files
  ds          output
  ds_dirname  dir to list
  ds_wild     wild-card file pattern (can be empty)

  DESCRIPTION
  list all entries in directory (matching ds_wild if given)
*/

static int get_list_files(DYNAMIC_STRING *ds, const DYNAMIC_STRING *ds_dirname,
                          const DYNAMIC_STRING *ds_wild)
{
  uint i;
  MY_DIR *dir_info;
  FILEINFO *file;
  DBUG_ENTER("get_list_files");

  DBUG_PRINT("info", ("listing directory: %s", ds_dirname->str));
  /* Note that my_dir sorts the list if not given any flags */
  if (!(dir_info= my_dir(ds_dirname->str, MYF(0))))
    DBUG_RETURN(1);
3401
  set_wild_chars(1);
3402 3403 3404 3405 3406 3407 3408 3409 3410 3411
  for (i= 0; i < (uint) dir_info->number_off_files; i++)
  {
    file= dir_info->dir_entry + i;
    if (file->name[0] == '.' &&
        (file->name[1] == '\0' ||
         (file->name[1] == '.' && file->name[2] == '\0')))
      continue;                               /* . or .. */
    if (ds_wild && ds_wild->length &&
        wild_compare(file->name, ds_wild->str, 0))
      continue;
3412
    replace_dynstr_append(ds, file->name);
3413 3414
    dynstr_append(ds, "\n");
  }
3415
  set_wild_chars(0);
3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441
  my_dirend(dir_info);
  DBUG_RETURN(0);
}


/*
  SYNOPSIS
  do_list_files
  command	called command

  DESCRIPTION
  list_files <dir_name> [<file_name>]
  List files and directories in directory <dir_name> (like `ls`)
  [Matching <file_name>, where wild-cards are allowed]
*/

static void do_list_files(struct st_command *command)
{
  int error;
  static DYNAMIC_STRING ds_dirname;
  static DYNAMIC_STRING ds_wild;
  const struct command_arg list_files_args[] = {
    {"dirname", ARG_STRING, TRUE, &ds_dirname, "Directory to list"},
    {"file", ARG_STRING, FALSE, &ds_wild, "Filename (incl. wildcard)"}
  };
  DBUG_ENTER("do_list_files");
3442
  command->used_replace= 1;
3443 3444 3445 3446 3447 3448

  check_command_args(command, command->first_argument,
                     list_files_args,
                     sizeof(list_files_args)/sizeof(struct command_arg), ' ');

  error= get_list_files(&ds_res, &ds_dirname, &ds_wild);
3449
  handle_command_error(command, error, my_errno);
3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483
  dynstr_free(&ds_dirname);
  dynstr_free(&ds_wild);
  DBUG_VOID_RETURN;
}


/*
  SYNOPSIS
  do_list_files_write_file_command
  command       called command
  append        append file, or create new

  DESCRIPTION
  list_files_{write|append}_file <filename> <dir_name> [<match_file>]
  List files and directories in directory <dir_name> (like `ls`)
  [Matching <match_file>, where wild-cards are allowed]

  Note: File will be truncated if exists and append is not true.
*/

static void do_list_files_write_file_command(struct st_command *command,
                                             my_bool append)
{
  int error;
  static DYNAMIC_STRING ds_content;
  static DYNAMIC_STRING ds_filename;
  static DYNAMIC_STRING ds_dirname;
  static DYNAMIC_STRING ds_wild;
  const struct command_arg list_files_args[] = {
    {"filename", ARG_STRING, TRUE, &ds_filename, "Filename for write"},
    {"dirname", ARG_STRING, TRUE, &ds_dirname, "Directory to list"},
    {"file", ARG_STRING, FALSE, &ds_wild, "Filename (incl. wildcard)"}
  };
  DBUG_ENTER("do_list_files_write_file");
3484
  command->used_replace= 1;
3485 3486 3487 3488 3489 3490 3491

  check_command_args(command, command->first_argument,
                     list_files_args,
                     sizeof(list_files_args)/sizeof(struct command_arg), ' ');

  init_dynamic_string(&ds_content, "", 1024, 1024);
  error= get_list_files(&ds_content, &ds_dirname, &ds_wild);
3492
  handle_command_error(command, error, my_errno);
3493 3494 3495 3496 3497 3498 3499 3500 3501
  str_to_file2(ds_filename.str, ds_content.str, ds_content.length, append);
  dynstr_free(&ds_content);
  dynstr_free(&ds_filename);
  dynstr_free(&ds_dirname);
  dynstr_free(&ds_wild);
  DBUG_VOID_RETURN;
}


unknown's avatar
unknown committed
3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512
/*
  Read characters from line buffer or file. This is needed to allow
  my_ungetc() to buffer MAX_DELIMITER_LENGTH characters for a file

  NOTE:
  This works as long as one doesn't change files (with 'source file_name')
  when there is things pushed into the buffer.  This should however not
  happen for any tests in the test suite.
*/

int my_getc(FILE *file)
3513
{
unknown's avatar
unknown committed
3514 3515 3516
  if (line_buffer_pos == line_buffer)
    return fgetc(file);
  return *--line_buffer_pos;
3517 3518
}

3519

unknown's avatar
unknown committed
3520
void my_ungetc(int c)
3521
{
unknown's avatar
unknown committed
3522
  *line_buffer_pos++= (char) c;
3523 3524
}

3525

unknown's avatar
unknown committed
3526 3527
void read_until_delimiter(DYNAMIC_STRING *ds,
                          DYNAMIC_STRING *ds_delimiter)
3528
{
3529
  char c;
unknown's avatar
unknown committed
3530
  DBUG_ENTER("read_until_delimiter");
3531 3532
  DBUG_PRINT("enter", ("delimiter: %s, length: %u",
                       ds_delimiter->str, (uint) ds_delimiter->length));
unknown's avatar
unknown committed
3533 3534 3535 3536 3537 3538 3539 3540 3541 3542

  if (ds_delimiter->length > MAX_DELIMITER_LENGTH)
    die("Max delimiter length(%d) exceeded", MAX_DELIMITER_LENGTH);

  /* Read from file until delimiter is found */
  while (1)
  {
    c= my_getc(cur_file->file);

    if (c == '\n')
3543
    {
unknown's avatar
unknown committed
3544 3545
      cur_file->lineno++;

3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558
      /* Skip newline from the same line as the command */
      if (start_lineno == (cur_file->lineno - 1))
        continue;
    }
    else if (start_lineno == cur_file->lineno)
    {
      /*
        No characters except \n are allowed on
        the same line as the command
      */
      die("Trailing characters found after command");
    }

unknown's avatar
unknown committed
3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571
    if (feof(cur_file->file))
      die("End of file encountered before '%s' delimiter was found",
          ds_delimiter->str);

    if (match_delimiter(c, ds_delimiter->str, ds_delimiter->length))
    {
      DBUG_PRINT("exit", ("Found delimiter '%s'", ds_delimiter->str));
      break;
    }
    dynstr_append_mem(ds, (const char*)&c, 1);
  }
  DBUG_PRINT("exit", ("ds: %s", ds->str));
  DBUG_VOID_RETURN;
3572 3573 3574
}


3575 3576 3577 3578 3579 3580
void do_write_file_command(struct st_command *command, my_bool append)
{
  static DYNAMIC_STRING ds_content;
  static DYNAMIC_STRING ds_filename;
  static DYNAMIC_STRING ds_delimiter;
  const struct command_arg write_file_args[] = {
unknown's avatar
unknown committed
3581 3582
    { "filename", ARG_STRING, TRUE, &ds_filename, "File to write to" },
    { "delimiter", ARG_STRING, FALSE, &ds_delimiter, "Delimiter to read until" }
3583 3584 3585 3586 3587 3588 3589 3590 3591
  };
  DBUG_ENTER("do_write_file");

  check_command_args(command,
                     command->first_argument,
                     write_file_args,
                     sizeof(write_file_args)/sizeof(struct command_arg),
                     ' ');

3592 3593 3594 3595 3596 3597
  if (!append && access(ds_filename.str, F_OK) == 0)
  {
    /* The file should not be overwritten */
    die("File already exist: '%s'", ds_filename.str);
  }

3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615
  ds_content= command->content;
  /* If it hasn't been done already by a loop iteration, fill it in */
  if (! ds_content.str)
  {
    /* If no delimiter was provided, use EOF */
    if (ds_delimiter.length == 0)
      dynstr_set(&ds_delimiter, "EOF");

    init_dynamic_string(&ds_content, "", 1024, 1024);
    read_until_delimiter(&ds_content, &ds_delimiter);
    command->content= ds_content;
  }
  /* This function could be called even if "false", so check before printing */
  if (cur_block->ok)
  {
    DBUG_PRINT("info", ("Writing to file: %s", ds_filename.str));
    str_to_file2(ds_filename.str, ds_content.str, ds_content.length, append);
  }
3616 3617 3618 3619 3620 3621
  dynstr_free(&ds_filename);
  dynstr_free(&ds_delimiter);
  DBUG_VOID_RETURN;
}


3622 3623
/*
  SYNOPSIS
unknown's avatar
unknown committed
3624 3625
  do_write_file
  command	called command
3626 3627

  DESCRIPTION
unknown's avatar
unknown committed
3628 3629 3630 3631 3632
  write_file <file_name> [<delimiter>];
  <what to write line 1>
  <...>
  < what to write line n>
  EOF
unknown's avatar
unknown committed
3633

unknown's avatar
unknown committed
3634 3635 3636 3637 3638
  --write_file <file_name>;
  <what to write line 1>
  <...>
  < what to write line n>
  EOF
3639

unknown's avatar
unknown committed
3640 3641
  Write everything between the "write_file" command and 'delimiter'
  to "file_name"
3642

3643
  NOTE! Will fail if <file_name> exists
3644

unknown's avatar
unknown committed
3645
  Default <delimiter> is EOF
3646

unknown's avatar
unknown committed
3647
*/
unknown's avatar
unknown committed
3648

unknown's avatar
unknown committed
3649
void do_write_file(struct st_command *command)
3650
{
3651 3652
  do_write_file_command(command, FALSE);
}
unknown's avatar
unknown committed
3653 3654


3655 3656 3657 3658
/*
  SYNOPSIS
  do_append_file
  command	called command
unknown's avatar
unknown committed
3659

3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682
  DESCRIPTION
  append_file <file_name> [<delimiter>];
  <what to write line 1>
  <...>
  < what to write line n>
  EOF

  --append_file <file_name>;
  <what to write line 1>
  <...>
  < what to write line n>
  EOF

  Append everything between the "append_file" command
  and 'delimiter' to "file_name"

  Default <delimiter> is EOF

*/

void do_append_file(struct st_command *command)
{
  do_write_file_command(command, TRUE);
3683 3684
}

unknown's avatar
unknown committed
3685

unknown's avatar
unknown committed
3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699
/*
  SYNOPSIS
  do_cat_file
  command	called command

  DESCRIPTION
  cat_file <file_name>;

  Print the given file to result log

*/

void do_cat_file(struct st_command *command)
{
3700
  int error;
unknown's avatar
unknown committed
3701 3702
  static DYNAMIC_STRING ds_filename;
  const struct command_arg cat_file_args[] = {
unknown's avatar
unknown committed
3703
    { "filename", ARG_STRING, TRUE, &ds_filename, "File to read from" }
unknown's avatar
unknown committed
3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714
  };
  DBUG_ENTER("do_cat_file");

  check_command_args(command,
                     command->first_argument,
                     cat_file_args,
                     sizeof(cat_file_args)/sizeof(struct command_arg),
                     ' ');

  DBUG_PRINT("info", ("Reading from, file: %s", ds_filename.str));

3715
  error= cat_file(&ds_res, ds_filename.str);
Sergei Golubchik's avatar
Sergei Golubchik committed
3716
  handle_command_error(command, error, my_errno);
unknown's avatar
unknown committed
3717 3718 3719 3720 3721
  dynstr_free(&ds_filename);
  DBUG_VOID_RETURN;
}


3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739
/*
  SYNOPSIS
  do_diff_files
  command	called command

  DESCRIPTION
  diff_files <file1> <file2>;

  Fails if the two files differ.

*/

void do_diff_files(struct st_command *command)
{
  int error= 0;
  static DYNAMIC_STRING ds_filename;
  static DYNAMIC_STRING ds_filename2;
  const struct command_arg diff_file_args[] = {
unknown's avatar
unknown committed
3740 3741
    { "file1", ARG_STRING, TRUE, &ds_filename, "First file to diff" },
    { "file2", ARG_STRING, TRUE, &ds_filename2, "Second file to diff" }
3742 3743 3744 3745 3746 3747 3748 3749 3750
  };
  DBUG_ENTER("do_diff_files");

  check_command_args(command,
                     command->first_argument,
                     diff_file_args,
                     sizeof(diff_file_args)/sizeof(struct command_arg),
                     ' ');

3751 3752 3753 3754 3755 3756 3757 3758
  if (access(ds_filename.str, F_OK) != 0)
    die("command \"diff_files\" failed, file '%s' does not exist",
        ds_filename.str);

  if (access(ds_filename2.str, F_OK) != 0)
    die("command \"diff_files\" failed, file '%s' does not exist",
        ds_filename2.str);

3759 3760
  if ((error= compare_files(ds_filename.str, ds_filename2.str)) &&
      match_expected_error(command, error, NULL) < 0)
3761
  {
3762 3763 3764 3765
    /*
      Compare of the two files failed, append them to output
      so the failure can be analyzed, but only if it was not
      expected to fail.
3766 3767
    */
    show_diff(&ds_res, ds_filename.str, ds_filename2.str);
3768 3769 3770
    log_file.write(&ds_res);
    log_file.flush();
    dynstr_set(&ds_res, 0);
3771 3772 3773 3774
  }

  dynstr_free(&ds_filename);
  dynstr_free(&ds_filename2);
3775
  handle_command_error(command, error, -1);
3776 3777 3778
  DBUG_VOID_RETURN;
}

3779

3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792
struct st_connection * find_connection_by_name(const char *name)
{
  struct st_connection *con;
  for (con= connections; con < next_con; con++)
  {
    if (!strcmp(con->name, name))
    {
      return con;
    }
  }
  return 0; /* Connection not found */
}

3793

3794 3795 3796 3797 3798 3799 3800 3801 3802
/*
  SYNOPSIS
  do_send_quit
  command	called command

  DESCRIPTION
  Sends a simple quit command to the server for the named connection.

*/
3803 3804 3805 3806 3807 3808 3809 3810 3811 3812

void do_send_quit(struct st_command *command)
{
  char *p= command->first_argument, *name;
  struct st_connection *con;

  DBUG_ENTER("do_send_quit");
  DBUG_PRINT("enter",("name: '%s'",p));

  if (!*p)
3813
    die("Missing connection name in send_quit");
3814 3815 3816 3817 3818 3819 3820 3821
  name= p;
  while (*p && !my_isspace(charset_info,*p))
    p++;

  if (*p)
    *p++= 0;
  command->last_argument= p;

3822 3823 3824
  if (!(con= find_connection_by_name(name)))
    die("connection '%s' not found in connection pool", name);

3825
  simple_command(con->mysql,COM_QUIT,0,0,1);
3826 3827

  DBUG_VOID_RETURN;
3828 3829 3830
}


3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848
/*
  SYNOPSIS
  do_change_user
  command       called command

  DESCRIPTION
  change_user [<user>], [<passwd>], [<db>]
  <user> - user to change to
  <passwd> - user password
  <db> - default database

  Changes the user and causes the database specified by db to become
  the default (current) database for the the current connection.

*/

void do_change_user(struct st_command *command)
{
3849
  MYSQL *mysql = cur_con->mysql;
3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864
  /* static keyword to make the NetWare compiler happy. */
  static DYNAMIC_STRING ds_user, ds_passwd, ds_db;
  const struct command_arg change_user_args[] = {
    { "user", ARG_STRING, FALSE, &ds_user, "User to connect as" },
    { "password", ARG_STRING, FALSE, &ds_passwd, "Password used when connecting" },
    { "database", ARG_STRING, FALSE, &ds_db, "Database to select after connect" },
  };

  DBUG_ENTER("do_change_user");

  check_command_args(command, command->first_argument,
                     change_user_args,
                     sizeof(change_user_args)/sizeof(struct command_arg),
                     ',');

3865 3866 3867 3868 3869 3870
  if (cur_con->stmt)
  {
    mysql_stmt_close(cur_con->stmt);
    cur_con->stmt= NULL;
  }

3871
  if (!ds_user.length)
3872
  {
3873 3874
    dynstr_set(&ds_user, mysql->user);

3875 3876
    if (!ds_passwd.length)
      dynstr_set(&ds_passwd, mysql->passwd);
3877

3878 3879 3880
    if (!ds_db.length)
      dynstr_set(&ds_db, mysql->db);
  }
3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895

  DBUG_PRINT("info",("connection: '%s' user: '%s' password: '%s' database: '%s'",
                      cur_con->name, ds_user.str, ds_passwd.str, ds_db.str));

  if (mysql_change_user(mysql, ds_user.str, ds_passwd.str, ds_db.str))
    die("change user failed: %s", mysql_error(mysql));

  dynstr_free(&ds_user);
  dynstr_free(&ds_passwd);
  dynstr_free(&ds_db);

  DBUG_VOID_RETURN;
}


unknown's avatar
unknown committed
3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906
/*
  SYNOPSIS
  do_perl
  command	command handle

  DESCRIPTION
  perl [<delimiter>];
  <perlscript line 1>
  <...>
  <perlscript line n>
  EOF
unknown's avatar
unknown committed
3907

unknown's avatar
unknown committed
3908 3909 3910 3911 3912 3913 3914 3915
  Execute everything after "perl" until <delimiter> as perl.
  Useful for doing more advanced things
  but still being able to execute it on all platforms.

  Default <delimiter> is EOF
*/

void do_perl(struct st_command *command)
unknown's avatar
unknown committed
3916
{
unknown's avatar
unknown committed
3917
  int error;
3918
  File fd;
unknown's avatar
unknown committed
3919
  FILE *res_file;
3920 3921
  char buf[FN_REFLEN];
  char temp_file_path[FN_REFLEN];
3922 3923
  static DYNAMIC_STRING ds_script;
  static DYNAMIC_STRING ds_delimiter;
unknown's avatar
unknown committed
3924
  const struct command_arg perl_args[] = {
unknown's avatar
unknown committed
3925
    { "delimiter", ARG_STRING, FALSE, &ds_delimiter, "Delimiter to read until" }
unknown's avatar
unknown committed
3926 3927
  };
  DBUG_ENTER("do_perl");
3928

unknown's avatar
unknown committed
3929 3930 3931 3932 3933
  check_command_args(command,
                     command->first_argument,
                     perl_args,
                     sizeof(perl_args)/sizeof(struct command_arg),
                     ' ');
3934

3935 3936 3937 3938 3939 3940 3941
  ds_script= command->content;
  /* If it hasn't been done already by a loop iteration, fill it in */
  if (! ds_script.str)
  {
    /* If no delimiter was provided, use EOF */
    if (ds_delimiter.length == 0)
      dynstr_set(&ds_delimiter, "EOF");
unknown's avatar
unknown committed
3942

3943 3944 3945 3946
    init_dynamic_string(&ds_script, "", 1024, 1024);
    read_until_delimiter(&ds_script, &ds_delimiter);
    command->content= ds_script;
  }
3947

3948 3949 3950 3951
  /* This function could be called even if "false", so check before doing */
  if (cur_block->ok)
  {
    DBUG_PRINT("info", ("Executing perl: %s", ds_script.str));
unknown's avatar
unknown committed
3952

3953 3954 3955 3956 3957 3958
    /* Create temporary file name */
    if ((fd= create_temp_file(temp_file_path, getenv("MYSQLTEST_VARDIR"),
                              "tmp", O_CREAT | O_SHARE | O_RDWR,
                              MYF(MY_WME))) < 0)
      die("Failed to create temporary file for perl command");
    my_close(fd, MYF(0));
unknown's avatar
unknown committed
3959

3960
    str_to_file(temp_file_path, ds_script.str, ds_script.length);
unknown's avatar
unknown committed
3961

3962 3963
    /* Format the "perl <filename>" command */
    my_snprintf(buf, sizeof(buf), "perl %s", temp_file_path);
unknown's avatar
unknown committed
3964

3965 3966
    if (!(res_file= popen(buf, "r")) && command->abort_on_error)
     die("popen(\"%s\", \"r\") failed", buf);
unknown's avatar
unknown committed
3967

3968
    while (fgets(buf, sizeof(buf), res_file))
unknown's avatar
unknown committed
3969
    {
3970 3971 3972 3973 3974 3975 3976 3977 3978
      if (disable_result_log)
      {
	buf[strlen(buf)-1]=0;
	DBUG_PRINT("exec_result",("%s", buf));
      }
      else
      {
	replace_dynstr_append(&ds_res, buf);
      }
3979
    }
3980
    error= pclose(res_file);
3981

3982 3983
    /* Remove the temporary file, but keep it if perl failed */
    if (!error)
Sergei Golubchik's avatar
Sergei Golubchik committed
3984
      my_delete(temp_file_path, MYF(MY_WME));
3985

3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996
    /* Check for error code that indicates perl could not be started */
    int exstat= WEXITSTATUS(error);
#ifdef __WIN__
    if (exstat == 1)
      /* Text must begin 'perl not found' as mtr looks for it */
      abort_not_supported_test("perl not found in path or did not start");
#else
    if (exstat == 127)
      abort_not_supported_test("perl not found in path");
#endif
    else
Michael Widenius's avatar
Michael Widenius committed
3997
      handle_command_error(command, WEXITSTATUS(error), my_errno);
3998
  }
unknown's avatar
unknown committed
3999 4000
  dynstr_free(&ds_delimiter);
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
4001 4002 4003 4004
}


/*
unknown's avatar
unknown committed
4005 4006 4007
  Print the content between echo and <delimiter> to result file.
  Evaluate all variables in the string before printing, allow
  for variable names to be escaped using \
unknown's avatar
unknown committed
4008

unknown's avatar
unknown committed
4009 4010 4011
  SYNOPSIS
  do_echo()
  command  called command
unknown's avatar
unknown committed
4012

unknown's avatar
unknown committed
4013 4014 4015
  DESCRIPTION
  echo text
  Print the text after echo until end of command to result file
4016

unknown's avatar
unknown committed
4017 4018
  echo $<var_name>
  Print the content of the variable <var_name> to result file
unknown's avatar
unknown committed
4019

unknown's avatar
unknown committed
4020 4021 4022 4023 4024 4025 4026 4027 4028
  echo Some text $<var_name>
  Print "Some text" plus the content of the variable <var_name> to
  result file

  echo Some text \$<var_name>
  Print "Some text" plus $<var_name> to result file
*/

int do_echo(struct st_command *command)
unknown's avatar
unknown committed
4029
{
unknown's avatar
unknown committed
4030
  DYNAMIC_STRING ds_echo;
4031
  DBUG_ENTER("do_echo");
unknown's avatar
unknown committed
4032 4033 4034 4035 4036 4037 4038

  init_dynamic_string(&ds_echo, "", command->query_len, 256);
  do_eval(&ds_echo, command->first_argument, command->end, FALSE);
  dynstr_append_mem(&ds_res, ds_echo.str, ds_echo.length);
  dynstr_append_mem(&ds_res, "\n", 1);
  dynstr_free(&ds_echo);
  command->last_argument= command->end;
4039
  DBUG_RETURN(0);
unknown's avatar
unknown committed
4040 4041
}

4042

unknown's avatar
unknown committed
4043
void do_wait_for_slave_to_stop(struct st_command *c __attribute__((unused)))
unknown's avatar
unknown committed
4044
{
unknown's avatar
unknown committed
4045
  static int SLAVE_POLL_INTERVAL= 300000;
4046
  MYSQL* mysql = cur_con->mysql;
unknown's avatar
unknown committed
4047
  for (;;)
4048
  {
4049
    MYSQL_RES *UNINIT_VAR(res);
unknown's avatar
unknown committed
4050 4051 4052 4053 4054 4055 4056 4057
    MYSQL_ROW row;
    int done;

    if (mysql_query(mysql,"show status like 'Slave_running'") ||
	!(res=mysql_store_result(mysql)))
      die("Query failed while probing slave for stop: %s",
	  mysql_error(mysql));
    if (!(row=mysql_fetch_row(res)) || !row[1])
4058
    {
unknown's avatar
unknown committed
4059 4060
      mysql_free_result(res);
      die("Strange result from query while probing slave for stop");
4061
    }
unknown's avatar
unknown committed
4062 4063 4064 4065 4066
    done = !strcmp(row[1],"OFF");
    mysql_free_result(res);
    if (done)
      break;
    my_sleep(SLAVE_POLL_INTERVAL);
4067
  }
unknown's avatar
unknown committed
4068
  return;
unknown's avatar
unknown committed
4069 4070
}

4071

4072
void do_sync_with_master2(struct st_command *command, long offset)
4073
{
unknown's avatar
unknown committed
4074 4075
  MYSQL_RES *res;
  MYSQL_ROW row;
4076
  MYSQL *mysql= cur_con->mysql;
unknown's avatar
unknown committed
4077
  char query_buf[FN_REFLEN+128];
4078
  int timeout= 300; /* seconds */
4079

unknown's avatar
unknown committed
4080 4081
  if (!master_pos.file[0])
    die("Calling 'sync_with_master' without calling 'save_master_pos'");
4082

4083 4084
  sprintf(query_buf, "select master_pos_wait('%s', %ld, %d)",
          master_pos.file, master_pos.pos + offset, timeout);
4085

unknown's avatar
unknown committed
4086 4087 4088
  if (mysql_query(mysql, query_buf))
    die("failed in '%s': %d: %s", query_buf, mysql_errno(mysql),
        mysql_error(mysql));
4089

unknown's avatar
unknown committed
4090 4091 4092
  if (!(res= mysql_store_result(mysql)))
    die("mysql_store_result() returned NULL for '%s'", query_buf);
  if (!(row= mysql_fetch_row(res)))
4093 4094
  {
    mysql_free_result(res);
unknown's avatar
unknown committed
4095
    die("empty result in %s", query_buf);
4096
  }
4097 4098 4099 4100 4101 4102 4103 4104 4105

  int result= -99;
  const char* result_str= row[0];
  if (result_str)
    result= atoi(result_str);

  mysql_free_result(res);

  if (!result_str || result < 0)
4106
  {
4107 4108 4109 4110 4111 4112 4113
    /* master_pos_wait returned NULL or < 0 */
    show_query(mysql, "SHOW MASTER STATUS");
    show_query(mysql, "SHOW SLAVE STATUS");
    show_query(mysql, "SHOW PROCESSLIST");
    fprintf(stderr, "analyze: sync_with_master\n");

    if (!result_str)
4114
    {
4115 4116 4117 4118 4119 4120 4121 4122 4123 4124
      /*
        master_pos_wait returned NULL. This indicates that
        slave SQL thread is not started, the slave's master
        information is not initialized, the arguments are
        incorrect, or an error has occured
      */
      die("%.*s failed: '%s' returned NULL "\
          "indicating slave SQL thread failure",
          command->first_word_len, command->query, query_buf);

4125
    }
4126 4127 4128 4129 4130 4131 4132 4133

    if (result == -1)
      die("%.*s failed: '%s' returned -1 "\
          "indicating timeout after %d seconds",
          command->first_word_len, command->query, query_buf, timeout);
    else
      die("%.*s failed: '%s' returned unknown result :%d",
          command->first_word_len, command->query, query_buf, result);
4134
  }
4135

unknown's avatar
unknown committed
4136 4137
  return;
}
unknown's avatar
unknown committed
4138

unknown's avatar
unknown committed
4139
void do_sync_with_master(struct st_command *command)
unknown's avatar
unknown committed
4140
{
unknown's avatar
unknown committed
4141 4142 4143 4144
  long offset= 0;
  char *p= command->first_argument;
  const char *offset_start= p;
  if (*offset_start)
unknown's avatar
unknown committed
4145
  {
unknown's avatar
unknown committed
4146 4147
    for (; my_isdigit(charset_info, *p); p++)
      offset = offset * 10 + *p - '0';
4148

unknown's avatar
unknown committed
4149 4150 4151 4152
    if(*p && !my_isspace(charset_info, *p))
      die("Invalid integer argument \"%s\"", offset_start);
    command->last_argument= p;
  }
4153
  do_sync_with_master2(command, offset);
unknown's avatar
unknown committed
4154
  return;
unknown's avatar
unknown committed
4155 4156
}

unknown's avatar
unknown committed
4157 4158 4159 4160 4161 4162

/*
  when ndb binlog is on, this call will wait until last updated epoch
  (locally in the mysqld) has been received into the binlog
*/
int do_save_master_pos()
4163
{
unknown's avatar
unknown committed
4164 4165
  MYSQL_RES *res;
  MYSQL_ROW row;
4166
  MYSQL *mysql = cur_con->mysql;
unknown's avatar
unknown committed
4167 4168
  const char *query;
  int rpl_parse;
4169
  DBUG_ENTER("do_save_master_pos");
4170

unknown's avatar
unknown committed
4171 4172
  rpl_parse = mysql_rpl_parse_enabled(mysql);
  mysql_disable_rpl_parse(mysql);
4173

unknown's avatar
unknown committed
4174 4175 4176 4177 4178
#ifdef HAVE_NDB_BINLOG
  /*
    Wait for ndb binlog to be up-to-date with all changes
    done on the local mysql server
  */
unknown's avatar
unknown committed
4179
  {
unknown's avatar
unknown committed
4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192
    ulong have_ndbcluster;
    if (mysql_query(mysql, query= "show variables like 'have_ndbcluster'"))
      die("'%s' failed: %d %s", query,
          mysql_errno(mysql), mysql_error(mysql));
    if (!(res= mysql_store_result(mysql)))
      die("mysql_store_result() returned NULL for '%s'", query);
    if (!(row= mysql_fetch_row(res)))
      die("Query '%s' returned empty result", query);

    have_ndbcluster= strcmp("YES", row[1]) == 0;
    mysql_free_result(res);

    if (have_ndbcluster)
unknown's avatar
unknown committed
4193
    {
unknown's avatar
unknown committed
4194
      ulonglong start_epoch= 0, handled_epoch= 0,
unknown's avatar
unknown committed
4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296
	latest_epoch=0, latest_trans_epoch=0,
	latest_handled_binlog_epoch= 0, latest_received_binlog_epoch= 0,
	latest_applied_binlog_epoch= 0;
      int count= 0;
      int do_continue= 1;
      while (do_continue)
      {
        const char binlog[]= "binlog";
	const char latest_epoch_str[]=
          "latest_epoch=";
        const char latest_trans_epoch_str[]=
          "latest_trans_epoch=";
	const char latest_received_binlog_epoch_str[]=
	  "latest_received_binlog_epoch";
        const char latest_handled_binlog_epoch_str[]=
          "latest_handled_binlog_epoch=";
        const char latest_applied_binlog_epoch_str[]=
          "latest_applied_binlog_epoch=";
        if (count)
          sleep(1);
        if (mysql_query(mysql, query= "show engine ndb status"))
          die("failed in '%s': %d %s", query,
              mysql_errno(mysql), mysql_error(mysql));
        if (!(res= mysql_store_result(mysql)))
          die("mysql_store_result() returned NULL for '%s'", query);
        while ((row= mysql_fetch_row(res)))
        {
          if (strcmp(row[1], binlog) == 0)
          {
            const char *status= row[2];

	    /* latest_epoch */
	    while (*status && strncmp(status, latest_epoch_str,
				      sizeof(latest_epoch_str)-1))
	      status++;
	    if (*status)
            {
	      status+= sizeof(latest_epoch_str)-1;
	      latest_epoch= strtoull(status, (char**) 0, 10);
	    }
	    else
	      die("result does not contain '%s' in '%s'",
		  latest_epoch_str, query);
	    /* latest_trans_epoch */
	    while (*status && strncmp(status, latest_trans_epoch_str,
				      sizeof(latest_trans_epoch_str)-1))
	      status++;
	    if (*status)
	    {
	      status+= sizeof(latest_trans_epoch_str)-1;
	      latest_trans_epoch= strtoull(status, (char**) 0, 10);
	    }
	    else
	      die("result does not contain '%s' in '%s'",
		  latest_trans_epoch_str, query);
	    /* latest_received_binlog_epoch */
	    while (*status &&
		   strncmp(status, latest_received_binlog_epoch_str,
			   sizeof(latest_received_binlog_epoch_str)-1))
	      status++;
	    if (*status)
	    {
	      status+= sizeof(latest_received_binlog_epoch_str)-1;
	      latest_received_binlog_epoch= strtoull(status, (char**) 0, 10);
	    }
	    else
	      die("result does not contain '%s' in '%s'",
		  latest_received_binlog_epoch_str, query);
	    /* latest_handled_binlog */
	    while (*status &&
		   strncmp(status, latest_handled_binlog_epoch_str,
			   sizeof(latest_handled_binlog_epoch_str)-1))
	      status++;
	    if (*status)
	    {
	      status+= sizeof(latest_handled_binlog_epoch_str)-1;
	      latest_handled_binlog_epoch= strtoull(status, (char**) 0, 10);
	    }
	    else
	      die("result does not contain '%s' in '%s'",
		  latest_handled_binlog_epoch_str, query);
	    /* latest_applied_binlog_epoch */
	    while (*status &&
		   strncmp(status, latest_applied_binlog_epoch_str,
			   sizeof(latest_applied_binlog_epoch_str)-1))
	      status++;
	    if (*status)
	    {
	      status+= sizeof(latest_applied_binlog_epoch_str)-1;
	      latest_applied_binlog_epoch= strtoull(status, (char**) 0, 10);
	    }
	    else
	      die("result does not contain '%s' in '%s'",
		  latest_applied_binlog_epoch_str, query);
	    if (count == 0)
	      start_epoch= latest_trans_epoch;
	    break;
	  }
	}
	if (!row)
	  die("result does not contain '%s' in '%s'",
	      binlog, query);
4297
	if (latest_handled_binlog_epoch > handled_epoch)
unknown's avatar
unknown committed
4298
	  count= 0;
4299
	handled_epoch= latest_handled_binlog_epoch;
unknown's avatar
unknown committed
4300 4301 4302 4303 4304 4305 4306 4307 4308
	count++;
	if (latest_handled_binlog_epoch >= start_epoch)
          do_continue= 0;
        else if (count > 30)
	{
	  break;
        }
        mysql_free_result(res);
      }
unknown's avatar
unknown committed
4309 4310
    }
  }
unknown's avatar
unknown committed
4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326
#endif
  if (mysql_query(mysql, query= "show master status"))
    die("failed in 'show master status': %d %s",
	mysql_errno(mysql), mysql_error(mysql));

  if (!(res = mysql_store_result(mysql)))
    die("mysql_store_result() retuned NULL for '%s'", query);
  if (!(row = mysql_fetch_row(res)))
    die("empty result in show master status");
  strnmov(master_pos.file, row[0], sizeof(master_pos.file)-1);
  master_pos.pos = strtoul(row[1], (char**) 0, 10);
  mysql_free_result(res);

  if (rpl_parse)
    mysql_enable_rpl_parse(mysql);

4327
  DBUG_RETURN(0);
unknown's avatar
unknown committed
4328 4329
}

4330

unknown's avatar
unknown committed
4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350
/*
  Assign the variable <var_name> with <var_val>

  SYNOPSIS
  do_let()
  query	called command

  DESCRIPTION
  let $<var_name>=<var_val><delimiter>

  <var_name>  - is the string string found between the $ and =
  <var_val>   - is the content between the = and <delimiter>, it may span
  multiple line and contain any characters except <delimiter>
  <delimiter> - is a string containing of one or more chars, default is ;

  RETURN VALUES
  Program will die if error detected
*/

void do_let(struct st_command *command)
unknown's avatar
unknown committed
4351
{
unknown's avatar
unknown committed
4352 4353 4354 4355
  char *p= command->first_argument;
  char *var_name, *var_name_end;
  DYNAMIC_STRING let_rhs_expr;
  DBUG_ENTER("do_let");
unknown's avatar
unknown committed
4356

unknown's avatar
unknown committed
4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372
  init_dynamic_string(&let_rhs_expr, "", 512, 2048);

  /* Find <var_name> */
  if (!*p)
    die("Missing arguments to let");
  var_name= p;
  while (*p && (*p != '=') && !my_isspace(charset_info,*p))
    p++;
  var_name_end= p;
  if (var_name == var_name_end ||
      (var_name+1 == var_name_end && *var_name == '$'))
    die("Missing variable name in let");
  while (my_isspace(charset_info,*p))
    p++;
  if (*p++ != '=')
    die("Missing assignment operator in let");
unknown's avatar
unknown committed
4373

unknown's avatar
unknown committed
4374 4375 4376
  /* Find start of <var_val> */
  while (*p && my_isspace(charset_info,*p))
    p++;
unknown's avatar
unknown committed
4377

unknown's avatar
unknown committed
4378
  do_eval(&let_rhs_expr, p, command->end, FALSE);
4379

unknown's avatar
unknown committed
4380 4381 4382 4383 4384 4385
  command->last_argument= command->end;
  /* Assign var_val to var_name */
  var_set(var_name, var_name_end, let_rhs_expr.str,
          (let_rhs_expr.str + let_rhs_expr.length));
  dynstr_free(&let_rhs_expr);
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
4386 4387
}

4388

unknown's avatar
unknown committed
4389
int do_rpl_probe(struct st_command *command __attribute__((unused)))
4390
{
unknown's avatar
unknown committed
4391
  DBUG_ENTER("do_rpl_probe");
4392 4393
  if (mysql_rpl_probe(cur_con->mysql))
    die("Failed in mysql_rpl_probe(): '%s'", mysql_error(cur_con->mysql));
unknown's avatar
unknown committed
4394 4395
  DBUG_RETURN(0);
}
4396

unknown's avatar
unknown committed
4397 4398 4399

int do_enable_rpl_parse(struct st_command *command __attribute__((unused)))
{
4400
  mysql_enable_rpl_parse(cur_con->mysql);
4401 4402 4403
  return 0;
}

4404

unknown's avatar
unknown committed
4405
int do_disable_rpl_parse(struct st_command *command __attribute__((unused)))
4406
{
4407
  mysql_disable_rpl_parse(cur_con->mysql);
unknown's avatar
unknown committed
4408 4409
  return 0;
}
4410 4411


unknown's avatar
unknown committed
4412 4413
/*
  Sleep the number of specified seconds
4414

unknown's avatar
unknown committed
4415 4416 4417 4418 4419
  SYNOPSIS
  do_sleep()
  q	       called command
  real_sleep   use the value from opt_sleep as number of seconds to sleep
               if real_sleep is false
unknown's avatar
unknown committed
4420

unknown's avatar
unknown committed
4421 4422 4423
  DESCRIPTION
  sleep <seconds>
  real_sleep <seconds>
4424

unknown's avatar
unknown committed
4425 4426 4427 4428 4429 4430 4431 4432
  The difference between the sleep and real_sleep commands is that sleep
  uses the delay from the --sleep command-line option if there is one.
  (If the --sleep option is not given, the sleep command uses the delay
  specified by its argument.) The real_sleep command always uses the
  delay specified by its argument.  The logic is that sometimes delays are
  cpu-dependent, and --sleep can be used to set this delay.  real_sleep is
  used for cpu-independent delays.
*/
4433

unknown's avatar
unknown committed
4434 4435 4436
int do_sleep(struct st_command *command, my_bool real_sleep)
{
  int error= 0;
4437
  char *sleep_start, *sleep_end;
unknown's avatar
unknown committed
4438
  double sleep_val;
4439 4440 4441 4442 4443 4444 4445 4446
  char *p;
  static DYNAMIC_STRING ds_sleep;
  const struct command_arg sleep_args[] = {
    { "sleep_delay", ARG_STRING, TRUE, &ds_sleep, "Number of seconds to sleep." }
  };
  check_command_args(command, command->first_argument, sleep_args,
                     sizeof(sleep_args)/sizeof(struct command_arg),
                     ' ');
4447

4448 4449
  p= ds_sleep.str;
  sleep_end= ds_sleep.str + ds_sleep.length;
unknown's avatar
unknown committed
4450 4451 4452 4453 4454 4455 4456 4457
  while (my_isspace(charset_info, *p))
    p++;
  if (!*p)
    die("Missing argument to %.*s", command->first_word_len, command->query);
  sleep_start= p;
  /* Check that arg starts with a digit, not handled by my_strtod */
  if (!my_isdigit(charset_info, *sleep_start))
    die("Invalid argument to %.*s \"%s\"", command->first_word_len,
4458
        command->query, sleep_start);
unknown's avatar
unknown committed
4459
  sleep_val= my_strtod(sleep_start, &sleep_end, &error);
4460
  check_eol_junk_line(sleep_end);
unknown's avatar
unknown committed
4461 4462 4463
  if (error)
    die("Invalid argument to %.*s \"%s\"", command->first_word_len,
        command->query, command->first_argument);
4464
  dynstr_free(&ds_sleep);
4465

unknown's avatar
unknown committed
4466 4467 4468 4469 4470 4471 4472
  /* Fixed sleep time selected by --sleep option */
  if (opt_sleep >= 0 && !real_sleep)
    sleep_val= opt_sleep;

  DBUG_PRINT("info", ("sleep_val: %f", sleep_val));
  if (sleep_val)
    my_sleep((ulong) (sleep_val * 1000000L));
4473
  return 0;
4474 4475
}

unknown's avatar
unknown committed
4476

4477 4478
void do_get_file_name(struct st_command *command,
                      char* dest, uint dest_max_len)
4479
{
unknown's avatar
unknown committed
4480 4481 4482 4483 4484 4485 4486 4487 4488
  char *p= command->first_argument, *name;
  if (!*p)
    die("Missing file name argument");
  name= p;
  while (*p && !my_isspace(charset_info,*p))
    p++;
  if (*p)
    *p++= 0;
  command->last_argument= p;
unknown's avatar
unknown committed
4489
  strmake(dest, name, dest_max_len - 1);
4490 4491
}

unknown's avatar
unknown committed
4492 4493

void do_set_charset(struct st_command *command)
4494
{
unknown's avatar
unknown committed
4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509
  char *charset_name= command->first_argument;
  char *p;

  if (!charset_name || !*charset_name)
    die("Missing charset name in 'character_set'");
  /* Remove end space */
  p= charset_name;
  while (*p && !my_isspace(charset_info,*p))
    p++;
  if(*p)
    *p++= 0;
  command->last_argument= p;
  charset_info= get_charset_by_csname(charset_name,MY_CS_PRIMARY,MYF(MY_WME));
  if (!charset_info)
    abort_not_supported_test("Test requires charset '%s'", charset_name);
4510 4511 4512
}


4513 4514 4515 4516 4517 4518 4519 4520
/*
  Run query and return one field in the result set from the
  first row and <column>
*/

int query_get_string(MYSQL* mysql, const char* query,
                     int column, DYNAMIC_STRING* ds)
{
4521
  MYSQL_RES *res= NULL;
4522 4523
  MYSQL_ROW row;

4524
  if (mysql_query(mysql, query))
4525 4526
    die("'%s' failed: %d %s", query,
        mysql_errno(mysql), mysql_error(mysql));
4527 4528 4529 4530 4531
  if ((res= mysql_store_result(mysql)) == NULL)
    die("Failed to store result: %d %s",
        mysql_errno(mysql), mysql_error(mysql));

  if ((row= mysql_fetch_row(res)) == NULL)
4532 4533 4534 4535 4536
  {
    mysql_free_result(res);
    ds= 0;
    return 1;
  }
4537
  init_dynamic_string(ds, (row[column] ? row[column] : "NULL"), ~0, 32);
4538 4539 4540 4541 4542
  mysql_free_result(res);
  return 0;
}


4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563
static int my_kill(int pid, int sig)
{
#ifdef __WIN__
  HANDLE proc;
  if ((proc= OpenProcess(PROCESS_TERMINATE, FALSE, pid)) == NULL)
    return -1;
  if (sig == 0)
  {
    CloseHandle(proc);
    return 0;
  }
  (void)TerminateProcess(proc, 201);
  CloseHandle(proc);
  return 1;
#else
  return kill(pid, sig);
#endif
}



4564 4565 4566 4567 4568 4569 4570
/*
  Shutdown the server of current connection and
  make sure it goes away within <timeout> seconds

  NOTE! Currently only works with local server

  SYNOPSIS
4571
  do_shutdown_server()
4572 4573 4574
  command  called command

  DESCRIPTION
4575
  shutdown_server [<timeout>]
4576 4577 4578

*/

4579
void do_shutdown_server(struct st_command *command)
4580
{
4581 4582
  long timeout=60;
  int pid;
4583
  DYNAMIC_STRING ds_pidfile_name;
4584
  MYSQL* mysql = cur_con->mysql;
4585
  static DYNAMIC_STRING ds_timeout;
4586 4587
  const struct command_arg shutdown_args[] = {
    {"timeout", ARG_STRING, FALSE, &ds_timeout, "Timeout before killing server"}
4588
  };
4589
  DBUG_ENTER("do_shutdown_server");
4590

4591 4592
  check_command_args(command, command->first_argument, shutdown_args,
                     sizeof(shutdown_args)/sizeof(struct command_arg),
4593 4594 4595 4596
                     ' ');

  if (ds_timeout.length)
  {
4597 4598 4599
    char* endptr;
    timeout= strtol(ds_timeout.str, &endptr, 10);
    if (*endptr != '\0')
4600 4601
      die("Illegal argument for timeout: '%s'", ds_timeout.str);
  }
unknown's avatar
unknown committed
4602
  dynstr_free(&ds_timeout);
4603 4604 4605

  /* Get the servers pid_file name and use it to read pid */
  if (query_get_string(mysql, "SHOW VARIABLES LIKE 'pid_file'", 1,
4606
                       &ds_pidfile_name))
4607 4608 4609 4610 4611 4612 4613
    die("Failed to get pid_file from server");

  /* Read the pid from the file */
  {
    int fd;
    char buff[32];

4614 4615
    if ((fd= my_open(ds_pidfile_name.str, O_RDONLY, MYF(0))) < 0)
      die("Failed to open file '%s'", ds_pidfile_name.str);
4616 4617
    dynstr_free(&ds_pidfile_name);

4618 4619 4620 4621 4622 4623
    if (my_read(fd, (uchar*)&buff,
                sizeof(buff), MYF(0)) <= 0){
      my_close(fd, MYF(0));
      die("pid file was empty");
    }
    my_close(fd, MYF(0));
unknown's avatar
unknown committed
4624

4625 4626 4627
    pid= atoi(buff);
    if (pid == 0)
      die("Pidfile didn't contain a valid number");
4628 4629 4630
  }
  DBUG_PRINT("info", ("Got pid %d", pid));

4631
  /* Tell server to shutdown if timeout > 0*/
4632
  if (timeout && mysql_shutdown(mysql, SHUTDOWN_DEFAULT))
4633 4634 4635 4636
    die("mysql_shutdown failed");

  /* Check that server dies */
  while(timeout--){
4637
    if (my_kill(pid, 0) < 0){
4638
      DBUG_PRINT("info", ("Process %d does not exist anymore", pid));
4639
      DBUG_VOID_RETURN;
4640
    }
4641
    DBUG_PRINT("info", ("Sleeping, timeout: %ld", timeout));
4642
    my_sleep(1000000L);
4643 4644 4645 4646
  }

  /* Kill the server */
  DBUG_PRINT("info", ("Killing server, pid: %d", pid));
4647
  (void)my_kill(pid, 9);
4648 4649 4650 4651 4652 4653

  DBUG_VOID_RETURN;

}


unknown's avatar
unknown committed
4654 4655 4656
#if MYSQL_VERSION_ID >= 50000
/* List of error names to error codes, available from 5.0 */
typedef struct
4657
{
unknown's avatar
unknown committed
4658
  const char *name;
unknown's avatar
unknown committed
4659
  uint        code;
unknown's avatar
unknown committed
4660
} st_error;
4661

unknown's avatar
unknown committed
4662 4663 4664 4665 4666
static st_error global_error_names[] =
{
#include <mysqld_ername.h>
  { 0, 0 }
};
4667

unknown's avatar
unknown committed
4668 4669 4670 4671
uint get_errcode_from_name(char *error_name, char *error_end)
{
  /* SQL error as string */
  st_error *e= global_error_names;
4672 4673

  DBUG_ENTER("get_errcode_from_name");
unknown's avatar
unknown committed
4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686
  DBUG_PRINT("enter", ("error_name: %s", error_name));

  /* Loop through the array of known error names */
  for (; e->name; e++)
  {
    /*
      If we get a match, we need to check the length of the name we
      matched against in case it was longer than what we are checking
      (as in ER_WRONG_VALUE vs. ER_WRONG_VALUE_COUNT).
    */
    if (!strncmp(error_name, e->name, (int) (error_end - error_name)) &&
        (uint) strlen(e->name) == (uint) (error_end - error_name))
    {
unknown's avatar
unknown committed
4687
      DBUG_RETURN(e->code);
unknown's avatar
unknown committed
4688 4689 4690 4691
    }
  }
  if (!e->name)
    die("Unknown SQL error name '%s'", error_name);
4692 4693
  DBUG_RETURN(0);
}
unknown's avatar
unknown committed
4694
#else
4695 4696 4697
uint get_errcode_from_name(char *error_name __attribute__((unused)),
                           char *error_end __attribute__((unused)))
{
unknown's avatar
unknown committed
4698
  abort_not_in_this_version();
4699
  return 0; /* Never reached */
4700
}
4701 4702
#endif

4703 4704


unknown's avatar
unknown committed
4705 4706 4707 4708 4709
void do_get_errcodes(struct st_command *command)
{
  struct st_match_err *to= saved_expected_errors.err;
  char *p= command->first_argument;
  uint count= 0;
4710

unknown's avatar
unknown committed
4711
  DBUG_ENTER("do_get_errcodes");
4712

unknown's avatar
unknown committed
4713 4714
  if (!*p)
    die("Missing argument(s) to 'error'");
4715

unknown's avatar
unknown committed
4716 4717 4718
  do
  {
    char *end;
4719

unknown's avatar
unknown committed
4720 4721 4722
    /* Skip leading spaces */
    while (*p && *p == ' ')
      p++;
4723

unknown's avatar
unknown committed
4724 4725 4726 4727
    /* Find end */
    end= p;
    while (*end && *end != ',' && *end != ' ')
      end++;
4728

unknown's avatar
unknown committed
4729
    if (*p == 'S')
unknown's avatar
unknown committed
4730
    {
4731 4732
      char *to_ptr= to->code.sqlstate;

unknown's avatar
unknown committed
4733 4734 4735 4736 4737 4738
      /*
        SQLSTATE string
        - Must be SQLSTATE_LENGTH long
        - May contain only digits[0-9] and _uppercase_ letters
      */
      p++; /* Step past the S */
4739
      if ((end - p) != SQLSTATE_LENGTH)
unknown's avatar
unknown committed
4740
        die("The sqlstate must be exactly %d chars long", SQLSTATE_LENGTH);
4741

unknown's avatar
unknown committed
4742
      /* Check sqlstate string validity */
4743
      while (*p && p < end)
4744
      {
unknown's avatar
unknown committed
4745 4746 4747 4748 4749
        if (my_isdigit(charset_info, *p) || my_isupper(charset_info, *p))
          *to_ptr++= *p++;
        else
          die("The sqlstate may only consist of digits[0-9] " \
              "and _uppercase_ letters");
4750
      }
unknown's avatar
unknown committed
4751

unknown's avatar
unknown committed
4752 4753
      *to_ptr= 0;
      to->type= ERR_SQLSTATE;
4754
      DBUG_PRINT("info", ("ERR_SQLSTATE: %s", to->code.sqlstate));
unknown's avatar
unknown committed
4755 4756 4757 4758
    }
    else if (*p == 's')
    {
      die("The sqlstate definition must start with an uppercase S");
unknown's avatar
unknown committed
4759
    }
unknown's avatar
unknown committed
4760 4761 4762
    else if (*p == 'E')
    {
      /* Error name string */
4763

unknown's avatar
unknown committed
4764 4765 4766 4767 4768 4769
      DBUG_PRINT("info", ("Error name: %s", p));
      to->code.errnum= get_errcode_from_name(p, end);
      to->type= ERR_ERRNO;
      DBUG_PRINT("info", ("ERR_ERRNO: %d", to->code.errnum));
    }
    else if (*p == 'e')
unknown's avatar
unknown committed
4770
    {
unknown's avatar
unknown committed
4771 4772 4773 4774 4775 4776 4777 4778
      die("The error name definition must start with an uppercase E");
    }
    else
    {
      long val;
      char *start= p;
      /* Check that the string passed to str2int only contain digits */
      while (*p && p != end)
unknown's avatar
unknown committed
4779
      {
unknown's avatar
unknown committed
4780 4781 4782 4783 4784 4785
        if (!my_isdigit(charset_info, *p))
          die("Invalid argument to error: '%s' - "\
              "the errno may only consist of digits[0-9]",
              command->first_argument);
        p++;
      }
unknown's avatar
unknown committed
4786

unknown's avatar
unknown committed
4787 4788 4789
      /* Convert the sting to int */
      if (!str2int(start, 10, (long) INT_MIN, (long) INT_MAX, &val))
	die("Invalid argument to error: '%s'", command->first_argument);
unknown's avatar
unknown committed
4790

unknown's avatar
unknown committed
4791 4792 4793
      to->code.errnum= (uint) val;
      to->type= ERR_ERRNO;
      DBUG_PRINT("info", ("ERR_ERRNO: %d", to->code.errnum));
unknown's avatar
unknown committed
4794
    }
unknown's avatar
unknown committed
4795 4796
    to++;
    count++;
unknown's avatar
unknown committed
4797

unknown's avatar
unknown committed
4798 4799 4800
    if (count >= (sizeof(saved_expected_errors.err) /
                  sizeof(struct st_match_err)))
      die("Too many errorcodes specified");
4801

unknown's avatar
unknown committed
4802 4803
    /* Set pointer to the end of the last error code */
    p= end;
4804

unknown's avatar
unknown committed
4805 4806 4807
    /* Find next ',' */
    while (*p && *p != ',')
      p++;
4808

unknown's avatar
unknown committed
4809 4810
    if (*p)
      p++; /* Step past ',' */
4811

unknown's avatar
unknown committed
4812
  } while (*p);
4813

unknown's avatar
unknown committed
4814 4815
  command->last_argument= p;
  to->type= ERR_EMPTY;                        /* End of data */
unknown's avatar
unknown committed
4816

unknown's avatar
unknown committed
4817 4818 4819 4820
  DBUG_PRINT("info", ("Expected errors: %d", count));
  saved_expected_errors.count= count;
  DBUG_VOID_RETURN;
}
4821 4822


unknown's avatar
unknown committed
4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902
/*
  Get a string;  Return ptr to end of string
  Strings may be surrounded by " or '

  If string is a '$variable', return the value of the variable.
*/

char *get_string(char **to_ptr, char **from_ptr,
                 struct st_command *command)
{
  char c, sep;
  char *to= *to_ptr, *from= *from_ptr, *start=to;
  DBUG_ENTER("get_string");

  /* Find separator */
  if (*from == '"' || *from == '\'')
    sep= *from++;
  else
    sep=' ';				/* Separated with space */

  for ( ; (c=*from) ; from++)
  {
    if (c == '\\' && from[1])
    {					/* Escaped character */
      /* We can't translate \0 -> ASCII 0 as replace can't handle ASCII 0 */
      switch (*++from) {
      case 'n':
	*to++= '\n';
	break;
      case 't':
	*to++= '\t';
	break;
      case 'r':
	*to++ = '\r';
	break;
      case 'b':
	*to++ = '\b';
	break;
      case 'Z':				/* ^Z must be escaped on Win32 */
	*to++='\032';
	break;
      default:
	*to++ = *from;
	break;
      }
    }
    else if (c == sep)
    {
      if (c == ' ' || c != *++from)
	break;				/* Found end of string */
      *to++=c;				/* Copy duplicated separator */
    }
    else
      *to++=c;
  }
  if (*from != ' ' && *from)
    die("Wrong string argument in %s", command->query);

  while (my_isspace(charset_info,*from))	/* Point to next string */
    from++;

  *to =0;				/* End of string marker */
  *to_ptr= to+1;			/* Store pointer to end */
  *from_ptr= from;

  /* Check if this was a variable */
  if (*start == '$')
  {
    const char *end= to;
    VAR *var=var_get(start, &end, 0, 1);
    if (var && to == (char*) end+1)
    {
      DBUG_PRINT("info",("var: '%s' -> '%s'", start, var->str_val));
      DBUG_RETURN(var->str_val);	/* return found variable value */
    }
  }
  DBUG_RETURN(start);
}


4903
void set_reconnect(MYSQL* mysql, my_bool val)
unknown's avatar
unknown committed
4904
{
4905
  my_bool reconnect= val;
4906
  DBUG_ENTER("set_reconnect");
4907
  DBUG_PRINT("info", ("val: %d", (int) val));
unknown's avatar
unknown committed
4908
#if MYSQL_VERSION_ID < 50000
4909
  mysql->reconnect= reconnect;
unknown's avatar
unknown committed
4910 4911 4912
#else
  mysql_options(mysql, MYSQL_OPT_RECONNECT, (char *)&reconnect);
#endif
4913
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
4914 4915 4916
}


4917 4918 4919 4920 4921 4922 4923 4924 4925
/**
  Change the current connection to the given st_connection, and update
  $mysql_get_server_version and $CURRENT_CONNECTION accordingly.
*/
void set_current_connection(struct st_connection *con)
{
  cur_con= con;
  /* Update $mysql_get_server_version to that of current connection */
  var_set_int("$mysql_get_server_version",
4926
              mysql_get_server_version(con->mysql));
4927 4928 4929 4930 4931 4932
  /* Update $CURRENT_CONNECTION to the name of the current connection */
  var_set_string("$CURRENT_CONNECTION", con->name);
}


void select_connection_name(const char *name)
unknown's avatar
unknown committed
4933
{
4934
  DBUG_ENTER("select_connection_name");
unknown's avatar
unknown committed
4935
  DBUG_PRINT("enter",("name: '%s'", name));
4936
  st_connection *con= find_connection_by_name(name);
unknown's avatar
unknown committed
4937

4938
  if (!con)
unknown's avatar
unknown committed
4939
    die("connection '%s' not found in connection pool", name);
4940

4941
  set_current_connection(con);
4942

4943 4944 4945 4946 4947 4948 4949 4950 4951 4952
  /* Connection logging if enabled */
  if (!disable_connect_log && !disable_query_log)
  {
    DYNAMIC_STRING *ds= &ds_res;

    dynstr_append_mem(ds, "connection ", 11);
    replace_dynstr_append(ds, name);
    dynstr_append_mem(ds, ";\n", 2);
  }

4953
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
4954 4955 4956
}


4957
void select_connection(struct st_command *command)
unknown's avatar
unknown committed
4958 4959
{
  DBUG_ENTER("select_connection");
4960 4961 4962 4963 4964 4965
  static DYNAMIC_STRING ds_connection;
  const struct command_arg connection_args[] = {
    { "connection_name", ARG_STRING, TRUE, &ds_connection, "Name of the connection that we switch to." }
  };
  check_command_args(command, command->first_argument, connection_args,
                     sizeof(connection_args)/sizeof(struct command_arg),
4966
                     ' ');
unknown's avatar
unknown committed
4967

4968 4969 4970 4971
  DBUG_PRINT("info", ("changing connection: %s", ds_connection.str));
  select_connection_name(ds_connection.str);
  dynstr_free(&ds_connection);
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
4972 4973 4974 4975 4976
}


void do_close_connection(struct st_command *command)
{
4977
  DBUG_ENTER("do_close_connection");
unknown's avatar
unknown committed
4978

4979 4980 4981 4982 4983 4984 4985 4986 4987 4988
  struct st_connection *con;
  static DYNAMIC_STRING ds_connection;
  const struct command_arg close_connection_args[] = {
    { "connection_name", ARG_STRING, TRUE, &ds_connection,
      "Name of the connection to close." }
  };
  check_command_args(command, command->first_argument,
                     close_connection_args,
                     sizeof(close_connection_args)/sizeof(struct command_arg),
                     ' ');
unknown's avatar
unknown committed
4989

4990
  DBUG_PRINT("enter",("connection name: '%s'", ds_connection.str));
unknown's avatar
unknown committed
4991

4992 4993
  if (!(con= find_connection_by_name(ds_connection.str)))
    die("connection '%s' not found in connection pool", ds_connection.str);
4994 4995 4996 4997

  DBUG_PRINT("info", ("Closing connection %s", con->name));
#ifndef EMBEDDED_LIBRARY
  if (command->type == Q_DIRTY_CLOSE)
unknown's avatar
unknown committed
4998
  {
4999
    if (con->mysql->net.vio)
unknown's avatar
unknown committed
5000
    {
5001 5002
      vio_delete(con->mysql->net.vio);
      con->mysql->net.vio = 0;
5003 5004
    }
  }
5005 5006 5007 5008 5009 5010 5011 5012
#else
  /*
    As query could be still executed in a separate theread
    we need to check if the query's thread was finished and probably wait
    (embedded-server specific)
  */
  wait_query_thread_end(con);
#endif /*EMBEDDED_LIBRARY*/
5013 5014 5015
  if (con->stmt)
    mysql_stmt_close(con->stmt);
  con->stmt= 0;
5016

5017 5018
  mysql_close(con->mysql);
  con->mysql= 0;
5019
  free_embedded_data(con);
unknown's avatar
unknown committed
5020

5021 5022 5023
  if (con->util_mysql)
    mysql_close(con->util_mysql);
  con->util_mysql= 0;
5024 5025
  con->pending= FALSE;
  
5026
  my_free(con->name, MYF(MY_ALLOW_ZERO_PTR));
5027 5028 5029 5030 5031 5032 5033 5034

  /*
    When the connection is closed set name to "-closed_connection-"
    to make it possible to reuse the connection name.
  */
  if (!(con->name = my_strdup("-closed_connection-", MYF(MY_WME))))
    die("Out of memory");

5035 5036 5037 5038 5039 5040 5041
  if (con == cur_con)
  {
    /* Current connection was closed */
    var_set_int("$mysql_get_server_version", 0xFFFFFFFF);
    var_set_string("$CURRENT_CONNECTION", con->name);
  }

5042 5043 5044 5045 5046 5047 5048 5049 5050 5051
  /* Connection logging if enabled */
  if (!disable_connect_log && !disable_query_log)
  {
    DYNAMIC_STRING *ds= &ds_res;

    dynstr_append_mem(ds, "disconnect ", 11);
    replace_dynstr_append(ds, ds_connection.str);
    dynstr_append_mem(ds, ";\n", 2);
  }

5052
  dynstr_free(&ds_connection);
5053
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088
}


/*
  Connect to a server doing several retries if needed.

  SYNOPSIS
  safe_connect()
  con               - connection structure to be used
  host, user, pass, - connection parameters
  db, port, sock

  NOTE

  Sometimes in a test the client starts before
  the server - to solve the problem, we try again
  after some sleep if connection fails the first
  time

  This function will try to connect to the given server
  "opt_max_connect_retries" times and sleep "connection_retry_sleep"
  seconds between attempts before finally giving up.
  This helps in situation when the client starts
  before the server (which happens sometimes).
  It will only ignore connection errors during these retries.

*/

void safe_connect(MYSQL* mysql, const char *name, const char *host,
                  const char *user, const char *pass, const char *db,
                  int port, const char *sock)
{
  int failed_attempts= 0;

  DBUG_ENTER("safe_connect");
5089 5090 5091 5092

  verbose_msg("Connecting to server %s:%d (socket %s) as '%s'"
              ", connection '%s', attempt %d ...", 
              host, port, sock, user, name, failed_attempts);
unknown's avatar
unknown committed
5093 5094 5095 5096 5097 5098 5099
  while(!mysql_real_connect(mysql, host,user, pass, db, port, sock,
                            CLIENT_MULTI_STATEMENTS | CLIENT_REMEMBER_OPTIONS))
  {
    /*
      Connect failed

      Only allow retry if this was an error indicating the server
5100 5101
      could not be contacted. Error code differs depending
      on protocol/connection type
unknown's avatar
unknown committed
5102 5103
    */

5104 5105
    if ((mysql_errno(mysql) == CR_CONN_HOST_ERROR ||
         mysql_errno(mysql) == CR_CONNECTION_ERROR) &&
unknown's avatar
unknown committed
5106
        failed_attempts < opt_max_connect_retries)
5107 5108 5109 5110
    {
      verbose_msg("Connect attempt %d/%d failed: %d: %s", failed_attempts,
                  opt_max_connect_retries, mysql_errno(mysql),
                  mysql_error(mysql));
unknown's avatar
unknown committed
5111
      my_sleep(connection_retry_sleep);
5112
    }
unknown's avatar
unknown committed
5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123
    else
    {
      if (failed_attempts > 0)
        die("Could not open connection '%s' after %d attempts: %d %s", name,
            failed_attempts, mysql_errno(mysql), mysql_error(mysql));
      else
        die("Could not open connection '%s': %d %s", name,
            mysql_errno(mysql), mysql_error(mysql));
    }
    failed_attempts++;
  }
5124
  verbose_msg("... Connected.");
unknown's avatar
unknown committed
5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157
  DBUG_VOID_RETURN;
}


/*
  Connect to a server and handle connection errors in case they occur.

  SYNOPSIS
  connect_n_handle_errors()
  q                 - context of connect "query" (command)
  con               - connection structure to be used
  host, user, pass, - connection parameters
  db, port, sock

  DESCRIPTION
  This function will try to establish a connection to server and handle
  possible errors in the same manner as if "connect" was usual SQL-statement
  (If error is expected it will ignore it once it occurs and log the
  "statement" to the query log).
  Unlike safe_connect() it won't do several attempts.

  RETURN VALUES
  1 - Connected
  0 - Not connected

*/

int connect_n_handle_errors(struct st_command *command,
                            MYSQL* con, const char* host,
                            const char* user, const char* pass,
                            const char* db, int port, const char* sock)
{
  DYNAMIC_STRING *ds;
5158
  int failed_attempts= 0;
unknown's avatar
unknown committed
5159 5160 5161 5162

  ds= &ds_res;

  /* Only log if an error is expected */
5163
  if (command->expected_errors.count > 0 &&
unknown's avatar
unknown committed
5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186
      !disable_query_log)
  {
    /*
      Log the connect to result log
    */
    dynstr_append_mem(ds, "connect(", 8);
    replace_dynstr_append(ds, host);
    dynstr_append_mem(ds, ",", 1);
    replace_dynstr_append(ds, user);
    dynstr_append_mem(ds, ",", 1);
    replace_dynstr_append(ds, pass);
    dynstr_append_mem(ds, ",", 1);
    if (db)
      replace_dynstr_append(ds, db);
    dynstr_append_mem(ds, ",", 1);
    replace_dynstr_append_uint(ds, port);
    dynstr_append_mem(ds, ",", 1);
    if (sock)
      replace_dynstr_append(ds, sock);
    dynstr_append_mem(ds, ")", 1);
    dynstr_append_mem(ds, delimiter, delimiter_length);
    dynstr_append_mem(ds, "\n", 1);
  }
5187 5188 5189 5190 5191 5192 5193
  /* Simlified logging if enabled */
  if (!disable_connect_log && !disable_query_log)
  {
    replace_dynstr_append(ds, command->query);
    dynstr_append_mem(ds, ";\n", 2);
  }
  
5194
  while (!mysql_real_connect(con, host, user, pass, db, port, sock ? sock: 0,
unknown's avatar
unknown committed
5195 5196
                          CLIENT_MULTI_STATEMENTS))
  {
5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228
    /*
      If we have used up all our connections check whether this
      is expected (by --error). If so, handle the error right away.
      Otherwise, give it some extra time to rule out race-conditions.
      If extra-time doesn't help, we have an unexpected error and
      must abort -- just proceeding to handle_error() when second
      and third chances are used up will handle that for us.

      There are various user-limits of which only max_user_connections
      and max_connections_per_hour apply at connect time. For the
      the second to create a race in our logic, we'd need a limits
      test that runs without a FLUSH for longer than an hour, so we'll
      stay clear of trying to work out which exact user-limit was
      exceeded.
    */

    if (((mysql_errno(con) == ER_TOO_MANY_USER_CONNECTIONS) ||
         (mysql_errno(con) == ER_USER_LIMIT_REACHED)) &&
        (failed_attempts++ < opt_max_connect_retries))
    {
      int i;

      i= match_expected_error(command, mysql_errno(con), mysql_sqlstate(con));

      if (i >= 0)
        goto do_handle_error;                 /* expected error, handle */

      my_sleep(connection_retry_sleep);       /* unexpected error, wait */
      continue;                               /* and give it 1 more chance */
    }

do_handle_error:
5229
    var_set_errno(mysql_errno(con));
unknown's avatar
unknown committed
5230 5231 5232 5233 5234
    handle_error(command, mysql_errno(con), mysql_error(con),
		 mysql_sqlstate(con), ds);
    return 0; /* Not connected */
  }

5235
  var_set_errno(0);
unknown's avatar
unknown committed
5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262
  handle_no_error(command);
  return 1; /* Connected */
}


/*
  Open a new connection to MySQL Server with the parameters
  specified. Make the new connection the current connection.

  SYNOPSIS
  do_connect()
  q	       called command

  DESCRIPTION
  connect(<name>,<host>,<user>,[<pass>,[<db>,[<port>,<sock>[<opts>]]]]);
  connect <name>,<host>,<user>,[<pass>,[<db>,[<port>,<sock>[<opts>]]]];

  <name> - name of the new connection
  <host> - hostname of server
  <user> - user to connect as
  <pass> - password used when connecting
  <db>   - initial db when connected
  <port> - server port
  <sock> - server socket
  <opts> - options to use for the connection
   * SSL - use SSL if available
   * COMPRESS - use compression if available
5263 5264
   * SHM - use shared memory if available
   * PIPE - use named pipe if available
unknown's avatar
unknown committed
5265 5266 5267 5268 5269

*/

void do_connect(struct st_command *command)
{
5270
  int con_port= opt_port;
unknown's avatar
unknown committed
5271
  char *con_options;
5272
  my_bool con_ssl= 0, con_compress= 0;
5273 5274
  my_bool con_pipe= 0;
  my_bool con_shm __attribute__ ((unused))= 0;
5275
  struct st_connection* con_slot;
unknown's avatar
unknown committed
5276

5277 5278 5279 5280 5281 5282 5283 5284
  static DYNAMIC_STRING ds_connection_name;
  static DYNAMIC_STRING ds_host;
  static DYNAMIC_STRING ds_user;
  static DYNAMIC_STRING ds_password;
  static DYNAMIC_STRING ds_database;
  static DYNAMIC_STRING ds_port;
  static DYNAMIC_STRING ds_sock;
  static DYNAMIC_STRING ds_options;
5285 5286 5287
#ifdef HAVE_SMEM
  static DYNAMIC_STRING ds_shm;
#endif
unknown's avatar
unknown committed
5288
  const struct command_arg connect_args[] = {
unknown's avatar
unknown committed
5289 5290 5291 5292 5293 5294 5295 5296
    { "connection name", ARG_STRING, TRUE, &ds_connection_name, "Name of the connection" },
    { "host", ARG_STRING, TRUE, &ds_host, "Host to connect to" },
    { "user", ARG_STRING, FALSE, &ds_user, "User to connect as" },
    { "passsword", ARG_STRING, FALSE, &ds_password, "Password used when connecting" },
    { "database", ARG_STRING, FALSE, &ds_database, "Database to select after connect" },
    { "port", ARG_STRING, FALSE, &ds_port, "Port to connect to" },
    { "socket", ARG_STRING, FALSE, &ds_sock, "Socket to connect with" },
    { "options", ARG_STRING, FALSE, &ds_options, "Options to use while connecting" }
unknown's avatar
unknown committed
5297 5298 5299 5300 5301
  };

  DBUG_ENTER("do_connect");
  DBUG_PRINT("enter",("connect: %s", command->first_argument));

5302
  strip_parentheses(command);
unknown's avatar
unknown committed
5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314
  check_command_args(command, command->first_argument, connect_args,
                     sizeof(connect_args)/sizeof(struct command_arg),
                     ',');

  /* Port */
  if (ds_port.length)
  {
    con_port= atoi(ds_port.str);
    if (con_port == 0)
      die("Illegal argument for port: '%s'", ds_port.str);
  }

5315 5316 5317 5318 5319
#ifdef HAVE_SMEM
  /* Shared memory */
  init_dynamic_string(&ds_shm, ds_sock.str, 0, 0);
#endif

unknown's avatar
unknown committed
5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345
  /* Sock */
  if (ds_sock.length)
  {
    /*
      If the socket is specified just as a name without path
      append tmpdir in front
    */
    if (*ds_sock.str != FN_LIBCHAR)
    {
      char buff[FN_REFLEN];
      fn_format(buff, ds_sock.str, TMPDIR, "", 0);
      dynstr_set(&ds_sock, buff);
    }
  }
  else
  {
    /* No socket specified, use default */
    dynstr_set(&ds_sock, unix_sock);
  }
  DBUG_PRINT("info", ("socket: %s", ds_sock.str));


  /* Options */
  con_options= ds_options.str;
  while (*con_options)
  {
5346 5347
    size_t length;
    char *end;
5348 5349 5350 5351 5352
    /* Step past any spaces in beginning of option*/
    while (*con_options && my_isspace(charset_info, *con_options))
     con_options++;
    /* Find end of this option */
    end= con_options;
unknown's avatar
unknown committed
5353 5354
    while (*end && !my_isspace(charset_info, *end))
      end++;
5355 5356
    length= (size_t) (end - con_options);
    if (length == 3 && !strncmp(con_options, "SSL", 3))
unknown's avatar
unknown committed
5357
      con_ssl= 1;
5358
    else if (length == 8 && !strncmp(con_options, "COMPRESS", 8))
unknown's avatar
unknown committed
5359
      con_compress= 1;
5360
    else if (length == 4 && !strncmp(con_options, "PIPE", 4))
5361
      con_pipe= 1;
5362
    else if (length == 3 && !strncmp(con_options, "SHM", 3))
5363
      con_shm= 1;
unknown's avatar
unknown committed
5364
    else
unknown's avatar
unknown committed
5365 5366
      die("Illegal option to connect: %.*s", 
          (int) (end - con_options), con_options);
unknown's avatar
unknown committed
5367 5368 5369 5370 5371 5372
    /* Process next option */
    con_options= end;
  }

  if (find_connection_by_name(ds_connection_name.str))
    die("Connection %s already exists", ds_connection_name.str);
5373 5374 5375 5376
    
  if (next_con != connections_end)
    con_slot= next_con;
  else
5377
  {
5378
    if (!(con_slot= find_connection_by_name("-closed_connection-")))
5379
      die("Connection limit exhausted, you can have max %d connections",
5380
          opt_max_connections);
5381 5382
    my_free(con_slot->name, MYF(0));
    con_slot->name= 0;
5383
  }
unknown's avatar
unknown committed
5384

5385 5386
#ifdef EMBEDDED_LIBRARY
  con_slot->query_done= 1;
5387
  con_slot->has_thread= FALSE;
5388
#endif
5389
  if (!(con_slot->mysql= mysql_init(0)))
unknown's avatar
unknown committed
5390 5391
    die("Failed on mysql_init()");
  if (opt_compress || con_compress)
5392 5393 5394
    mysql_options(con_slot->mysql, MYSQL_OPT_COMPRESS, NullS);
  mysql_options(con_slot->mysql, MYSQL_OPT_LOCAL_INFILE, 0);
  mysql_options(con_slot->mysql, MYSQL_SET_CHARSET_NAME,
5395 5396
                charset_info->csname);
  if (opt_charsets_dir)
5397
    mysql_options(con_slot->mysql, MYSQL_SET_CHARSET_DIR,
5398
                  opt_charsets_dir);
5399
  if (opt_connect_timeout >= 0)
5400
    mysql_options(con_slot->mysql, MYSQL_OPT_CONNECT_TIMEOUT,
5401
                  &opt_connect_timeout);
unknown's avatar
unknown committed
5402 5403

#ifdef HAVE_OPENSSL
5404 5405 5406 5407 5408
  if (opt_use_ssl)
    con_ssl= 1;
#endif

  if (con_ssl)
unknown's avatar
unknown committed
5409
  {
5410
#ifdef HAVE_OPENSSL
5411
    mysql_ssl_set(con_slot->mysql, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
unknown's avatar
unknown committed
5412 5413 5414
		  opt_ssl_capath, opt_ssl_cipher);
#if MYSQL_VERSION_ID >= 50000
    /* Turn on ssl_verify_server_cert only if host is "localhost" */
5415
    opt_ssl_verify_server_cert= !strcmp(ds_host.str, "localhost");
5416
    mysql_options(con_slot->mysql, MYSQL_OPT_SSL_VERIFY_SERVER_CERT,
unknown's avatar
unknown committed
5417 5418 5419
                  &opt_ssl_verify_server_cert);
#endif
#endif
5420
  }
unknown's avatar
unknown committed
5421

5422 5423
  if (con_pipe)
  {
5424
#ifdef __WIN__
5425
    opt_protocol= MYSQL_PROTOCOL_PIPE;
5426
#endif
5427
  }
5428

5429
  if (opt_protocol)
5430
    mysql_options(con_slot->mysql, MYSQL_OPT_PROTOCOL, (char*) &opt_protocol);
5431

5432 5433 5434 5435 5436 5437
#ifdef HAVE_SMEM
  if (con_shm)
  {
    uint protocol= MYSQL_PROTOCOL_MEMORY;
    if (!ds_shm.length)
      die("Missing shared memory base name");
5438 5439
    mysql_options(con_slot->mysql, MYSQL_SHARED_MEMORY_BASE_NAME, ds_shm.str);
    mysql_options(con_slot->mysql, MYSQL_OPT_PROTOCOL, &protocol);
5440
  }
5441
  else if (shared_memory_base_name)
5442
  {
5443
    mysql_options(con_slot->mysql, MYSQL_SHARED_MEMORY_BASE_NAME,
5444
                  shared_memory_base_name);
5445 5446 5447
  }
#endif

unknown's avatar
unknown committed
5448 5449
  /* Use default db name */
  if (ds_database.length == 0)
5450
    dynstr_set(&ds_database, opt_db);
unknown's avatar
unknown committed
5451 5452 5453 5454 5455

  /* Special database to allow one to connect without a database name */
  if (ds_database.length && !strcmp(ds_database.str,"*NO-ONE*"))
    dynstr_set(&ds_database, "");

5456
  if (connect_n_handle_errors(command, con_slot->mysql,
unknown's avatar
unknown committed
5457 5458 5459 5460 5461 5462
                              ds_host.str,ds_user.str,
                              ds_password.str, ds_database.str,
                              con_port, ds_sock.str))
  {
    DBUG_PRINT("info", ("Inserting connection %s in connection pool",
                        ds_connection_name.str));
5463
    if (!(con_slot->name= my_strdup(ds_connection_name.str, MYF(MY_WME))))
unknown's avatar
unknown committed
5464
      die("Out of memory");
5465
    con_slot->name_len= strlen(con_slot->name);
5466 5467
    set_current_connection(con_slot);

5468 5469
    if (con_slot == next_con)
      next_con++; /* if we used the next_con slot, advance the pointer */
unknown's avatar
unknown committed
5470 5471 5472 5473 5474 5475 5476 5477 5478 5479
  }

  dynstr_free(&ds_connection_name);
  dynstr_free(&ds_host);
  dynstr_free(&ds_user);
  dynstr_free(&ds_password);
  dynstr_free(&ds_database);
  dynstr_free(&ds_port);
  dynstr_free(&ds_sock);
  dynstr_free(&ds_options);
5480 5481 5482
#ifdef HAVE_SMEM
  dynstr_free(&ds_shm);
#endif
unknown's avatar
unknown committed
5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505
  DBUG_VOID_RETURN;
}


int do_done(struct st_command *command)
{
  /* Check if empty block stack */
  if (cur_block == block_stack)
  {
    if (*command->query != '}')
      die("Stray 'end' command - end of block before beginning");
    die("Stray '}' - end of block before beginning");
  }

  /* Test if inner block has been executed */
  if (cur_block->ok && cur_block->cmd == cmd_while)
  {
    /* Pop block from stack, re-execute outer block */
    cur_block--;
    parser.current_line = cur_block->line;
  }
  else
  {
5506 5507 5508 5509 5510 5511
    if (*cur_block->delim) 
    {
      /* Restore "old" delimiter after false if block */
      strcpy (delimiter, cur_block->delim);
      delimiter_length= strlen(delimiter);
    }
unknown's avatar
unknown committed
5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569
    /* Pop block from stack, goto next line */
    cur_block--;
    parser.current_line++;
  }
  return 0;
}


/*
  Process start of a "if" or "while" statement

  SYNOPSIS
  do_block()
  cmd        Type of block
  q	       called command

  DESCRIPTION
  if ([!]<expr>)
  {
  <block statements>
  }

  while ([!]<expr>)
  {
  <block statements>
  }

  Evaluates the <expr> and if it evaluates to
  greater than zero executes the following code block.
  A '!' can be used before the <expr> to indicate it should
  be executed if it evaluates to zero.

*/

void do_block(enum block_cmd cmd, struct st_command* command)
{
  char *p= command->first_argument;
  const char *expr_start, *expr_end;
  VAR v;
  const char *cmd_name= (cmd == cmd_while ? "while" : "if");
  my_bool not_expr= FALSE;
  DBUG_ENTER("do_block");
  DBUG_PRINT("enter", ("%s", cmd_name));

  /* Check stack overflow */
  if (cur_block == block_stack_end)
    die("Nesting too deeply");

  /* Set way to find outer block again, increase line counter */
  cur_block->line= parser.current_line++;

  /* If this block is ignored */
  if (!cur_block->ok)
  {
    /* Inner block should be ignored too */
    cur_block++;
    cur_block->cmd= cmd;
    cur_block->ok= FALSE;
5570
    cur_block->delim[0]= '\0';
unknown's avatar
unknown committed
5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582
    DBUG_VOID_RETURN;
  }

  /* Parse and evaluate test expression */
  expr_start= strchr(p, '(');
  if (!expr_start++)
    die("missing '(' in %s", cmd_name);

  /* Check for !<expr> */
  if (*expr_start == '!')
  {
    not_expr= TRUE;
5583 5584 5585
    expr_start++; /* Step past the '!', then any whitespace */
    while (*expr_start && my_isspace(charset_info, *expr_start))
      expr_start++;
unknown's avatar
unknown committed
5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603
  }
  /* Find ending ')' */
  expr_end= strrchr(expr_start, ')');
  if (!expr_end)
    die("missing ')' in %s", cmd_name);
  p= (char*)expr_end+1;

  while (*p && my_isspace(charset_info, *p))
    p++;
  if (*p && *p != '{')
    die("Missing '{' after %s. Found \"%s\"", cmd_name, p);

  var_init(&v,0,0,0,0);
  eval_expr(&v, expr_start, &expr_end);

  /* Define inner block */
  cur_block++;
  cur_block->cmd= cmd;
5604 5605 5606 5607 5608 5609 5610 5611 5612 5613
  if (v.int_val)
  {
    cur_block->ok= TRUE;
  } else
  /* Any non-empty string which does not begin with 0 is also TRUE */
  {
    p= v.str_val;
    /* First skip any leading white space or unary -+ */
    while (*p && ((my_isspace(charset_info, *p) || *p == '-' || *p == '+')))
      p++;
unknown's avatar
unknown committed
5614

5615 5616 5617
    cur_block->ok= (*p && *p != '0') ? TRUE : FALSE;
  }
  
unknown's avatar
unknown committed
5618 5619 5620
  if (not_expr)
    cur_block->ok = !cur_block->ok;

5621 5622 5623 5624 5625 5626 5627 5628 5629
  if (cur_block->ok) 
  {
    cur_block->delim[0]= '\0';
  } else
  {
    /* Remember "old" delimiter if entering a false if block */
    strcpy (cur_block->delim, delimiter);
  }
  
unknown's avatar
unknown committed
5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713
  DBUG_PRINT("info", ("OK: %d", cur_block->ok));

  var_free(&v);
  DBUG_VOID_RETURN;
}


void do_delimiter(struct st_command* command)
{
  char* p= command->first_argument;
  DBUG_ENTER("do_delimiter");
  DBUG_PRINT("enter", ("first_argument: %s", command->first_argument));

  while (*p && my_isspace(charset_info, *p))
    p++;

  if (!(*p))
    die("Can't set empty delimiter");

  strmake(delimiter, p, sizeof(delimiter) - 1);
  delimiter_length= strlen(delimiter);

  DBUG_PRINT("exit", ("delimiter: %s", delimiter));
  command->last_argument= p + delimiter_length;
  DBUG_VOID_RETURN;
}


my_bool match_delimiter(int c, const char *delim, uint length)
{
  uint i;
  char tmp[MAX_DELIMITER_LENGTH];

  if (c != *delim)
    return 0;

  for (i= 1; i < length &&
	 (c= my_getc(cur_file->file)) == *(delim + i);
       i++)
    tmp[i]= c;

  if (i == length)
    return 1;					/* Found delimiter */

  /* didn't find delimiter, push back things that we read */
  my_ungetc(c);
  while (i > 1)
    my_ungetc(tmp[--i]);
  return 0;
}


my_bool end_of_query(int c)
{
  return match_delimiter(c, delimiter, delimiter_length);
}


/*
  Read one "line" from the file

  SYNOPSIS
  read_line
  buf     buffer for the read line
  size    size of the buffer i.e max size to read

  DESCRIPTION
  This function actually reads several lines and adds them to the
  buffer buf. It continues to read until it finds what it believes
  is a complete query.

  Normally that means it will read lines until it reaches the
  "delimiter" that marks end of query. Default delimiter is ';'
  The function should be smart enough not to detect delimiter's
  found inside strings surrounded with '"' and '\'' escaped strings.

  If the first line in a query starts with '#' or '-' this line is treated
  as a comment. A comment is always terminated when end of line '\n' is
  reached.

*/

int read_line(char *buf, int size)
{
5714
  char c, UNINIT_VAR(last_quote);
unknown's avatar
unknown committed
5715 5716
  char *p= buf, *buf_end= buf + size - 1;
  int skip_char= 0;
5717 5718
  my_bool have_slash= FALSE;
  
unknown's avatar
unknown committed
5719 5720 5721 5722 5723
  enum {R_NORMAL, R_Q, R_SLASH_IN_Q,
        R_COMMENT, R_LINE_START} state= R_LINE_START;
  DBUG_ENTER("read_line");

  start_lineno= cur_file->lineno;
5724
  DBUG_PRINT("info", ("Starting to read at lineno: %d", start_lineno));
unknown's avatar
unknown committed
5725 5726 5727 5728 5729 5730 5731 5732 5733
  for (; p < buf_end ;)
  {
    skip_char= 0;
    c= my_getc(cur_file->file);
    if (feof(cur_file->file))
    {
  found_eof:
      if (cur_file->file != stdin)
      {
5734
	fclose(cur_file->file);
unknown's avatar
unknown committed
5735 5736
        cur_file->file= 0;
      }
5737
      my_free((uchar*) cur_file->file_name, MYF(MY_ALLOW_ZERO_PTR));
unknown's avatar
unknown committed
5738 5739 5740 5741 5742 5743 5744 5745 5746 5747
      cur_file->file_name= 0;
      if (cur_file == file_stack)
      {
        /* We're back at the first file, check if
           all { have matching }
        */
        if (cur_block != block_stack)
          die("Missing end of block");

        *p= 0;
5748
        DBUG_PRINT("info", ("end of file at line %d", cur_file->lineno));
unknown's avatar
unknown committed
5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770
        DBUG_RETURN(1);
      }
      cur_file--;
      start_lineno= cur_file->lineno;
      continue;
    }

    if (c == '\n')
    {
      /* Line counting is independent of state */
      cur_file->lineno++;

      /* Convert cr/lf to lf */
      if (p != buf && *(p-1) == '\r')
        p--;
    }

    switch(state) {
    case R_NORMAL:
      if (end_of_query(c))
      {
	*p= 0;
5771 5772
        DBUG_PRINT("exit", ("Found delimiter '%s' at line %d",
                            delimiter, cur_file->lineno));
unknown's avatar
unknown committed
5773 5774 5775
	DBUG_RETURN(0);
      }
      else if ((c == '{' &&
5776 5777 5778 5779
                (!my_strnncoll_simple(charset_info, (const uchar*) "while", 5,
                                      (uchar*) buf, min(5, p - buf), 0) ||
                 !my_strnncoll_simple(charset_info, (const uchar*) "if", 2,
                                      (uchar*) buf, min(2, p - buf), 0))))
unknown's avatar
unknown committed
5780 5781 5782 5783
      {
        /* Only if and while commands can be terminated by { */
        *p++= c;
	*p= 0;
5784 5785
        DBUG_PRINT("exit", ("Found '{' indicating start of block at line %d",
                            cur_file->lineno));
unknown's avatar
unknown committed
5786 5787 5788 5789
	DBUG_RETURN(0);
      }
      else if (c == '\'' || c == '"' || c == '`')
      {
5790 5791 5792 5793 5794
        if (! have_slash) 
        {
	  last_quote= c;
	  state= R_Q;
	}
unknown's avatar
unknown committed
5795
      }
5796
      have_slash= (c == '\\');
unknown's avatar
unknown committed
5797 5798 5799 5800 5801 5802 5803
      break;

    case R_COMMENT:
      if (c == '\n')
      {
        /* Comments are terminated by newline */
	*p= 0;
5804 5805
        DBUG_PRINT("exit", ("Found newline in comment at line: %d",
                            cur_file->lineno));
unknown's avatar
unknown committed
5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819
	DBUG_RETURN(0);
      }
      break;

    case R_LINE_START:
      if (c == '#' || c == '-')
      {
        /* A # or - in the first position of the line - this is a comment */
	state = R_COMMENT;
      }
      else if (my_isspace(charset_info, c))
      {
        /* Skip all space at begining of line */
	if (c == '\n')
5820 5821 5822 5823 5824 5825
        {
          /* Query hasn't started yet */
	  start_lineno= cur_file->lineno;
          DBUG_PRINT("info", ("Query hasn't started yet, start_lineno: %d",
                              start_lineno));
        }
unknown's avatar
unknown committed
5826 5827 5828 5829 5830
	skip_char= 1;
      }
      else if (end_of_query(c))
      {
	*p= 0;
5831 5832
        DBUG_PRINT("exit", ("Found delimiter '%s' at line: %d",
                            delimiter, cur_file->lineno));
unknown's avatar
unknown committed
5833 5834 5835 5836 5837 5838 5839
	DBUG_RETURN(0);
      }
      else if (c == '}')
      {
        /* A "}" need to be by itself in the begining of a line to terminate */
        *p++= c;
	*p= 0;
5840 5841
        DBUG_PRINT("exit", ("Found '}' in begining of a line at line: %d",
                            cur_file->lineno));
unknown's avatar
unknown committed
5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870
	DBUG_RETURN(0);
      }
      else if (c == '\'' || c == '"' || c == '`')
      {
        last_quote= c;
	state= R_Q;
      }
      else
	state= R_NORMAL;
      break;

    case R_Q:
      if (c == last_quote)
	state= R_NORMAL;
      else if (c == '\\')
	state= R_SLASH_IN_Q;
      break;

    case R_SLASH_IN_Q:
      state= R_Q;
      break;

    }

    if (!skip_char)
    {
      /* Could be a multibyte character */
      /* This code is based on the code in "sql_load.cc" */
#ifdef USE_MB
5871
      int charlen = my_mbcharlen(charset_info, (unsigned char) c);
unknown's avatar
unknown committed
5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882
      /* We give up if multibyte character is started but not */
      /* completed before we pass buf_end */
      if ((charlen > 1) && (p + charlen) <= buf_end)
      {
	int i;
	char* mb_start = p;

	*p++ = c;

	for (i= 1; i < charlen; i++)
	{
5883
	  c= my_getc(cur_file->file);
unknown's avatar
unknown committed
5884 5885 5886 5887 5888 5889 5890 5891
	  if (feof(cur_file->file))
	    goto found_eof;
	  *p++ = c;
	}
	if (! my_ismbchar(charset_info, mb_start, p))
	{
	  /* It was not a multiline char, push back the characters */
	  /* We leave first 'c', i.e. pretend it was a normal char */
5892
	  while (p-1 > mb_start)
unknown's avatar
unknown committed
5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920
	    my_ungetc(*--p);
	}
      }
      else
#endif
	*p++= c;
    }
  }
  die("The input buffer is too small for this query.x\n" \
      "check your query or increase MAX_QUERY and recompile");
  DBUG_RETURN(0);
}


/*
  Convert the read query to result format version 1

  That is: After newline, all spaces need to be skipped
  unless the previous char was a quote

  This is due to an old bug that has now been fixed, but the
  version 1 output format is preserved by using this function

*/

void convert_to_format_v1(char* query)
{
  int last_c_was_quote= 0;
5921
  char *p= query, *to= query;
unknown's avatar
unknown committed
5922 5923 5924 5925 5926 5927 5928
  char *end= strend(query);
  char last_c;

  while (p <= end)
  {
    if (*p == '\n' && !last_c_was_quote)
    {
5929
      *to++ = *p++; /* Save the newline */
unknown's avatar
unknown committed
5930 5931 5932 5933 5934 5935 5936 5937 5938 5939

      /* Skip any spaces on next line */
      while (*p && my_isspace(charset_info, *p))
        p++;

      last_c_was_quote= 0;
    }
    else if (*p == '\'' || *p == '"' || *p == '`')
    {
      last_c= *p;
5940
      *to++ = *p++;
unknown's avatar
unknown committed
5941 5942 5943

      /* Copy anything until the next quote of same type */
      while (*p && *p != last_c)
5944
        *to++ = *p++;
unknown's avatar
unknown committed
5945

5946
      *to++ = *p++;
unknown's avatar
unknown committed
5947 5948 5949 5950 5951

      last_c_was_quote= 1;
    }
    else
    {
5952
      *to++ = *p++;
unknown's avatar
unknown committed
5953 5954 5955 5956 5957 5958 5959 5960
      last_c_was_quote= 0;
    }
  }
}


/*
  Check for unexpected "junk" after the end of query
5961 5962
  This is normally caused by missing delimiters or when
  switching between different delimiters
unknown's avatar
unknown committed
5963 5964
*/

5965
void check_eol_junk_line(const char *line)
unknown's avatar
unknown committed
5966
{
5967 5968 5969
  const char *p= line;
  DBUG_ENTER("check_eol_junk_line");
  DBUG_PRINT("enter", ("line: %s", line));
unknown's avatar
unknown committed
5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984

  /* Check for extra delimiter */
  if (*p && !strncmp(p, delimiter, delimiter_length))
    die("Extra delimiter \"%s\" found", delimiter);

  /* Allow trailing # comment */
  if (*p && *p != '#')
  {
    if (*p == '\n')
      die("Missing delimiter");
    die("End of line junk detected: \"%s\"", p);
  }
  DBUG_VOID_RETURN;
}

5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014
void check_eol_junk(const char *eol)
{
  const char *p= eol;
  DBUG_ENTER("check_eol_junk");
  DBUG_PRINT("enter", ("eol: %s", eol));

  /* Skip past all spacing chars and comments */
  while (*p && (my_isspace(charset_info, *p) || *p == '#' || *p == '\n'))
  {
    /* Skip past comments started with # and ended with newline */
    if (*p && *p == '#')
    {
      p++;
      while (*p && *p != '\n')
        p++;
    }

    /* Check this line */
    if (*p && *p == '\n')
      check_eol_junk_line(p);

    if (*p)
      p++;
  }

  check_eol_junk_line(p);

  DBUG_VOID_RETURN;
}

unknown's avatar
unknown committed
6015

6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028
bool is_delimiter(const char* p)
{
  uint match= 0;
  char* delim= delimiter;
  while (*p && *p == *delim++)
  {
    match++;
    p++;
  }

  return (match == delimiter_length);
}

unknown's avatar
unknown committed
6029 6030 6031 6032 6033

/*
  Create a command from a set of lines

  SYNOPSIS
6034 6035
    read_command()
    command_ptr pointer where to return the new query
unknown's avatar
unknown committed
6036 6037

  DESCRIPTION
6038 6039
    Converts lines returned by read_line into a command, this involves
    parsing the first word in the read line to find the command type.
unknown's avatar
unknown committed
6040 6041 6042 6043 6044 6045 6046

  A -- comment may contain a valid query as the first word after the
  comment start. Thus it's always checked to see if that is the case.
  The advantage with this approach is to be able to execute commands
  terminated by new line '\n' regardless how many "delimiter" it contain.
*/

6047
#define MAX_QUERY (256*1024*2) /* 256K -- a test in sp-big is >128K */
unknown's avatar
unknown committed
6048 6049 6050 6051 6052 6053 6054 6055 6056 6057
static char read_command_buf[MAX_QUERY];

int read_command(struct st_command** command_ptr)
{
  char *p= read_command_buf;
  struct st_command* command;
  DBUG_ENTER("read_command");

  if (parser.current_line < parser.read_lines)
  {
6058
    get_dynamic(&q_lines, (uchar*) command_ptr, parser.current_line) ;
unknown's avatar
unknown committed
6059 6060 6061
    DBUG_RETURN(0);
  }
  if (!(*command_ptr= command=
6062 6063
        (struct st_command*) my_malloc(sizeof(*command),
                                       MYF(MY_WME|MY_ZEROFILL))) ||
6064
      insert_dynamic(&q_lines, (uchar*) &command))
6065
    die("Out of memory");
unknown's avatar
unknown committed
6066
  command->type= Q_UNKNOWN;
6067

unknown's avatar
unknown committed
6068 6069
  read_command_buf[0]= 0;
  if (read_line(read_command_buf, sizeof(read_command_buf)))
unknown's avatar
unknown committed
6070
  {
unknown's avatar
unknown committed
6071
    check_eol_junk(read_command_buf);
unknown's avatar
unknown committed
6072
    DBUG_RETURN(1);
unknown's avatar
unknown committed
6073
  }
unknown's avatar
unknown committed
6074 6075 6076 6077

  convert_to_format_v1(read_command_buf);

  DBUG_PRINT("info", ("query: %s", read_command_buf));
6078 6079
  if (*p == '#')
  {
unknown's avatar
unknown committed
6080
    command->type= Q_COMMENT;
6081
  }
6082
  else if (p[0] == '-' && p[1] == '-')
6083
  {
unknown's avatar
unknown committed
6084
    command->type= Q_COMMENT_WITH_COMMAND;
6085
    p+= 2; /* Skip past -- */
6086
  }
unknown's avatar
unknown committed
6087

6088
  /* Skip leading spaces */
6089
  while (*p && my_isspace(charset_info, *p))
unknown's avatar
unknown committed
6090
    p++;
unknown's avatar
unknown committed
6091 6092

  if (!(command->query_buf= command->query= my_strdup(p, MYF(MY_WME))))
6093
    die("Out of memory");
6094

6095 6096 6097
  /*
    Calculate first word length(the command), terminated
    by 'space' , '(' or 'delimiter' */
6098
  p= command->query;
6099
  while (*p && !my_isspace(charset_info, *p) && *p != '(' && !is_delimiter(p))
6100
    p++;
unknown's avatar
unknown committed
6101
  command->first_word_len= (uint) (p - command->query);
6102 6103
  DBUG_PRINT("info", ("first_word: %.*s",
                      command->first_word_len, command->query));
6104 6105

  /* Skip spaces between command and first argument */
6106
  while (*p && my_isspace(charset_info, *p))
unknown's avatar
unknown committed
6107
    p++;
unknown's avatar
unknown committed
6108
  command->first_argument= p;
6109

unknown's avatar
unknown committed
6110 6111
  command->end= strend(command->query);
  command->query_len= (command->end - command->query);
6112
  parser.read_lines++;
unknown's avatar
unknown committed
6113
  DBUG_RETURN(0);
unknown's avatar
unknown committed
6114 6115
}

6116 6117 6118

static struct my_option my_long_options[] =
{
unknown's avatar
unknown committed
6119 6120
  {"help", '?', "Display this help and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG,
   0, 0, 0, 0, 0, 0},
6121 6122
  {"basedir", 'b', "Basedir for tests.", &opt_basedir,
   &opt_basedir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6123
  {"character-sets-dir", OPT_CHARSETS_DIR,
6124 6125
   "Directory for character set files.", &opt_charsets_dir,
   &opt_charsets_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6126
  {"compress", 'C', "Use the compressed server/client protocol.",
6127
   &opt_compress, &opt_compress, 0, GET_BOOL, NO_ARG, 0, 0, 0,
6128
   0, 0, 0},
unknown's avatar
unknown committed
6129
  {"cursor-protocol", OPT_CURSOR_PROTOCOL, "Use cursors for prepared statements.",
6130
   &cursor_protocol, &cursor_protocol, 0,
unknown's avatar
unknown committed
6131
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
6132
  {"database", 'D', "Database to use.", &opt_db, &opt_db, 0,
unknown's avatar
unknown committed
6133 6134 6135 6136 6137 6138 6139 6140
   GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
#ifdef DBUG_OFF
  {"debug", '#', "This is a non-debug version. Catch this and exit",
   0,0, 0, GET_DISABLED, OPT_ARG, 0, 0, 0, 0, 0, 0},
#else
  {"debug", '#', "Output debug log. Often this is 'd:t:o,filename'.",
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
#endif
unknown's avatar
unknown committed
6141
  {"debug-check", OPT_DEBUG_CHECK, "Check memory and open file usage at exit.",
6142
   &debug_check_flag, &debug_check_flag, 0,
6143 6144
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  {"debug-info", OPT_DEBUG_INFO, "Print some debug info at exit.",
6145
   &debug_info_flag, &debug_info_flag,
6146
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
6147 6148 6149
  {"global-subst", OPT_GLOBAL_SUBST, "argument should be 'X,Y' ;"
   " substitute string X with another Y accross the whole test's current"
   " result before comparing with expected result file",
Michael Widenius's avatar
Michael Widenius committed
6150
   &global_subst, &global_subst, 0,
6151
   GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6152
  {"host", 'h', "Connect to host.", &opt_host, &opt_host, 0,
6153
   GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6154 6155 6156 6157
  {"include", 'i', "Include SQL before each test case.", &opt_include,
   &opt_include, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  {"logdir", OPT_LOG_DIR, "Directory for log files", &opt_logdir,
   &opt_logdir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
unknown's avatar
unknown committed
6158
  {"mark-progress", OPT_MARK_PROGRESS,
Staale Smedseng's avatar
Staale Smedseng committed
6159
   "Write line number and elapsed time to <testname>.progress.",
6160
   &opt_mark_progress, &opt_mark_progress, 0,
unknown's avatar
unknown committed
6161 6162
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  {"max-connect-retries", OPT_MAX_CONNECT_RETRIES,
Staale Smedseng's avatar
Staale Smedseng committed
6163
   "Maximum number of attempts to connect to server.",
6164
   &opt_max_connect_retries, &opt_max_connect_retries, 0,
unknown's avatar
unknown committed
6165
   GET_INT, REQUIRED_ARG, 500, 1, 10000, 0, 0, 0},
6166 6167
  {"max-connections", OPT_MAX_CONNECTIONS,
   "Max number of open connections to server",
6168
   &opt_max_connections, &opt_max_connections, 0,
6169
   GET_INT, REQUIRED_ARG, DEFAULT_MAX_CONN, 8, 5120, 0, 0, 0},
6170 6171
  {"password", 'p', "Password to use when connecting to server.",
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
6172 6173
  {"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
   0, 0, 0, GET_STR,  REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6174 6175 6176 6177 6178 6179
  {"port", 'P', "Port number to use for connection or 0 for default to, in "
   "order of preference, my.cnf, $MYSQL_TCP_PORT, "
#if MYSQL_PORT_DEFAULT == 0
   "/etc/services, "
#endif
   "built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
6180
   &opt_port, &opt_port, 0, GET_INT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
Staale Smedseng's avatar
Staale Smedseng committed
6181 6182
  {"ps-protocol", OPT_PS_PROTOCOL, 
   "Use prepared-statement protocol for communication.",
6183
   &ps_protocol, &ps_protocol, 0,
6184
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
6185 6186
  {"quiet", 's', "Suppress all normal output.", &silent,
   &silent, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
6187 6188
  {"record", 'r', "Record output of test_file into result file.",
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
Staale Smedseng's avatar
Staale Smedseng committed
6189
  {"result-file", 'R', "Read/store result from/in this file.",
6190
   &result_file_name, &result_file_name, 0,
6191
   GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
unknown's avatar
unknown committed
6192
  {"server-arg", 'A', "Send option value to embedded server as a parameter.",
6193
   0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6194
  {"server-file", 'F', "Read embedded server arguments from file.",
6195
   0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6196 6197
#ifdef HAVE_SMEM
  {"shared-memory-base-name", OPT_SHARED_MEMORY_BASE_NAME,
6198 6199
   "Base name of shared memory.", &shared_memory_base_name, 
   &shared_memory_base_name, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 
6200 6201
   0, 0, 0},
#endif
6202
  {"silent", 's', "Suppress all normal output. Synonym for --quiet.",
6203
   &silent, &silent, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
6204
  {"skip-safemalloc", OPT_SKIP_SAFEMALLOC,
6205
   "Don't use the memory allocation checking.", 0, 0, 0, GET_NO_ARG, NO_ARG,
6206
   0, 0, 0, 0, 0, 0},
Staale Smedseng's avatar
Staale Smedseng committed
6207
  {"sleep", 'T', "Always sleep this many seconds on sleep commands.",
6208
   &opt_sleep, &opt_sleep, 0, GET_INT, REQUIRED_ARG, -1, -1, 0,
6209
   0, 0, 0},
Staale Smedseng's avatar
Staale Smedseng committed
6210
  {"socket", 'S', "The socket file to use for connection.",
6211
   &unix_sock, &unix_sock, 0, GET_STR, REQUIRED_ARG, 0, 0, 0,
6212
   0, 0, 0},
Staale Smedseng's avatar
Staale Smedseng committed
6213
  {"sp-protocol", OPT_SP_PROTOCOL, "Use stored procedures for select.",
6214
   &sp_protocol, &sp_protocol, 0,
unknown's avatar
unknown committed
6215
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
6216
#include "sslopt-longopts.h"
6217
  {"tail-lines", OPT_TAIL_LINES,
Staale Smedseng's avatar
Staale Smedseng committed
6218
   "Number of lines of the result to include in a failure report.",
6219
   &opt_tail_lines, &opt_tail_lines, 0,
6220
   GET_INT, REQUIRED_ARG, 0, 0, 10000, 0, 0, 0},
6221 6222
  {"test-file", 'x', "Read test from/in this file (default stdin).",
   0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6223 6224 6225
  {"connect-timeout", OPT_MY_CONNECT_TIMEOUT, "Client connection timeout",
   (uchar**) &opt_connect_timeout, (uchar**) &opt_connect_timeout, 0,
   GET_INT, REQUIRED_ARG, -1, -1, 0, 0, 0, 0},
Staale Smedseng's avatar
Staale Smedseng committed
6226
  {"timer-file", 'm', "File where the timing in microseconds is stored.",
unknown's avatar
unknown committed
6227
   0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6228
  {"tmpdir", 't', "Temporary directory where sockets are put.",
6229
   0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6230
  {"user", 'u', "User for login.", &opt_user, &opt_user, 0,
6231
   GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6232
  {"verbose", 'v', "Write more.", &verbose, &verbose, 0,
6233 6234 6235
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  {"version", 'V', "Output version information and exit.",
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
Staale Smedseng's avatar
Staale Smedseng committed
6236
  {"view-protocol", OPT_VIEW_PROTOCOL, "Use views for select.",
6237
   &view_protocol, &view_protocol, 0,
unknown's avatar
unknown committed
6238
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
6239 6240 6241 6242 6243 6244 6245
  {"plugin_dir", OPT_PLUGIN_DIR, "Directory for client-side plugins.",
   (uchar**) &opt_plugin_dir, (uchar**) &opt_plugin_dir, 0,
   GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  {"default_auth", OPT_PLUGIN_DIR,
    "Default authentication client-side plugin to use.",
   (uchar**) &opt_default_auth, (uchar**) &opt_default_auth, 0,
   GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
6246
  { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
unknown's avatar
unknown committed
6247 6248
};

unknown's avatar
unknown committed
6249 6250 6251

#include <help_start.h>

unknown's avatar
unknown committed
6252
void print_version(void)
unknown's avatar
unknown committed
6253 6254 6255 6256 6257
{
  printf("%s  Ver %s Distrib %s, for %s (%s)\n",my_progname,MTEST_VERSION,
	 MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
}

unknown's avatar
unknown committed
6258 6259 6260
void usage()
{
  print_version();
6261
  printf("MySQL AB, by Sasha, Matt, Monty & Jani and others\n");
unknown's avatar
unknown committed
6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295
  printf("This software comes with ABSOLUTELY NO WARRANTY\n\n");
  printf("Runs a test against the mysql server and compares output with a results file.\n\n");
  printf("Usage: %s [OPTIONS] [database] < test_file\n", my_progname);
  my_print_help(my_long_options);
  printf("  --no-defaults       Don't read default options from any options file.\n");
  my_print_variables(my_long_options);
}

#include <help_end.h>


/*
  Read arguments for embedded server and put them into
  embedded_server_args[]
*/

void read_embedded_server_arguments(const char *name)
{
  char argument[1024],buff[FN_REFLEN], *str=0;
  FILE *file;

  if (!test_if_hard_path(name))
  {
    strxmov(buff, opt_basedir, name, NullS);
    name=buff;
  }
  fn_format(buff, name, "", "", MY_UNPACK_FILENAME);

  if (!embedded_server_arg_count)
  {
    embedded_server_arg_count=1;
    embedded_server_args[0]= (char*) "";		/* Progname */
  }
  if (!(file=my_fopen(buff, O_RDONLY | FILE_BINARY, MYF(MY_WME))))
unknown's avatar
unknown committed
6296
    die("Failed to open file '%s'", buff);
unknown's avatar
unknown committed
6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315

  while (embedded_server_arg_count < MAX_EMBEDDED_SERVER_ARGS &&
	 (str=fgets(argument,sizeof(argument), file)))
  {
    *(strend(str)-1)=0;				/* Remove end newline */
    if (!(embedded_server_args[embedded_server_arg_count]=
	  (char*) my_strdup(str,MYF(MY_WME))))
    {
      my_fclose(file,MYF(0));
      die("Out of memory");

    }
    embedded_server_arg_count++;
  }
  my_fclose(file,MYF(0));
  if (str)
    die("Too many arguments in option file: %s",name);

  return;
unknown's avatar
unknown committed
6316 6317
}

6318 6319

static my_bool
6320
get_one_option(int optid, const struct my_option *opt,
6321 6322
	       char *argument)
{
6323
  switch(optid) {
6324
  case '#':
unknown's avatar
unknown committed
6325
#ifndef DBUG_OFF
6326
    DBUG_PUSH(argument ? argument : "d:t:S:i:O,/tmp/mysqltest.trace");
6327
    debug_check_flag= 1;
6328
    debug_info_flag= 1;
unknown's avatar
unknown committed
6329
#endif
6330 6331 6332 6333 6334
    break;
  case 'r':
    record = 1;
    break;
  case 'x':
unknown's avatar
unknown committed
6335 6336 6337
  {
    char buff[FN_REFLEN];
    if (!test_if_hard_path(argument))
6338
    {
unknown's avatar
unknown committed
6339 6340
      strxmov(buff, opt_basedir, argument, NullS);
      argument= buff;
6341
    }
unknown's avatar
unknown committed
6342 6343 6344
    fn_format(buff, argument, "", "", MY_UNPACK_FILENAME);
    DBUG_ASSERT(cur_file == file_stack && cur_file->file == 0);
    if (!(cur_file->file=
6345
          fopen(buff, "rb")))
6346
      die("Could not open '%s' for reading, errno: %d", buff, errno);
unknown's avatar
unknown committed
6347 6348 6349 6350
    cur_file->file_name= my_strdup(buff, MYF(MY_FAE));
    cur_file->lineno= 1;
    break;
  }
unknown's avatar
unknown committed
6351
  case 'm':
unknown's avatar
unknown committed
6352 6353 6354
  {
    static char buff[FN_REFLEN];
    if (!test_if_hard_path(argument))
unknown's avatar
unknown committed
6355
    {
unknown's avatar
unknown committed
6356 6357
      strxmov(buff, opt_basedir, argument, NullS);
      argument= buff;
unknown's avatar
unknown committed
6358
    }
unknown's avatar
unknown committed
6359 6360 6361 6362 6363
    fn_format(buff, argument, "", "", MY_UNPACK_FILENAME);
    timer_file= buff;
    unlink(timer_file);	     /* Ignore error, may not exist */
    break;
  }
6364
  case 'p':
6365 6366
    if (argument == disabled_my_option)
      argument= (char*) "";			// Don't require password
6367 6368
    if (argument)
    {
6369 6370
      my_free(opt_pass, MYF(MY_ALLOW_ZERO_PTR));
      opt_pass= my_strdup(argument, MYF(MY_FAE));
6371
      while (*argument) *argument++= 'x';		/* Destroy argument */
6372
      tty_password= 0;
6373 6374 6375 6376
    }
    else
      tty_password= 1;
    break;
unknown's avatar
unknown committed
6377
#include <sslopt-case.h>
6378 6379 6380 6381 6382 6383 6384 6385 6386
  case 't':
    strnmov(TMPDIR, argument, sizeof(TMPDIR));
    break;
  case 'A':
    if (!embedded_server_arg_count)
    {
      embedded_server_arg_count=1;
      embedded_server_args[0]= (char*) "";
    }
unknown's avatar
unknown committed
6387
    if (embedded_server_arg_count == MAX_EMBEDDED_SERVER_ARGS-1 ||
6388 6389
        !(embedded_server_args[embedded_server_arg_count++]=
          my_strdup(argument, MYF(MY_FAE))))
6390 6391 6392 6393
    {
      die("Can't use server argument");
    }
    break;
6394 6395 6396 6397 6398
  case OPT_LOG_DIR:
    /* Check that the file exists */
    if (access(opt_logdir, F_OK) != 0)
      die("The specified log directory does not exist: '%s'", opt_logdir);
    break;
6399
  case 'F':
unknown's avatar
unknown committed
6400
    read_embedded_server_arguments(argument);
6401
    break;
6402 6403 6404 6405 6406
  case OPT_SKIP_SAFEMALLOC:
#ifdef SAFEMALLOC
    sf_malloc_quick=1;
#endif
    break;
6407 6408 6409
  case 'V':
    print_version();
    exit(0);
6410
  case OPT_MYSQL_PROTOCOL:
6411
#ifndef EMBEDDED_LIBRARY
6412 6413
    opt_protocol= find_type_or_exit(argument, &sql_protocol_typelib,
                                    opt->name);
6414
#endif
6415
    break;
6416 6417
  case '?':
    usage();
6418
    exit(0);
6419 6420 6421 6422 6423
  }
  return 0;
}


unknown's avatar
unknown committed
6424 6425 6426
int parse_args(int argc, char **argv)
{
  load_defaults("my",load_default_groups,&argc,&argv);
6427
  default_argv= argv;
6428

6429
  if ((handle_options(&argc, &argv, my_long_options, get_one_option)))
unknown's avatar
unknown committed
6430
    exit(1);
unknown's avatar
unknown committed
6431 6432 6433 6434 6435 6436 6437

  if (argc > 1)
  {
    usage();
    exit(1);
  }
  if (argc == 1)
6438
    opt_db= *argv;
unknown's avatar
unknown committed
6439
  if (tty_password)
6440
    opt_pass= get_tty_password(NullS);          /* purify tested */
6441 6442 6443
  if (debug_info_flag)
    my_end_arg= MY_CHECK_ERROR | MY_GIVE_INFO;
  if (debug_check_flag)
6444
    my_end_arg|= MY_CHECK_ERROR;
unknown's avatar
unknown committed
6445

6446 6447 6448 6449 6450 6451 6452 6453 6454 6455
  if (global_subst != NULL)
  {
    char *comma= strstr(global_subst, ",");
    if (comma == NULL)
      die("wrong --global-subst, must be X,Y");
    memcpy(global_subst_from, global_subst, (comma-global_subst));
    global_subst_from[comma-global_subst]= 0;
    memcpy(global_subst_to, comma+1, strlen(comma));
  }

6456 6457 6458 6459 6460 6461 6462
  if (!record)
  {
    /* Check that the result file exists */
    if (result_file_name && access(result_file_name, F_OK) != 0)
      die("The specified result file '%s' does not exist", result_file_name);
  }

unknown's avatar
unknown committed
6463 6464 6465
  return 0;
}

unknown's avatar
unknown committed
6466 6467 6468 6469
/*
  Write the content of str into file

  SYNOPSIS
6470
  str_to_file2
unknown's avatar
unknown committed
6471 6472 6473
  fname - name of file to truncate/create and write to
  str - content to write to file
  size - size of content witten to file
6474
  append - append to file instead of overwriting old file
unknown's avatar
unknown committed
6475
*/
unknown's avatar
unknown committed
6476

6477
void str_to_file2(const char *fname, char *str, int size, my_bool append)
unknown's avatar
unknown committed
6478 6479
{
  int fd;
6480
  char buff[FN_REFLEN];
6481
  int flags= O_WRONLY | O_CREAT;
6482 6483 6484
  if (!test_if_hard_path(fname))
  {
    strxmov(buff, opt_basedir, fname, NullS);
unknown's avatar
unknown committed
6485
    fname= buff;
6486
  }
unknown's avatar
unknown committed
6487 6488
  fn_format(buff, fname, "", "", MY_UNPACK_FILENAME);

6489 6490 6491
  if (!append)
    flags|= O_TRUNC;
  if ((fd= my_open(buff, flags,
unknown's avatar
unknown committed
6492
                   MYF(MY_WME | MY_FFNF))) < 0)
6493
    die("Could not open '%s' for writing, errno: %d", buff, errno);
6494
  if (append && my_seek(fd, 0, SEEK_END, MYF(0)) == MY_FILEPOS_ERROR)
6495
    die("Could not find end of file '%s', errno: %d", buff, errno);
6496
  if (my_write(fd, (uchar*)str, size, MYF(MY_WME|MY_FNABP)))
6497
    die("write failed, errno: %d", errno);
unknown's avatar
unknown committed
6498 6499 6500
  my_close(fd, MYF(0));
}

6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515
/*
  Write the content of str into file

  SYNOPSIS
  str_to_file
  fname - name of file to truncate/create and write to
  str - content to write to file
  size - size of content witten to file
*/

void str_to_file(const char *fname, char *str, int size)
{
  str_to_file2(fname, str, size, FALSE);
}

unknown's avatar
unknown committed
6516 6517

void check_regerr(my_regex_t* r, int err)
6518
{
unknown's avatar
unknown committed
6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546
  char err_buf[1024];

  if (err)
  {
    my_regerror(err,r,err_buf,sizeof(err_buf));
    die("Regex error: %s\n", err_buf);
  }
}


#ifdef __WIN__

DYNAMIC_ARRAY patterns;

/*
  init_win_path_patterns

  DESCRIPTION
  Setup string patterns that will be used to detect filenames that
  needs to be converted from Win to Unix format

*/

void init_win_path_patterns()
{
  /* List of string patterns to match in order to find paths */
  const char* paths[] = { "$MYSQL_TEST_DIR",
                          "$MYSQL_TMP_DIR",
6547
                          "$MYSQLTEST_VARDIR",
6548
                          "$MASTER_MYSOCK",
6549
                          "./test/" };
unknown's avatar
unknown committed
6550
  int num_paths= sizeof(paths)/sizeof(char*);
unknown's avatar
unknown committed
6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569
  int i;
  char* p;

  DBUG_ENTER("init_win_path_patterns");

  my_init_dynamic_array(&patterns, sizeof(const char*), 16, 16);

  /* Loop through all paths in the array */
  for (i= 0; i < num_paths; i++)
  {
    VAR* v;
    if (*(paths[i]) == '$')
    {
      v= var_get(paths[i], 0, 0, 0);
      p= my_strdup(v->str_val, MYF(MY_FAE));
    }
    else
      p= my_strdup(paths[i], MYF(MY_FAE));

6570 6571 6572 6573 6574 6575 6576
    /* Don't insert zero length strings in patterns array */
    if (strlen(p) == 0)
    {
      my_free(p, MYF(0));
      continue;
    }

6577
    if (insert_dynamic(&patterns, (uchar*) &p))
6578
      die("Out of memory");
unknown's avatar
unknown committed
6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596

    DBUG_PRINT("info", ("p: %s", p));
    while (*p)
    {
      if (*p == '/')
        *p='\\';
      p++;
    }
  }
  DBUG_VOID_RETURN;
}

void free_win_path_patterns()
{
  uint i= 0;
  for (i=0 ; i < patterns.elements ; i++)
  {
    const char** pattern= dynamic_element(&patterns, i, const char**);
6597
    my_free((char*) *pattern, MYF(0));
unknown's avatar
unknown committed
6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625
  }
  delete_dynamic(&patterns);
}

/*
  fix_win_paths

  DESCRIPTION
  Search the string 'val' for the patterns that are known to be
  strings that contain filenames. Convert all \ to / in the
  filenames that are found.

  Ex:
  val = 'Error "c:\mysql\mysql-test\var\test\t1.frm" didn't exist'
  => $MYSQL_TEST_DIR is found by strstr
  => all \ from c:\mysql\m... until next space is converted into /
*/

void fix_win_paths(const char *val, int len)
{
  uint i;
  char *p;

  DBUG_ENTER("fix_win_paths");
  for (i= 0; i < patterns.elements; i++)
  {
    const char** pattern= dynamic_element(&patterns, i, const char**);
    DBUG_PRINT("info", ("pattern: %s", *pattern));
6626

unknown's avatar
unknown committed
6627
    /* Search for the path in string */
Magnus Svensson's avatar
Magnus Svensson committed
6628
    while ((p= strstr((char*)val, *pattern)))
unknown's avatar
unknown committed
6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652
    {
      DBUG_PRINT("info", ("Found %s in val p: %s", *pattern, p));

      while (*p && !my_isspace(charset_info, *p))
      {
        if (*p == '\\')
          *p= '/';
        p++;
      }
      DBUG_PRINT("info", ("Converted \\ to /, p: %s", p));
    }
  }
  DBUG_PRINT("exit", (" val: %s, len: %d", val, len));
  DBUG_VOID_RETURN;
}
#endif



/*
  Append the result for one field to the dynamic string ds
*/

void append_field(DYNAMIC_STRING *ds, uint col_idx, MYSQL_FIELD* field,
6653
                  char* val, ulonglong len, my_bool is_null)
unknown's avatar
unknown committed
6654
{
6655 6656
  char null[]= "NULL";

unknown's avatar
unknown committed
6657 6658 6659 6660 6661 6662 6663
  if (col_idx < max_replace_column && replace_column[col_idx])
  {
    val= replace_column[col_idx];
    len= strlen(val);
  }
  else if (is_null)
  {
6664
    val= null;
unknown's avatar
unknown committed
6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677
    len= 4;
  }
#ifdef __WIN__
  else if ((field->type == MYSQL_TYPE_DOUBLE ||
            field->type == MYSQL_TYPE_FLOAT ) &&
           field->decimals >= 31)
  {
    /* Convert 1.2e+018 to 1.2e+18 and 1.2e-018 to 1.2e-18 */
    char *start= strchr(val, 'e');
    if (start && strlen(start) >= 5 &&
        (start[1] == '-' || start[1] == '+') && start[2] == '0')
    {
      start+=2; /* Now points at first '0' */
6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689
      if (field->flags & ZEROFILL_FLAG)
      {
        /* Move all chars before the first '0' one step right */
        memmove(val + 1, val, start - val);
        *val= '0';
      }
      else
      {
        /* Move all chars after the first '0' one step left */
        memmove(start, start + 1, strlen(start));
        len--;
      }
unknown's avatar
unknown committed
6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700
    }
  }
#endif

  if (!display_result_vertically)
  {
    if (col_idx)
      dynstr_append_mem(ds, "\t", 1);
    replace_dynstr_append_mem(ds, val, (int)len);
  }
  else
6701
  {
unknown's avatar
unknown committed
6702 6703 6704 6705
    dynstr_append(ds, field->name);
    dynstr_append_mem(ds, "\t", 1);
    replace_dynstr_append_mem(ds, val, (int)len);
    dynstr_append_mem(ds, "\n", 1);
6706 6707 6708
  }
}

6709

6710 6711
/*
  Append all results to the dynamic string separated with '\t'
6712
  Values may be converted with 'replace_column'
6713 6714
*/

unknown's avatar
unknown committed
6715
void append_result(DYNAMIC_STRING *ds, MYSQL_RES *res)
6716 6717
{
  MYSQL_ROW row;
6718
  uint num_fields= mysql_num_fields(res);
unknown's avatar
unknown committed
6719 6720 6721
  MYSQL_FIELD *fields= mysql_fetch_fields(res);
  ulong *lengths;

6722 6723
  while ((row = mysql_fetch_row(res)))
  {
6724
    uint i;
6725 6726
    lengths = mysql_fetch_lengths(res);
    for (i = 0; i < num_fields; i++)
unknown's avatar
unknown committed
6727
      append_field(ds, i, &fields[i],
6728
                   row[i], lengths[i], !row[i]);
6729 6730
    if (!display_result_vertically)
      dynstr_append_mem(ds, "\n", 1);
6731 6732 6733
  }
}

6734

6735
/*
unknown's avatar
unknown committed
6736 6737
  Append all results from ps execution to the dynamic string separated
  with '\t'. Values may be converted with 'replace_column'
6738
*/
6739

unknown's avatar
unknown committed
6740 6741
void append_stmt_result(DYNAMIC_STRING *ds, MYSQL_STMT *stmt,
                        MYSQL_FIELD *fields, uint num_fields)
6742
{
6743
  MYSQL_BIND *my_bind;
unknown's avatar
unknown committed
6744 6745 6746
  my_bool *is_null;
  ulong *length;
  uint i;
6747

unknown's avatar
unknown committed
6748
  /* Allocate array with bind structs, lengths and NULL flags */
6749
  my_bind= (MYSQL_BIND*) my_malloc(num_fields * sizeof(MYSQL_BIND),
unknown's avatar
unknown committed
6750 6751 6752 6753 6754
				MYF(MY_WME | MY_FAE | MY_ZEROFILL));
  length= (ulong*) my_malloc(num_fields * sizeof(ulong),
			     MYF(MY_WME | MY_FAE));
  is_null= (my_bool*) my_malloc(num_fields * sizeof(my_bool),
				MYF(MY_WME | MY_FAE));
6755

unknown's avatar
unknown committed
6756 6757 6758 6759
  /* Allocate data for the result of each field */
  for (i= 0; i < num_fields; i++)
  {
    uint max_length= fields[i].max_length + 1;
6760
    my_bind[i].buffer_type= MYSQL_TYPE_STRING;
6761
    my_bind[i].buffer= my_malloc(max_length, MYF(MY_WME | MY_FAE));
6762 6763 6764
    my_bind[i].buffer_length= max_length;
    my_bind[i].is_null= &is_null[i];
    my_bind[i].length= &length[i];
unknown's avatar
unknown committed
6765

6766
    DBUG_PRINT("bind", ("col[%d]: buffer_type: %d, buffer_length: %lu",
6767
			i, my_bind[i].buffer_type, my_bind[i].buffer_length));
unknown's avatar
unknown committed
6768
  }
6769

6770
  if (mysql_stmt_bind_result(stmt, my_bind))
unknown's avatar
unknown committed
6771 6772 6773 6774 6775 6776
    die("mysql_stmt_bind_result failed: %d: %s",
	mysql_stmt_errno(stmt), mysql_stmt_error(stmt));

  while (mysql_stmt_fetch(stmt) == 0)
  {
    for (i= 0; i < num_fields; i++)
6777
      append_field(ds, i, &fields[i], (char*)my_bind[i].buffer,
6778
                   *my_bind[i].length, *my_bind[i].is_null);
unknown's avatar
unknown committed
6779 6780 6781 6782 6783 6784 6785
    if (!display_result_vertically)
      dynstr_append_mem(ds, "\n", 1);
  }

  if (mysql_stmt_fetch(stmt) != MYSQL_NO_DATA)
    die("fetch didn't end with MYSQL_NO_DATA from statement: %d %s",
	mysql_stmt_errno(stmt), mysql_stmt_error(stmt));
6786

unknown's avatar
unknown committed
6787 6788 6789
  for (i= 0; i < num_fields; i++)
  {
    /* Free data for output */
6790
    my_free(my_bind[i].buffer, MYF(MY_WME | MY_FAE));
unknown's avatar
unknown committed
6791 6792
  }
  /* Free array with bind structs, lengths and NULL flags */
6793 6794 6795
  my_free(my_bind    , MYF(MY_WME | MY_FAE));
  my_free(length  , MYF(MY_WME | MY_FAE));
  my_free(is_null , MYF(MY_WME | MY_FAE));
6796 6797 6798
}


unknown's avatar
unknown committed
6799 6800 6801 6802 6803 6804 6805
/*
  Append metadata for fields to output
*/

void append_metadata(DYNAMIC_STRING *ds,
                     MYSQL_FIELD *field,
                     uint num_fields)
unknown's avatar
unknown committed
6806
{
unknown's avatar
unknown committed
6807 6808 6809 6810 6811 6812 6813 6814
  MYSQL_FIELD *field_end;
  dynstr_append(ds,"Catalog\tDatabase\tTable\tTable_alias\tColumn\t"
                "Column_alias\tType\tLength\tMax length\tIs_null\t"
                "Flags\tDecimals\tCharsetnr\n");

  for (field_end= field+num_fields ;
       field < field_end ;
       field++)
unknown's avatar
unknown committed
6815
  {
unknown's avatar
unknown committed
6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846
    dynstr_append_mem(ds, field->catalog,
                      field->catalog_length);
    dynstr_append_mem(ds, "\t", 1);
    dynstr_append_mem(ds, field->db, field->db_length);
    dynstr_append_mem(ds, "\t", 1);
    dynstr_append_mem(ds, field->org_table,
                      field->org_table_length);
    dynstr_append_mem(ds, "\t", 1);
    dynstr_append_mem(ds, field->table,
                      field->table_length);
    dynstr_append_mem(ds, "\t", 1);
    dynstr_append_mem(ds, field->org_name,
                      field->org_name_length);
    dynstr_append_mem(ds, "\t", 1);
    dynstr_append_mem(ds, field->name, field->name_length);
    dynstr_append_mem(ds, "\t", 1);
    replace_dynstr_append_uint(ds, field->type);
    dynstr_append_mem(ds, "\t", 1);
    replace_dynstr_append_uint(ds, field->length);
    dynstr_append_mem(ds, "\t", 1);
    replace_dynstr_append_uint(ds, field->max_length);
    dynstr_append_mem(ds, "\t", 1);
    dynstr_append_mem(ds, (char*) (IS_NOT_NULL(field->flags) ?
                                   "N" : "Y"), 1);
    dynstr_append_mem(ds, "\t", 1);
    replace_dynstr_append_uint(ds, field->flags);
    dynstr_append_mem(ds, "\t", 1);
    replace_dynstr_append_uint(ds, field->decimals);
    dynstr_append_mem(ds, "\t", 1);
    replace_dynstr_append_uint(ds, field->charsetnr);
    dynstr_append_mem(ds, "\n", 1);
unknown's avatar
unknown committed
6847
  }
unknown's avatar
unknown committed
6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861
}


/*
  Append affected row count and other info to output
*/

void append_info(DYNAMIC_STRING *ds, ulonglong affected_rows,
                 const char *info)
{
  char buf[40], buff2[21];
  sprintf(buf,"affected rows: %s\n", llstr(affected_rows, buff2));
  dynstr_append(ds, buf);
  if (info)
unknown's avatar
unknown committed
6862
  {
unknown's avatar
unknown committed
6863 6864 6865
    dynstr_append(ds, "info: ");
    dynstr_append(ds, info);
    dynstr_append_mem(ds, "\n", 1);
unknown's avatar
unknown committed
6866
  }
unknown's avatar
unknown committed
6867 6868
}

unknown's avatar
unknown committed
6869

unknown's avatar
unknown committed
6870 6871 6872 6873 6874 6875 6876 6877 6878 6879
/*
  Display the table headings with the names tab separated
*/

void append_table_headings(DYNAMIC_STRING *ds,
                           MYSQL_FIELD *field,
                           uint num_fields)
{
  uint col_idx;
  for (col_idx= 0; col_idx < num_fields; col_idx++)
6880
  {
unknown's avatar
unknown committed
6881 6882 6883
    if (col_idx)
      dynstr_append_mem(ds, "\t", 1);
    replace_dynstr_append(ds, field[col_idx].name);
6884
  }
unknown's avatar
unknown committed
6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899
  dynstr_append_mem(ds, "\n", 1);
}

/*
  Fetch warnings from server and append to ds

  RETURN VALUE
  Number of warnings appended to ds
*/

int append_warnings(DYNAMIC_STRING *ds, MYSQL* mysql)
{
  uint count;
  MYSQL_RES *warn_res;
  DBUG_ENTER("append_warnings");
unknown's avatar
unknown committed
6900

unknown's avatar
unknown committed
6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929
  if (!(count= mysql_warning_count(mysql)))
    DBUG_RETURN(0);

  /*
    If one day we will support execution of multi-statements
    through PS API we should not issue SHOW WARNINGS until
    we have not read all results...
  */
  DBUG_ASSERT(!mysql_more_results(mysql));

  if (mysql_real_query(mysql, "SHOW WARNINGS", 13))
    die("Error running query \"SHOW WARNINGS\": %s", mysql_error(mysql));

  if (!(warn_res= mysql_store_result(mysql)))
    die("Warning count is %u but didn't get any warnings",
	count);

  append_result(ds, warn_res);
  mysql_free_result(warn_res);

  DBUG_PRINT("warnings", ("%s", ds->str));

  DBUG_RETURN(count);
}


/*
  Run query using MySQL C API

6930 6931 6932 6933 6934 6935 6936 6937
  SYNOPSIS
    run_query_normal()
    mysql	mysql handle
    command	current command pointer
    flags	flags indicating if we should SEND and/or REAP
    query	query string to execute
    query_len	length query string to execute
    ds		output buffer where to store result form query
unknown's avatar
unknown committed
6938 6939
*/

unknown's avatar
unknown committed
6940
void run_query_normal(struct st_connection *cn, struct st_command *command,
unknown's avatar
unknown committed
6941 6942 6943 6944
                      int flags, char *query, int query_len,
                      DYNAMIC_STRING *ds, DYNAMIC_STRING *ds_warnings)
{
  MYSQL_RES *res= 0;
6945
  MYSQL *mysql= cn->mysql;
unknown's avatar
unknown committed
6946 6947 6948 6949 6950
  int err= 0, counter= 0;
  DBUG_ENTER("run_query_normal");
  DBUG_PRINT("enter",("flags: %d", flags));
  DBUG_PRINT("enter", ("query: '%-.60s'", query));

6951 6952 6953 6954 6955 6956 6957 6958 6959 6960
  if (!mysql)
  {
    /* Emulate old behaviour of sending something on a closed connection */
    handle_error(command, 2006, "MySQL server has gone away",
                 "000000", ds);
    cn->pending= FALSE;
    var_set_errno(2006);
    DBUG_VOID_RETURN;
  }

unknown's avatar
unknown committed
6961
  if (flags & QUERY_SEND_FLAG)
6962
  {
unknown's avatar
unknown committed
6963 6964 6965
    /*
      Send the query
    */
unknown's avatar
unknown committed
6966
    if (do_send_query(cn, query, query_len, flags))
unknown's avatar
unknown committed
6967 6968 6969 6970 6971
    {
      handle_error(command, mysql_errno(mysql), mysql_error(mysql),
		   mysql_sqlstate(mysql), ds);
      goto end;
    }
6972
  }
6973 6974
#ifdef EMBEDDED_LIBRARY
  /*
6975 6976
    Here we handle 'reap' command, so we need to check if the
    query's thread was finished and probably wait
6977
  */
unknown's avatar
unknown committed
6978
  else if (flags & QUERY_REAP_FLAG)
6979
    wait_query_thread_end(cn);
6980
#endif /*EMBEDDED_LIBRARY*/
unknown's avatar
unknown committed
6981
  if (!(flags & QUERY_REAP_FLAG))
6982 6983
  {
    cn->pending= TRUE;
unknown's avatar
unknown committed
6984
    DBUG_VOID_RETURN;
6985 6986
  }
  
6987
  do
6988
  {
unknown's avatar
unknown committed
6989 6990 6991 6992 6993
    /*
      When  on first result set, call mysql_read_query_result to retrieve
      answer to the query sent earlier
    */
    if ((counter==0) && mysql_read_query_result(mysql))
unknown's avatar
unknown committed
6994
    {
unknown's avatar
unknown committed
6995 6996
      handle_error(command, mysql_errno(mysql), mysql_error(mysql),
		   mysql_sqlstate(mysql), ds);
6997 6998
      goto end;

unknown's avatar
unknown committed
6999
    }
7000

unknown's avatar
unknown committed
7001
    /*
7002
      Store the result of the query if it will return any fields
unknown's avatar
unknown committed
7003
    */
7004
    if (mysql_field_count(mysql) && ((res= mysql_store_result(mysql)) == 0))
7005
    {
unknown's avatar
unknown committed
7006 7007
      handle_error(command, mysql_errno(mysql), mysql_error(mysql),
		   mysql_sqlstate(mysql), ds);
unknown's avatar
unknown committed
7008
      goto end;
7009
    }
7010

7011
    if (!disable_result_log)
7012
    {
7013
      ulonglong UNINIT_VAR(affected_rows);    /* Ok to be undef if 'disable_info' is set */
unknown's avatar
unknown committed
7014

7015
      if (res)
7016
      {
unknown's avatar
unknown committed
7017
	MYSQL_FIELD *fields= mysql_fetch_fields(res);
7018
	uint num_fields= mysql_num_fields(res);
7019

7020
	if (display_metadata)
unknown's avatar
unknown committed
7021
          append_metadata(ds, fields, num_fields);
7022

7023
	if (!display_result_vertically)
unknown's avatar
unknown committed
7024 7025
	  append_table_headings(ds, fields, num_fields);

7026
	append_result(ds, res);
7027
      }
unknown's avatar
unknown committed
7028

unknown's avatar
unknown committed
7029
      /*
unknown's avatar
unknown committed
7030
        Need to call mysql_affected_rows() before the "new"
unknown's avatar
unknown committed
7031 7032 7033
        query to find the warnings
      */
      if (!disable_info)
unknown's avatar
unknown committed
7034
        affected_rows= mysql_affected_rows(mysql);
unknown's avatar
unknown committed
7035

unknown's avatar
unknown committed
7036 7037 7038 7039 7040 7041
      /*
        Add all warnings to the result. We can't do this if we are in
        the middle of processing results from multi-statement, because
        this will break protocol.
      */
      if (!disable_warnings && !mysql_more_results(mysql))
7042
      {
unknown's avatar
unknown committed
7043
	if (append_warnings(ds_warnings, mysql) || ds_warnings->length)
7044 7045
	{
	  dynstr_append_mem(ds, "Warnings:\n", 10);
unknown's avatar
unknown committed
7046
	  dynstr_append_mem(ds, ds_warnings->str, ds_warnings->length);
7047
	}
7048
      }
unknown's avatar
unknown committed
7049

unknown's avatar
unknown committed
7050
      if (!disable_info)
unknown's avatar
unknown committed
7051
	append_info(ds, affected_rows, mysql_info(mysql));
7052
    }
7053

7054
    if (res)
7055
    {
7056
      mysql_free_result(res);
7057 7058
      res= 0;
    }
7059 7060
    counter++;
  } while (!(err= mysql_next_result(mysql)));
unknown's avatar
unknown committed
7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071
  if (err > 0)
  {
    /* We got an error from mysql_next_result, maybe expected */
    handle_error(command, mysql_errno(mysql), mysql_error(mysql),
		 mysql_sqlstate(mysql), ds);
    goto end;
  }
  DBUG_ASSERT(err == -1); /* Successful and there are no more results */

  /* If we come here the query is both executed and read successfully */
  handle_no_error(command);
7072

7073
end:
7074

7075
  cn->pending= FALSE;
7076 7077 7078 7079 7080
  /*
    We save the return code (mysql_errno(mysql)) from the last call sent
    to the server into the mysqltest builtin variable $mysql_errno. This
    variable then can be used from the test case itself.
  */
7081
  var_set_errno(mysql_errno(mysql));
unknown's avatar
unknown committed
7082
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
7083 7084 7085
}


7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135
/*
  Check whether given error is in list of expected errors

  SYNOPSIS
    match_expected_error()

  PARAMETERS
    command        the current command (and its expect-list)
    err_errno      error number of the error that actually occurred
    err_sqlstate   SQL-state that was thrown, or NULL for impossible
                   (file-ops, diff, etc.)

  RETURNS
    -1 for not in list, index in list of expected errors otherwise

  NOTE
    If caller needs to know whether the list was empty, they should
    check command->expected_errors.count.
*/

static int match_expected_error(struct st_command *command,
                                unsigned int err_errno,
                                const char *err_sqlstate)
{
  uint i;

  for (i= 0 ; (uint) i < command->expected_errors.count ; i++)
  {
    if ((command->expected_errors.err[i].type == ERR_ERRNO) &&
        (command->expected_errors.err[i].code.errnum == err_errno))
      return i;

    if (command->expected_errors.err[i].type == ERR_SQLSTATE)
    {
      /*
        NULL is quite likely, but not in conjunction with a SQL-state expect!
      */
      if (unlikely(err_sqlstate == NULL))
        die("expecting a SQL-state (%s) from query '%s' which cannot produce one...",
            command->expected_errors.err[i].code.sqlstate, command->query);

      if (strncmp(command->expected_errors.err[i].code.sqlstate,
                  err_sqlstate, SQLSTATE_LENGTH) == 0)
        return i;
    }
  }
  return -1;
}


unknown's avatar
unknown committed
7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147
/*
  Handle errors which occurred during execution

  SYNOPSIS
  handle_error()
  q     - query context
  err_errno - error number
  err_error - error message
  err_sqlstate - sql state
  ds    - dynamic string which is used for output buffer

  NOTE
7148 7149
    If there is an unexpected error this function will abort mysqltest
    immediately.
unknown's avatar
unknown committed
7150 7151 7152 7153 7154 7155
*/

void handle_error(struct st_command *command,
                  unsigned int err_errno, const char *err_error,
                  const char *err_sqlstate, DYNAMIC_STRING *ds)
{
7156
  int i;
unknown's avatar
unknown committed
7157 7158 7159

  DBUG_ENTER("handle_error");

7160
  if (command->require_file)
unknown's avatar
unknown committed
7161 7162 7163 7164 7165 7166 7167 7168
  {
    /*
      The query after a "--require" failed. This is fine as long the server
      returned a valid reponse. Don't allow 2013 or 2006 to trigger an
      abort_not_supported_test
    */
    if (err_errno == CR_SERVER_LOST ||
        err_errno == CR_SERVER_GONE_ERROR)
7169 7170
      die("require query '%s' failed: %d: %s", command->query,
          err_errno, err_error);
unknown's avatar
unknown committed
7171 7172

    /* Abort the run of this test, pass the failed query as reason */
unknown's avatar
unknown committed
7173
    abort_not_supported_test("Query '%s' failed, required functionality " \
unknown's avatar
unknown committed
7174 7175 7176 7177 7178 7179 7180 7181
                             "not supported", command->query);
  }

  if (command->abort_on_error)
    die("query '%s' failed: %d: %s", command->query, err_errno, err_error);

  DBUG_PRINT("info", ("expected_errors.count: %d",
                      command->expected_errors.count));
7182 7183 7184 7185

  i= match_expected_error(command, err_errno, err_sqlstate);

  if (i >= 0)
unknown's avatar
unknown committed
7186
  {
7187
    if (!disable_result_log)
unknown's avatar
unknown committed
7188
    {
7189
      if (command->expected_errors.count == 1)
unknown's avatar
unknown committed
7190
      {
7191 7192 7193 7194 7195 7196
        /* Only log error if there is one possible error */
        dynstr_append_mem(ds, "ERROR ", 6);
        replace_dynstr_append(ds, err_sqlstate);
        dynstr_append_mem(ds, ": ", 2);
        replace_dynstr_append(ds, err_error);
        dynstr_append_mem(ds,"\n",1);
unknown's avatar
unknown committed
7197
      }
7198 7199 7200 7201 7202
      /* Don't log error if we may not get an error */
      else if (command->expected_errors.err[0].type == ERR_SQLSTATE ||
               (command->expected_errors.err[0].type == ERR_ERRNO &&
                command->expected_errors.err[0].code.errnum != 0))
        dynstr_append(ds,"Got one of the listed errors\n");
unknown's avatar
unknown committed
7203
    }
7204 7205
    /* OK */
    DBUG_VOID_RETURN;
unknown's avatar
unknown committed
7206 7207 7208
  }

  DBUG_PRINT("info",("i: %d  expected_errors: %d", i,
7209
                     command->expected_errors.count));
unknown's avatar
unknown committed
7210 7211 7212 7213 7214 7215 7216 7217 7218 7219

  if (!disable_result_log)
  {
    dynstr_append_mem(ds, "ERROR ",6);
    replace_dynstr_append(ds, err_sqlstate);
    dynstr_append_mem(ds, ": ", 2);
    replace_dynstr_append(ds, err_error);
    dynstr_append_mem(ds, "\n", 1);
  }

7220
  if (command->expected_errors.count > 0)
unknown's avatar
unknown committed
7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234
  {
    if (command->expected_errors.err[0].type == ERR_ERRNO)
      die("query '%s' failed with wrong errno %d: '%s', instead of %d...",
          command->query, err_errno, err_error,
          command->expected_errors.err[0].code.errnum);
    else
      die("query '%s' failed with wrong sqlstate %s: '%s', instead of %s...",
          command->query, err_sqlstate, err_error,
	  command->expected_errors.err[0].code.sqlstate);
  }

  DBUG_VOID_RETURN;
}

7235 7236

/*
unknown's avatar
unknown committed
7237 7238 7239 7240 7241 7242 7243 7244
  Handle absence of errors after execution

  SYNOPSIS
  handle_no_error()
  q - context of query

  RETURN VALUE
  error - function will not return
7245 7246
*/

unknown's avatar
unknown committed
7247
void handle_no_error(struct st_command *command)
7248
{
unknown's avatar
unknown committed
7249
  DBUG_ENTER("handle_no_error");
7250

unknown's avatar
unknown committed
7251 7252
  if (command->expected_errors.err[0].type == ERR_ERRNO &&
      command->expected_errors.err[0].code.errnum != 0)
7253
  {
unknown's avatar
unknown committed
7254 7255 7256
    /* Error code we wanted was != 0, i.e. not an expected success */
    die("query '%s' succeeded - should have failed with errno %d...",
        command->query, command->expected_errors.err[0].code.errnum);
7257
  }
unknown's avatar
unknown committed
7258 7259
  else if (command->expected_errors.err[0].type == ERR_SQLSTATE &&
           strcmp(command->expected_errors.err[0].code.sqlstate,"00000") != 0)
7260
  {
unknown's avatar
unknown committed
7261 7262 7263
    /* SQLSTATE we wanted was != "00000", i.e. not an expected success */
    die("query '%s' succeeded - should have failed with sqlstate %s...",
        command->query, command->expected_errors.err[0].code.sqlstate);
7264
  }
unknown's avatar
unknown committed
7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293

  DBUG_VOID_RETURN;
}


/*
  Run query using prepared statement C API

  SYNPOSIS
  run_query_stmt
  mysql - mysql handle
  command - currrent command pointer
  query - query string to execute
  query_len - length query string to execute
  ds - output buffer where to store result form query

  RETURN VALUE
  error - function will not return
*/

void run_query_stmt(MYSQL *mysql, struct st_command *command,
                    char *query, int query_len, DYNAMIC_STRING *ds,
                    DYNAMIC_STRING *ds_warnings)
{
  MYSQL_RES *res= NULL;     /* Note that here 'res' is meta data result set */
  MYSQL_STMT *stmt;
  DYNAMIC_STRING ds_prepare_warnings;
  DYNAMIC_STRING ds_execute_warnings;
  DBUG_ENTER("run_query_stmt");
7294 7295
  DBUG_PRINT("query", ("'%-.60s'", query));

unknown's avatar
unknown committed
7296 7297 7298 7299
  /*
    Init a new stmt if it's not already one created for this connection
  */
  if(!(stmt= cur_con->stmt))
7300
  {
unknown's avatar
unknown committed
7301 7302 7303
    if (!(stmt= mysql_stmt_init(mysql)))
      die("unable to init stmt structure");
    cur_con->stmt= stmt;
7304 7305
  }

unknown's avatar
unknown committed
7306 7307
  /* Init dynamic strings for warnings */
  if (!disable_warnings)
7308
  {
unknown's avatar
unknown committed
7309 7310
    init_dynamic_string(&ds_prepare_warnings, NULL, 0, 256);
    init_dynamic_string(&ds_execute_warnings, NULL, 0, 256);
7311 7312 7313
  }

  /*
unknown's avatar
unknown committed
7314
    Prepare the query
7315
  */
unknown's avatar
unknown committed
7316
  if (mysql_stmt_prepare(stmt, query, query_len))
7317
  {
unknown's avatar
unknown committed
7318 7319 7320
    handle_error(command,  mysql_stmt_errno(stmt),
                 mysql_stmt_error(stmt), mysql_stmt_sqlstate(stmt), ds);
    goto end;
7321 7322
  }

unknown's avatar
unknown committed
7323 7324 7325 7326 7327 7328
  /*
    Get the warnings from mysql_stmt_prepare and keep them in a
    separate string
  */
  if (!disable_warnings)
    append_warnings(&ds_prepare_warnings, mysql);
7329 7330

  /*
unknown's avatar
unknown committed
7331
    No need to call mysql_stmt_bind_param() because we have no
7332 7333 7334
    parameter markers.
  */

unknown's avatar
unknown committed
7335 7336
#if MYSQL_VERSION_ID >= 50000
  if (cursor_protocol_enabled)
7337
  {
unknown's avatar
unknown committed
7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355
    /*
      Use cursor when retrieving result
    */
    ulong type= CURSOR_TYPE_READ_ONLY;
    if (mysql_stmt_attr_set(stmt, STMT_ATTR_CURSOR_TYPE, (void*) &type))
      die("mysql_stmt_attr_set(STMT_ATTR_CURSOR_TYPE) failed': %d %s",
          mysql_stmt_errno(stmt), mysql_stmt_error(stmt));
  }
#endif

  /*
    Execute the query
  */
  if (mysql_stmt_execute(stmt))
  {
    handle_error(command, mysql_stmt_errno(stmt),
                 mysql_stmt_error(stmt), mysql_stmt_sqlstate(stmt), ds);
    goto end;
7356 7357
  }

unknown's avatar
unknown committed
7358 7359 7360 7361 7362 7363 7364
  /*
    When running in cursor_protocol get the warnings from execute here
    and keep them in a separate string for later.
  */
  if (cursor_protocol_enabled && !disable_warnings)
    append_warnings(&ds_execute_warnings, mysql);

7365 7366
  /*
    We instruct that we want to update the "max_length" field in
unknown's avatar
unknown committed
7367 7368
    mysql_stmt_store_result(), this is our only way to know how much
    buffer to allocate for result data
7369 7370 7371
  */
  {
    my_bool one= 1;
unknown's avatar
unknown committed
7372 7373 7374
    if (mysql_stmt_attr_set(stmt, STMT_ATTR_UPDATE_MAX_LENGTH, (void*) &one))
      die("mysql_stmt_attr_set(STMT_ATTR_UPDATE_MAX_LENGTH) failed': %d %s",
          mysql_stmt_errno(stmt), mysql_stmt_error(stmt));
7375 7376 7377 7378 7379
  }

  /*
    If we got here the statement succeeded and was expected to do so,
    get data. Note that this can still give errors found during execution!
7380
    Store the result of the query if if will return any fields
7381
  */
7382
  if (mysql_stmt_field_count(stmt) && mysql_stmt_store_result(stmt))
7383
  {
unknown's avatar
unknown committed
7384 7385 7386 7387 7388 7389 7390 7391 7392
    handle_error(command, mysql_stmt_errno(stmt),
                 mysql_stmt_error(stmt), mysql_stmt_sqlstate(stmt), ds);
    goto end;
  }

  /* If we got here the statement was both executed and read successfully */
  handle_no_error(command);
  if (!disable_result_log)
  {
7393 7394 7395
    ulonglong affected_rows;
    LINT_INIT(affected_rows);

unknown's avatar
unknown committed
7396 7397 7398 7399 7400 7401 7402
    /*
      Not all statements creates a result set. If there is one we can
      now create another normal result set that contains the meta
      data. This set can be handled almost like any other non prepared
      statement result set.
    */
    if ((res= mysql_stmt_result_metadata(stmt)) != NULL)
7403
    {
unknown's avatar
unknown committed
7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417
      /* Take the column count from meta info */
      MYSQL_FIELD *fields= mysql_fetch_fields(res);
      uint num_fields= mysql_num_fields(res);

      if (display_metadata)
        append_metadata(ds, fields, num_fields);

      if (!display_result_vertically)
        append_table_headings(ds, fields, num_fields);

      append_stmt_result(ds, stmt, fields, num_fields);

      mysql_free_result(res);     /* Free normal result set with meta data */

7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428
      /*
        Normally, if there is a result set, we do not show warnings from the
        prepare phase. This is because some warnings are generated both during
        prepare and execute; this would generate different warning output
        between normal and ps-protocol test runs.

        The --enable_prepare_warnings command can be used to change this so
        that warnings from both the prepare and execute phase are shown.
      */
      if (!disable_warnings && !prepare_warnings_enabled)
        dynstr_set(&ds_prepare_warnings, NULL);
7429 7430 7431
    }
    else
    {
unknown's avatar
unknown committed
7432 7433 7434
      /*
	This is a query without resultset
      */
7435
    }
unknown's avatar
unknown committed
7436

7437 7438 7439 7440
    /*
      Need to grab affected rows information before getting
      warnings here
    */
7441 7442
    if (!disable_info)
      affected_rows= mysql_affected_rows(mysql);
unknown's avatar
unknown committed
7443

7444 7445 7446
    if (!disable_warnings)
    {
      /* Get the warnings from execute */
unknown's avatar
unknown committed
7447

7448 7449 7450 7451 7452
      /* Append warnings to ds - if there are any */
      if (append_warnings(&ds_execute_warnings, mysql) ||
          ds_execute_warnings.length ||
          ds_prepare_warnings.length ||
          ds_warnings->length)
unknown's avatar
unknown committed
7453
      {
7454 7455 7456 7457 7458 7459 7460 7461 7462 7463
        dynstr_append_mem(ds, "Warnings:\n", 10);
        if (ds_warnings->length)
          dynstr_append_mem(ds, ds_warnings->str,
                            ds_warnings->length);
        if (ds_prepare_warnings.length)
          dynstr_append_mem(ds, ds_prepare_warnings.str,
                            ds_prepare_warnings.length);
        if (ds_execute_warnings.length)
          dynstr_append_mem(ds, ds_execute_warnings.str,
                            ds_execute_warnings.length);
7464 7465
      }
    }
7466 7467
    if (!disable_info)
      append_info(ds, affected_rows, mysql_info(mysql));
7468 7469
  }

unknown's avatar
unknown committed
7470 7471
end:
  if (!disable_warnings)
7472
  {
unknown's avatar
unknown committed
7473 7474
    dynstr_free(&ds_prepare_warnings);
    dynstr_free(&ds_execute_warnings);
7475 7476 7477
  }

  /*
unknown's avatar
unknown committed
7478 7479 7480
    We save the return code (mysql_stmt_errno(stmt)) from the last call sent
    to the server into the mysqltest builtin variable $mysql_errno. This
    variable then can be used from the test case itself.
7481
  */
unknown's avatar
unknown committed
7482 7483

  var_set_errno(mysql_stmt_errno(stmt));
7484

7485 7486 7487 7488 7489 7490 7491
  /* Close the statement if reconnect, need new prepare */
  if (mysql->reconnect)
  {
    mysql_stmt_close(stmt);
    cur_con->stmt= NULL;
  }

unknown's avatar
unknown committed
7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509
  DBUG_VOID_RETURN;
}



/*
  Create a util connection if one does not already exists
  and use that to run the query
  This is done to avoid implict commit when creating/dropping objects such
  as view, sp etc.
*/

int util_query(MYSQL* org_mysql, const char* query){

  MYSQL* mysql;
  DBUG_ENTER("util_query");

  if(!(mysql= cur_con->util_mysql))
7510
  {
unknown's avatar
unknown committed
7511 7512 7513
    DBUG_PRINT("info", ("Creating util_mysql"));
    if (!(mysql= mysql_init(mysql)))
      die("Failed in mysql_init()");
7514

unknown's avatar
unknown committed
7515 7516
    /* enable local infile, in non-binary builds often disabled by default */
    mysql_options(mysql, MYSQL_OPT_LOCAL_INFILE, 0);
unknown's avatar
unknown committed
7517 7518 7519
    safe_connect(mysql, "util", org_mysql->host, org_mysql->user,
                 org_mysql->passwd, org_mysql->db, org_mysql->port,
                 org_mysql->unix_socket);
7520

unknown's avatar
unknown committed
7521 7522
    cur_con->util_mysql= mysql;
  }
7523

unknown's avatar
unknown committed
7524 7525
  return mysql_query(mysql, query);
}
7526 7527 7528



unknown's avatar
unknown committed
7529 7530
/*
  Run query
7531

7532 7533 7534 7535 7536
  SYNPOSIS
    run_query()
     mysql	mysql handle
     command	currrent command pointer

unknown's avatar
unknown committed
7537 7538 7539 7540
  flags control the phased/stages of query execution to be performed
  if QUERY_SEND_FLAG bit is on, the query will be sent. If QUERY_REAP_FLAG
  is on the result will be read - for regular query, both bits must be on
*/
7541

unknown's avatar
unknown committed
7542
void run_query(struct st_connection *cn, struct st_command *command, int flags)
unknown's avatar
unknown committed
7543
{
7544
  MYSQL *mysql= cn->mysql;
unknown's avatar
unknown committed
7545
  DYNAMIC_STRING *ds;
7546
  DYNAMIC_STRING *save_ds= NULL;
unknown's avatar
unknown committed
7547
  DYNAMIC_STRING ds_result;
7548
  DYNAMIC_STRING ds_sorted;
unknown's avatar
unknown committed
7549 7550 7551 7552 7553 7554 7555
  DYNAMIC_STRING ds_warnings;
  DYNAMIC_STRING eval_query;
  char *query;
  int query_len;
  my_bool view_created= 0, sp_created= 0;
  my_bool complete_query= ((flags & QUERY_SEND_FLAG) &&
                           (flags & QUERY_REAP_FLAG));
7556
  DBUG_ENTER("run_query");
7557

7558 7559 7560
  if (cn->pending && (flags & QUERY_SEND_FLAG))
    die ("Cannot run query on connection between send and reap");

7561 7562 7563
  if (!(flags & QUERY_SEND_FLAG) && !cn->pending)
    die ("Cannot reap on a connection without pending send");
  
7564
  init_dynamic_string(&ds_warnings, NULL, 0, 256);
unknown's avatar
unknown committed
7565 7566 7567
  /*
    Evaluate query if this is an eval command
  */
7568
  if (command->type == Q_EVAL || command->type == Q_SEND_EVAL)
7569
  {
unknown's avatar
unknown committed
7570 7571 7572 7573
    init_dynamic_string(&eval_query, "", command->query_len+256, 1024);
    do_eval(&eval_query, command->query, command->end, FALSE);
    query = eval_query.str;
    query_len = eval_query.length;
7574
  }
unknown's avatar
unknown committed
7575
  else
7576
  {
unknown's avatar
unknown committed
7577 7578
    query = command->query;
    query_len = strlen(query);
7579 7580
  }

unknown's avatar
unknown committed
7581
  /*
7582
    When command->require_file is set the output of _this_ query
unknown's avatar
unknown committed
7583 7584 7585 7586
    should be compared with an already existing file
    Create a temporary dynamic string to contain the output from
    this query.
  */
7587
  if (command->require_file)
unknown's avatar
unknown committed
7588 7589 7590 7591 7592 7593
  {
    init_dynamic_string(&ds_result, "", 1024, 1024);
    ds= &ds_result;
  }
  else
    ds= &ds_res;
7594

unknown's avatar
unknown committed
7595 7596 7597 7598 7599 7600 7601 7602 7603
  /*
    Log the query into the output buffer
  */
  if (!disable_query_log && (flags & QUERY_SEND_FLAG))
  {
    replace_dynstr_append_mem(ds, query, query_len);
    dynstr_append_mem(ds, delimiter, delimiter_length);
    dynstr_append_mem(ds, "\n", 1);
  }
7604

7605 7606 7607 7608 7609 7610 7611 7612 7613
  /*
    Write the command to the result file before we execute the query
    This is needed to be able to analyse the log if something goes
    wrong
  */
  log_file.write(&ds_res);
  log_file.flush();
  dynstr_set(&ds_res, 0);

unknown's avatar
unknown committed
7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635
  if (view_protocol_enabled &&
      complete_query &&
      match_re(&view_re, query))
  {
    /*
      Create the query as a view.
      Use replace since view can exist from a failed mysqltest run
    */
    DYNAMIC_STRING query_str;
    init_dynamic_string(&query_str,
			"CREATE OR REPLACE VIEW mysqltest_tmp_v AS ",
			query_len+64, 256);
    dynstr_append_mem(&query_str, query, query_len);
    if (util_query(mysql, query_str.str))
    {
      /*
	Failed to create the view, this is not fatal
	just run the query the normal way
      */
      DBUG_PRINT("view_create_error",
		 ("Failed to create view '%s': %d: %s", query_str.str,
		  mysql_errno(mysql), mysql_error(mysql)));
7636

unknown's avatar
unknown committed
7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648
      /* Log error to create view */
      verbose_msg("Failed to create view '%s' %d: %s", query_str.str,
		  mysql_errno(mysql), mysql_error(mysql));
    }
    else
    {
      /*
	Yes, it was possible to create this query as a view
      */
      view_created= 1;
      query= (char*)"SELECT * FROM mysqltest_tmp_v";
      query_len = strlen(query);
7649

unknown's avatar
unknown committed
7650 7651 7652 7653 7654 7655
      /*
        Collect warnings from create of the view that should otherwise
        have been produced when the SELECT was executed
      */
      append_warnings(&ds_warnings, cur_con->util_mysql);
    }
7656

unknown's avatar
unknown committed
7657
    dynstr_free(&query_str);
7658 7659
  }

unknown's avatar
unknown committed
7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683
  if (sp_protocol_enabled &&
      complete_query &&
      match_re(&sp_re, query))
  {
    /*
      Create the query as a stored procedure
      Drop first since sp can exist from a failed mysqltest run
    */
    DYNAMIC_STRING query_str;
    init_dynamic_string(&query_str,
			"DROP PROCEDURE IF EXISTS mysqltest_tmp_sp;",
			query_len+64, 256);
    util_query(mysql, query_str.str);
    dynstr_set(&query_str, "CREATE PROCEDURE mysqltest_tmp_sp()\n");
    dynstr_append_mem(&query_str, query, query_len);
    if (util_query(mysql, query_str.str))
    {
      /*
	Failed to create the stored procedure for this query,
	this is not fatal just run the query the normal way
      */
      DBUG_PRINT("sp_create_error",
		 ("Failed to create sp '%s': %d: %s", query_str.str,
		  mysql_errno(mysql), mysql_error(mysql)));
7684

unknown's avatar
unknown committed
7685 7686 7687
      /* Log error to create sp */
      verbose_msg("Failed to create sp '%s' %d: %s", query_str.str,
		  mysql_errno(mysql), mysql_error(mysql));
7688

unknown's avatar
unknown committed
7689 7690
    }
    else
7691
    {
unknown's avatar
unknown committed
7692 7693 7694 7695
      sp_created= 1;

      query= (char*)"CALL mysqltest_tmp_sp()";
      query_len = strlen(query);
7696
    }
unknown's avatar
unknown committed
7697
    dynstr_free(&query_str);
7698 7699
  }

7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711
  if (display_result_sorted)
  {
    /*
       Collect the query output in a separate string
       that can be sorted before it's added to the
       global result string
    */
    init_dynamic_string(&ds_sorted, "", 1024, 1024);
    save_ds= ds; /* Remember original ds */
    ds= &ds_sorted;
  }

unknown's avatar
unknown committed
7712 7713 7714 7715 7716
  /*
    Find out how to run this query

    Always run with normal C API if it's not a complete
    SEND + REAP
7717

unknown's avatar
unknown committed
7718 7719 7720 7721 7722 7723 7724 7725
    If it is a '?' in the query it may be a SQL level prepared
    statement already and we can't do it twice
  */
  if (ps_protocol_enabled &&
      complete_query &&
      match_re(&ps_re, query))
    run_query_stmt(mysql, command, query, query_len, ds, &ds_warnings);
  else
unknown's avatar
unknown committed
7726
    run_query_normal(cn, command, flags, query, query_len,
unknown's avatar
unknown committed
7727 7728
		     ds, &ds_warnings);

7729 7730 7731 7732
  dynstr_free(&ds_warnings);
  if (command->type == Q_EVAL)
    dynstr_free(&eval_query);

7733 7734 7735 7736 7737 7738 7739
  if (display_result_sorted)
  {
    /* Sort the result set and append it to result */
    dynstr_append_sorted(save_ds, &ds_sorted);
    ds= save_ds;
    dynstr_free(&ds_sorted);
  }
unknown's avatar
unknown committed
7740 7741

  if (sp_created)
7742
  {
unknown's avatar
unknown committed
7743 7744
    if (util_query(mysql, "DROP PROCEDURE mysqltest_tmp_sp "))
      die("Failed to drop sp: %d: %s", mysql_errno(mysql), mysql_error(mysql));
7745 7746
  }

unknown's avatar
unknown committed
7747 7748 7749 7750 7751 7752 7753
  if (view_created)
  {
    if (util_query(mysql, "DROP VIEW mysqltest_tmp_v "))
      die("Failed to drop view: %d: %s",
	  mysql_errno(mysql), mysql_error(mysql));
  }

7754
  if (command->require_file)
7755
  {
7756 7757 7758 7759 7760
    /* A result file was specified for _this_ query
       and the output should be checked against an already
       existing file which has been specified using --require or --result
    */
    check_require(ds, command->require_file);
7761 7762
  }

unknown's avatar
unknown committed
7763 7764
  if (ds == &ds_result)
    dynstr_free(&ds_result);
7765
  DBUG_VOID_RETURN;
7766 7767
}

unknown's avatar
unknown committed
7768
/****************************************************************************/
7769
/*
unknown's avatar
unknown committed
7770
  Functions to detect different SQL statements
7771 7772
*/

unknown's avatar
unknown committed
7773
char *re_eprint(int err)
7774
{
unknown's avatar
unknown committed
7775 7776 7777 7778 7779 7780
  static char epbuf[100];
  size_t len= my_regerror(REG_ITOA|err, (my_regex_t *)NULL,
			  epbuf, sizeof(epbuf));
  assert(len <= sizeof(epbuf));
  return(epbuf);
}
7781

unknown's avatar
unknown committed
7782 7783 7784 7785 7786
void init_re_comp(my_regex_t *re, const char* str)
{
  int err= my_regcomp(re, str, (REG_EXTENDED | REG_ICASE | REG_NOSUB),
                      &my_charset_latin1);
  if (err)
7787
  {
unknown's avatar
unknown committed
7788 7789 7790
    char erbuf[100];
    int len= my_regerror(err, re, erbuf, sizeof(erbuf));
    die("error %s, %d/%d `%s'\n",
Sergey Glukhov's avatar
Sergey Glukhov committed
7791
	re_eprint(err), (int)len, (int)sizeof(erbuf), erbuf);
7792 7793 7794
  }
}

unknown's avatar
unknown committed
7795
void init_re(void)
7796
{
unknown's avatar
unknown committed
7797 7798 7799 7800
  /*
    Filter for queries that can be run using the
    MySQL Prepared Statements C API
  */
7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814
  const char *ps_re_str =
    "^("
    "[[:space:]]*REPLACE[[:space:]]|"
    "[[:space:]]*INSERT[[:space:]]|"
    "[[:space:]]*UPDATE[[:space:]]|"
    "[[:space:]]*DELETE[[:space:]]|"
    "[[:space:]]*SELECT[[:space:]]|"
    "[[:space:]]*CREATE[[:space:]]+TABLE[[:space:]]|"
    "[[:space:]]*DO[[:space:]]|"
    "[[:space:]]*SET[[:space:]]+OPTION[[:space:]]|"
    "[[:space:]]*DELETE[[:space:]]+MULTI[[:space:]]|"
    "[[:space:]]*UPDATE[[:space:]]+MULTI[[:space:]]|"
    "[[:space:]]*INSERT[[:space:]]+SELECT[[:space:]])";

unknown's avatar
unknown committed
7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830
  /*
    Filter for queries that can be run using the
    Stored procedures
  */
  const char *sp_re_str =ps_re_str;

  /*
    Filter for queries that can be run as views
  */
  const char *view_re_str =
    "^("
    "[[:space:]]*SELECT[[:space:]])";

  init_re_comp(&ps_re, ps_re_str);
  init_re_comp(&sp_re, sp_re_str);
  init_re_comp(&view_re, view_re_str);
7831 7832 7833
}


unknown's avatar
unknown committed
7834
int match_re(my_regex_t *re, char *str)
7835
{
7836 7837 7838 7839 7840 7841 7842 7843 7844 7845
  while (my_isspace(charset_info, *str))
    str++;
  if (str[0] == '/' && str[1] == '*')
  {
    char *comm_end= strstr (str, "*/");
    if (! comm_end)
      die("Statement is unterminated comment");
    str= comm_end + 2;
  }
  
unknown's avatar
unknown committed
7846
  int err= my_regexec(re, str, (size_t)0, NULL, 0);
7847 7848 7849 7850 7851

  if (err == 0)
    return 1;
  else if (err == REG_NOMATCH)
    return 0;
unknown's avatar
unknown committed
7852

7853 7854
  {
    char erbuf[100];
unknown's avatar
unknown committed
7855 7856
    int len= my_regerror(err, re, erbuf, sizeof(erbuf));
    die("error %s, %d/%d `%s'\n",
Sergey Glukhov's avatar
Sergey Glukhov committed
7857
	re_eprint(err), (int)len, (int)sizeof(erbuf), erbuf);
7858
  }
unknown's avatar
unknown committed
7859
  return 0;
7860 7861
}

unknown's avatar
unknown committed
7862
void free_re(void)
7863
{
unknown's avatar
unknown committed
7864
  my_regfree(&ps_re);
unknown's avatar
unknown committed
7865 7866 7867
  my_regfree(&sp_re);
  my_regfree(&view_re);
  my_regex_end();
7868 7869 7870 7871
}

/****************************************************************************/

unknown's avatar
unknown committed
7872
void get_command_type(struct st_command* command)
7873
{
7874 7875
  char save;
  uint type;
unknown's avatar
unknown committed
7876
  DBUG_ENTER("get_command_type");
unknown's avatar
unknown committed
7877

7878
  if (*command->query == '}')
7879
  {
unknown's avatar
unknown committed
7880
    command->type = Q_END_BLOCK;
unknown's avatar
unknown committed
7881
    DBUG_VOID_RETURN;
7882 7883
  }

7884 7885 7886 7887
  save= command->query[command->first_word_len];
  command->query[command->first_word_len]= 0;
  type= find_type(command->query, &command_typelib, 1+2);
  command->query[command->first_word_len]= save;
7888
  if (type > 0)
unknown's avatar
unknown committed
7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901
  {
    command->type=(enum enum_commands) type;		/* Found command */

    /*
      Look for case where "query" was explicitly specified to
      force command being sent to server
    */
    if (type == Q_QUERY)
    {
      /* Skip the "query" part */
      command->query= command->first_argument;
    }
  }
7902
  else
unknown's avatar
unknown committed
7903
  {
7904 7905 7906 7907 7908 7909 7910 7911 7912
    /* No mysqltest command matched */

    if (command->type != Q_COMMENT_WITH_COMMAND)
    {
      /* A query that will sent to mysqld */
      command->type= Q_QUERY;
    }
    else
    {
7913 7914 7915 7916
      /* -- "comment" that didn't contain a mysqltest command */
      die("Found line beginning with --  that didn't contain "\
          "a valid mysqltest command, check your syntax or "\
          "use # if you intended to write a comment");
7917
    }
unknown's avatar
unknown committed
7918
  }
7919 7920 7921 7922 7923 7924

  /* Set expected error on command */
  memcpy(&command->expected_errors, &saved_expected_errors,
         sizeof(saved_expected_errors));
  DBUG_PRINT("info", ("There are %d expected errors",
                      command->expected_errors.count));
unknown's avatar
unknown committed
7925
  DBUG_VOID_RETURN;
7926
}
unknown's avatar
unknown committed
7927

unknown's avatar
unknown committed
7928

unknown's avatar
unknown committed
7929

unknown's avatar
unknown committed
7930 7931
/*
  Record how many milliseconds it took to execute the test file
7932
  up until the current line and write it to .progress file
unknown's avatar
unknown committed
7933

unknown's avatar
unknown committed
7934
*/
unknown's avatar
unknown committed
7935

unknown's avatar
unknown committed
7936 7937
void mark_progress(struct st_command* command __attribute__((unused)),
                   int line)
unknown's avatar
unknown committed
7938
{
7939 7940 7941
  static ulonglong progress_start= 0; // < Beware
  DYNAMIC_STRING ds_progress;

unknown's avatar
unknown committed
7942 7943 7944 7945 7946
  char buf[32], *end;
  ulonglong timer= timer_now();
  if (!progress_start)
    progress_start= timer;
  timer-= progress_start;
unknown's avatar
unknown committed
7947

7948 7949 7950
  if (init_dynamic_string(&ds_progress, "", 256, 256))
    die("Out of memory");

unknown's avatar
unknown committed
7951
  /* Milliseconds since start */
7952
  end= longlong10_to_str(timer, buf, 10);
unknown's avatar
unknown committed
7953 7954
  dynstr_append_mem(&ds_progress, buf, (int)(end-buf));
  dynstr_append_mem(&ds_progress, "\t", 1);
unknown's avatar
unknown committed
7955

unknown's avatar
unknown committed
7956 7957 7958 7959
  /* Parser line number */
  end= int10_to_str(line, buf, 10);
  dynstr_append_mem(&ds_progress, buf, (int)(end-buf));
  dynstr_append_mem(&ds_progress, "\t", 1);
unknown's avatar
unknown committed
7960

unknown's avatar
unknown committed
7961 7962 7963
  /* Filename */
  dynstr_append(&ds_progress, cur_file->file_name);
  dynstr_append_mem(&ds_progress, ":", 1);
unknown's avatar
unknown committed
7964

unknown's avatar
unknown committed
7965 7966 7967 7968 7969 7970
  /* Line in file */
  end= int10_to_str(cur_file->lineno, buf, 10);
  dynstr_append_mem(&ds_progress, buf, (int)(end-buf));


  dynstr_append_mem(&ds_progress, "\n", 1);
7971

7972 7973 7974 7975
  progress_file.write(&ds_progress);

  dynstr_free(&ds_progress);

unknown's avatar
unknown committed
7976
}
7977

7978
#ifdef HAVE_STACKTRACE
7979

7980
static void dump_backtrace(void)
7981 7982 7983
{
  struct st_connection *conn= cur_con;

7984 7985 7986
  fprintf(stderr, "read_command_buf (%p): ", read_command_buf);
  my_safe_print_str(read_command_buf, sizeof(read_command_buf));

7987 7988
  if (conn)
  {
7989 7990
    fprintf(stderr, "conn->name (%p): ", conn->name);
    my_safe_print_str(conn->name, conn->name_len);
7991
#ifdef EMBEDDED_LIBRARY
7992 7993
    fprintf(stderr, "conn->cur_query (%p): ", conn->cur_query);
    my_safe_print_str(conn->cur_query, conn->cur_query_len);
7994 7995 7996 7997 7998 7999
#endif
  }
  fputs("Attempting backtrace...\n", stderr);
  my_print_stacktrace(NULL, my_thread_stack_size);
}

8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012
#else

static void dump_backtrace(void)
{
  fputs("Backtrace not available.\n", stderr);
}

#endif

static sig_handler signal_handler(int sig)
{
  fprintf(stderr, "mysqltest got " SIGNAL_FMT "\n", sig);
  dump_backtrace();
Luis Soares's avatar
Luis Soares committed
8013 8014 8015 8016 8017 8018 8019

  fprintf(stderr, "Writing a core file...\n");
  fflush(stderr);
  my_write_core(sig);
#ifndef __WIN__
  exit(1);			// Shouldn't get here but just in case
#endif
8020 8021
}

8022 8023 8024 8025 8026 8027 8028
#ifdef __WIN__

LONG WINAPI exception_filter(EXCEPTION_POINTERS *exp)
{
  __try
  {
    my_set_exception_pointers(exp);
8029
    signal_handler(exp->ExceptionRecord->ExceptionCode);
8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065
  }
  __except(EXCEPTION_EXECUTE_HANDLER)
  {
    fputs("Got exception in exception handler!\n", stderr);
  }

  return EXCEPTION_CONTINUE_SEARCH;
}


static void init_signal_handling(void)
{
  UINT mode;

  /* Set output destination of messages to the standard error stream. */
  _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
  _CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR);
  _CrtSetReportMode(_CRT_ERROR, _CRTDBG_MODE_FILE);
  _CrtSetReportFile(_CRT_ERROR, _CRTDBG_FILE_STDERR);
  _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE);
  _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);

  /* Do not not display the a error message box. */
  mode= SetErrorMode(0) | SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX;
  SetErrorMode(mode);

  SetUnhandledExceptionFilter(exception_filter);
}

#else /* __WIN__ */

static void init_signal_handling(void)
{
  struct sigaction sa;
  DBUG_ENTER("init_signal_handling");

8066
#ifdef HAVE_STACKTRACE
8067
  my_init_stacktrace();
8068
#endif
8069 8070 8071 8072 8073

  sa.sa_flags = SA_RESETHAND | SA_NODEFER;
  sigemptyset(&sa.sa_mask);
  sigprocmask(SIG_SETMASK, &sa.sa_mask, NULL);

8074
  sa.sa_handler= signal_handler;
8075 8076 8077 8078 8079 8080 8081 8082

  sigaction(SIGSEGV, &sa, NULL);
  sigaction(SIGABRT, &sa, NULL);
#ifdef SIGBUS
  sigaction(SIGBUS, &sa, NULL);
#endif
  sigaction(SIGILL, &sa, NULL);
  sigaction(SIGFPE, &sa, NULL);
8083
  DBUG_VOID_RETURN;
8084 8085 8086
}

#endif /* !__WIN__ */
8087

unknown's avatar
unknown committed
8088
int main(int argc, char **argv)
unknown's avatar
unknown committed
8089
{
unknown's avatar
unknown committed
8090
  struct st_command *command;
8091
  my_bool q_send_flag= 0, abort_flag= 0;
unknown's avatar
unknown committed
8092
  uint command_executed= 0, last_command_executed= 0;
8093
  char save_file[FN_REFLEN];
8094
  bool empty_result= FALSE;
8095
  MY_INIT(argv[0]);
8096
  DBUG_ENTER("main");
8097

unknown's avatar
unknown committed
8098 8099 8100
  save_file[0]= 0;
  TMPDIR[0]= 0;

8101 8102
  init_signal_handling();

8103 8104 8105
  /* Init expected errors */
  memset(&saved_expected_errors, 0, sizeof(saved_expected_errors));

8106 8107 8108 8109 8110 8111
#ifdef EMBEDDED_LIBRARY
  /* set appropriate stack for the 'query' threads */
  (void) pthread_attr_init(&cn_thd_attrib);
  pthread_attr_setstacksize(&cn_thd_attrib, DEFAULT_THREAD_STACK);
#endif /*EMBEDDED_LIBRARY*/

unknown's avatar
unknown committed
8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126
  /* Init file stack */
  memset(file_stack, 0, sizeof(file_stack));
  file_stack_end=
    file_stack + (sizeof(file_stack)/sizeof(struct st_test_file)) - 1;
  cur_file= file_stack;

  /* Init block stack */
  memset(block_stack, 0, sizeof(block_stack));
  block_stack_end=
    block_stack + (sizeof(block_stack)/sizeof(struct st_block)) - 1;
  cur_block= block_stack;
  cur_block->ok= TRUE; /* Outer block should always be executed */
  cur_block->cmd= cmd_none;

  my_init_dynamic_array(&q_lines, sizeof(struct st_command*), 1024, 1024);
unknown's avatar
unknown committed
8127

8128 8129
  if (hash_init2(&var_hash, 64, charset_info,
                 128, 0, 0, get_var_key, var_free, MYF(0)))
unknown's avatar
unknown committed
8130
    die("Variable hash initialization failed");
unknown's avatar
unknown committed
8131

8132 8133 8134 8135 8136 8137 8138 8139
  var_set_string("MYSQL_SERVER_VERSION", MYSQL_SERVER_VERSION);
  var_set_string("MYSQL_SYSTEM_TYPE", SYSTEM_TYPE);
  var_set_string("MYSQL_MACHINE_TYPE", MACHINE_TYPE);
  if (sizeof(void *) == 8) {
    var_set_string("MYSQL_SYSTEM_ARCHITECTURE", "64");
  } else {
    var_set_string("MYSQL_SYSTEM_ARCHITECTURE", "32");
  }
8140

unknown's avatar
unknown committed
8141
  memset(&master_pos, 0, sizeof(master_pos));
8142

unknown's avatar
unknown committed
8143 8144 8145
  parser.current_line= parser.read_lines= 0;
  memset(&var_reg, 0, sizeof(var_reg));

8146
  init_builtin_echo();
unknown's avatar
unknown committed
8147
#ifdef __WIN__
8148
#ifndef USE_CYGWIN
8149
  is_windows= 1;
8150
#endif
unknown's avatar
unknown committed
8151 8152 8153
  init_tmp_sh_file();
  init_win_path_patterns();
#endif
8154

8155
  init_dynamic_string(&ds_res, "", 2048, 2048);
8156
  init_alloc_root(&require_file_root, 1024, 1024);
8157

unknown's avatar
unknown committed
8158
  parse_args(argc, argv);
unknown's avatar
unknown committed
8159

8160
  log_file.open(opt_logdir, result_file_name, ".log");
8161
  verbose_msg("Logging to '%s'.", log_file.file_name());
8162
  if (opt_mark_progress)
8163
  {
8164
    progress_file.open(opt_logdir, result_file_name, ".progress");
8165 8166
    verbose_msg("Tracing progress in '%s'.", progress_file.file_name());
  }
8167

8168 8169 8170 8171 8172 8173 8174
  /* Init connections, allocate 1 extra as buffer + 1 for default */
  connections= (struct st_connection*)
    my_malloc((opt_max_connections+2) * sizeof(struct st_connection),
              MYF(MY_WME | MY_ZEROFILL));
  connections_end= connections + opt_max_connections +1;
  next_con= connections + 1;
  
8175 8176 8177 8178 8179
  var_set_int("$PS_PROTOCOL", ps_protocol);
  var_set_int("$SP_PROTOCOL", sp_protocol);
  var_set_int("$VIEW_PROTOCOL", view_protocol);
  var_set_int("$CURSOR_PROTOCOL", cursor_protocol);

8180 8181 8182 8183 8184 8185 8186 8187
  var_set_int("$ENABLED_QUERY_LOG", 1);
  var_set_int("$ENABLED_ABORT_ON_ERROR", 1);
  var_set_int("$ENABLED_RESULT_LOG", 1);
  var_set_int("$ENABLED_CONNECT_LOG", 0);
  var_set_int("$ENABLED_WARNINGS", 1);
  var_set_int("$ENABLED_INFO", 0);
  var_set_int("$ENABLED_METADATA", 0);

8188 8189
  DBUG_PRINT("info",("result_file: '%s'",
                     result_file_name ? result_file_name : ""));
8190 8191
  verbose_msg("Results saved in '%s'.", 
              result_file_name ? result_file_name : "");
8192 8193 8194
  if (mysql_server_init(embedded_server_arg_count,
			embedded_server_args,
			(char**) embedded_server_groups))
unknown's avatar
unknown committed
8195
    die("Can't initialize MySQL server");
8196
  server_initialized= 1;
8197
  if (cur_file == file_stack && cur_file->file == 0)
8198
  {
8199 8200
    cur_file->file= stdin;
    cur_file->file_name= my_strdup("<stdin>", MYF(MY_WME));
unknown's avatar
unknown committed
8201
    cur_file->lineno= 1;
8202
  }
unknown's avatar
unknown committed
8203
  init_re();
8204 8205 8206 8207 8208

  /* Cursor protcol implies ps protocol */
  if (cursor_protocol)
    ps_protocol= 1;

unknown's avatar
unknown committed
8209 8210 8211 8212 8213
  ps_protocol_enabled= ps_protocol;
  sp_protocol_enabled= sp_protocol;
  view_protocol_enabled= view_protocol;
  cursor_protocol_enabled= cursor_protocol;

8214
  st_connection *con= connections;
8215
  if (! (con->mysql= mysql_init(0)))
unknown's avatar
unknown committed
8216
    die("Failed in mysql_init()");
unknown's avatar
unknown committed
8217
  if (opt_compress)
8218 8219 8220
    mysql_options(con->mysql,MYSQL_OPT_COMPRESS,NullS);
  mysql_options(con->mysql, MYSQL_OPT_LOCAL_INFILE, 0);
  mysql_options(con->mysql, MYSQL_SET_CHARSET_NAME,
8221 8222
                charset_info->csname);
  if (opt_charsets_dir)
8223
    mysql_options(con->mysql, MYSQL_SET_CHARSET_DIR,
8224
                  opt_charsets_dir);
unknown's avatar
unknown committed
8225

8226
  if (opt_protocol)
8227
    mysql_options(con->mysql,MYSQL_OPT_PROTOCOL,(char*)&opt_protocol);
8228

8229 8230 8231 8232 8233 8234
  if (opt_plugin_dir && *opt_plugin_dir)
    mysql_options(con->mysql, MYSQL_PLUGIN_DIR, opt_plugin_dir);

  if (opt_default_auth && *opt_default_auth)
    mysql_options(con->mysql, MYSQL_DEFAULT_AUTH, opt_default_auth);

unknown's avatar
unknown committed
8235
#ifdef HAVE_OPENSSL
unknown's avatar
unknown committed
8236

unknown's avatar
unknown committed
8237
  if (opt_use_ssl)
unknown's avatar
unknown committed
8238
  {
8239
    mysql_ssl_set(con->mysql, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
unknown's avatar
unknown committed
8240
		  opt_ssl_capath, opt_ssl_cipher);
unknown's avatar
unknown committed
8241
#if MYSQL_VERSION_ID >= 50000
8242 8243
    /* Turn on ssl_verify_server_cert only if host is "localhost" */
    opt_ssl_verify_server_cert= opt_host && !strcmp(opt_host, "localhost");
8244
    mysql_options(con->mysql, MYSQL_OPT_SSL_VERIFY_SERVER_CERT,
unknown's avatar
unknown committed
8245 8246 8247
                  &opt_ssl_verify_server_cert);
#endif
  }
unknown's avatar
unknown committed
8248
#endif
8249

8250 8251
#ifdef HAVE_SMEM
  if (shared_memory_base_name)
8252
    mysql_options(con->mysql,MYSQL_SHARED_MEMORY_BASE_NAME,shared_memory_base_name);
8253 8254
#endif

8255
  if (!(con->name = my_strdup("default", MYF(MY_WME))))
unknown's avatar
unknown committed
8256
    die("Out of memory");
unknown's avatar
unknown committed
8257

8258
  safe_connect(con->mysql, con->name, opt_host, opt_user, opt_pass,
8259
               opt_db, opt_port, unix_sock);
unknown's avatar
unknown committed
8260

unknown's avatar
unknown committed
8261 8262
  /* Use all time until exit if no explicit 'start_timer' */
  timer_start= timer_now();
unknown's avatar
unknown committed
8263

8264 8265 8266 8267 8268
  /*
    Initialize $mysql_errno with -1, so we can
    - distinguish it from valid values ( >= 0 ) and
    - detect if there was never a command sent to the server
  */
8269 8270
  var_set_errno(-1);

8271
  set_current_connection(con);
8272

unknown's avatar
unknown committed
8273 8274 8275 8276 8277
  if (opt_include)
  {
    open_file(opt_include);
  }

8278
  verbose_msg("Start processing test commands from '%s' ...", cur_file->file_name);
8279
  while (!read_command(&command) && !abort_flag)
8280
  {
8281
    my_bool ok_to_do;
8282
    int current_line_inc = 1, processed = 0;
unknown's avatar
unknown committed
8283 8284
    if (command->type == Q_UNKNOWN || command->type == Q_COMMENT_WITH_COMMAND)
      get_command_type(command);
8285 8286 8287 8288 8289

    if (parsing_disabled &&
        command->type != Q_ENABLE_PARSING &&
        command->type != Q_DISABLE_PARSING)
    {
8290
      /* Parsing is disabled, silently convert this line to a comment */
8291 8292 8293
      command->type= Q_COMMENT;
    }

8294 8295 8296 8297
    /* (Re-)set abort_on_error for this command */
    command->abort_on_error= (command->expected_errors.count == 0 &&
                              abort_on_error);
    
8298
    /* delimiter needs to be executed so we can continue to parse */
unknown's avatar
unknown committed
8299
    ok_to_do= cur_block->ok || command->type == Q_DELIMITER;
8300 8301 8302 8303 8304 8305 8306 8307
    /*
      Some commands need to be "done" the first time if they may get
      re-iterated over in a true context. This can only happen if there's 
      a while loop at some level above the current block.
    */
    if (!ok_to_do)
    {
      if (command->type == Q_SOURCE ||
8308
          command->type == Q_ERROR ||
8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324
          command->type == Q_WRITE_FILE ||
          command->type == Q_APPEND_FILE ||
	  command->type == Q_PERL)
      {
	for (struct st_block *stb= cur_block-1; stb >= block_stack; stb--)
	{
	  if (stb->cmd == cmd_while)
	  {
	    ok_to_do= 1;
	    break;
	  }
	}
      }
    }

    if (ok_to_do)
unknown's avatar
unknown committed
8325
    {
unknown's avatar
unknown committed
8326
      command->last_argument= command->first_argument;
8327
      processed = 1;
8328 8329
      /* Need to remember this for handle_error() */
      curr_command= command;
unknown's avatar
unknown committed
8330 8331 8332 8333 8334
      switch (command->type) {
      case Q_CONNECT:
        do_connect(command);
        break;
      case Q_CONNECTION: select_connection(command); break;
unknown's avatar
unknown committed
8335
      case Q_DISCONNECT:
8336
      case Q_DIRTY_CLOSE:
unknown's avatar
unknown committed
8337 8338 8339 8340
	do_close_connection(command); break;
      case Q_RPL_PROBE: do_rpl_probe(command); break;
      case Q_ENABLE_RPL_PARSE:	 do_enable_rpl_parse(command); break;
      case Q_DISABLE_RPL_PARSE:  do_disable_rpl_parse(command); break;
8341 8342
      case Q_ENABLE_PREPARE_WARNINGS:  prepare_warnings_enabled=1; break;
      case Q_DISABLE_PREPARE_WARNINGS: prepare_warnings_enabled=0; break;
8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398
      case Q_ENABLE_QUERY_LOG:
        disable_query_log= 0;
        var_set_int("$ENABLED_QUERY_LOG", 1);
        break;
      case Q_DISABLE_QUERY_LOG:
        disable_query_log= 1;
        var_set_int("$ENABLED_QUERY_LOG", 0);
        break;
      case Q_ENABLE_ABORT_ON_ERROR:
        abort_on_error= 1;
        var_set_int("$ENABLED_ABORT_ON_ERROR", 1);
        break;
      case Q_DISABLE_ABORT_ON_ERROR:
        abort_on_error= 0;
        var_set_int("$ENABLED_ABORT_ON_ERROR", 0);
        break;
      case Q_ENABLE_RESULT_LOG:
        disable_result_log= 0;
        var_set_int("$ENABLED_RESULT_LOG", 1);
        break;
      case Q_DISABLE_RESULT_LOG:
        disable_result_log=1;
        var_set_int("$ENABLED_RESULT_LOG", 0);
        break;
      case Q_ENABLE_CONNECT_LOG:
        disable_connect_log=0;
        var_set_int("$ENABLED_CONNECT_LOG", 1);
        break;
      case Q_DISABLE_CONNECT_LOG:
        disable_connect_log=1;
        var_set_int("$ENABLED_CONNECT_LOG", 0);
        break;
      case Q_ENABLE_WARNINGS:
        disable_warnings= 0;
        var_set_int("$ENABLED_WARNINGS", 1);
        break;
      case Q_DISABLE_WARNINGS:
        disable_warnings= 1;
        var_set_int("$ENABLED_WARNINGS", 0);
        break;
      case Q_ENABLE_INFO:
        disable_info= 0;
        var_set_int("$ENABLED_INFO", 1);
        break;
      case Q_DISABLE_INFO:
        disable_info= 1;
        var_set_int("$ENABLED_INFO", 0);
        break;
      case Q_ENABLE_METADATA:
        display_metadata= 1;
        var_set_int("$ENABLED_METADATA", 1);
        break;
      case Q_DISABLE_METADATA:
        display_metadata= 0;
        var_set_int("$ENABLED_METADATA", 0);
        break;
unknown's avatar
unknown committed
8399 8400 8401 8402 8403 8404 8405 8406 8407
      case Q_SOURCE: do_source(command); break;
      case Q_SLEEP: do_sleep(command, 0); break;
      case Q_REAL_SLEEP: do_sleep(command, 1); break;
      case Q_WAIT_FOR_SLAVE_TO_STOP: do_wait_for_slave_to_stop(command); break;
      case Q_INC: do_modify_var(command, DO_INC); break;
      case Q_DEC: do_modify_var(command, DO_DEC); break;
      case Q_ECHO: do_echo(command); command_executed++; break;
      case Q_SYSTEM: do_system(command); break;
      case Q_REMOVE_FILE: do_remove_file(command); break;
8408
      case Q_REMOVE_FILES_WILDCARD: do_remove_files_wildcard(command); break;
8409 8410
      case Q_MKDIR: do_mkdir(command); break;
      case Q_RMDIR: do_rmdir(command); break;
8411 8412 8413 8414 8415 8416 8417
      case Q_LIST_FILES: do_list_files(command); break;
      case Q_LIST_FILES_WRITE_FILE:
        do_list_files_write_file_command(command, FALSE);
        break;
      case Q_LIST_FILES_APPEND_FILE:
        do_list_files_write_file_command(command, TRUE);
        break;
unknown's avatar
unknown committed
8418 8419
      case Q_FILE_EXIST: do_file_exist(command); break;
      case Q_WRITE_FILE: do_write_file(command); break;
8420
      case Q_APPEND_FILE: do_append_file(command); break;
8421
      case Q_DIFF_FILES: do_diff_files(command); break;
8422
      case Q_SEND_QUIT: do_send_quit(command); break;
8423
      case Q_CHANGE_USER: do_change_user(command); break;
unknown's avatar
unknown committed
8424
      case Q_CAT_FILE: do_cat_file(command); break;
unknown's avatar
unknown committed
8425
      case Q_COPY_FILE: do_copy_file(command); break;
8426
      case Q_MOVE_FILE: do_move_file(command); break;
unknown's avatar
unknown committed
8427
      case Q_CHMOD_FILE: do_chmod_file(command); break;
unknown's avatar
unknown committed
8428
      case Q_PERL: do_perl(command); break;
8429
      case Q_DELIMITER:
unknown's avatar
unknown committed
8430
        do_delimiter(command);
8431
	break;
8432 8433 8434 8435 8436 8437
      case Q_DISPLAY_VERTICAL_RESULTS:
        display_result_vertically= TRUE;
        break;
      case Q_DISPLAY_HORIZONTAL_RESULTS:
	display_result_vertically= FALSE;
        break;
8438
      case Q_SORTED_RESULT:
8439 8440 8441 8442 8443 8444
        /*
          Turn on sorting of result set, will be reset after next
          command
        */
	display_result_sorted= TRUE;
        break;
8445 8446 8447 8448 8449 8450 8451
      case Q_LOWERCASE:
        /*
          Turn on lowercasing of result, will be reset after next
          command
        */
        display_result_lower= TRUE;
        break;
unknown's avatar
unknown committed
8452
      case Q_LET: do_let(command); break;
8453
      case Q_EVAL_RESULT:
8454
        die("'eval_result' command  is deprecated");
8455
      case Q_EVAL:
8456 8457
      case Q_QUERY_VERTICAL:
      case Q_QUERY_HORIZONTAL:
unknown's avatar
unknown committed
8458
	if (command->query == command->query_buf)
unknown's avatar
unknown committed
8459
        {
8460
          /* Skip the first part of command, i.e query_xxx */
unknown's avatar
unknown committed
8461 8462
	  command->query= command->first_argument;
          command->first_word_len= 0;
unknown's avatar
unknown committed
8463
        }
8464
	/* fall through */
8465
      case Q_QUERY:
8466
      case Q_REAP:
8467
      {
8468 8469 8470 8471
	my_bool old_display_result_vertically= display_result_vertically;
        /* Default is full query, both reap and send  */
        int flags= QUERY_REAP_FLAG | QUERY_SEND_FLAG;

unknown's avatar
unknown committed
8472 8473 8474 8475 8476 8477 8478 8479 8480 8481
        if (q_send_flag)
        {
          /* Last command was an empty 'send' */
          flags= QUERY_SEND_FLAG;
          q_send_flag= 0;
        }
        else if (command->type == Q_REAP)
        {
          flags= QUERY_REAP_FLAG;
        }
8482 8483

        /* Check for special property for this query */
8484
        display_result_vertically|= (command->type == Q_QUERY_VERTICAL);
unknown's avatar
unknown committed
8485

8486
	if (save_file[0])
8487
	{
8488 8489 8490
          if (!(command->require_file= strdup_root(&require_file_root,
                                                   save_file)))
            die("out of memory for require_file");
8491
	  save_file[0]= 0;
8492
	}
unknown's avatar
unknown committed
8493
	run_query(cur_con, command, flags);
unknown's avatar
unknown committed
8494 8495
	command_executed++;
        command->last_argument= command->end;
8496 8497 8498 8499

        /* Restore settings */
	display_result_vertically= old_display_result_vertically;

unknown's avatar
unknown committed
8500
	break;
8501
      }
unknown's avatar
unknown committed
8502
      case Q_SEND:
8503
      case Q_SEND_EVAL:
unknown's avatar
unknown committed
8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517
        if (!*command->first_argument)
        {
          /*
            This is a send without arguments, it indicates that _next_ query
            should be send only
          */
          q_send_flag= 1;
          break;
        }

        /* Remove "send" if this is first iteration */
	if (command->query == command->query_buf)
	  command->query= command->first_argument;

8518
	/*
unknown's avatar
unknown committed
8519 8520 8521
	  run_query() can execute a query partially, depending on the flags.
	  QUERY_SEND_FLAG flag without QUERY_REAP_FLAG tells it to just send
          the query and read the result some time later when reap instruction
8522
	  is given on this connection.
unknown's avatar
unknown committed
8523
        */
unknown's avatar
unknown committed
8524
	run_query(cur_con, command, QUERY_SEND_FLAG);
unknown's avatar
unknown committed
8525 8526
	command_executed++;
        command->last_argument= command->end;
unknown's avatar
unknown committed
8527
	break;
8528 8529
      case Q_REQUIRE:
	do_get_file_name(command, save_file, sizeof(save_file));
8530
	break;
unknown's avatar
unknown committed
8531
      case Q_ERROR:
unknown's avatar
unknown committed
8532
        do_get_errcodes(command);
unknown's avatar
unknown committed
8533
	break;
unknown's avatar
unknown committed
8534
      case Q_REPLACE:
unknown's avatar
unknown committed
8535
	do_get_replace(command);
unknown's avatar
unknown committed
8536
	break;
unknown's avatar
unknown committed
8537 8538 8539
      case Q_REPLACE_REGEX:
        do_get_replace_regex(command);
        break;
8540
      case Q_REPLACE_COLUMN:
unknown's avatar
unknown committed
8541
	do_get_replace_column(command);
8542
	break;
8543
      case Q_SAVE_MASTER_POS: do_save_master_pos(); break;
unknown's avatar
unknown committed
8544
      case Q_SYNC_WITH_MASTER: do_sync_with_master(command); break;
8545 8546 8547
      case Q_SYNC_SLAVE_WITH_MASTER:
      {
	do_save_master_pos();
unknown's avatar
unknown committed
8548 8549
	if (*command->first_argument)
	  select_connection(command);
8550
	else
8551
	  select_connection_name("slave");
8552
	do_sync_with_master2(command, 0);
8553 8554
	break;
      }
8555
      case Q_COMMENT:				/* Ignore row */
unknown's avatar
unknown committed
8556
        command->last_argument= command->end;
8557
	break;
8558
      case Q_PING:
8559
        handle_command_error(command, mysql_ping(cur_con->mysql), -1);
8560
        break;
8561
      case Q_SEND_SHUTDOWN:
8562
        handle_command_error(command,
8563
                             mysql_shutdown(cur_con->mysql,
8564
                                            SHUTDOWN_DEFAULT), -1);
8565
        break;
8566 8567
      case Q_SHUTDOWN_SERVER:
        do_shutdown_server(command);
8568
        break;
8569
      case Q_EXEC:
unknown's avatar
unknown committed
8570 8571
	do_exec(command);
	command_executed++;
8572
	break;
unknown's avatar
unknown committed
8573 8574 8575 8576 8577 8578 8579 8580
      case Q_START_TIMER:
	/* Overwrite possible earlier start of timer */
	timer_start= timer_now();
	break;
      case Q_END_TIMER:
	/* End timer before ending mysqltest */
	timer_output();
	break;
8581
      case Q_CHARACTER_SET:
unknown's avatar
unknown committed
8582
	do_set_charset(command);
unknown's avatar
unknown committed
8583
	break;
8584 8585
      case Q_DISABLE_PS_PROTOCOL:
        ps_protocol_enabled= 0;
8586 8587
        /* Close any open statements */
        close_statements();
8588 8589 8590 8591
        break;
      case Q_ENABLE_PS_PROTOCOL:
        ps_protocol_enabled= ps_protocol;
        break;
8592
      case Q_DISABLE_RECONNECT:
8593
        set_reconnect(cur_con->mysql, 0);
8594 8595
        break;
      case Q_ENABLE_RECONNECT:
8596
        set_reconnect(cur_con->mysql, 1);
8597 8598
        /* Close any open statements - no reconnect, need new prepare */
        close_statements();
unknown's avatar
unknown committed
8599 8600 8601 8602 8603 8604
        break;
      case Q_DISABLE_PARSING:
        if (parsing_disabled == 0)
          parsing_disabled= 1;
        else
          die("Parsing is already disabled");
8605
        break;
unknown's avatar
unknown committed
8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616
      case Q_ENABLE_PARSING:
        /*
          Ensure we don't get parsing_disabled < 0 as this would accidentally
          disable code we don't want to have disabled
        */
        if (parsing_disabled == 1)
          parsing_disabled= 0;
        else
          die("Parsing is already enabled");
        break;
      case Q_DIE:
8617
        /* Abort test with error code and error message */
unknown's avatar
unknown committed
8618 8619
        die("%s", command->first_argument);
        break;
8620 8621 8622 8623
      case Q_EXIT:
        /* Stop processing any more commands */
        abort_flag= 1;
        break;
8624
      case Q_SKIP:
8625 8626 8627 8628
        /* Eval the query, thus replacing all environment variables */
        dynstr_set(&ds_res, 0);
        do_eval(&ds_res, command->first_argument, command->end, FALSE);
        abort_not_supported_test("%s",ds_res.str);
8629
        break;
unknown's avatar
unknown committed
8630

8631 8632 8633 8634
      case Q_RESULT:
        die("result, deprecated command");
        break;

unknown's avatar
unknown committed
8635 8636
      default:
        processed= 0;
8637
        break;
unknown's avatar
unknown committed
8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653
      }
    }

    if (!processed)
    {
      current_line_inc= 0;
      switch (command->type) {
      case Q_WHILE: do_block(cmd_while, command); break;
      case Q_IF: do_block(cmd_if, command); break;
      case Q_END_BLOCK: do_done(command); break;
      default: current_line_inc = 1; break;
      }
    }
    else
      check_eol_junk(command->last_argument);

8654 8655
    if (command->type != Q_ERROR &&
        command->type != Q_COMMENT)
unknown's avatar
unknown committed
8656 8657
    {
      /*
8658
        As soon as any non "error" command or comment has been executed,
unknown's avatar
unknown committed
8659 8660 8661 8662 8663
        the array with expected errors should be cleared
      */
      memset(&saved_expected_errors, 0, sizeof(saved_expected_errors));
    }

8664
    if (command_executed != last_command_executed || command->used_replace)
unknown's avatar
unknown committed
8665 8666 8667 8668 8669 8670
    {
      /*
        As soon as any command has been executed,
        the replace structures should be cleared
      */
      free_all_replace();
8671

8672
      /* Also reset "sorted_result" and "lowercase"*/
8673
      display_result_sorted= FALSE;
8674
      display_result_lower= FALSE;
unknown's avatar
unknown committed
8675 8676 8677 8678 8679 8680
    }
    last_command_executed= command_executed;

    parser.current_line += current_line_inc;
    if ( opt_mark_progress )
      mark_progress(command, parser.current_line);
8681

Serge Kozlov's avatar
Serge Kozlov committed
8682
    /* Write result from command to log file immediately */
8683
    log_file.write(&ds_res);
Serge Kozlov's avatar
Serge Kozlov committed
8684
    log_file.flush();
8685
    dynstr_set(&ds_res, 0);
unknown's avatar
unknown committed
8686 8687
  }

8688 8689
  log_file.close();

unknown's avatar
unknown committed
8690
  start_lineno= 0;
8691
  verbose_msg("... Done processing test commands.");
unknown's avatar
unknown committed
8692 8693 8694 8695 8696 8697 8698

  if (parsing_disabled)
    die("Test ended with parsing disabled");

  /*
    The whole test has been executed _sucessfully_.
    Time to compare result or save it to record file.
8699
    The entire output from test is in the log file
unknown's avatar
unknown committed
8700
  */
8701
  if (log_file.bytes_written())
unknown's avatar
unknown committed
8702
  {
8703
    if (result_file_name)
unknown's avatar
unknown committed
8704
    {
8705 8706
      /* A result file has been specified */

unknown's avatar
unknown committed
8707 8708
      if (record)
      {
8709 8710 8711 8712 8713 8714 8715
	/* Recording */

        /* save a copy of the log to result file */
        if (my_copy(log_file.file_name(), result_file_name, MYF(0)) != 0)
          die("Failed to copy '%s' to '%s', errno: %d",
              log_file.file_name(), result_file_name, errno);

unknown's avatar
unknown committed
8716 8717 8718
      }
      else
      {
8719 8720
	/* Check that the output from test is equal to result file */
	check_result();
unknown's avatar
unknown committed
8721 8722 8723 8724 8725
      }
    }
  }
  else
  {
8726 8727 8728 8729 8730 8731 8732 8733 8734 8735
    /* Empty output is an error *unless* we also have an empty result file */
    if (! result_file_name || record ||
        compare_files (log_file.file_name(), result_file_name))
    {
      die("The test didn't produce any output");
    }
    else 
    {
      empty_result= TRUE;  /* Meaning empty was expected */
    }
unknown's avatar
unknown committed
8736 8737
  }

8738 8739
  if (!command_executed && result_file_name && !empty_result)
    die("No queries executed but non-empty result file found!");
unknown's avatar
unknown committed
8740

8741
  verbose_msg("Test has succeeded!");
unknown's avatar
unknown committed
8742 8743
  timer_output();
  /* Yes, if we got this far the test has suceeded! Sakila smiles */
unknown's avatar
unknown committed
8744 8745
  cleanup_and_exit(0);
  return 0; /* Keep compiler happy too */
unknown's avatar
unknown committed
8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775
}


/*
  A primitive timer that give results in milliseconds if the
  --timer-file=<filename> is given. The timer result is written
  to that file when the result is available. To not confuse
  mysql-test-run with an old obsolete result, we remove the file
  before executing any commands. The time we measure is

  - If no explicit 'start_timer' or 'end_timer' is given in the
  test case, the timer measure how long we execute in mysqltest.

  - If only 'start_timer' is given we measure how long we execute
  from that point until we terminate mysqltest.

  - If only 'end_timer' is given we measure how long we execute
  from that we enter mysqltest to the 'end_timer' is command is
  executed.

  - If both 'start_timer' and 'end_timer' are given we measure
  the time between executing the two commands.
*/

void timer_output(void)
{
  if (timer_file)
  {
    char buf[32], *end;
    ulonglong timer= timer_now() - timer_start;
8776
    end= longlong10_to_str(timer, buf, 10);
unknown's avatar
unknown committed
8777 8778 8779 8780 8781 8782 8783 8784 8785
    str_to_file(timer_file,buf, (int) (end-buf));
    /* Timer has been written to the file, don't use it anymore */
    timer_file= 0;
  }
}


ulonglong timer_now(void)
{
unknown's avatar
unknown committed
8786
  return my_micro_time() / 1000;
unknown's avatar
unknown committed
8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808
}


/*
  Get arguments for replace_columns. The syntax is:
  replace-column column_number to_string [column_number to_string ...]
  Where each argument may be quoted with ' or "
  A argument may also be a variable, in which case the value of the
  variable is replaced.
*/

void do_get_replace_column(struct st_command *command)
{
  char *from= command->first_argument;
  char *buff, *start;
  DBUG_ENTER("get_replace_columns");

  free_replace_column();
  if (!*from)
    die("Missing argument in %s", command->query);

  /* Allocate a buffer for results */
8809
  start= buff= (char*)my_malloc(strlen(from)+1,MYF(MY_WME | MY_FAE));
unknown's avatar
unknown committed
8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825
  while (*from)
  {
    char *to;
    uint column_number;
    to= get_string(&buff, &from, command);
    if (!(column_number= atoi(to)) || column_number > MAX_COLUMNS)
      die("Wrong column number to replace_column in '%s'", command->query);
    if (!*from)
      die("Wrong number of arguments to replace_column in '%s'", command->query);
    to= get_string(&buff, &from, command);
    my_free(replace_column[column_number-1], MY_ALLOW_ZERO_PTR);
    replace_column[column_number-1]= my_strdup(to, MYF(MY_WME | MY_FAE));
    set_if_bigger(max_replace_column, column_number);
  }
  my_free(start, MYF(0));
  command->last_argument= command->end;
8826 8827

  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854
}


void free_replace_column()
{
  uint i;
  for (i=0 ; i < max_replace_column ; i++)
  {
    if (replace_column[i])
    {
      my_free(replace_column[i], 0);
      replace_column[i]= 0;
    }
  }
  max_replace_column= 0;
}


/****************************************************************************/
/*
  Replace functions
*/

/* Definitions for replace result */

typedef struct st_pointer_array {		/* when using array-strings */
  TYPELIB typelib;				/* Pointer to strings */
8855
  uchar	*str;					/* Strings is here */
unknown's avatar
unknown committed
8856 8857 8858 8859 8860
  int7	*flag;					/* Flag about each var. */
  uint	array_allocs,max_count,length,max_length;
} POINTER_ARRAY;

struct st_replace;
8861 8862 8863
struct st_replace *init_replace(char * *from, char * *to, uint count,
				char * word_end_chars);
int insert_pointer_name(reg1 POINTER_ARRAY *pa,char * name);
unknown's avatar
unknown committed
8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892
void replace_strings_append(struct st_replace *rep, DYNAMIC_STRING* ds,
                            const char *from, int len);
void free_pointer_array(POINTER_ARRAY *pa);

struct st_replace *glob_replace;

/*
  Get arguments for replace. The syntax is:
  replace from to [from to ...]
  Where each argument may be quoted with ' or "
  A argument may also be a variable, in which case the value of the
  variable is replaced.
*/

void do_get_replace(struct st_command *command)
{
  uint i;
  char *from= command->first_argument;
  char *buff, *start;
  char word_end_chars[256], *pos;
  POINTER_ARRAY to_array, from_array;
  DBUG_ENTER("get_replace");

  free_replace();

  bzero((char*) &to_array,sizeof(to_array));
  bzero((char*) &from_array,sizeof(from_array));
  if (!*from)
    die("Missing argument in %s", command->query);
8893
  start= buff= (char*)my_malloc(strlen(from)+1,MYF(MY_WME | MY_FAE));
unknown's avatar
unknown committed
8894 8895 8896 8897 8898 8899 8900
  while (*from)
  {
    char *to= buff;
    to= get_string(&buff, &from, command);
    if (!*from)
      die("Wrong number of arguments to replace_result in '%s'",
          command->query);
unknown's avatar
unknown committed
8901 8902 8903
#ifdef __WIN__
    fix_win_paths(to, from - to);
#endif
unknown's avatar
unknown committed
8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923
    insert_pointer_name(&from_array,to);
    to= get_string(&buff, &from, command);
    insert_pointer_name(&to_array,to);
  }
  for (i= 1,pos= word_end_chars ; i < 256 ; i++)
    if (my_isspace(charset_info,i))
      *pos++= i;
  *pos=0;					/* End pointer */
  if (!(glob_replace= init_replace((char**) from_array.typelib.type_names,
				  (char**) to_array.typelib.type_names,
				  (uint) from_array.typelib.count,
				  word_end_chars)))
    die("Can't initialize replace from '%s'", command->query);
  free_pointer_array(&from_array);
  free_pointer_array(&to_array);
  my_free(start, MYF(0));
  command->last_argument= command->end;
  DBUG_VOID_RETURN;
}

8924

unknown's avatar
unknown committed
8925 8926 8927 8928 8929
void free_replace()
{
  DBUG_ENTER("free_replace");
  if (glob_replace)
  {
8930
    my_free(glob_replace,MYF(0));
unknown's avatar
unknown committed
8931 8932 8933 8934
    glob_replace=0;
  }
  DBUG_VOID_RETURN;
}
8935

unknown's avatar
unknown committed
8936 8937

typedef struct st_replace {
8938
  int found;
unknown's avatar
unknown committed
8939 8940 8941 8942
  struct st_replace *next[256];
} REPLACE;

typedef struct st_replace_found {
8943
  int found;
unknown's avatar
unknown committed
8944 8945
  uint to_offset;
  int from_offset;
8946
  char *replace_string;
unknown's avatar
unknown committed
8947 8948 8949 8950
} REPLACE_STRING;


void replace_strings_append(REPLACE *rep, DYNAMIC_STRING* ds,
unknown's avatar
unknown committed
8951 8952
                            const char *str,
                            int len __attribute__((unused)))
unknown's avatar
unknown committed
8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969
{
  reg1 REPLACE *rep_pos;
  reg2 REPLACE_STRING *rep_str;
  const char *start, *from;
  DBUG_ENTER("replace_strings_append");

  start= from= str;
  rep_pos=rep+1;
  for (;;)
  {
    /* Loop through states */
    DBUG_PRINT("info", ("Looping through states"));
    while (!rep_pos->found)
      rep_pos= rep_pos->next[(uchar) *from++];

    /* Does this state contain a string to be replaced */
    if (!(rep_str = ((REPLACE_STRING*) rep_pos))->replace_string)
8970
    {
unknown's avatar
unknown committed
8971 8972 8973 8974
      /* No match found */
      dynstr_append_mem(ds, start, from - start - 1);
      DBUG_PRINT("exit", ("Found no more string to replace, appended: %s", start));
      DBUG_VOID_RETURN;
unknown's avatar
unknown committed
8975 8976
    }

unknown's avatar
unknown committed
8977
    /* Found a string that needs to be replaced */
8978
    DBUG_PRINT("info", ("found: %d, to_offset: %u, from_offset: %d, string: %s",
unknown's avatar
unknown committed
8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989
                        rep_str->found, rep_str->to_offset,
                        rep_str->from_offset, rep_str->replace_string));

    /* Append part of original string before replace string */
    dynstr_append_mem(ds, start, (from - rep_str->to_offset) - start);

    /* Append replace string */
    dynstr_append_mem(ds, rep_str->replace_string,
                      strlen(rep_str->replace_string));

    if (!*(from-=rep_str->from_offset) && rep_pos->found != 2)
8990
    {
unknown's avatar
unknown committed
8991 8992 8993
      /* End of from string */
      DBUG_PRINT("exit", ("Found end of from string"));
      DBUG_VOID_RETURN;
8994
    }
unknown's avatar
unknown committed
8995 8996 8997
    DBUG_ASSERT(from <= str+len);
    start= from;
    rep_pos=rep;
8998
  }
unknown's avatar
unknown committed
8999
}
9000

9001

unknown's avatar
unknown committed
9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097
/*
  Regex replace  functions
*/


/* Stores regex substitutions */

struct st_regex
{
  char* pattern; /* Pattern to be replaced */
  char* replace; /* String or expression to replace the pattern with */
  int icase; /* true if the match is case insensitive */
};

struct st_replace_regex
{
  DYNAMIC_ARRAY regex_arr; /* stores a list of st_regex subsitutions */

  /*
    Temporary storage areas for substitutions. To reduce unnessary copying
    and memory freeing/allocation, we pre-allocate two buffers, and alternate
    their use, one for input/one for output, the roles changing on the next
    st_regex substition. At the end of substitutions  buf points to the
    one containing the final result.
  */
  char* buf;
  char* even_buf;
  char* odd_buf;
  int even_buf_len;
  int odd_buf_len;
};

struct st_replace_regex *glob_replace_regex= 0;

int reg_replace(char** buf_p, int* buf_len_p, char *pattern, char *replace,
                char *string, int icase);



/*
  Finds the next (non-escaped) '/' in the expression.
  (If the character '/' is needed, it can be escaped using '\'.)
*/

#define PARSE_REGEX_ARG                         \
  while (p < expr_end)                          \
  {                                             \
    char c= *p;                                 \
    if (c == '/')                               \
    {                                           \
      if (last_c == '\\')                       \
      {                                         \
        buf_p[-1]= '/';                         \
      }                                         \
      else                                      \
      {                                         \
        *buf_p++ = 0;                           \
        break;                                  \
      }                                         \
    }                                           \
    else                                        \
      *buf_p++ = c;                             \
                                                \
    last_c= c;                                  \
    p++;                                        \
  }                                             \
                                                \
/*
  Initializes the regular substitution expression to be used in the
  result output of test.

  Returns: st_replace_regex struct with pairs of substitutions
*/

struct st_replace_regex* init_replace_regex(char* expr)
{
  struct st_replace_regex* res;
  char* buf,*expr_end;
  char* p;
  char* buf_p;
  uint expr_len= strlen(expr);
  char last_c = 0;
  struct st_regex reg;

  /* my_malloc() will die on fail with MY_FAE */
  res=(struct st_replace_regex*)my_malloc(
                                          sizeof(*res)+expr_len ,MYF(MY_FAE+MY_WME));
  my_init_dynamic_array(&res->regex_arr,sizeof(struct st_regex),128,128);

  buf= (char*)res + sizeof(*res);
  expr_end= expr + expr_len;
  p= expr;
  buf_p= buf;

  /* for each regexp substitution statement */
  while (p < expr_end)
9098
  {
unknown's avatar
unknown committed
9099 9100 9101
    bzero(&reg,sizeof(reg));
    /* find the start of the statement */
    while (p < expr_end)
9102
    {
unknown's avatar
unknown committed
9103 9104 9105
      if (*p == '/')
        break;
      p++;
9106
    }
unknown's avatar
unknown committed
9107 9108

    if (p == expr_end || ++p == expr_end)
9109
    {
unknown's avatar
unknown committed
9110 9111 9112 9113
      if (res->regex_arr.elements)
        break;
      else
        goto err;
9114
    }
unknown's avatar
unknown committed
9115 9116
    /* we found the start */
    reg.pattern= buf_p;
9117

unknown's avatar
unknown committed
9118 9119
    /* Find first argument -- pattern string to be removed */
    PARSE_REGEX_ARG
9120

unknown's avatar
unknown committed
9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140
      if (p == expr_end || ++p == expr_end)
        goto err;

    /* buf_p now points to the replacement pattern terminated with \0 */
    reg.replace= buf_p;

    /* Find second argument -- replace string to replace pattern */
    PARSE_REGEX_ARG

      if (p == expr_end)
        goto err;

    /* skip the ending '/' in the statement */
    p++;

    /* Check if we should do matching case insensitive */
    if (p < expr_end && *p == 'i')
      reg.icase= 1;

    /* done parsing the statement, now place it in regex_arr */
9141
    if (insert_dynamic(&res->regex_arr,(uchar*) &reg))
unknown's avatar
unknown committed
9142
      die("Out of memory");
9143
  }
unknown's avatar
unknown committed
9144 9145 9146 9147 9148 9149
  res->odd_buf_len= res->even_buf_len= 8192;
  res->even_buf= (char*)my_malloc(res->even_buf_len,MYF(MY_WME+MY_FAE));
  res->odd_buf= (char*)my_malloc(res->odd_buf_len,MYF(MY_WME+MY_FAE));
  res->buf= res->even_buf;

  return res;
unknown's avatar
unknown committed
9150

unknown's avatar
unknown committed
9151
err:
9152
  my_free(res,0);
unknown's avatar
unknown committed
9153 9154 9155
  die("Error parsing replace_regex \"%s\"", expr);
  return 0;
}
9156

9157
/*
unknown's avatar
unknown committed
9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173
  Execute all substitutions on val.

  Returns: true if substituition was made, false otherwise
  Side-effect: Sets r->buf to be the buffer with all substitutions done.

  IN:
  struct st_replace_regex* r
  char* val
  Out:
  struct st_replace_regex* r
  r->buf points at the resulting buffer
  r->even_buf and r->odd_buf might have been reallocated
  r->even_buf_len and r->odd_buf_len might have been changed

  TODO:  at some point figure out if there is a way to do everything
  in one pass
9174 9175
*/

unknown's avatar
unknown committed
9176
int multi_reg_replace(struct st_replace_regex* r,char* val)
9177
{
unknown's avatar
unknown committed
9178 9179 9180
  uint i;
  char* in_buf, *out_buf;
  int* buf_len_p;
9181

unknown's avatar
unknown committed
9182 9183 9184 9185
  in_buf= val;
  out_buf= r->even_buf;
  buf_len_p= &r->even_buf_len;
  r->buf= 0;
9186

unknown's avatar
unknown committed
9187 9188
  /* For each substitution, do the replace */
  for (i= 0; i < r->regex_arr.elements; i++)
9189
  {
unknown's avatar
unknown committed
9190 9191 9192
    struct st_regex re;
    char* save_out_buf= out_buf;

9193
    get_dynamic(&r->regex_arr,(uchar*)&re,i);
unknown's avatar
unknown committed
9194 9195 9196

    if (!reg_replace(&out_buf, buf_len_p, re.pattern, re.replace,
                     in_buf, re.icase))
9197
    {
unknown's avatar
unknown committed
9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214
      /* if the buffer has been reallocated, make adjustements */
      if (save_out_buf != out_buf)
      {
        if (save_out_buf == r->even_buf)
          r->even_buf= out_buf;
        else
          r->odd_buf= out_buf;
      }

      r->buf= out_buf;
      if (in_buf == val)
        in_buf= r->odd_buf;

      swap_variables(char*,in_buf,out_buf);

      buf_len_p= (out_buf == r->even_buf) ? &r->even_buf_len :
        &r->odd_buf_len;
9215 9216
    }
  }
unknown's avatar
unknown committed
9217 9218

  return (r->buf == 0);
9219
}
unknown's avatar
unknown committed
9220

unknown's avatar
unknown committed
9221 9222 9223 9224 9225 9226 9227 9228 9229 9230
/*
  Parse the regular expression to be used in all result files
  from now on.

  The syntax is --replace_regex /from/to/i /from/to/i ...
  i means case-insensitive match. If omitted, the match is
  case-sensitive

*/
void do_get_replace_regex(struct st_command *command)
unknown's avatar
unknown committed
9231
{
unknown's avatar
unknown committed
9232 9233 9234 9235 9236
  char *expr= command->first_argument;
  free_replace_regex();
  if (!(glob_replace_regex=init_replace_regex(expr)))
    die("Could not init replace_regex");
  command->last_argument= command->end;
unknown's avatar
unknown committed
9237 9238
}

unknown's avatar
unknown committed
9239
void free_replace_regex()
unknown's avatar
unknown committed
9240
{
unknown's avatar
unknown committed
9241 9242 9243 9244 9245
  if (glob_replace_regex)
  {
    delete_dynamic(&glob_replace_regex->regex_arr);
    my_free(glob_replace_regex->even_buf,MYF(MY_ALLOW_ZERO_PTR));
    my_free(glob_replace_regex->odd_buf,MYF(MY_ALLOW_ZERO_PTR));
9246
    my_free(glob_replace_regex,MYF(0));
unknown's avatar
unknown committed
9247 9248
    glob_replace_regex=0;
  }
unknown's avatar
unknown committed
9249 9250
}

unknown's avatar
unknown committed
9251 9252


unknown's avatar
unknown committed
9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266
/*
  auxiluary macro used by reg_replace
  makes sure the result buffer has sufficient length
*/
#define SECURE_REG_BUF   if (buf_len < need_buf_len)                    \
  {                                                                     \
    int off= res_p - buf;                                               \
    buf= (char*)my_realloc(buf,need_buf_len,MYF(MY_WME+MY_FAE));        \
    res_p= buf + off;                                                   \
    buf_len= need_buf_len;                                              \
  }                                                                     \
                                                                        \
/*
  Performs a regex substitution
unknown's avatar
unknown committed
9267

unknown's avatar
unknown committed
9268
  IN:
unknown's avatar
unknown committed
9269

unknown's avatar
unknown committed
9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281
  buf_p - result buffer pointer. Will change if reallocated
  buf_len_p - result buffer length. Will change if the buffer is reallocated
  pattern - regexp pattern to match
  replace - replacement expression
  string - the string to perform substituions in
  icase - flag, if set to 1 the match is case insensitive
*/
int reg_replace(char** buf_p, int* buf_len_p, char *pattern,
                char *replace, char *string, int icase)
{
  my_regex_t r;
  my_regmatch_t *subs;
unknown's avatar
unknown committed
9282
  char *replace_end;
unknown's avatar
unknown committed
9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298
  char *buf= *buf_p;
  int len;
  int buf_len, need_buf_len;
  int cflags= REG_EXTENDED;
  int err_code;
  char *res_p,*str_p,*str_end;

  buf_len= *buf_len_p;
  len= strlen(string);
  str_end= string + len;

  /* start with a buffer of a reasonable size that hopefully will not
     need to be reallocated
  */
  need_buf_len= len * 2 + 1;
  res_p= buf;
unknown's avatar
unknown committed
9299

unknown's avatar
unknown committed
9300
  SECURE_REG_BUF
unknown's avatar
unknown committed
9301

unknown's avatar
unknown committed
9302 9303
  if (icase)
    cflags|= REG_ICASE;
unknown's avatar
unknown committed
9304

unknown's avatar
unknown committed
9305 9306 9307 9308 9309
  if ((err_code= my_regcomp(&r,pattern,cflags,&my_charset_latin1)))
  {
    check_regerr(&r,err_code);
    return 1;
  }
unknown's avatar
unknown committed
9310

unknown's avatar
unknown committed
9311 9312
  subs= (my_regmatch_t*)my_malloc(sizeof(my_regmatch_t) * (r.re_nsub+1),
                                  MYF(MY_WME+MY_FAE));
unknown's avatar
unknown committed
9313

unknown's avatar
unknown committed
9314 9315 9316
  *res_p= 0;
  str_p= string;
  replace_end= replace + strlen(replace);
unknown's avatar
unknown committed
9317

unknown's avatar
unknown committed
9318 9319
  /* for each pattern match instance perform a replacement */
  while (!err_code)
unknown's avatar
unknown committed
9320
  {
unknown's avatar
unknown committed
9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342
    /* find the match */
    err_code= my_regexec(&r,str_p, r.re_nsub+1, subs,
                         (str_p == string) ? REG_NOTBOL : 0);

    /* if regular expression error (eg. bad syntax, or out of memory) */
    if (err_code && err_code != REG_NOMATCH)
    {
      check_regerr(&r,err_code);
      my_regfree(&r);
      return 1;
    }

    /* if match found */
    if (!err_code)
    {
      char* expr_p= replace;
      int c;

      /*
        we need at least what we have so far in the buffer + the part
        before this match
      */
unknown's avatar
unknown committed
9343
      need_buf_len= (res_p - buf) + (int) subs[0].rm_so;
unknown's avatar
unknown committed
9344 9345 9346 9347 9348 9349 9350 9351 9352

      /* on this pass, calculate the memory for the result buffer */
      while (expr_p < replace_end)
      {
        int back_ref_num= -1;
        c= *expr_p;

        if (c == '\\' && expr_p + 1 < replace_end)
        {
unknown's avatar
unknown committed
9353
          back_ref_num= (int) (expr_p[1] - '0');
unknown's avatar
unknown committed
9354 9355 9356 9357 9358
        }

        /* found a valid back_ref (eg. \1)*/
        if (back_ref_num >= 0 && back_ref_num <= (int)r.re_nsub)
        {
unknown's avatar
unknown committed
9359
          regoff_t start_off, end_off;
unknown's avatar
unknown committed
9360 9361 9362
          if ((start_off=subs[back_ref_num].rm_so) > -1 &&
              (end_off=subs[back_ref_num].rm_eo) > -1)
          {
unknown's avatar
unknown committed
9363
            need_buf_len += (int) (end_off - start_off);
unknown's avatar
unknown committed
9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382
          }
          expr_p += 2;
        }
        else
        {
          expr_p++;
          need_buf_len++;
        }
      }
      need_buf_len++;
      /*
        now that we know the size of the buffer,
        make sure it is big enough
      */
      SECURE_REG_BUF

        /* copy the pre-match part */
        if (subs[0].rm_so)
        {
unknown's avatar
unknown committed
9383
          memcpy(res_p, str_p, (size_t) subs[0].rm_so);
unknown's avatar
unknown committed
9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401
          res_p+= subs[0].rm_so;
        }

      expr_p= replace;

      /* copy the match and expand back_refs */
      while (expr_p < replace_end)
      {
        int back_ref_num= -1;
        c= *expr_p;

        if (c == '\\' && expr_p + 1 < replace_end)
        {
          back_ref_num= expr_p[1] - '0';
        }

        if (back_ref_num >= 0 && back_ref_num <= (int)r.re_nsub)
        {
unknown's avatar
unknown committed
9402
          regoff_t start_off, end_off;
unknown's avatar
unknown committed
9403 9404 9405
          if ((start_off=subs[back_ref_num].rm_so) > -1 &&
              (end_off=subs[back_ref_num].rm_eo) > -1)
          {
unknown's avatar
unknown committed
9406
            int block_len= (int) (end_off - start_off);
unknown's avatar
unknown committed
9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439
            memcpy(res_p,str_p + start_off, block_len);
            res_p += block_len;
          }
          expr_p += 2;
        }
        else
        {
          *res_p++ = *expr_p++;
        }
      }

      /* handle the post-match part */
      if (subs[0].rm_so == subs[0].rm_eo)
      {
        if (str_p + subs[0].rm_so >= str_end)
          break;
        str_p += subs[0].rm_eo ;
        *res_p++ = *str_p++;
      }
      else
      {
        str_p += subs[0].rm_eo;
      }
    }
    else /* no match this time, just copy the string as is */
    {
      int left_in_str= str_end-str_p;
      need_buf_len= (res_p-buf) + left_in_str;
      SECURE_REG_BUF
        memcpy(res_p,str_p,left_in_str);
      res_p += left_in_str;
      str_p= str_end;
    }
unknown's avatar
unknown committed
9440
  }
9441
  my_free(subs, MYF(0));
unknown's avatar
unknown committed
9442 9443 9444 9445 9446 9447
  my_regfree(&r);
  *res_p= 0;
  *buf_p= buf;
  *buf_len_p= buf_len;
  return 0;
}
unknown's avatar
unknown committed
9448 9449


unknown's avatar
unknown committed
9450 9451 9452
#ifndef WORD_BIT
#define WORD_BIT (8*sizeof(uint))
#endif
unknown's avatar
unknown committed
9453 9454

#define SET_MALLOC_HUNC 64
unknown's avatar
unknown committed
9455
#define LAST_CHAR_CODE 259
unknown's avatar
unknown committed
9456 9457

typedef struct st_rep_set {
9458 9459
  uint	*bits;				/* Pointer to used sets */
  short next[LAST_CHAR_CODE];		/* Pointer to next sets */
unknown's avatar
unknown committed
9460 9461
  uint	found_len;			/* Best match to date */
  int	found_offset;
9462 9463
  uint	table_offset;
  uint	size_of_bits;			/* For convinience */
unknown's avatar
unknown committed
9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486
} REP_SET;

typedef struct st_rep_sets {
  uint		count;			/* Number of sets */
  uint		extra;			/* Extra sets in buffer */
  uint		invisible;		/* Sets not chown */
  uint		size_of_bits;
  REP_SET	*set,*set_buffer;
  uint		*bit_buffer;
} REP_SETS;

typedef struct st_found_set {
  uint table_offset;
  int found_offset;
} FOUND_SET;

typedef struct st_follow {
  int chr;
  uint table_offset;
  uint len;
} FOLLOWS;


unknown's avatar
unknown committed
9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500
int init_sets(REP_SETS *sets,uint states);
REP_SET *make_new_set(REP_SETS *sets);
void make_sets_invisible(REP_SETS *sets);
void free_last_set(REP_SETS *sets);
void free_sets(REP_SETS *sets);
void internal_set_bit(REP_SET *set, uint bit);
void internal_clear_bit(REP_SET *set, uint bit);
void or_bits(REP_SET *to,REP_SET *from);
void copy_bits(REP_SET *to,REP_SET *from);
int cmp_bits(REP_SET *set1,REP_SET *set2);
int get_next_bit(REP_SET *set,uint lastpos);
int find_set(REP_SETS *sets,REP_SET *find);
int find_found(FOUND_SET *found_set,uint table_offset,
               int found_offset);
9501 9502
uint start_at_word(char * pos);
uint end_of_word(char * pos);
unknown's avatar
unknown committed
9503 9504 9505 9506

static uint found_sets=0;


9507
uint replace_len(char * str)
unknown's avatar
unknown committed
9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518
{
  uint len=0;
  while (*str)
  {
    str++;
    len++;
  }
  return len;
}

/* Init a replace structure for further calls */
unknown's avatar
unknown committed
9519

9520 9521
REPLACE *init_replace(char * *from, char * *to,uint count,
		      char * word_end_chars)
unknown's avatar
unknown committed
9522
{
unknown's avatar
unknown committed
9523 9524 9525
  static const int SPACE_CHAR= 256;
  static const int END_OF_LINE= 258;

unknown's avatar
unknown committed
9526 9527 9528
  uint i,j,states,set_nr,len,result_len,max_length,found_end,bits_set,bit_nr;
  int used_sets,chr,default_state;
  char used_chars[LAST_CHAR_CODE],is_word_end[256];
9529
  char * pos, *to_pos, **to_array;
unknown's avatar
unknown committed
9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572
  REP_SETS sets;
  REP_SET *set,*start_states,*word_states,*new_set;
  FOLLOWS *follow,*follow_ptr;
  REPLACE *replace;
  FOUND_SET *found_set;
  REPLACE_STRING *rep_str;
  DBUG_ENTER("init_replace");

  /* Count number of states */
  for (i=result_len=max_length=0 , states=2 ; i < count ; i++)
  {
    len=replace_len(from[i]);
    if (!len)
    {
      errno=EINVAL;
      DBUG_RETURN(0);
    }
    states+=len+1;
    result_len+=(uint) strlen(to[i])+1;
    if (len > max_length)
      max_length=len;
  }
  bzero((char*) is_word_end,sizeof(is_word_end));
  for (i=0 ; word_end_chars[i] ; i++)
    is_word_end[(uchar) word_end_chars[i]]=1;

  if (init_sets(&sets,states))
    DBUG_RETURN(0);
  found_sets=0;
  if (!(found_set= (FOUND_SET*) my_malloc(sizeof(FOUND_SET)*max_length*count,
					  MYF(MY_WME))))
  {
    free_sets(&sets);
    DBUG_RETURN(0);
  }
  VOID(make_new_set(&sets));			/* Set starting set */
  make_sets_invisible(&sets);			/* Hide previus sets */
  used_sets=-1;
  word_states=make_new_set(&sets);		/* Start of new word */
  start_states=make_new_set(&sets);		/* This is first state */
  if (!(follow=(FOLLOWS*) my_malloc((states+2)*sizeof(FOLLOWS),MYF(MY_WME))))
  {
    free_sets(&sets);
9573
    my_free(found_set,MYF(0));
unknown's avatar
unknown committed
9574 9575 9576
    DBUG_RETURN(0);
  }

unknown's avatar
unknown committed
9577
  /* Init follow_ptr[] */
unknown's avatar
unknown committed
9578 9579 9580 9581
  for (i=0, states=1, follow_ptr=follow+1 ; i < count ; i++)
  {
    if (from[i][0] == '\\' && from[i][1] == '^')
    {
9582
      internal_set_bit(start_states,states+1);
unknown's avatar
unknown committed
9583 9584 9585 9586 9587 9588 9589 9590
      if (!from[i][2])
      {
	start_states->table_offset=i;
	start_states->found_offset=1;
      }
    }
    else if (from[i][0] == '\\' && from[i][1] == '$')
    {
9591 9592
      internal_set_bit(start_states,states);
      internal_set_bit(word_states,states);
unknown's avatar
unknown committed
9593 9594 9595 9596 9597 9598 9599 9600
      if (!from[i][2] && start_states->table_offset == (uint) ~0)
      {
	start_states->table_offset=i;
	start_states->found_offset=0;
      }
    }
    else
    {
9601
      internal_set_bit(word_states,states);
unknown's avatar
unknown committed
9602
      if (from[i][0] == '\\' && (from[i][1] == 'b' && from[i][2]))
9603
	internal_set_bit(start_states,states+1);
unknown's avatar
unknown committed
9604
      else
9605
	internal_set_bit(start_states,states);
unknown's avatar
unknown committed
9606 9607 9608
    }
    for (pos=from[i], len=0; *pos ; pos++)
    {
9609
      follow_ptr->chr= (uchar) *pos;
unknown's avatar
unknown committed
9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682
      follow_ptr->table_offset=i;
      follow_ptr->len= ++len;
      follow_ptr++;
    }
    follow_ptr->chr=0;
    follow_ptr->table_offset=i;
    follow_ptr->len=len;
    follow_ptr++;
    states+=(uint) len+1;
  }


  for (set_nr=0,pos=0 ; set_nr < sets.count ; set_nr++)
  {
    set=sets.set+set_nr;
    default_state= 0;				/* Start from beginning */

    /* If end of found-string not found or start-set with current set */

    for (i= (uint) ~0; (i=get_next_bit(set,i)) ;)
    {
      if (!follow[i].chr)
      {
	if (! default_state)
	  default_state= find_found(found_set,set->table_offset,
				    set->found_offset+1);
      }
    }
    copy_bits(sets.set+used_sets,set);		/* Save set for changes */
    if (!default_state)
      or_bits(sets.set+used_sets,sets.set);	/* Can restart from start */

    /* Find all chars that follows current sets */
    bzero((char*) used_chars,sizeof(used_chars));
    for (i= (uint) ~0; (i=get_next_bit(sets.set+used_sets,i)) ;)
    {
      used_chars[follow[i].chr]=1;
      if ((follow[i].chr == SPACE_CHAR && !follow[i+1].chr &&
	   follow[i].len > 1) || follow[i].chr == END_OF_LINE)
	used_chars[0]=1;
    }

    /* Mark word_chars used if \b is in state */
    if (used_chars[SPACE_CHAR])
      for (pos= word_end_chars ; *pos ; pos++)
	used_chars[(int) (uchar) *pos] = 1;

    /* Handle other used characters */
    for (chr= 0 ; chr < 256 ; chr++)
    {
      if (! used_chars[chr])
	set->next[chr]= chr ? default_state : -1;
      else
      {
	new_set=make_new_set(&sets);
	set=sets.set+set_nr;			/* if realloc */
	new_set->table_offset=set->table_offset;
	new_set->found_len=set->found_len;
	new_set->found_offset=set->found_offset+1;
	found_end=0;

	for (i= (uint) ~0 ; (i=get_next_bit(sets.set+used_sets,i)) ; )
	{
	  if (!follow[i].chr || follow[i].chr == chr ||
	      (follow[i].chr == SPACE_CHAR &&
	       (is_word_end[chr] ||
		(!chr && follow[i].len > 1 && ! follow[i+1].chr))) ||
	      (follow[i].chr == END_OF_LINE && ! chr))
	  {
	    if ((! chr || (follow[i].chr && !follow[i+1].chr)) &&
		follow[i].len > found_end)
	      found_end=follow[i].len;
	    if (chr && follow[i].chr)
9683
	      internal_set_bit(new_set,i+1);		/* To next set */
unknown's avatar
unknown committed
9684
	    else
9685
	      internal_set_bit(new_set,i);
unknown's avatar
unknown committed
9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701
	  }
	}
	if (found_end)
	{
	  new_set->found_len=0;			/* Set for testing if first */
	  bits_set=0;
	  for (i= (uint) ~0; (i=get_next_bit(new_set,i)) ;)
	  {
	    if ((follow[i].chr == SPACE_CHAR ||
		 follow[i].chr == END_OF_LINE) && ! chr)
	      bit_nr=i+1;
	    else
	      bit_nr=i;
	    if (follow[bit_nr-1].len < found_end ||
		(new_set->found_len &&
		 (chr == 0 || !follow[bit_nr].chr)))
9702
	      internal_clear_bit(new_set,i);
unknown's avatar
unknown committed
9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731
	    else
	    {
	      if (chr == 0 || !follow[bit_nr].chr)
	      {					/* best match  */
		new_set->table_offset=follow[bit_nr].table_offset;
		if (chr || (follow[i].chr == SPACE_CHAR ||
			    follow[i].chr == END_OF_LINE))
		  new_set->found_offset=found_end;	/* New match */
		new_set->found_len=found_end;
	      }
	      bits_set++;
	    }
	  }
	  if (bits_set == 1)
	  {
	    set->next[chr] = find_found(found_set,
					new_set->table_offset,
					new_set->found_offset);
	    free_last_set(&sets);
	  }
	  else
	    set->next[chr] = find_set(&sets,new_set);
	}
	else
	  set->next[chr] = find_set(&sets,new_set);
      }
    }
  }

unknown's avatar
unknown committed
9732
  /* Alloc replace structure for the replace-state-machine */
unknown's avatar
unknown committed
9733 9734 9735

  if ((replace=(REPLACE*) my_malloc(sizeof(REPLACE)*(sets.count)+
				    sizeof(REPLACE_STRING)*(found_sets+1)+
9736
				    sizeof(char *)*count+result_len,
unknown's avatar
unknown committed
9737 9738 9739
				    MYF(MY_WME | MY_ZEROFILL))))
  {
    rep_str=(REPLACE_STRING*) (replace+sets.count);
9740 9741
    to_array= (char **) (rep_str+found_sets+1);
    to_pos=(char *) (to_array+count);
unknown's avatar
unknown committed
9742 9743 9744 9745 9746 9747 9748 9749 9750 9751
    for (i=0 ; i < count ; i++)
    {
      to_array[i]=to_pos;
      to_pos=strmov(to_pos,to[i])+1;
    }
    rep_str[0].found=1;
    rep_str[0].replace_string=0;
    for (i=1 ; i <= found_sets ; i++)
    {
      pos=from[found_set[i-1].table_offset];
9752
      rep_str[i].found= !memcmp(pos, "\\^", 3) ? 2 : 1;
unknown's avatar
unknown committed
9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766
      rep_str[i].replace_string=to_array[found_set[i-1].table_offset];
      rep_str[i].to_offset=found_set[i-1].found_offset-start_at_word(pos);
      rep_str[i].from_offset=found_set[i-1].found_offset-replace_len(pos)+
	end_of_word(pos);
    }
    for (i=0 ; i < sets.count ; i++)
    {
      for (j=0 ; j < 256 ; j++)
	if (sets.set[i].next[j] >= 0)
	  replace[i].next[j]=replace+sets.set[i].next[j];
	else
	  replace[i].next[j]=(REPLACE*) (rep_str+(-sets.set[i].next[j]-1));
    }
  }
9767
  my_free(follow,MYF(0));
unknown's avatar
unknown committed
9768
  free_sets(&sets);
9769
  my_free(found_set,MYF(0));
unknown's avatar
unknown committed
9770 9771 9772 9773 9774
  DBUG_PRINT("exit",("Replace table has %d states",sets.count));
  DBUG_RETURN(replace);
}


unknown's avatar
unknown committed
9775
int init_sets(REP_SETS *sets,uint states)
unknown's avatar
unknown committed
9776 9777 9778 9779 9780 9781 9782 9783 9784
{
  bzero((char*) sets,sizeof(*sets));
  sets->size_of_bits=((states+7)/8);
  if (!(sets->set_buffer=(REP_SET*) my_malloc(sizeof(REP_SET)*SET_MALLOC_HUNC,
					      MYF(MY_WME))))
    return 1;
  if (!(sets->bit_buffer=(uint*) my_malloc(sizeof(uint)*sets->size_of_bits*
					   SET_MALLOC_HUNC,MYF(MY_WME))))
  {
9785
    my_free(sets->set,MYF(0));
unknown's avatar
unknown committed
9786 9787 9788 9789 9790
    return 1;
  }
  return 0;
}

unknown's avatar
unknown committed
9791
/* Make help sets invisible for nicer codeing */
unknown's avatar
unknown committed
9792

unknown's avatar
unknown committed
9793
void make_sets_invisible(REP_SETS *sets)
unknown's avatar
unknown committed
9794 9795 9796 9797 9798 9799
{
  sets->invisible=sets->count;
  sets->set+=sets->count;
  sets->count=0;
}

unknown's avatar
unknown committed
9800
REP_SET *make_new_set(REP_SETS *sets)
unknown's avatar
unknown committed
9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816
{
  uint i,count,*bit_buffer;
  REP_SET *set;
  if (sets->extra)
  {
    sets->extra--;
    set=sets->set+ sets->count++;
    bzero((char*) set->bits,sizeof(uint)*sets->size_of_bits);
    bzero((char*) &set->next[0],sizeof(set->next[0])*LAST_CHAR_CODE);
    set->found_offset=0;
    set->found_len=0;
    set->table_offset= (uint) ~0;
    set->size_of_bits=sets->size_of_bits;
    return set;
  }
  count=sets->count+sets->invisible+SET_MALLOC_HUNC;
9817
  if (!(set=(REP_SET*) my_realloc((uchar*) sets->set_buffer,
unknown's avatar
unknown committed
9818
                                  sizeof(REP_SET)*count,
unknown's avatar
unknown committed
9819 9820 9821 9822
				  MYF(MY_WME))))
    return 0;
  sets->set_buffer=set;
  sets->set=set+sets->invisible;
9823
  if (!(bit_buffer=(uint*) my_realloc((uchar*) sets->bit_buffer,
unknown's avatar
unknown committed
9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836
				      (sizeof(uint)*sets->size_of_bits)*count,
				      MYF(MY_WME))))
    return 0;
  sets->bit_buffer=bit_buffer;
  for (i=0 ; i < count ; i++)
  {
    sets->set_buffer[i].bits=bit_buffer;
    bit_buffer+=sets->size_of_bits;
  }
  sets->extra=SET_MALLOC_HUNC;
  return make_new_set(sets);
}

unknown's avatar
unknown committed
9837
void free_last_set(REP_SETS *sets)
unknown's avatar
unknown committed
9838 9839 9840 9841 9842 9843
{
  sets->count--;
  sets->extra++;
  return;
}

unknown's avatar
unknown committed
9844
void free_sets(REP_SETS *sets)
unknown's avatar
unknown committed
9845
{
9846 9847
  my_free(sets->set_buffer,MYF(0));
  my_free(sets->bit_buffer,MYF(0));
unknown's avatar
unknown committed
9848 9849 9850
  return;
}

unknown's avatar
unknown committed
9851
void internal_set_bit(REP_SET *set, uint bit)
unknown's avatar
unknown committed
9852 9853 9854 9855 9856
{
  set->bits[bit / WORD_BIT] |= 1 << (bit % WORD_BIT);
  return;
}

unknown's avatar
unknown committed
9857
void internal_clear_bit(REP_SET *set, uint bit)
unknown's avatar
unknown committed
9858 9859 9860 9861 9862 9863
{
  set->bits[bit / WORD_BIT] &= ~ (1 << (bit % WORD_BIT));
  return;
}


unknown's avatar
unknown committed
9864
void or_bits(REP_SET *to,REP_SET *from)
unknown's avatar
unknown committed
9865 9866 9867 9868 9869 9870 9871
{
  reg1 uint i;
  for (i=0 ; i < to->size_of_bits ; i++)
    to->bits[i]|=from->bits[i];
  return;
}

unknown's avatar
unknown committed
9872
void copy_bits(REP_SET *to,REP_SET *from)
unknown's avatar
unknown committed
9873
{
9874
  memcpy((uchar*) to->bits,(uchar*) from->bits,
unknown's avatar
unknown committed
9875 9876 9877
	 (size_t) (sizeof(uint) * to->size_of_bits));
}

unknown's avatar
unknown committed
9878
int cmp_bits(REP_SET *set1,REP_SET *set2)
unknown's avatar
unknown committed
9879
{
9880 9881
  return memcmp(set1->bits, set2->bits,
                sizeof(uint) * set1->size_of_bits);
unknown's avatar
unknown committed
9882 9883 9884
}


unknown's avatar
unknown committed
9885
/* Get next set bit from set. */
unknown's avatar
unknown committed
9886

unknown's avatar
unknown committed
9887
int get_next_bit(REP_SET *set,uint lastpos)
unknown's avatar
unknown committed
9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907
{
  uint pos,*start,*end,bits;

  start=set->bits+ ((lastpos+1) / WORD_BIT);
  end=set->bits + set->size_of_bits;
  bits=start[0] & ~((1 << ((lastpos+1) % WORD_BIT)) -1);

  while (! bits && ++start < end)
    bits=start[0];
  if (!bits)
    return 0;
  pos=(uint) (start-set->bits)*WORD_BIT;
  while (! (bits & 1))
  {
    bits>>=1;
    pos++;
  }
  return pos;
}

unknown's avatar
unknown committed
9908 9909 9910
/* find if there is a same set in sets. If there is, use it and
   free given set, else put in given set in sets and return its
   position */
unknown's avatar
unknown committed
9911

unknown's avatar
unknown committed
9912
int find_set(REP_SETS *sets,REP_SET *find)
unknown's avatar
unknown committed
9913 9914 9915 9916 9917 9918 9919 9920 9921 9922
{
  uint i;
  for (i=0 ; i < sets->count-1 ; i++)
  {
    if (!cmp_bits(sets->set+i,find))
    {
      free_last_set(sets);
      return i;
    }
  }
9923
  return i;				/* return new position */
unknown's avatar
unknown committed
9924 9925
}

unknown's avatar
unknown committed
9926 9927 9928 9929 9930 9931
/* find if there is a found_set with same table_offset & found_offset
   If there is return offset to it, else add new offset and return pos.
   Pos returned is -offset-2 in found_set_structure because it is
   saved in set->next and set->next[] >= 0 points to next set and
   set->next[] == -1 is reserved for end without replaces.
*/
unknown's avatar
unknown committed
9932

unknown's avatar
unknown committed
9933
int find_found(FOUND_SET *found_set,uint table_offset, int found_offset)
unknown's avatar
unknown committed
9934 9935 9936 9937 9938 9939 9940 9941 9942
{
  int i;
  for (i=0 ; (uint) i < found_sets ; i++)
    if (found_set[i].table_offset == table_offset &&
	found_set[i].found_offset == found_offset)
      return -i-2;
  found_set[i].table_offset=table_offset;
  found_set[i].found_offset=found_offset;
  found_sets++;
9943
  return -i-2;				/* return new position */
unknown's avatar
unknown committed
9944 9945
}

unknown's avatar
unknown committed
9946
/* Return 1 if regexp starts with \b or ends with \b*/
unknown's avatar
unknown committed
9947

9948
uint start_at_word(char * pos)
unknown's avatar
unknown committed
9949
{
9950 9951
  return (((!memcmp(pos, "\\b",2) && pos[2]) ||
           !memcmp(pos, "\\^", 2)) ? 1 : 0);
unknown's avatar
unknown committed
9952 9953
}

9954
uint end_of_word(char * pos)
unknown's avatar
unknown committed
9955
{
9956
  char * end=strend(pos);
9957 9958
  return ((end > pos+2 && !memcmp(end-2, "\\b", 2)) ||
	  (end >= pos+2 && !memcmp(end-2, "\\$",2))) ? 1 : 0;
unknown's avatar
unknown committed
9959 9960
}

unknown's avatar
unknown committed
9961 9962 9963
/****************************************************************************
 * Handle replacement of strings
 ****************************************************************************/
unknown's avatar
unknown committed
9964

unknown's avatar
unknown committed
9965 9966
#define PC_MALLOC		256	/* Bytes for pointers */
#define PS_MALLOC		512	/* Bytes for data */
unknown's avatar
unknown committed
9967

9968
int insert_pointer_name(reg1 POINTER_ARRAY *pa,char * name)
unknown's avatar
unknown committed
9969
{
unknown's avatar
unknown committed
9970
  uint i,length,old_count;
9971
  uchar *new_pos;
unknown's avatar
unknown committed
9972 9973
  const char **new_array;
  DBUG_ENTER("insert_pointer_name");
unknown's avatar
unknown committed
9974

unknown's avatar
unknown committed
9975
  if (! pa->typelib.count)
unknown's avatar
unknown committed
9976
  {
unknown's avatar
unknown committed
9977 9978
    if (!(pa->typelib.type_names=(const char **)
	  my_malloc(((PC_MALLOC-MALLOC_OVERHEAD)/
9979 9980
		     (sizeof(char *)+sizeof(*pa->flag))*
		     (sizeof(char *)+sizeof(*pa->flag))),MYF(MY_WME))))
unknown's avatar
unknown committed
9981
      DBUG_RETURN(-1);
9982
    if (!(pa->str= (uchar*) my_malloc((uint) (PS_MALLOC-MALLOC_OVERHEAD),
unknown's avatar
unknown committed
9983
				     MYF(MY_WME))))
unknown's avatar
unknown committed
9984
    {
9985
      my_free((char*) pa->typelib.type_names,MYF(0));
unknown's avatar
unknown committed
9986
      DBUG_RETURN (-1);
unknown's avatar
unknown committed
9987
    }
9988
    pa->max_count=(PC_MALLOC-MALLOC_OVERHEAD)/(sizeof(uchar*)+
unknown's avatar
unknown committed
9989 9990 9991 9992 9993
					       sizeof(*pa->flag));
    pa->flag= (int7*) (pa->typelib.type_names+pa->max_count);
    pa->length=0;
    pa->max_length=PS_MALLOC-MALLOC_OVERHEAD;
    pa->array_allocs=1;
unknown's avatar
unknown committed
9994
  }
unknown's avatar
unknown committed
9995 9996
  length=(uint) strlen(name)+1;
  if (pa->length+length >= pa->max_length)
9997
  {
9998
    if (!(new_pos= (uchar*) my_realloc((uchar*) pa->str,
9999
                                      (uint) (pa->length+length+PS_MALLOC),
unknown's avatar
unknown committed
10000 10001 10002
				      MYF(MY_WME))))
      DBUG_RETURN(1);
    if (new_pos != pa->str)
10003
    {
unknown's avatar
unknown committed
10004 10005 10006 10007 10008
      my_ptrdiff_t diff=PTR_BYTE_DIFF(new_pos,pa->str);
      for (i=0 ; i < pa->typelib.count ; i++)
	pa->typelib.type_names[i]= ADD_TO_PTR(pa->typelib.type_names[i],diff,
					      char*);
      pa->str=new_pos;
10009
    }
10010
    pa->max_length= pa->length+length+PS_MALLOC;
10011
  }
unknown's avatar
unknown committed
10012
  if (pa->typelib.count >= pa->max_count-1)
10013
  {
unknown's avatar
unknown committed
10014 10015 10016
    int len;
    pa->array_allocs++;
    len=(PC_MALLOC*pa->array_allocs - MALLOC_OVERHEAD);
10017
    if (!(new_array=(const char **) my_realloc((uchar*) pa->typelib.type_names,
unknown's avatar
unknown committed
10018
					       (uint) len/
10019 10020
                                               (sizeof(uchar*)+sizeof(*pa->flag))*
                                               (sizeof(uchar*)+sizeof(*pa->flag)),
unknown's avatar
unknown committed
10021 10022 10023 10024
                                               MYF(MY_WME))))
      DBUG_RETURN(1);
    pa->typelib.type_names=new_array;
    old_count=pa->max_count;
10025
    pa->max_count=len/(sizeof(uchar*) + sizeof(*pa->flag));
unknown's avatar
unknown committed
10026
    pa->flag= (int7*) (pa->typelib.type_names+pa->max_count);
10027
    memcpy((uchar*) pa->flag,(char *) (pa->typelib.type_names+old_count),
unknown's avatar
unknown committed
10028
	   old_count*sizeof(*pa->flag));
10029
  }
unknown's avatar
unknown committed
10030
  pa->flag[pa->typelib.count]=0;			/* Reset flag */
10031
  pa->typelib.type_names[pa->typelib.count++]= (char*) pa->str+pa->length;
unknown's avatar
unknown committed
10032
  pa->typelib.type_names[pa->typelib.count]= NullS;	/* Put end-mark */
10033
  VOID(strmov((char*) pa->str+pa->length,name));
unknown's avatar
unknown committed
10034 10035 10036
  pa->length+=length;
  DBUG_RETURN(0);
} /* insert_pointer_name */
unknown's avatar
unknown committed
10037 10038


unknown's avatar
unknown committed
10039
/* free pointer array */
unknown's avatar
unknown committed
10040

unknown's avatar
unknown committed
10041 10042 10043 10044 10045
void free_pointer_array(POINTER_ARRAY *pa)
{
  if (pa->typelib.count)
  {
    pa->typelib.count=0;
10046
    my_free((char*) pa->typelib.type_names,MYF(0));
unknown's avatar
unknown committed
10047
    pa->typelib.type_names=0;
10048
    my_free(pa->str,MYF(0));
unknown's avatar
unknown committed
10049 10050
  }
} /* free_pointer_array */
unknown's avatar
unknown committed
10051 10052


unknown's avatar
unknown committed
10053
/* Functions that uses replace and replace_regex */
unknown's avatar
unknown committed
10054

unknown's avatar
unknown committed
10055 10056 10057
/* Append the string to ds, with optional replace */
void replace_dynstr_append_mem(DYNAMIC_STRING *ds,
                               const char *val, int len)
unknown's avatar
unknown committed
10058
{
10059
  char lower[512];
unknown's avatar
unknown committed
10060 10061 10062
#ifdef __WIN__
  fix_win_paths(val, len);
#endif
unknown's avatar
unknown committed
10063

10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074
  if (display_result_lower) 
  {
    /* Convert to lower case, and do this first */
    char *c= lower;
    for (const char *v= val;  *v;  v++)
      *c++= my_tolower(charset_info, *v);
    *c= '\0';
    /* Copy from this buffer instead */
    val= lower;
  }
  
unknown's avatar
unknown committed
10075
  if (glob_replace_regex)
unknown's avatar
unknown committed
10076
  {
unknown's avatar
unknown committed
10077 10078
    /* Regex replace */
    if (!multi_reg_replace(glob_replace_regex, (char*)val))
unknown's avatar
unknown committed
10079
    {
unknown's avatar
unknown committed
10080 10081
      val= glob_replace_regex->buf;
      len= strlen(val);
unknown's avatar
unknown committed
10082 10083 10084
    }
  }

unknown's avatar
unknown committed
10085 10086 10087 10088 10089 10090 10091 10092
  if (glob_replace)
  {
    /* Normal replace */
    replace_strings_append(glob_replace, ds, val, len);
  }
  else
    dynstr_append_mem(ds, val, len);
}
unknown's avatar
unknown committed
10093 10094


unknown's avatar
unknown committed
10095 10096
/* Append zero-terminated string to ds, with optional replace */
void replace_dynstr_append(DYNAMIC_STRING *ds, const char *val)
unknown's avatar
unknown committed
10097
{
unknown's avatar
unknown committed
10098 10099
  replace_dynstr_append_mem(ds, val, strlen(val));
}
10100

unknown's avatar
unknown committed
10101 10102 10103 10104 10105 10106
/* Append uint to ds, with optional replace */
void replace_dynstr_append_uint(DYNAMIC_STRING *ds, uint val)
{
  char buff[22]; /* This should be enough for any int */
  char *end= longlong10_to_str(val, buff, 10);
  replace_dynstr_append_mem(ds, buff, end - buff);
unknown's avatar
unknown committed
10107
}
10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156



/*
  Build a list of pointer to each line in ds_input, sort
  the list and use the sorted list to append the strings
  sorted to the output ds

  SYNOPSIS
  dynstr_append_sorted
  ds - string where the sorted output will be appended
  ds_input - string to be sorted

*/

static int comp_lines(const char **a, const char **b)
{
  return (strcmp(*a,*b));
}

void dynstr_append_sorted(DYNAMIC_STRING* ds, DYNAMIC_STRING *ds_input)
{
  unsigned i;
  char *start= ds_input->str;
  DYNAMIC_ARRAY lines;
  DBUG_ENTER("dynstr_append_sorted");

  if (!*start)
    DBUG_VOID_RETURN;  /* No input */

  my_init_dynamic_array(&lines, sizeof(const char*), 32, 32);

  /* First line is result header, skip past it */
  while (*start && *start != '\n')
    start++;
  start++; /* Skip past \n */
  dynstr_append_mem(ds, ds_input->str, start - ds_input->str);

  /* Insert line(s) in array */
  while (*start)
  {
    char* line_end= (char*)start;

    /* Find end of line */
    while (*line_end && *line_end != '\n')
      line_end++;
    *line_end= 0;

    /* Insert pointer to the line in array */
10157
    if (insert_dynamic(&lines, (uchar*) &start))
10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177
      die("Out of memory inserting lines to sort");

    start= line_end+1;
  }

  /* Sort array */
  qsort(lines.buffer, lines.elements,
        sizeof(char**), (qsort_cmp)comp_lines);

  /* Create new result */
  for (i= 0; i < lines.elements ; i++)
  {
    const char **line= dynamic_element(&lines, i, const char**);
    dynstr_append(ds, *line);
    dynstr_append(ds, "\n");
  }

  delete_dynamic(&lines);
  DBUG_VOID_RETURN;
}
10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192

#ifndef HAVE_SETENV
static int setenv(const char *name, const char *value, int overwrite)
{
  size_t buflen= strlen(name) + strlen(value) + 2;
  char *envvar= (char *)malloc(buflen);
  if(!envvar)
    return ENOMEM;
  strcpy(envvar, name);
  strcat(envvar, "=");
  strcat(envvar, value);
  putenv(envvar);
  return 0;
}
#endif
10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222

/*
  for the purpose of testing (see dialog.test)
  we replace default mysql_authentication_dialog_ask function with the one,
  that always reads from stdin with explicit echo.

*/
MYSQL_PLUGIN_EXPORT
char *mysql_authentication_dialog_ask(MYSQL *mysql, int type,
                                      const char *prompt,
                                      char *buf, int buf_len)
{
  char *s=buf;

  fputs(prompt, stdout);
  fputs(" ", stdout);

  if (!fgets(buf, buf_len-1, stdin))
    buf[0]= 0;
  else if (buf[0] && (s= strend(buf))[-1] == '\n')
    s[-1]= 0;

  for (s= buf; *s; s++)
    fputc(type == 2 ? '*' : *s, stdout);

  fputc('\n', stdout);

  return buf;
}