summaryrefslogtreecommitdiffstats
path: root/athenz-identity-provider-service/src/main/java/com/yahoo/vespa/hosted/athenz/instanceproviderservice/impl/AthenzCertificateClient.java
blob: c6aee673f9c930b3106c15a6f9d94e222d4f91d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.athenz.instanceproviderservice.impl;

import com.yahoo.athenz.auth.impl.PrincipalAuthority;
import com.yahoo.athenz.auth.impl.SimpleServiceIdentityProvider;
import com.yahoo.athenz.auth.util.Crypto;
import com.yahoo.athenz.zts.InstanceRefreshRequest;
import com.yahoo.athenz.zts.ZTSClient;
import com.yahoo.vespa.hosted.athenz.instanceproviderservice.config.AthenzProviderServiceConfig;

import java.security.PrivateKey;
import java.security.cert.X509Certificate;
import java.time.temporal.ChronoUnit;
import java.time.temporal.TemporalAmount;
import java.util.concurrent.TimeUnit;

/**
 * @author bjorncs
 */
public class AthenzCertificateClient {

    private final AthenzProviderServiceConfig config;
    private final AthenzPrincipalAuthority authority;
    private final AthenzProviderServiceConfig.Zones zoneConfig;

    public AthenzCertificateClient(AthenzProviderServiceConfig config, AthenzProviderServiceConfig.Zones zoneConfig) {
        this.config = config;
        this.authority = new AthenzPrincipalAuthority(config.athenzPrincipalHeaderName());
        this.zoneConfig = zoneConfig;
    }

    public X509Certificate updateCertificate(PrivateKey privateKey, TemporalAmount expiryTime) {
        SimpleServiceIdentityProvider identityProvider = new SimpleServiceIdentityProvider(
                authority, zoneConfig.domain(), zoneConfig.serviceName(),
                privateKey, Integer.toString(zoneConfig.secretVersion()), TimeUnit.MINUTES.toSeconds(10));
        ZTSClient ztsClient = new ZTSClient(
                config.ztsUrl(), zoneConfig.domain(), zoneConfig.serviceName(), identityProvider);
        InstanceRefreshRequest req =
                ZTSClient.generateInstanceRefreshRequest(
                        zoneConfig.domain(), zoneConfig.serviceName(), privateKey,
                        config.certDnsSuffix(), (int)expiryTime.get(ChronoUnit.SECONDS));
        String pemEncoded = ztsClient.postInstanceRefreshRequest(zoneConfig.domain(), zoneConfig.serviceName(), req)
                .getCertificate();
        return Crypto.loadX509Certificate(pemEncoded);
    }

    private static class AthenzPrincipalAuthority extends PrincipalAuthority {
        private final String headerName;

        public AthenzPrincipalAuthority(String headerName) {
            this.headerName = headerName;
        }

        @Override
        public String getHeader() {
            return headerName;
        }
    }

}