Skip to content

Commit

Permalink
fix(clickhousegrant): escape role name
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov committed Jul 11, 2024
1 parent 956bcdf commit 2b69c55
Show file tree
Hide file tree
Showing 6 changed files with 293 additions and 31 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Ignore `http.StatusBadRequest` on `ClickhouseGrant` deletion
- Retry conflict error when k8s object saved to the storage
- Fix `ClickhouseGrant` invalid remote and local privileges comparison
- Fix `ClickhouseGrant`: doesn't escape role name to grant

## v0.22.0 - 2024-07-02

Expand Down
10 changes: 9 additions & 1 deletion api/v1alpha1/clickhousegrant_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func constructPrivilegesPart(g PrivilegeGrant) string {
}

func (g RoleGrant) ConstructParts(t chUtils.StatementType) (string, string, string) {
rolesPart := strings.Join(g.Roles, ", ")
rolesPart := strings.Join(escapeList(g.Roles), ", ")
granteesPart := constructGranteePart(g.Grantees)
options := ""
if g.WithAdminOption && t == chUtils.GRANT {
Expand Down Expand Up @@ -315,3 +315,11 @@ func escape(identifier string) string {
replacer := strings.NewReplacer("`", "\\`", "\\", "\\\\")
return "`" + replacer.Replace(identifier) + "`"
}

func escapeList(list []string) []string {
result := make([]string, len(list))
for i, v := range list {
result[i] = escape(v)
}
return result
}
92 changes: 90 additions & 2 deletions docs/docs/api-reference/clickhousegrant.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
title: "ClickhouseGrant"
---

## Usage example
## Usage examples

??? example
??? example "example_2"
```yaml
apiVersion: aiven.io/v1alpha1
kind: ClickhouseGrant
Expand Down Expand Up @@ -46,6 +46,94 @@ title: "ClickhouseGrant"
- role: my-role
```

??? example
```yaml
apiVersion: aiven.io/v1alpha1
kind: ClickhouseGrant
metadata:
name: my-clickhouse-grant
spec:
authSecretRef:
name: aiven-token
key: token

project: aiven-project-name
serviceName: my-clickhouse-service

privilegeGrants:
- grantees:
- role: my-clickhouse-role
privileges:
- INSERT
- SELECT
- CREATE TABLE
- CREATE VIEW
database: my-clickhouse-db
roleGrants:
- grantees:
- user: my-clickhouse-user
roles:
- my-clickhouse-role

---

apiVersion: aiven.io/v1alpha1
kind: Clickhouse
metadata:
name: my-clickhouse-service
spec:
authSecretRef:
name: aiven-token
key: token

project: aiven-project-name
cloudName: google-europe-west1
plan: startup-16

---

apiVersion: aiven.io/v1alpha1
kind: ClickhouseDatabase
metadata:
name: my-clickhouse-db
spec:
authSecretRef:
name: aiven-token
key: token

project: aiven-project-name
serviceName: my-clickhouse-service

---

apiVersion: aiven.io/v1alpha1
kind: ClickhouseUser
metadata:
name: my-clickhouse-user
spec:
authSecretRef:
name: aiven-token
key: token

project: aiven-project-name
serviceName: my-clickhouse-service

---

apiVersion: aiven.io/v1alpha1
kind: ClickhouseRole
metadata:
name: my-clickhouse-role
spec:
authSecretRef:
name: aiven-token
key: token

project: aiven-project-name
serviceName: my-clickhouse-service
role: my-clickhouse-role
```

!!! info
To create this resource, a `Secret` containing Aiven token must be [created](/aiven-operator/authentication.html) first.

Expand Down
40 changes: 40 additions & 0 deletions docs/docs/api-reference/examples/clickhousegrant.example_2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

apiVersion: aiven.io/v1alpha1
kind: ClickhouseGrant
metadata:
name: demo-ch-grant
spec:
authSecretRef:
name: aiven-token
key: token

project: my-aiven-project
serviceName: my-clickhouse

privilegeGrants:
- grantees:
- user: user1
- user: my-clickhouse-user-🦄
privileges:
- SELECT
- INSERT
database: my-db
# If table is omitted, the privileges are granted on all tables in the database
# If columns is omitted, the privileges are granted on all columns in the table
- grantees:
- role: my-role
privileges:
- SELECT
database: my-db
table: my-table
columns:
- col1
- col2

roleGrants:
- roles:
- other-role
grantees:
- user: my-user
- role: my-role

92 changes: 68 additions & 24 deletions docs/docs/api-reference/examples/clickhousegrant.yaml
Original file line number Diff line number Diff line change
@@ -1,40 +1,84 @@

apiVersion: aiven.io/v1alpha1
kind: ClickhouseGrant
metadata:
name: demo-ch-grant
name: my-clickhouse-grant
spec:
authSecretRef:
name: aiven-token
key: token

project: my-aiven-project
serviceName: my-clickhouse
project: aiven-project-name
serviceName: my-clickhouse-service

privilegeGrants:
- grantees:
- user: user1
- user: my-clickhouse-user-🦄
- role: my-clickhouse-role
privileges:
- SELECT
- INSERT
database: my-db
# If table is omitted, the privileges are granted on all tables in the database
# If columns is omitted, the privileges are granted on all columns in the table
- grantees:
- role: my-role
privileges:
- SELECT
database: my-db
table: my-table
columns:
- col1
- col2

- CREATE TABLE
- CREATE VIEW
database: my-clickhouse-db
roleGrants:
- roles:
- other-role
grantees:
- user: my-user
- role: my-role
- grantees:
- user: my-clickhouse-user
roles:
- my-clickhouse-role

---

apiVersion: aiven.io/v1alpha1
kind: Clickhouse
metadata:
name: my-clickhouse-service
spec:
authSecretRef:
name: aiven-token
key: token

project: aiven-project-name
cloudName: google-europe-west1
plan: startup-16

---

apiVersion: aiven.io/v1alpha1
kind: ClickhouseDatabase
metadata:
name: my-clickhouse-db
spec:
authSecretRef:
name: aiven-token
key: token

project: aiven-project-name
serviceName: my-clickhouse-service

---

apiVersion: aiven.io/v1alpha1
kind: ClickhouseUser
metadata:
name: my-clickhouse-user
spec:
authSecretRef:
name: aiven-token
key: token

project: aiven-project-name
serviceName: my-clickhouse-service

---

apiVersion: aiven.io/v1alpha1
kind: ClickhouseRole
metadata:
name: my-clickhouse-role
spec:
authSecretRef:
name: aiven-token
key: token

project: aiven-project-name
serviceName: my-clickhouse-service
role: my-clickhouse-role
Loading

0 comments on commit 2b69c55

Please sign in to comment.