class Chef::Knife::SslCheck

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/chef/knife/ssl_check.rb, line 36
def initialize(*args)
  @host = nil
  @verify_peer_socket = nil
  @ssl_policy = HTTP::DefaultSSLPolicy
  super
end

Public Instance Methods

configuration() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 194
def configuration
  Chef::Config
end
debug_chef_ssl_config() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 187
def debug_chef_ssl_config
  ui.err "Chef SSL Configuration:"
  ui.err "* ssl_ca_path: #{configuration.ssl_ca_path.inspect}"
  ui.err "* ssl_ca_file: #{configuration.ssl_ca_file.inspect}"
  ui.err "* trusted_certs_dir: #{configuration.trusted_certs_dir.inspect}"
end
debug_invalid_cert() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 130
      def debug_invalid_cert
        noverify_socket.connect
        issuer_info = noverify_socket.peer_cert.issuer
        ui.msg("Certificate issuer data: #{issuer_info}")

        ui.msg("\n#{ui.color("Configuration Info:", :bold)}\n\n")
        debug_ssl_settings
        debug_chef_ssl_config

        ui.err("
#{ui.color("TO FIX THIS ERROR:", :bold)}

If the server you are connecting to uses a self-signed certificate, you must
configure chef to trust that server's certificate.

By default, the certificate is stored in the following location on the host
where your chef-server runs:

  /var/opt/chef-server/nginx/ca/SERVER_HOSTNAME.crt

Copy that file to you trusted_certs_dir (currently: #{configuration.trusted_certs_dir})
using SSH/SCP or some other secure method, then re-run this command to confirm
that the server's certificate is now trusted.

")
      end
debug_invalid_host() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 158
      def debug_invalid_host
        noverify_socket.connect
        subject = noverify_socket.peer_cert.subject
        cn_field_tuple = subject.to_a.find {|field| field[0] == "CN" }
        cn = cn_field_tuple[1]

        ui.error("You are attempting to connect to:   '#{host}'")
        ui.error("The server's certificate belongs to '#{cn}'")
        ui.err("
#{ui.color("TO FIX THIS ERROR:", :bold)}

The solution for this issue depends on your networking configuration. If you
are able to connect to this server using the hostname #{cn}
instead of #{host}, then you can resolve this issue by updating chef_server_url
in your configuration file.

If you are not able to connect to the server using the hostname #{cn}
you will have to update the certificate on the server to use the correct hostname.
")
      end
debug_ssl_settings() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 180
def debug_ssl_settings
  ui.err "OpenSSL Configuration:"
  ui.err "* Version: #{OpenSSL::OPENSSL_VERSION}"
  ui.err "* Certificate file: #{OpenSSL::X509::DEFAULT_CERT_FILE}"
  ui.err "* Certificate directory: #{OpenSSL::X509::DEFAULT_CERT_DIR}"
end
given_uri() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 50
def given_uri
  (name_args[0] or Chef::Config.chef_server_url)
end
host() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 54
def host
  uri.host
end
invalid_uri!() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 70
def invalid_uri!
  ui.error("Given URI: `#{given_uri}' is invalid")
  show_usage
  exit 1
end
noverify_peer_ssl_context() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 100
def noverify_peer_ssl_context
  @noverify_peer_ssl_context ||= begin
    noverify_peer_context = OpenSSL::SSL::SSLContext.new
    @ssl_policy.apply_to(noverify_peer_context)
    noverify_peer_context.verify_mode = OpenSSL::SSL::VERIFY_NONE
    noverify_peer_context
  end
end
noverify_socket() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 93
def noverify_socket
  @noverify_socket ||= begin
    tcp_connection = TCPSocket.new(host, port)
    OpenSSL::SSL::SSLSocket.new(tcp_connection, noverify_peer_ssl_context)
  end
end
port() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 58
def port
  uri.port
end
run() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 198
def run
  validate_uri
  if verify_cert && verify_cert_host
    ui.msg "Successfully verified certificates from `#{host}'"
  else
    exit 1
  end
end
uri() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 43
def uri
  @uri ||= begin
    Chef::Log.debug("Checking SSL cert on #{given_uri}")
    URI.parse(given_uri)
  end
end
validate_uri() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 62
def validate_uri
  unless host && port
    invalid_uri!
  end
rescue URI::Error
  invalid_uri!
end
verify_cert() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 109
def verify_cert
  ui.msg("Connecting to host #{host}:#{port}")
  verify_peer_socket.connect
  true
rescue OpenSSL::SSL::SSLError => e
  ui.error "The SSL certificate of #{host} could not be verified"
  Chef::Log.debug e.message
  debug_invalid_cert
  false
end
verify_cert_host() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 120
def verify_cert_host
  verify_peer_socket.post_connection_check(host)
  true
rescue OpenSSL::SSL::SSLError => e
  ui.error "The SSL cert is signed by a trusted authority but is not valid for the given hostname"
  Chef::Log.debug(e)
  debug_invalid_host
  false
end
verify_peer_socket() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 77
def verify_peer_socket
  @verify_peer_socket ||= begin
    tcp_connection = TCPSocket.new(host, port)
    OpenSSL::SSL::SSLSocket.new(tcp_connection, verify_peer_ssl_context)
  end
end
verify_peer_ssl_context() click to toggle source
# File lib/chef/knife/ssl_check.rb, line 84
def verify_peer_ssl_context
  @verify_peer_ssl_context ||= begin
    verify_peer_context = OpenSSL::SSL::SSLContext.new
    @ssl_policy.apply_to(verify_peer_context)
    verify_peer_context.verify_mode = OpenSSL::SSL::VERIFY_PEER
    verify_peer_context
  end
end