A policy supplies privileges to an entity such as a catalog, schema, table, view, or column, based on the entity’s assigned attributes, such as tags.
A policy has the following characteristics:
Attribute | Description |
---|---|
Name and description | The name and description given to the policy upon creation. |
Matching expression | A boolean expression that can test whether the policy should apply. Supported expressions are listed here. |
A role that the policy is assigned to | The policy is only active if the policy role is contained in the user's current active role set. |
Grants of privileges on entities | A set of privileges that can either be granted or denied. You can identify all tables in a catalog by selecting All schemas and All tables in the Scope section of the Policies tab. The entities on which policies can grant privileges are catalogs, schemas, tables, views, and columns. |
Combined privilege checks with role-based privileges | When checking privileges, role-based privileges and attribute-based
privileges from policies are combined using the same rules
as are used for multiple role-based privileges:
|
A role has a name and an optional description. A role can be granted privileges on entities such as clusters, catalogs, and tables. This provides fine-grained control that protects your data, and allows you to define just the right mix of allowed actions and access for each function in your organization.
Manage users, roles, and privileges in the Access - Users section and the Access - Roles and privileges section of Starburst Galaxy.
All actions are controlled by privileges or ownership.
The attribute-based access control system of Starburst Galaxy allows the combination of policies and attributes, such as tags, to further manage role access to entities such as catalogs, schemas, tables, views, and columns.
A policy can grant privileges, apply row filters, or apply column masks to different entities, such as a schema and a table. A policy is only active if the policy role is contained in the user’s current active role set.
Starburst Galaxy combines attribute-based privilege grants and role-based privilege grants to determine role access to entities.
For more information, see Access control basics.
The matching expression is a boolean expression that determines whether the policy is applicable to the particular entity. Matching expressions are defined using a custom language. All supported expressions are documented on this page.
Parentheses are also supported and can be used to make complex expressions.
The following example shows a matching expression that returns true
if
either the set of tags on an entity includes the tag sales_department
or
includes tag marketing_department
as well as tag sales_liaison
:
HAS_TAG(sales_department) OR (HAS_TAG(marketing_department) AND HAS_TAG(sales_liaison))
See policy matching expressions for the full list of supported expressions.
A policy can define grants on multiple entities, and a single policy can grant
privileges on different entity kinds. For example, a policy named
sales_admin
might allow the CREATE_TABLE
privilege on all schemas in a
catalog named sales_data
and allow privileges SELECT
, UPDATE
and
INSERT
on all tables in catalog sales_data
.
The Policies tab lists all policies. The tab is only visible if a role in the user’s active role set has the account-level privilege Manage security.
If a role in the user’s active role
set
has the Manage security
privilege, the user can create a new policy by
clicking Add policy.
When creating a policy, you can enter the matching expression as free text in the matching expression input field. For each character typed, the expression parser is run, and the input field turns pink if there is a syntax error in the matching expression, or if it references a tag that does not exist.
You can change any attribute of a policy listed in the policies tab by clicking edit
The Starburst Galaxy access control system performs the following operations to check whether the user has access to a catalog, schema, table, view, or column entity:
true
.ALLOW
and DENY
privilege grants are
applied, so a DENY
privilege always overrides an ALLOW
privilege
whether the privileges come from role-based grants or from attribute-based
grants.DENY
with NOT
expression on a parent
entity. For example, DENY SELECT
on scope catalog_example
with
expression NOT HAS_TAG(pii)
.catalog_example
is denied the
privilege, including every entity that is a child of catalog_example
, even
if the pii
tag is applied to that child entity. This happens because a
DENY
on a parent entity overrides an ALLOW
on a child entity. A
DENY
policy on a parent entity with child entities to which the policy
does not apply, is not equivalent to an ALLOW
policy with child entities
to which the policy does not apply. A key operation performed by the access control system determines visibility of catalogs, schemas, tables, and views:
ALLOW
privilege on the catalog or any schema,
table, view, or column in the catalog, and that the ALLOW
privilege is not
overridden by a DENY
privilege. The privileges can come from role-based
grants, or from policies whose matching expression is true
for the tags
associated with a tagged entity in the catalog.ALLOW
privilege on the schema or any
table, view, or column in the schema, and that the ALLOW
privilege is not
overridden by a DENY
privilege. The privileges can come from role-based
grants, or from policies whose matching expression is true
for the tags
associated with a tagged entity in the schema.ALLOW
privilege on the table
or view, or any column in the table or view, and that the ALLOW
privilege
is not overridden by a DENY
privilege. The privileges can come from
role-based grants, or from policies whose matching expression is true
for
the tags associated with a tagged entity in the table or view.Row-level filters are an important component of data governance. They ensure that the rows returned by queries are rows the user is entitled to see. Unlike RBAC grants, which apply to entire tables or columns, row filters determine access on a row-by-row basis.
A row-level filter is a named SQL expression. One or more row filters can be
added to a policy whose target is a table or view. When Starburst Galaxy
fetches privileges for a table or view, if the table or view matches the policy
target, and the policy matching expression evaluates to true
for the
table’s tags, the policy’s row filters are included in the table privileges.
Multiple different policies can match the table, so the row filters returned
cam come from multiple different policies.
The row filter SQL expressions from all row filters from all matching policies
are compared with the OR
operator and added to the query’s WHERE
clause. The rows in the query for which any of the row filter expressions
returns true
are included in the query result, and the rows for which all
row filters returned false
are excluded.
Row filters are evaluated using the privileges of the role that owns the row filter, which may not be the same as the current role of the user running a query to which the row filter is applied. This means that the row filter in general has privileges to reference tables the user running a query does not have the privileges to access.
To create row filters, a user’s active role
set
must have the Manage security
privilege. In addition, the Row filters
side pane link is only visible to users whose active role set has the Manage
security
privilege.
See Row filters for more details.
Column masks are another access control tool that can be used to protect sensitive data. They ensure that column data is only visible to those who have permission to see the data by masking the values returned by the query.
One or more column masks can be added to a policy whose target is a table or
view. Column masks function similar to row filters in that
when Starburst Galaxy fetches privileges for a table or view, and that table
or view matches the policy target and the policy’s matching expression is true
for the table or view’s tags, then the policy’s column masks are included in
the table or view privileges.
Column masks are evaluated using the privileges of the role that owns the column mask, which may not be the same as the current role of the user running a query to which the column mask is applied. This means that the column mask in general has privileges to reference tables the user running a query does not have the privileges to access.
When you execute a query, Galaxy automatically rewrites your query and applies a column mask expression to the specified column. The column rewrite applies the mask expression everywhere the column appears in the query. Users see masked data based on the conditions you define.
Masking and hashing are different obfuscation techniques that have different use cases:
Masking: Use masking to protect privacy or to obscure sensitive data to meet compliance requirements. Masking lets you hide specific portions of a value, such as displaying only the last four digits of a social security number. Do not perform joins on masked columns, as this produces an unexpected output.
Hashing: Use hashing when you need to obfuscate data irreversibly. Hashing lets you anonymize data while ensuring that the same input always produces the same hashed output.
To create column masks, a user’s active role
set
must have the Manage security
privilege. In addition, the Column mask
side pane link is only visible to users whose active role set has the Manage
security
privilege.
See Column masks for more details.
Is the information on this page helpful?
Yes
No