-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathadmin-action.go
More file actions
471 lines (399 loc) · 18.1 KB
/
admin-action.go
File metadata and controls
471 lines (399 loc) · 18.1 KB
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
// Copyright (c) 2015-2021 MinIO, Inc.
//
// This file is part of MinIO Object Storage stack
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package policy
import (
"github.com/minio/pkg/v3/policy/condition"
"github.com/minio/pkg/v3/wildcard"
)
// AdminAction - admin policy action.
type AdminAction string
const (
// HealAdminAction - allows heal command
HealAdminAction = "admin:Heal"
// DecommissionAdminAction - allows decomissioning of pools
DecommissionAdminAction = "admin:Decommission"
// RebalanceAdminAction - allows rebalancing of pools
RebalanceAdminAction = "admin:Rebalance"
// Service Actions
// StorageInfoAdminAction - allow listing server info
StorageInfoAdminAction = "admin:StorageInfo"
// PrometheusAdminAction - prometheus info action
PrometheusAdminAction = "admin:Prometheus"
// DataUsageInfoAdminAction - allow listing data usage info
DataUsageInfoAdminAction = "admin:DataUsageInfo"
// ForceUnlockAdminAction - allow force unlocking locks
ForceUnlockAdminAction = "admin:ForceUnlock"
// TopLocksAdminAction - allow listing top locks
TopLocksAdminAction = "admin:TopLocksInfo"
// ProfilingAdminAction - allow profiling
ProfilingAdminAction = "admin:Profiling"
// TraceAdminAction - allow listing server trace
TraceAdminAction = "admin:ServerTrace"
// ConsoleLogAdminAction - allow listing console logs on terminal
ConsoleLogAdminAction = "admin:ConsoleLog"
// KMSEnableAdminAction - allow enabling the builtin KMS
KMSEnableAdminAction = "admin:KMSEnable"
// KMSBackupAdminAction - allow backing up builtin KMS keys
KMSBackupAdminAction = "admin:KMSBackup"
// KMSRestoreAdminAction - allow restoring builtin KMS keys
KMSRestoreAdminAction = "admin:KMSRestore"
// KMSCreateKeyAdminAction - allow creating a new KMS master key
KMSCreateKeyAdminAction = "admin:KMSCreateKey"
// KMSKeyStatusAdminAction - allow getting KMS key status
KMSKeyStatusAdminAction = "admin:KMSKeyStatus"
// KMSKeyRotateAdminAction - allow rotating KMS keys
KMSKeyRotateAdminAction = "admin:KMSKeyRotate"
// ServerInfoAdminAction - allow listing server info
ServerInfoAdminAction = "admin:ServerInfo"
// HealthInfoAdminAction - allow obtaining cluster health information
HealthInfoAdminAction = "admin:OBDInfo"
// LicenseInfoAdminAction - allow obtaining license information
LicenseInfoAdminAction = "admin:LicenseInfo"
// BandwidthMonitorAction - allow monitoring bandwidth usage
BandwidthMonitorAction = "admin:BandwidthMonitor"
// InspectDataAction - allows downloading raw files from backend
InspectDataAction = "admin:InspectData"
// ServerUpdateAdminAction - allow MinIO binary update
ServerUpdateAdminAction = "admin:ServerUpdate"
// ServiceRestartAdminAction - allow restart of MinIO service.
ServiceRestartAdminAction = "admin:ServiceRestart"
// ServiceStopAdminAction - allow stopping MinIO service.
ServiceStopAdminAction = "admin:ServiceStop"
// ServiceFreezeAdminAction - allow freeze/unfreeze MinIO service.
ServiceFreezeAdminAction = "admin:ServiceFreeze"
// ServiceCordonAdminAction - allow cordon/uncordon MinIO service.
ServiceCordonAdminAction = "admin:ServiceCordon"
// ConfigUpdateAdminAction - allow MinIO config management
ConfigUpdateAdminAction = "admin:ConfigUpdate"
// CreateUserAdminAction - allow creating MinIO user
CreateUserAdminAction = "admin:CreateUser"
// DeleteUserAdminAction - allow deleting MinIO user
DeleteUserAdminAction = "admin:DeleteUser"
// ListUsersAdminAction - allow list users permission
ListUsersAdminAction = "admin:ListUsers"
// EnableUserAdminAction - allow enable user permission
EnableUserAdminAction = "admin:EnableUser"
// DisableUserAdminAction - allow disable user permission
DisableUserAdminAction = "admin:DisableUser"
// GetUserAdminAction - allows GET permission on user info
GetUserAdminAction = "admin:GetUser"
// ChangeMyPasswordAdminAction - allow changing own password
ChangeMyPasswordAdminAction = "admin:ChangeMyPassword"
// Cluster Replicate Actions
// SiteReplicationAddAction - allow adding clusters for site-level replication
SiteReplicationAddAction = "admin:SiteReplicationAdd"
// SiteReplicationDisableAction - allow disabling a cluster from replication
SiteReplicationDisableAction = "admin:SiteReplicationDisable"
// SiteReplicationRemoveAction - allow removing a cluster from replication
SiteReplicationRemoveAction = "admin:SiteReplicationRemove"
// SiteReplicationResyncAction - allow resyncing cluster data to another site
SiteReplicationResyncAction = "admin:SiteReplicationResync"
// SiteReplicationInfoAction - allow getting site replication info
SiteReplicationInfoAction = "admin:SiteReplicationInfo"
// SiteReplicationOperationAction - allow performing site replication
// create/update/delete operations to peers
SiteReplicationOperationAction = "admin:SiteReplicationOperation"
// Tables Replication Actions
// TablesReplicationAddAction - allow adding tables replication targets
TablesReplicationAddAction = "admin:TablesReplicationAdd"
// TablesReplicationRemoveAction - allow removing tables replication targets
TablesReplicationRemoveAction = "admin:TablesReplicationRemove"
// TablesReplicationInfoAction - allow getting tables replication info/status
TablesReplicationInfoAction = "admin:TablesReplicationInfo"
// TablesReplicationStartFailoverAction - allow starting tables replication failover
TablesReplicationStartFailoverAction = "admin:TablesReplicationStartFailover"
// TablesReplicationCatalogAdminAction - allow catalog debugging operations (reset, dump contents)
TablesReplicationCatalogAdminAction = "admin:TablesReplicationCatalogAdmin"
// Service account Actions
// CreateServiceAccountAdminAction - allow create a service account for a user
CreateServiceAccountAdminAction = "admin:CreateServiceAccount"
// UpdateServiceAccountAdminAction - allow updating a service account
UpdateServiceAccountAdminAction = "admin:UpdateServiceAccount"
// RemoveServiceAccountAdminAction - allow removing a service account
RemoveServiceAccountAdminAction = "admin:RemoveServiceAccount"
// ListServiceAccountsAdminAction - allow listing service accounts
ListServiceAccountsAdminAction = "admin:ListServiceAccounts"
// ListTemporaryAccountsAdminAction - allow listing of temporary accounts
ListTemporaryAccountsAdminAction = "admin:ListTemporaryAccounts"
// Group Actions
// AddUserToGroupAdminAction - allow adding user to group permission
AddUserToGroupAdminAction = "admin:AddUserToGroup"
// RemoveUserFromGroupAdminAction - allow removing user to group permission
RemoveUserFromGroupAdminAction = "admin:RemoveUserFromGroup"
// GetGroupAdminAction - allow getting group info
GetGroupAdminAction = "admin:GetGroup"
// ListGroupsAdminAction - allow list groups permission
ListGroupsAdminAction = "admin:ListGroups"
// EnableGroupAdminAction - allow enable group permission
EnableGroupAdminAction = "admin:EnableGroup"
// DisableGroupAdminAction - allow disable group permission
DisableGroupAdminAction = "admin:DisableGroup"
// Policy Actions
// CreatePolicyAdminAction - allow create policy permission
CreatePolicyAdminAction = "admin:CreatePolicy"
// DeletePolicyAdminAction - allow delete policy permission
DeletePolicyAdminAction = "admin:DeletePolicy"
// GetPolicyAdminAction - allow get policy permission
GetPolicyAdminAction = "admin:GetPolicy"
// AttachPolicyAdminAction - allows attaching a policy to a user/group
AttachPolicyAdminAction = "admin:AttachUserOrGroupPolicy"
// UpdatePolicyAssociationAction - allows to add/remove policy association
// on a user or group.
UpdatePolicyAssociationAction = "admin:UpdatePolicyAssociation"
// ListUserPoliciesAdminAction - allows listing user policies
ListUserPoliciesAdminAction = "admin:ListUserPolicies"
// Bucket quota Actions
// SetBucketQuotaAdminAction - allow setting bucket quota
SetBucketQuotaAdminAction = "admin:SetBucketQuota"
// GetBucketQuotaAdminAction - allow getting bucket quota
GetBucketQuotaAdminAction = "admin:GetBucketQuota"
// Bucket Target admin Actions
// SetBucketTargetAction - allow setting bucket target
SetBucketTargetAction = "admin:SetBucketTarget"
// GetBucketTargetAction - allow getting bucket targets
GetBucketTargetAction = "admin:GetBucketTarget"
// ReplicationDiff - allow computing the unreplicated objects in a bucket
ReplicationDiff = "admin:ReplicationDiff"
// Bucket import/export admin Actions
// ImportBucketMetadataAction - allow importing bucket metadata
ImportBucketMetadataAction = "admin:ImportBucketMetadata"
// ExportBucketMetadataAction - allow exporting bucket metadata
ExportBucketMetadataAction = "admin:ExportBucketMetadata"
// Remote Tier admin Actions
// SetTierAction - allow adding/editing a remote tier
SetTierAction = "admin:SetTier"
// ListTierAction - allow listing remote tiers
ListTierAction = "admin:ListTier"
// Migrate IAM admin Actions
// ExportIAMAction - allow exporting of all IAM info
ExportIAMAction = "admin:ExportIAM"
// ImportIAMAction - allow importing IAM info to MinIO
ImportIAMAction = "admin:ImportIAM"
// Batch Job APIs
// ListBatchJobsAction allow listing current active jobs
ListBatchJobsAction = "admin:ListBatchJobs"
// DescribeBatchJobAction allow getting batch job YAML
DescribeBatchJobAction = "admin:DescribeBatchJob"
// StartBatchJobAction allow submitting a batch job
StartBatchJobAction = "admin:StartBatchJob"
// CancelBatchJobAction allow canceling a batch job
CancelBatchJobAction = "admin:CancelBatchJob"
// GenerateBatchJobAction allow requesting batch job templates
GenerateBatchJobAction = "admin:GenerateBatchJob"
// Inventory Control Actions
// InventoryControlAction - allows control of inventory jobs
InventoryControlAction = "admin:InventoryControl"
// All new v4 APIs
// ClusterInfoAction - allow cluster summary
ClusterInfoAction = "admin:ClusterInfo"
// PoolListAction - allow list how many pools and summary per pool
PoolListAction = "admin:PoolList"
// PoolInfoAction - allow pool specific summary and detail information
PoolInfoAction = "admin:PoolInfo"
// NodeListAction - allow listing of nodes
NodeListAction = "admin:NodeList"
// NodeInfoAction - allow node specific summary and detailed information
NodeInfoAction = "admin:NodeInfo"
// SetInfoAction - allow set specific summary and detail
SetInfoAction = "admin:SetInfo"
// DriveListAction - allow listing of drives
DriveListAction = "admin:DriveList"
// DriveInfoAction - allow drive specific summary and detail
DriveInfoAction = "admin:DriveInfo"
// Delta Sharing Actions
// DeltaSharingAdminAction - allow managing Delta Sharing shares and tokens
DeltaSharingAdminAction = "admin:DeltaSharing"
// DeltaSharingCreateShareAction - allow creating Delta Sharing shares
DeltaSharingCreateShareAction = "admin:DeltaSharingCreateShare"
// DeltaSharingDeleteShareAction - allow deleting Delta Sharing shares
DeltaSharingDeleteShareAction = "admin:DeltaSharingDeleteShare"
// DeltaSharingListSharesAction - allow listing Delta Sharing shares
DeltaSharingListSharesAction = "admin:DeltaSharingListShares"
// DeltaSharingGetShareAction - allow getting Delta Sharing share details
DeltaSharingGetShareAction = "admin:DeltaSharingGetShare"
// DeltaSharingUpdateShareAction - allow updating Delta Sharing shares
DeltaSharingUpdateShareAction = "admin:DeltaSharingUpdateShare"
// DeltaSharingCreateTokenAction - allow creating Delta Sharing tokens
DeltaSharingCreateTokenAction = "admin:DeltaSharingCreateToken"
// DeltaSharingDeleteTokenAction - allow deleting Delta Sharing tokens
DeltaSharingDeleteTokenAction = "admin:DeltaSharingDeleteToken"
// DeltaSharingListTokensAction - allow listing Delta Sharing tokens
DeltaSharingListTokensAction = "admin:DeltaSharingListTokens"
// ReadAlertsAction - allow reading stored alerts
ReadAlertsAction = "admin:ReadAlerts"
// Log Actions
// ReadAPILogsAction - allow reading stored API logs
ReadAPILogsAction = "admin:ReadAPILogs"
// ReadErrorLogsAction - allow reading stored error logs
ReadErrorLogsAction = "admin:ReadErrorLogs"
// ReadAuditLogsAction - allow reading stored audit logs
ReadAuditLogsAction = "admin:ReadAuditLogs"
// AllAdminActions - provides all admin permissions
AllAdminActions = "admin:*"
)
// SupportedAdminActions - list of all supported admin actions.
var SupportedAdminActions = map[AdminAction]struct{}{
HealAdminAction: {},
StorageInfoAdminAction: {},
DataUsageInfoAdminAction: {},
TopLocksAdminAction: {},
ProfilingAdminAction: {},
PrometheusAdminAction: {},
TraceAdminAction: {},
ConsoleLogAdminAction: {},
KMSCreateKeyAdminAction: {},
KMSKeyStatusAdminAction: {},
ServerInfoAdminAction: {},
HealthInfoAdminAction: {},
LicenseInfoAdminAction: {},
BandwidthMonitorAction: {},
InspectDataAction: {},
ServerUpdateAdminAction: {},
ServiceRestartAdminAction: {},
ServiceStopAdminAction: {},
ServiceFreezeAdminAction: {},
ConfigUpdateAdminAction: {},
CreateUserAdminAction: {},
DeleteUserAdminAction: {},
ListUsersAdminAction: {},
EnableUserAdminAction: {},
DisableUserAdminAction: {},
GetUserAdminAction: {},
ChangeMyPasswordAdminAction: {},
AddUserToGroupAdminAction: {},
RemoveUserFromGroupAdminAction: {},
GetGroupAdminAction: {},
ListGroupsAdminAction: {},
EnableGroupAdminAction: {},
DisableGroupAdminAction: {},
CreateServiceAccountAdminAction: {},
UpdateServiceAccountAdminAction: {},
RemoveServiceAccountAdminAction: {},
ListServiceAccountsAdminAction: {},
ListTemporaryAccountsAdminAction: {},
CreatePolicyAdminAction: {},
DeletePolicyAdminAction: {},
GetPolicyAdminAction: {},
AttachPolicyAdminAction: {},
UpdatePolicyAssociationAction: {},
ListUserPoliciesAdminAction: {},
SetBucketQuotaAdminAction: {},
GetBucketQuotaAdminAction: {},
SetBucketTargetAction: {},
GetBucketTargetAction: {},
ReplicationDiff: {},
SetTierAction: {},
ListTierAction: {},
DecommissionAdminAction: {},
RebalanceAdminAction: {},
SiteReplicationAddAction: {},
SiteReplicationDisableAction: {},
SiteReplicationInfoAction: {},
SiteReplicationOperationAction: {},
SiteReplicationRemoveAction: {},
SiteReplicationResyncAction: {},
TablesReplicationAddAction: {},
TablesReplicationRemoveAction: {},
TablesReplicationInfoAction: {},
TablesReplicationStartFailoverAction: {},
TablesReplicationCatalogAdminAction: {},
ImportBucketMetadataAction: {},
ExportBucketMetadataAction: {},
ExportIAMAction: {},
ImportIAMAction: {},
ForceUnlockAdminAction: {},
ListBatchJobsAction: {},
DescribeBatchJobAction: {},
StartBatchJobAction: {},
CancelBatchJobAction: {},
GenerateBatchJobAction: {},
InventoryControlAction: {},
ClusterInfoAction: {},
PoolListAction: {},
PoolInfoAction: {},
NodeListAction: {},
NodeInfoAction: {},
SetInfoAction: {},
DriveListAction: {},
DriveInfoAction: {},
ServiceCordonAdminAction: {},
DeltaSharingAdminAction: {},
DeltaSharingCreateShareAction: {},
DeltaSharingDeleteShareAction: {},
DeltaSharingListSharesAction: {},
DeltaSharingGetShareAction: {},
DeltaSharingUpdateShareAction: {},
DeltaSharingCreateTokenAction: {},
DeltaSharingDeleteTokenAction: {},
DeltaSharingListTokensAction: {},
ReadAPILogsAction: {},
ReadErrorLogsAction: {},
ReadAuditLogsAction: {},
ReadAlertsAction: {},
AllAdminActions: {},
}
// AdminActionsWithResource enumerates admin actions that operate on
// a specific bucket resource. When a policy statement contains one of
// these actions *and* specifies a Resource, the resource is enforced
// against the target bucket. All other admin actions are resource-less;
// any Resource specified in the statement is ignored for them.
var AdminActionsWithResource = map[AdminAction]struct{}{
SetBucketQuotaAdminAction: {},
GetBucketQuotaAdminAction: {},
SetBucketTargetAction: {},
GetBucketTargetAction: {},
ReplicationDiff: {},
ImportBucketMetadataAction: {},
ExportBucketMetadataAction: {},
HealAdminAction: {},
InventoryControlAction: {},
}
// HasResource reports whether this admin action operates on a bucket resource.
func (action AdminAction) HasResource() bool {
for a := range AdminActionsWithResource {
if action.Match(a) {
return true
}
}
return false
}
// Match - matches action name with action pattern.
func (action AdminAction) Match(a AdminAction) bool {
return wildcard.Match(string(action), string(a))
}
// IsValid - checks if action is valid or not.
func (action AdminAction) IsValid() bool {
for supAction := range SupportedAdminActions {
if action.Match(supAction) {
return true
}
}
return false
}
func createAdminActionConditionKeyMap() map[Action]condition.KeySet {
allSupportedAdminKeys := []condition.Key{}
for _, keyName := range condition.AllSupportedAdminKeys {
allSupportedAdminKeys = append(allSupportedAdminKeys, keyName.ToKey())
}
adminActionConditionKeyMap := map[Action]condition.KeySet{}
for act := range SupportedAdminActions {
adminActionConditionKeyMap[Action(act)] = condition.NewKeySet(allSupportedAdminKeys...)
}
return adminActionConditionKeyMap
}
// adminActionConditionKeyMap - holds mapping of supported condition key for an action.
var adminActionConditionKeyMap = createAdminActionConditionKeyMap()