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
@@ -1,90 +1,178 @@
|
|
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
|
-
module Net
|
18
|
-
module SSH
|
19
|
-
module Connection
|
1
|
+
module Net; module SSH; module Connection
|
20
2
|
|
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
|
-
|
3
|
+
# These constants are used when requesting a pseudo-terminal (via
|
4
|
+
# Net::SSH::Connection::Channel#request_pty). The descriptions for each are
|
5
|
+
# taken directly from RFC 4254 ("The Secure Shell (SSH) Connection Protocol"),
|
6
|
+
# http://tools.ietf.org/html/rfc4254.
|
7
|
+
module Term
|
8
|
+
# Interrupt character; 255 if none. Similarly for the other characters.
|
9
|
+
# Not all of these characters are supported on all systems.
|
10
|
+
VINTR = 1
|
11
|
+
|
12
|
+
# The quit character (sends SIGQUIT signal on POSIX systems).
|
13
|
+
VQUIT = 2
|
14
|
+
|
15
|
+
# Erase the character to left of the cursor.
|
16
|
+
VERASE = 3
|
17
|
+
|
18
|
+
# Kill the current input line.
|
19
|
+
VKILL = 4
|
20
|
+
|
21
|
+
# End-of-file character (sends EOF from the terminal).
|
22
|
+
VEOF = 5
|
23
|
+
|
24
|
+
# End-of-line character in addition to carriage return and/or linefeed.
|
25
|
+
VEOL = 6
|
26
|
+
|
27
|
+
# Additional end-of-line character.
|
28
|
+
VEOL2 = 7
|
29
|
+
|
30
|
+
# Continues paused output (normally control-Q).
|
31
|
+
VSTART = 8
|
32
|
+
|
33
|
+
# Pauses output (normally control-S).
|
34
|
+
VSTOP = 9
|
35
|
+
|
36
|
+
# Suspends the current program.
|
37
|
+
VSUSP = 10
|
38
|
+
|
39
|
+
# Another suspend character.
|
40
|
+
VDSUSP = 11
|
41
|
+
|
42
|
+
# Reprints the current input line.
|
43
|
+
VREPRINT = 12
|
44
|
+
|
45
|
+
# Erases a word left of cursor.
|
46
|
+
VWERASE = 13
|
47
|
+
|
48
|
+
# Enter the next character typed literally, even if it is a special
|
49
|
+
# character.
|
50
|
+
VLNEXT = 14
|
51
|
+
|
52
|
+
# Character to flush output.
|
53
|
+
VFLUSH = 15
|
54
|
+
|
55
|
+
# Switch to a different shell layer.
|
56
|
+
VSWITCH = 16
|
57
|
+
|
58
|
+
# Prints system status line (load, command, pid, etc).
|
59
|
+
VSTATUS = 17
|
60
|
+
|
61
|
+
# Toggles the flushing of terminal output.
|
62
|
+
VDISCARD = 18
|
63
|
+
|
64
|
+
# The ignore parity flag. The parameter SHOULD be 0 if this flag is FALSE,
|
65
|
+
# and 1 if it is TRUE.
|
66
|
+
IGNPAR = 30
|
67
|
+
|
68
|
+
# Mark parity and framing errors.
|
69
|
+
PARMRK = 31
|
70
|
+
|
71
|
+
# Enable checking of parity errors.
|
72
|
+
INPCK = 32
|
73
|
+
|
74
|
+
# Strip 8th bit off characters.
|
75
|
+
ISTRIP = 33
|
76
|
+
|
77
|
+
# Map NL into CR on input.
|
78
|
+
INCLR = 34
|
79
|
+
|
80
|
+
# Ignore CR on input.
|
81
|
+
IGNCR = 35
|
82
|
+
|
83
|
+
# Map CR to NL on input.
|
84
|
+
ICRNL = 36
|
85
|
+
|
86
|
+
# Translate uppercase characters to lowercase.
|
87
|
+
IUCLC = 37
|
88
|
+
|
89
|
+
# Enable output flow control.
|
90
|
+
IXON = 38
|
91
|
+
|
92
|
+
# Any char will restart after stop.
|
93
|
+
IXANY = 39
|
94
|
+
|
95
|
+
# Enable input flow control.
|
96
|
+
IXOFF = 40
|
97
|
+
|
98
|
+
# Ring bell on input queue full.
|
99
|
+
IMAXBEL = 41
|
100
|
+
|
101
|
+
# Enable signals INTR, QUIT, [D]SUSP.
|
102
|
+
ISIG = 50
|
103
|
+
|
104
|
+
# Canonicalize input lines.
|
105
|
+
ICANON = 51
|
106
|
+
|
107
|
+
# Enable input and output of uppercase characters by preceding their
|
108
|
+
# lowercase equivalents with "\".
|
109
|
+
XCASE = 52
|
110
|
+
|
111
|
+
# Enable echoing.
|
112
|
+
ECHO = 53
|
113
|
+
|
114
|
+
# Visually erase chars.
|
115
|
+
ECHOE = 54
|
116
|
+
|
117
|
+
# Kill character discards current line.
|
118
|
+
ECHOK = 55
|
119
|
+
|
120
|
+
# Echo NL even if ECHO is off.
|
121
|
+
ECHONL = 56
|
122
|
+
|
123
|
+
# Don't flush after interrupt.
|
124
|
+
NOFLSH = 57
|
125
|
+
|
126
|
+
# Stop background jobs from output.
|
127
|
+
TOSTOP= 58
|
128
|
+
|
129
|
+
# Enable extensions.
|
130
|
+
IEXTEN = 59
|
131
|
+
|
132
|
+
# Echo control characters as ^(Char).
|
133
|
+
ECHOCTL = 60
|
134
|
+
|
135
|
+
# Visual erase for line kill.
|
136
|
+
ECHOKE = 61
|
137
|
+
|
138
|
+
# Retype pending input.
|
139
|
+
PENDIN = 62
|
140
|
+
|
141
|
+
# Enable output processing.
|
142
|
+
OPOST = 70
|
143
|
+
|
144
|
+
# Convert lowercase to uppercase.
|
145
|
+
OLCUC = 71
|
146
|
+
|
147
|
+
# Map NL to CR-NL.
|
148
|
+
ONLCR = 72
|
149
|
+
|
150
|
+
# Translate carriage return to newline (output).
|
151
|
+
OCRNL = 73
|
152
|
+
|
153
|
+
# Translate newline to carriage return-newline (output).
|
154
|
+
ONOCR = 74
|
155
|
+
|
156
|
+
# Newline performs a carriage return (output).
|
157
|
+
ONLRET = 75
|
158
|
+
|
159
|
+
# 7 bit mode.
|
160
|
+
CS7 = 90
|
161
|
+
|
162
|
+
# 8 bit mode.
|
163
|
+
CS8 = 91
|
164
|
+
|
165
|
+
# Parity enable.
|
166
|
+
PARENB = 92
|
167
|
+
|
168
|
+
# Odd parity, else even.
|
169
|
+
PARODD = 93
|
170
|
+
|
171
|
+
# Specifies the input baud rate in bits per second.
|
172
|
+
TTY_OP_ISPEED = 128
|
173
|
+
|
174
|
+
# Specifies the output baud rate in bits per second.
|
175
|
+
TTY_OP_OSPEED = 129
|
89
176
|
end
|
90
|
-
|
177
|
+
|
178
|
+
end; end; end
|
data/lib/net/ssh/errors.rb
CHANGED
@@ -1,63 +1,85 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
#
|
4
|
-
|
5
|
-
|
6
|
-
# This
|
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
|
-
|
1
|
+
module Net; module SSH
|
2
|
+
# A general exception class, to act as the ancestor of all other Net::SSH
|
3
|
+
# exception classes.
|
4
|
+
class Exception < ::RuntimeError; end
|
5
|
+
|
6
|
+
# This exception is raised when authentication fails (whether it be
|
7
|
+
# public key authentication, password authentication, or whatever).
|
8
|
+
class AuthenticationFailed < Exception; end
|
9
|
+
|
10
|
+
# This exception is raised when the remote host has disconnected
|
11
|
+
# unexpectedly.
|
12
|
+
class Disconnect < Exception; end
|
13
|
+
|
14
|
+
# This exception is primarily used internally, but if you have a channel
|
15
|
+
# request handler (see Net::SSH::Connection::Channel#on_request) that you
|
16
|
+
# want to fail in such a way that the server knows it failed, you can
|
17
|
+
# raise this exception in the handler and Net::SSH will translate that into
|
18
|
+
# a "channel failure" message.
|
19
|
+
class ChannelRequestFailed < Exception; end
|
20
|
+
|
21
|
+
# This is exception is primarily used internally, but if you have a channel
|
22
|
+
# open handler (see Net::SSH::Connection::Session#on_open_channel) and you
|
23
|
+
# want to fail in such a way that the server knows it failed, you can
|
24
|
+
# raise this exception in the handler and Net::SSH will translate that into
|
25
|
+
# a "channel open failed" message.
|
26
|
+
class ChannelOpenFailed < Exception
|
27
|
+
attr_reader :code, :reason
|
28
|
+
|
29
|
+
def initialize(code, reason)
|
30
|
+
@code, @reason = code, reason
|
31
|
+
super "#{reason} (#{code})"
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# Raised when the cached key for a particular host does not match the
|
36
|
+
# key given by the host, which can be indicative of a man-in-the-middle
|
37
|
+
# attack. When rescuing this exception, you can inspect the key fingerprint
|
38
|
+
# and, if you want to proceed anyway, simply call the remember_host!
|
39
|
+
# method on the exception, and then retry.
|
40
|
+
class HostKeyMismatch < Exception
|
41
|
+
# the callback to use when #remember_host! is called
|
42
|
+
attr_writer :callback #:nodoc:
|
43
|
+
|
44
|
+
# situation-specific data describing the host (see #host, #port, etc.)
|
45
|
+
attr_writer :data #:nodoc:
|
46
|
+
|
47
|
+
# An accessor for getting at the data that was used to look up the host
|
48
|
+
# (see also #fingerprint, #host, #port, #ip, and #key).
|
49
|
+
def [](key)
|
50
|
+
@data && @data[key]
|
51
|
+
end
|
52
|
+
|
53
|
+
# Returns the fingerprint of the key for the host, which either was not
|
54
|
+
# found or did not match.
|
55
|
+
def fingerprint
|
56
|
+
@data && @data[:fingerprint]
|
57
|
+
end
|
58
|
+
|
59
|
+
# Returns the host name for the remote host, as reported by the socket.
|
60
|
+
def host
|
61
|
+
@data && @data[:peer] && @data[:peer][:host]
|
62
|
+
end
|
63
|
+
|
64
|
+
# Returns the port number for the remote host, as reported by the socket.
|
65
|
+
def port
|
66
|
+
@data && @data[:peer] && @data[:peer][:port]
|
67
|
+
end
|
68
|
+
|
69
|
+
# Returns the IP address of the remote host, as reported by the socket.
|
70
|
+
def ip
|
71
|
+
@data && @data[:peer] && @data[:peer][:ip]
|
72
|
+
end
|
73
|
+
|
74
|
+
# Returns the key itself, as reported by the remote host.
|
75
|
+
def key
|
76
|
+
@data && @data[:key]
|
77
|
+
end
|
78
|
+
|
79
|
+
# Tell Net::SSH to record this host and key in the known hosts file, so
|
80
|
+
# that subsequent connections will remember them.
|
81
|
+
def remember_host!
|
82
|
+
@callback.call
|
61
83
|
end
|
62
84
|
end
|
63
|
-
end
|
85
|
+
end; end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
require 'net/ssh/transport/openssl'
|
2
|
+
require 'net/ssh/prompt'
|
3
|
+
|
4
|
+
module Net; module SSH
|
5
|
+
|
6
|
+
# A factory class for returning new Key classes. It is used for obtaining
|
7
|
+
# OpenSSL key instances via their SSH names, and for loading both public and
|
8
|
+
# private keys. It used used primarily by Net::SSH itself, internally, and
|
9
|
+
# will rarely (if ever) be directly used by consumers of the library.
|
10
|
+
#
|
11
|
+
# klass = Net::SSH::KeyFactory.get("rsa")
|
12
|
+
# assert klass.is_a?(OpenSSL::PKey::RSA)
|
13
|
+
#
|
14
|
+
# key = Net::SSH::KeyFacory.load_public_key("~/.ssh/id_dsa.pub")
|
15
|
+
class KeyFactory
|
16
|
+
# Specifies the mapping of SSH names to OpenSSL key classes.
|
17
|
+
MAP = {
|
18
|
+
"dh" => OpenSSL::PKey::DH,
|
19
|
+
"rsa" => OpenSSL::PKey::RSA,
|
20
|
+
"dsa" => OpenSSL::PKey::DSA
|
21
|
+
}
|
22
|
+
|
23
|
+
class <<self
|
24
|
+
include Prompt
|
25
|
+
|
26
|
+
# Fetch an OpenSSL key instance by its SSH name. It will be a new,
|
27
|
+
# empty key of the given type.
|
28
|
+
def get(name)
|
29
|
+
MAP.fetch(name).new
|
30
|
+
end
|
31
|
+
|
32
|
+
# Loads a private key from a file. It will correctly determine
|
33
|
+
# whether the file describes an RSA or DSA key, and will load it
|
34
|
+
# appropriately. The new key is returned. If the key itself is
|
35
|
+
# encrypted (requiring a passphrase to use), the user will be
|
36
|
+
# prompted to enter their password unless passphrase works.
|
37
|
+
def load_private_key(filename, passphrase=nil)
|
38
|
+
file = File.read(File.expand_path(filename))
|
39
|
+
|
40
|
+
if file.match(/-----BEGIN DSA PRIVATE KEY-----/)
|
41
|
+
key_type = OpenSSL::PKey::DSA
|
42
|
+
elsif file.match(/-----BEGIN RSA PRIVATE KEY-----/)
|
43
|
+
key_type = OpenSSL::PKey::RSA
|
44
|
+
elsif file.match(/-----BEGIN (.*) PRIVATE KEY-----/)
|
45
|
+
raise OpenSSL::PKey::PKeyError, "not a supported key type '#{$1}'"
|
46
|
+
else
|
47
|
+
raise OpenSSL::PKey::PKeyError, "not a private key (#{filename})"
|
48
|
+
end
|
49
|
+
|
50
|
+
encrypted_key = file.match(/ENCRYPTED/)
|
51
|
+
tries = 0
|
52
|
+
|
53
|
+
begin
|
54
|
+
return key_type.new(file, passphrase || 'invalid')
|
55
|
+
rescue OpenSSL::PKey::RSAError, OpenSSL::PKey::DSAError => e
|
56
|
+
if encrypted_key
|
57
|
+
tries += 1
|
58
|
+
if tries <= 3
|
59
|
+
passphrase = prompt("Enter passphrase for #{filename}:", false)
|
60
|
+
retry
|
61
|
+
else
|
62
|
+
raise
|
63
|
+
end
|
64
|
+
else
|
65
|
+
raise
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
# Loads a public key from a file. It will correctly determine whether
|
71
|
+
# the file describes an RSA or DSA key, and will load it
|
72
|
+
# appropriately. The new public key is returned.
|
73
|
+
def load_public_key(filename)
|
74
|
+
data = File.read(File.expand_path(filename))
|
75
|
+
type, blob = data.split(/ /)
|
76
|
+
|
77
|
+
blob = blob.unpack("m*").first
|
78
|
+
reader = Net::SSH::Buffer.new(blob)
|
79
|
+
reader.read_key or raise OpenSSL::PKey::PKeyError, "not a public key #{filename.inspect}"
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
end; end
|