mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 11:38:02 +00:00
backport of commit fb97a459ec (#23875)
Co-authored-by: miagilepner <mia.epner@hashicorp.com>
This commit is contained in:
committed by
GitHub
parent
8a5e6fcc4e
commit
fa2be335d4
3
changelog/23874.txt
Normal file
3
changelog/23874.txt
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
```release-note:bug
|
||||||
|
core: fix policies with wildcards not matching list operations due to the policy path not having a trailing slash
|
||||||
|
```
|
||||||
10
vault/acl.go
10
vault/acl.go
@@ -388,6 +388,16 @@ func (a *ACL) AllowOperation(ctx context.Context, req *logical.Request, capCheck
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// List operations need to check without the trailing slash first, because
|
||||||
|
// there could be other rules with trailing wildcards that will match the
|
||||||
|
// path
|
||||||
|
if op == logical.ListOperation && strings.HasSuffix(path, "/") {
|
||||||
|
permissions = a.CheckAllowedFromNonExactPaths(strings.TrimSuffix(path, "/"), false)
|
||||||
|
if permissions != nil {
|
||||||
|
capabilities = permissions.CapabilitiesBitmap
|
||||||
|
goto CHECK
|
||||||
|
}
|
||||||
|
}
|
||||||
permissions = a.CheckAllowedFromNonExactPaths(path, false)
|
permissions = a.CheckAllowedFromNonExactPaths(path, false)
|
||||||
if permissions != nil {
|
if permissions != nil {
|
||||||
capabilities = permissions.CapabilitiesBitmap
|
capabilities = permissions.CapabilitiesBitmap
|
||||||
|
|||||||
Reference in New Issue
Block a user