Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/src/main/sphinx/release/release-414.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@

## Security

* Disallow writing system information with the `default` system access control.
* Disallow updating node system information with the `default` system access control.
This provides default authorization for requesting node shutdown.
System information writes can be re-enabled by setting the
`access-control.name` configuration property to `allow-all`, or by configuring
[system information rules](system-file-auth-system_information). ({issue}`17105`)
Notice that access control for updating node system information needs to be configured
on all worker nodes.

## Delta Lake connector

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ Trino offers the following built-in implementations:
================================================== =================================================================
System access control name Description
================================================== =================================================================
``default`` All operations are permitted, except for user impersonation.
``default`` All operations are permitted, except for user impersonation or
updating node system information (like node shutdown).

This is the default access control if none are configured.

``allow-all`` All operations are permitted.
Expand All @@ -32,6 +34,10 @@ System access control name Description
If you want to limit access on a system level in any other way than the ones
listed above, you must implement a custom :doc:`/develop/system-access-control`.

Notice that access control needs to be configured on the coordinator. However authorization for certain operations
like updating node system information that covers request of node shutdown is performed on worker. In such cases
access control should be configured on workers too.

Read only system access control
===============================

Expand Down