net-ssh 2.7.0 → 7.3.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.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/.dockerignore +6 -0
- data/.github/FUNDING.yml +1 -0
- data/.github/config/rubocop_linter_action.yml +4 -0
- data/.github/workflows/ci-with-docker.yml +44 -0
- data/.github/workflows/ci.yml +94 -0
- data/.github/workflows/rubocop.yml +16 -0
- data/.gitignore +15 -0
- data/.rubocop.yml +22 -0
- data/.rubocop_todo.yml +1081 -0
- data/CHANGES.txt +387 -0
- data/DEVELOPMENT.md +23 -0
- data/Dockerfile +29 -0
- data/Dockerfile.openssl3 +17 -0
- data/Gemfile +13 -0
- data/Gemfile.noed25519 +12 -0
- data/Gemfile.norbnacl +12 -0
- data/ISSUE_TEMPLATE.md +30 -0
- data/Manifest +4 -5
- data/README.md +303 -0
- data/Rakefile +174 -40
- data/SECURITY.md +4 -0
- data/THANKS.txt +25 -0
- data/appveyor.yml +58 -0
- data/docker-compose.yml +25 -0
- data/lib/net/ssh/authentication/agent.rb +279 -18
- data/lib/net/ssh/authentication/certificate.rb +183 -0
- data/lib/net/ssh/authentication/constants.rb +17 -15
- data/lib/net/ssh/authentication/ed25519.rb +184 -0
- data/lib/net/ssh/authentication/ed25519_loader.rb +31 -0
- data/lib/net/ssh/authentication/key_manager.rb +125 -54
- data/lib/net/ssh/authentication/methods/abstract.rb +67 -48
- data/lib/net/ssh/authentication/methods/hostbased.rb +34 -37
- data/lib/net/ssh/authentication/methods/keyboard_interactive.rb +19 -12
- data/lib/net/ssh/authentication/methods/none.rb +16 -19
- data/lib/net/ssh/authentication/methods/password.rb +56 -19
- data/lib/net/ssh/authentication/methods/publickey.rb +96 -55
- data/lib/net/ssh/authentication/pageant.rb +483 -246
- data/lib/net/ssh/authentication/pub_key_fingerprint.rb +43 -0
- data/lib/net/ssh/authentication/session.rb +138 -120
- data/lib/net/ssh/buffer.rb +399 -300
- data/lib/net/ssh/buffered_io.rb +154 -150
- data/lib/net/ssh/config.rb +361 -166
- data/lib/net/ssh/connection/channel.rb +640 -596
- data/lib/net/ssh/connection/constants.rb +29 -29
- data/lib/net/ssh/connection/event_loop.rb +123 -0
- data/lib/net/ssh/connection/keepalive.rb +59 -0
- data/lib/net/ssh/connection/session.rb +628 -548
- data/lib/net/ssh/connection/term.rb +125 -123
- data/lib/net/ssh/errors.rb +101 -95
- data/lib/net/ssh/key_factory.rb +198 -100
- data/lib/net/ssh/known_hosts.rb +221 -98
- data/lib/net/ssh/loggable.rb +50 -49
- data/lib/net/ssh/packet.rb +83 -79
- data/lib/net/ssh/prompt.rb +50 -81
- data/lib/net/ssh/proxy/command.rb +108 -60
- data/lib/net/ssh/proxy/errors.rb +12 -10
- data/lib/net/ssh/proxy/http.rb +82 -78
- data/lib/net/ssh/proxy/https.rb +50 -0
- data/lib/net/ssh/proxy/jump.rb +54 -0
- data/lib/net/ssh/proxy/socks4.rb +5 -8
- data/lib/net/ssh/proxy/socks5.rb +18 -20
- data/lib/net/ssh/service/forward.rb +383 -255
- data/lib/net/ssh/test/channel.rb +145 -136
- data/lib/net/ssh/test/extensions.rb +131 -110
- data/lib/net/ssh/test/kex.rb +34 -32
- data/lib/net/ssh/test/local_packet.rb +46 -44
- data/lib/net/ssh/test/packet.rb +89 -70
- data/lib/net/ssh/test/remote_packet.rb +32 -30
- data/lib/net/ssh/test/script.rb +156 -142
- data/lib/net/ssh/test/socket.rb +49 -48
- data/lib/net/ssh/test.rb +82 -77
- data/lib/net/ssh/transport/aes128_gcm.rb +40 -0
- data/lib/net/ssh/transport/aes256_gcm.rb +40 -0
- data/lib/net/ssh/transport/algorithms.rb +472 -348
- data/lib/net/ssh/transport/chacha20_poly1305_cipher.rb +117 -0
- data/lib/net/ssh/transport/chacha20_poly1305_cipher_loader.rb +17 -0
- data/lib/net/ssh/transport/cipher_factory.rb +124 -100
- data/lib/net/ssh/transport/constants.rb +32 -24
- data/lib/net/ssh/transport/ctr.rb +42 -22
- data/lib/net/ssh/transport/gcm_cipher.rb +207 -0
- data/lib/net/ssh/transport/hmac/abstract.rb +97 -63
- data/lib/net/ssh/transport/hmac/md5.rb +0 -2
- data/lib/net/ssh/transport/hmac/md5_96.rb +0 -2
- data/lib/net/ssh/transport/hmac/none.rb +0 -2
- data/lib/net/ssh/transport/hmac/ripemd160.rb +0 -2
- data/lib/net/ssh/transport/hmac/sha1.rb +0 -2
- data/lib/net/ssh/transport/hmac/sha1_96.rb +0 -2
- data/lib/net/ssh/transport/hmac/sha2_256.rb +7 -11
- data/lib/net/ssh/transport/hmac/sha2_256_96.rb +4 -8
- data/lib/net/ssh/transport/hmac/sha2_256_etm.rb +12 -0
- data/lib/net/ssh/transport/hmac/sha2_512.rb +6 -9
- data/lib/net/ssh/transport/hmac/sha2_512_96.rb +4 -8
- data/lib/net/ssh/transport/hmac/sha2_512_etm.rb +12 -0
- data/lib/net/ssh/transport/hmac.rb +14 -12
- data/lib/net/ssh/transport/identity_cipher.rb +54 -44
- data/lib/net/ssh/transport/kex/abstract.rb +130 -0
- data/lib/net/ssh/transport/kex/abstract5656.rb +72 -0
- data/lib/net/ssh/transport/kex/curve25519_sha256.rb +39 -0
- data/lib/net/ssh/transport/kex/curve25519_sha256_loader.rb +30 -0
- data/lib/net/ssh/transport/kex/diffie_hellman_group14_sha1.rb +33 -40
- data/lib/net/ssh/transport/kex/diffie_hellman_group14_sha256.rb +11 -0
- data/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +119 -213
- data/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +53 -61
- data/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha256.rb +5 -9
- data/lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb +36 -90
- data/lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb +18 -10
- data/lib/net/ssh/transport/kex/ecdh_sha2_nistp521.rb +18 -10
- data/lib/net/ssh/transport/kex.rb +15 -12
- data/lib/net/ssh/transport/key_expander.rb +24 -20
- data/lib/net/ssh/transport/openssl.rb +161 -124
- data/lib/net/ssh/transport/openssl_cipher_extensions.rb +8 -0
- data/lib/net/ssh/transport/packet_stream.rb +246 -183
- data/lib/net/ssh/transport/server_version.rb +57 -51
- data/lib/net/ssh/transport/session.rb +307 -235
- data/lib/net/ssh/transport/state.rb +178 -176
- data/lib/net/ssh/verifiers/accept_new.rb +33 -0
- data/lib/net/ssh/verifiers/accept_new_or_local_tunnel.rb +33 -0
- data/lib/net/ssh/verifiers/always.rb +58 -0
- data/lib/net/ssh/verifiers/never.rb +19 -0
- data/lib/net/ssh/version.rb +57 -51
- data/lib/net/ssh.rb +140 -40
- data/net-ssh-public_cert.pem +21 -0
- data/net-ssh.gemspec +39 -184
- data/support/ssh_tunnel_bug.rb +5 -5
- data.tar.gz.sig +0 -0
- metadata +205 -99
- metadata.gz.sig +0 -0
- data/README.rdoc +0 -219
- data/Rudyfile +0 -96
- data/gem-public_cert.pem +0 -20
- data/lib/net/ssh/authentication/agent/java_pageant.rb +0 -85
- data/lib/net/ssh/authentication/agent/socket.rb +0 -170
- data/lib/net/ssh/ruby_compat.rb +0 -51
- data/lib/net/ssh/verifiers/lenient.rb +0 -30
- data/lib/net/ssh/verifiers/null.rb +0 -12
- data/lib/net/ssh/verifiers/secure.rb +0 -54
- data/lib/net/ssh/verifiers/strict.rb +0 -24
- data/setup.rb +0 -1585
- data/support/arcfour_check.rb +0 -20
- data/test/README.txt +0 -47
- data/test/authentication/methods/common.rb +0 -28
- data/test/authentication/methods/test_abstract.rb +0 -51
- data/test/authentication/methods/test_hostbased.rb +0 -114
- data/test/authentication/methods/test_keyboard_interactive.rb +0 -100
- data/test/authentication/methods/test_none.rb +0 -41
- data/test/authentication/methods/test_password.rb +0 -52
- data/test/authentication/methods/test_publickey.rb +0 -148
- data/test/authentication/test_agent.rb +0 -205
- data/test/authentication/test_key_manager.rb +0 -218
- data/test/authentication/test_session.rb +0 -108
- data/test/common.rb +0 -108
- data/test/configs/eqsign +0 -3
- data/test/configs/exact_match +0 -8
- data/test/configs/host_plus +0 -10
- data/test/configs/multihost +0 -4
- data/test/configs/nohost +0 -19
- data/test/configs/numeric_host +0 -4
- data/test/configs/send_env +0 -2
- data/test/configs/substitutes +0 -8
- data/test/configs/wild_cards +0 -14
- data/test/connection/test_channel.rb +0 -467
- data/test/connection/test_session.rb +0 -526
- data/test/known_hosts/github +0 -1
- data/test/manual/test_forward.rb +0 -223
- data/test/start/test_options.rb +0 -36
- data/test/start/test_transport.rb +0 -28
- data/test/test_all.rb +0 -11
- data/test/test_buffer.rb +0 -433
- data/test/test_buffered_io.rb +0 -63
- data/test/test_config.rb +0 -151
- data/test/test_key_factory.rb +0 -173
- data/test/test_known_hosts.rb +0 -13
- data/test/transport/hmac/test_md5.rb +0 -41
- data/test/transport/hmac/test_md5_96.rb +0 -27
- data/test/transport/hmac/test_none.rb +0 -34
- data/test/transport/hmac/test_ripemd160.rb +0 -36
- data/test/transport/hmac/test_sha1.rb +0 -36
- data/test/transport/hmac/test_sha1_96.rb +0 -27
- data/test/transport/hmac/test_sha2_256.rb +0 -37
- data/test/transport/hmac/test_sha2_256_96.rb +0 -27
- data/test/transport/hmac/test_sha2_512.rb +0 -37
- data/test/transport/hmac/test_sha2_512_96.rb +0 -27
- data/test/transport/kex/test_diffie_hellman_group14_sha1.rb +0 -13
- data/test/transport/kex/test_diffie_hellman_group1_sha1.rb +0 -146
- data/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +0 -92
- data/test/transport/kex/test_diffie_hellman_group_exchange_sha256.rb +0 -34
- data/test/transport/kex/test_ecdh_sha2_nistp256.rb +0 -161
- data/test/transport/kex/test_ecdh_sha2_nistp384.rb +0 -38
- data/test/transport/kex/test_ecdh_sha2_nistp521.rb +0 -38
- data/test/transport/test_algorithms.rb +0 -330
- data/test/transport/test_cipher_factory.rb +0 -443
- data/test/transport/test_hmac.rb +0 -34
- data/test/transport/test_identity_cipher.rb +0 -40
- data/test/transport/test_packet_stream.rb +0 -1755
- data/test/transport/test_server_version.rb +0 -78
- data/test/transport/test_session.rb +0 -319
- data/test/transport/test_state.rb +0 -181
@@ -1,298 +1,426 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
1
|
require 'net/ssh/loggable'
|
3
2
|
|
4
|
-
module Net
|
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
|
-
# to the specified remote host/port via the SSH connection. This method
|
39
|
-
# accepts either three or four arguments. When four arguments are given,
|
40
|
-
# they are:
|
41
|
-
#
|
42
|
-
# * the local address to bind to
|
43
|
-
# * the local port to listen on
|
44
|
-
# * the remote host to forward connections to
|
45
|
-
# * the port on the remote host to connect to
|
46
|
-
#
|
47
|
-
# If three arguments are given, it is as if the local bind address is
|
48
|
-
# "127.0.0.1", and the rest are applied as above.
|
49
|
-
#
|
50
|
-
# ssh.forward.local(1234, "www.capify.org", 80)
|
51
|
-
# ssh.forward.local("0.0.0.0", 1234, "www.capify.org", 80)
|
52
|
-
def local(*args)
|
53
|
-
if args.length < 3 || args.length > 4
|
54
|
-
raise ArgumentError, "expected 3 or 4 parameters, got #{args.length}"
|
55
|
-
end
|
3
|
+
module Net
|
4
|
+
module SSH
|
5
|
+
module Service
|
6
|
+
# This class implements various port forwarding services for use by
|
7
|
+
# Net::SSH clients. The Forward class should never need to be instantiated
|
8
|
+
# directly; instead, it should be accessed via the singleton instance
|
9
|
+
# returned by Connection::Session#forward:
|
10
|
+
#
|
11
|
+
# ssh.forward.local(1234, "www.capify.org", 80)
|
12
|
+
class Forward
|
13
|
+
include Loggable
|
14
|
+
|
15
|
+
# The underlying connection service instance that the port-forwarding
|
16
|
+
# services employ.
|
17
|
+
attr_reader :session
|
18
|
+
|
19
|
+
# A simple class for representing a requested remote forwarded port.
|
20
|
+
Remote = Struct.new(:host, :port) # :nodoc:
|
21
|
+
|
22
|
+
# Instantiates a new Forward service instance atop the given connection
|
23
|
+
# service session. This will register new channel open handlers to handle
|
24
|
+
# the specialized channels that the SSH port forwarding protocols employ.
|
25
|
+
def initialize(session)
|
26
|
+
@session = session
|
27
|
+
self.logger = session.logger
|
28
|
+
@remote_forwarded_ports = {}
|
29
|
+
@local_forwarded_ports = {}
|
30
|
+
@agent_forwarded = false
|
31
|
+
@local_forwarded_sockets = {}
|
32
|
+
|
33
|
+
session.on_open_channel('forwarded-tcpip', &method(:forwarded_tcpip))
|
34
|
+
session.on_open_channel('auth-agent', &method(:auth_agent_channel))
|
35
|
+
session.on_open_channel('auth-agent@openssh.com', &method(:auth_agent_channel))
|
36
|
+
end
|
56
37
|
|
57
|
-
|
38
|
+
# Starts listening for connections on the local host, and forwards them
|
39
|
+
# to the specified remote host/port via the SSH connection. This method
|
40
|
+
# accepts either three or four arguments. When four arguments are given,
|
41
|
+
# they are:
|
42
|
+
#
|
43
|
+
# * the local address to bind to
|
44
|
+
# * the local port to listen on
|
45
|
+
# * the remote host to forward connections to
|
46
|
+
# * the port on the remote host to connect to
|
47
|
+
#
|
48
|
+
# If three arguments are given, it is as if the local bind address is
|
49
|
+
# "127.0.0.1", and the rest are applied as above.
|
50
|
+
#
|
51
|
+
# To request an ephemeral port on the remote server, provide 0 (zero) for
|
52
|
+
# the port number. In all cases, this method will return the port that
|
53
|
+
# has been assigned.
|
54
|
+
#
|
55
|
+
# ssh.forward.local(1234, "www.capify.org", 80)
|
56
|
+
# assigned_port = ssh.forward.local("0.0.0.0", 0, "www.capify.org", 80)
|
57
|
+
def local(*args)
|
58
|
+
if args.length < 3 || args.length > 4
|
59
|
+
raise ArgumentError, "expected 3 or 4 parameters, got #{args.length}"
|
60
|
+
end
|
58
61
|
|
59
|
-
socket = begin
|
60
|
-
if defined?(UNIXServer) and args.first.class == UNIXServer
|
61
|
-
local_port_type = :string
|
62
|
-
args.shift
|
63
|
-
else
|
64
|
-
bind_address = "127.0.0.1"
|
65
|
-
bind_address = args.shift if args.first.is_a?(String) && args.first =~ /\D/
|
66
|
-
local_port = args.shift.to_i
|
67
62
|
local_port_type = :long
|
68
|
-
TCPServer.new(bind_address, local_port)
|
69
|
-
end
|
70
|
-
end
|
71
63
|
|
72
|
-
|
73
|
-
|
64
|
+
socket = begin
|
65
|
+
if defined?(UNIXServer) and args.first.class == UNIXServer
|
66
|
+
local_port_type = :string
|
67
|
+
args.shift
|
68
|
+
else
|
69
|
+
bind_address = "127.0.0.1"
|
70
|
+
bind_address = args.shift if args.first.is_a?(String) && args.first =~ /\D/
|
71
|
+
local_port = args.shift.to_i
|
72
|
+
local_port_type = :long
|
73
|
+
TCPServer.new(bind_address, local_port)
|
74
|
+
end
|
75
|
+
end
|
74
76
|
|
75
|
-
|
77
|
+
local_port = socket.addr[1] if local_port == 0 # ephemeral port was requested
|
78
|
+
remote_host = args.shift
|
79
|
+
remote_port = args.shift.to_i
|
76
80
|
|
77
|
-
|
78
|
-
client = server.accept
|
79
|
-
debug { "received connection on #{socket}" }
|
81
|
+
@local_forwarded_ports[[local_port, bind_address]] = socket
|
80
82
|
|
81
|
-
|
82
|
-
|
83
|
+
session.listen_to(socket) do |server|
|
84
|
+
client = server.accept
|
85
|
+
debug { "received connection on #{socket}" }
|
86
|
+
|
87
|
+
channel = session.open_channel("direct-tcpip", :string, remote_host, :long,
|
88
|
+
remote_port, :string, bind_address, local_port_type, local_port) do |achannel|
|
89
|
+
achannel.info { "direct channel established" }
|
90
|
+
end
|
91
|
+
|
92
|
+
prepare_client(client, channel, :local)
|
93
|
+
|
94
|
+
channel.on_open_failed do |ch, code, description|
|
95
|
+
channel.error { "could not establish direct channel: #{description} (#{code})" }
|
96
|
+
session.stop_listening_to(channel[:socket])
|
97
|
+
channel[:socket].close
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
local_port
|
83
102
|
end
|
84
103
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
104
|
+
# Terminates an active local forwarded port.
|
105
|
+
#
|
106
|
+
# ssh.forward.cancel_local(1234)
|
107
|
+
# ssh.forward.cancel_local(1234, "0.0.0.0")
|
108
|
+
def cancel_local(port, bind_address = "127.0.0.1")
|
109
|
+
socket = @local_forwarded_ports.delete([port, bind_address])
|
110
|
+
socket.shutdown rescue nil
|
111
|
+
socket.close rescue nil
|
112
|
+
session.stop_listening_to(socket)
|
90
113
|
end
|
91
|
-
end
|
92
|
-
end
|
93
114
|
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
socket = @local_forwarded_ports.delete([port, bind_address])
|
102
|
-
socket.shutdown rescue nil
|
103
|
-
socket.close rescue nil
|
104
|
-
session.stop_listening_to(socket)
|
105
|
-
end
|
115
|
+
# Returns a list of all active locally forwarded ports. The returned value
|
116
|
+
# is an array of arrays, where each element is a two-element tuple
|
117
|
+
# consisting of the local port and bind address corresponding to the
|
118
|
+
# forwarding port.
|
119
|
+
def active_locals
|
120
|
+
@local_forwarded_ports.keys
|
121
|
+
end
|
106
122
|
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
123
|
+
# Starts listening for connections on the local host, and forwards them
|
124
|
+
# to the specified remote socket via the SSH connection. This will
|
125
|
+
# (re)create the local socket file. The remote server needs to have the
|
126
|
+
# socket file already available.
|
127
|
+
#
|
128
|
+
# ssh.forward.local_socket('/tmp/local.sock', '/tmp/remote.sock')
|
129
|
+
def local_socket(local_socket_path, remote_socket_path)
|
130
|
+
File.delete(local_socket_path) if File.exist?(local_socket_path)
|
131
|
+
socket = Socket.unix_server_socket(local_socket_path)
|
132
|
+
|
133
|
+
@local_forwarded_sockets[local_socket_path] = socket
|
134
|
+
|
135
|
+
session.listen_to(socket) do |server|
|
136
|
+
client = server.accept[0]
|
137
|
+
debug { "received connection on #{socket}" }
|
138
|
+
|
139
|
+
channel = session.open_channel("direct-streamlocal@openssh.com",
|
140
|
+
:string, remote_socket_path,
|
141
|
+
:string, nil,
|
142
|
+
:long, 0) do |achannel|
|
143
|
+
achannel.info { "direct channel established" }
|
144
|
+
end
|
145
|
+
|
146
|
+
prepare_client(client, channel, :local)
|
114
147
|
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
# If you want to know when the connection is active, it will show up in the
|
124
|
-
# #active_remotes list. If you want to block until the port is active, you
|
125
|
-
# could do something like this:
|
126
|
-
#
|
127
|
-
# ssh.forward.remote(80, "www.google.com", 1234, "0.0.0.0")
|
128
|
-
# ssh.loop { !ssh.forward.active_remotes.include?([1234, "0.0.0.0"]) }
|
129
|
-
def remote(port, host, remote_port, remote_host="127.0.0.1")
|
130
|
-
session.send_global_request("tcpip-forward", :string, remote_host, :long, remote_port) do |success, response|
|
131
|
-
if success
|
132
|
-
debug { "remote forward from remote #{remote_host}:#{remote_port} to #{host}:#{port} established" }
|
133
|
-
@remote_forwarded_ports[[remote_port, remote_host]] = Remote.new(host, port)
|
134
|
-
else
|
135
|
-
error { "remote forwarding request failed" }
|
136
|
-
raise Net::SSH::Exception, "remote forwarding request failed"
|
148
|
+
channel.on_open_failed do |ch, code, description|
|
149
|
+
channel.error { "could not establish direct channel: #{description} (#{code})" }
|
150
|
+
session.stop_listening_to(channel[:socket])
|
151
|
+
channel[:socket].close
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
local_socket_path
|
137
156
|
end
|
138
|
-
end
|
139
|
-
end
|
140
157
|
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
#
|
150
|
-
# If you want to know when the connection has been cancelled, it will no
|
151
|
-
# longer be present in the #active_remotes list. If you want to block until
|
152
|
-
# the port is no longer active, you could do something like this:
|
153
|
-
#
|
154
|
-
# ssh.forward.cancel_remote(1234, "0.0.0.0")
|
155
|
-
# ssh.loop { ssh.forward.active_remotes.include?([1234, "0.0.0.0"]) }
|
156
|
-
def cancel_remote(port, host="127.0.0.1")
|
157
|
-
session.send_global_request("cancel-tcpip-forward", :string, host, :long, port) do |success, response|
|
158
|
-
if success
|
159
|
-
@remote_forwarded_ports.delete([port, host])
|
160
|
-
else
|
161
|
-
raise Net::SSH::Exception, "could not cancel remote forward request on #{host}:#{port}"
|
158
|
+
# Terminates an active local forwarded socket.
|
159
|
+
#
|
160
|
+
# ssh.forward.cancel_local_socket('/tmp/foo.sock')
|
161
|
+
def cancel_local_socket(local_socket_path)
|
162
|
+
socket = @local_forwarded_sockets.delete(local_socket_path)
|
163
|
+
socket.shutdown rescue nil
|
164
|
+
socket.close rescue nil
|
165
|
+
session.stop_listening_to(socket)
|
162
166
|
end
|
163
|
-
end
|
164
|
-
end
|
165
167
|
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
end
|
168
|
+
# Returns a list of all active locally forwarded sockets. The returned value
|
169
|
+
# is an array of Unix domain socket file paths.
|
170
|
+
def active_local_sockets
|
171
|
+
@local_forwarded_sockets.keys
|
172
|
+
end
|
172
173
|
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
174
|
+
# Requests that all connections on the given remote-port be forwarded via
|
175
|
+
# the local host to the given port/host. The last argument describes the
|
176
|
+
# bind address on the remote host, and defaults to 127.0.0.1.
|
177
|
+
#
|
178
|
+
# This method will return immediately, but the port will not actually be
|
179
|
+
# forwarded immediately. If the remote server is not able to begin the
|
180
|
+
# listener for this request, an exception will be raised asynchronously.
|
181
|
+
#
|
182
|
+
# To request an ephemeral port on the remote server, provide 0 (zero) for
|
183
|
+
# the port number. The assigned port will show up in the # #active_remotes
|
184
|
+
# list.
|
185
|
+
#
|
186
|
+
# remote_host is interpreted by the server per RFC 4254, which has these
|
187
|
+
# special values:
|
188
|
+
#
|
189
|
+
# - "" means that connections are to be accepted on all protocol
|
190
|
+
# families supported by the SSH implementation.
|
191
|
+
# - "0.0.0.0" means to listen on all IPv4 addresses.
|
192
|
+
# - "::" means to listen on all IPv6 addresses.
|
193
|
+
# - "localhost" means to listen on all protocol families supported by
|
194
|
+
# the SSH implementation on loopback addresses only ([RFC3330] and
|
195
|
+
# [RFC3513]).
|
196
|
+
# - "127.0.0.1" and "::1" indicate listening on the loopback
|
197
|
+
# interfaces for IPv4 and IPv6, respectively.
|
198
|
+
#
|
199
|
+
# You may pass a block that will be called when the the port forward
|
200
|
+
# request receives a response. This block will be passed the remote_port
|
201
|
+
# that was actually bound to, or nil if the binding failed. If the block
|
202
|
+
# returns :no_exception, the "failed binding" exception will not be thrown.
|
203
|
+
#
|
204
|
+
# If you want to block until the port is active, you could do something
|
205
|
+
# like this:
|
206
|
+
#
|
207
|
+
# got_remote_port = nil
|
208
|
+
# remote(port, host, remote_port, remote_host) do |actual_remote_port|
|
209
|
+
# got_remote_port = actual_remote_port || :error
|
210
|
+
# :no_exception # will yield the exception on my own thread
|
211
|
+
# end
|
212
|
+
# session.loop { !got_remote_port }
|
213
|
+
# if got_remote_port == :error
|
214
|
+
# raise Net::SSH::Exception, "remote forwarding request failed"
|
215
|
+
# end
|
216
|
+
#
|
217
|
+
def remote(port, host, remote_port, remote_host = "127.0.0.1")
|
218
|
+
session.send_global_request("tcpip-forward", :string, remote_host, :long, remote_port) do |success, response|
|
219
|
+
if success
|
220
|
+
remote_port = response.read_long if remote_port == 0
|
221
|
+
debug { "remote forward from remote #{remote_host}:#{remote_port} to #{host}:#{port} established" }
|
222
|
+
@remote_forwarded_ports[[remote_port, remote_host]] = Remote.new(host, port)
|
223
|
+
yield remote_port, remote_host if block_given?
|
197
224
|
else
|
198
|
-
|
225
|
+
instruction = if block_given?
|
226
|
+
yield :error
|
227
|
+
end
|
228
|
+
unless instruction == :no_exception
|
229
|
+
error { "remote forwarding request failed" }
|
230
|
+
raise Net::SSH::Exception, "remote forwarding request failed"
|
231
|
+
end
|
199
232
|
end
|
200
233
|
end
|
201
234
|
end
|
202
|
-
end
|
203
|
-
end
|
204
235
|
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
channel.on_eof do |ch|
|
225
|
-
debug { "eof #{type} on #{type} forwarded channel" }
|
226
|
-
begin
|
227
|
-
ch[:socket].send_pending
|
228
|
-
ch[:socket].shutdown Socket::SHUT_WR
|
229
|
-
rescue IOError => e
|
230
|
-
if e.message =~ /closed/ then
|
231
|
-
debug { "epipe in on_eof => shallowing exception:#{e}" }
|
236
|
+
# an alias, for token backwards compatibility with the 1.x API
|
237
|
+
alias :remote_to :remote
|
238
|
+
|
239
|
+
# Requests that a remote forwarded port be cancelled. The remote forwarded
|
240
|
+
# port on the remote host, bound to the given address on the remote host,
|
241
|
+
# will be terminated, but not immediately. This method returns immediately
|
242
|
+
# after queueing the request to be sent to the server. If for some reason
|
243
|
+
# the port cannot be cancelled, an exception will be raised (asynchronously).
|
244
|
+
#
|
245
|
+
# If you want to know when the connection has been cancelled, it will no
|
246
|
+
# longer be present in the #active_remotes list. If you want to block until
|
247
|
+
# the port is no longer active, you could do something like this:
|
248
|
+
#
|
249
|
+
# ssh.forward.cancel_remote(1234, "0.0.0.0")
|
250
|
+
# ssh.loop { ssh.forward.active_remotes.include?([1234, "0.0.0.0"]) }
|
251
|
+
def cancel_remote(port, host = "127.0.0.1")
|
252
|
+
session.send_global_request("cancel-tcpip-forward", :string, host, :long, port) do |success, response|
|
253
|
+
if success
|
254
|
+
@remote_forwarded_ports.delete([port, host])
|
232
255
|
else
|
233
|
-
raise
|
256
|
+
raise Net::SSH::Exception, "could not cancel remote forward request on #{host}:#{port}"
|
234
257
|
end
|
235
|
-
rescue Errno::EPIPE => e
|
236
|
-
debug { "epipe in on_eof => shallowing exception:#{e}" }
|
237
|
-
rescue Errno::ENOTCONN => e
|
238
|
-
debug { "enotconn in on_eof => shallowing exception:#{e}" }
|
239
258
|
end
|
240
259
|
end
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
260
|
+
|
261
|
+
# Returns all active forwarded remote ports. The returned value is an
|
262
|
+
# array of two-element tuples, where the first element is the port on the
|
263
|
+
# remote host and the second is the bind address.
|
264
|
+
def active_remotes
|
265
|
+
@remote_forwarded_ports.keys
|
246
266
|
end
|
247
267
|
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
268
|
+
# Returns all active remote forwarded ports and where they forward to. The
|
269
|
+
# returned value is a hash from [<forwarding port on the local host>, <local forwarding address>]
|
270
|
+
# to [<port on the remote host>, <remote bind address>].
|
271
|
+
def active_remote_destinations
|
272
|
+
@remote_forwarded_ports.each_with_object({}) do |(remote, local), result|
|
273
|
+
result[[local.port, local.host]] = remote
|
274
|
+
end
|
275
|
+
end
|
276
|
+
|
277
|
+
# Enables SSH agent forwarding on the given channel. The forwarded agent
|
278
|
+
# will remain active even after the channel closes--the channel is only
|
279
|
+
# used as the transport for enabling the forwarded connection. You should
|
280
|
+
# never need to call this directly--it is called automatically the first
|
281
|
+
# time a session channel is opened, when the connection was created with
|
282
|
+
# :forward_agent set to true:
|
283
|
+
#
|
284
|
+
# Net::SSH.start("remote.host", "me", :forward_agent => true) do |ssh|
|
285
|
+
# ssh.open_channel do |ch|
|
286
|
+
# # agent will be automatically forwarded by this point
|
287
|
+
# end
|
288
|
+
# ssh.loop
|
289
|
+
# end
|
290
|
+
def agent(channel)
|
291
|
+
return if @agent_forwarded
|
292
|
+
|
293
|
+
@agent_forwarded = true
|
294
|
+
|
295
|
+
channel.send_channel_request("auth-agent-req@openssh.com") do |achannel, success|
|
296
|
+
if success
|
297
|
+
debug { "authentication agent forwarding is active" }
|
298
|
+
else
|
299
|
+
achannel.send_channel_request("auth-agent-req") do |a2channel, success2|
|
300
|
+
if success2
|
301
|
+
debug { "authentication agent forwarding is active" }
|
302
|
+
else
|
303
|
+
error { "could not establish forwarding of authentication agent" }
|
304
|
+
end
|
305
|
+
end
|
306
|
+
end
|
307
|
+
end
|
308
|
+
end
|
309
|
+
|
310
|
+
private
|
311
|
+
|
312
|
+
# Perform setup operations that are common to all forwarded channels.
|
313
|
+
# +client+ is a socket, +channel+ is the channel that was just created,
|
314
|
+
# and +type+ is an arbitrary string describing the type of the channel.
|
315
|
+
def prepare_client(client, channel, type)
|
316
|
+
client.extend(Net::SSH::BufferedIo)
|
317
|
+
client.extend(Net::SSH::ForwardedBufferedIo)
|
318
|
+
client.logger = logger
|
319
|
+
|
320
|
+
session.listen_to(client)
|
321
|
+
channel[:socket] = client
|
322
|
+
|
323
|
+
channel.on_data do |ch, data|
|
324
|
+
debug { "data:#{data.length} on #{type} forwarded channel" }
|
325
|
+
ch[:socket].enqueue(data)
|
326
|
+
end
|
327
|
+
|
328
|
+
channel.on_eof do |ch|
|
329
|
+
debug { "eof #{type} on #{type} forwarded channel" }
|
330
|
+
begin
|
331
|
+
ch[:socket].send_pending
|
332
|
+
ch[:socket].shutdown Socket::SHUT_WR
|
333
|
+
rescue IOError => e
|
334
|
+
if e.message =~ /closed/ then
|
335
|
+
debug { "epipe in on_eof => shallowing exception:#{e}" }
|
336
|
+
else
|
337
|
+
raise
|
338
|
+
end
|
339
|
+
rescue Errno::EPIPE => e
|
340
|
+
debug { "epipe in on_eof => shallowing exception:#{e}" }
|
341
|
+
rescue Errno::ENOTCONN => e
|
342
|
+
debug { "enotconn in on_eof => shallowing exception:#{e}" }
|
343
|
+
end
|
344
|
+
end
|
345
|
+
|
346
|
+
channel.on_close do |ch|
|
347
|
+
debug { "closing #{type} forwarded channel" }
|
348
|
+
ch[:socket].close if !client.closed?
|
349
|
+
session.stop_listening_to(ch[:socket])
|
350
|
+
end
|
351
|
+
|
352
|
+
channel.on_process do |ch|
|
353
|
+
if ch[:socket].closed?
|
354
|
+
ch.info { "#{type} forwarded connection closed" }
|
355
|
+
ch.close
|
356
|
+
elsif ch[:socket].available > 0
|
357
|
+
data = ch[:socket].read_available(8192)
|
358
|
+
ch.debug { "read #{data.length} bytes from client, sending over #{type} forwarded connection" }
|
359
|
+
ch.send_data(data)
|
360
|
+
end
|
256
361
|
end
|
257
362
|
end
|
258
|
-
end
|
259
363
|
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
def forwarded_tcpip(session, channel, packet)
|
264
|
-
connected_address = packet.read_string
|
265
|
-
connected_port = packet.read_long
|
266
|
-
originator_address = packet.read_string
|
267
|
-
originator_port = packet.read_long
|
364
|
+
# not a real socket, so use a simpler behaviour
|
365
|
+
def prepare_simple_client(client, channel, type)
|
366
|
+
channel[:socket] = client
|
268
367
|
|
269
|
-
|
368
|
+
channel.on_data do |ch, data|
|
369
|
+
ch.debug { "data:#{data.length} on #{type} forwarded channel" }
|
370
|
+
ch[:socket].send(data)
|
371
|
+
end
|
270
372
|
|
271
|
-
|
272
|
-
|
373
|
+
channel.on_process do |ch|
|
374
|
+
data = ch[:socket].read(8192)
|
375
|
+
if data
|
376
|
+
ch.debug { "read #{data.length} bytes from client, sending over #{type} forwarded connection" }
|
377
|
+
ch.send_data(data)
|
378
|
+
end
|
379
|
+
end
|
273
380
|
end
|
274
381
|
|
275
|
-
|
276
|
-
|
382
|
+
# The callback used when a new "forwarded-tcpip" channel is requested
|
383
|
+
# by the server. This will open a new socket to the host/port specified
|
384
|
+
# when the forwarded connection was first requested.
|
385
|
+
def forwarded_tcpip(session, channel, packet)
|
386
|
+
connected_address = packet.read_string
|
387
|
+
connected_port = packet.read_long
|
388
|
+
originator_address = packet.read_string
|
389
|
+
originator_port = packet.read_long
|
390
|
+
|
391
|
+
puts "REMOTE 0: #{connected_port} #{connected_address} #{originator_address} #{originator_port}"
|
392
|
+
remote = @remote_forwarded_ports[[connected_port, connected_address]]
|
393
|
+
if remote.nil?
|
394
|
+
raise Net::SSH::ChannelOpenFailed.new(1, "unknown request from remote forwarded connection on #{connected_address}:#{connected_port}")
|
395
|
+
end
|
277
396
|
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
end
|
397
|
+
puts "REMOTE: #{remote.host} #{remote.port}"
|
398
|
+
client = TCPSocket.new(remote.host, remote.port)
|
399
|
+
info { "connected #{connected_address}:#{connected_port} originator #{originator_address}:#{originator_port}" }
|
282
400
|
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
401
|
+
prepare_client(client, channel, :remote)
|
402
|
+
rescue SocketError => err
|
403
|
+
raise Net::SSH::ChannelOpenFailed.new(2, "could not connect to remote host (#{remote.host}:#{remote.port}): #{err.message}")
|
404
|
+
end
|
405
|
+
|
406
|
+
# The callback used when an auth-agent channel is requested by the server.
|
407
|
+
def auth_agent_channel(session, channel, packet)
|
408
|
+
info { "opening auth-agent channel" }
|
409
|
+
channel[:invisible] = true
|
410
|
+
|
411
|
+
begin
|
412
|
+
agent = Authentication::Agent.connect(logger, session.options[:agent_socket_factory])
|
413
|
+
if (agent.socket.is_a? ::IO)
|
414
|
+
prepare_client(agent.socket, channel, :agent)
|
415
|
+
else
|
416
|
+
prepare_simple_client(agent.socket, channel, :agent)
|
417
|
+
end
|
418
|
+
rescue Exception => e
|
419
|
+
error { "attempted to connect to agent but failed: #{e.class.name} (#{e.message})" }
|
420
|
+
raise Net::SSH::ChannelOpenFailed.new(2, "could not connect to authentication agent")
|
421
|
+
end
|
294
422
|
end
|
295
423
|
end
|
424
|
+
end
|
296
425
|
end
|
297
|
-
|
298
|
-
end; end; end
|
426
|
+
end
|