-
Notifications
You must be signed in to change notification settings - Fork 1.1k
RANGER-5723: Plugin SPIFFE outbound auth for audit-server destination #1139
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
143fa62
RANGER-5723: Plugin SPIFFE outbound auth for audit-server destination
dff71f0
RANGER-5723: Remove unused SPIFFE prefix-discovery helpers
3380ce0
Merge branch 'master' into RANGER-5723-patch
242d31b
RANGER-5723: Address PR review comments for SPIFFE outbound auth
ramackri fc9ce57
RANGER-5723: Fix Checkstyle import order in TestRangerRESTClient
ramackri c71543a
Update SpiffeIdentityResolver.java
mneethiraj 09c69a7
Update SpiffeIdentityResolver.java
mneethiraj 42a9d1b
RANGER-5723: Fix checkstyle and address remaining PR review comments
ramackri fa2b61a
RANGER-5723: Document trusted-header config modes and value specs
ramackri 23f4e51
RANGER-5723: Use header-name-as-property for trusted auth config
6dc549c
Update RangerAuditServerDestination.java
mneethiraj a25db2a
Update RangerAuditServerDestinationTest.java
mneethiraj a49c0d4
Update TestRangerRESTClient.java
mneethiraj 74afba1
Update PluginHeaderAuthConfig.java
mneethiraj 398af86
RANGER-5723: Drop outbound SPIFFE validation and SpiffeIdentityResolver
52e4d38
Update PluginHeaderAuthConfig.java
mneethiraj 95e659e
Update PluginHeaderAuthConfig.java
mneethiraj e14b701
RANGER-5723: Remove unnecessary property-name sorting in header auth …
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
...r/src/test/java/org/apache/ranger/audit/destination/RangerAuditServerDestinationTest.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| * (the "License"); you may not use this file except in compliance with | ||
| * the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package org.apache.ranger.audit.destination; | ||
|
|
||
| import org.apache.ranger.plugin.util.PluginHeaderAuthConfig; | ||
| import org.junit.jupiter.api.Test; | ||
|
|
||
| import java.util.Map; | ||
| import java.util.Properties; | ||
|
|
||
| import static org.junit.jupiter.api.Assertions.assertEquals; | ||
| import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
|
||
| public class RangerAuditServerDestinationTest { | ||
| private static final String AUDIT_DEST_PREFIX = "xasecure.audit.destination.auditserver"; | ||
|
|
||
| @Test | ||
| public void buildTrustedAuthHeadersUsesAuditDestinationPrefix() { | ||
| Properties props = new Properties(); | ||
|
|
||
| props.setProperty(AUDIT_DEST_PREFIX + ".authn.header.enabled", "true"); | ||
| props.setProperty(AUDIT_DEST_PREFIX + ".authn.header.X-Spiffe-Id", "spiffe://prod-cluster.k8s.example.com/ns/ranger/sa/hive"); | ||
|
|
||
| Map<String, String> headers = PluginHeaderAuthConfig.buildTrustedAuthHeaders(props, AUDIT_DEST_PREFIX); | ||
|
|
||
| assertEquals(1, headers.size()); | ||
| assertEquals("spiffe://prod-cluster.k8s.example.com/ns/ranger/sa/hive", headers.get("X-Spiffe-Id")); | ||
| } | ||
|
|
||
| @Test | ||
| public void buildTrustedAuthHeadersEmptyWhenAuditDestinationDisabled() { | ||
| Properties props = new Properties(); | ||
|
|
||
| props.setProperty(AUDIT_DEST_PREFIX + ".authn.header.enabled", "false"); | ||
| props.setProperty(AUDIT_DEST_PREFIX + ".authn.header.X-Spiffe-Id", "spiffe://prod-cluster.k8s.example.com/ns/ranger/sa/hive"); | ||
|
|
||
| Map<String, String> headers = PluginHeaderAuthConfig.buildTrustedAuthHeaders(props, AUDIT_DEST_PREFIX); | ||
|
|
||
| assertTrue(headers.isEmpty()); | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
166 changes: 166 additions & 0 deletions
166
common-utils/src/main/java/org/apache/ranger/plugin/util/PluginHeaderAuthConfig.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,166 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
|
|
||
| package org.apache.ranger.plugin.util; | ||
|
|
||
| import org.apache.commons.lang3.StringUtils; | ||
| import org.slf4j.Logger; | ||
| import org.slf4j.LoggerFactory; | ||
|
|
||
| import java.io.IOException; | ||
| import java.nio.charset.StandardCharsets; | ||
| import java.nio.file.Files; | ||
| import java.nio.file.Path; | ||
| import java.nio.file.Paths; | ||
| import java.util.Collections; | ||
| import java.util.LinkedHashMap; | ||
| import java.util.Map; | ||
| import java.util.Properties; | ||
|
|
||
| /** | ||
| * Outbound trusted-header auth for audit-server and other REST clients. | ||
| * | ||
| * <p>When {@code authn.header.enabled=true}, trusted HTTP headers are added to every | ||
| * outbound REST request. Each header is configured as a property whose name is the | ||
| * HTTP header name under {@code authn.header} (audit destination example): | ||
| * <pre> | ||
| * xasecure.audit.destination.auditserver.authn.header.enabled=true | ||
| * xasecure.audit.destination.auditserver.authn.header.X-Spiffe-Id=file:/path/to/spiffe-id.file | ||
| * # valid value specs: | ||
| * # file:/path/to/spiffe-id.file | ||
| * # env:SPIFFE_ID | ||
| * # spiffe://trust-domain/ns/.../sa/... (literal string) | ||
| * </pre> | ||
| */ | ||
| public final class PluginHeaderAuthConfig { | ||
| private static final Logger LOG = LoggerFactory.getLogger(PluginHeaderAuthConfig.class); | ||
|
|
||
| public static final String PROP_HEADER_PREFIX = "authn.header."; | ||
| public static final String PROP_HEADER_AUTH_ENABLED = PROP_HEADER_PREFIX + "enabled"; | ||
|
|
||
| private static final String VALUE_PREFIX_FILE = "file:"; | ||
| private static final String VALUE_PREFIX_ENV = "env:"; | ||
|
|
||
| private PluginHeaderAuthConfig() { | ||
| // to block instantiation | ||
| } | ||
|
|
||
| /** | ||
| * Returns whether trusted header auth is enabled for the given config prefix. | ||
| * | ||
| * @param props plugin or site configuration properties | ||
| * @param configPrefix property prefix for header-auth settings | ||
| * @return {@code true} when header auth is enabled | ||
| */ | ||
| public static boolean isHeaderAuthEnabled(final Properties props, final String configPrefix) { | ||
| return props != null && StringUtils.isNotBlank(configPrefix) && Boolean.parseBoolean(props.getProperty(configPrefix + "." + PROP_HEADER_AUTH_ENABLED, "false")); | ||
| } | ||
|
|
||
| /** | ||
| * Builds trusted HTTP headers for outbound REST calls when header auth is enabled. | ||
| * | ||
| * @param props plugin or site configuration properties | ||
| * @param configPrefix prefix such as {@code xasecure.audit.destination.auditserver} | ||
| * @return immutable header map; empty when auth is disabled or misconfigured | ||
| */ | ||
| public static Map<String, String> buildTrustedAuthHeaders(final Properties props, final String configPrefix) { | ||
| final Map<String, String> ret; | ||
|
|
||
| if (isHeaderAuthEnabled(props, configPrefix)) { | ||
| String propertyPrefix = configPrefix + "." + PROP_HEADER_PREFIX; | ||
| Map<String, String> headers = new LinkedHashMap<>(); | ||
|
|
||
| for (String propertyName : props.stringPropertyNames()) { | ||
| if (!propertyName.startsWith(propertyPrefix)) { | ||
| continue; | ||
| } | ||
|
|
||
| String headerName = propertyName.substring(propertyPrefix.length()); | ||
|
|
||
| if (StringUtils.isBlank(headerName) || "enabled".equals(headerName)) { | ||
| continue; | ||
| } | ||
|
|
||
| String headerValue = resolveConfiguredValue(props.getProperty(propertyName)); | ||
|
|
||
| addConfiguredHeader(headers, configPrefix, headerName, headerValue); | ||
| } | ||
|
|
||
| if (headers.isEmpty()) { | ||
| LOG.warn("Plugin header auth enabled for {} but no trusted headers could be resolved", configPrefix); | ||
| } | ||
|
|
||
| ret = Collections.unmodifiableMap(headers); | ||
| } else { | ||
| ret = Collections.emptyMap(); | ||
| } | ||
|
|
||
| return ret; | ||
| } | ||
|
|
||
| private static void addConfiguredHeader(final Map<String, String> headers, final String configPrefix, final String headerName, final String headerValue) { | ||
| if (StringUtils.isBlank(headerValue)) { | ||
| LOG.warn("Plugin header auth enabled for {} but trusted header {} has no resolvable value", configPrefix, headerName); | ||
| } else { | ||
| headers.put(headerName, headerValue); | ||
| } | ||
| } | ||
|
|
||
| private static String resolveConfiguredValue(final String valueSpec) { | ||
| final String ret; | ||
|
|
||
| if (StringUtils.isBlank(valueSpec)) { | ||
| ret = null; | ||
| } else if (valueSpec.startsWith(VALUE_PREFIX_FILE)) { | ||
| ret = readFirstNonBlankLine(valueSpec.substring(VALUE_PREFIX_FILE.length())); | ||
| } else if (valueSpec.startsWith(VALUE_PREFIX_ENV)) { | ||
| ret = StringUtils.trimToNull(System.getenv(valueSpec.substring(VALUE_PREFIX_ENV.length()))); | ||
| } else { | ||
| ret = StringUtils.trimToNull(valueSpec); | ||
| } | ||
|
|
||
| return ret; | ||
| } | ||
|
|
||
| private static String readFirstNonBlankLine(final String filePath) { | ||
| String ret = null; | ||
|
|
||
| if (StringUtils.isNotBlank(filePath)) { | ||
| try { | ||
| Path path = Paths.get(filePath.trim()); | ||
|
|
||
| if (Files.isRegularFile(path)) { | ||
| for (String line : Files.readAllLines(path, StandardCharsets.UTF_8)) { | ||
| String trimmed = StringUtils.trimToNull(line); | ||
|
|
||
| if (trimmed != null) { | ||
| ret = trimmed; | ||
|
|
||
| break; | ||
| } | ||
| } | ||
| } | ||
| } catch (IOException ex) { | ||
| LOG.debug("Unable to read trusted header value from file {}", filePath, ex); | ||
| } | ||
| } | ||
|
|
||
| return ret; | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.