Skip to content
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

Add a flag to control whether credentials are printed during bootstrapping #461

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@
import org.apache.polaris.core.exceptions.AlreadyExistsException;
import org.apache.polaris.core.persistence.PolarisMetaStoreManagerImpl;
import org.apache.polaris.core.persistence.PolarisMetaStoreSession;
import org.apache.polaris.core.persistence.PrincipalSecretsGenerator;
import org.apache.polaris.core.persistence.RetryOnConcurrencyException;
import org.apache.polaris.core.persistence.models.ModelEntity;
import org.apache.polaris.core.persistence.models.ModelEntityActive;
import org.apache.polaris.core.persistence.models.ModelEntityChangeTracking;
import org.apache.polaris.core.persistence.models.ModelGrantRecord;
import org.apache.polaris.core.persistence.models.ModelPrincipalSecrets;
import org.apache.polaris.core.persistence.secrets.PrincipalSecretsGenerator;
import org.apache.polaris.core.storage.PolarisStorageConfigurationInfo;
import org.apache.polaris.core.storage.PolarisStorageIntegration;
import org.apache.polaris.core.storage.PolarisStorageIntegrationProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
package org.apache.polaris.extension.persistence.impl.eclipselink;

import static jakarta.persistence.Persistence.createEntityManagerFactory;
import static org.apache.polaris.core.persistence.PrincipalSecretsGenerator.RANDOM_SECRETS;
import static org.apache.polaris.core.persistence.secrets.PrincipalSecretsGenerator.RANDOM_SECRETS;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,11 @@ public static <T> Builder<T> builder() {
"If set to true, allows tables to be dropped with the purge parameter set to true.")
.defaultValue(true)
.build();

public static final PolarisConfiguration<Boolean> BOOTSTRAP_PRINT_CREDENTIALS =
PolarisConfiguration.<Boolean>builder()
.key("BOOTSTRAP_PRINT_CREDENTIALS")
.description("If set to true, credentials are printed to stdout by the bootstrap command")
.defaultValue(true)
.build();
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import java.util.Map;
import java.util.function.Supplier;
import org.apache.polaris.core.PolarisCallContext;
import org.apache.polaris.core.PolarisConfiguration;
import org.apache.polaris.core.PolarisDefaultDiagServiceImpl;
import org.apache.polaris.core.PolarisDiagnostics;
import org.apache.polaris.core.auth.PolarisSecretsManager.PrincipalSecretsResult;
Expand All @@ -34,6 +35,8 @@
import org.apache.polaris.core.entity.PolarisEntityType;
import org.apache.polaris.core.entity.PolarisPrincipalSecrets;
import org.apache.polaris.core.monitor.PolarisMetricRegistry;
import org.apache.polaris.core.persistence.secrets.PrincipalSecretsGenerator;
import org.apache.polaris.core.persistence.secrets.RandomPrincipalSecretsGenerator;
import org.apache.polaris.core.storage.PolarisStorageIntegrationProvider;
import org.apache.polaris.core.storage.cache.StorageCredentialCache;
import org.jetbrains.annotations.NotNull;
Expand Down Expand Up @@ -70,7 +73,7 @@ protected PrincipalSecretsGenerator secretsGenerator(RealmContext realmContext)
if (bootstrap) {
return PrincipalSecretsGenerator.bootstrap(realmContext.getRealmIdentifier());
} else {
return PrincipalSecretsGenerator.RANDOM_SECRETS;
return new RandomPrincipalSecretsGenerator(realmContext.getRealmIdentifier());
}
}

Expand All @@ -86,7 +89,8 @@ private void initializeForRealm(RealmContext realmContext) {
}

@Override
public synchronized Map<String, PrincipalSecretsResult> bootstrapRealms(List<String> realms) {
public final synchronized Map<String, PrincipalSecretsResult> bootstrapRealms(
List<String> realms) {
Map<String, PrincipalSecretsResult> results = new HashMap<>();

bootstrap = true;
Expand All @@ -95,10 +99,26 @@ public synchronized Map<String, PrincipalSecretsResult> bootstrapRealms(List<Str
RealmContext realmContext = () -> realm;
if (!metaStoreManagerMap.containsKey(realmContext.getRealmIdentifier())) {
initializeForRealm(realmContext);
// While bootstrapping we need to act as a fake privileged context since the real
// CallContext hasn't even been resolved yet.
PolarisCallContext polarisContext =
new PolarisCallContext(
sessionSupplierMap.get(realmContext.getRealmIdentifier()).get(), diagServices);
PrincipalSecretsResult secretsResult =
bootstrapServiceAndCreatePolarisPrincipalForRealm(
realmContext, metaStoreManagerMap.get(realmContext.getRealmIdentifier()));
realmContext,
metaStoreManagerMap.get(realmContext.getRealmIdentifier()),
polarisContext);
results.put(realmContext.getRealmIdentifier(), secretsResult);
if (this.printCredentials(polarisContext)) {
String msg =
String.format(
"realm: %1s root principal credentials: %2s:%3s",
realmContext.getRealmIdentifier(),
secretsResult.getPrincipalSecrets().getPrincipalClientId(),
secretsResult.getPrincipalSecrets().getMainSecret());
System.out.println(msg);
}
Comment on lines +113 to +121
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this logic belongs to the secrets generator. The MetaStoreManager doesn't need to know anything about whether the secrets generated are provided by the user or if they've been generated randomly. So why would it be concerned with printing the credentials? The secrets generator knows if the secrets were provided explicitly or if they were randomly generated.

I think the bootstrap command should take a print-credentials config flag and the constructed secrets generator can react accordingly.

}
}
} finally {
Expand Down Expand Up @@ -173,12 +193,9 @@ public void setStorageIntegrationProvider(PolarisStorageIntegrationProvider stor
* credentials and print them to stdout
*/
private PrincipalSecretsResult bootstrapServiceAndCreatePolarisPrincipalForRealm(
RealmContext realmContext, PolarisMetaStoreManager metaStoreManager) {
// While bootstrapping we need to act as a fake privileged context since the real
// CallContext hasn't even been resolved yet.
PolarisCallContext polarisContext =
new PolarisCallContext(
sessionSupplierMap.get(realmContext.getRealmIdentifier()).get(), diagServices);
RealmContext realmContext,
PolarisMetaStoreManager metaStoreManager,
PolarisCallContext polarisContext) {
CallContext.setCurrentContext(CallContext.of(realmContext, polarisContext));

PolarisMetaStoreManager.EntityResult preliminaryRootPrincipalLookup =
Expand All @@ -196,6 +213,20 @@ private PrincipalSecretsResult bootstrapServiceAndCreatePolarisPrincipalForRealm
throw new IllegalArgumentException(overrideMessage);
}

boolean hasSystemGeneratedSecrets =
secretsGenerator(realmContext)
.systemGeneratedSecrets(PolarisEntityConstants.getRootPrincipalName());
if (!this.printCredentials(polarisContext) && hasSystemGeneratedSecrets) {
String failureMessage =
String.format(
"It appears that environment variables were not provided for root credentials, and that printing "
+ "the root credentials is disabled via %s. If bootstrapping were to proceed, there would be no way "
+ "to recover the root credentials",
PolarisConfiguration.BOOTSTRAP_PRINT_CREDENTIALS.key);
LOGGER.error("\n\n {} \n\n", failureMessage);
throw new IllegalArgumentException(failureMessage);
eric-maynard marked this conversation as resolved.
Show resolved Hide resolved
}

metaStoreManager.bootstrapPolarisService(polarisContext);

PolarisMetaStoreManager.EntityResult rootPrincipalLookup =
Expand Down Expand Up @@ -253,4 +284,11 @@ private void checkPolarisServiceBootstrappedForRealm(
"Realm is not bootstrapped, please run server in bootstrap mode.");
}
}

/** Whether or not to print credentials after bootstrapping */
protected boolean printCredentials(PolarisCallContext polarisCallContext) {
return polarisCallContext
.getConfigurationStore()
.getConfiguration(polarisCallContext, PolarisConfiguration.BOOTSTRAP_PRINT_CREDENTIALS);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import org.apache.polaris.core.entity.PolarisEntityType;
import org.apache.polaris.core.entity.PolarisGrantRecord;
import org.apache.polaris.core.entity.PolarisPrincipalSecrets;
import org.apache.polaris.core.persistence.secrets.PrincipalSecretsGenerator;
import org.apache.polaris.core.storage.PolarisStorageConfigurationInfo;
import org.apache.polaris.core.storage.PolarisStorageIntegration;
import org.apache.polaris.core.storage.PolarisStorageIntegrationProvider;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*
* 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.polaris.core.persistence.secrets;

import org.apache.polaris.core.entity.PolarisPrincipalSecrets;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

public class DefaultPrincipalSecretsGenerator extends PrincipalSecretsGenerator {

public DefaultPrincipalSecretsGenerator(@Nullable String realmName) {
super(realmName);
}

private PrincipalSecretsGenerator getDelegate(
@Nullable String realmName, @NotNull String principalName) {
var envVarGenerator = new EnvVariablePrincipalSecretsGenerator(realmName);
if (envVarGenerator.systemGeneratedSecrets(principalName)) {
return new RandomPrincipalSecretsGenerator(realmName);
} else {
return envVarGenerator;
}
}

@Override
public PolarisPrincipalSecrets produceSecrets(@NotNull String principalName, long principalId) {
PrincipalSecretsGenerator delegate = getDelegate(realmName, principalName);
return delegate.produceSecrets(principalName, principalId);
}

@Override
public boolean systemGeneratedSecrets(@NotNull String principalName) {
PrincipalSecretsGenerator delegate = getDelegate(realmName, principalName);
return delegate.systemGeneratedSecrets(principalName);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/*
* 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.polaris.core.persistence.secrets;

import org.apache.polaris.core.entity.PolarisPrincipalSecrets;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

public class EnvVariablePrincipalSecretsGenerator extends PrincipalSecretsGenerator {

public EnvVariablePrincipalSecretsGenerator(@Nullable String realmName) {
super(realmName);
}

/** {@inheritDoc} */
@Override
public PolarisPrincipalSecrets produceSecrets(@NotNull String principalName, long principalId) {
String clientIdKey = clientIdEnvironmentVariable(realmName, principalName);
String clientSecretKey = clientSecretEnvironmentVariable(realmName, principalName);

String clientId = getEnvironmentVariable(clientIdKey);
String clientSecret = getEnvironmentVariable(clientSecretKey);
if (clientId == null || clientSecret == null) {
return null;
} else {
return new PolarisPrincipalSecrets(principalId, clientId, clientSecret, null);
}
}

/** {@inheritDoc} */
@Override
public boolean systemGeneratedSecrets(@NotNull String principalName) {
String clientIdKey = clientIdEnvironmentVariable(realmName, principalName);
String clientSecretKey = clientSecretEnvironmentVariable(realmName, principalName);
return getEnvironmentVariable(clientIdKey) != null
&& getEnvironmentVariable(clientSecretKey) != null;
}

/** Load a single environment variable */
private static String getEnvironmentVariable(String key) {
return System.getenv(key);
}

/** Build the key for the env variable used to store client ID */
private static String clientIdEnvironmentVariable(String realmName, String principalName) {
return String.format("POLARIS_BOOTSTRAP_%s_%s_CLIENT_ID", realmName, principalName);
}

/** Build the key for the env variable used to store client secret */
private static String clientSecretEnvironmentVariable(String realmName, String principalName) {
return String.format("POLARIS_BOOTSTRAP_%s_%s_CLIENT_SECRET", realmName, principalName);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.polaris.core.persistence;
package org.apache.polaris.core.persistence.secrets;

import java.util.Locale;
import java.util.function.Function;
import org.apache.polaris.core.entity.PolarisPrincipalSecrets;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

/**
* An interface for generating principal secrets. It enables detaching the secret generation logic
Expand All @@ -38,48 +37,48 @@
* <li>{@code POLARIS_BOOTSTRAP_<REALM-NAME>_<PRINCIPAL-NAME>_CLIENT_SECRET}
* </ul>
*
* For example: {@code POLARIS_BOOTSTRAP_DEFAULT-REALM_ROOT_CLIENT_ID} and {@code
* POLARIS_BOOTSTRAP_DEFAULT-REALM_ROOT_CLIENT_SECRET}.
* For example: {@code POLARIS_BOOTSTRAP_default-realm_root_CLIENT_ID} and {@code
* POLARIS_BOOTSTRAP_default-realm_root_CLIENT_SECRET}.
*/
@FunctionalInterface
public interface PrincipalSecretsGenerator {
public abstract class PrincipalSecretsGenerator {

/**
* A secret generator that produces cryptographically random client ID and client secret values.
*/
PrincipalSecretsGenerator RANDOM_SECRETS = (name, id) -> new PolarisPrincipalSecrets(id);
protected final String realmName;

public PrincipalSecretsGenerator() {
this.realmName = null;
}

public PrincipalSecretsGenerator(@Nullable String realmName) {
this.realmName = realmName;
}

/**
* Produces a new {@link PolarisPrincipalSecrets} object for the given principal ID. The returned
* secrets may or may not be random, depending on context. In bootstrapping contexts, the returned
* secrets can be predefined. After bootstrapping, the returned secrets can be expected to be
* cryptographically random.
* secrets may or may not be random, depending on context. The returned secrets can be predefined.
*
* @param principalName the name of the related principal. This parameter is a hint for
* pre-defined secrets lookup during bootstrapping it is not included in the returned data.
* @param principalId the ID of the related principal. This ID is part of the returned data.
* @return a new {@link PolarisPrincipalSecrets} instance for the specified principal.
*/
PolarisPrincipalSecrets produceSecrets(@NotNull String principalName, long principalId);

static PrincipalSecretsGenerator bootstrap(String realmName) {
return bootstrap(realmName, System.getenv()::get);
}
public abstract PolarisPrincipalSecrets produceSecrets(
@NotNull String principalName, long principalId);

static PrincipalSecretsGenerator bootstrap(String realmName, Function<String, String> config) {
return (principalName, principalId) -> {
String propId = String.format("POLARIS_BOOTSTRAP_%s_%s_CLIENT_ID", realmName, principalName);
String propSecret =
String.format("POLARIS_BOOTSTRAP_%s_%s_CLIENT_SECRET", realmName, principalName);
/**
* @param principalName the name of the related principal. This parameter is a hint for
* pre-defined secrets lookup during bootstrapping it is not included in the returned data.
* @return true if the secrets generated by this {@link PrincipalSecretsGenerator} are
* Polaris-generated as opposed to being provided by the user or another system.
*/
public abstract boolean systemGeneratedSecrets(@NotNull String principalName);

String clientId = config.apply(propId.toUpperCase(Locale.ROOT));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did we lose uppercasing in the new code?

String secret = config.apply(propSecret.toUpperCase(Locale.ROOT));
// use config values at most once (do not interfere with secret rotation)
if (clientId != null && secret != null) {
return new PolarisPrincipalSecrets(principalId, clientId, secret, secret);
} else {
return RANDOM_SECRETS.produceSecrets(principalName, principalId);
}
};
/**
* Build a PrincipalSecretsGenerator for bootstrapping
*
* @param realmName the name of the realm
* @return A {@link PrincipalSecretsGenerator} that can generate secrets through `produceSecrets`
*/
public static PrincipalSecretsGenerator bootstrap(String realmName) {
return new DefaultPrincipalSecretsGenerator(realmName);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: maybe rename DefaultPrincipalSecretsGenerator -> BootstrapPrincipalSecretsGenerator?.. it is not actually default in LocalPolarisMetaStoreManagerFactory

}
}
Loading
Loading