Skip to content

Commit

Permalink
server: databases apis privilege fixes
Browse files Browse the repository at this point in the history
- Gate status server grpc UpdateTableMetadataCache on ADMIN
This should only be accessed via the api v2 http handler, which
performs finer privilege checks on if the user has CONNECT privs
on a database.
- When filtering dbs and tables to return in the apis, permit
dbs and tables that have CONNECT on the public role.
- Move TestUpdateTableMetadataCacheJobRunsOnRPCTrigger test
to status_test.go. This test is more well-suited to live here since
it tests functionality in the status server.

Epic: CRDB-37558
Fixes: cockroachdb#134431
Fixes: cockroachdb#130245

Release note (ui change): Users may access DB Console's db pages
(db overview, tables overview, table details) if they have CONNECT
privilege on the database.
  • Loading branch information
xinhaoz committed Nov 6, 2024
1 parent 9fab4c6 commit 3a24d87
Show file tree
Hide file tree
Showing 7 changed files with 189 additions and 181 deletions.
16 changes: 8 additions & 8 deletions pkg/server/api_v2_databases_metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -474,10 +474,10 @@ func getTableMetadataBaseQuery(userName string) *safesql.Query {
(SELECT "sql.stats.automatic_collection.enabled" as auto_stats_enabled
FROM [SHOW CLUSTER SETTING sql.stats.automatic_collection.enabled]) csc
LEFT JOIN system.role_members rm ON rm.role = 'admin' AND member = $
WHERE (rm.role = 'admin' OR tbm.db_name in (
WHERE (rm.role = 'admin' OR tbm.db_name IN (
SELECT cdp.database_name
FROM "".crdb_internal.cluster_database_privileges cdp
WHERE grantee = $
WHERE (grantee = $ OR grantee = 'public')
AND privilege_type = 'CONNECT'
))
AND tbm.table_type = 'TABLE'
Expand Down Expand Up @@ -880,11 +880,11 @@ func getDatabaseMetadataBaseQuery(userName string) *safesql.Query {
FROM system.table_metadata, unnest(store_ids) as unnested_ids
GROUP BY db_id
) s ON s.db_id = tbm.db_id
WHERE (rm.role = 'admin' OR n.name in (
SELECT cdp.database_name
FROM "".crdb_internal.cluster_database_privileges cdp
WHERE grantee = $
AND privilege_type = 'CONNECT'
WHERE (rm.role = 'admin' OR n.name IN (
SELECT cdp.database_name
FROM "".crdb_internal.cluster_database_privileges cdp
WHERE (grantee = $ OR grantee = 'public')
AND privilege_type = 'CONNECT'
))
AND n."parentID" = 0
AND n."parentSchemaID" = 0
Expand Down Expand Up @@ -1063,7 +1063,7 @@ func (a *apiV2Server) updateTableMetadataJobAuthorized(
UNION
SELECT 1
FROM "".crdb_internal.cluster_database_privileges cdp
WHERE cdp.grantee = $
WHERE (cdp.grantee = $ OR cdp.grantee = 'public')
AND cdp.privilege_type = 'CONNECT'
)
`, sqlUserStr, sqlUserStr)
Expand Down
Loading

0 comments on commit 3a24d87

Please sign in to comment.