-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathhttp.go
More file actions
287 lines (228 loc) · 7.12 KB
/
Copy pathhttp.go
File metadata and controls
287 lines (228 loc) · 7.12 KB
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
// Copyright (c) 2019-2026 Red Hat, Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package controllers
import (
"context"
"crypto/tls"
"crypto/x509"
"fmt"
"net/http"
"net/url"
"reflect"
"sync"
"time"
controller "github.com/devfile/devworkspace-operator/apis/controller/v1alpha1"
"github.com/devfile/devworkspace-operator/pkg/config"
"k8s.io/apimachinery/pkg/types"
"github.com/go-logr/logr"
corev1 "k8s.io/api/core/v1"
"sigs.k8s.io/controller-runtime/pkg/client"
"golang.org/x/net/http/httpproxy"
)
var httpClientsHolder HttpClientsHolder
type HttpClientsHolder interface {
GetHttpClient() *http.Client
// GetHealthCheckHttpClient returns an HTTP client that skips TLS verification.
// This client MUST only be used for workspace health/readiness checks, not for
// fetching external content or making security-sensitive requests.
GetHealthCheckHttpClient() *http.Client
ConfigureHttpClients(context.Context, *controller.RoutingConfig)
}
type DefaultHttpClientsHolder struct {
k8s client.Client
logger logr.Logger
client *http.Client
healthCheckHttpClient *http.Client
mu sync.RWMutex
lastProxyConfig *controller.Proxy
lastCertsCMVersion string
systemCertPool *x509.CertPool
}
func SetupHttpClients(k8s client.Client, logger logr.Logger) error {
systemCertPool, err := x509.SystemCertPool()
if err != nil {
return fmt.Errorf("failed to load system cert pool: %w", err)
}
httpClientsHolder = &DefaultHttpClientsHolder{
k8s: k8s,
logger: logger,
systemCertPool: systemCertPool,
}
httpClientsHolder.ConfigureHttpClients(context.Background(), config.GetGlobalConfig().Routing)
return nil
}
func (h *DefaultHttpClientsHolder) GetHttpClient() *http.Client {
h.mu.RLock()
defer h.mu.RUnlock()
return h.client
}
func (h *DefaultHttpClientsHolder) GetHealthCheckHttpClient() *http.Client {
h.mu.RLock()
defer h.mu.RUnlock()
return h.healthCheckHttpClient
}
func (h *DefaultHttpClientsHolder) ConfigureHttpClients(ctx context.Context, routingConfig *controller.RoutingConfig) {
var newProxyConfig *controller.Proxy
var newCertsCM *corev1.ConfigMap
if routingConfig != nil {
if routingConfig.ProxyConfig != nil {
newProxyConfig = routingConfig.ProxyConfig
}
if routingConfig.TLSCertificateConfigmapRef != nil {
certsCM, err := h.readCertCM(ctx, routingConfig.TLSCertificateConfigmapRef)
if err != nil {
h.logger.Error(err, "Failed to read TLS certificate ConfigMap")
// certsCM == nil,
// http clients will be rebuilt with a system cert pool, not an issue at all
}
newCertsCM = certsCM
}
}
buildNewHttpClient, buildNewHealthCheckHttpClient := h.shouldRebuildClients(newProxyConfig, newCertsCM)
if buildNewHttpClient || buildNewHealthCheckHttpClient {
newClient, newHealthCheckClient := h.buildNewClients(
buildNewHttpClient,
buildNewHealthCheckHttpClient,
newProxyConfig,
newCertsCM,
)
h.setNewClients(
newClient,
newHealthCheckClient,
newProxyConfig,
newCertsCM,
)
}
}
func (h *DefaultHttpClientsHolder) shouldRebuildClients(newProxyConfig *controller.Proxy, newCertsCM *corev1.ConfigMap) (bool, bool) {
h.mu.RLock()
defer h.mu.RUnlock()
// Always rebuild if clients haven't been initialized yet
if h.client == nil || h.healthCheckHttpClient == nil {
return true, true
}
if !reflect.DeepEqual(newProxyConfig, h.lastProxyConfig) {
return true, true
}
certsCMVersion := ""
if newCertsCM != nil {
certsCMVersion = newCertsCM.ResourceVersion
}
if certsCMVersion != h.lastCertsCMVersion {
return true, false
}
return false, false
}
func (h *DefaultHttpClientsHolder) buildNewClients(
buildNewHttpClient bool,
buildNewHealthCheckHttpClient bool,
newProxyConfig *controller.Proxy,
newCertsCM *corev1.ConfigMap,
) (*http.Client, *http.Client) {
var newClient *http.Client
var newHealthCheckClient *http.Client
proxyFunc := h.getProxyFunc(newProxyConfig)
caCertPool := h.getCaCertPool(newCertsCM)
if buildNewHttpClient {
transport := http.DefaultTransport.(*http.Transport).Clone()
transport.Proxy = proxyFunc
transport.TLSClientConfig = &tls.Config{
RootCAs: caCertPool,
}
newClient = &http.Client{
Transport: transport,
Timeout: 5 * time.Second,
}
}
if buildNewHealthCheckHttpClient {
healthCheckTransport := http.DefaultTransport.(*http.Transport).Clone()
healthCheckTransport.Proxy = proxyFunc
healthCheckTransport.TLSClientConfig = &tls.Config{
InsecureSkipVerify: true,
}
newHealthCheckClient = &http.Client{
Transport: healthCheckTransport,
Timeout: 500 * time.Millisecond,
}
}
return newClient, newHealthCheckClient
}
func (h *DefaultHttpClientsHolder) setNewClients(
newClient *http.Client,
newHealthCheckClient *http.Client,
newProxyConfig *controller.Proxy,
newCertsCM *corev1.ConfigMap,
) {
h.mu.Lock()
defer h.mu.Unlock()
if newClient != nil {
h.client = newClient
}
if newHealthCheckClient != nil {
h.healthCheckHttpClient = newHealthCheckClient
}
if newProxyConfig != nil {
h.lastProxyConfig = newProxyConfig.DeepCopy()
} else {
h.lastProxyConfig = nil
}
if newCertsCM != nil {
h.lastCertsCMVersion = newCertsCM.ResourceVersion
} else {
h.lastCertsCMVersion = ""
}
}
func (h *DefaultHttpClientsHolder) getProxyFunc(proxyConfig *controller.Proxy) func(*http.Request) (*url.URL, error) {
if proxyConfig != nil {
proxyConf := httpproxy.Config{}
if proxyConfig.HttpProxy != nil {
proxyConf.HTTPProxy = *proxyConfig.HttpProxy
}
if proxyConfig.HttpsProxy != nil {
proxyConf.HTTPSProxy = *proxyConfig.HttpsProxy
}
if proxyConfig.NoProxy != nil {
proxyConf.NoProxy = *proxyConfig.NoProxy
}
return func(req *http.Request) (*url.URL, error) {
return proxyConf.ProxyFunc()(req.URL)
}
}
return nil
}
func (h *DefaultHttpClientsHolder) getCaCertPool(cm *corev1.ConfigMap) *x509.CertPool {
if cm == nil {
return nil
}
caCertPool := h.systemCertPool.Clone()
for _, certsPem := range cm.Data {
if !caCertPool.AppendCertsFromPEM([]byte(certsPem)) {
h.logger.V(1).Info("Warning: failed to parse one or more certificates from ConfigMap")
}
}
return caCertPool
}
func (h *DefaultHttpClientsHolder) readCertCM(ctx context.Context, cmReference *controller.ConfigmapReference) (*corev1.ConfigMap, error) {
if cmReference == nil {
return nil, nil
}
namespacedName := types.NamespacedName{
Name: cmReference.Name,
Namespace: cmReference.Namespace,
}
configMap := &corev1.ConfigMap{}
if err := h.k8s.Get(ctx, namespacedName, configMap); err != nil {
return nil, fmt.Errorf("failed to read ConfigMap %s/%s containing certificates: %w", cmReference.Namespace, cmReference.Name, err)
}
return configMap, nil
}