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
|
# encoding: utf-8
#
# Author:: Fletcher Nichol (<fnichol@nichol.ca>)
# Author:: Dominik Richter (<dominik.richter@gmail.com>)
# Author:: Christoph Hartmann (<chris@lollyrock.com>)
#
# Copyright (C) 2014, Fletcher Nichol
#
# 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.
require "net/ssh"
require "net/scp"
require_relative "../errors"
module Train::Transports
# Wrapped exception for any internally raised SSH-related errors.
#
# @author Fletcher Nichol <fnichol@nichol.ca>
class SSHFailed < Train::TransportError; end
class SSHPTYFailed < Train::TransportError; end
# A Transport which uses the SSH protocol to execute commands and transfer
# files.
#
# @author Fletcher Nichol <fnichol@nichol.ca>
class SSH < Train.plugin(1) # rubocop:disable Metrics/ClassLength
name "ssh"
require_relative "ssh_connection"
require_relative "cisco_ios_connection"
# add options for submodules
include_options Train::Extras::CommandWrapper
# common target configuration
option :host, required: true
option :port, default: 22, required: true
option :user, default: "root", required: true
option :key_files, default: nil
option :password, default: nil
# additional ssh options
option :keepalive, default: true
option :keepalive_interval, default: 60
option :connection_timeout, default: 15
option :connection_retries, default: 5
option :connection_retry_sleep, default: 1
option :max_wait_until_ready, default: 600
option :compression, default: false
option :pty, default: false
option :proxy_command, default: nil
option :bastion_host, default: nil
option :bastion_user, default: "root"
option :bastion_port, default: 22
option :non_interactive, default: false
option :verify_host_key, default: false
option :compression_level do |opts|
# on nil or false: set compression level to 0
opts[:compression] ? 6 : 0
end
# (see Base#connection)
def connection(state = {}, &block)
opts = merge_options(options, state || {})
validate_options(opts)
conn_opts = connection_options(opts)
if defined?(@connection) && @connection_options == conn_opts
reuse_connection(&block)
else
create_new_connection(conn_opts, &block)
end
end
private
def validate_options(options)
super(options)
key_files = Array(options[:key_files])
options[:auth_methods] ||= ["none"]
unless key_files.empty?
options[:auth_methods].push("publickey")
options[:keys_only] = true if options[:password].nil?
options[:key_files] = key_files
end
unless options[:password].nil?
options[:auth_methods].push("password", "keyboard-interactive")
end
if options[:auth_methods] == ["none"]
if ssh_known_identities.empty?
raise Train::ClientError.new(
"Your SSH Agent has no keys added, and you have not specified a password or a key file",
:no_ssh_password_or_key_available
)
else
logger.debug("[SSH] Using Agent keys as no password or key file have been specified")
options[:auth_methods].push("publickey")
end
end
if options[:pty]
logger.warn("[SSH] PTY requested: stderr will be merged into stdout")
end
if [options[:proxy_command], options[:bastion_host]].all? { |type| !type.nil? }
raise Train::ClientError, "Only one of proxy_command or bastion_host needs to be specified"
end
super
self
end
# Creates an SSH Authentication KeyManager instance and saves it for
# potential future reuse.
#
# @return [Hash] hash of SSH Known Identities
# @api private
def ssh_known_identities
# Force KeyManager to load the key(s)
@manager ||= Net::SSH::Authentication::KeyManager.new(nil).each_identity {}
@manager.known_identities
end
# Builds the hash of options needed by the Connection object on
# construction.
#
# @param opts [Hash] merged configuration and mutable state data
# @return [Hash] hash of connection options
# @api private
def connection_options(opts)
connection_options = {
logger: logger,
user_known_hosts_file: "/dev/null",
hostname: opts[:host],
port: opts[:port],
username: opts[:user],
compression: opts[:compression],
compression_level: opts[:compression_level],
keepalive: opts[:keepalive],
keepalive_interval: opts[:keepalive_interval],
timeout: opts[:connection_timeout],
connection_retries: opts[:connection_retries],
connection_retry_sleep: opts[:connection_retry_sleep],
max_wait_until_ready: opts[:max_wait_until_ready],
auth_methods: opts[:auth_methods],
keys_only: opts[:keys_only],
keys: opts[:key_files],
password: opts[:password],
forward_agent: opts[:forward_agent],
proxy_command: opts[:proxy_command],
bastion_host: opts[:bastion_host],
bastion_user: opts[:bastion_user],
bastion_port: opts[:bastion_port],
non_interactive: opts[:non_interactive],
transport_options: opts,
}
# disable host key verification. The hash key and value to use
# depends on the version of net-ssh in use.
connection_options[verify_host_key_option] = verify_host_key_value(opts[:verify_host_key])
connection_options
end
#
# Returns the correct host-key-verification option key to use depending
# on what version of net-ssh is in use. In net-ssh <= 4.1, the supported
# parameter is `paranoid` but in 4.2, it became `verify_host_key`
#
# `verify_host_key` does not work in <= 4.1, and `paranoid` throws
# deprecation warnings in >= 4.2.
#
# While the "right thing" to do would be to pin train's dependency on
# net-ssh to ~> 4.2, this will prevent InSpec from being used in
# Chef v12 because of it pinning to a v3 of net-ssh.
#
def verify_host_key_option
current_net_ssh = Net::SSH::Version::CURRENT
new_option_version = Net::SSH::Version[4, 2, 0]
current_net_ssh >= new_option_version ? :verify_host_key : :paranoid
end
# Likewise, version <5 accepted false; 5+ requires :never or will
# issue a deprecation warning. This method allows a lot of common
# things through.
def verify_host_key_value(given)
current_net_ssh = Net::SSH::Version::CURRENT
new_value_version = Net::SSH::Version[5, 0, 0]
if current_net_ssh >= new_value_version
# 5.0+ style
{
# It's not a boolean anymore.
"true" => :always,
"false" => :never,
true => :always,
false => :never,
# May be correct value, but strings from JSON config
"always" => :always,
"never" => :never,
nil => :never,
}.fetch(given, given)
else
# up to 4.2 style
{
"true" => true,
"false" => false,
nil => false,
}.fetch(given, given)
end
end
# Creates a new SSH Connection instance and save it for potential future
# reuse.
#
# @param options [Hash] conneciton options
# @return [Ssh::Connection] an SSH Connection instance
# @api private
def create_new_connection(options, &block)
if defined?(@connection)
logger.debug("[SSH] shutting previous connection #{@connection}")
@connection.close
end
@connection_options = options
conn = Connection.new(options, &block)
# Cisco IOS requires a special implementation of `Net:SSH`. This uses the
# SSH transport to identify the platform, but then replaces SSHConnection
# with a CiscoIOSConnection in order to behave as expected for the user.
if defined?(conn.platform.cisco_ios?) && conn.platform.cisco_ios?
ios_options = {}
ios_options[:host] = @options[:host]
ios_options[:user] = @options[:user]
# The enable password is used to elevate privileges on Cisco devices
# We will also support the sudo password field for the same purpose
# for the interim. # TODO
ios_options[:enable_password] = @options[:enable_password] || @options[:sudo_password]
ios_options[:logger] = @options[:logger]
ios_options.merge!(@connection_options)
conn = CiscoIOSConnection.new(ios_options)
end
@connection = conn unless conn.nil?
end
# Return the last saved SSH connection instance.
#
# @return [Ssh::Connection] an SSH Connection instance
# @api private
def reuse_connection
logger.debug("[SSH] reusing existing connection #{@connection}")
yield @connection if block_given?
@connection
end
end
end
|