1. 06 May, 2024 11 commits
  2. 05 May, 2024 17 commits
  3. 04 May, 2024 2 commits
  4. 03 May, 2024 6 commits
    • Vladislav Vaintroub's avatar
      MDEV-34063 tpool - integer overflow in multiplication. · 88f49da8
      Vladislav Vaintroub authored
      When calculating next wakeup timepoint for the timer thread, with large
      thread_pool_stall_limit values, 32bit int overflow can happen.
      Fixed by making one operand 8 byte large.
      
      Also fixed the type of tick_interval to be unsigned, so it does not
      go negative for very thread_pool_stall_limit.
      88f49da8
    • Vladislav Vaintroub's avatar
      b18259ec
    • Vladislav Vaintroub's avatar
      MDEV-33876 CMake, zlib - use names compatible with official FindZLIB.cmake · 029e2a5f
      Vladislav Vaintroub authored
      - ZLIB_LIBRARIES, not ZLIB_LIBRARY
      - ZLIB_INCLUDE_DIRS, not ZLIB_INCLUDE_DIR
      
      For building libmariadb, ZLIB_LIBRARY/ZLIB_INCLUDE_DIR are still defined
      This workaround will be removed later.
      029e2a5f
    • Marko Mäkelä's avatar
      MDEV-33817: AVX512BW and VPCLMULQDQ based CRC-32 · 9ec7819c
      Marko Mäkelä authored
      This is based on https://github.com/intel/intel-ipsec-mb/
      and has been tested both on x86 and x86-64, with code that
      was generated by several versions of GCC and clang.
      GCC 11 or clang 8 or later should be able to compile this,
      and so should recent versions of MSVC.
      
      Thanks to Intel Corporation for providing access to hardware,
      for answering my questions regarding the code, and for
      providing the coefficients for the CRC-32C computation.
      
      crc32_avx512(): Compute a reverse polynomial CRC-32 using
      precomputed tables and carry-less product, for up to 256 bytes
      of unaligned input per loop iteration.
      
      Reviewed by: Vladislav Vaintroub
      9ec7819c
    • Marko Mäkelä's avatar
      MDEV-33817 preparation: Restructuring and unit tests · 611cd6b9
      Marko Mäkelä authored
      In our unit test, let us rely on our own reference
      implementation using the reflected
      CRC-32 ISO 3309 and CRC-32C polynomials. Let us also
      test with various lengths.
      
      Let us refactor the CRC-32 and CRC-32C implementations
      so that no special compilation flags will be needed and
      that some function call indirection will be avoided.
      
      pmull_supported: Remove. We will have pointers to two separate
      functions crc32c_aarch64_pmull() and crc32c_aarch64().
      611cd6b9
    • Yuchen Pei's avatar
      MDEV-33538 make auxiliary spider plugins init depend on actual spider · b84d335d
      Yuchen Pei authored
      The two I_S plugins SPIDER_ALLOC_MEM and SPIDER_WRAPPER_PROTOCOL
      only makes sense if the main SPIDER plugin is installed. Further,
      SPIDER_ALLOC_MEM requires a mutex that requires SPIDER init to fill
      the table.
      
      We also update the spider init query to override
      --transaction_read_only=on so that it does not affect the spider init.
      
      Also fixed error handling in spider_db_init() so that failure in
      spider table init does not result in memory leak
      b84d335d
  5. 02 May, 2024 1 commit
    • Vladislav Vaintroub's avatar
      postfix a09ebe55 (PCRE-10.43) · 20f60fe7
      Vladislav Vaintroub authored
      - no need to switch off -fsanitize-address for MSVC anymore
      - option /WX is MSVC only
      - CMAKE_C_STANDARD C99 is already in pcre's own CMakeLists.txt
      20f60fe7
  6. 30 Apr, 2024 3 commits
    • Daniel Black's avatar
      MDEV-33631 Ubuntu/Debian MYSQL_SERVER_SUFFIX is version+suffix on MariaDB packaged versions · e63ed4e0
      Daniel Black authored
      The debian/rules removed sufficient version information from the
      downstream version, however the mariadb upstream has a +
      separator from the suffix.
      
      While we are at it, remove the Debian/Ubuntu revision -1.
      
      Other revisions used:
      * Debian unstable (inherited to both Debian and Ubuntu if package unchanged): 1:10.11.6-2
      * Ubuntu stable updates example: 1:10.11.6-0ubuntu0.23.10.2
      * Debian stable updates example: 1:10.11.4-1~deb12u1
      
      The result is compulation with:
          -DMYSQL_SERVER_SUFFIX="-1:10.4.34+maria~deb10" \
      
      Compared to Debian:
          -DMYSQL_SERVER_SUFFIX="-1~deb12u1" \
      
      The impact comes into play with SELECT VERSION():
          10.4.34-MariaDB-1:10.4.34+maria~deb10
      
      A more abbreviated form of the following is much more human/machine parsable:
          10.6.16-MariaDB~ubu2004
      
      Reviewer: Otto Kekäläinen
      e63ed4e0
    • Dimitri John Ledkov's avatar
      openssl: add a more specific DES support detection · bf77f979
      Dimitri John Ledkov authored
      Improve detection for DES support in OpenSSL, to allow compilation
      against system OpenSSL without DES.
      
      Note that MariaDB needs to be compiled against OpenSSL-like library
      that itself has DES support which cmake detected. Positive detection
      is indicated with CMake variable HAVE_des 1.
      Signed-off-by: default avatarDimitri John Ledkov <dimitri.ledkov@surgut.co.uk>
      bf77f979
    • Thirunarayanan Balathandayuthapani's avatar
      MDEV-33980 mariadb-backup --backup is missing retry logic for undo tablespaces · f378e764
      Thirunarayanan Balathandayuthapani authored
      Problem:
      ========
      - Currently mariabackup have to reread the pages in case they are
      modified by server concurrently. But while reading the undo
      tablespace, mariabackup failed to do reread the page in case of
      error.
      
      Fix:
      ===
      Mariabackup --backup functionality should have retry logic
      while reading the undo tablespaces.
      f378e764