-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature/Identity] Basic Permission Handling #5909
[Feature/Identity] Basic Permission Handling #5909
Conversation
Signed-off-by: Stephen Crawford <[email protected]>
@opensearch-project/security would love some feedback on this. Thank you! |
Gradle Check (Jenkins) Run Completed with:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How do we want to define proper formatting for the permissions strings?
Existing permissions from the security plugin are a hierarchy of A.B.C.D.E... which follow the naming scheme of actions. Using this .
deiminated system would follow suite, but the actual delimiter could vary, maybe this would create a clear line between old and new, what do you think?
From AWS policy examples [link] they use a colon delimiter in namespaces of permisisons, iam:GetAccountPasswordPolicy
.
From Shiro's permissions model [link] :
is used separate between the permissions name, the action name, an the resource printer:print:lp7200
.
How do we want to access the "correct" permission for use in order to execute the matching/comparison?
Access, could you provide more details about what this means to you? No matter how the permission is stored, e.g. it could be a trie the most important concern is being able to quickly check the permission of a given principal, 'Find'. Insertion/Update/Delete will occur less frequently and can be less efficient if needed.
Do we want to have a permission 'update' option? I am not sure what this would be used for but is there a need for an alternative to delete and add if you would want to turn a permission that was already granted on/off?
How do you think you would 'address' the update? Seems like each permissions representation should have unique identifier like a GUID that could be specifically deleted/modified. Modify can also be supported with a separate delete/create actions, how would you want to call these APIs?
@@ -22,8 +25,12 @@ | |||
public class InternalSubject implements Subject { | |||
private final org.apache.shiro.subject.Subject shiroSubject; | |||
|
|||
public HashMap<String, ArrayList<Permission>> grantedPermissions; // Not sure how we plan to store the permissions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To encapsulate the permissions, can we change this into an instance of the PermissionsHandler class? Maybe permissions storage/store is a more appropriate name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently the PermissionHandler is a static class so there is only one instance of it operating on numerous InternalSubjects and providing control of the different permissions each subject may have. This can be switched so that the PermissionHandler is not static and then this attribute could be defined as an instance if that is what you prefer.
/** | ||
* Check that the permission required matches the permission available | ||
*/ | ||
public static boolean matchPermission(final Permission permission, final String permissionRequired) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems like a properly of a permissions grant, it can match a required permissions, why not have it on the permissions object?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I separated this from the Permission object because I thought it would be best to keep any multi-permission functionality inside the PermissionHandler class. I felt that any instance of a permission should only be aware of itself and not be concerned with logic dealing with multiple permissions or their own correctness outside of syntax. If this function were part of the Permission class it would imply that the permissions were aware of a 'correct' alternative to themselves if they were malformed.
I can swap this to be inside the Permissions class if this is preferred.
try { | ||
this.permissionString = permission; | ||
this.permissionChunks = permission.split(PERMISSION_DELIMITER); | ||
if (!permissionIsValidFormat()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This uses side effects to store information into the class and then read it later. Seems unneeded when a validator function could accept a string and accept/reject it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with this analysis, take a read https://softwareengineering.stackexchange.com/questions/15269/why-are-side-effects-considered-evil-in-functional-programming
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can move this outside of the constructor. I think that the valid format call would be best placed outside of the Permission class as a result however. The intention is to make it so that invalid permissions are never fully created. Which is why the formatting check is called inside the constructor since it will throw an exception on the incorrect formatting and then the Permission that is invalid will never be created in the first place.
If we remove this from the constructor I think we should then move the formatting check into the handler class so that the handler could first check that a permission is correctly formatted and then assuming it is create it. It cannot do this if the function stays a method of the permission class since you would need to construct the permission before checking it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note; if you don't want to throw an exception in a ctor you could always make the constructor private, but then expose a static createInstance(...)
that effectively calls the constructor after verifying the object, or use a builder pattern link
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good.
import java.util.HashMap; | ||
import java.util.Objects; | ||
|
||
public class PermissionHandler { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would help to start with an interface to address what are the inputs and outputs of this system. With the current implementation it isn't as clear if the subject controls the data store or if it is managed by a 'swappable' system. I think the latter would be more flexible in the long term.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That makes sense. I will make an interface and then implement it.
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
@@ -8,12 +8,26 @@ | |||
|
|||
package org.opensearch.authn; | |||
|
|||
/** | |||
* A generic interface for what a permission handler should implement |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These comments are not very useful, they do not justify why one would use this interface or how it could be implemented in differernt ways
Here are some open ended questions to consider that might help inform your design.
- Why/Why not separate permissions where a permission is stored from the subject?
- What is the relationship between the actions1 that are being permissioned vs the resources vs the subject/principals they are assigned to?
- When you lookup permissions, subjects can represent multiple principals, when is there relationship projected within the data or dynamically by performing multiple lookups?
- How could this interface support multiple storage implementation is it flexible enough for different kinds of usages, e.g. an in-memory LRU cache vs stored in a OpenSearch index
Footnotes
-
I called this 'name' before which is too generic, action name is more appropriate distinction - welcome to modify this ↩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- I feel that the permissions should be stored in association to the operating subject to prevent extremely large instances of storage for clusters with many different subjects. Unless you are attaching a database structure, you would not want some data structure containing a doubly nested mapping of Subject : (Resource: Permission List).
- The subjects are granted permissions to perform actions on a resource.
- I do not know that we have a strong enough differentiation between a subject and principles at this point to be able to answer this yet. I think I would need further context on the concrete difference between the two and how we want to separate them. Maybe this is my confusion but I am not sure about this yet.
- The interface just defines the three required operations you would need for the the handler. So you could implement the interface as pretty much any structure with as long as there is a method for PUT, GET, DELETE of permissions.
I hope this helps give some context to what I am thinking. These are all good questions and I will continue to keep these in mind as we go forward.
1d984b2
to
24cb9bd
Compare
…ions class, extend permissions to make permission class Signed-off-by: Stephen Crawford <[email protected]>
I started over from scratch. @opensearch-project/security please let me know what you all think. I am currently looking at implementing the permission handler but have not yet determined how to resolve the Principal to its targeted Subject. The java object includes a |
Gradle Check (Jenkins) Run Completed with:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice job decomposing the high level spaces, added some comments for your consideration.
/** | ||
* This function needs to be able to resolve a java Principal to an associated java Subject and return the associated Subject or throw an error if none corresponds | ||
*/ | ||
public Subject resolvePrincipal(Principal principal); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How do you think this would be used? I don't think principals can be turned into subjects without being about to login to the subject, what do you think of this notion?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am still not convinced on needing this. I put it here just in case though, and was imagining we could basically keep a short-lived subject store and then use that to reverse look up the principals associated with each subject. Then you could use the implies(Subject) method to find which Subject a Principal corresponded with. This would let you expend a bit of time on the front to actually grant the permissions all to a Subject using a single Principal. So all my permissions would be under scrawfor99 instead of some being under that and some being under steecraw for instance. We would need to store a pointer to each Subject however and make OpenSearch manage these. They could of course be any given Principal but you would just want to be able to track when a new Principal was used to refer to the same Subject.
The other option which I prefer is this: Toss the entire resolution step and never resolve a Principal to a Subject. Instead you could just track the permissions granted to principals as Strings or another Object. Then when a Subject tries to take an action you would go through its associated Principals and look for permissions that match what it wants to do to one of its Principals. This is pretty similar to the current Role system in Security and may work nicely.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Toss the entire resolution step and never resolve a Principal to a Subject.
This option has my vote, 👍
* This function grants a permission to a subject when provided the permission and a principal resolvable to a subject | ||
* A principal should never be able to grant a permission to itself and implementations should ensure that only valid Subjects are able to execute this operation. | ||
*/ | ||
public void putPermission(Permission permission, Principal principal); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When a permission gets added it might be useful to assign the permission an identifier so that delete permissions could delete by identifier rather than the whole permission object, that ID could be returned via this function.
If you don't have the identifier we will need a way to handle granting/removing identical permissions
In REST APIs this often looks like:
Request
POST /.../permission
{
permission: {
permissionString: "opensearch.indexing.index.create",
},
principal: "johnny rocket"
}
Response
201 CREATED
{
id: "d2479857-6d7e-449d-b0c5-78d1bbfd1792"
permission: {
permissionString: "opensearch.indexing.index.create",
},
principal: "johnny rocket"
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That sounds good to me!
String[] QUALIFIED_OPERATIONS; | ||
|
||
// An array of the available resources which a permission can grant some operation to act upon. | ||
String[] QUALIFIED_RESOURCES; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I really like the notion of having required qualifications, how do you think we can handle enforcing permissions that do not follow this schema?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For enforcing/validating the structure of permissions, I was thinking we would need to make it so that each schema has either a translator to interact with a common API or has their own equivalent. I am not really sure what would be helpful for permissions that are things other than strings. I think this can be made more general once the number and order of parts (see below about the number of parts in the permissions) is decided.
* Assumes that the permission is formatted as <principal>.<resource>.<action> | ||
* The principal should already be verified before the permission is created. | ||
*/ | ||
public boolean permissionIsValidFormat() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
computationally this string manipulation is kind of expensive, what do you think about changing the storage of the permissionString into its composite parts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That sounds good to me and would let you do just 1:1 comparison with the same time complexity as the set logic. Great call!
/** | ||
* An extension of the abstract Permission class which uses String-object Permissions. | ||
* | ||
* Example "opensearch.indexing.index.create" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should they always be in 4 parts, want to name each of these parts? Checkin with @shanilpa for his thoughts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was personally leaning towards 3 parts but I believe the example in the comment is a current way we do actions using the Security plugin. I will check with @shanilpa like you suggest.
…ts both; defines Permission object and extends Signed-off-by: Stephen Crawford <[email protected]>
Gradle Check (Jenkins) Run Completed with:
|
Signed-off-by: Stephen Crawford <[email protected]>
Gradle Check (Jenkins) Run Completed with:
|
Update: This is still not the right direction so I will be re-designing things. |
Signed-off-by: Stephen Crawford <[email protected]>
Gradle Check (Jenkins) Run Completed with:
|
sandbox/libs/authn/src/main/java/org/opensearch/authn/PermissionStore.java
Outdated
Show resolved
Hide resolved
sandbox/libs/authn/src/main/java/org/opensearch/authn/PermissionStore.java
Outdated
Show resolved
Hide resolved
sandbox/libs/authn/src/main/java/org/opensearch/authn/PermissionStore.java
Outdated
Show resolved
Hide resolved
sandbox/libs/authn/src/main/java/org/opensearch/authn/PermissionStore.java
Outdated
Show resolved
Hide resolved
sandbox/libs/authn/src/main/java/org/opensearch/authn/PermissionStore.java
Outdated
Show resolved
Hide resolved
abstract void Permission(String permission); | ||
|
||
abstract boolean isValidFormat(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets break this apart, create a PermissionFactory, which has a method public Permission createPermission(String(s)...)
, this method would enforce the rules. This prevents 'new' permissions from deviating from our preferred format, then lets create another method createLegacyPermissions(String)
that doesn't enforce the rules so we can easily identify and fix them later. This eliminates the need for a isValidFormat
that would only be used on creation.
This allows both paths to be followed, we still get objects that are a Permission
, but codifies the old vs new naming scheme.
Permission
would have the resource/action, in the follow up PR you could consider if 'match' or other methods would be added that are relevant to the check permissions scenarios.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gotcha, I will make these changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want me to try to add match now or should I wait for another PR? What about test cases etc.? I can combine them or separate things out if you want this to be the abstracts classes/interfaces and have concrete implementations in a follow-up.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want me to try to add match now or should I wait for another PR
I would say wait for the next PR so you can cluster those design elements together in there usage. Your call
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good.
Signed-off-by: Stephen Crawford <[email protected]>
Gradle Check (Jenkins) Run Completed with:
|
sandbox/libs/authn/src/main/java/org/opensearch/authn/AbstractPermission.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The design is looking really close, just a couple more tweaks
sandbox/libs/authn/src/main/java/org/opensearch/authn/PermissionStorage.java
Outdated
Show resolved
Hide resolved
sandbox/libs/authn/src/main/java/org/opensearch/authn/PermissionStore.java
Outdated
Show resolved
Hide resolved
sandbox/libs/authn/src/main/java/org/opensearch/authn/PermissionFactory.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Stephen Crawford <[email protected]>
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
* This function creates a standard permission instance. It includes checking that the permission that is being created | ||
* is properly formatted. | ||
*/ | ||
public Permission createPermission(String permissionString) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For a future PR; there is a schema for these new permissions which involves include period delineation action namespace/names and a resource. Rather than only accept a 'string' which's contract is 'you need to understand how the permission is shaped and I'll throw an exception if you got it wrong, instead you could change the interface to make it easier to get the parts right, e.g. the signature could be createPermissions(final String namespace, final String resourceName, final String actionVerb, final string resourceFilter)
@scrawfor99 When you are ready for this to be merged let me know and I'll get it into the feature branch |
@peternied I think this is good to go. I am working on a different branch based off these changes but it will be a separate PR. Thank you! |
Signed-off-by: Stephen Crawford [email protected]
Description
Adds classes and interfaces to define the basic functionality of permission granting and storage.
The classes include:
Testing and further functionality (matching) to be added in a follow-up PR.
Issues Resolved
Will eventually resolve: #5858
Check List
New functionality includes testing.All tests passBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.