Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
11.3.2
-
None
-
Docker container, x86_64 as well as arm64
Description
Freshly created MariaDB versions 11.2 and 11.3 works OK. Podman is used in the examples, but it's the same with the Docker. Images are from Docker Hub:
podman run -d -ti --env MARIADB_ROOT_PASSWORD=manager --name mariadb112 mariadb:11.2
|
podman exec -it mariadb112 bash
|
root@9d0b8edb089e:/# mariadb -pmanager
|
|
MariaDB [(none)]> show grants for root@'%';
|
+--------------------------------------------------------------------------------------------------------------------------------+
|
| Grants for root@% |
|
+--------------------------------------------------------------------------------------------------------------------------------+
|
| GRANT ALL PRIVILEGES ON *.* TO `root`@`%` IDENTIFIED BY PASSWORD '*7D2ABFF56C15D67445082FBB4ACD2DCD26C0ED57' WITH GRANT OPTION |
|
| GRANT PROXY ON ''@'%' TO 'root'@'%' WITH GRANT OPTION |
|
+--------------------------------------------------------------------------------------------------------------------------------+
|
2 rows in set (0.000 sec)
|
podman run -d -ti --env MARIADB_ROOT_PASSWORD=manager --name mariadb113 mariadb:11.3
|
podman exec -it mariadb113 bash
|
root@746a6dc0605e:/# mariadb -pmanager
|
|
MariaDB [(none)]> show grants for root@'%';
|
+--------------------------------------------------------------------------------------------------------------------------------+
|
| Grants for root@% |
|
+--------------------------------------------------------------------------------------------------------------------------------+
|
| GRANT ALL PRIVILEGES ON *.* TO `root`@`%` IDENTIFIED BY PASSWORD '*7D2ABFF56C15D67445082FBB4ACD2DCD26C0ED57' WITH GRANT OPTION |
|
| GRANT PROXY ON ''@'%' TO 'root'@'%' WITH GRANT OPTION |
|
+--------------------------------------------------------------------------------------------------------------------------------+
|
2 rows in set (0.000 sec)
|
However, upgrading from 11.2 to 11.3 causes this:
podman run -d -ti --env MARIADB_ROOT_PASSWORD=manager --name mariadb11 -v mariadb:/var/lib/mysql mariadb:11.2
|
podman exec -it mariadb11 bash
|
root@3f0e6649e7b1:/# mariadb -pmanager
|
|
MariaDB [(none)]> show grants for root@'%';
|
+--------------------------------------------------------------------------------------------------------------------------------+
|
| Grants for root@% |
|
+--------------------------------------------------------------------------------------------------------------------------------+
|
| GRANT ALL PRIVILEGES ON *.* TO `root`@`%` IDENTIFIED BY PASSWORD '*7D2ABFF56C15D67445082FBB4ACD2DCD26C0ED57' WITH GRANT OPTION |
|
| GRANT PROXY ON ''@'%' TO 'root'@'%' WITH GRANT OPTION |
|
+--------------------------------------------------------------------------------------------------------------------------------+
|
2 rows in set (0.000 sec)
|
Exit container and continue with:
podman rm -f mariadb11
|
podman run -d -ti --env MARIADB_ROOT_PASSWORD=manager --name mariadb11 -v mariadb:/var/lib/mysql mariadb:11.3
|
podman exec -it mariadb11 bash
|
root@ad62bd011ef3:/# mariadb -pmanager
|
|
MariaDB [(none)]> show grants for root@'%';
|
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
| Grants for root@% |
|
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
| GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, SHUTDOWN, PROCESS, FILE, REFERENCES, INDEX, ALTER, SHOW DATABASES, SUPER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, REPLICATION SLAVE, BINLOG MONITOR, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, CREATE USER, EVENT, TRIGGER, CREATE TABLESPACE, DELETE HISTORY, SET USER, FEDERATED ADMIN, CONNECTION ADMIN, READ_ONLY ADMIN, REPLICATION SLAVE ADMIN, REPLICATION MASTER ADMIN, BINLOG ADMIN, BINLOG REPLAY, SLAVE MONITOR ON *.* TO `root`@`%` IDENTIFIED BY PASSWORD '*7D2ABFF56C15D67445082FBB4ACD2DCD26C0ED57' WITH GRANT OPTION |
|
| GRANT PROXY ON ''@'%' TO 'root'@'%' WITH GRANT OPTION |
|
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
2 rows in set (0.000 sec)
|
This change stays even after running mariadb-upgrade command.
This is then causing errors such as
Error granting privileges, invalid priv string: ALL , params: ('sometest', '%'), query: GRANT ALL ON `sometest`.* TO %s@%s , exception: (1044, \"Access denied for user 'root'@'%' to database 'sometest'\").
|
The issue was also discussed here: https://github.com/ansible-collections/community.mysql/issues/462
Attachments
Issue Links
- is caused by
-
MDEV-29167 new db-level SHOW CREATE ROUTINE privilege
-
- Closed
-
- is duplicated by
-
MDEV-34851 privileges don't work with grant all privileges
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Fix Version/s | 11.3 [ 28565 ] |
Component/s | Upgrades [ 15807 ] |
Assignee | Daniel Black [ danblack ] |
Assignee | Daniel Black [ danblack ] | Sergei Golubchik [ serg ] |
Priority | Major [ 3 ] | Blocker [ 1 ] |
Link | This issue blocks MENT-1983 [ MENT-1983 ] |
Link | This issue is caused by MENT-1983 [ MENT-1983 ] |
Link | This issue is caused by MENT-1983 [ MENT-1983 ] |
Link |
This issue is caused by |
Summary | Upgrade from 11.2 to 11.3 changes root's privileges | Upgrade from 11.2 to 11.3 changes root's privileges restricting GRANT ALL |
Status | Open [ 1 ] | In Progress [ 3 ] |
Assignee | Sergei Golubchik [ serg ] | Oleksandr Byelkin [ sanja ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Oleksandr Byelkin [ sanja ] | Sergei Golubchik [ serg ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Assignee | Sergei Golubchik [ serg ] | Oleksandr Byelkin [ sanja ] |
Status | Stalled [ 10000 ] | In Review [ 10002 ] |
Fix Version/s | 11.4.2 [ 29633 ] | |
Fix Version/s | 11.3 [ 28565 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Review [ 10002 ] | Closed [ 6 ] |
Component/s | Authentication and Privilege System [ 13101 ] |
Link | This issue blocks MENT-1983 [ MENT-1983 ] |
Comment |
[ First, yes, may be, there's no well defined rule about what bugs we warn about in the release notes. It's a matter of opinions every time.
Second, there was no official policy about it, because this was the first case ever when we've added a truly new privilege for something that was not possible to do before. It seems that indeed, you're right, we'll want {{GRANT ALL PRIVILEGES}} to work after an upgrade — this was the lesson we've learned. Third, yes, sure. Something like {code:sql} update mysql.global_priv set priv=json_replace(priv, '$.access', 18446744073709551615) where user = 'root' and host='localhost'; flush privileges; {code} ] |
Link |
This issue is duplicated by |
SHOW CREATE ROUTINE was added in 11.3. It was intentional that SHOW CREATE ROUTINE is not given automatically to users who had ALL PRIVILEGES in previous versions as users with ALL PRIVILEGES in previous versions weren't able to see the routine body, so they shouldn't after the upgrade either.
That was the rational at the time. It does make the granting of all privileges rather troublesome as you've discovered.