1. 15 Dec, 2020 1 commit
    • Daniel Black's avatar
      MDEV-24207: recognise mysql forms of invalid password for mysql_native_password · d4c35fb2
      Daniel Black authored
      The main goal of this patch is to prevent MariaDB's native_password_plugin
      from "parsing" the hex (or non hex) authentication_string. Due to how the
      current code is written, we convert any string (within native_password_get_salt)
      that has the appropriate length to a "binary" representation, that can
      potentially match a real password.
      
      More specifically,
      "*THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE" produces the same results as
      "*d13c3c78dafa52d9bce09bdd1adcb7befced1ebe".
      
      The length indicator is the main indicator of an invalid password. We use
      use same trick with "invalid" to change its internal representation.
      
      The "parsing" mentioned is by get_salt_from_password down to char_val()
      and because if where it is, its effectively a static plugin API that cannot
      change.
      
      In supporting these, we support the SHOW CREATE USER from MySQL may have the
      hashed password string: *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE.
      
      Obviously this isn't a hash because it contains non-hex characters.
      
      After this patch we do however recognise the pattern;
      
       [any char, notionally *]{40 chars not all are hex}
      
      as a pattern for an invalid password. This was determined to be the general
      pattern that MySQL used.
      
      Reviewers: Sergei G, Vicentiu
      d4c35fb2
  2. 14 Dec, 2020 1 commit
  3. 12 Dec, 2020 1 commit
  4. 11 Dec, 2020 4 commits
  5. 08 Dec, 2020 1 commit
    • Sujatha's avatar
      MDEV-19716: ASAN use-after-poison in Query_log_event::Query_log_event /... · e007fcf5
      Sujatha authored
      MDEV-19716: ASAN use-after-poison in Query_log_event::Query_log_event / THD::log_events_and_free_tmp_shares
      
      Post push fix to address test failure.
      
      Problem:
      =======
      rpl.rpl_drop_temp_table_invaid_lex added as part bug fix has occasional
      failures in build bot.
      
      MTR's internal check of the test case
      'rpl.rpl_drop_temp_table_invaid_lex' failed.
      
       Variable_name    Value
      -Slave_open_temp_tables    0
      +Slave_open_temp_tables    1
      
      Analysis:
      =========
      The reason for the failure is that the DROP TEMPORARY TABLE command which
      gets generated on connection disconnect might not have reached the slave
      and hence the temp table remains on the slave.
      
      Fix:
      ===
      On master, upon disconnect, wait till connection is completely gone.  Then
      ensure that DROP TEMPORARY table statement is available in the binary log.
      Sync the slave with master and check that temporary table count is zero on
      slave. Fixed a typo in test name.
      e007fcf5
  6. 03 Dec, 2020 2 commits
  7. 02 Dec, 2020 1 commit
  8. 01 Dec, 2020 6 commits
    • Marko Mäkelä's avatar
      Merge 10.3 into 10.4 · 589cf8db
      Marko Mäkelä authored
      589cf8db
    • Vlad Lesin's avatar
      MDEV-22929 MariaBackup option to report and/or continue when corruption is encountered · e30a05f4
      Vlad Lesin authored
      Post-push Windows compilation errors fix.
      e30a05f4
    • Monty's avatar
      After merge fixes · 7edfed63
      Monty authored
      Change thd->mdl_context.release_transactional_locks() to
      thd->mdl_release_transactional_locks()
      7edfed63
    • Marko Mäkelä's avatar
      MDEV-24323 Crash on recovery after kill during instant ADD COLUMN · 73f34336
      Marko Mäkelä authored
      row_undo_ins_parse_undo_rec(): Do not try to read non-existing
      virtual column information for the metadata record.
      73f34336
    • Marko Mäkelä's avatar
      Merge 10.2 into 10.3 · 81ab9ea6
      Marko Mäkelä authored
      81ab9ea6
    • Vlad Lesin's avatar
      MDEV-22929 MariaBackup option to report and/or continue when corruption is encountered · e6b3e38d
      Vlad Lesin authored
      The new option --log-innodb-page-corruption is introduced.
      
      When this option is set, backup is not interrupted if innodb corrupted
      page is detected. Instead it logs all found corrupted pages in
      innodb_corrupted_pages file in backup directory and finishes with error.
      
      For incremental backup corrupted pages are also copied to .delta file,
      because we can't do LSN check for such pages during backup,
      innodb_corrupted_pages will also be created in incremental backup
      directory.
      
      During --prepare, corrupted pages list is read from the file just after
      redo log is applied, and each page from the list is checked if it is allocated
      in it's tablespace or not. If it is not allocated, then it is zeroed out,
      flushed to the tablespace and removed from the list. If all pages are removed
      from the list, then --prepare is finished successfully and
      innodb_corrupted_pages file is removed from backup directory. Otherwise
      --prepare is finished with error message and innodb_corrupted_pages contains
      the list of the pages, which are detected as corrupted during backup, and are
      allocated in their tablespaces, what means backup directory contains corrupted
      innodb pages, and backup can not be considered as consistent.
      
      For incremental --prepare corrupted pages from .delta files are applied
      to the base backup, innodb_corrupted_pages is read from both base in
      incremental directories, and the same action is proceded for corrupted
      pages list as for full --prepare. innodb_corrupted_pages file is
      modified or removed only in base directory.
      
      If DDL happens during backup, it is also processed at the end of backup
      to have correct tablespace names in innodb_corrupted_pages.
      e6b3e38d
  9. 30 Nov, 2020 6 commits
    • Monty's avatar
      MDEV 15532 Assertion `!log->same_pk' failed in row_log_table_apply_delete · 828471cb
      Monty authored
      The reason for the failure is that
      thd->mdl_context.release_transactional_locks()
      was called after commit & rollback even in cases where the current
      transaction is still active.
      
      For 10.2, 10.3 and 10.4 the fix is simple:
      - Replace all calls to thd->mdl_context.release_transactional_locks() with
        thd->release_transactional_locks(). The thd function will only call
        the mdl_context function if there are no active transactional locks.
        In 10.6 we will better fix where we will change the return value for
        some trans_xxx() functions to indicate if transaction did close the
        transaction or not. This will avoid the need of the indirect call.
      
      Other things:
      - trans_xa_commit() and trans_xa_rollback() will automatically
        call release_transactional_locks() if the transaction is closed.
      - We can't do that for the other functions as the caller of many of these
        are doing additional work (like close_thread_tables) before calling
        release_transactional_locks().
      - Added missing abort_result_set() and missing DBUG_RETURN in
        select_create::send_eof()
      - Fixed wrong indentation in injector::transaction::commit()
      828471cb
    • Monty's avatar
      Fixed maria.create test · c5375764
      Monty authored
      c5375764
    • Monty's avatar
      MDEV-15532 Assertion `!log->same_pk' failed in row_log_table_apply_delete · a3531775
      Monty authored
      The real fix for MDEV-15532 will be pushed into 10.2 and 10.6
      This is an additional fix for 10.4.
      
      In 10.4 trans_xa_detach was introduced.  However THD::cleanup() assumes
      that after trans_xa_detach() is done, there is no registered transactions
      anymore. In the 10.2 patch there will be an assert to ensure this, which
      will cause 10.4 to fail.
      
      The fix used is to reset the transaction flags in trans_xa_detach().
      a3531775
    • Monty's avatar
      Fixed maria.create test · 6261b1f4
      Monty authored
      6261b1f4
    • Monty's avatar
    • Varun Gupta's avatar
      MDEV-21265: IN predicate conversion to IN subquery should be allowed for a... · b4379df5
      Varun Gupta authored
      MDEV-21265: IN predicate conversion to IN subquery should be allowed for a broader set of datatype comparison
      
      Allow materialization strategy when collations on the
      inner and outer sides of an IN subquery are the same and the
      character set of the inner side is a proper subset of the character
      set on the outer side.
      This allows conversion from utf8mb3 to utf8mb4
      as the former is a subset of the later.
      This is only allowed when IN predicate is converted to an IN subquery
      
      Backported part of the patch (d6a00d9b) of MDEV-17905.
      b4379df5
  10. 26 Nov, 2020 1 commit
  11. 25 Nov, 2020 5 commits
  12. 24 Nov, 2020 1 commit
  13. 23 Nov, 2020 4 commits
    • Alexey Botchkov's avatar
      MDEV-21842 auto_increment does not increment with compound primary key on partitioned table. · 75e7132f
      Alexey Botchkov authored
      The idea of this fix is that it's enough to prevent the
      next_auto_inc_val from incrementing if an error, to fix this problem
      and also the MDEV-17333.
      So this patch basically reverts the existing fix to the MDEV-17333.
      75e7132f
    • Sujatha's avatar
      MDEV-23846: O_TMPFILE error in mysqlbinlog stream output breaks restore · 7effcb8e
      Sujatha authored
      Problem:
      ========
      When O_TMPFILE is not supported mysqlbinlog outputs the error to standard
      stream as a warning which breaks PITR:
      
      ERROR 1064 (42000) at line 382: You have an error in your SQL syntax; check
      the manual that corresponds to your MariaDB server version for the right
      syntax to use near 'mysqlbinlog: O_TMPFILE is not supported on /tmp (disabling
          future attempts)
      
      Analysis:
      =========
      'mysqlbinlog' utility is used to perform point-in-time-recovery based on binary
      log. It converts the events in the binary log files, from binary format to text
      so that they can be viewed or applied. This output can be saved to a file and
      it can be sourced back to mysql client. The mysqlbinlog utility stores the
      text output into IO_CACHE and when it is full the data is written to a temp
      file.  The temporary file creation is attempted using 'O_TMPFILE' flag. If the
      underlying filesystem doesn't support this operation, a note is printed on to
      standard error and file creation is done without O_TMPFILE' flag. If standard
      error is redirected to standard output the note gets written to the sql file
      as shown below.
      
      /bld/client/mysqlbinlog: O_TMPFILE is not supported on /tmp (disabling future
          attempts)
      table id 32
      
      When the sql file is used for PITR, it leads to a syntax error as it is not a
      valid sql command.
      
      Fix:
      ====
      Make 'my_message_stderr' to ignore messages which are flagged as ME_NOTE and
      ME_ERROR_LOG_ONLY. ME_ERROR_LOG_ONLY flag is applicable to server. In order to
      print an informational note to stderr stream, ME_NOTE flag without
      ME_ERROR_LOG_ONLY flag should be specified. 'my_message_stderr' should print
      messages flagged with ME_WARNING or ME_FATAL to stderr stream.
      7effcb8e
    • sjaakola's avatar
      MDEV-24097 node restart overlaps with earlier still ongoing SST process · fa6d710b
      sjaakola authored
      In galera_3nodes.galera_safe_to_bootstrap node restart can happen too soon, when earlier SST joiner process is still active in the node.
      Similar issue may hurt other mtr tests as well.
      
      This is second variant of fix for this issue. Here we only change rsync SST script to wait a little bit if lingering SST rsync is observed to be in execution.
      We assume that the previous mysqld and SST processes have been already signaled to abort during earlier stataup attempt.
      
      If other SST methods (than rsync) suffer from similar overlapping SST execution, they should be sorted out separately within each SST method handler scripts.
      Reviewed-by: default avatarJan Lindström <jan.lindstrom@mariadb.com>
      fa6d710b
    • Jan Lindström's avatar
      MDEV-22136 : wsrep_restart_slave = 1 does not always work · fe56e0e3
      Jan Lindström authored
      Add test case
      fe56e0e3
  14. 19 Nov, 2020 6 commits