aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/container/http/Http.java
blob: c7f74b8f018f5fecea575b87329ebc2ca0dbe55d (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
113
114
115
116
117
118
119
120
121
122
123
124
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.container.http;

import com.yahoo.component.provider.ComponentRegistry;
import com.yahoo.config.model.producer.AnyConfigProducer;
import com.yahoo.config.model.producer.TreeConfigProducer;
import com.yahoo.jdisc.http.ServerConfig;
import com.yahoo.vespa.model.container.component.chain.ChainedComponent;

import java.util.Collection;
import java.util.List;
import java.util.Optional;
import java.util.concurrent.CopyOnWriteArrayList;

/**
 * Represents the http servers and filters of a container cluster.
 *
 * @author Tony Vaagenes
 * @author bjorncs
 */
public class Http extends TreeConfigProducer<AnyConfigProducer> implements ServerConfig.Producer {

    private final FilterChains filterChains;
    private final List<FilterBinding> bindings = new CopyOnWriteArrayList<>();
    private volatile JettyHttpServer httpServer;
    private volatile AccessControl accessControl;
    private volatile Boolean strictFiltering;

    public Http(FilterChains chains) {
        super("http");
        this.filterChains = chains;
    }

    public void setAccessControl(AccessControl accessControl) {
            if (this.accessControl != null) throw new IllegalStateException("Access control already assigned");
            this.accessControl = accessControl;
    }

    public FilterChains getFilterChains() {
        return filterChains;
    }

    public Optional<JettyHttpServer> getHttpServer() {
        return Optional.ofNullable(httpServer);
    }

    public void setHttpServer(JettyHttpServer newServer) {
        JettyHttpServer oldServer = this.httpServer;
        this.httpServer = newServer;

        if (oldServer == null && newServer != null) {
            addChild(newServer);
        } else if (newServer == null && oldServer != null) {
            removeChild(oldServer);
        } else if (newServer == null && oldServer == null) {
            //do nothing
        } else {
            //none of them are null
            removeChild(oldServer);
            addChild(newServer);
        }
    }

    public void removeAllServers() {
        setHttpServer(null);
    }

    public List<FilterBinding> getBindings() {
        return bindings;
    }

    public Optional<AccessControl> getAccessControl() {
        return Optional.ofNullable(accessControl);
    }

    public void setStrictFiltering(boolean enabled) { this.strictFiltering = enabled; }

    @Override
    public void getConfig(ServerConfig.Builder builder) {
        for (FilterBinding binding : bindings) {
            builder.filter(new ServerConfig.Filter.Builder()
                    .id(binding.chainId().stringValue())
                    .binding(binding.binding().patternString()));
        }
        populateDefaultFiltersConfig(builder, httpServer);

        // Enable strict filter by default if any filter chain/binding is configured
        boolean strictFilter = this.strictFiltering == null
                ? (!bindings.isEmpty() || !filterChains.allChains().allComponents().isEmpty())
                : strictFiltering;
        builder.strictFiltering(strictFilter);
    }

    @Override
    public void validate() {
        if (((Collection<FilterBinding>) bindings).isEmpty()) return;

        if (filterChains == null)
            throw new IllegalArgumentException("Null FilterChains are not allowed when there are filter bindings");

        ComponentRegistry<ChainedComponent<?>> filters = filterChains.componentsRegistry();
        var chains = filterChains.allChains();

        for (FilterBinding binding: bindings) {
            if (filters.getComponent(binding.chainId()) == null && chains.getComponent(binding.chainId()) == null)
                throw new IllegalArgumentException("Can't find filter " + binding.chainId() + " for binding " + binding.binding());
        }
    }

    private static void populateDefaultFiltersConfig(ServerConfig.Builder builder, JettyHttpServer httpServer) {
        if (httpServer != null) {
            for (ConnectorFactory connector : httpServer.getConnectorFactories()) {
                connector.getDefaultRequestFilterChain().ifPresent(
                        filterChain -> builder.defaultFilters(new ServerConfig.DefaultFilters.Builder()
                                .filterId(filterChain.stringValue())
                                .localPort(connector.getListenPort())));
                connector.getDefaultResponseFilterChain().ifPresent(
                        filterChain -> builder.defaultFilters(new ServerConfig.DefaultFilters.Builder()
                                .filterId(filterChain.stringValue())
                                .localPort(connector.getListenPort())));
            }
        }
    }
}