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 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
# frozen_string_literal: true
# rubocop:todo all
# Copyright (C) 2020 MongoDB 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.
module Net
autoload :HTTP, 'net/http'
end
module Mongo
class Socket
# OCSP endpoint verifier.
#
# After a TLS connection is established, this verifier inspects the
# certificate presented by the server, and if the certificate contains
# an OCSP URI, performs the OCSP status request to the specified URI
# (following up to 5 redirects) to verify the certificate status.
#
# @see https://ruby-doc.org/stdlib/libdoc/openssl/rdoc/OpenSSL/OCSP.html
#
# @api private
class OcspVerifier
include Loggable
# @param [ String ] host_name The host name being verified, for
# diagnostic output.
# @param [ OpenSSL::X509::Certificate ] cert The certificate presented by
# the server at host_name.
# @param [ OpenSSL::X509::Certificate ] ca_cert The CA certificate
# presented by the server or resolved locally from the server
# certificate.
# @param [ OpenSSL::X509::Store ] cert_store The certificate store to
# use for verifying OCSP response. This should be the same store as
# used in SSLContext used with the SSLSocket that we are verifying the
# certificate for. This must NOT be the CA certificate provided by
# the server (i.e. anything taken out of peer_cert) - otherwise the
# server would dictate which CA authorities the client trusts.
def initialize(host_name, cert, ca_cert, cert_store, **opts)
@host_name = host_name
@cert = cert
@ca_cert = ca_cert
@cert_store = cert_store
@options = opts
end
attr_reader :host_name
attr_reader :cert
attr_reader :ca_cert
attr_reader :cert_store
attr_reader :options
def timeout
options[:timeout] || 5
end
# @return [ Array<String> ] OCSP URIs in the specified server certificate.
def ocsp_uris
@ocsp_uris ||= begin
# https://tools.ietf.org/html/rfc3546#section-2.3
# prohibits multiple extensions with the same oid.
ext = cert.extensions.detect do |ext|
ext.oid == 'authorityInfoAccess'
end
if ext
# Our test certificates have multiple OCSP URIs.
ext.value.split("\n").select do |line|
line.start_with?('OCSP - URI:')
end.map do |line|
line.split(':', 2).last
end
else
[]
end
end
end
def cert_id
@cert_id ||= OpenSSL::OCSP::CertificateId.new(
cert,
ca_cert,
OpenSSL::Digest::SHA1.new,
)
end
def verify_with_cache
handle_exceptions do
return false if ocsp_uris.empty?
resp = OcspCache.get(cert_id)
if resp
return return_ocsp_response(resp)
end
resp, errors = do_verify
if resp
OcspCache.set(cert_id, resp)
end
return_ocsp_response(resp, errors)
end
end
# @return [ true | false ] Whether the certificate was verified.
#
# @raise [ Error::ServerCertificateRevoked ] If the certificate was
# definitively revoked.
def verify
handle_exceptions do
return false if ocsp_uris.empty?
resp, errors = do_verify
return_ocsp_response(resp, errors)
end
end
private
def do_verify
# This synchronized array contains definitive pass/fail responses
# obtained from the responders. We'll take the first one but due to
# concurrency multiple responses may be produced and queued.
@resp_queue = Queue.new
# This synchronized array contains strings, one per responder, that
# explain why each responder hasn't produced a definitive response.
# These are concatenated and logged if none of the responders produced
# a definitive respnose, or if the main thread times out waiting for
# a definitive response (in which case some of the worker threads'
# diagnostics may be logged and some may not).
@resp_errors = Queue.new
@req = OpenSSL::OCSP::Request.new
@req.add_certid(cert_id)
@req.add_nonce
@serialized_req = @req.to_der
@outstanding_requests = ocsp_uris.count
@outstanding_requests_lock = Mutex.new
threads = ocsp_uris.map do |uri|
Thread.new do
verify_one_responder(uri)
end
end
resp = begin
::Timeout.timeout(timeout) do
@resp_queue.shift
end
rescue ::Timeout::Error
nil
end
threads.map(&:kill)
threads.map(&:join)
[resp, @resp_errors]
end
def verify_one_responder(uri)
original_uri = uri
redirect_count = 0
http_response = nil
loop do
http_response = begin
uri = URI(uri)
Net::HTTP.start(uri.hostname, uri.port) do |http|
path = uri.path
if path.empty?
path = '/'
end
http.post(path, @serialized_req,
'content-type' => 'application/ocsp-request')
end
rescue IOError, SystemCallError => e
@resp_errors << "OCSP request to #{report_uri(original_uri, uri)} failed: #{e.class}: #{e}"
return false
end
code = http_response.code.to_i
if (300..399).include?(code)
redirected_uri = http_response.header['location']
uri = ::URI.join(uri, redirected_uri)
redirect_count += 1
if redirect_count > 5
@resp_errors << "OCSP request to #{report_uri(original_uri, uri)} failed: too many redirects (6)"
return false
end
next
end
if code >= 400
@resp_errors << "OCSP request to #{report_uri(original_uri, uri)} failed with HTTP status code #{http_response.code}" + report_response_body(http_response.body)
return false
end
if code != 200
# There must be a body provided with the response, if one isn't
# provided the response cannot be verified.
@resp_errors << "OCSP request to #{report_uri(original_uri, uri)} failed with unexpected HTTP status code #{http_response.code}" + report_response_body(http_response.body)
return false
end
break
end
resp = OpenSSL::OCSP::Response.new(http_response.body)
unless resp.basic
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} is #{resp.status}: #{resp.status_string}"
return false
end
resp = resp.basic
unless resp.verify([ca_cert], cert_store)
# Ruby's OpenSSL binding discards error information - see
# https://github.com/ruby/openssl/issues/395
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} failed signature verification; set `OpenSSL.debug = true` to see why"
return false
end
if @req.check_nonce(resp) == 0
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} included invalid nonce"
return false
end
resp = resp.find_response(cert_id)
unless resp
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} did not include information about the requested certificate"
return false
end
# TODO make a new class instead of patching the stdlib one?
resp.instance_variable_set('@uri', uri)
resp.instance_variable_set('@original_uri', original_uri)
class << resp
attr_reader :uri, :original_uri
end
unless resp.check_validity
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} was invalid: this_update was in the future or next_update time has passed"
return false
end
unless [
OpenSSL::OCSP::V_CERTSTATUS_GOOD,
OpenSSL::OCSP::V_CERTSTATUS_REVOKED,
].include?(resp.cert_status)
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} had a non-definitive status: #{resp.cert_status}"
return false
end
# Note this returns the redirected URI
@resp_queue << resp
rescue => exc
Utils.warn_bg_exception("Error performing OCSP verification for '#{host_name}' via '#{uri}'", exc,
logger: options[:logger],
log_prefix: options[:log_prefix],
bg_error_backtrace: options[:bg_error_backtrace],
)
false
ensure
@outstanding_requests_lock.synchronize do
@outstanding_requests -= 1
if @outstanding_requests == 0
@resp_queue << nil
end
end
end
def return_ocsp_response(resp, errors = nil)
if resp
if resp.cert_status == OpenSSL::OCSP::V_CERTSTATUS_REVOKED
raise_revoked_error(resp)
end
true
else
reasons = []
errors.length.times do
reasons << errors.shift
end
if reasons.empty?
msg = "No responses from responders: #{ocsp_uris.join(', ')} within #{timeout} seconds"
else
msg = "For responders #{ocsp_uris.join(', ')} with a timeout of #{timeout} seconds: #{reasons.join(', ')}"
end
log_warn("TLS certificate of '#{host_name}' could not be definitively verified via OCSP: #{msg}")
false
end
end
def handle_exceptions
begin
yield
rescue Error::ServerCertificateRevoked
raise
rescue => exc
Utils.warn_bg_exception(
"Error performing OCSP verification for '#{host_name}'",
exc,
**options)
false
end
end
def raise_revoked_error(resp)
if resp.uri == resp.original_uri
redirect = ''
else
redirect = " (redirected from #{resp.original_uri})"
end
raise Error::ServerCertificateRevoked, "TLS certificate of '#{host_name}' has been revoked according to '#{resp.uri}'#{redirect} for reason '#{resp.revocation_reason}' at '#{resp.revocation_time}'"
end
def report_uri(original_uri, uri)
if URI(uri) == URI(original_uri)
uri
else
"#{original_uri} (redirected to #{uri})"
end
end
def report_response_body(body)
if body
": #{body}"
else
''
end
end
end
end
end
|