]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ssl/PeekingPeerConnector.cc
Bug 5428: Warn if pkg-config is not found (#1902)
[thirdparty/squid.git] / src / ssl / PeekingPeerConnector.cc
CommitLineData
32f1ca3f 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
32f1ca3f
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9/* DEBUG: section 83 SSL-Bump Server/Peer negotiation */
10
11#include "squid.h"
12#include "acl/FilledChecklist.h"
13#include "client_side.h"
14#include "errorpage.h"
15#include "fde.h"
0ba8b2ad 16#include "http/Stream.h"
64d0dd9f 17#include "HttpRequest.h"
83b053a0 18#include "security/ErrorDetail.h"
32f1ca3f
AJ
19#include "security/NegotiationHistory.h"
20#include "SquidConfig.h"
21#include "ssl/bio.h"
22#include "ssl/PeekingPeerConnector.h"
23#include "ssl/ServerBump.h"
8b082ed9 24#include "tunnel.h"
32f1ca3f
AJ
25
26CBDATA_NAMESPACED_CLASS_INIT(Ssl, PeekingPeerConnector);
27
4647c8bd
CT
28Ssl::PeekingPeerConnector::PeekingPeerConnector(HttpRequestPointer &aRequest,
29 const Comm::ConnectionPointer &aServerConn,
30 const Comm::ConnectionPointer &aClientConn,
e5ddd4ce 31 const AsyncCallback<Security::EncryptorAnswer> &aCallback,
4647c8bd
CT
32 const AccessLogEntryPointer &alp,
33 const time_t timeout):
34 AsyncJob("Ssl::PeekingPeerConnector"),
35 Security::PeerConnector(aServerConn, aCallback, alp, timeout),
36 clientConn(aClientConn),
37 splice(false),
38 serverCertificateHandled(false)
39{
40 request = aRequest;
41
42 if (const auto csd = request->clientConnectionManager.valid()) {
43 const auto serverBump = csd->serverBump();
44 Must(serverBump);
45 Must(serverBump->at(XactionStep::tlsBump3));
46 }
47 // else the client is gone, and we cannot check the step, but must carry on
48}
49
32f1ca3f 50void
2b6b1bcb 51Ssl::PeekingPeerConnector::cbCheckForPeekAndSpliceDone(const Acl::Answer aclAnswer, void *data)
32f1ca3f
AJ
52{
53 Ssl::PeekingPeerConnector *peerConnect = (Ssl::PeekingPeerConnector *) data;
54 // Use job calls to add done() checks and other job logic/protections.
2b6b1bcb 55 CallJobHere1(83, 7, CbcPointer<PeekingPeerConnector>(peerConnect), Ssl::PeekingPeerConnector, checkForPeekAndSpliceDone, aclAnswer);
32f1ca3f
AJ
56}
57
58void
2b6b1bcb 59Ssl::PeekingPeerConnector::checkForPeekAndSpliceDone(const Acl::Answer aclAnswer)
32f1ca3f 60{
2b6b1bcb
AR
61 const Ssl::BumpMode finalAction = aclAnswer.allowed() ?
62 static_cast<Ssl::BumpMode>(aclAnswer.kind):
32f1ca3f
AJ
63 checkForPeekAndSpliceGuess();
64 checkForPeekAndSpliceMatched(finalAction);
65}
66
67void
68Ssl::PeekingPeerConnector::checkForPeekAndSplice()
69{
32f1ca3f
AJ
70 handleServerCertificate();
71
c56edb4a 72 auto acl_checklist = ACLFilledChecklist::Make(::Config.accessList.ssl_bump, request.getRaw());
d4ddb3e6 73 acl_checklist->al = al;
329c128c 74 acl_checklist->banAction(Acl::Answer(ACCESS_ALLOWED, Ssl::bumpNone));
75 acl_checklist->banAction(Acl::Answer(ACCESS_ALLOWED, Ssl::bumpPeek));
76 acl_checklist->banAction(Acl::Answer(ACCESS_ALLOWED, Ssl::bumpStare));
77 acl_checklist->banAction(Acl::Answer(ACCESS_ALLOWED, Ssl::bumpClientFirst));
78 acl_checklist->banAction(Acl::Answer(ACCESS_ALLOWED, Ssl::bumpServerFirst));
ad23e748
AJ
79 Security::SessionPointer session(fd_table[serverConn->fd].ssl);
80 BIO *b = SSL_get_rbio(session.get());
093deea9 81 Ssl::ServerBio *srvBio = static_cast<Ssl::ServerBio *>(BIO_get_data(b));
32f1ca3f 82 if (!srvBio->canSplice())
329c128c 83 acl_checklist->banAction(Acl::Answer(ACCESS_ALLOWED, Ssl::bumpSplice));
32f1ca3f 84 if (!srvBio->canBump())
329c128c 85 acl_checklist->banAction(Acl::Answer(ACCESS_ALLOWED, Ssl::bumpBump));
cb365059 86 acl_checklist->syncAle(request.getRaw(), nullptr);
c56edb4a 87 ACLFilledChecklist::NonBlockingCheck(std::move(acl_checklist), Ssl::PeekingPeerConnector::cbCheckForPeekAndSpliceDone, this);
32f1ca3f
AJ
88}
89
90void
91Ssl::PeekingPeerConnector::checkForPeekAndSpliceMatched(const Ssl::BumpMode action)
92{
ad23e748
AJ
93 Security::SessionPointer session(fd_table[serverConn->fd].ssl);
94 BIO *b = SSL_get_rbio(session.get());
093deea9 95 Ssl::ServerBio *srvBio = static_cast<Ssl::ServerBio *>(BIO_get_data(b));
32f1ca3f
AJ
96 debugs(83,5, "Will check for peek and splice on FD " << serverConn->fd);
97
98 Ssl::BumpMode finalAction = action;
99 Must(finalAction == Ssl::bumpSplice || finalAction == Ssl::bumpBump || finalAction == Ssl::bumpTerminate);
100 // Record final decision
101 if (request->clientConnectionManager.valid()) {
102 request->clientConnectionManager->sslBumpMode = finalAction;
103 request->clientConnectionManager->serverBump()->act.step3 = finalAction;
104 }
bf352fb2 105 al->ssl.bumpMode = finalAction;
32f1ca3f
AJ
106
107 if (finalAction == Ssl::bumpTerminate) {
25b0ce45 108 bail(new ErrorState(ERR_SECURE_CONNECT_FAIL, Http::scForbidden, request.getRaw(), al));
32f1ca3f 109 clientConn->close();
25b0ce45 110 clientConn = nullptr;
32f1ca3f
AJ
111 } else if (finalAction != Ssl::bumpSplice) {
112 //Allow write, proceed with the connection
113 srvBio->holdWrite(false);
114 srvBio->recordInput(false);
115 debugs(83,5, "Retry the fwdNegotiateSSL on FD " << serverConn->fd);
a72b6e88 116 Security::PeerConnector::noteWantWrite();
32f1ca3f
AJ
117 } else {
118 splice = true;
119 // Ssl Negotiation stops here. Last SSL checks for valid certificates
120 // and if done, switch to tunnel mode
2b6b1bcb 121 if (sslFinalized() && callback)
56753478 122 callBack();
32f1ca3f
AJ
123 }
124}
125
126Ssl::BumpMode
127Ssl::PeekingPeerConnector::checkForPeekAndSpliceGuess() const
128{
129 if (const ConnStateData *csd = request->clientConnectionManager.valid()) {
130 const Ssl::BumpMode currentMode = csd->sslBumpMode;
131 if (currentMode == Ssl::bumpStare) {
132 debugs(83,5, "default to bumping after staring");
133 return Ssl::bumpBump;
134 }
135 debugs(83,5, "default to splicing after " << currentMode);
136 } else {
137 debugs(83,3, "default to splicing due to missing info");
138 }
139
140 return Ssl::bumpSplice;
141}
142
908634e8
AR
143Security::FuturePeerContext *
144Ssl::PeekingPeerConnector::peerContext() const
32f1ca3f 145{
908634e8 146 return ::Config.ssl_client.defaultPeerContext;
32f1ca3f
AJ
147}
148
eba8d9bb 149bool
0166128b 150Ssl::PeekingPeerConnector::initialize(Security::SessionPointer &serverSession)
32f1ca3f 151{
0166128b 152 if (!Security::PeerConnector::initialize(serverSession))
eba8d9bb 153 return false;
32f1ca3f 154
25b0ce45
CT
155 // client connection supplies TLS client details and is also used if we
156 // need to splice or terminate the client and server connections
157 if (!Comm::IsConnOpen(clientConn))
158 return false;
159
32f1ca3f
AJ
160 if (ConnStateData *csd = request->clientConnectionManager.valid()) {
161
aee3523a 162 SBuf *hostName = nullptr;
32f1ca3f 163
eba8d9bb
AJ
164 //Enable Status_request TLS extension, required to bump some clients
165 SSL_set_tlsext_status_type(serverSession.get(), TLSEXT_STATUSTYPE_ocsp);
32f1ca3f 166
3cae14a6 167 const Security::TlsDetails::Pointer details = csd->tlsParser.details;
49a4d72f 168 if (details && !details->serverName.isEmpty())
3cae14a6 169 hostName = new SBuf(details->serverName);
32f1ca3f
AJ
170
171 if (!hostName) {
172 // While we are peeking at the certificate, we may not know the server
173 // name that the client will request (after interception or CONNECT)
174 // unless it was the CONNECT request with a user-typed address.
175 const bool isConnectRequest = !csd->port->flags.isIntercepted();
176 if (!request->flags.sslPeek || isConnectRequest)
177 hostName = new SBuf(request->url.host());
178 }
179
180 if (hostName)
eba8d9bb 181 SSL_set_ex_data(serverSession.get(), ssl_ex_index_server, (void*)hostName);
32f1ca3f 182
32f1ca3f 183 if (csd->sslBumpMode == Ssl::bumpPeek || csd->sslBumpMode == Ssl::bumpStare) {
eba8d9bb
AJ
184 auto clientSession = fd_table[clientConn->fd].ssl.get();
185 Must(clientSession);
186 BIO *bc = SSL_get_rbio(clientSession);
093deea9 187 Ssl::ClientBio *cltBio = static_cast<Ssl::ClientBio *>(BIO_get_data(bc));
3cae14a6 188 Must(cltBio);
6744c1a8 189 if (details && details->tlsVersion.protocol != AnyP::PROTO_NONE)
eba8d9bb 190 applyTlsDetailsToSSL(serverSession.get(), details, csd->sslBumpMode);
6744c1a8
CT
191
192 BIO *b = SSL_get_rbio(serverSession.get());
193 Ssl::ServerBio *srvBio = static_cast<Ssl::ServerBio *>(BIO_get_data(b));
194 Must(srvBio);
195 // inherit client features such as TLS version and SNI
196 srvBio->setClientFeatures(details, cltBio->rBufData());
197 srvBio->recordInput(true);
198 srvBio->mode(csd->sslBumpMode);
32f1ca3f 199 } else {
32f1ca3f 200 const bool redirected = request->flags.redirected && ::Config.onoff.redir_rewrites_host;
428819f3
RB
201 const char *sniServer = (!hostName || redirected) ?
202 request->url.host() :
203 hostName->c_str();
32f1ca3f 204 if (sniServer)
428819f3 205 setClientSNI(serverSession.get(), sniServer);
32f1ca3f
AJ
206 }
207
088f0761 208 if (Ssl::ServerBump *serverBump = csd->serverBump()) {
8f917129 209 serverBump->attachServerSession(serverSession);
088f0761
CT
210 // store peeked cert to check SQUID_X509_V_ERR_CERT_CHANGE
211 if (X509 *peeked_cert = serverBump->serverCert.get()) {
6f2b8700 212 X509_up_ref(peeked_cert);
eba8d9bb 213 SSL_set_ex_data(serverSession.get(), ssl_ex_index_ssl_peeked_cert, peeked_cert);
088f0761 214 }
32f1ca3f
AJ
215 }
216 }
217
eba8d9bb 218 return true;
32f1ca3f
AJ
219}
220
221void
222Ssl::PeekingPeerConnector::noteNegotiationDone(ErrorState *error)
223{
32f1ca3f 224 // Check the list error with
ad23e748 225 if (!request->clientConnectionManager.valid() || !fd_table[serverConnection()->fd].ssl)
32f1ca3f
AJ
226 return;
227
228 // remember the server certificate from the ErrorDetail object
229 if (Ssl::ServerBump *serverBump = request->clientConnectionManager->serverBump()) {
32f1ca3f
AJ
230 if (!serverBump->serverCert.get()) {
231 // remember the server certificate from the ErrorDetail object
83b053a0
CT
232 const auto errDetail = dynamic_cast<Security::ErrorDetail *>(error ? error->detail.getRaw() : nullptr);
233 if (errDetail && errDetail->peerCert())
234 serverBump->serverCert.resetAndLock(errDetail->peerCert());
32f1ca3f
AJ
235 else {
236 handleServerCertificate();
237 }
238 }
239
240 if (error) {
241 // For intercepted connections, set the host name to the server
242 // certificate CN. Otherwise, we just hope that CONNECT is using
243 // a user-entered address (a host name or a user-entered IP).
244 const bool isConnectRequest = !request->clientConnectionManager->port->flags.isIntercepted();
245 if (request->flags.sslPeek && !isConnectRequest) {
246 if (X509 *srvX509 = serverBump->serverCert.get()) {
247 if (const char *name = Ssl::CommonHostName(srvX509)) {
248 request->url.host(name);
249 debugs(83, 3, "reset request host: " << name);
250 }
251 }
252 }
253 }
254 }
255
32f1ca3f
AJ
256 if (!error) {
257 serverCertificateVerified();
258 if (splice) {
25b0ce45
CT
259 if (!Comm::IsConnOpen(clientConn)) {
260 bail(new ErrorState(ERR_GATEWAY_FAILURE, Http::scInternalServerError, request.getRaw(), al));
261 throw TextException("from-client connection gone", Here());
262 }
1c2b4465 263 startTunneling();
32f1ca3f
AJ
264 }
265 }
266}
267
1c2b4465
CT
268void
269Ssl::PeekingPeerConnector::startTunneling()
270{
271 // switchToTunnel() drains any already buffered from-server data (rBufData)
272 fd_table[serverConn->fd].useDefaultIo();
273 // tunnelStartShoveling() drains any buffered from-client data (inBuf)
274 fd_table[clientConn->fd].useDefaultIo();
275
276 // TODO: Encapsulate this frequently repeated logic into a method.
277 const auto session = fd_table[serverConn->fd].ssl;
278 auto b = SSL_get_rbio(session.get());
279 auto srvBio = static_cast<Ssl::ServerBio*>(BIO_get_data(b));
280
2b6b1bcb 281 debugs(83, 5, "will tunnel instead of negotiating TLS");
1c2b4465 282 switchToTunnel(request.getRaw(), clientConn, serverConn, srvBio->rBufData());
2b6b1bcb
AR
283 answer().tunneled = true;
284 disconnect();
285 callBack();
1c2b4465
CT
286}
287
32f1ca3f
AJ
288void
289Ssl::PeekingPeerConnector::noteWantWrite()
290{
291 const int fd = serverConnection()->fd;
ad23e748
AJ
292 Security::SessionPointer session(fd_table[fd].ssl);
293 BIO *b = SSL_get_rbio(session.get());
093deea9 294 Ssl::ServerBio *srvBio = static_cast<Ssl::ServerBio *>(BIO_get_data(b));
32f1ca3f
AJ
295
296 if ((srvBio->bumpMode() == Ssl::bumpPeek || srvBio->bumpMode() == Ssl::bumpStare) && srvBio->holdWrite()) {
bc8e1f18 297 debugs(81, 3, "hold write on SSL connection on FD " << fd);
32f1ca3f
AJ
298 checkForPeekAndSplice();
299 return;
300 }
301
a72b6e88 302 Security::PeerConnector::noteWantWrite();
32f1ca3f
AJ
303}
304
305void
83b053a0 306Ssl::PeekingPeerConnector::noteNegotiationError(const Security::ErrorDetailPointer &errorDetail)
32f1ca3f
AJ
307{
308 const int fd = serverConnection()->fd;
ad23e748
AJ
309 Security::SessionPointer session(fd_table[fd].ssl);
310 BIO *b = SSL_get_rbio(session.get());
093deea9 311 Ssl::ServerBio *srvBio = static_cast<Ssl::ServerBio *>(BIO_get_data(b));
32f1ca3f 312
cd29a421
CT
313 if (srvBio->bumpMode() == Ssl::bumpPeek) {
314 auto bypassValidator = false;
315 if (srvBio->encryptedCertificates()) {
316 // it is pointless to peek at encrypted certificates
317 //
318 // we currently splice all sessions with encrypted certificates
319 // if (const auto spliceEncryptedCertificates = true) {
320 bypassValidator = true;
321 // } // else fall through to find a matching ssl_bump action (with limited info)
322 } else if (srvBio->resumingSession()) {
323 // In peek mode, the ClientHello message is forwarded to the server.
324 // If the server is resuming a previous (spliced) SSL session with
325 // the client, then probably we are here because our local SSL
326 // object does not know anything about the session being resumed.
327 //
328 // we currently splice all resumed sessions
329 // if (const auto spliceResumed = true) {
330 bypassValidator = true;
331 // } // else fall through to find a matching ssl_bump action (with limited info)
332 }
333
334 if (bypassValidator) {
335 bypassCertValidator();
336 checkForPeekAndSpliceMatched(Ssl::bumpSplice);
337 return;
338 }
32f1ca3f
AJ
339 }
340
341 // If we are in peek-and-splice mode and still we did not write to
342 // server yet, try to see if we should splice.
343 // In this case the connection can be saved.
344 // If the checklist decision is do not splice a new error will
345 // occur in the next SSL_connect call, and we will fail again.
346 // Abort on certificate validation errors to avoid splicing and
347 // thus hiding them.
348 // Abort if no certificate found probably because of malformed or
349 // unsupported server Hello message (TODO: make configurable).
d2f0c106
CT
350 // TODO: Add/use a positive "successfully validated server cert" signal
351 // instead of relying on the "![presumably_]validation_error && serverCert"
352 // signal combo.
ad23e748 353 if (!SSL_get_ex_data(session.get(), ssl_ex_index_ssl_error_detail) &&
32f1ca3f 354 (srvBio->bumpMode() == Ssl::bumpPeek || srvBio->bumpMode() == Ssl::bumpStare) && srvBio->holdWrite()) {
ad23e748
AJ
355 Security::CertPointer serverCert(SSL_get_peer_certificate(session.get()));
356 if (serverCert) {
83b053a0 357 debugs(81, 3, "hold TLS write on FD " << fd << " despite " << errorDetail);
32f1ca3f
AJ
358 checkForPeekAndSplice();
359 return;
360 }
361 }
362
363 // else call parent noteNegotiationError to produce an error page
83b053a0 364 Security::PeerConnector::noteNegotiationError(errorDetail);
32f1ca3f
AJ
365}
366
367void
368Ssl::PeekingPeerConnector::handleServerCertificate()
369{
370 if (serverCertificateHandled)
371 return;
372
373 if (ConnStateData *csd = request->clientConnectionManager.valid()) {
374 const int fd = serverConnection()->fd;
ad23e748
AJ
375 Security::SessionPointer session(fd_table[fd].ssl);
376 Security::CertPointer serverCert(SSL_get_peer_certificate(session.get()));
377 if (!serverCert)
32f1ca3f
AJ
378 return;
379
380 serverCertificateHandled = true;
381
382 // remember the server certificate for later use
383 if (Ssl::ServerBump *serverBump = csd->serverBump()) {
35b3559c 384 serverBump->serverCert = std::move(serverCert);
32f1ca3f
AJ
385 }
386 }
387}
388
389void
390Ssl::PeekingPeerConnector::serverCertificateVerified()
391{
392 if (ConnStateData *csd = request->clientConnectionManager.valid()) {
393 Security::CertPointer serverCert;
394 if(Ssl::ServerBump *serverBump = csd->serverBump())
014a9017 395 serverCert.resetAndLock(serverBump->serverCert.get());
32f1ca3f
AJ
396 else {
397 const int fd = serverConnection()->fd;
ad23e748
AJ
398 Security::SessionPointer session(fd_table[fd].ssl);
399 serverCert.resetWithoutLocking(SSL_get_peer_certificate(session.get()));
32f1ca3f 400 }
ad23e748 401 if (serverCert) {
32f1ca3f
AJ
402 csd->resetSslCommonName(Ssl::CommonHostName(serverCert.get()));
403 debugs(83, 5, "HTTPS server CN: " << csd->sslCommonName() <<
404 " bumped: " << *serverConnection());
405 }
406 }
407}
408