Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-17950

SHOW GRANTS FOR does not work for a user identified with non-existing plugin

Details

    Description

      INSTALL SONAME 'auth_socket';
      CREATE USER foo IDENTIFIED WITH unix_socket;
      SHOW GRANTS FOR foo;
      UNINSTALL SONAME 'auth_socket';
      FLUSH PRIVILEGES;
      SHOW GRANTS FOR foo;
       
      # Cleanup
      DROP USER foo;
      

      10.4 fac997feef

      MariaDB [test]> SHOW GRANTS FOR foo;
      ERROR 1141 (42000): There is no such grant defined for user 'foo' on host '%'
      

      On 10.3 the grants are still shown, and I think it makes more sense.

      Attachments

        Issue Links

          Activity

            elenst Elena Stepanova created issue -

            It was an intentional behavior change. Users with non-existing plugins are skipped during the load (just as users with host names if skip-name-resolve is used), so, practically, they don't exist.

            serg Sergei Golubchik added a comment - It was an intentional behavior change. Users with non-existing plugins are skipped during the load (just as users with host names if skip-name-resolve is used), so, practically, they don't exist.
            serg Sergei Golubchik made changes -
            Field Original Value New Value
            Fix Version/s N/A [ 14700 ]
            Fix Version/s 10.4 [ 22408 ]
            Resolution Not a Bug [ 6 ]
            Status Open [ 1 ] Closed [ 6 ]

            The warning from FLUSH PRIVILEGES could've been better, though. Currently it does not say "user was skipped"

            serg Sergei Golubchik added a comment - The warning from FLUSH PRIVILEGES could've been better, though. Currently it does not say "user was skipped"

            It seems to be a pretty bad behavior change, why would we do that, what are we trying to achieve?

            Instead of a rather clear message "plugin not loaded" the user will start getting obscure "Access denied", which can be caused by a number of reasons. It makes things more difficult for an account admin and more obscure for a user who can't login. What's the gain?

            Even worse if you have a "stronger" and a "weaker" account for the same username, e.g. `foo@localhost` and `foo@'%'` (not mentioning anonymous account, which can be declared bad practice). Then, skipping the first one will cause the next one be picked up silently, which can be both unexpected and unwanted.

            Making it as bad as skip-name-resolve doesn't seem to be a valid reason. Besides, skip-name-resolve is an active configuration, an admin at least makes it so intentionally (although I wouldn't blame them for not expecting such obscure side-effects). Non-existing plugin is a passive configuration, it's something somebody hasn't done, or even worse, something went wrong on a server/plugin side upon loading the plugin.

            A better warning on FLUSH PRIVILEGES won't solve anything, it was just there for simpler reproducing. In reality most problems will happen upon server restart.

            On a separate yet related note, how is it going to play along with the planned multiple authentication methods? If you are going to ignore the account completely because the plugin is not loaded, how can other methods be used?

            elenst Elena Stepanova added a comment - It seems to be a pretty bad behavior change, why would we do that, what are we trying to achieve? Instead of a rather clear message "plugin not loaded" the user will start getting obscure "Access denied", which can be caused by a number of reasons. It makes things more difficult for an account admin and more obscure for a user who can't login. What's the gain? Even worse if you have a "stronger" and a "weaker" account for the same username, e.g. `foo@localhost` and `foo@'%'` (not mentioning anonymous account, which can be declared bad practice). Then, skipping the first one will cause the next one be picked up silently, which can be both unexpected and unwanted. Making it as bad as skip-name-resolve doesn't seem to be a valid reason. Besides, skip-name-resolve is an active configuration, an admin at least makes it so intentionally (although I wouldn't blame them for not expecting such obscure side-effects). Non-existing plugin is a passive configuration, it's something somebody hasn't done, or even worse, something went wrong on a server/plugin side upon loading the plugin. A better warning on FLUSH PRIVILEGES won't solve anything, it was just there for simpler reproducing. In reality most problems will happen upon server restart. On a separate yet related note, how is it going to play along with the planned multiple authentication methods? If you are going to ignore the account completely because the plugin is not loaded, how can other methods be used?
            serg Sergei Golubchik made changes -

            Why: because before MDEV-12321 the server could load a user without a plugin and later, during an authentication attempt, to find out that a plugin wasn't available. After MDEV-12321, the server needs a plugin to load the user, without a plugin it doesn't know how to interpret the authentication string and whether it needs to be pre-processed on load. The easy solution was to skip users with an unknown plugin — installing a new plugin is a rare operation, uninstalling a plugin that has existing accounts using it is ever rarer.

            Another solution would be to implement "lazy initialization" — mark an account as incomplete and finish the pre-processing on the first authentication attempt. I don't know if it's an important use case to cover, though.

            serg Sergei Golubchik added a comment - Why: because before MDEV-12321 the server could load a user without a plugin and later, during an authentication attempt, to find out that a plugin wasn't available. After MDEV-12321 , the server needs a plugin to load the user, without a plugin it doesn't know how to interpret the authentication string and whether it needs to be pre-processed on load. The easy solution was to skip users with an unknown plugin — installing a new plugin is a rare operation, uninstalling a plugin that has existing accounts using it is ever rarer. Another solution would be to implement "lazy initialization" — mark an account as incomplete and finish the pre-processing on the first authentication attempt. I don't know if it's an important use case to cover, though.

            It does seem strange that we forsake usability in an unfortunately rather common scenario as a result of internal implementation of some rather obscure feature which we don't even know whether anybody needs or going to use.

            And yes, the scenario with a missing plugin appears to be fairly common – a big part of my stackoverlow activity was devoted to explaining why users can't login when unix_socket is not loaded.

            Please at least have the change documented explicitly somewhere. It won't help users, but it will give us a permanent link to refer to, instead of explaining every time again that it was done intentionally and why.

            elenst Elena Stepanova added a comment - It does seem strange that we forsake usability in an unfortunately rather common scenario as a result of internal implementation of some rather obscure feature which we don't even know whether anybody needs or going to use. And yes, the scenario with a missing plugin appears to be fairly common – a big part of my stackoverlow activity was devoted to explaining why users can't login when unix_socket is not loaded. Please at least have the change documented explicitly somewhere. It won't help users, but it will give us a permanent link to refer to, instead of explaining every time again that it was done intentionally and why.

            If it's a fairly common scenario, it needs to be covered. I'll reopen the issue.

            serg Sergei Golubchik added a comment - If it's a fairly common scenario, it needs to be covered. I'll reopen the issue.
            serg Sergei Golubchik made changes -
            Resolution Not a Bug [ 6 ]
            Status Closed [ 6 ] Stalled [ 10000 ]
            serg Sergei Golubchik made changes -
            Fix Version/s 10.4 [ 22408 ]
            Fix Version/s N/A [ 14700 ]
            serg Sergei Golubchik made changes -
            Priority Major [ 3 ] Critical [ 2 ]
            serg Sergei Golubchik made changes -
            Status Stalled [ 10000 ] In Progress [ 3 ]
            serg Sergei Golubchik made changes -
            Status In Progress [ 3 ] Stalled [ 10000 ]

            I didn't mention another fancy side-effect of the same change:

            ...
            MariaDB [test]> SHOW CREATE USER foo;
            ERROR 1133 (28000): Can't find any matching row in the user table
            MariaDB [test]> CREATE USER foo;
            ERROR 1133 (28000): Can't find any matching row in the user table
            

            elenst Elena Stepanova added a comment - I didn't mention another fancy side-effect of the same change: ... MariaDB [test]> SHOW CREATE USER foo; ERROR 1133 (28000): Can 't find any matching row in the user table MariaDB [test]> CREATE USER foo; ERROR 1133 (28000): Can' t find any matching row in the user table
            serg Sergei Golubchik made changes -
            serg Sergei Golubchik made changes -
            Fix Version/s 10.4.3 [ 23230 ]
            Fix Version/s 10.4 [ 22408 ]
            Resolution Fixed [ 1 ]
            Status Stalled [ 10000 ] Closed [ 6 ]
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 91129 ] MariaDB v4 [ 155335 ]

            People

              serg Sergei Golubchik
              elenst Elena Stepanova
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.