net-ssh 1.1.4 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +37 -0
- data/Manifest +101 -0
- data/README.rdoc +110 -0
- data/Rakefile +26 -0
- data/{THANKS → THANKS.rdoc} +2 -5
- data/lib/net/ssh.rb +189 -57
- data/lib/net/ssh/authentication/agent.rb +175 -0
- data/lib/net/ssh/authentication/constants.rb +18 -0
- data/lib/net/ssh/authentication/key_manager.rb +166 -0
- data/lib/net/ssh/authentication/methods/abstract.rb +60 -0
- data/lib/net/ssh/authentication/methods/hostbased.rb +71 -0
- data/lib/net/ssh/authentication/methods/keyboard_interactive.rb +66 -0
- data/lib/net/ssh/authentication/methods/password.rb +39 -0
- data/lib/net/ssh/authentication/methods/publickey.rb +92 -0
- data/lib/net/ssh/authentication/pageant.rb +176 -0
- data/lib/net/ssh/authentication/session.rb +116 -0
- data/lib/net/ssh/buffer.rb +339 -0
- data/lib/net/ssh/buffered_io.rb +149 -0
- data/lib/net/ssh/config.rb +173 -0
- data/lib/net/ssh/connection/channel.rb +575 -454
- data/lib/net/ssh/connection/constants.rb +31 -45
- data/lib/net/ssh/connection/session.rb +569 -0
- data/lib/net/ssh/connection/term.rb +176 -88
- data/lib/net/ssh/errors.rb +83 -61
- data/lib/net/ssh/key_factory.rb +85 -0
- data/lib/net/ssh/known_hosts.rb +129 -0
- data/lib/net/ssh/loggable.rb +61 -0
- data/lib/net/ssh/packet.rb +102 -0
- data/lib/net/ssh/prompt.rb +93 -0
- data/lib/net/ssh/proxy/errors.rb +8 -28
- data/lib/net/ssh/proxy/http.rb +75 -107
- data/lib/net/ssh/proxy/socks4.rb +35 -48
- data/lib/net/ssh/proxy/socks5.rb +76 -108
- data/lib/net/ssh/service/forward.rb +267 -0
- data/lib/net/ssh/test.rb +89 -0
- data/lib/net/ssh/test/channel.rb +129 -0
- data/lib/net/ssh/test/extensions.rb +152 -0
- data/lib/net/ssh/test/kex.rb +44 -0
- data/lib/net/ssh/test/local_packet.rb +51 -0
- data/lib/net/ssh/test/packet.rb +81 -0
- data/lib/net/ssh/test/remote_packet.rb +38 -0
- data/lib/net/ssh/test/script.rb +157 -0
- data/lib/net/ssh/test/socket.rb +59 -0
- data/lib/net/ssh/transport/algorithms.rb +384 -0
- data/lib/net/ssh/transport/cipher_factory.rb +72 -0
- data/lib/net/ssh/transport/constants.rb +22 -58
- data/lib/net/ssh/transport/hmac.rb +31 -0
- data/lib/net/ssh/transport/hmac/abstract.rb +48 -0
- data/lib/net/ssh/transport/hmac/md5.rb +12 -0
- data/lib/net/ssh/transport/hmac/md5_96.rb +11 -0
- data/lib/net/ssh/transport/hmac/none.rb +15 -0
- data/lib/net/ssh/transport/hmac/sha1.rb +13 -0
- data/lib/net/ssh/transport/hmac/sha1_96.rb +11 -0
- data/lib/net/ssh/transport/identity_cipher.rb +40 -0
- data/lib/net/ssh/transport/kex.rb +13 -0
- data/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +208 -0
- data/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +77 -0
- data/lib/net/ssh/{util → transport}/openssl.rb +22 -40
- data/lib/net/ssh/transport/packet_stream.rb +230 -0
- data/lib/net/ssh/transport/server_version.rb +61 -0
- data/lib/net/ssh/transport/session.rb +225 -303
- data/lib/net/ssh/transport/state.rb +170 -0
- data/lib/net/ssh/verifiers/lenient.rb +30 -0
- data/lib/net/ssh/verifiers/null.rb +12 -0
- data/lib/net/ssh/verifiers/strict.rb +53 -0
- data/lib/net/ssh/version.rb +57 -26
- data/net-ssh.gemspec +54 -0
- data/setup.rb +1585 -0
- data/test/authentication/methods/common.rb +28 -0
- data/test/authentication/methods/test_abstract.rb +51 -0
- data/test/authentication/methods/test_hostbased.rb +108 -0
- data/test/authentication/methods/test_keyboard_interactive.rb +98 -0
- data/test/authentication/methods/test_password.rb +50 -0
- data/test/authentication/methods/test_publickey.rb +123 -0
- data/test/authentication/test_agent.rb +205 -0
- data/test/authentication/test_key_manager.rb +100 -0
- data/test/authentication/test_session.rb +93 -0
- data/test/common.rb +106 -0
- data/test/configs/exact_match +8 -0
- data/test/configs/wild_cards +14 -0
- data/test/connection/test_channel.rb +452 -0
- data/test/connection/test_session.rb +483 -0
- data/test/test_all.rb +6 -0
- data/test/test_buffer.rb +336 -0
- data/test/test_buffered_io.rb +63 -0
- data/test/test_config.rb +78 -0
- data/test/test_key_factory.rb +67 -0
- data/test/transport/hmac/test_md5.rb +34 -0
- data/test/transport/hmac/test_md5_96.rb +25 -0
- data/test/transport/hmac/test_none.rb +34 -0
- data/test/transport/hmac/test_sha1.rb +34 -0
- data/test/transport/hmac/test_sha1_96.rb +25 -0
- data/test/transport/kex/test_diffie_hellman_group1_sha1.rb +146 -0
- data/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +92 -0
- data/test/transport/test_algorithms.rb +302 -0
- data/test/transport/test_cipher_factory.rb +163 -0
- data/test/transport/test_hmac.rb +34 -0
- data/test/transport/test_identity_cipher.rb +40 -0
- data/test/transport/test_packet_stream.rb +433 -0
- data/test/transport/test_server_version.rb +55 -0
- data/test/transport/test_session.rb +312 -0
- data/test/transport/test_state.rb +173 -0
- metadata +102 -253
- data/ChangeLog +0 -560
- data/LICENSE +0 -7
- data/NEWS +0 -152
- data/README +0 -14
- data/bin/rb-keygen +0 -210
- data/doc/LICENSE-BSD +0 -27
- data/doc/LICENSE-GPL +0 -280
- data/doc/LICENSE-RUBY +0 -56
- data/doc/manual-html/chapter-1.html +0 -388
- data/doc/manual-html/chapter-2.html +0 -552
- data/doc/manual-html/chapter-3.html +0 -470
- data/doc/manual-html/chapter-4.html +0 -413
- data/doc/manual-html/chapter-5.html +0 -525
- data/doc/manual-html/chapter-6.html +0 -456
- data/doc/manual-html/chapter-7.html +0 -343
- data/doc/manual-html/index.html +0 -235
- data/doc/manual-html/stylesheets/manual.css +0 -270
- data/doc/manual-html/stylesheets/ruby.css +0 -17
- data/doc/manual/chapter.erb +0 -38
- data/doc/manual/example.erb +0 -18
- data/doc/manual/index.erb +0 -29
- data/doc/manual/manual.rb +0 -311
- data/doc/manual/manual.yml +0 -73
- data/doc/manual/page.erb +0 -87
- data/doc/manual/parts/0000.txt +0 -5
- data/doc/manual/parts/0001.txt +0 -3
- data/doc/manual/parts/0002.txt +0 -40
- data/doc/manual/parts/0003.txt +0 -6
- data/doc/manual/parts/0004.txt +0 -7
- data/doc/manual/parts/0005.txt +0 -1
- data/doc/manual/parts/0006.txt +0 -49
- data/doc/manual/parts/0007.txt +0 -67
- data/doc/manual/parts/0008.txt +0 -43
- data/doc/manual/parts/0009.txt +0 -14
- data/doc/manual/parts/0010.txt +0 -7
- data/doc/manual/parts/0011.txt +0 -14
- data/doc/manual/parts/0012.txt +0 -3
- data/doc/manual/parts/0013.txt +0 -20
- data/doc/manual/parts/0014.txt +0 -32
- data/doc/manual/parts/0015.txt +0 -14
- data/doc/manual/parts/0016.txt +0 -28
- data/doc/manual/parts/0017.txt +0 -50
- data/doc/manual/parts/0018.txt +0 -35
- data/doc/manual/parts/0019.txt +0 -7
- data/doc/manual/parts/0020.txt +0 -72
- data/doc/manual/parts/0021.txt +0 -50
- data/doc/manual/parts/0022.txt +0 -42
- data/doc/manual/parts/0023.txt +0 -51
- data/doc/manual/parts/0024.txt +0 -18
- data/doc/manual/parts/0025.txt +0 -18
- data/doc/manual/parts/0026.txt +0 -15
- data/doc/manual/parts/0027.txt +0 -37
- data/doc/manual/parts/0028.txt +0 -16
- data/doc/manual/parts/0029.txt +0 -1
- data/doc/manual/parts/0030.txt +0 -52
- data/doc/manual/parts/0031.txt +0 -25
- data/doc/manual/stylesheets/manual.css +0 -270
- data/doc/manual/stylesheets/ruby.css +0 -17
- data/doc/manual/tutorial.erb +0 -30
- data/examples/auth-forward.rb +0 -41
- data/examples/channel-demo.rb +0 -81
- data/examples/port-forward.rb +0 -51
- data/examples/process-demo.rb +0 -91
- data/examples/remote-net-port-forward.rb +0 -45
- data/examples/remote-port-forward.rb +0 -80
- data/examples/shell-demo.rb +0 -46
- data/examples/ssh-client.rb +0 -67
- data/examples/sync-shell-demo.rb +0 -69
- data/examples/tail-demo.rb +0 -49
- data/lib/net/ssh/connection/driver.rb +0 -446
- data/lib/net/ssh/connection/services.rb +0 -72
- data/lib/net/ssh/host-key-verifier.rb +0 -52
- data/lib/net/ssh/known-hosts.rb +0 -96
- data/lib/net/ssh/lenient-host-key-verifier.rb +0 -25
- data/lib/net/ssh/null-host-key-verifier.rb +0 -14
- data/lib/net/ssh/service/agentforward/driver.rb +0 -78
- data/lib/net/ssh/service/agentforward/services.rb +0 -41
- data/lib/net/ssh/service/forward/driver.rb +0 -319
- data/lib/net/ssh/service/forward/local-network-handler.rb +0 -71
- data/lib/net/ssh/service/forward/remote-network-handler.rb +0 -83
- data/lib/net/ssh/service/forward/services.rb +0 -76
- data/lib/net/ssh/service/process/driver.rb +0 -153
- data/lib/net/ssh/service/process/open.rb +0 -193
- data/lib/net/ssh/service/process/popen3.rb +0 -178
- data/lib/net/ssh/service/process/services.rb +0 -66
- data/lib/net/ssh/service/services.rb +0 -60
- data/lib/net/ssh/service/shell/driver.rb +0 -86
- data/lib/net/ssh/service/shell/services.rb +0 -54
- data/lib/net/ssh/service/shell/shell.rb +0 -222
- data/lib/net/ssh/service/shell/sync.rb +0 -114
- data/lib/net/ssh/session.rb +0 -305
- data/lib/net/ssh/transport/algorithm-negotiator.rb +0 -275
- data/lib/net/ssh/transport/compress/compressor.rb +0 -53
- data/lib/net/ssh/transport/compress/decompressor.rb +0 -53
- data/lib/net/ssh/transport/compress/none-compressor.rb +0 -39
- data/lib/net/ssh/transport/compress/none-decompressor.rb +0 -39
- data/lib/net/ssh/transport/compress/services.rb +0 -68
- data/lib/net/ssh/transport/compress/zlib-compressor.rb +0 -60
- data/lib/net/ssh/transport/compress/zlib-decompressor.rb +0 -52
- data/lib/net/ssh/transport/errors.rb +0 -47
- data/lib/net/ssh/transport/identity-cipher.rb +0 -61
- data/lib/net/ssh/transport/kex/dh-gex.rb +0 -106
- data/lib/net/ssh/transport/kex/dh.rb +0 -249
- data/lib/net/ssh/transport/kex/services.rb +0 -62
- data/lib/net/ssh/transport/ossl/buffer-factory.rb +0 -52
- data/lib/net/ssh/transport/ossl/buffer.rb +0 -87
- data/lib/net/ssh/transport/ossl/cipher-factory.rb +0 -98
- data/lib/net/ssh/transport/ossl/digest-factory.rb +0 -51
- data/lib/net/ssh/transport/ossl/hmac-factory.rb +0 -71
- data/lib/net/ssh/transport/ossl/hmac/hmac.rb +0 -62
- data/lib/net/ssh/transport/ossl/hmac/md5-96.rb +0 -44
- data/lib/net/ssh/transport/ossl/hmac/md5.rb +0 -46
- data/lib/net/ssh/transport/ossl/hmac/none.rb +0 -46
- data/lib/net/ssh/transport/ossl/hmac/services.rb +0 -68
- data/lib/net/ssh/transport/ossl/hmac/sha1-96.rb +0 -44
- data/lib/net/ssh/transport/ossl/hmac/sha1.rb +0 -45
- data/lib/net/ssh/transport/ossl/key-factory.rb +0 -116
- data/lib/net/ssh/transport/ossl/services.rb +0 -149
- data/lib/net/ssh/transport/packet-stream.rb +0 -236
- data/lib/net/ssh/transport/services.rb +0 -146
- data/lib/net/ssh/transport/version-negotiator.rb +0 -73
- data/lib/net/ssh/userauth/agent.rb +0 -222
- data/lib/net/ssh/userauth/constants.rb +0 -35
- data/lib/net/ssh/userauth/driver.rb +0 -183
- data/lib/net/ssh/userauth/methods/hostbased.rb +0 -119
- data/lib/net/ssh/userauth/methods/keyboard-interactive.rb +0 -104
- data/lib/net/ssh/userauth/methods/password.rb +0 -70
- data/lib/net/ssh/userauth/methods/publickey.rb +0 -137
- data/lib/net/ssh/userauth/methods/services.rb +0 -90
- data/lib/net/ssh/userauth/pageant.rb +0 -197
- data/lib/net/ssh/userauth/services.rb +0 -141
- data/lib/net/ssh/userauth/userkeys.rb +0 -258
- data/lib/net/ssh/util/buffer.rb +0 -274
- data/lib/net/ssh/util/prompter.rb +0 -73
- data/test/ALL-TESTS.rb +0 -18
- data/test/connection/tc_channel.rb +0 -136
- data/test/connection/tc_driver.rb +0 -287
- data/test/connection/tc_integration.rb +0 -87
- data/test/proxy/tc_http.rb +0 -209
- data/test/proxy/tc_socks4.rb +0 -148
- data/test/proxy/tc_socks5.rb +0 -214
- data/test/service/agentforward/tc_driver.rb +0 -138
- data/test/service/forward/tc_driver.rb +0 -289
- data/test/service/forward/tc_local_network_handler.rb +0 -123
- data/test/service/forward/tc_remote_network_handler.rb +0 -111
- data/test/service/process/tc_driver.rb +0 -79
- data/test/service/process/tc_integration.rb +0 -119
- data/test/service/process/tc_open.rb +0 -179
- data/test/service/process/tc_popen3.rb +0 -164
- data/test/tc_integration.rb +0 -80
- data/test/transport/compress/tc_none_compress.rb +0 -41
- data/test/transport/compress/tc_none_decompress.rb +0 -45
- data/test/transport/compress/tc_zlib_compress.rb +0 -61
- data/test/transport/compress/tc_zlib_decompress.rb +0 -48
- data/test/transport/kex/tc_dh.rb +0 -312
- data/test/transport/kex/tc_dh_gex.rb +0 -71
- data/test/transport/ossl/fixtures/dsa-encrypted +0 -15
- data/test/transport/ossl/fixtures/dsa-encrypted-bad +0 -15
- data/test/transport/ossl/fixtures/dsa-unencrypted +0 -12
- data/test/transport/ossl/fixtures/dsa-unencrypted-bad +0 -12
- data/test/transport/ossl/fixtures/dsa-unencrypted.pub +0 -1
- data/test/transport/ossl/fixtures/not-a-private-key +0 -4
- data/test/transport/ossl/fixtures/not-supported +0 -2
- data/test/transport/ossl/fixtures/rsa-encrypted +0 -18
- data/test/transport/ossl/fixtures/rsa-encrypted-bad +0 -18
- data/test/transport/ossl/fixtures/rsa-unencrypted +0 -15
- data/test/transport/ossl/fixtures/rsa-unencrypted-bad +0 -15
- data/test/transport/ossl/fixtures/rsa-unencrypted.pub +0 -1
- data/test/transport/ossl/hmac/tc_hmac.rb +0 -58
- data/test/transport/ossl/hmac/tc_md5.rb +0 -50
- data/test/transport/ossl/hmac/tc_md5_96.rb +0 -50
- data/test/transport/ossl/hmac/tc_none.rb +0 -50
- data/test/transport/ossl/hmac/tc_sha1.rb +0 -50
- data/test/transport/ossl/hmac/tc_sha1_96.rb +0 -50
- data/test/transport/ossl/tc_buffer.rb +0 -97
- data/test/transport/ossl/tc_buffer_factory.rb +0 -67
- data/test/transport/ossl/tc_cipher_factory.rb +0 -84
- data/test/transport/ossl/tc_digest_factory.rb +0 -39
- data/test/transport/ossl/tc_hmac_factory.rb +0 -72
- data/test/transport/ossl/tc_key_factory.rb +0 -199
- data/test/transport/tc_algorithm_negotiator.rb +0 -170
- data/test/transport/tc_identity_cipher.rb +0 -52
- data/test/transport/tc_integration.rb +0 -115
- data/test/transport/tc_packet_stream.rb +0 -184
- data/test/transport/tc_session.rb +0 -296
- data/test/transport/tc_version_negotiator.rb +0 -86
- data/test/userauth/methods/tc_hostbased.rb +0 -136
- data/test/userauth/methods/tc_password.rb +0 -89
- data/test/userauth/methods/tc_publickey.rb +0 -167
- data/test/userauth/tc_agent.rb +0 -223
- data/test/userauth/tc_driver.rb +0 -190
- data/test/userauth/tc_integration.rb +0 -97
- data/test/userauth/tc_userkeys.rb +0 -265
- data/test/util/tc_buffer.rb +0 -217
@@ -0,0 +1,129 @@
|
|
1
|
+
require 'strscan'
|
2
|
+
require 'net/ssh/buffer'
|
3
|
+
|
4
|
+
module Net; module SSH
|
5
|
+
|
6
|
+
# Searches an OpenSSH-style known-host file for a given host, and returns all
|
7
|
+
# matching keys. This is used to implement host-key verification, as well as
|
8
|
+
# to determine what key a user prefers to use for a given host.
|
9
|
+
#
|
10
|
+
# This is used internally by Net::SSH, and will never need to be used directly
|
11
|
+
# by consumers of the library.
|
12
|
+
class KnownHosts
|
13
|
+
class <<self
|
14
|
+
# Searches all known host files (see KnownHosts.hostfiles) for all keys
|
15
|
+
# of the given host. Returns an array of keys found.
|
16
|
+
def search_for(host, options={})
|
17
|
+
search_in(hostfiles(options), host)
|
18
|
+
end
|
19
|
+
|
20
|
+
# Search for all known keys for the given host, in every file given in
|
21
|
+
# the +files+ array. Returns the list of keys.
|
22
|
+
def search_in(files, host)
|
23
|
+
files.map { |file| KnownHosts.new(file).keys_for(host) }.flatten
|
24
|
+
end
|
25
|
+
|
26
|
+
# Looks in the given +options+ hash for the :user_known_hosts_file and
|
27
|
+
# :global_known_hosts_file keys, and returns an array of all known
|
28
|
+
# hosts files. If the :user_known_hosts_file key is not set, the
|
29
|
+
# default is returned (~/.ssh/known_hosts and ~/.ssh/known_hosts2). If
|
30
|
+
# :global_known_hosts_file is not set, the default is used
|
31
|
+
# (/etc/ssh/known_hosts and /etc/ssh/known_hosts2).
|
32
|
+
#
|
33
|
+
# If you only want the user known host files, you can pass :user as
|
34
|
+
# the second option.
|
35
|
+
def hostfiles(options, which=:all)
|
36
|
+
files = []
|
37
|
+
|
38
|
+
if which == :all || which == :user
|
39
|
+
files += Array(options[:user_known_hosts_file] || %w(~/.ssh/known_hosts ~/.ssh/known_hosts2))
|
40
|
+
end
|
41
|
+
|
42
|
+
if which == :all || which == :global
|
43
|
+
files += Array(options[:global_known_hosts_file] || %w(/etc/ssh/known_hosts /etc/ssh/known_hosts2))
|
44
|
+
end
|
45
|
+
|
46
|
+
return files
|
47
|
+
end
|
48
|
+
|
49
|
+
# Looks in all user known host files (see KnownHosts.hostfiles) and tries to
|
50
|
+
# add an entry for the given host and key to the first file it is able
|
51
|
+
# to.
|
52
|
+
def add(host, key, options={})
|
53
|
+
hostfiles(options, :user).each do |file|
|
54
|
+
begin
|
55
|
+
KnownHosts.new(file).add(host, key)
|
56
|
+
return
|
57
|
+
rescue SystemCallError
|
58
|
+
# try the next hostfile
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# The host-key file name that this KnownHosts instance will use to search
|
65
|
+
# for keys.
|
66
|
+
attr_reader :source
|
67
|
+
|
68
|
+
# Instantiate a new KnownHosts instance that will search the given known-hosts
|
69
|
+
# file. The path is expanded file File.expand_path.
|
70
|
+
def initialize(source)
|
71
|
+
@source = File.expand_path(source)
|
72
|
+
end
|
73
|
+
|
74
|
+
# Returns an array of all keys that are known to be associatd with the
|
75
|
+
# given host. The +host+ parameter is either the domain name or ip address
|
76
|
+
# of the host, or both (comma-separated). Additionally, if a non-standard
|
77
|
+
# port is being used, it may be specified by putting the host (or ip, or
|
78
|
+
# both) in square brackets, and appending the port outside the brackets
|
79
|
+
# after a colon. Possible formats for +host+, then, are;
|
80
|
+
#
|
81
|
+
# "net.ssh.test"
|
82
|
+
# "1.2.3.4"
|
83
|
+
# "net.ssh.test,1.2.3.4"
|
84
|
+
# "[net.ssh.test]:5555"
|
85
|
+
# "[1,2,3,4]:5555"
|
86
|
+
# "[net.ssh.test]:5555,[1.2.3.4]:5555
|
87
|
+
def keys_for(host)
|
88
|
+
keys = []
|
89
|
+
return keys unless File.readable?(source)
|
90
|
+
|
91
|
+
entries = host.split(/,/)
|
92
|
+
|
93
|
+
File.open(source) do |file|
|
94
|
+
scanner = StringScanner.new("")
|
95
|
+
file.each_line do |line|
|
96
|
+
scanner.string = line
|
97
|
+
|
98
|
+
scanner.skip(/\s*/)
|
99
|
+
next if scanner.match?(/$|#/)
|
100
|
+
|
101
|
+
hostlist = scanner.scan(/\S+/).split(/,/)
|
102
|
+
next unless entries.all? { |entry| hostlist.include?(entry) }
|
103
|
+
|
104
|
+
scanner.skip(/\s*/)
|
105
|
+
type = scanner.scan(/\S+/)
|
106
|
+
|
107
|
+
next unless %w(ssh-rsa ssh-dss).include?(type)
|
108
|
+
|
109
|
+
scanner.skip(/\s*/)
|
110
|
+
blob = scanner.rest.unpack("m*").first
|
111
|
+
keys << Net::SSH::Buffer.new(blob).read_key
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
keys
|
116
|
+
end
|
117
|
+
|
118
|
+
# Tries to append an entry to the current source file for the given host
|
119
|
+
# and key. If it is unable to (because the file is not writable, for
|
120
|
+
# instance), an exception will be raised.
|
121
|
+
def add(host, key)
|
122
|
+
File.open(source, "a") do |file|
|
123
|
+
blob = [Net::SSH::Buffer.from(:key, key).to_s].pack("m*").gsub(/\s/, "")
|
124
|
+
file.puts "#{host} #{key.ssh_type} #{blob}"
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
end
|
129
|
+
end; end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
module Net; module SSH
|
2
|
+
|
3
|
+
# A simple module to make logging easier to deal with. It assumes that the
|
4
|
+
# logger instance (if not nil) quacks like a Logger object (in Ruby's
|
5
|
+
# standard library). Although used primarily internally by Net::SSH, it
|
6
|
+
# can easily be used to add Net::SSH-like logging to your own programs.
|
7
|
+
#
|
8
|
+
# class MyClass
|
9
|
+
# include Net::SSH::Loggable
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# Net::SSH.start(...) do |ssh|
|
13
|
+
# obj = MyClass.new
|
14
|
+
# obj.logger = ssh.logger
|
15
|
+
# ...
|
16
|
+
# end
|
17
|
+
module Loggable
|
18
|
+
# The logger instance that will be used to log messages. If nil, nothing
|
19
|
+
# will be logged.
|
20
|
+
attr_accessor :logger
|
21
|
+
|
22
|
+
# Displays the result of yielding if the log level is Logger::DEBUG or
|
23
|
+
# greater.
|
24
|
+
def debug
|
25
|
+
logger.add(Logger::DEBUG, nil, facility) { yield } if logger
|
26
|
+
end
|
27
|
+
|
28
|
+
# Displays the result of yielding if the log level is Logger::INFO or
|
29
|
+
# greater.
|
30
|
+
def info
|
31
|
+
logger.add(Logger::INFO, nil, facility) { yield } if logger
|
32
|
+
end
|
33
|
+
|
34
|
+
# Displays the result of yielding if the log level is Logger::WARN or
|
35
|
+
# greater. (Called lwarn to avoid shadowing with Kernel#warn.)
|
36
|
+
def lwarn
|
37
|
+
logger.add(Logger::WARN, nil, facility) { yield } if logger
|
38
|
+
end
|
39
|
+
|
40
|
+
# Displays the result of yielding if the log level is Logger:ERROR or
|
41
|
+
# greater.
|
42
|
+
def error
|
43
|
+
logger.add(Logger::ERROR, nil, facility) { yield } if logger
|
44
|
+
end
|
45
|
+
|
46
|
+
# Displays the result of yielding if the log level is Logger::FATAL or
|
47
|
+
# greater.
|
48
|
+
def fatal
|
49
|
+
logger.add(Logger::FATAL, nil, facility) { yield } if logger
|
50
|
+
end
|
51
|
+
|
52
|
+
private
|
53
|
+
|
54
|
+
# Sets the "facility" value, used for reporting where a log message
|
55
|
+
# originates. It defaults to the name of class with the object_id
|
56
|
+
# appended.
|
57
|
+
def facility
|
58
|
+
@facility ||= self.class.name.gsub(/::/, ".").gsub(/([a-z])([A-Z])/, "\\1_\\2").downcase + "[%x]" % object_id
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end; end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
require 'net/ssh/buffer'
|
2
|
+
require 'net/ssh/transport/constants'
|
3
|
+
require 'net/ssh/authentication/constants'
|
4
|
+
require 'net/ssh/connection/constants'
|
5
|
+
|
6
|
+
module Net; module SSH
|
7
|
+
|
8
|
+
# A specialization of Buffer that knows the format of certain common
|
9
|
+
# packet types. It auto-parses those packet types, and allows them to
|
10
|
+
# be accessed via the #[] accessor.
|
11
|
+
#
|
12
|
+
# data = some_channel_request_packet
|
13
|
+
# packet = Net::SSH::Packet.new(data)
|
14
|
+
#
|
15
|
+
# p packet.type #-> 98 (CHANNEL_REQUEST)
|
16
|
+
# p packet[:request]
|
17
|
+
# p packet[:want_reply]
|
18
|
+
#
|
19
|
+
# This is used exclusively internally by Net::SSH, and unless you're doing
|
20
|
+
# protocol-level manipulation or are extending Net::SSH in some way, you'll
|
21
|
+
# never need to use this class directly.
|
22
|
+
class Packet < Buffer
|
23
|
+
@@types = {}
|
24
|
+
|
25
|
+
# Register a new packet type that should be recognized and auto-parsed by
|
26
|
+
# Net::SSH::Packet. Note that any packet type that is not preregistered
|
27
|
+
# will not be autoparsed.
|
28
|
+
#
|
29
|
+
# The +pairs+ parameter must be either empty, or an array of two-element
|
30
|
+
# tuples, where the first element of each tuple is the name of the field,
|
31
|
+
# and the second is the type.
|
32
|
+
#
|
33
|
+
# register DISCONNECT, [:reason_code, :long], [:description, :string], [:language, :string]
|
34
|
+
def self.register(type, *pairs)
|
35
|
+
@@types[type] = pairs
|
36
|
+
end
|
37
|
+
|
38
|
+
include Transport::Constants, Authentication::Constants, Connection::Constants
|
39
|
+
|
40
|
+
#--
|
41
|
+
# These are the recognized packet types. All other packet types will be
|
42
|
+
# accepted, but not auto-parsed, requiring the client to parse the
|
43
|
+
# fields using the methods provided by Net::SSH::Buffer.
|
44
|
+
#++
|
45
|
+
|
46
|
+
register DISCONNECT, [:reason_code, :long], [:description, :string], [:language, :string]
|
47
|
+
register IGNORE, [:data, :string]
|
48
|
+
register UNIMPLEMENTED, [:number, :long]
|
49
|
+
register DEBUG, [:always_display, :bool], [:message, :string], [:language, :string]
|
50
|
+
register SERVICE_ACCEPT, [:service_name, :string]
|
51
|
+
register USERAUTH_BANNER, [:message, :string], [:language, :string]
|
52
|
+
register USERAUTH_FAILURE, [:authentications, :string], [:partial_success, :bool]
|
53
|
+
register GLOBAL_REQUEST, [:request_type, :string], [:want_reply, :bool], [:request_data, :buffer]
|
54
|
+
register CHANNEL_OPEN, [:channel_type, :string], [:remote_id, :long], [:window_size, :long], [:packet_size, :long]
|
55
|
+
register CHANNEL_OPEN_CONFIRMATION, [:local_id, :long], [:remote_id, :long], [:window_size, :long], [:packet_size, :long]
|
56
|
+
register CHANNEL_OPEN_FAILURE, [:local_id, :long], [:reason_code, :long], [:description, :string], [:language, :string]
|
57
|
+
register CHANNEL_WINDOW_ADJUST, [:local_id, :long], [:extra_bytes, :long]
|
58
|
+
register CHANNEL_DATA, [:local_id, :long], [:data, :string]
|
59
|
+
register CHANNEL_EXTENDED_DATA, [:local_id, :long], [:data_type, :long], [:data, :string]
|
60
|
+
register CHANNEL_EOF, [:local_id, :long]
|
61
|
+
register CHANNEL_CLOSE, [:local_id, :long]
|
62
|
+
register CHANNEL_REQUEST, [:local_id, :long], [:request, :string], [:want_reply, :bool], [:request_data, :buffer]
|
63
|
+
register CHANNEL_SUCCESS, [:local_id, :long]
|
64
|
+
register CHANNEL_FAILURE, [:local_id, :long]
|
65
|
+
|
66
|
+
# The (integer) type of this packet.
|
67
|
+
attr_reader :type
|
68
|
+
|
69
|
+
# Create a new packet from the given payload. This will automatically
|
70
|
+
# parse the packet if it is one that has been previously registered with
|
71
|
+
# Packet.register; otherwise, the packet will need to be manually parsed
|
72
|
+
# using the methods provided in the Net::SSH::Buffer superclass.
|
73
|
+
def initialize(payload)
|
74
|
+
@named_elements = {}
|
75
|
+
super
|
76
|
+
@type = read_byte
|
77
|
+
instantiate!
|
78
|
+
end
|
79
|
+
|
80
|
+
# Access one of the auto-parsed fields by name. Raises an error if no
|
81
|
+
# element by the given name exists.
|
82
|
+
def [](name)
|
83
|
+
name = name.to_sym
|
84
|
+
raise ArgumentError, "no such element #{name}" unless @named_elements.key?(name)
|
85
|
+
@named_elements[name]
|
86
|
+
end
|
87
|
+
|
88
|
+
private
|
89
|
+
|
90
|
+
# Parse the packet's contents and assign the named elements, as described
|
91
|
+
# by the registered format for the packet.
|
92
|
+
def instantiate!
|
93
|
+
(@@types[type] || []).each do |name, datatype|
|
94
|
+
@named_elements[name.to_sym] = if datatype == :buffer
|
95
|
+
remainder_as_buffer
|
96
|
+
else
|
97
|
+
send("read_#{datatype}")
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end; end
|
@@ -0,0 +1,93 @@
|
|
1
|
+
module Net; module SSH
|
2
|
+
|
3
|
+
# A basic prompt module that can be mixed into other objects. If HighLine is
|
4
|
+
# installed, it will be used to display prompts and read input from the
|
5
|
+
# user. Otherwise, the termios library will be used. If neither HighLine
|
6
|
+
# nor termios is installed, a simple prompt that echos text in the clear
|
7
|
+
# will be used.
|
8
|
+
|
9
|
+
module PromptMethods
|
10
|
+
|
11
|
+
# Defines the prompt method to use if the Highline library is installed.
|
12
|
+
module Highline
|
13
|
+
# Uses Highline#ask to present a prompt and accept input. If +echo+ is
|
14
|
+
# +false+, the characters entered by the user will not be echoed to the
|
15
|
+
# screen.
|
16
|
+
def prompt(prompt, echo=true)
|
17
|
+
@highline ||= ::HighLine.new
|
18
|
+
@highline.ask(prompt + " ") { |q| q.echo = echo }
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# Defines the prompt method to use if the Termios library is installed.
|
23
|
+
module Termios
|
24
|
+
# Displays the prompt to $stdout. If +echo+ is false, the Termios
|
25
|
+
# library will be used to disable keystroke echoing for the duration of
|
26
|
+
# this method.
|
27
|
+
def prompt(prompt, echo=true)
|
28
|
+
$stdout.print(prompt)
|
29
|
+
$stdout.flush
|
30
|
+
|
31
|
+
set_echo(false) unless echo
|
32
|
+
$stdin.gets.chomp
|
33
|
+
ensure
|
34
|
+
if !echo
|
35
|
+
set_echo(true)
|
36
|
+
$stdout.puts
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
private
|
41
|
+
|
42
|
+
# Enables or disables keystroke echoing using the Termios library.
|
43
|
+
def set_echo(enable)
|
44
|
+
term = ::Termios.getattr($stdin)
|
45
|
+
|
46
|
+
if enable
|
47
|
+
term.c_lflag |= (::Termios::ECHO | ::Termios::ICANON)
|
48
|
+
else
|
49
|
+
term.c_lflag &= ~::Termios::ECHO
|
50
|
+
end
|
51
|
+
|
52
|
+
::Termios.setattr($stdin, ::Termios::TCSANOW, term)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
# Defines the prompt method to use when neither Highline nor Termios are
|
57
|
+
# installed.
|
58
|
+
module Clear
|
59
|
+
# Displays the prompt to $stdout and pulls the response from $stdin.
|
60
|
+
# Text is always echoed in the clear, regardless of the +echo+ setting.
|
61
|
+
# The first time a prompt is given and +echo+ is false, a warning will
|
62
|
+
# be written to $stderr recommending that either Highline or Termios
|
63
|
+
# be installed.
|
64
|
+
def prompt(prompt, echo=true)
|
65
|
+
@seen_warning ||= false
|
66
|
+
if !echo && !@seen_warning
|
67
|
+
$stderr.puts "Text will be echoed in the clear. Please install the HighLine or Termios libraries to suppress echoed text."
|
68
|
+
@seen_warning = true
|
69
|
+
end
|
70
|
+
|
71
|
+
$stdout.print(prompt)
|
72
|
+
$stdout.flush
|
73
|
+
$stdin.gets.chomp
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
# Try to load Highline and Termios in turn, selecting the corresponding
|
79
|
+
# PromptMethods module to use. If neither are available, choose PromptMethods::Clear.
|
80
|
+
Prompt = begin
|
81
|
+
require 'highline'
|
82
|
+
HighLine.track_eof = false
|
83
|
+
PromptMethods::Highline
|
84
|
+
rescue LoadError
|
85
|
+
begin
|
86
|
+
require 'termios'
|
87
|
+
PromptMethods::Termios
|
88
|
+
rescue LoadError
|
89
|
+
PromptMethods::Clear
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
end; end
|
data/lib/net/ssh/proxy/errors.rb
CHANGED
@@ -1,34 +1,14 @@
|
|
1
|
-
#--
|
2
|
-
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
|
-
# All rights reserved.
|
5
|
-
#
|
6
|
-
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
7
|
-
# library for Ruby. This file (and the library as a whole) may be used only as
|
8
|
-
# allowed by either the BSD license, or the Ruby license (or, by association
|
9
|
-
# with the Ruby license, the GPL). See the "doc" subdirectory of the Net::SSH
|
10
|
-
# distribution for the texts of these licenses.
|
11
|
-
# -----------------------------------------------------------------------------
|
12
|
-
# net-ssh website : http://net-ssh.rubyforge.org
|
13
|
-
# project website: http://rubyforge.org/projects/net-ssh
|
14
|
-
# =============================================================================
|
15
|
-
#++
|
16
|
-
|
17
1
|
require 'net/ssh/errors'
|
18
2
|
|
19
|
-
module Net
|
20
|
-
module SSH
|
21
|
-
module Proxy
|
3
|
+
module Net; module SSH; module Proxy
|
22
4
|
|
23
|
-
|
24
|
-
|
5
|
+
# A general exception class for all Proxy errors.
|
6
|
+
class Error < Net::SSH::Exception; end
|
25
7
|
|
26
|
-
|
27
|
-
|
8
|
+
# Used for reporting proxy connection errors.
|
9
|
+
class ConnectError < Error; end
|
28
10
|
|
29
|
-
|
30
|
-
|
11
|
+
# Used when the server doesn't recognize the user's credentials.
|
12
|
+
class UnauthorizedError < Error; end
|
31
13
|
|
32
|
-
|
33
|
-
end
|
34
|
-
end
|
14
|
+
end; end; end
|
data/lib/net/ssh/proxy/http.rb
CHANGED
@@ -1,126 +1,94 @@
|
|
1
|
-
#--
|
2
|
-
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
|
-
# All rights reserved.
|
5
|
-
#
|
6
|
-
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
7
|
-
# library for Ruby. This file (and the library as a whole) may be used only as
|
8
|
-
# allowed by either the BSD license, or the Ruby license (or, by association
|
9
|
-
# with the Ruby license, the GPL). See the "doc" subdirectory of the Net::SSH
|
10
|
-
# distribution for the texts of these licenses.
|
11
|
-
# -----------------------------------------------------------------------------
|
12
|
-
# net-ssh website : http://net-ssh.rubyforge.org
|
13
|
-
# project website: http://rubyforge.org/projects/net-ssh
|
14
|
-
# =============================================================================
|
15
|
-
#++
|
16
|
-
|
17
1
|
require 'socket'
|
18
|
-
require 'base64'
|
19
2
|
require 'net/ssh/proxy/errors'
|
20
3
|
|
21
|
-
module Net
|
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
|
-
when "Basic"
|
66
|
-
credentials =
|
67
|
-
Base64.encode64( "#{user}:#{passwd}" ).gsub( /\n/, "" )
|
68
|
-
else
|
69
|
-
raise NotImplementedError,
|
70
|
-
"authorization scheme #{scheme.inspect} is not supported"
|
71
|
-
end
|
4
|
+
module Net; module SSH; module Proxy
|
5
|
+
|
6
|
+
# An implementation of an HTTP proxy. To use it, instantiate it, then
|
7
|
+
# pass the instantiated object via the :proxy key to Net::SSH.start:
|
8
|
+
#
|
9
|
+
# require 'net/ssh/proxy/http'
|
10
|
+
#
|
11
|
+
# proxy = Net::SSH::Proxy::HTTP.new('proxy.host', proxy_port)
|
12
|
+
# Net::SSH.start('host', 'user', :proxy => proxy) do |ssh|
|
13
|
+
# ...
|
14
|
+
# end
|
15
|
+
#
|
16
|
+
# If the proxy requires authentication, you can pass :user and :password
|
17
|
+
# to the proxy's constructor:
|
18
|
+
#
|
19
|
+
# proxy = Net::SSH::Proxy::HTTP.new('proxy.host', proxy_port,
|
20
|
+
# :user => "user", :password => "password")
|
21
|
+
#
|
22
|
+
# Note that HTTP digest authentication is not supported; Basic only at
|
23
|
+
# this point.
|
24
|
+
class HTTP
|
25
|
+
|
26
|
+
# The hostname or IP address of the HTTP proxy.
|
27
|
+
attr_reader :proxy_host
|
28
|
+
|
29
|
+
# The port number of the proxy.
|
30
|
+
attr_reader :proxy_port
|
31
|
+
|
32
|
+
# The map of additional options that were given to the object at
|
33
|
+
# initialization.
|
34
|
+
attr_reader :options
|
35
|
+
|
36
|
+
# Create a new socket factory that tunnels via the given host and
|
37
|
+
# port. The +options+ parameter is a hash of additional settings that
|
38
|
+
# can be used to tweak this proxy connection. Specifically, the following
|
39
|
+
# options are supported:
|
40
|
+
#
|
41
|
+
# * :user => the user name to use when authenticating to the proxy
|
42
|
+
# * :password => the password to use when authenticating
|
43
|
+
def initialize(proxy_host, proxy_port=80, options={})
|
44
|
+
@proxy_host = proxy_host
|
45
|
+
@proxy_port = proxy_port
|
46
|
+
@options = options
|
47
|
+
end
|
72
48
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
49
|
+
# Return a new socket connected to the given host and port via the
|
50
|
+
# proxy that was requested when the socket factory was instantiated.
|
51
|
+
def open(host, port)
|
52
|
+
socket = TCPSocket.new(proxy_host, proxy_port)
|
53
|
+
socket.write "CONNECT #{host}:#{port} HTTP/1.0\r\n"
|
77
54
|
|
78
|
-
|
55
|
+
if options[:user]
|
56
|
+
credentials = ["#{options[:user]}:#{options[:password]}"].pack("m*").gsub(/\s/, "")
|
57
|
+
socket.write "Proxy-Authorization: Basic #{credentials}\r\n"
|
58
|
+
end
|
79
59
|
|
80
|
-
|
60
|
+
socket.write "\r\n"
|
81
61
|
|
82
|
-
|
83
|
-
end
|
62
|
+
resp = parse_response(socket)
|
84
63
|
|
85
|
-
|
86
|
-
version, code, reason = socket.gets.chomp.split( / /, 3 )
|
87
|
-
headers = {}
|
64
|
+
return socket if resp[:code] == 200
|
88
65
|
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
end
|
66
|
+
socket.close
|
67
|
+
raise ConnectError, resp.inspect
|
68
|
+
end
|
93
69
|
|
94
|
-
|
95
|
-
body = socket.read( headers[ "Content-Length" ].to_i )
|
96
|
-
end
|
70
|
+
private
|
97
71
|
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
:headers => headers,
|
102
|
-
:body => body }
|
103
|
-
end
|
104
|
-
private :parse_response
|
72
|
+
def parse_response(socket)
|
73
|
+
version, code, reason = socket.gets.chomp.split(/ /, 3)
|
74
|
+
headers = {}
|
105
75
|
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
return ENV['CONNECT_USER'] if ENV['CONNECT_USER']
|
110
|
-
return nil
|
76
|
+
while (line = socket.gets.chomp) != ""
|
77
|
+
name, value = line.split(/:/, 2)
|
78
|
+
headers[name.strip] = value.strip
|
111
79
|
end
|
112
|
-
private :proxy_user
|
113
80
|
|
114
|
-
|
115
|
-
|
116
|
-
return ENV['HTTP_PROXY_PASSWORD'] if ENV['HTTP_PROXY_PASSWORD']
|
117
|
-
return ENV['CONNECT_PASSWORD'] if ENV['CONNECT_PASSWORD']
|
118
|
-
return ""
|
81
|
+
if headers["Content-Length"]
|
82
|
+
body = socket.read(headers["Content-Length"].to_i)
|
119
83
|
end
|
120
|
-
private :proxy_password
|
121
84
|
|
85
|
+
return { :version => version,
|
86
|
+
:code => code.to_i,
|
87
|
+
:reason => reason,
|
88
|
+
:headers => headers,
|
89
|
+
:body => body }
|
122
90
|
end
|
123
91
|
|
124
|
-
end
|
125
92
|
end
|
126
|
-
|
93
|
+
|
94
|
+
end; end; end
|