summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/athenz/AthenzIdentityVerifier.java
blob: 527efaab946e2ca62b945abdb7b67cfe62a4936c (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
// 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.controller.api.integration.athenz;

import org.apache.http.conn.ssl.X509HostnameVerifier;

import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLException;
import javax.net.ssl.SSLPeerUnverifiedException;
import javax.net.ssl.SSLSession;
import javax.net.ssl.SSLSocket;
import java.security.cert.X509Certificate;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * A {@link HostnameVerifier} / {@link X509HostnameVerifier} that validates
 * Athenz x509 certificates using the identity in the Common Name attribute.
 *
 * @author bjorncs
 */
// TODO Move to dedicated Athenz bundle
public class AthenzIdentityVerifier implements X509HostnameVerifier {

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

    private final Set<AthenzIdentity> allowedIdentities;

    public AthenzIdentityVerifier(Set<AthenzIdentity> allowedIdentities) {
        this.allowedIdentities = allowedIdentities;
    }

    @Override
    public boolean verify(String hostname, SSLSession session) {
        try {
            X509Certificate cert = (X509Certificate) session.getPeerCertificates()[0];
            return isTrusted(AthenzUtils.createAthenzIdentity(cert));
        } catch (SSLPeerUnverifiedException e) {
            log.log(Level.WARNING, "Unverified client: " + hostname);
            return false;
        }
    }

    @Override
    public void verify(String host, SSLSocket ssl) {
        // all sockets allowed
    }

    @Override
    public void verify(String hostname, X509Certificate certificate) throws SSLException {
        AthenzIdentity identity = AthenzUtils.createAthenzIdentity(certificate);
        if (!isTrusted(identity)) {
            throw new SSLException("Athenz identity is not trusted: " + identity.getFullName());
        }
    }

    @Override
    public void verify(String hostname, String[] cns, String[] subjectAlts) throws SSLException {
        AthenzIdentity identity = AthenzUtils.createAthenzIdentity(cns[0]);
        if (!isTrusted(identity)) {
            throw new SSLException("Athenz identity is not trusted: " + identity.getFullName());
        }
    }

    private boolean isTrusted(AthenzIdentity identity) {
        return allowedIdentities.contains(identity);
    }
}