aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/maintenance/HostEncrypter.java
blob: caf20463f60e09d797626d3b5ed7ff516a017bec (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.maintenance;

import com.yahoo.component.Version;
import com.yahoo.config.provision.NodeType;
import com.yahoo.jdisc.Metric;
import com.yahoo.vespa.flags.Flags;
import com.yahoo.vespa.flags.IntFlag;
import com.yahoo.vespa.hosted.provision.Node;
import com.yahoo.vespa.hosted.provision.NodeList;
import com.yahoo.vespa.hosted.provision.NodeRepository;
import com.yahoo.vespa.hosted.provision.node.Agent;
import com.yahoo.vespa.hosted.provision.node.ClusterId;

import java.time.Duration;
import java.time.Instant;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.logging.Logger;

/**
 * This maintainer triggers encryption of hosts that have unencrypted disk.
 *
 * A host to be encrypted is retired and marked as want-to-encrypt by storing a report.
 *
 * This uses the same host selection criteria as {@link com.yahoo.vespa.hosted.provision.os.RebuildingOsUpgrader}.
 *
 * @author mpolden
 */
// TODO(mpolden): This can be removed once all hosts are encrypted
public class HostEncrypter extends NodeRepositoryMaintainer {

    private static final Logger LOG = Logger.getLogger(HostEncrypter.class.getName());

    private final IntFlag maxEncryptingHosts;

    public HostEncrypter(NodeRepository nodeRepository, Duration interval, Metric metric) {
        super(nodeRepository, interval, metric);
        this.maxEncryptingHosts = Flags.MAX_ENCRYPTING_HOSTS.bindTo(nodeRepository.flagSource());
    }

    @Override
    protected boolean maintain() {
        Instant now = nodeRepository().clock().instant();
        NodeList allNodes = nodeRepository().nodes().list();
        for (var nodeType : NodeType.values()) {
            if (!nodeType.isHost()) continue;
            if (upgradingVespa(allNodes, nodeType)) continue;
            unencryptedHosts(allNodes, nodeType).forEach(host -> encrypt(host, now));
        }
        return true;
    }

    /** Returns whether any node of given type is currently upgrading its Vespa version */
    private boolean upgradingVespa(NodeList allNodes, NodeType hostType) {
        return allNodes.state(Node.State.ready, Node.State.active)
                       .nodeType(hostType)
                       .changingVersion()
                       .size() > 0;
    }

    /** Returns unencrypted hosts of given type that can be encrypted */
    private List<Node> unencryptedHosts(NodeList allNodes, NodeType hostType) {
        if (!hostType.isHost()) throw new IllegalArgumentException("Expected host type, got " + hostType);
        NodeList hostsOfTargetType =  allNodes.nodeType(hostType);
        int hostLimit = hostLimit(hostsOfTargetType, hostType);

        // Find stateful clusters with retiring nodes
        NodeList activeNodes = allNodes.state(Node.State.active);
        Set<ClusterId> retiringClusters = new HashSet<>(activeNodes.nodeType(hostType.childNodeType())
                                                                   .retiring()
                                                                   .statefulClusters());

        // Encrypt hosts not containing stateful clusters with retiring nodes, up to limit
        List<Node> hostsToEncrypt = new ArrayList<>(hostLimit);
        NodeList candidates = hostsOfTargetType.state(Node.State.active)
                                               .not().encrypted()
                                               .not().encrypting()
                                               // Require an OS version supporting encryption
                                               .matching(node -> node.status().osVersion().current()
                                                                     .orElse(Version.emptyVersion).getMajor() >= 8);

        for (Node host : candidates) {
            if (hostsToEncrypt.size() == hostLimit) break;
            Set<ClusterId> clustersOnHost = activeNodes.childrenOf(host).statefulClusters();
            boolean canEncrypt = Collections.disjoint(retiringClusters, clustersOnHost);
            if (canEncrypt) {
                hostsToEncrypt.add(host);
                retiringClusters.addAll(clustersOnHost);
            }
        }
        return Collections.unmodifiableList(hostsToEncrypt);

    }

    /** Returns the number of hosts that can encrypt concurrently */
    private int hostLimit(NodeList hosts, NodeType hostType) {
        if (hosts.stream().anyMatch(host -> host.type() != hostType)) throw new IllegalArgumentException("All hosts must be a " + hostType);
        if (maxEncryptingHosts.value() < 1) return 0; // 0 or negative value effectively stops encryption of all hosts
        int limit = hostType == NodeType.host ? maxEncryptingHosts.value() : 1;
        return Math.max(0, limit - hosts.encrypting().size());
    }

    private void encrypt(Node host, Instant now) {
        LOG.info("Retiring and encrypting " + host);
        nodeRepository().nodes().encrypt(host.hostname(), Agent.HostEncrypter, now);
    }

}