-
Notifications
You must be signed in to change notification settings - Fork 319
Deprecate opendistro_security_roles and add opensearch_security_roles #5113
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
Changes from all commits
8c6601b
54c72fa
ab26317
4b27f5c
afe19d8
cb3e1cd
879f575
23b5916
47d755a
ba574b6
20768b0
736dc78
7e0fcc9
5f10ad6
9e28622
0674469
5b85ba6
01ac3ae
f8d7bff
41111da
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
package org.opensearch.security.api; | ||
|
||
import static org.opensearch.security.dlic.rest.api.InternalUsersApiAction.DIRECT_SECURITY_ROLES; | ||
|
||
public class InternalUsersRestApiDirectRolesIntegrationTest extends AbstractInternalUsersRestApiIntegrationTest { | ||
@Override | ||
protected String getRoleField() { | ||
return DIRECT_SECURITY_ROLES; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
package org.opensearch.security.api; | ||
|
||
import static org.opensearch.security.dlic.rest.api.InternalUsersApiAction.OPENDISTRO_SECURITY_ROLES; | ||
|
||
public class InternalUsersRestApiOpenDistroRolesIntegrationTest extends AbstractInternalUsersRestApiIntegrationTest { | ||
@Override | ||
protected String getRoleField() { | ||
return OPENDISTRO_SECURITY_ROLES; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,7 @@ public class InternalUserV7 implements Hideable, Hashed, StaticDefinable { | |
private Map<String, String> attributes = Collections.emptyMap(); | ||
private String description; | ||
private List<String> opendistro_security_roles = Collections.emptyList(); | ||
private List<String> direct_security_roles = Collections.emptyList(); | ||
|
||
private InternalUserV7(String hash, boolean reserved, boolean hidden, List<String> backend_roles, Map<String, String> attributes) { | ||
super(); | ||
|
@@ -117,6 +118,16 @@ public List<String> getOpendistro_security_roles() { | |
|
||
public void setOpendistro_security_roles(List<String> opendistro_security_roles) { | ||
this.opendistro_security_roles = opendistro_security_roles; | ||
this.direct_security_roles = opendistro_security_roles; | ||
} | ||
|
||
public List<String> getDirect_security_roles() { | ||
return direct_security_roles; | ||
} | ||
|
||
public void setDirect_security_roles(List<String> direct_security_roles) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How does the serialized JSON produced from this bean look like? I reckon, it will contain both attributes, even if one is unused, correct? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. correct, I have not removed/modified the old attribute to keep it backwards compatible. Do you think it will lead to confusion? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am generally wondering how clients consuming that API should handle this. This actually already applies to the security Dashboards plugin, which uses this API. Ideally, an API could just switch the the new attribute and use that. However, in this case, all API clients would also need to have a kind of detection mechanism to see which attribute is the one that is actually in use. This is especially critical for the PATCH API, which such clients cannot use anymore without making a GET in advance to find out what attribute would be in use. Generally, that seems to be not a good design of an API. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Since both the fields are maintained and updated on changes, clients using existing field will not break. As the existing field is being deprecated, guidance to use new field will be documented. As both the fields are available, I don't think a detection mechanism is required. I agree it would have been cleaner to switch to the new attribute, however I am not sure if we can do it without breaking existing clients. See example below-
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. are There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The initial name was |
||
this.opendistro_security_roles = direct_security_roles; | ||
this.direct_security_roles = direct_security_roles; | ||
} | ||
|
||
public Map<String, String> getAttributes() { | ||
|
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.
Indirectly related: What's the migration path towards having only the new attribute?
This will only log warnings when the REST API is used. No warnings will be logged for usage of the securityadmin tool or just the existing data in the config index.
Will there be an additional change in the future to address existing data?
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.
Looking at other migrations/deprecation of terms, I think we can announce deprecation/removal in docs.
e.g. - https://opensearch.org/docs/latest/breaking-changes/#deprecate-non-inclusive-terms
Yes, I was thinking Security plugin should log a warning during initialization if configs have
opendistro_security_role
present. will this suffice?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.
Can we do a clean break with a deprecation message that clearly states that this will be remove in 3.0 GA?