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,350 @@
|
|
1
|
+
require 'net/ssh/ruby_compat'
|
2
|
+
require 'net/ssh/transport/openssl'
|
3
|
+
|
4
|
+
module Net; module SSH
|
5
|
+
|
6
|
+
# Net::SSH::Buffer is a flexible class for building and parsing binary
|
7
|
+
# data packets. It provides a stream-like interface for sequentially
|
8
|
+
# reading data items from the buffer, as well as a useful helper method
|
9
|
+
# for building binary packets given a signature.
|
10
|
+
#
|
11
|
+
# Writing to a buffer always appends to the end, regardless of where the
|
12
|
+
# read cursor is. Reading, on the other hand, always begins at the first
|
13
|
+
# byte of the buffer and increments the read cursor, with subsequent reads
|
14
|
+
# taking up where the last left off.
|
15
|
+
#
|
16
|
+
# As a consumer of the Net::SSH library, you will rarely come into contact
|
17
|
+
# with these buffer objects directly, but it could happen. Also, if you
|
18
|
+
# are ever implementing a protocol on top of SSH (e.g. SFTP), this buffer
|
19
|
+
# class can be quite handy.
|
20
|
+
class Buffer
|
21
|
+
# This is a convenience method for creating and populating a new buffer
|
22
|
+
# from a single command. The arguments must be even in length, with the
|
23
|
+
# first of each pair of arguments being a symbol naming the type of the
|
24
|
+
# data that follows. If the type is :raw, the value is written directly
|
25
|
+
# to the hash.
|
26
|
+
#
|
27
|
+
# b = Buffer.from(:byte, 1, :string, "hello", :raw, "\1\2\3\4")
|
28
|
+
# #-> "\1\0\0\0\5hello\1\2\3\4"
|
29
|
+
#
|
30
|
+
# The supported data types are:
|
31
|
+
#
|
32
|
+
# * :raw => write the next value verbatim (#write)
|
33
|
+
# * :int64 => write an 8-byte integer (#write_int64)
|
34
|
+
# * :long => write a 4-byte integer (#write_long)
|
35
|
+
# * :byte => write a single byte (#write_byte)
|
36
|
+
# * :string => write a 4-byte length followed by character data (#write_string)
|
37
|
+
# * :bool => write a single byte, interpreted as a boolean (#write_bool)
|
38
|
+
# * :bignum => write an SSH-encoded bignum (#write_bignum)
|
39
|
+
# * :key => write an SSH-encoded key value (#write_key)
|
40
|
+
#
|
41
|
+
# Any of these, except for :raw, accepts an Array argument, to make it
|
42
|
+
# easier to write multiple values of the same type in a briefer manner.
|
43
|
+
def self.from(*args)
|
44
|
+
raise ArgumentError, "odd number of arguments given" unless args.length % 2 == 0
|
45
|
+
|
46
|
+
buffer = new
|
47
|
+
0.step(args.length-1, 2) do |index|
|
48
|
+
type = args[index]
|
49
|
+
value = args[index+1]
|
50
|
+
if type == :raw
|
51
|
+
buffer.append(value.to_s)
|
52
|
+
elsif Array === value
|
53
|
+
buffer.send("write_#{type}", *value)
|
54
|
+
else
|
55
|
+
buffer.send("write_#{type}", value)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
buffer
|
60
|
+
end
|
61
|
+
|
62
|
+
# exposes the raw content of the buffer
|
63
|
+
attr_reader :content
|
64
|
+
|
65
|
+
# the current position of the pointer in the buffer
|
66
|
+
attr_accessor :position
|
67
|
+
|
68
|
+
# Creates a new buffer, initialized to the given content. The position
|
69
|
+
# is initialized to the beginning of the buffer.
|
70
|
+
def initialize(content="")
|
71
|
+
@content = content.to_s
|
72
|
+
@position = 0
|
73
|
+
end
|
74
|
+
|
75
|
+
# Returns the length of the buffer's content.
|
76
|
+
def length
|
77
|
+
@content.length
|
78
|
+
end
|
79
|
+
|
80
|
+
# Returns the number of bytes available to be read (e.g., how many bytes
|
81
|
+
# remain between the current position and the end of the buffer).
|
82
|
+
def available
|
83
|
+
length - position
|
84
|
+
end
|
85
|
+
|
86
|
+
# Returns a copy of the buffer's content.
|
87
|
+
def to_s
|
88
|
+
(@content || "").dup
|
89
|
+
end
|
90
|
+
|
91
|
+
# Compares the contents of the two buffers, returning +true+ only if they
|
92
|
+
# are identical in size and content.
|
93
|
+
def ==(buffer)
|
94
|
+
to_s == buffer.to_s
|
95
|
+
end
|
96
|
+
|
97
|
+
# Returns +true+ if the buffer contains no data (e.g., it is of zero length).
|
98
|
+
def empty?
|
99
|
+
@content.empty?
|
100
|
+
end
|
101
|
+
|
102
|
+
# Resets the pointer to the start of the buffer. Subsequent reads will
|
103
|
+
# begin at position 0.
|
104
|
+
def reset!
|
105
|
+
@position = 0
|
106
|
+
end
|
107
|
+
|
108
|
+
# Returns true if the pointer is at the end of the buffer. Subsequent
|
109
|
+
# reads will return nil, in this case.
|
110
|
+
def eof?
|
111
|
+
@position >= length
|
112
|
+
end
|
113
|
+
|
114
|
+
# Resets the buffer, making it empty. Also, resets the read position to
|
115
|
+
# 0.
|
116
|
+
def clear!
|
117
|
+
@content = ""
|
118
|
+
@position = 0
|
119
|
+
end
|
120
|
+
|
121
|
+
# Consumes n bytes from the buffer, where n is the current position
|
122
|
+
# unless otherwise specified. This is useful for removing data from the
|
123
|
+
# buffer that has previously been read, when you are expecting more data
|
124
|
+
# to be appended. It helps to keep the size of buffers down when they
|
125
|
+
# would otherwise tend to grow without bound.
|
126
|
+
#
|
127
|
+
# Returns the buffer object itself.
|
128
|
+
def consume!(n=position)
|
129
|
+
if n >= length
|
130
|
+
# optimize for a fairly common case
|
131
|
+
clear!
|
132
|
+
elsif n > 0
|
133
|
+
@content = @content[n..-1] || ""
|
134
|
+
@position -= n
|
135
|
+
@position = 0 if @position < 0
|
136
|
+
end
|
137
|
+
self
|
138
|
+
end
|
139
|
+
|
140
|
+
# Appends the given text to the end of the buffer. Does not alter the
|
141
|
+
# read position. Returns the buffer object itself.
|
142
|
+
def append(text)
|
143
|
+
@content << text
|
144
|
+
self
|
145
|
+
end
|
146
|
+
|
147
|
+
# Returns all text from the current pointer to the end of the buffer as
|
148
|
+
# a new Net::SSH::Buffer object.
|
149
|
+
def remainder_as_buffer
|
150
|
+
Buffer.new(@content[@position..-1])
|
151
|
+
end
|
152
|
+
|
153
|
+
# Reads all data up to and including the given pattern, which may be a
|
154
|
+
# String, Fixnum, or Regexp and is interpreted exactly as String#index
|
155
|
+
# does. Returns nil if nothing matches. Increments the position to point
|
156
|
+
# immediately after the pattern, if it does match. Returns all data up to
|
157
|
+
# and including the text that matched the pattern.
|
158
|
+
def read_to(pattern)
|
159
|
+
index = @content.index(pattern, @position) or return nil
|
160
|
+
length = case pattern
|
161
|
+
when String then pattern.length
|
162
|
+
when Fixnum then 1
|
163
|
+
when Regexp then $&.length
|
164
|
+
end
|
165
|
+
index && read(index+length)
|
166
|
+
end
|
167
|
+
|
168
|
+
# Reads and returns the next +count+ bytes from the buffer, starting from
|
169
|
+
# the read position. If +count+ is +nil+, this will return all remaining
|
170
|
+
# text in the buffer. This method will increment the pointer.
|
171
|
+
def read(count=nil)
|
172
|
+
count ||= length
|
173
|
+
count = length - @position if @position + count > length
|
174
|
+
@position += count
|
175
|
+
@content[@position-count, count]
|
176
|
+
end
|
177
|
+
|
178
|
+
# Reads (as #read) and returns the given number of bytes from the buffer,
|
179
|
+
# and then consumes (as #consume!) all data up to the new read position.
|
180
|
+
def read!(count=nil)
|
181
|
+
data = read(count)
|
182
|
+
consume!
|
183
|
+
data
|
184
|
+
end
|
185
|
+
|
186
|
+
# Return the next 8 bytes as a 64-bit integer (in network byte order).
|
187
|
+
# Returns nil if there are less than 8 bytes remaining to be read in the
|
188
|
+
# buffer.
|
189
|
+
def read_int64
|
190
|
+
hi = read_long or return nil
|
191
|
+
lo = read_long or return nil
|
192
|
+
return (hi << 32) + lo
|
193
|
+
end
|
194
|
+
|
195
|
+
# Return the next four bytes as a long integer (in network byte order).
|
196
|
+
# Returns nil if there are less than 4 bytes remaining to be read in the
|
197
|
+
# buffer.
|
198
|
+
def read_long
|
199
|
+
b = read(4) or return nil
|
200
|
+
b.unpack("N").first
|
201
|
+
end
|
202
|
+
|
203
|
+
# Read and return the next byte in the buffer. Returns nil if called at
|
204
|
+
# the end of the buffer.
|
205
|
+
def read_byte
|
206
|
+
b = read(1) or return nil
|
207
|
+
b.getbyte(0)
|
208
|
+
end
|
209
|
+
|
210
|
+
# Read and return an SSH2-encoded string. The string starts with a long
|
211
|
+
# integer that describes the number of bytes remaining in the string.
|
212
|
+
# Returns nil if there are not enough bytes to satisfy the request.
|
213
|
+
def read_string
|
214
|
+
length = read_long or return nil
|
215
|
+
read(length)
|
216
|
+
end
|
217
|
+
|
218
|
+
# Read a single byte and convert it into a boolean, using 'C' rules
|
219
|
+
# (i.e., zero is false, non-zero is true).
|
220
|
+
def read_bool
|
221
|
+
b = read_byte or return nil
|
222
|
+
b != 0
|
223
|
+
end
|
224
|
+
|
225
|
+
# Read a bignum (OpenSSL::BN) from the buffer, in SSH2 format. It is
|
226
|
+
# essentially just a string, which is reinterpreted to be a bignum in
|
227
|
+
# binary format.
|
228
|
+
def read_bignum
|
229
|
+
data = read_string
|
230
|
+
return unless data
|
231
|
+
OpenSSL::BN.new(data, 2)
|
232
|
+
end
|
233
|
+
|
234
|
+
# Read a key from the buffer. The key will start with a string
|
235
|
+
# describing its type. The remainder of the key is defined by the
|
236
|
+
# type that was read.
|
237
|
+
def read_key
|
238
|
+
type = read_string
|
239
|
+
return (type ? read_keyblob(type) : nil)
|
240
|
+
end
|
241
|
+
|
242
|
+
# Read a keyblob of the given type from the buffer, and return it as
|
243
|
+
# a key. Only RSA, DSA, and ECDSA keys are supported.
|
244
|
+
def read_keyblob(type)
|
245
|
+
case type
|
246
|
+
when "ssh-dss"
|
247
|
+
key = OpenSSL::PKey::DSA.new
|
248
|
+
key.p = read_bignum
|
249
|
+
key.q = read_bignum
|
250
|
+
key.g = read_bignum
|
251
|
+
key.pub_key = read_bignum
|
252
|
+
|
253
|
+
when "ssh-rsa"
|
254
|
+
key = OpenSSL::PKey::RSA.new
|
255
|
+
key.e = read_bignum
|
256
|
+
key.n = read_bignum
|
257
|
+
|
258
|
+
when /^ecdsa\-sha2\-(\w*)$/
|
259
|
+
unless defined?(OpenSSL::PKey::EC)
|
260
|
+
raise NotImplementedError, "unsupported key type `#{type}'"
|
261
|
+
else
|
262
|
+
begin
|
263
|
+
key = OpenSSL::PKey::EC.read_keyblob($1, self)
|
264
|
+
rescue OpenSSL::PKey::ECError => e
|
265
|
+
raise NotImplementedError, "unsupported key type `#{type}'"
|
266
|
+
end
|
267
|
+
end
|
268
|
+
else
|
269
|
+
raise NotImplementedError, "unsupported key type `#{type}'"
|
270
|
+
end
|
271
|
+
|
272
|
+
return key
|
273
|
+
end
|
274
|
+
|
275
|
+
# Reads the next string from the buffer, and returns a new Buffer
|
276
|
+
# object that wraps it.
|
277
|
+
def read_buffer
|
278
|
+
Buffer.new(read_string)
|
279
|
+
end
|
280
|
+
|
281
|
+
# Writes the given data literally into the string. Does not alter the
|
282
|
+
# read position. Returns the buffer object.
|
283
|
+
def write(*data)
|
284
|
+
data.each { |datum| @content << datum }
|
285
|
+
self
|
286
|
+
end
|
287
|
+
|
288
|
+
# Writes each argument to the buffer as a network-byte-order-encoded
|
289
|
+
# 64-bit integer (8 bytes). Does not alter the read position. Returns the
|
290
|
+
# buffer object.
|
291
|
+
def write_int64(*n)
|
292
|
+
n.each do |i|
|
293
|
+
hi = (i >> 32) & 0xFFFFFFFF
|
294
|
+
lo = i & 0xFFFFFFFF
|
295
|
+
@content << [hi, lo].pack("N2")
|
296
|
+
end
|
297
|
+
self
|
298
|
+
end
|
299
|
+
|
300
|
+
# Writes each argument to the buffer as a network-byte-order-encoded
|
301
|
+
# long (4-byte) integer. Does not alter the read position. Returns the
|
302
|
+
# buffer object.
|
303
|
+
def write_long(*n)
|
304
|
+
@content << n.pack("N*")
|
305
|
+
self
|
306
|
+
end
|
307
|
+
|
308
|
+
# Writes each argument to the buffer as a byte. Does not alter the read
|
309
|
+
# position. Returns the buffer object.
|
310
|
+
def write_byte(*n)
|
311
|
+
n.each { |b| @content << b.chr }
|
312
|
+
self
|
313
|
+
end
|
314
|
+
|
315
|
+
# Writes each argument to the buffer as an SSH2-encoded string. Each
|
316
|
+
# string is prefixed by its length, encoded as a 4-byte long integer.
|
317
|
+
# Does not alter the read position. Returns the buffer object.
|
318
|
+
def write_string(*text)
|
319
|
+
text.each do |string|
|
320
|
+
s = string.to_s
|
321
|
+
write_long(s.length)
|
322
|
+
write(s)
|
323
|
+
end
|
324
|
+
self
|
325
|
+
end
|
326
|
+
|
327
|
+
# Writes each argument to the buffer as a (C-style) boolean, with 1
|
328
|
+
# meaning true, and 0 meaning false. Does not alter the read position.
|
329
|
+
# Returns the buffer object.
|
330
|
+
def write_bool(*b)
|
331
|
+
b.each { |v| @content << (v ? "\1" : "\0") }
|
332
|
+
self
|
333
|
+
end
|
334
|
+
|
335
|
+
# Writes each argument to the buffer as a bignum (SSH2-style). No
|
336
|
+
# checking is done to ensure that the arguments are, in fact, bignums.
|
337
|
+
# Does not alter the read position. Returns the buffer object.
|
338
|
+
def write_bignum(*n)
|
339
|
+
@content << n.map { |b| b.to_ssh }.join
|
340
|
+
self
|
341
|
+
end
|
342
|
+
|
343
|
+
# Writes the given arguments to the buffer as SSH2-encoded keys. Does not
|
344
|
+
# alter the read position. Returns the buffer object.
|
345
|
+
def write_key(*key)
|
346
|
+
key.each { |k| append(k.to_blob) }
|
347
|
+
self
|
348
|
+
end
|
349
|
+
end
|
350
|
+
end; end;
|
@@ -0,0 +1,198 @@
|
|
1
|
+
require 'net/ssh/buffer'
|
2
|
+
require 'net/ssh/loggable'
|
3
|
+
require 'net/ssh/ruby_compat'
|
4
|
+
|
5
|
+
module Net; module SSH
|
6
|
+
|
7
|
+
# This module is used to extend sockets and other IO objects, to allow
|
8
|
+
# them to be buffered for both read and write. This abstraction makes it
|
9
|
+
# quite easy to write a select-based event loop
|
10
|
+
# (see Net::SSH::Connection::Session#listen_to).
|
11
|
+
#
|
12
|
+
# The general idea is that instead of calling #read directly on an IO that
|
13
|
+
# has been extended with this module, you call #fill (to add pending input
|
14
|
+
# to the internal read buffer), and then #read_available (to read from that
|
15
|
+
# buffer). Likewise, you don't call #write directly, you call #enqueue to
|
16
|
+
# add data to the write buffer, and then #send_pending or #wait_for_pending_sends
|
17
|
+
# to actually send the data across the wire.
|
18
|
+
#
|
19
|
+
# In this way you can easily use the object as an argument to IO.select,
|
20
|
+
# calling #fill when it is available for read, or #send_pending when it is
|
21
|
+
# available for write, and then call #enqueue and #read_available during
|
22
|
+
# the idle times.
|
23
|
+
#
|
24
|
+
# socket = TCPSocket.new(address, port)
|
25
|
+
# socket.extend(Net::SSH::BufferedIo)
|
26
|
+
#
|
27
|
+
# ssh.listen_to(socket)
|
28
|
+
#
|
29
|
+
# ssh.loop do
|
30
|
+
# if socket.available > 0
|
31
|
+
# puts socket.read_available
|
32
|
+
# socket.enqueue("response\n")
|
33
|
+
# end
|
34
|
+
# end
|
35
|
+
#
|
36
|
+
# Note that this module must be used to extend an instance, and should not
|
37
|
+
# be included in a class. If you do want to use it via an include, then you
|
38
|
+
# must make sure to invoke the private #initialize_buffered_io method in
|
39
|
+
# your class' #initialize method:
|
40
|
+
#
|
41
|
+
# class Foo < IO
|
42
|
+
# include Net::SSH::BufferedIo
|
43
|
+
#
|
44
|
+
# def initialize
|
45
|
+
# initialize_buffered_io
|
46
|
+
# # ...
|
47
|
+
# end
|
48
|
+
# end
|
49
|
+
module BufferedIo
|
50
|
+
include Loggable
|
51
|
+
|
52
|
+
# Called when the #extend is called on an object, with this module as the
|
53
|
+
# argument. It ensures that the modules instance variables are all properly
|
54
|
+
# initialized.
|
55
|
+
def self.extended(object) #:nodoc:
|
56
|
+
# need to use __send__ because #send is overridden in Socket
|
57
|
+
object.__send__(:initialize_buffered_io)
|
58
|
+
end
|
59
|
+
|
60
|
+
# Tries to read up to +n+ bytes of data from the remote end, and appends
|
61
|
+
# the data to the input buffer. It returns the number of bytes read, or 0
|
62
|
+
# if no data was available to be read.
|
63
|
+
def fill(n=8192)
|
64
|
+
input.consume!
|
65
|
+
data = recv(n)
|
66
|
+
debug { "read #{data.length} bytes" }
|
67
|
+
input.append(data)
|
68
|
+
return data.length
|
69
|
+
end
|
70
|
+
|
71
|
+
# Read up to +length+ bytes from the input buffer. If +length+ is nil,
|
72
|
+
# all available data is read from the buffer. (See #available.)
|
73
|
+
def read_available(length=nil)
|
74
|
+
input.read(length || available)
|
75
|
+
end
|
76
|
+
|
77
|
+
# Returns the number of bytes available to be read from the input buffer.
|
78
|
+
# (See #read_available.)
|
79
|
+
def available
|
80
|
+
input.available
|
81
|
+
end
|
82
|
+
|
83
|
+
# Enqueues data in the output buffer, to be written when #send_pending
|
84
|
+
# is called. Note that the data is _not_ sent immediately by this method!
|
85
|
+
def enqueue(data)
|
86
|
+
output.append(data)
|
87
|
+
end
|
88
|
+
|
89
|
+
# Returns +true+ if there is data waiting in the output buffer, and
|
90
|
+
# +false+ otherwise.
|
91
|
+
def pending_write?
|
92
|
+
output.length > 0
|
93
|
+
end
|
94
|
+
|
95
|
+
# Sends as much of the pending output as possible. Returns +true+ if any
|
96
|
+
# data was sent, and +false+ otherwise.
|
97
|
+
def send_pending
|
98
|
+
if output.length > 0
|
99
|
+
sent = send(output.to_s, 0)
|
100
|
+
debug { "sent #{sent} bytes" }
|
101
|
+
output.consume!(sent)
|
102
|
+
return sent > 0
|
103
|
+
else
|
104
|
+
return false
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
# Calls #send_pending repeatedly, if necessary, blocking until the output
|
109
|
+
# buffer is empty.
|
110
|
+
def wait_for_pending_sends
|
111
|
+
send_pending
|
112
|
+
while output.length > 0
|
113
|
+
result = Net::SSH::Compat.io_select(nil, [self]) or next
|
114
|
+
next unless result[1].any?
|
115
|
+
send_pending
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
public # these methods are primarily for use in tests
|
120
|
+
|
121
|
+
def write_buffer #:nodoc:
|
122
|
+
output.to_s
|
123
|
+
end
|
124
|
+
|
125
|
+
def read_buffer #:nodoc:
|
126
|
+
input.to_s
|
127
|
+
end
|
128
|
+
|
129
|
+
private
|
130
|
+
|
131
|
+
#--
|
132
|
+
# Can't use attr_reader here (after +private+) without incurring the
|
133
|
+
# wrath of "ruby -w". We hates it.
|
134
|
+
#++
|
135
|
+
|
136
|
+
def input; @input; end
|
137
|
+
def output; @output; end
|
138
|
+
|
139
|
+
# Initializes the intput and output buffers for this object. This method
|
140
|
+
# is called automatically when the module is mixed into an object via
|
141
|
+
# Object#extend (see Net::SSH::BufferedIo.extended), but must be called
|
142
|
+
# explicitly in the +initialize+ method of any class that uses
|
143
|
+
# Module#include to add this module.
|
144
|
+
def initialize_buffered_io
|
145
|
+
@input = Net::SSH::Buffer.new
|
146
|
+
@output = Net::SSH::Buffer.new
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
# Fixes for two issues by Miklós Fazekas:
|
153
|
+
#
|
154
|
+
# * if client closes a forwarded connection, but the server is
|
155
|
+
# reading, net-ssh terminates with IOError socket closed.
|
156
|
+
# * if client force closes (RST) a forwarded connection, but
|
157
|
+
# server is reading, net-ssh terminates with [an exception]
|
158
|
+
#
|
159
|
+
# See:
|
160
|
+
#
|
161
|
+
# http://net-ssh.lighthouseapp.com/projects/36253/tickets/7
|
162
|
+
# http://github.com/net-ssh/net-ssh/tree/portfwfix
|
163
|
+
#
|
164
|
+
module ForwardedBufferedIo
|
165
|
+
def fill(n=8192)
|
166
|
+
begin
|
167
|
+
super(n)
|
168
|
+
rescue Errno::ECONNRESET => e
|
169
|
+
debug { "connection was reset => shallowing exception:#{e}" }
|
170
|
+
return 0
|
171
|
+
rescue IOError => e
|
172
|
+
if e.message =~ /closed/ then
|
173
|
+
debug { "connection was reset => shallowing exception:#{e}" }
|
174
|
+
return 0
|
175
|
+
else
|
176
|
+
raise
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
def send_pending
|
182
|
+
begin
|
183
|
+
super
|
184
|
+
rescue Errno::ECONNRESET => e
|
185
|
+
debug { "connection was reset => shallowing exception:#{e}" }
|
186
|
+
return 0
|
187
|
+
rescue IOError => e
|
188
|
+
if e.message =~ /closed/ then
|
189
|
+
debug { "connection was reset => shallowing exception:#{e}" }
|
190
|
+
return 0
|
191
|
+
else
|
192
|
+
raise
|
193
|
+
end
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
end; end
|