summaryrefslogtreecommitdiffstats
path: root/athenz-identity-provider-service/src/main/java/com/yahoo/vespa/hosted/athenz/instanceproviderservice/identitydocument/IdentityDocumentGenerator.java
blob: 950d2df953215f57d800b439044541506209057b (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// 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.identitydocument;

import com.google.inject.Inject;
import com.yahoo.config.provision.Zone;
import com.yahoo.net.HostName;
import com.yahoo.vespa.athenz.api.AthenzService;
import com.yahoo.vespa.athenz.identityprovider.api.IdentityType;
import com.yahoo.vespa.athenz.identityprovider.api.SignedIdentityDocument;
import com.yahoo.vespa.athenz.identityprovider.api.VespaUniqueInstanceId;
import com.yahoo.vespa.athenz.identityprovider.client.IdentityDocumentSigner;
import com.yahoo.vespa.hosted.athenz.instanceproviderservice.KeyProvider;
import com.yahoo.vespa.hosted.athenz.instanceproviderservice.config.AthenzProviderServiceConfig;
import com.yahoo.vespa.hosted.athenz.instanceproviderservice.impl.Utils;
import com.yahoo.vespa.hosted.provision.Node;
import com.yahoo.vespa.hosted.provision.NodeRepository;
import com.yahoo.vespa.hosted.provision.node.Allocation;

import java.security.PrivateKey;
import java.time.Instant;
import java.util.HashSet;
import java.util.Set;

/**
 * Generates a signed identity document for a given hostname and type
 *
 * @author mortent
 * @author bjorncs
 */
public class IdentityDocumentGenerator {

    private final IdentityDocumentSigner signer = new IdentityDocumentSigner();
    private final NodeRepository nodeRepository;
    private final Zone zone;
    private final KeyProvider keyProvider;
    private final AthenzProviderServiceConfig.Zones zoneConfig;

    @Inject
    public IdentityDocumentGenerator(AthenzProviderServiceConfig config,
                                     NodeRepository nodeRepository,
                                     Zone zone,
                                     KeyProvider keyProvider) {
        this.zoneConfig = Utils.getZoneConfig(config, zone);
        this.nodeRepository = nodeRepository;
        this.zone = zone;
        this.keyProvider = keyProvider;
    }

    public SignedIdentityDocument generateSignedIdentityDocument(String hostname, IdentityType identityType) {
        try {
            Node node = nodeRepository.getNode(hostname).orElseThrow(() -> new RuntimeException("Unable to find node " + hostname));
            Allocation allocation = node.allocation().orElseThrow(() -> new RuntimeException("No allocation for node " + node.hostname()));
            VespaUniqueInstanceId providerUniqueId = new VespaUniqueInstanceId(
                    allocation.membership().index(),
                    allocation.membership().cluster().id().value(),
                    allocation.owner().instance().value(),
                    allocation.owner().application().value(),
                    allocation.owner().tenant().value(),
                    zone.region().value(),
                    zone.environment().value(),
                    identityType);

            Set<String> ips = new HashSet<>(node.ipAddresses());

            PrivateKey privateKey = keyProvider.getPrivateKey(zoneConfig.secretVersion());
            AthenzService providerService = new AthenzService(zoneConfig.domain(), zoneConfig.serviceName());

            String configServerHostname = HostName.getLocalhost();
            Instant createdAt = Instant.now();
            String signature = signer.generateSignature(
                    providerUniqueId, providerService, configServerHostname,
                    node.hostname(), createdAt, ips, identityType, privateKey);

            return new SignedIdentityDocument(
                    signature,
                    SignedIdentityDocument.DEFAULT_KEY_VERSION,
                    providerUniqueId,
                    providerService,
                    SignedIdentityDocument.DEFAULT_DOCUMENT_VERSION,
                    configServerHostname,
                    node.hostname(),
                    createdAt,
                    ips,
                    identityType);
        } catch (Exception e) {
            throw new RuntimeException("Exception generating identity document: " + e.getMessage(), e);
        }
    }

    private static String toZoneDnsSuffix(Zone zone, String dnsSuffix) {
        return zone.environment().value() + "-" + zone.region().value() + "." + dnsSuffix;
    }

}