-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprivileges.go
288 lines (261 loc) · 6.96 KB
/
privileges.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
package backup
import (
"fmt"
"os"
"path/filepath"
"strings"
"github.com/GrantStreetGroup/go-exasol-client"
)
func BackupPrivileges(src *exasol.Conn, dst string, grantees []string) error {
for i := range grantees {
grantees[i] = "'" + grantees[i] + "'"
}
privs := []func(*exasol.Conn, string, []string) error{
backupConnectionPrivs,
backupRestrictedObjectPrivs,
backupObjectPrivs,
backupRolePrivs,
backupSystemPrivs,
backupImpersonationPrivs,
backupSchemaOwners,
}
for _, backupPriv := range privs {
err := backupPriv(src, dst, grantees)
if err != nil {
return err
}
}
log.Info("Done backing up privileges")
return nil
}
func backupConnectionPrivs(src *exasol.Conn, dst string, grantees []string) error {
log.Info("Backing up connection privileges")
sql := fmt.Sprintf(`
SELECT DISTINCT grantee, granted_connection, admin_option
FROM exa_dba_connection_privs
WHERE grantee IN (%s)
ORDER BY 1, 2
`, strings.Join(grantees, ","),
)
res, err := src.FetchSlice(sql)
if err != nil {
return fmt.Errorf("Unable to get connection privs: %s", err)
}
for _, row := range res {
grantee := row[0].(string)
connection := row[1].(string)
adminOption := row[2].(bool)
sql := fmt.Sprintf("GRANT CONNECTION %s TO [%s]", connection, grantee)
if adminOption {
sql += " WITH ADMIN OPTION"
}
sql += ";\n"
err = appendToObjFile(dst, grantee, sql)
if err != nil {
return err
}
}
return nil
}
func backupObjectPrivs(src *exasol.Conn, dst string, grantees []string) error {
log.Info("Backing up object privileges")
sql := fmt.Sprintf(`
SELECT DISTINCT object_schema, object_name, object_type,
privilege, grantee
FROM exa_dba_obj_privs
WHERE grantee IN (%s)
ORDER BY 1, 2, 3, 4, 5
`, strings.Join(grantees, ","),
)
res, err := src.FetchSlice(sql)
if err != nil {
return fmt.Errorf("Unable to get object privs: %s", err)
}
for _, row := range res {
objType := row[2].(string)
privilege := row[3].(string)
grantee := row[4].(string)
var object string
if objType == "SCHEMA" {
object = row[1].(string)
} else {
object = row[0].(string) + "].[" + row[1].(string)
}
sql := fmt.Sprintf("GRANT %s ON %s [%s] TO [%s];\n", privilege, objType, object, grantee)
err = appendToObjFile(dst, grantee, sql)
if err != nil {
return err
}
}
return nil
}
func backupRestrictedObjectPrivs(src *exasol.Conn, dst string, grantees []string) error {
log.Info("Backing up restricted object privileges")
sql := fmt.Sprintf(`
SELECT DISTINCT object_schema, object_name, object_type,
for_object_schema, for_object_name, for_object_type,
privilege, grantee
FROM exa_dba_restricted_obj_privs
WHERE grantee IN (%s)
ORDER BY 1, 2, 3, 4, 5, 6, 7, 8
`, strings.Join(grantees, ","),
)
res, err := src.FetchSlice(sql)
if err != nil {
return fmt.Errorf("Unable to get restricted object privs: %s", err)
}
for _, row := range res {
objType := row[2].(string)
forObjType := row[5].(string)
privilege := row[6].(string)
grantee := row[7].(string)
var object string
if row[0] == nil {
object = row[1].(string)
} else {
object = row[0].(string) + "].[" + row[1].(string)
}
var forObject string
if row[3] == nil {
forObject = row[4].(string)
} else {
forObject = row[3].(string) + "].[" + row[4].(string)
}
sql := fmt.Sprintf(
`GRANT %s ON %s [%s] FOR %s [%s] TO [%s];`+"\n",
privilege, objType, object, forObjType, forObject, grantee,
)
err = appendToObjFile(dst, grantee, sql)
if err != nil {
return err
}
}
return nil
}
func backupRolePrivs(src *exasol.Conn, dst string, grantees []string) error {
log.Info("Backing up role privileges")
sql := fmt.Sprintf(`
SELECT DISTINCT grantee, granted_role, admin_option
FROM exa_dba_role_privs
WHERE grantee IN (%s)
ORDER BY 1, 2
`, strings.Join(grantees, ","),
)
res, err := src.FetchSlice(sql)
if err != nil {
return fmt.Errorf("Unable to get role privs: %s", err)
}
for _, row := range res {
grantee := row[0].(string)
role := row[1].(string)
adminOption := row[2].(bool)
sql := fmt.Sprintf("GRANT [%s] TO [%s]", role, grantee)
if adminOption {
sql += " WITH ADMIN OPTION"
}
sql += ";\n"
err = appendToObjFile(dst, grantee, sql)
if err != nil {
return err
}
}
return nil
}
func backupSystemPrivs(src *exasol.Conn, dst string, grantees []string) error {
log.Info("Backing up system privileges")
sql := fmt.Sprintf(`
SELECT DISTINCT grantee, privilege, admin_option
FROM exa_dba_sys_privs
WHERE grantee IN (%s)
ORDER BY 1, 2
`, strings.Join(grantees, ","),
)
res, err := src.FetchSlice(sql)
if err != nil {
return fmt.Errorf("Unable to get sys privs: %s", err)
}
for _, row := range res {
grantee := row[0].(string)
privilege := row[1].(string)
adminOption := row[2].(bool)
sql := fmt.Sprintf("GRANT %s TO [%s]", privilege, grantee)
if adminOption {
sql += " WITH ADMIN OPTION"
}
sql += ";\n"
err = appendToObjFile(dst, grantee, sql)
if err != nil {
return err
}
}
return nil
}
func backupImpersonationPrivs(src *exasol.Conn, dst string, grantees []string) error {
log.Info("Backing up impersonation privileges")
sql := fmt.Sprintf(`
SELECT DISTINCT grantee, impersonation_on
FROM exa_dba_impersonation_privs
WHERE grantee IN (%s)
ORDER BY 1, 2
`, strings.Join(grantees, ","),
)
res, err := src.FetchSlice(sql)
if err != nil {
return fmt.Errorf("Unable to get impersonation privs: %s", err)
}
for _, row := range res {
grantee := row[0].(string)
impersonationOn := row[1].(string)
sql := fmt.Sprintf("GRANT IMPERSONATION ON [%s] TO [%s];\n", impersonationOn, grantee)
err = appendToObjFile(dst, grantee, sql)
if err != nil {
return err
}
}
return nil
}
func backupSchemaOwners(src *exasol.Conn, dst string, grantees []string) error {
log.Info("Backing up schema owners")
sql := fmt.Sprintf(`
SELECT DISTINCT s.schema_name, s.schema_owner,
(vs.schema_name IS NOT NULL) AS is_virtual
FROM exa_schemas AS s
LEFT JOIN exa_all_virtual_schemas AS vs
ON s.schema_name = vs.schema_name
WHERE s.schema_owner IN (%s)
ORDER BY 1, 2
`, strings.Join(grantees, ","),
)
res, err := src.FetchSlice(sql)
if err != nil {
return fmt.Errorf("Unable to get schema owner: %s", err)
}
for _, row := range res {
schema := row[0].(string)
owner := row[1].(string)
isVirtual := row[2].(bool)
var virtual string
if isVirtual {
virtual = "VIRTUAL "
}
sql := fmt.Sprintf("ALTER %sSCHEMA [%s] CHANGE OWNER [%s];\n", virtual, schema, owner)
err = appendToObjFile(dst, owner, sql)
if err != nil {
return err
}
}
return nil
}
func appendToObjFile(dst, user, sql string) error {
fp := filepath.Join(dst, user+".sql")
f, err := os.OpenFile(fp, os.O_APPEND|os.O_WRONLY, 0644)
if err != nil {
return fmt.Errorf("Unable to open file '%s': %s", fp, err)
}
_, err = f.Write([]byte(sql))
if err != nil {
return fmt.Errorf("Unable to write to file '%s': %s", fp, err)
}
f.Close()
return nil
}