made win_acl strict compliant

pull/18777/head
Hans-Joachim Kliemeck 9 years ago committed by Matt Clay
parent 8f7517ac21
commit 464fb89698

@ -85,83 +85,35 @@ Function UserSearch
$params = Parse-Args $args; $params = Parse-Args $args;
$result = New-Object psobject @{ $result = New-Object PSObject;
win_acl = New-Object psobject Set-Attr $result "changed" $false;
changed = $false
}
If ($params.path) { $path = Get-Attr $params "path" -failifempty $true
$path = $params.path.toString() $user = Get-Attr $params "user" -failifempty $true
$rights = Get-Attr $params "rights" -failifempty $true
If (-Not (Test-Path -Path $path)) { $type = Get-Attr $params "type" -validateSet "allow","deny" -resultobj $result
Fail-Json $result "$path file or directory does not exist on the host" $state = Get-Attr $params "state" "present" -validateSet "present","absent" -resultobj $result
}
}
Else {
Fail-Json $result "missing required argument: path"
}
If ($params.user) { $inherit = Get-Attr $params "inherit" ""
$sid = UserSearch -AccountName ($Params.User) $propagation = Get-Attr $params "propagation" "None" -validateSet "None","NoPropagateInherit","InheritOnly" -resultobj $result
# Test that the user/group is resolvable on the local machine If (-Not (Test-Path -Path $path)) {
if (!$sid) Fail-Json $result "$path file or directory does not exist on the host"
{
Fail-Json $result "$($Params.User) is not a valid user or group on the host machine or domain"
}
}
Else {
Fail-Json $result "missing required argument: user. specify the user or group to apply permission changes."
} }
If ($params.type -eq "allow") { # Test that the user/group is resolvable on the local machine
$type = $true $sid = UserSearch -AccountName ($user)
} if (!$sid)
ElseIf ($params.type -eq "deny") { {
$type = $false Fail-Json $result "$user is not a valid user or group on the host machine or domain"
}
Else {
Fail-Json $result "missing required argument: type. specify whether to allow or deny the specified rights."
} }
If ($params.inherit) { If (Test-Path -Path $path -PathType Leaf) {
# If it's a file then no flags can be set or an exception will be thrown
If (Test-Path -Path $path -PathType Leaf) {
$inherit = "None" $inherit = "None"
}
Else {
$inherit = $params.inherit.toString()
}
} }
Else { ElseIf ($inherit -eq "") {
# If it's a file then no flags can be set or an exception will be thrown
If (Test-Path -Path $path -PathType Leaf) {
$inherit = "None"
}
Else {
$inherit = "ContainerInherit, ObjectInherit" $inherit = "ContainerInherit, ObjectInherit"
}
}
If ($params.propagation) {
$propagation = $params.propagation.toString()
}
Else {
$propagation = "None"
}
If ($params.rights) {
$rights = $params.rights.toString()
}
Else {
Fail-Json $result "missing required argument: rights"
}
If ($params.state -eq "absent") {
$state = "remove"
}
Else {
$state = "add"
} }
Try { Try {
@ -169,7 +121,7 @@ Try {
$InheritanceFlag = [System.Security.AccessControl.InheritanceFlags]$inherit $InheritanceFlag = [System.Security.AccessControl.InheritanceFlags]$inherit
$PropagationFlag = [System.Security.AccessControl.PropagationFlags]$propagation $PropagationFlag = [System.Security.AccessControl.PropagationFlags]$propagation
If ($type) { If ($type -eq "allow") {
$objType =[System.Security.AccessControl.AccessControlType]::Allow $objType =[System.Security.AccessControl.AccessControlType]::Allow
} }
Else { Else {
@ -190,21 +142,21 @@ Try {
} }
} }
If ($state -eq "add" -And $match -eq $false) { If ($state -eq "present" -And $match -eq $false) {
Try { Try {
$objACL.AddAccessRule($objACE) $objACL.AddAccessRule($objACE)
Set-ACL $path $objACL Set-ACL $path $objACL
$result.changed = $true Set-Attr $result "changed" $true;
} }
Catch { Catch {
Fail-Json $result "an exception occured when adding the specified rule" Fail-Json $result "an exception occured when adding the specified rule"
} }
} }
ElseIf ($state -eq "remove" -And $match -eq $true) { ElseIf ($state -eq "absent" -And $match -eq $true) {
Try { Try {
$objACL.RemoveAccessRule($objACE) $objACL.RemoveAccessRule($objACE)
Set-ACL $path $objACL Set-ACL $path $objACL
$result.changed = $true Set-Attr $result "changed" $true;
} }
Catch { Catch {
Fail-Json $result "an exception occured when removing the specified rule" Fail-Json $result "an exception occured when removing the specified rule"
@ -222,7 +174,7 @@ Try {
} }
} }
Catch { Catch {
Fail-Json $result "an error occured when attempting to $state $rights permission(s) on $path for $($Params.User)" Fail-Json $result "an error occured when attempting to $state $rights permission(s) on $path for $user"
} }
Exit-Json $result Exit-Json $result
Loading…
Cancel
Save