1. 12 Feb, 2024 7 commits
  2. 09 Feb, 2024 1 commit
    • Vladislav Vaintroub's avatar
      MDEV-33430 - Fix self-signed certificate errors on Windows · 4eac842c
      Vladislav Vaintroub authored
      Adjust test after fixing the C/C.
      
      On Windows, use --host=127.0.0.2 to fake "insecure" transport
      with TCP connection for test purposes. 127.0.0.2 is loopback address,
      that can be used instead of usual 127.0.0.1
      
      Unfortunately, this technique does not work on all *nixes the same,
      notably neither on BSDs nor Solaris. Thus default --host=localhost
      remains "insecure" transport,when TCP is used. but it is not that critical,
      the "self-signed" is not nearly as annoying on *nixes as it is on Windows.
      4eac842c
  3. 08 Feb, 2024 1 commit
  4. 05 Feb, 2024 2 commits
    • Brandon Nesterenko's avatar
      Revert "MDEV-7850: Extend GTID Binlog Events with Thread Id" · 9b1ea690
      Brandon Nesterenko authored
      This reverts commit c37b2087.
      
      In c37b20887, when re-binlogging a GTID event on a replica,
      it will overwrite the thread_id from the primary to be the
      value of the slave applier (SQL thread or parallel worker).
      
      This should be the value of the original thread_id on the
      master connection though, to both help track temporary
      tables, and be consistent with Query_log_event.
      
      Reverting the commit to re-target 11.5, so we can re-test
      with the corrected thread_id.
      9b1ea690
    • Alexander Barkov's avatar
      MDEV-33386 Wrong error message on `GRANT .. ON PACKAGE no_such_package ..` · e30e9fc6
      Alexander Barkov authored
      When displaying the ER_SP_DOES_NOT_EXIST error, use
      Sp_handler::type_lex_cstring() to the the underlying
      object type:
      - PROCEDURE
      - FUNCTION
      - PACKAGE
      - PACKAGE BODY
      instead of hard-coded "FUNCTION or PROCEDURE".
      e30e9fc6
  5. 04 Feb, 2024 18 commits
    • Sergei Golubchik's avatar
      2e83ab41
    • Sergei Golubchik's avatar
      6b900330
    • Sergei Golubchik's avatar
      auto-disable --ssl-verify-server-cert in clients, if · 853bdf57
      Sergei Golubchik authored
      * --ssl-verify-server-cert was not enabled explicitly, and
      * CA was not specified, and
      * fingerprint was not specified, and
      * protocol is TCP, and
      * no password was provided
      
      insecure passwordless logins are common in test environment, let's
      not break them. practically, it hardly makes sense to have strong
      MitM protection if an attacker can simply login without a password.
      
      Covers mariadb, mariadb-admin, mariadb-binlog, mariadb-dump
      853bdf57
    • Sergei Golubchik's avatar
      MDEV-31857 enable --ssl-verify-server-cert by default in the internal client · abcd23ad
      Sergei Golubchik authored
      enable ssl + ssl_verify_server_cert in the internal client too
      
      * fix replication tests to disable master_ssl_verify_server_cert
        because accounts are passwordless - except rpl.rpl_ssl1
      * fix federated/federatedx/connect to disable SSL_VERIFY_SERVER_CERT
        because they cannot configure an ssl connection
      * fix spider to disable ssl_verify_server_cert, if configuration
        says so, as spider _can_ configure an ssl connection
      * memory leak in embedded test-connect
      abcd23ad
    • Sergei Golubchik's avatar
      MDEV-31855 validate ssl certificates using client password in the internal client · e0c30390
      Sergei Golubchik authored
      port the client-side implementation from C/C to the internal client.
      add the test.
      e0c30390
    • Sergei Golubchik's avatar
      disable SSL via named pipes in the internal client · 386df879
      Sergei Golubchik authored
      because it doesn't work. CONC-635.
      386df879
    • Sergei Golubchik's avatar
      free mysql->connector_fd correctly in the internal client · 3c36ed18
      Sergei Golubchik authored
      it's not an ssl option, so shouldn't be in mysql_ssl_free(),
      which frees ssl options, and only unless CLIENT_REMEMBER_OPTIONS is set.
      
      mysql->connector_fd must be freed when mysql->net.vio is closed
      and fd becomes no longer valid
      3c36ed18
    • Sergei Golubchik's avatar
      change how self-signed certs are accepted by internal client · 2f13f7d7
      Sergei Golubchik authored
      use SSL_VERIFY_PEER with the "always ok" callback,
      instead of SSL_VERIFY_NONE with no callback.
      
      The latter doesn't work correctly in wolfSSL, it accepts self-signed
      certificates just fine (as in OpenSSL), but after that
      SSL_get_verify_result() returns X509_V_OK, while it returns an error
      (e.g. X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN) in OpenSSL.
      2f13f7d7
    • Sergei Golubchik's avatar
      cleanup: X509_check_host() in the internal client · 05a421eb
      Sergei Golubchik authored
      X509_check_host() and X509_check_ip_asc() exist in all
      supported SSL libraries
      
      in OpenSSL >= 1.0.2 and in the bundled WolfSSL
      
      And X509_free() handles NULL pointers all right.
      05a421eb
    • Sergei Golubchik's avatar
      cleanup: ssl handling in the internal rpl client · f4e174e1
      Sergei Golubchik authored
      * type of mi->ssl_verify_server_cert must be my_bool, because it's
        passed by address to mysql_options(), and the latter expects my_bool
      * explicitly disable ssl in MYSQL if mi->ssl is 0
      * remove dead code (`#ifdef NOT_USED`)
      * remove useless casts and checks replacing empty strings with NULL
        (new_VioSSLFd() does that internally)
      f4e174e1
    • Sergei Golubchik's avatar
      e951edd8
    • Sergei Golubchik's avatar
      enable --ssl in the server by default · ea921fd8
      Sergei Golubchik authored
      except in bootstrap
      ea921fd8
    • Sergei Golubchik's avatar
      MDEV-31856 use ephemeral ssl certificates · 9f93630d
      Sergei Golubchik authored
      if the server is started with --ssl but without neither --ssl-key nor
      --ssl-cert, let it automatically generate a self-signed certificate.
      It's generated in memory only and never saved to disk.
      9f93630d
    • Sergei Golubchik's avatar
      wrong error for bare --ssl on the server side · d33a8ab1
      Sergei Golubchik authored
      when neither --ssl-key nor --ssl-cert were set, the errror
      was "Private key does not match the certificate public key"
      
      changed to "Unable to get certificate"
      d33a8ab1
    • Sergei Golubchik's avatar
      cleanup · d772c4fb
      Sergei Golubchik authored
      d772c4fb
    • Sergei Golubchik's avatar
      test SSL MitM attack · 68f0af2b
      Sergei Golubchik authored
      verify that --ssl-verify-server-cert detects cert mismatch,
      but with --disable-ssl-verify-server-cert the connection succeeds
      68f0af2b
    • Sergei Golubchik's avatar
      client support for --ssl-fp and --ssl--fplist · bac0f899
      Sergei Golubchik authored
      implement --ssl-fp and --ssl-fplist for all clients.
      --ssl-fp takes one certificate fingerprint, for example,
      00:11:22:33:44:55:66:77:88:99:AA:BB:CC:DD:EE:FF:00:11:22:33
      
      --ssl-fplist takes a path to a file with one fingerprint per line.
      
      if the server's certificate fingerprint matches ssl-fp or is found
      in the file - the certificate is considered verified.
      If the fingerprint is specified but doesn't match - the connection
      is aborted independently from the --ssl-verify-server-cert
      bac0f899
    • Sergei Golubchik's avatar
      MDEV-31855 validate ssl certificates using client password · 1ef1bab9
      Sergei Golubchik authored
      if the client enabled --ssl-verify-server-cert, then
      the server certificate is verified as follows:
      
      * if --ssl-ca or --ssl-capath were specified, the cert must have
        a proper signature by the specified CA (or CA in the path)
        and the cert's hostname must match the server's hostname.
        If the cert isn't signed or a hostname is wrong - the
        connection is aborted.
      
      * if MARIADB_OPT_TLS_PEER_FP was used and the fingerprint matches,
        the connection is allowed, if it doesn't match - aborted.
      
      * If the connection uses unix socket or named pipes - it's allowed.
        (consistent with server's --require-secure-transport behavior)
      
      otherwise the cert is still in doubt, we don't know if we can trust
      it or there's an active MitM in progress.
      
      * If the user has provided no password or the server requested an
        authentication plugin that sends the password in cleartext -
        the connection is aborted.
      
      * Perform the authentication. If the server accepts the password,
        it'll send SHA2(scramble || password hash || cert fingerprint)
        with the OK packet.
      
      * Verify the SHA2 digest, if it matches - the connection is allowed,
        otherwise it's aborted.
      1ef1bab9
  6. 03 Feb, 2024 6 commits
  7. 02 Feb, 2024 1 commit
    • Vladislav Vaintroub's avatar
      MDEV-33075 Resolve server shutdown issues on macOS, Solaris, and FreeBSD · 2f5174e5
      Vladislav Vaintroub authored
      This commit addresses multiple server shutdown problems observed on macOS,
      Solaris, and FreeBSD:
      
      1. Corrected a non-portable assumption where socket shutdown was expected
      to wake up poll() with listening sockets in the main thread.
      
      Use more robust self-pipe to wake up poll() by writing to the pipe's write
      end.
      
      2. Fixed a random crash on macOS from pthread_kill(signal_handler)
      when the signal_handler was detached and the thread had already exited.
      
      Use more robust `kill(getpid(), SIGTERM)` to wake up the signal handler
      thread.
      
      3. Made sure, that signal handler thread always exits once `abort_loop` is
      set, and also calls `my_thread_end()` and clears `signal_thread_in_use`
      when exiting.
      
      This fixes warning "1 thread did not exit"  by `my_global_thread_end()`
      seen on FreeBSD/macOS when the process is terminated via signal.
      
      Additionally, the shutdown code underwent light refactoring
      for better readability and maintainability:
      - Modified `break_connect_loop()` to no longer wait for the main thread,
        aligning behavior with Windows (since 10.4).
      - Removed dead code related to the unused `USE_ONE_SIGNAL_HAND`
        preprocessor constant.
      - Eliminated support for `#ifndef HAVE_POLL` in `handle_connection_sockets`
        This code is also dead, since 10.4
      2f5174e5
  8. 29 Jan, 2024 4 commits