[MDEV-5233] inconsistent check_access() Created: 2013-11-04 Updated: 2020-04-23 |
|
| Status: | Open |
| Project: | MariaDB Server |
| Component/s: | None |
| Affects Version/s: | 10.0.4, 5.1.67, 5.2.14, 5.3.12, 5.5.33a |
| Fix Version/s: | 10.6 |
| Type: | Bug | Priority: | Major |
| Reporter: | Sergei Golubchik | Assignee: | Sergei Golubchik |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Issue Links: |
|
||||||||
| Description |
|
The check_access() function retrieves privileges like that
Note that it is using sctx->host and sctx->priv_user pair. This is wrong, they belong to different values — the first is the host part in the USER(), the second is the user part in CURRENT_USER(). See the following test case:
Note that SELECT is allowed, while it is granted to c@%, and we're connected as c@localhost. Which suggests wildcard matching for the purpose of privilege checking. On the other hand, if the test case above is modified as
then the SELECT will fail. De facto, wildcard matching works for host names, but not for user names. Which is inconsistent. Note: if this is to be fixed, all privilege checks should be analyzed and probably changed, including the one for SET ROLE |