aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/restapi/v2/filter/AuthorizationFilter.java
blob: ccc09aad24a08fd7694910bb3015558ca4f6d237 (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
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.restapi.v2.filter;

import com.google.inject.Inject;
import com.yahoo.config.provision.Zone;
import com.yahoo.config.provisioning.NodeRepositoryConfig;
import com.yahoo.jdisc.handler.ResponseHandler;
import com.yahoo.jdisc.http.filter.DiscFilterRequest;
import com.yahoo.jdisc.http.filter.SecurityRequestFilter;
import com.yahoo.net.HostName;
import com.yahoo.vespa.hosted.provision.NodeRepository;
import com.yahoo.vespa.hosted.provision.restapi.v2.Authorizer;
import com.yahoo.vespa.hosted.provision.restapi.v2.ErrorResponse;

import java.net.URI;
import java.security.Principal;
import java.security.cert.X509Certificate;
import java.util.List;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.BiPredicate;
import java.util.logging.Logger;
import java.util.stream.Collectors;
import java.util.stream.Stream;

/**
 * Authorization filter for all paths in config server.
 *
 * @author mpolden
 */
public class AuthorizationFilter implements SecurityRequestFilter {

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

    private final BiPredicate<Principal, URI> authorizer;
    private final BiConsumer<ErrorResponse, ResponseHandler> rejectAction;
    private final HostAuthenticator hostAuthenticator;

    @Inject
    public AuthorizationFilter(Zone zone, NodeRepository nodeRepository, NodeRepositoryConfig nodeRepositoryConfig) {
        this(
                new Authorizer(
                        zone.system(),
                        nodeRepository,
                        Stream.concat(
                                Stream.of(HostName.getLocalhost()),
                                Stream.of(nodeRepositoryConfig.hostnameWhitelist().split(","))
                        ).filter(hostname -> !hostname.isEmpty()).collect(Collectors.toSet())),
                AuthorizationFilter::logAndReject,
                new HostAuthenticator(zone, nodeRepository)
        );
    }

    AuthorizationFilter(BiPredicate<Principal, URI> authorizer,
                        BiConsumer<ErrorResponse, ResponseHandler> rejectAction,
                        HostAuthenticator hostAuthenticator) {
        this.authorizer = authorizer;
        this.rejectAction = rejectAction;
        this.hostAuthenticator = hostAuthenticator;
    }

    @Override
    public void filter(DiscFilterRequest request, ResponseHandler handler) {
        validateAccess(request)
                .ifPresent(errorResponse -> rejectAction.accept(errorResponse, handler));
    }

    private Optional<ErrorResponse> validateAccess(DiscFilterRequest request) {
        try {
            List<X509Certificate> clientCertificateChain = request.getClientCertificateChain();
            if (clientCertificateChain.isEmpty())
                return Optional.of(ErrorResponse.unauthorized(createErrorMessage(request, "Missing credentials")));
            NodePrincipal hostIdentity = hostAuthenticator.authenticate(clientCertificateChain);
            if (!authorizer.test(hostIdentity, request.getUri()))
                return Optional.of(ErrorResponse.forbidden(createErrorMessage(request, "Invalid credentials")));
            request.setUserPrincipal(hostIdentity);
            return Optional.empty();
        } catch (HostAuthenticator.AuthenticationException e) {
            return Optional.of(ErrorResponse.forbidden(createErrorMessage(request, "Invalid credentials: " + e.getMessage())));
        }
    }

    private static String createErrorMessage(DiscFilterRequest request, String message) {
        return String.format("%s %s denied for %s: %s",
                             request.getMethod(),
                             request.getUri().getPath(),
                             request.getRemoteAddr(),
                             message);
    }

    private static void logAndReject(ErrorResponse response, ResponseHandler handler) {
        log.warning(response.message());
        FilterUtils.write(response, handler);
    }

}