-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathSet-AzAdlsGen2ItemAclEntry.ps1
316 lines (288 loc) · 13 KB
/
Set-AzAdlsGen2ItemAclEntry.ps1
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
<#
.SYNOPSIS
Set ADSL Gen 2 ACL by applying the Standard and Default ACL and all sub objects.
The option "SetPermissionRootDirectories" permit to set privileges to all root folder, for exemple you can set the Executive And Read permission on the roots folders (for info the last Read option permit the use of the Microsoft Azure Storage Explorer client).
.DESCRIPTION
REQUIRED : Internet access & Already connected to an Azure tenant
REQUIRED : PowerShell modules, see variables
.PARAMETER LogFile
Optional
Log file path
.NOTES
AUTHOR: James Dumont le Douarec
.LINK
https://github.com/JamesDLD/AzureRm-PowerShell
https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-directory-file-acl-powershell
.EXAMPLE
#Variable
$SubscriptionName="Your Azure Subscription Name"
$ResourceGroupName="The ADLS Gen 2resource group name"
$AdlsGen2Name="The ADLS Gen 2 name"
$FilesystemName="The ADLS Gen 2 name file system name"
$Path="foler1/subfolder2/landing"
$ObjectId="The Azure AD user, service principal or group Object ID"
$AccessControlType="Specify 'Group' or 'User' respectively for an AD group or a User/ServicePrincipal"
$Permission="rwx"
$SetPermissionRootDirectories = "r-x"
#Variable
.\Set-AzAdlsGen2ItemAclEntry.ps1 -SubscriptionName $SubscriptionName -ResourceGroupName $ResourceGroupName -AdlsGen2Name $AdlsGen2Name -FilesystemName $FilesystemName -Path $Path -ObjectId $ObjectId -AccessControlType $AccessControlType -Permission $Permission -SetPermissionRootDirectories $SetPermissionRootDirectories
#>
param(
[Parameter(Mandatory=$True,HelpMessage='Azure Subscription Name')]
[String]
$SubscriptionName,
[Parameter(Mandatory=$True,HelpMessage='Resource Group Name')]
[String]
$ResourceGroupName,
[Parameter(Mandatory=$True,HelpMessage='Azure Data Lake Storage Gen 2 Name')]
[String]
$AdlsGen2Name,
[Parameter(Mandatory=$True,HelpMessage='Azure Data Lake Storage Gen 2 File System Name')]
[String]
$FilesystemName,
[Parameter(Mandatory=$True,HelpMessage='Azure Data Lake Storage Gen 2 Path')]
[String]
$Path,
[Parameter(Mandatory=$True,HelpMessage='Azure AD user, service principal or group object Id.')]
[String]
$ObjectId,
[Parameter(Mandatory=$True,HelpMessage='Access Control type, could be group or user')]
[String]
$AccessControlType,
[Parameter(Mandatory=$True,HelpMessage='ACL Permission')]
[String]
$Permission,
[Parameter(Mandatory=$False,HelpMessage='Set Permission to Root Directories')]
[String]
[ValidateSet("r-x","--x","none")]
$SetPermissionRootDirectories,
[Parameter(Mandatory=$False,HelpMessage='Log file path')]
[String]
$LogFile
)
################################################################################
# Function
################################################################################
#region function
Function Generate_Log_Action([string]$Action, [ScriptBlock]$Command, [string]$LogFile){
$Output = "Info : $Action ... "
Write-Host $Output -ForegroundColor Cyan
((Get-Date -UFormat "[%d-%m-%Y %H:%M:%S] : ") + "Info" + " : " + $Action) | Out-File -FilePath $LogFile -Append -Force
Try{
$Result = Invoke-Command -ScriptBlock $Command
}
Catch {
$ErrorMessage = $_.Exception.Message
$Output = "On action $Action : $ErrorMessage"
((Get-Date -UFormat "[%d-%m-%Y %H:%M:%S] : ") + "Error" + " : " + $Output) | Out-File -FilePath $LogFile -Append -Force
Write-Error $Output
$Result = "Error"
}
Return $Result
}
#endregion
################################################################################
# Variable
################################################################################
#region variable
Set-StrictMode -Version 2
$ErrorActionPreference = "Stop"
$workfolder = Split-Path $script:MyInvocation.MyCommand.Path
$date = Get-Date -UFormat "%d-%m-%Y"
$PowerShellModules = @(
("Az.Accounts","1.7.5"),
("Az.Storage","1.14.0")
)
$root_paths=@('/')
if($Path -ne "/")
{
for($i=0 ; $i -lt $($Path.Split("/").Count-1) ; $i++)
{$root_paths+=$Path.Split("/")[0..$i] -join "/"}
}
#$AccessControlType=$AccessControlType.ToLower() #Now requires lower later, was not the case before
#If not provided, creating the log file
if($LogFile -eq "")
{
$LogPath = $workfolder + "\logs"
if(!(Test-Path $LogPath)){mkdir $LogPath}
$logFile = $LogPath + "\$date-" + $MyInvocation.MyCommand.Name + ".log"
}
ForEach ($PowerShellModule in $PowerShellModules)
{
$Action = "Importing the Module $($PowerShellModule[0]) with MinimumVersion $($PowerShellModule[1])"
$Command = {Import-Module $PowerShellModule[0] -MinimumVersion $($PowerShellModule[1]) -ErrorAction Stop}
$Result = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($Result -eq "Error"){Exit 1}
}
#endregion
################################################################################
# Action
################################################################################
#region connection
$Action = "Getting the Subscription $SubscriptionName"
$Command = {Get-AzSubscription -SubscriptionName $SubscriptionName -ErrorAction Stop}
$AzSubscription = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($AzSubscription -eq "Error"){Exit 1}
$Action = "Selecting the Subscription $SubscriptionName"
$Command = {Select-AzSubscription -SubscriptionId $AzSubscription.SubscriptionId -ErrorAction Stop}
$AzSubscription = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($AzSubscription -eq "Error"){Exit 1}
$Action = "Obtaining authorization by using the storage account key"
$Command = {Get-AzStorageAccount -ResourceGroupName $ResourceGroupName -AccountName $AdlsGen2Name -ErrorAction Stop}
$storageAccount = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($storageAccount -eq "Error"){Exit 1}
$Context = $storageAccount.Context
#endregion
#region Set Execute permission on root directory, this is required to traverse the child items of a directory
if($SetPermissionRootDirectories -ne "none" -and $Path -ne "/")
{
foreach($root_path in $root_paths)
{
if($root_path -eq "/")
{
$Action="Getting the root path"
$Command = {Get-AzDataLakeGen2Item -Context $Context -FileSystem $FilesystemName -ErrorAction Stop}
$Parent = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($Parent -eq "Error"){Exit 1}
}
else {
$Action="Getting the path : $root_path"
$Command = {Get-AzDataLakeGen2Item -Context $Context -FileSystem $FilesystemName -Path $root_path -ErrorAction Stop}
$Parent = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($Parent -eq "Error"){Exit 1}
}
$acl=$Parent.ACL
[Collections.Generic.List[System.Object]]$aclnew =$acl
$ParentItemScope=$True
$Cleaning=$False
[Collections.Generic.List[System.Object]]$acltoclean = @()
# To avoid duplicate ACL, remove the ACL entries that will be added later.
foreach ($a in $aclnew)
{
if ($a.AccessControlType -eq $AccessControlType -and $a.EntityId -eq $ObjectId -and $a.DefaultScope -eq $False)
{
if("$($a.GetSymbolicRolePermissions())" -eq $SetPermissionRootDirectories)
{
$ParentItemScope=$False
}
# To avoid duplicate ACL with another Permission, record the ACL entry to delete.
else {
$acltoclean.Add($a)
$Cleaning=$True
}
}
}
# To avoid duplicate ACL with wrong AccessControlType, remove the ACL entries.
foreach ($a in $acltoclean)
{
$aclnew.Remove($a)
}
if($ParentItemScope)
{
$Action="Adding Item Scope $AccessControlType scope ACL Permission : $SetPermissionRootDirectories the child items under path : $($Parent.Path) for Object id : $ObjectId"
$Command = {New-AzDataLakeGen2ItemAclObject -AccessControlType $AccessControlType -EntityId $ObjectId -Permission $SetPermissionRootDirectories -InputObject $acl -ErrorAction Stop}
$aclnew = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($aclnew -eq "Error"){Exit 1}
}
if($ParentItemScope -or $Cleaning)
{
if($($Parent.Path) -eq "/")
{
$Action="Updating ACL on server at root file system level"
$Command = {Update-AzDataLakeGen2Item -Context $Context -FileSystem $FilesystemName -Acl $aclnew -ErrorAction Stop}
$Result = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($Result -eq "Error"){Exit 1}
}
else {
$Action="Updating ACL on server at path : $($Parent.Path)"
$Command = {Update-AzDataLakeGen2Item -Context $Context -FileSystem $FilesystemName -Path $Parent.Path -Acl $aclnew -ErrorAction Stop}
$Result = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($Result -eq "Error"){Exit 1}
}
}
}
}
#endregion
#region Set privilege and given path and sub objects
$Action="Getting the path : $Path"
$Command = {Get-AzDataLakeGen2Item -Context $Context -FileSystem $FilesystemName -Path $Path -ErrorAction Stop}
$Main = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($Main -eq "Error"){Exit 1}
$Action="Getting the child items under path : $Path"
$Command = {Get-AzDataLakeGen2ChildItem -Context $Context -FileSystem $FilesystemName -Path $Path -Recurse -FetchPermission -ErrorAction Stop}
$Childs = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($Childs -eq "Error"){Exit 1}
$p=1
foreach ($Child in $($Main,$Childs))
{
Write-Progress -Activity "Privileges assignment in Progress" -Status "Progress:" -PercentComplete (($p / @($($Main,$Childs)).Count) *100);
$p++
# Create the new ACL object.
$acl=$Child.ACL
[Collections.Generic.List[System.Object]]$aclnew =$acl
$DefaultScope=$ItemScope=$True
$Cleaning=$False
[Collections.Generic.List[System.Object]]$acltoclean = @()
foreach ($a in $aclnew)
{
if ($a.AccessControlType -eq $AccessControlType -and $a.EntityId -eq $ObjectId)
{
if($a.DefaultScope -eq $True)
{
if("$($a.GetSymbolicRolePermissions())" -eq $Permission)
{
$DefaultScope=$False
}
# To avoid duplicate ACL with another Permission, record the ACL entry to delete.
else {
$acltoclean.Add($a)
$Cleaning=$True
}
}
elseif ($a.DefaultScope -eq $False)
{
if("$($a.GetSymbolicRolePermissions())" -eq $Permission)
{
$ItemScope=$False
}
# To avoid duplicate ACL with another Permission, record the ACL entry to delete.
else {
$acltoclean.Add($a)
$Cleaning=$True
}
}
}
# To avoid ACL with wrong AccessControlType, record the ACL entry to delete.
elseif ($a.AccessControlType -ne $AccessControlType -and $a.EntityId -eq $ObjectId) {
$acltoclean.Add($a)
$Cleaning=$True
}
}
# To avoid duplicate ACL with wrong AccessControlType, remove the ACL entries.
foreach ($a in $acltoclean)
{
$aclnew.Remove($a)
}
if($DefaultScope -and $Child.IsDirectory)
{
$Action="Adding Default Scope $AccessControlType scope ACL Permission : $Permission the child items under path : $($Child.Path) for Object id : $ObjectId"
$Command = {New-AzDataLakeGen2ItemAclObject -AccessControlType $AccessControlType -EntityId $ObjectId -Permission $Permission -DefaultScope -InputObject $aclnew -ErrorAction Stop}
$aclnew = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($aclnew -eq "Error"){Exit 1}
}
if($ItemScope)
{
$Action="Adding Item Scope $AccessControlType scope ACL Permission : $Permission the child items under path : $($Child.Path) for Object id : $ObjectId"
$Command = {New-AzDataLakeGen2ItemAclObject -AccessControlType $AccessControlType -EntityId $ObjectId -Permission $Permission -InputObject $aclnew -ErrorAction Stop}
$aclnew = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($aclnew -eq "Error"){Exit 1}
}
if($($DefaultScope -and $Child.IsDirectory) -or $ItemScope -or $Cleaning)
{
$Action="Updating ACL on server for path : $($Child.Path)"
$Command = {Update-AzDataLakeGen2Item -Context $Context -FileSystem $FilesystemName -Path $($Child.Path) -Acl $aclnew -ErrorAction Stop}
$Result = Generate_Log_Action -Action $Action -Command $Command -LogFile $logFile
if($Result -eq "Error"){Exit 1}
}
}
#endregion