abiquo-installer-tests 20120104 → 20121023.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +11 -7
- data/bin/abiquo-installer-tests +68 -43
- data/tests/1.8.5/abiquo_ciab.rb +21 -0
- data/tests/1.8.5/abiquo_kvm.rb +25 -0
- data/tests/1.8.5/abiquo_lvmiscsi.rb +17 -0
- data/tests/1.8.5/abiquo_monolithic.rb +12 -0
- data/tests/1.8.5/abiquo_nfs_repository.rb +23 -0
- data/tests/1.8.5/abiquo_platform.rb +39 -0
- data/tests/1.8.5/abiquo_remote_services.rb +115 -0
- data/tests/1.8.5/abiquo_server.rb +63 -0
- data/tests/1.8.5/abiquo_v2v.rb +37 -0
- data/tests/1.8.5/abiquo_vbox.rb +27 -0
- data/tests/1.8.5/abiquo_xen.rb +27 -0
- data/tests/2.0/abiquo_ciab.rb +9 -0
- data/tests/2.0/abiquo_community_hypervisor.rb +52 -0
- data/tests/2.0/abiquo_kvm.rb +5 -23
- data/tests/2.0/abiquo_monolithic.rb +12 -1
- data/tests/2.0/abiquo_platform.rb +2 -2
- data/tests/2.0/abiquo_remote_services.rb +15 -38
- data/tests/2.0/abiquo_server.rb +7 -1
- data/tests/2.0/abiquo_v2v.rb +42 -0
- data/tests/2.0/abiquo_vbox.rb +5 -25
- data/tests/2.0/abiquo_xen.rb +5 -25
- data/tests/2.2.0/abiquo_ciab.rb +30 -0
- data/tests/2.2.0/abiquo_community_hypervisor.rb +52 -0
- data/tests/2.2.0/abiquo_kvm.rb +7 -0
- data/tests/2.2.0/abiquo_lvmiscsi.rb +17 -0
- data/tests/2.2.0/abiquo_monolithic.rb +23 -0
- data/tests/2.2.0/abiquo_nfs_repository.rb +23 -0
- data/tests/2.2.0/abiquo_platform.rb +35 -0
- data/tests/2.2.0/abiquo_remote_services.rb +96 -0
- data/tests/2.2.0/abiquo_server.rb +95 -0
- data/tests/2.2.0/abiquo_v2v.rb +79 -0
- data/tests/2.2.0/abiquo_vbox.rb +7 -0
- data/tests/2.2.0/abiquo_xen.rb +7 -0
- data/tests/2.3.0/abiquo_ciab.rb +30 -0
- data/tests/2.3.0/abiquo_community_hypervisor.rb +52 -0
- data/tests/2.3.0/abiquo_kvm.rb +7 -0
- data/tests/2.3.0/abiquo_lvmiscsi.rb +17 -0
- data/tests/2.3.0/abiquo_monolithic.rb +23 -0
- data/tests/2.3.0/abiquo_nfs_repository.rb +23 -0
- data/tests/2.3.0/abiquo_platform.rb +35 -0
- data/tests/2.3.0/abiquo_remote_services.rb +96 -0
- data/tests/2.3.0/abiquo_server.rb +95 -0
- data/tests/2.3.0/abiquo_v2v.rb +79 -0
- data/tests/2.3.0/abiquo_vbox.rb +7 -0
- data/tests/2.3.0/abiquo_xen.rb +7 -0
- data/tests/abiquo_postinst_test.rb +12 -1
- data/vendor/net-scp-1.0.4/CHANGELOG.rdoc +29 -0
- data/vendor/net-scp-1.0.4/Manifest +17 -0
- data/vendor/net-scp-1.0.4/README.rdoc +98 -0
- data/vendor/net-scp-1.0.4/Rakefile +83 -0
- data/vendor/net-scp-1.0.4/lib/net/scp.rb +432 -0
- data/vendor/net-scp-1.0.4/lib/net/scp/download.rb +150 -0
- data/vendor/net-scp-1.0.4/lib/net/scp/errors.rb +5 -0
- data/vendor/net-scp-1.0.4/lib/net/scp/upload.rb +142 -0
- data/vendor/net-scp-1.0.4/lib/net/scp/version.rb +18 -0
- data/vendor/net-scp-1.0.4/lib/uri/open-scp.rb +18 -0
- data/vendor/net-scp-1.0.4/lib/uri/scp.rb +35 -0
- data/vendor/net-scp-1.0.4/net-scp.gemspec +34 -0
- data/vendor/net-scp-1.0.4/setup.rb +1331 -0
- data/vendor/net-scp-1.0.4/test/common.rb +153 -0
- data/vendor/net-scp-1.0.4/test/test_all.rb +3 -0
- data/vendor/net-scp-1.0.4/test/test_download.rb +170 -0
- data/vendor/net-scp-1.0.4/test/test_scp.rb +60 -0
- data/vendor/net-scp-1.0.4/test/test_upload.rb +269 -0
- data/vendor/net-sftp-2.0.5/CHANGELOG.rdoc +49 -0
- data/vendor/net-sftp-2.0.5/Manifest +55 -0
- data/vendor/net-sftp-2.0.5/README.rdoc +96 -0
- data/vendor/net-sftp-2.0.5/Rakefile +30 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp.rb +70 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/constants.rb +187 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/errors.rb +39 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/dir.rb +93 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/download.rb +364 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/file.rb +176 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/file_factory.rb +60 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/upload.rb +387 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/packet.rb +21 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol.rb +32 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/01/attributes.rb +315 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/01/base.rb +268 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/01/name.rb +43 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/02/base.rb +31 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/03/base.rb +35 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/04/attributes.rb +152 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/04/base.rb +94 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/04/name.rb +67 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/05/base.rb +66 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/06/attributes.rb +107 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/06/base.rb +63 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/base.rb +50 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/request.rb +91 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/response.rb +76 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/session.rb +952 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/version.rb +18 -0
- data/vendor/net-sftp-2.0.5/net-sftp.gemspec +34 -0
- data/vendor/net-sftp-2.0.5/setup.rb +1331 -0
- data/vendor/net-sftp-2.0.5/test/common.rb +172 -0
- data/vendor/net-sftp-2.0.5/test/protocol/01/test_attributes.rb +97 -0
- data/vendor/net-sftp-2.0.5/test/protocol/01/test_base.rb +210 -0
- data/vendor/net-sftp-2.0.5/test/protocol/01/test_name.rb +27 -0
- data/vendor/net-sftp-2.0.5/test/protocol/02/test_base.rb +26 -0
- data/vendor/net-sftp-2.0.5/test/protocol/03/test_base.rb +27 -0
- data/vendor/net-sftp-2.0.5/test/protocol/04/test_attributes.rb +148 -0
- data/vendor/net-sftp-2.0.5/test/protocol/04/test_base.rb +74 -0
- data/vendor/net-sftp-2.0.5/test/protocol/04/test_name.rb +53 -0
- data/vendor/net-sftp-2.0.5/test/protocol/05/test_base.rb +62 -0
- data/vendor/net-sftp-2.0.5/test/protocol/06/test_attributes.rb +124 -0
- data/vendor/net-sftp-2.0.5/test/protocol/06/test_base.rb +51 -0
- data/vendor/net-sftp-2.0.5/test/protocol/test_base.rb +42 -0
- data/vendor/net-sftp-2.0.5/test/test_all.rb +7 -0
- data/vendor/net-sftp-2.0.5/test/test_dir.rb +47 -0
- data/vendor/net-sftp-2.0.5/test/test_download.rb +252 -0
- data/vendor/net-sftp-2.0.5/test/test_file.rb +159 -0
- data/vendor/net-sftp-2.0.5/test/test_file_factory.rb +48 -0
- data/vendor/net-sftp-2.0.5/test/test_packet.rb +9 -0
- data/vendor/net-sftp-2.0.5/test/test_protocol.rb +17 -0
- data/vendor/net-sftp-2.0.5/test/test_request.rb +71 -0
- data/vendor/net-sftp-2.0.5/test/test_response.rb +53 -0
- data/vendor/net-sftp-2.0.5/test/test_session.rb +741 -0
- data/vendor/net-sftp-2.0.5/test/test_upload.rb +219 -0
- data/vendor/net-ssh-2.5.2/CHANGELOG.rdoc +295 -0
- data/vendor/net-ssh-2.5.2/LICENSE.rdoc +19 -0
- data/vendor/net-ssh-2.5.2/Manifest +132 -0
- data/vendor/net-ssh-2.5.2/README.rdoc +184 -0
- data/vendor/net-ssh-2.5.2/Rakefile +88 -0
- data/vendor/net-ssh-2.5.2/Rudyfile +96 -0
- data/vendor/net-ssh-2.5.2/THANKS.rdoc +19 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh.rb +223 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/agent.rb +23 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/agent/java_pageant.rb +85 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/agent/socket.rb +170 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/constants.rb +18 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/key_manager.rb +253 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/abstract.rb +60 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/hostbased.rb +75 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/keyboard_interactive.rb +70 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/password.rb +43 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/publickey.rb +96 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/pageant.rb +264 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/session.rb +154 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/buffer.rb +350 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/buffered_io.rb +198 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/config.rb +207 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/connection/channel.rb +630 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/connection/constants.rb +33 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/connection/session.rb +597 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/connection/term.rb +178 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/errors.rb +88 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/key_factory.rb +107 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/known_hosts.rb +141 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/loggable.rb +61 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/packet.rb +102 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/prompt.rb +93 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/command.rb +75 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/errors.rb +14 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/http.rb +94 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/socks4.rb +70 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/socks5.rb +142 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/ruby_compat.rb +51 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/service/forward.rb +298 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test.rb +89 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/channel.rb +129 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/extensions.rb +152 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/kex.rb +44 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/local_packet.rb +51 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/packet.rb +81 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/remote_packet.rb +38 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/script.rb +157 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/socket.rb +64 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/algorithms.rb +407 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/cipher_factory.rb +106 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/constants.rb +32 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/ctr.rb +95 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac.rb +45 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/abstract.rb +79 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/md5.rb +12 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/md5_96.rb +11 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/none.rb +15 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/ripemd160.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha1.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha1_96.rb +11 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha2_256.rb +15 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha2_256_96.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha2_512.rb +14 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha2_512_96.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/identity_cipher.rb +55 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex.rb +28 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/diffie_hellman_group14_sha1.rb +44 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +216 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +80 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha256.rb +15 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb +93 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/ecdh_sha2_nistp521.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/key_expander.rb +26 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/openssl.rb +237 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/packet_stream.rb +235 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/server_version.rb +71 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/session.rb +278 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/state.rb +206 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/verifiers/lenient.rb +30 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/verifiers/null.rb +12 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/verifiers/strict.rb +53 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/version.rb +62 -0
- data/vendor/net-ssh-2.5.2/net-ssh.gemspec +172 -0
- data/vendor/net-ssh-2.5.2/setup.rb +1585 -0
- data/vendor/net-ssh-2.5.2/support/arcfour_check.rb +20 -0
- data/vendor/net-ssh-2.5.2/support/ssh_tunnel_bug.rb +65 -0
- data/vendor/net-ssh-2.5.2/test/README.txt +43 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/common.rb +28 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_abstract.rb +51 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_hostbased.rb +114 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_keyboard_interactive.rb +100 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_password.rb +52 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_publickey.rb +148 -0
- data/vendor/net-ssh-2.5.2/test/authentication/test_agent.rb +205 -0
- data/vendor/net-ssh-2.5.2/test/authentication/test_key_manager.rb +218 -0
- data/vendor/net-ssh-2.5.2/test/authentication/test_session.rb +106 -0
- data/vendor/net-ssh-2.5.2/test/common.rb +107 -0
- data/vendor/net-ssh-2.5.2/test/configs/eqsign +3 -0
- data/vendor/net-ssh-2.5.2/test/configs/exact_match +8 -0
- data/vendor/net-ssh-2.5.2/test/configs/host_plus +10 -0
- data/vendor/net-ssh-2.5.2/test/configs/multihost +4 -0
- data/vendor/net-ssh-2.5.2/test/configs/nohost +19 -0
- data/vendor/net-ssh-2.5.2/test/configs/numeric_host +4 -0
- data/vendor/net-ssh-2.5.2/test/configs/wild_cards +14 -0
- data/vendor/net-ssh-2.5.2/test/connection/test_channel.rb +467 -0
- data/vendor/net-ssh-2.5.2/test/connection/test_session.rb +488 -0
- data/vendor/net-ssh-2.5.2/test/known_hosts/github +1 -0
- data/vendor/net-ssh-2.5.2/test/manual/test_forward.rb +223 -0
- data/vendor/net-ssh-2.5.2/test/start/test_transport.rb +28 -0
- data/vendor/net-ssh-2.5.2/test/test_all.rb +9 -0
- data/vendor/net-ssh-2.5.2/test/test_buffer.rb +426 -0
- data/vendor/net-ssh-2.5.2/test/test_buffered_io.rb +63 -0
- data/vendor/net-ssh-2.5.2/test/test_config.rb +120 -0
- data/vendor/net-ssh-2.5.2/test/test_key_factory.rb +121 -0
- data/vendor/net-ssh-2.5.2/test/test_known_hosts.rb +13 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_md5.rb +39 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_md5_96.rb +25 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_none.rb +34 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_ripemd160.rb +34 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha1.rb +34 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha1_96.rb +25 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_256.rb +35 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_256_96.rb +25 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_512.rb +35 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_512_96.rb +25 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_diffie_hellman_group14_sha1.rb +13 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_diffie_hellman_group1_sha1.rb +146 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +92 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_diffie_hellman_group_exchange_sha256.rb +33 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_ecdh_sha2_nistp256.rb +161 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_ecdh_sha2_nistp384.rb +37 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_ecdh_sha2_nistp521.rb +37 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_algorithms.rb +330 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_cipher_factory.rb +441 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_hmac.rb +34 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_identity_cipher.rb +40 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_packet_stream.rb +1745 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_server_version.rb +78 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_session.rb +315 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_state.rb +179 -0
- metadata +325 -78
@@ -0,0 +1,142 @@
|
|
1
|
+
require 'socket'
|
2
|
+
require 'net/ssh/ruby_compat'
|
3
|
+
require 'net/ssh/proxy/errors'
|
4
|
+
|
5
|
+
module Net
|
6
|
+
module SSH
|
7
|
+
module Proxy
|
8
|
+
|
9
|
+
# An implementation of a SOCKS5 proxy. To use it, instantiate it, then
|
10
|
+
# pass the instantiated object via the :proxy key to Net::SSH.start:
|
11
|
+
#
|
12
|
+
# require 'net/ssh/proxy/socks5'
|
13
|
+
#
|
14
|
+
# proxy = Net::SSH::Proxy::SOCKS5.new('proxy.host', proxy_port,
|
15
|
+
# :user => 'user', :password => "password")
|
16
|
+
# Net::SSH.start('host', 'user', :proxy => proxy) do |ssh|
|
17
|
+
# ...
|
18
|
+
# end
|
19
|
+
class SOCKS5
|
20
|
+
# The SOCKS protocol version used by this class
|
21
|
+
VERSION = 5
|
22
|
+
|
23
|
+
# The SOCKS authentication type for requests without authentication
|
24
|
+
METHOD_NO_AUTH = 0
|
25
|
+
|
26
|
+
# The SOCKS authentication type for requests via username/password
|
27
|
+
METHOD_PASSWD = 2
|
28
|
+
|
29
|
+
# The SOCKS authentication type for when there are no supported
|
30
|
+
# authentication methods.
|
31
|
+
METHOD_NONE = 0xFF
|
32
|
+
|
33
|
+
# The SOCKS packet type for requesting a proxy connection.
|
34
|
+
CMD_CONNECT = 1
|
35
|
+
|
36
|
+
# The SOCKS address type for connections via IP address.
|
37
|
+
ATYP_IPV4 = 1
|
38
|
+
|
39
|
+
# The SOCKS address type for connections via domain name.
|
40
|
+
ATYP_DOMAIN = 3
|
41
|
+
|
42
|
+
# The SOCKS response code for a successful operation.
|
43
|
+
SUCCESS = 0
|
44
|
+
|
45
|
+
# The proxy's host name or IP address
|
46
|
+
attr_reader :proxy_host
|
47
|
+
|
48
|
+
# The proxy's port number
|
49
|
+
attr_reader :proxy_port
|
50
|
+
|
51
|
+
# The map of options given at initialization
|
52
|
+
attr_reader :options
|
53
|
+
|
54
|
+
# Create a new proxy connection to the given proxy host and port.
|
55
|
+
# Optionally, :user and :password options may be given to
|
56
|
+
# identify the username and password with which to authenticate.
|
57
|
+
def initialize(proxy_host, proxy_port=1080, options={})
|
58
|
+
@proxy_host = proxy_host
|
59
|
+
@proxy_port = proxy_port
|
60
|
+
@options = options
|
61
|
+
end
|
62
|
+
|
63
|
+
# Return a new socket connected to the given host and port via the
|
64
|
+
# proxy that was requested when the socket factory was instantiated.
|
65
|
+
def open(host, port)
|
66
|
+
socket = TCPSocket.new(proxy_host, proxy_port)
|
67
|
+
|
68
|
+
methods = [METHOD_NO_AUTH]
|
69
|
+
methods << METHOD_PASSWD if options[:user]
|
70
|
+
|
71
|
+
packet = [VERSION, methods.size, *methods].pack("C*")
|
72
|
+
socket.send packet, 0
|
73
|
+
|
74
|
+
version, method = socket.recv(2).unpack("CC")
|
75
|
+
if version != VERSION
|
76
|
+
socket.close
|
77
|
+
raise Net::SSH::Proxy::Error, "invalid SOCKS version (#{version})"
|
78
|
+
end
|
79
|
+
|
80
|
+
if method == METHOD_NONE
|
81
|
+
socket.close
|
82
|
+
raise Net::SSH::Proxy::Error, "no supported authorization methods"
|
83
|
+
end
|
84
|
+
|
85
|
+
negotiate_password(socket) if method == METHOD_PASSWD
|
86
|
+
|
87
|
+
packet = [VERSION, CMD_CONNECT, 0].pack("C*")
|
88
|
+
|
89
|
+
if host =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/
|
90
|
+
packet << [ATYP_IPV4, $1.to_i, $2.to_i, $3.to_i, $4.to_i].pack("C*")
|
91
|
+
else
|
92
|
+
packet << [ATYP_DOMAIN, host.length, host].pack("CCA*")
|
93
|
+
end
|
94
|
+
|
95
|
+
packet << [port].pack("n")
|
96
|
+
socket.send packet, 0
|
97
|
+
|
98
|
+
version, reply, = socket.recv(2).unpack("C*")
|
99
|
+
socket.recv(1)
|
100
|
+
address_type = socket.recv(1).getbyte(0)
|
101
|
+
case address_type
|
102
|
+
when 1
|
103
|
+
socket.recv(4) # get four bytes for IPv4 address
|
104
|
+
when 3
|
105
|
+
len = socket.recv(1).getbyte(0)
|
106
|
+
hostname = socket.recv(len)
|
107
|
+
when 4
|
108
|
+
ipv6addr hostname = socket.recv(16)
|
109
|
+
else
|
110
|
+
socket.close
|
111
|
+
raise ConnectionError, "Illegal response type"
|
112
|
+
end
|
113
|
+
portnum = socket.recv(2)
|
114
|
+
|
115
|
+
unless reply == SUCCESS
|
116
|
+
socket.close
|
117
|
+
raise ConnectError, "#{reply}"
|
118
|
+
end
|
119
|
+
|
120
|
+
return socket
|
121
|
+
end
|
122
|
+
|
123
|
+
private
|
124
|
+
|
125
|
+
# Simple username/password negotiation with the SOCKS5 server.
|
126
|
+
def negotiate_password(socket)
|
127
|
+
packet = [0x01, options[:user].length, options[:user],
|
128
|
+
options[:password].length, options[:password]].pack("CCA*CA*")
|
129
|
+
socket.send packet, 0
|
130
|
+
|
131
|
+
version, status = socket.recv(2).unpack("CC")
|
132
|
+
|
133
|
+
if status != SUCCESS
|
134
|
+
socket.close
|
135
|
+
raise UnauthorizedError, "could not authorize user"
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'thread'
|
2
|
+
|
3
|
+
class String
|
4
|
+
if RUBY_VERSION < "1.9"
|
5
|
+
def getbyte(index)
|
6
|
+
self[index]
|
7
|
+
end
|
8
|
+
def setbyte(index, c)
|
9
|
+
self[index] = c
|
10
|
+
end
|
11
|
+
end
|
12
|
+
if RUBY_VERSION < "1.8.7"
|
13
|
+
def bytesize
|
14
|
+
self.size
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
module Net; module SSH
|
20
|
+
|
21
|
+
# This class contains miscellaneous patches and workarounds
|
22
|
+
# for different ruby implementations.
|
23
|
+
class Compat
|
24
|
+
|
25
|
+
# A workaround for an IO#select threading bug in certain versions of MRI 1.8.
|
26
|
+
# See: http://net-ssh.lighthouseapp.com/projects/36253/tickets/1-ioselect-threading-bug-in-ruby-18
|
27
|
+
# The root issue is documented here: http://redmine.ruby-lang.org/issues/show/1993
|
28
|
+
if RUBY_VERSION >= '1.9' || RUBY_PLATFORM == 'java'
|
29
|
+
def self.io_select(*params)
|
30
|
+
IO.select(*params)
|
31
|
+
end
|
32
|
+
else
|
33
|
+
SELECT_MUTEX = Mutex.new
|
34
|
+
def self.io_select(*params)
|
35
|
+
# It should be safe to wrap calls in a mutex when the timeout is 0
|
36
|
+
# (that is, the call is not supposed to block).
|
37
|
+
# We leave blocking calls unprotected to avoid causing deadlocks.
|
38
|
+
# This should still catch the main case for Capistrano users.
|
39
|
+
if params[3] == 0
|
40
|
+
SELECT_MUTEX.synchronize do
|
41
|
+
IO.select(*params)
|
42
|
+
end
|
43
|
+
else
|
44
|
+
IO.select(*params)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
end; end
|
@@ -0,0 +1,298 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'net/ssh/loggable'
|
3
|
+
|
4
|
+
module Net; module SSH; module Service
|
5
|
+
|
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
|
+
|
32
|
+
session.on_open_channel('forwarded-tcpip', &method(:forwarded_tcpip))
|
33
|
+
session.on_open_channel('auth-agent', &method(:auth_agent_channel))
|
34
|
+
session.on_open_channel('auth-agent@openssh.com', &method(:auth_agent_channel))
|
35
|
+
end
|
36
|
+
|
37
|
+
# Starts listening for connections on the local host, and forwards them
|
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
|
56
|
+
|
57
|
+
local_port_type = :long
|
58
|
+
|
59
|
+
socket = begin
|
60
|
+
if 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
|
+
local_port_type = :long
|
68
|
+
TCPServer.new(bind_address, local_port)
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
remote_host = args.shift
|
73
|
+
remote_port = args.shift.to_i
|
74
|
+
|
75
|
+
@local_forwarded_ports[[local_port, bind_address]] = socket
|
76
|
+
|
77
|
+
session.listen_to(socket) do |server|
|
78
|
+
client = server.accept
|
79
|
+
debug { "received connection on #{socket}" }
|
80
|
+
|
81
|
+
channel = session.open_channel("direct-tcpip", :string, remote_host, :long, remote_port, :string, bind_address, local_port_type, local_port) do |achannel|
|
82
|
+
achannel.info { "direct channel established" }
|
83
|
+
end
|
84
|
+
|
85
|
+
prepare_client(client, channel, :local)
|
86
|
+
|
87
|
+
channel.on_open_failed do |ch, code, description|
|
88
|
+
channel.error { "could not establish direct channel: #{description} (#{code})" }
|
89
|
+
channel[:socket].close
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
# Terminates an active local forwarded port. If no such forwarded port
|
95
|
+
# exists, this will raise an exception. Otherwise, the forwarded connection
|
96
|
+
# is terminated.
|
97
|
+
#
|
98
|
+
# ssh.forward.cancel_local(1234)
|
99
|
+
# ssh.forward.cancel_local(1234, "0.0.0.0")
|
100
|
+
def cancel_local(port, bind_address="127.0.0.1")
|
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
|
106
|
+
|
107
|
+
# Returns a list of all active locally forwarded ports. The returned value
|
108
|
+
# is an array of arrays, where each element is a two-element tuple
|
109
|
+
# consisting of the local port and bind address corresponding to the
|
110
|
+
# forwarding port.
|
111
|
+
def active_locals
|
112
|
+
@local_forwarded_ports.keys
|
113
|
+
end
|
114
|
+
|
115
|
+
# Requests that all connections on the given remote-port be forwarded via
|
116
|
+
# the local host to the given port/host. The last argument describes the
|
117
|
+
# bind address on the remote host, and defaults to 127.0.0.1.
|
118
|
+
#
|
119
|
+
# This method will return immediately, but the port will not actually be
|
120
|
+
# forwarded immediately. If the remote server is not able to begin the
|
121
|
+
# listener for this request, an exception will be raised asynchronously.
|
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"
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
# an alias, for token backwards compatibility with the 1.x API
|
142
|
+
alias :remote_to :remote
|
143
|
+
|
144
|
+
# Requests that a remote forwarded port be cancelled. The remote forwarded
|
145
|
+
# port on the remote host, bound to the given address on the remote host,
|
146
|
+
# will be terminated, but not immediately. This method returns immediately
|
147
|
+
# after queueing the request to be sent to the server. If for some reason
|
148
|
+
# the port cannot be cancelled, an exception will be raised (asynchronously).
|
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}"
|
162
|
+
end
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
# Returns all active forwarded remote ports. The returned value is an
|
167
|
+
# array of two-element tuples, where the first element is the port on the
|
168
|
+
# remote host and the second is the bind address.
|
169
|
+
def active_remotes
|
170
|
+
@remote_forwarded_ports.keys
|
171
|
+
end
|
172
|
+
|
173
|
+
# Enables SSH agent forwarding on the given channel. The forwarded agent
|
174
|
+
# will remain active even after the channel closes--the channel is only
|
175
|
+
# used as the transport for enabling the forwarded connection. You should
|
176
|
+
# never need to call this directly--it is called automatically the first
|
177
|
+
# time a session channel is opened, when the connection was created with
|
178
|
+
# :forward_agent set to true:
|
179
|
+
#
|
180
|
+
# Net::SSH.start("remote.host", "me", :forwrd_agent => true) do |ssh|
|
181
|
+
# ssh.open_channel do |ch|
|
182
|
+
# # agent will be automatically forwarded by this point
|
183
|
+
# end
|
184
|
+
# ssh.loop
|
185
|
+
# end
|
186
|
+
def agent(channel)
|
187
|
+
return if @agent_forwarded
|
188
|
+
@agent_forwarded = true
|
189
|
+
|
190
|
+
channel.send_channel_request("auth-agent-req@openssh.com") do |achannel, success|
|
191
|
+
if success
|
192
|
+
debug { "authentication agent forwarding is active" }
|
193
|
+
else
|
194
|
+
achannel.send_channel_request("auth-agent-req") do |a2channel, success2|
|
195
|
+
if success2
|
196
|
+
debug { "authentication agent forwarding is active" }
|
197
|
+
else
|
198
|
+
error { "could not establish forwarding of authentication agent" }
|
199
|
+
end
|
200
|
+
end
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
204
|
+
|
205
|
+
private
|
206
|
+
|
207
|
+
# Perform setup operations that are common to all forwarded channels.
|
208
|
+
# +client+ is a socket, +channel+ is the channel that was just created,
|
209
|
+
# and +type+ is an arbitrary string describing the type of the channel.
|
210
|
+
def prepare_client(client, channel, type)
|
211
|
+
client.extend(Net::SSH::BufferedIo)
|
212
|
+
client.extend(Net::SSH::ForwardedBufferedIo)
|
213
|
+
client.logger = logger
|
214
|
+
|
215
|
+
session.listen_to(client)
|
216
|
+
channel[:socket] = client
|
217
|
+
|
218
|
+
channel.on_data do |ch, data|
|
219
|
+
debug { "data:#{data.length} on #{type} forwarded channel" }
|
220
|
+
ch[:socket].enqueue(data)
|
221
|
+
end
|
222
|
+
|
223
|
+
# Handles server close on the sending side by Miklós Fazekas
|
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}" }
|
232
|
+
else
|
233
|
+
raise
|
234
|
+
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
|
+
end
|
240
|
+
end
|
241
|
+
|
242
|
+
channel.on_close do |ch|
|
243
|
+
debug { "closing #{type} forwarded channel" }
|
244
|
+
ch[:socket].close if !client.closed?
|
245
|
+
session.stop_listening_to(ch[:socket])
|
246
|
+
end
|
247
|
+
|
248
|
+
channel.on_process do |ch|
|
249
|
+
if ch[:socket].closed?
|
250
|
+
ch.info { "#{type} forwarded connection closed" }
|
251
|
+
ch.close
|
252
|
+
elsif ch[:socket].available > 0
|
253
|
+
data = ch[:socket].read_available(8192)
|
254
|
+
ch.debug { "read #{data.length} bytes from client, sending over #{type} forwarded connection" }
|
255
|
+
ch.send_data(data)
|
256
|
+
end
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
# The callback used when a new "forwarded-tcpip" channel is requested
|
261
|
+
# by the server. This will open a new socket to the host/port specified
|
262
|
+
# when the forwarded connection was first requested.
|
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
|
268
|
+
|
269
|
+
remote = @remote_forwarded_ports[[connected_port, connected_address]]
|
270
|
+
|
271
|
+
if remote.nil?
|
272
|
+
raise Net::SSH::ChannelOpenFailed.new(1, "unknown request from remote forwarded connection on #{connected_address}:#{connected_port}")
|
273
|
+
end
|
274
|
+
|
275
|
+
client = TCPSocket.new(remote.host, remote.port)
|
276
|
+
info { "connected #{connected_address}:#{connected_port} originator #{originator_address}:#{originator_port}" }
|
277
|
+
|
278
|
+
prepare_client(client, channel, :remote)
|
279
|
+
rescue SocketError => err
|
280
|
+
raise Net::SSH::ChannelOpenFailed.new(2, "could not connect to remote host (#{remote.host}:#{remote.port}): #{err.message}")
|
281
|
+
end
|
282
|
+
|
283
|
+
# The callback used when an auth-agent channel is requested by the server.
|
284
|
+
def auth_agent_channel(session, channel, packet)
|
285
|
+
info { "opening auth-agent channel" }
|
286
|
+
channel[:invisible] = true
|
287
|
+
|
288
|
+
begin
|
289
|
+
agent = Authentication::Agent.connect(logger)
|
290
|
+
prepare_client(agent.socket, channel, :agent)
|
291
|
+
rescue Exception => e
|
292
|
+
error { "attempted to connect to agent but failed: #{e.class.name} (#{e.message})" }
|
293
|
+
raise Net::SSH::ChannelOpenFailed.new(2, "could not connect to authentication agent")
|
294
|
+
end
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
298
|
+
end; end; end
|