Skip to content

Commit

Permalink
Merge pull request #15353 from vsevel/vault_enterprise
Browse files Browse the repository at this point in the history
Add support for Vault Enterprise Namespace
  • Loading branch information
sberyozkin committed Mar 9, 2021
2 parents cb2799f + 1cea651 commit 75dc8df
Show file tree
Hide file tree
Showing 10 changed files with 163 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
public interface VaultClient {

String X_VAULT_TOKEN = "X-Vault-Token";
String X_VAULT_NAMESPACE = "X-Vault-Namespace";
String API_VERSION = "v1";

VaultUserPassAuth loginUserPass(String user, String password);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
import java.net.MalformedURLException;
import java.net.URL;
import java.time.Duration;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;

import javax.annotation.PreDestroy;
import javax.inject.Singleton;
Expand Down Expand Up @@ -88,6 +91,9 @@ public class VertxVaultClient implements VaultClient {

private static final Logger log = Logger.getLogger(VertxVaultClient.class);

private static final List<String> ROOT_NAMESPACE_API = Arrays.asList("sys/init", "sys/license", "sys/leader", "sys/health",
"sys/metrics", "sys/config/state", "sys/host-info", "sys/key-status", "sys/storage", "sys/storage/raft");

private final Vertx vertx;
private URL baseUrl;
private String kubernetesAuthMountPath;
Expand Down Expand Up @@ -508,9 +514,17 @@ private HttpRequest<Buffer> builder(String path, String token) {
if (token != null) {
request.putHeader(X_VAULT_TOKEN, token);
}
Optional<String> namespace = vaultConfigHolder.getVaultBootstrapConfig().enterprise.namespace;
if (namespace.isPresent() && !isRootNamespaceAPI(path)) {
request.putHeader(X_VAULT_NAMESPACE, namespace.get());
}
return request;
}

private boolean isRootNamespaceAPI(String path) {
return ROOT_NAMESPACE_API.stream().anyMatch(path::startsWith);
}

private HttpRequest<Buffer> builder(String path) {
return webClient.getAbs(getUrl(path).toString());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ public class VaultBootstrapConfig {
@ConfigItem
public Optional<URL> url;

/**
* Vault Enterprise
*/
@ConfigItem
@ConfigDocSection
public VaultEnterpriseConfig enterprise;

/**
* Authentication
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package io.quarkus.vault.runtime.config;

import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigItem;

@ConfigGroup
public class VaultEnterpriseConfig {

/**
* Vault Enterprise namespace
* <p>
* If set, this will add a `X-Vault-Namespace` header to all requests sent to the Vault server.
* <p>
* See https://www.vaultproject.io/docs/enterprise/namespaces
*
* @asciidoclet
*/
@ConfigItem
public Optional<String> namespace;
}
15 changes: 15 additions & 0 deletions integration-tests/vault/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-test-vault</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand All @@ -34,6 +44,11 @@
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package io.quarkus.vault;

import static org.junit.jupiter.api.Assertions.assertEquals;

import javax.inject.Inject;

import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.junit.jupiter.api.extension.RegisterExtension;

import io.quarkus.test.QuarkusUnitTest;
import io.quarkus.test.common.QuarkusTestResource;

@DisabledOnOs(OS.WINDOWS) // https://github.com/quarkusio/quarkus/issues/3796
@QuarkusTestResource(WiremockVault.class)
public class VaultEnterpriseITCase {

@RegisterExtension
static final QuarkusUnitTest config = new QuarkusUnitTest()
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)
.addAsResource("application-vault-enterprise.properties", "application.properties"));

@Inject
VaultKVSecretEngine kvSecretEngine;

@Test
public void header() {
assertEquals("{hello=world}", kvSecretEngine.readSecret("foo").toString());
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
package io.quarkus.vault;

import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
import static com.github.tomakehurst.wiremock.client.WireMock.equalTo;
import static com.github.tomakehurst.wiremock.client.WireMock.get;
import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;
import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig;

import java.util.Collections;
import java.util.Map;

import com.github.tomakehurst.wiremock.WireMockServer;

import io.quarkus.test.common.QuarkusTestResourceLifecycleManager;

public class WiremockVault implements QuarkusTestResourceLifecycleManager {

private WireMockServer server;

@Override
public Map<String, String> start() {

server = new WireMockServer(wireMockConfig().httpsPort(8201));
server.start();

server.stubFor(get(urlEqualTo("/v1/secret/foo"))
.withHeader("X-Vault-Namespace", equalTo("accounting"))
.willReturn(aResponse()
.withHeader("Content-Type", "application/json")
.withBody(
"{\"request_id\":\"bf5245f4-f194-2b13-80b7-6cad145b8135\",\"lease_id\":\"\",\"renewable\":false,\"lease_duration\":2764800,\"wrap_info\":null,\"warnings\":null,\"auth\":null,"
+ "\"data\":{\"hello\":\"world\"}}")));

return Collections.emptyMap();
}

@Override
public void stop() {
if (server != null) {
server.stop();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
quarkus.vault.url=https://localhost:8201
quarkus.vault.enterprise.namespace=accounting
quarkus.vault.authentication.client-token=123
quarkus.vault.kv-secret-engine-version=1
quarkus.tls.trust-all=true
# CI can sometimes be slow, there is no need to fail a test if Vault doesn't respond in 1 second which is the default
quarkus.vault.read-timeout=5S
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URISyntaxException;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Paths;
Expand Down Expand Up @@ -55,6 +54,7 @@
import io.quarkus.vault.runtime.client.dto.sys.VaultSealStatusResult;
import io.quarkus.vault.runtime.config.VaultAuthenticationConfig;
import io.quarkus.vault.runtime.config.VaultBootstrapConfig;
import io.quarkus.vault.runtime.config.VaultEnterpriseConfig;
import io.quarkus.vault.runtime.config.VaultKubernetesAuthenticationConfig;
import io.quarkus.vault.runtime.config.VaultTlsConfig;
import io.quarkus.vault.test.client.TestVaultClient;
Expand All @@ -67,7 +67,6 @@ public class VaultTestExtension {
static final String DB_USERNAME = "postgres";
public static final String DB_PASSWORD = "bar";
public static final String SECRET_VALUE = "s\u20accr\u20act";
static final String DEFAULT_VAULT_VERSION = "1.6.0";
static final int VAULT_PORT = 8200;
static final int MAPPED_POSTGRESQL_PORT = 6543;
public static final String VAULT_AUTH_USERPASS_USER = "bob";
Expand Down Expand Up @@ -112,7 +111,7 @@ public class VaultTestExtension {
public String passwordKvv2WrappingToken = null;
public String anotherPasswordKvv2WrappingToken = null;

private TestVaultClient vaultClient = createVaultClient();
private TestVaultClient vaultClient;

private String db_default_ttl = "1m";
private String db_max_ttl = "10m";
Expand Down Expand Up @@ -162,10 +161,12 @@ private static String readSecretAsString(VaultKVSecretEngine kvSecretEngine, Str
return new TreeMap<>(secret).toString();
}

private static TestVaultClient createVaultClient() {
private TestVaultClient createVaultClient() {
VaultBootstrapConfig vaultBootstrapConfig = new VaultBootstrapConfig();
vaultBootstrapConfig.tls = new VaultTlsConfig();
vaultBootstrapConfig.url = getVaultUrl();
vaultBootstrapConfig.enterprise = new VaultEnterpriseConfig();
vaultBootstrapConfig.enterprise.namespace = Optional.empty();
vaultBootstrapConfig.tls.skipVerify = Optional.of(true);
vaultBootstrapConfig.tls.caCert = Optional.empty();
vaultBootstrapConfig.connectTimeout = Duration.ofSeconds(5);
Expand All @@ -183,7 +184,7 @@ private static Optional<URL> getVaultUrl() {
}
}

public void start() throws InterruptedException, IOException, URISyntaxException {
public void start() throws InterruptedException, IOException {

log.info("start containers on " + System.getProperty("os.name"));

Expand All @@ -205,11 +206,12 @@ public void start() throws InterruptedException, IOException, URISyntaxException

String configFile = useTls() ? "vault-config-tls.json" : "vault-config.json";

log.info("starting vault with url=" + VAULT_URL + " and config file=" + configFile);
String vaultImage = getVaultImage();
log.info("starting " + vaultImage + " with url=" + VAULT_URL + " and config file=" + configFile);

new File(HOST_VAULT_TMP_CMD).mkdirs();

vaultContainer = new GenericContainer<>("vault:" + getVaultVersion())
vaultContainer = new GenericContainer<>(vaultImage)
.withExposedPorts(VAULT_PORT)
.withEnv("SKIP_SETCAP", "true")
.withEnv("VAULT_SKIP_VERIFY", "true") // this is internal to the container
Expand All @@ -235,11 +237,13 @@ public void start() throws InterruptedException, IOException, URISyntaxException
log.info("vault has started with root token: " + rootToken);
}

private String getVaultVersion() {
return System.getProperty("vault.version", DEFAULT_VAULT_VERSION);
private String getVaultImage() {
return "vault:1.6.0";
}

private void initVault() throws InterruptedException, IOException, URISyntaxException {
private void initVault() throws InterruptedException, IOException {

vaultClient = createVaultClient();

VaultInitResponse vaultInit = vaultClient.init(1, 1);
String unsealKey = vaultInit.keys.get(0);
Expand Down Expand Up @@ -454,5 +458,4 @@ public void close() {

// VaultManager.getInstance().reset();
}

}
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package io.quarkus.vault.test;

import java.io.IOException;
import java.net.URISyntaxException;
import java.util.HashMap;
import java.util.Map;

Expand All @@ -13,25 +12,26 @@ public class VaultTestLifecycleManager implements QuarkusTestResourceLifecycleMa

private static final Logger log = Logger.getLogger(VaultTestLifecycleManager.class);

private VaultTestExtension vaultTestExtension = new VaultTestExtension();
protected VaultTestExtension vaultTestExtension;

public static final String GRAALVM_JRE_LIB_AMD_64 = "/opt/graalvm/jre/lib/amd64";

@Override
public Map<String, String> start() {

vaultTestExtension = new VaultTestExtension();

Map<String, String> sysprops = new HashMap<>();

// see TLS availability in native mode https://github.com/quarkusio/quarkus/issues/3797
if (VaultTestExtension.useTls()) {
sysprops.put("quarkus.vault.url", "https://localhost:8200");
sysprops.put("javax.net.ssl.trustStore", "src/test/resources/vaultTrustStore");
sysprops.put("java.library.path", GRAALVM_JRE_LIB_AMD_64);
}

try {
vaultTestExtension.start();
} catch (InterruptedException | IOException | URISyntaxException e) {
} catch (InterruptedException | IOException e) {
throw new RuntimeException(e);
}

Expand All @@ -51,6 +51,8 @@ public Map<String, String> start() {

@Override
public void stop() {
vaultTestExtension.close();
if (vaultTestExtension != null) {
vaultTestExtension.close();
}
}
}

0 comments on commit 75dc8df

Please sign in to comment.