net-ssh 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (179) hide show
  1. data/doc/LICENSE-BSD +27 -0
  2. data/doc/LICENSE-GPL +280 -0
  3. data/doc/LICENSE-RUBY +56 -0
  4. data/doc/README +13 -0
  5. data/doc/manual-html/chapter-1.html +333 -0
  6. data/doc/manual-html/chapter-2.html +455 -0
  7. data/doc/manual-html/chapter-3.html +413 -0
  8. data/doc/manual-html/chapter-4.html +353 -0
  9. data/doc/manual-html/chapter-5.html +393 -0
  10. data/doc/manual-html/chapter-6.html +296 -0
  11. data/doc/manual-html/index.html +217 -0
  12. data/doc/manual-html/manual.css +192 -0
  13. data/doc/manual/chapter.erb +18 -0
  14. data/doc/manual/example.erb +18 -0
  15. data/doc/manual/index.erb +29 -0
  16. data/doc/manual/manual.css +192 -0
  17. data/doc/manual/manual.rb +240 -0
  18. data/doc/manual/manual.yml +67 -0
  19. data/doc/manual/page.erb +87 -0
  20. data/doc/manual/parts/channels_callbacks.txt +32 -0
  21. data/doc/manual/parts/channels_loop.txt +14 -0
  22. data/doc/manual/parts/channels_open.txt +20 -0
  23. data/doc/manual/parts/channels_operations.txt +15 -0
  24. data/doc/manual/parts/channels_types.txt +3 -0
  25. data/doc/manual/parts/channels_what_are.txt +7 -0
  26. data/doc/manual/parts/exec_channels.txt +28 -0
  27. data/doc/manual/parts/exec_open.txt +51 -0
  28. data/doc/manual/parts/exec_popen3.txt +35 -0
  29. data/doc/manual/parts/forward_direct.txt +37 -0
  30. data/doc/manual/parts/forward_handlers.txt +16 -0
  31. data/doc/manual/parts/forward_intro.txt +18 -0
  32. data/doc/manual/parts/forward_local.txt +18 -0
  33. data/doc/manual/parts/forward_remote.txt +14 -0
  34. data/doc/manual/parts/intro_author.txt +1 -0
  35. data/doc/manual/parts/intro_getting.txt +39 -0
  36. data/doc/manual/parts/intro_license.txt +6 -0
  37. data/doc/manual/parts/intro_support.txt +7 -0
  38. data/doc/manual/parts/intro_what_is.txt +7 -0
  39. data/doc/manual/parts/intro_what_is_not.txt +3 -0
  40. data/doc/manual/parts/proxy_http.txt +52 -0
  41. data/doc/manual/parts/proxy_intro.txt +1 -0
  42. data/doc/manual/parts/proxy_socks.txt +23 -0
  43. data/doc/manual/parts/session_key.txt +66 -0
  44. data/doc/manual/parts/session_options.txt +42 -0
  45. data/doc/manual/parts/session_session.txt +14 -0
  46. data/doc/manual/parts/session_start.txt +49 -0
  47. data/doc/manual/tutorial.erb +30 -0
  48. data/examples/channel-demo.rb +81 -0
  49. data/examples/port-forward.rb +51 -0
  50. data/examples/process-demo.rb +91 -0
  51. data/examples/remote-net-port-forward.rb +45 -0
  52. data/examples/remote-port-forward.rb +80 -0
  53. data/examples/tail-demo.rb +49 -0
  54. data/lib/net/ssh.rb +52 -0
  55. data/lib/net/ssh/connection/channel.rb +411 -0
  56. data/lib/net/ssh/connection/constants.rb +47 -0
  57. data/lib/net/ssh/connection/driver.rb +343 -0
  58. data/lib/net/ssh/connection/services.rb +72 -0
  59. data/lib/net/ssh/connection/term.rb +90 -0
  60. data/lib/net/ssh/errors.rb +27 -0
  61. data/lib/net/ssh/proxy/errors.rb +34 -0
  62. data/lib/net/ssh/proxy/http.rb +126 -0
  63. data/lib/net/ssh/proxy/socks4.rb +83 -0
  64. data/lib/net/ssh/proxy/socks5.rb +160 -0
  65. data/lib/net/ssh/service/forward/driver.rb +319 -0
  66. data/lib/net/ssh/service/forward/local-network-handler.rb +74 -0
  67. data/lib/net/ssh/service/forward/remote-network-handler.rb +81 -0
  68. data/lib/net/ssh/service/forward/services.rb +76 -0
  69. data/lib/net/ssh/service/process/driver.rb +153 -0
  70. data/lib/net/ssh/service/process/open.rb +193 -0
  71. data/lib/net/ssh/service/process/popen3.rb +160 -0
  72. data/lib/net/ssh/service/process/services.rb +66 -0
  73. data/lib/net/ssh/service/services.rb +44 -0
  74. data/lib/net/ssh/session.rb +242 -0
  75. data/lib/net/ssh/transport/algorithm-negotiator.rb +267 -0
  76. data/lib/net/ssh/transport/compress/compressor.rb +53 -0
  77. data/lib/net/ssh/transport/compress/decompressor.rb +53 -0
  78. data/lib/net/ssh/transport/compress/none-compressor.rb +39 -0
  79. data/lib/net/ssh/transport/compress/none-decompressor.rb +39 -0
  80. data/lib/net/ssh/transport/compress/services.rb +68 -0
  81. data/lib/net/ssh/transport/compress/zlib-compressor.rb +60 -0
  82. data/lib/net/ssh/transport/compress/zlib-decompressor.rb +52 -0
  83. data/lib/net/ssh/transport/constants.rb +66 -0
  84. data/lib/net/ssh/transport/errors.rb +47 -0
  85. data/lib/net/ssh/transport/identity-cipher.rb +61 -0
  86. data/lib/net/ssh/transport/kex/dh-gex.rb +106 -0
  87. data/lib/net/ssh/transport/kex/dh.rb +231 -0
  88. data/lib/net/ssh/transport/kex/services.rb +60 -0
  89. data/lib/net/ssh/transport/ossl/buffer-factory.rb +52 -0
  90. data/lib/net/ssh/transport/ossl/buffer.rb +87 -0
  91. data/lib/net/ssh/transport/ossl/cipher-factory.rb +98 -0
  92. data/lib/net/ssh/transport/ossl/digest-factory.rb +51 -0
  93. data/lib/net/ssh/transport/ossl/hmac-factory.rb +71 -0
  94. data/lib/net/ssh/transport/ossl/hmac/hmac.rb +62 -0
  95. data/lib/net/ssh/transport/ossl/hmac/md5-96.rb +44 -0
  96. data/lib/net/ssh/transport/ossl/hmac/md5.rb +46 -0
  97. data/lib/net/ssh/transport/ossl/hmac/none.rb +46 -0
  98. data/lib/net/ssh/transport/ossl/hmac/services.rb +68 -0
  99. data/lib/net/ssh/transport/ossl/hmac/sha1-96.rb +44 -0
  100. data/lib/net/ssh/transport/ossl/hmac/sha1.rb +45 -0
  101. data/lib/net/ssh/transport/ossl/key-factory.rb +113 -0
  102. data/lib/net/ssh/transport/ossl/services.rb +149 -0
  103. data/lib/net/ssh/transport/packet-stream.rb +210 -0
  104. data/lib/net/ssh/transport/services.rb +146 -0
  105. data/lib/net/ssh/transport/session.rb +296 -0
  106. data/lib/net/ssh/transport/version-negotiator.rb +73 -0
  107. data/lib/net/ssh/userauth/agent.rb +218 -0
  108. data/lib/net/ssh/userauth/constants.rb +35 -0
  109. data/lib/net/ssh/userauth/driver.rb +176 -0
  110. data/lib/net/ssh/userauth/methods/hostbased.rb +119 -0
  111. data/lib/net/ssh/userauth/methods/password.rb +70 -0
  112. data/lib/net/ssh/userauth/methods/publickey.rb +137 -0
  113. data/lib/net/ssh/userauth/methods/services.rb +63 -0
  114. data/lib/net/ssh/userauth/services.rb +126 -0
  115. data/lib/net/ssh/userauth/userkeys.rb +258 -0
  116. data/lib/net/ssh/util/buffer.rb +274 -0
  117. data/lib/net/ssh/util/openssl.rb +146 -0
  118. data/lib/net/ssh/util/prompter.rb +73 -0
  119. data/lib/net/ssh/version.rb +29 -0
  120. data/test/ALL-TESTS.rb +21 -0
  121. data/test/connection/tc_channel.rb +136 -0
  122. data/test/connection/tc_driver.rb +287 -0
  123. data/test/connection/tc_integration.rb +85 -0
  124. data/test/proxy/tc_http.rb +209 -0
  125. data/test/proxy/tc_socks4.rb +148 -0
  126. data/test/proxy/tc_socks5.rb +214 -0
  127. data/test/service/forward/tc_driver.rb +289 -0
  128. data/test/service/forward/tc_local_network_handler.rb +123 -0
  129. data/test/service/forward/tc_remote_network_handler.rb +108 -0
  130. data/test/service/process/tc_driver.rb +79 -0
  131. data/test/service/process/tc_integration.rb +117 -0
  132. data/test/service/process/tc_open.rb +179 -0
  133. data/test/service/process/tc_popen3.rb +164 -0
  134. data/test/tc_integration.rb +79 -0
  135. data/test/transport/compress/tc_none_compress.rb +41 -0
  136. data/test/transport/compress/tc_none_decompress.rb +45 -0
  137. data/test/transport/compress/tc_zlib_compress.rb +61 -0
  138. data/test/transport/compress/tc_zlib_decompress.rb +48 -0
  139. data/test/transport/kex/tc_dh.rb +304 -0
  140. data/test/transport/kex/tc_dh_gex.rb +70 -0
  141. data/test/transport/ossl/fixtures/dsa-encrypted +15 -0
  142. data/test/transport/ossl/fixtures/dsa-encrypted-bad +15 -0
  143. data/test/transport/ossl/fixtures/dsa-unencrypted +12 -0
  144. data/test/transport/ossl/fixtures/dsa-unencrypted-bad +12 -0
  145. data/test/transport/ossl/fixtures/dsa-unencrypted.pub +1 -0
  146. data/test/transport/ossl/fixtures/not-a-private-key +4 -0
  147. data/test/transport/ossl/fixtures/not-supported +2 -0
  148. data/test/transport/ossl/fixtures/rsa-encrypted +18 -0
  149. data/test/transport/ossl/fixtures/rsa-encrypted-bad +18 -0
  150. data/test/transport/ossl/fixtures/rsa-unencrypted +15 -0
  151. data/test/transport/ossl/fixtures/rsa-unencrypted-bad +15 -0
  152. data/test/transport/ossl/fixtures/rsa-unencrypted.pub +1 -0
  153. data/test/transport/ossl/hmac/tc_hmac.rb +58 -0
  154. data/test/transport/ossl/hmac/tc_md5.rb +50 -0
  155. data/test/transport/ossl/hmac/tc_md5_96.rb +50 -0
  156. data/test/transport/ossl/hmac/tc_none.rb +50 -0
  157. data/test/transport/ossl/hmac/tc_sha1.rb +50 -0
  158. data/test/transport/ossl/hmac/tc_sha1_96.rb +50 -0
  159. data/test/transport/ossl/tc_buffer.rb +97 -0
  160. data/test/transport/ossl/tc_buffer_factory.rb +67 -0
  161. data/test/transport/ossl/tc_cipher_factory.rb +84 -0
  162. data/test/transport/ossl/tc_digest_factory.rb +39 -0
  163. data/test/transport/ossl/tc_hmac_factory.rb +72 -0
  164. data/test/transport/ossl/tc_key_factory.rb +199 -0
  165. data/test/transport/tc_algorithm_negotiator.rb +169 -0
  166. data/test/transport/tc_identity_cipher.rb +52 -0
  167. data/test/transport/tc_integration.rb +110 -0
  168. data/test/transport/tc_packet_stream.rb +183 -0
  169. data/test/transport/tc_session.rb +283 -0
  170. data/test/transport/tc_version_negotiator.rb +86 -0
  171. data/test/userauth/methods/tc_hostbased.rb +136 -0
  172. data/test/userauth/methods/tc_password.rb +89 -0
  173. data/test/userauth/methods/tc_publickey.rb +167 -0
  174. data/test/userauth/tc_agent.rb +223 -0
  175. data/test/userauth/tc_driver.rb +190 -0
  176. data/test/userauth/tc_integration.rb +81 -0
  177. data/test/userauth/tc_userkeys.rb +265 -0
  178. data/test/util/tc_buffer.rb +217 -0
  179. metadata +256 -0
@@ -0,0 +1,258 @@
1
+ #--
2
+ # =============================================================================
3
+ # Copyright (c) 2004, Jamis Buck (jgb3@email.byu.edu)
4
+ # All rights reserved.
5
+ #
6
+ # This source file is distributed as part of the Net::SSH Secure Shell Client
7
+ # library for Ruby. This file (and the library as a whole) may be used only as
8
+ # allowed by either the BSD license, or the Ruby license (or, by association
9
+ # with the Ruby license, the GPL). See the "doc" subdirectory of the Net::SSH
10
+ # distribution for the texts of these licenses.
11
+ # -----------------------------------------------------------------------------
12
+ # net-ssh website : http://net-ssh.rubyforge.org
13
+ # project website: http://rubyforge.org/projects/net-ssh
14
+ # =============================================================================
15
+ #++
16
+
17
+ require 'net/ssh/errors'
18
+
19
+ module Net
20
+ module SSH
21
+ module UserAuth
22
+
23
+ # A trivial exception class used to report errors in the key manager.
24
+ class UserKeyManagerError < Net::SSH::Exception; end
25
+
26
+ # This class encapsulates all operations done by clients on a user's
27
+ # private keys. In practice, the client should never need a reference
28
+ # to a private key; instead, they grab a list of "identities" (public
29
+ # keys) that are available from the UserKeyManager, and then use
30
+ # the UserKeyManager to do various private key operations using those
31
+ # identities.
32
+ #
33
+ # The UserKeyManager also uses the Agent class to encapsulate the
34
+ # ssh-agent. Thus, from a client's perspective it is completely
35
+ # hidden whether an identity comes from the ssh-agent or from a file
36
+ # on disk.
37
+ class UserKeyManager
38
+
39
+ # The agent factory to use when a new agent instance is needed.
40
+ attr_writer :agent_factory
41
+
42
+ # The key manager instance to use for managing keys
43
+ attr_writer :keys
44
+
45
+ # The logger instance to use for logging messages
46
+ attr_writer :log
47
+
48
+ # The buffer manager to use for providing new buffer instances.
49
+ attr_writer :buffers
50
+
51
+ # The object that will be used to test whether a given key file is
52
+ # readable. This object must only respond to "readable?" with one
53
+ # parameter, the file to test the readability of.
54
+ attr_writer :key_existence_tester
55
+
56
+ # The list of user key files that will be examined
57
+ attr_reader :key_files
58
+
59
+ # The list of host key files that will be examined
60
+ attr_reader :host_key_files
61
+
62
+ # Create a new UserKeyManager. By default, the manager will
63
+ # use the ssh-agent (if it is running).
64
+ def initialize
65
+ @key_files = []
66
+ @host_key_files = []
67
+ @use_agent = true
68
+ @agent = nil
69
+ end
70
+
71
+ # Clear all knowledge of any loaded user keys. This also clears the list
72
+ # of default identity files that are to be loaded, thus making it
73
+ # appropriate to use if a client wishes to NOT use the default identity
74
+ # files.
75
+ def clear!
76
+ @key_files = []
77
+ @known_identities = nil
78
+ self
79
+ end
80
+
81
+ # Clear all knowledge of any loaded host keys. This also clears the list
82
+ # of default identity files that are to be loaded, thus making it
83
+ # appropriate to use if a client wishes to NOT use the default identity
84
+ # files.
85
+ def clear_host!
86
+ @host_key_files = []
87
+ @known_host_identities = nil
88
+ self
89
+ end
90
+
91
+ # Add the given key_file to the list of key files that will be used.
92
+ def add( key_file )
93
+ @key_files.push( key_file ).uniq!
94
+ self
95
+ end
96
+
97
+ alias :<< :add
98
+
99
+ # Add the given key_file to the list of host key files that will be
100
+ # used.
101
+ def add_host_key( key_file )
102
+ @host_key_files.push( key_file ).uniq!
103
+ self
104
+ end
105
+
106
+ # This is used as a hint to the UserKeyManager indicating that the agent
107
+ # connection is no longer needed. Any other open resources may be closed
108
+ # at this time.
109
+ #
110
+ # Calling this does NOT indicate that the UserKeyManager will no longer
111
+ # be used. Identities may still be requested and operations done on
112
+ # loaded identities, in which case, the agent will be automatically
113
+ # reconnected. This method simply allows the client connection to be
114
+ # closed when it will not be used in the immediate future.
115
+ def finish
116
+ close_agent
117
+ end
118
+
119
+ # Returns an array of identities (public keys) known to this manager.
120
+ # The origin of the identities may be from files on disk or from an
121
+ # ssh-agent. Note that identities from an ssh-agent are always listed
122
+ # first in the array, with other identities coming after.
123
+ def identities
124
+ identities = []
125
+ @known_identities = Hash.new
126
+
127
+ ensure_agent
128
+ if @agent
129
+ @agent.identities.each do |key|
130
+ identities.push key
131
+ @known_identities[ key ] = { :from => :agent }
132
+ end
133
+ end
134
+
135
+ @key_files.each do |file|
136
+ if @key_existence_tester.readable?( file )
137
+ begin
138
+ key = @keys.load_public_key( file + ".pub" )
139
+ identities.push key
140
+ @known_identities[ key ] = { :from => :file, :file => file }
141
+ rescue Exception => e
142
+ @log.warn "could not load public key file " +
143
+ "'#{file}.pub' (#{e.message} [#{e.class}])" if @log.warn?
144
+ end
145
+ end
146
+ end
147
+
148
+ identities
149
+ end
150
+
151
+ # Returns an array of host identities (public keys) known to this
152
+ # manager. Host identities are those that identify the current host,
153
+ # and are used (typically) for hostbased authentication.
154
+ def host_identities
155
+ identities = []
156
+ @known_host_identities = Hash.new
157
+
158
+ @host_key_files.each do |file|
159
+ if @key_existence_tester.readable?( file )
160
+ begin
161
+ key = @keys.load_public_key( file + ".pub" )
162
+ identities.push key
163
+ @known_host_identities[ key ] =
164
+ { :from => :file, :file => file }
165
+ rescue Exception => e
166
+ @log.warn "could not load public host key file " +
167
+ "'#{file}.pub' (#{e.message} [#{e.class}])" if @log.warn?
168
+ end
169
+ end
170
+ end
171
+
172
+ identities
173
+ end
174
+
175
+ # Sign the given data, using the corresponding private key of the given
176
+ # identity. If the identity was originally obtained from an ssh-agent,
177
+ # then the ssh-agent will be used to sign the data, otherwise the
178
+ # private key for the identity will be loaded from disk (if it hasn't
179
+ # been loaded already) and will then be used to sign the data.
180
+ #
181
+ # Regardless of the identity's origin or who does the signing, this
182
+ # will always return the signature in an SSH2-specified "signature
183
+ # blob" format.
184
+ def sign( identity, data )
185
+ info = find_identity( identity )
186
+
187
+ if info[:key].nil? && info[:from] == :file
188
+ begin
189
+ info[:key] = @keys.load_private_key( info[:file] )
190
+ rescue Exception => e
191
+ raise UserKeyManagerError,
192
+ "the given identity is known, " +
193
+ "but the private key could not be loaded " +
194
+ "(#{e.message} [#{e.class}])"
195
+ end
196
+ end
197
+
198
+ if info[:key]
199
+ sig_blob = @buffers.writer
200
+ sig_blob.write_string identity.ssh_type
201
+ sig_blob.write_string info[:key].ssh_do_sign( data.to_s )
202
+ return sig_blob.to_s
203
+ end
204
+
205
+ if info[:from] == :agent
206
+ raise UserKeyManagerError,
207
+ "the agent is no longer available" unless @agent
208
+ return @agent.sign( identity, data.to_s )
209
+ end
210
+
211
+ raise UserKeyManagerError,
212
+ "[BUG] can't determine identity origin (#{info.inspect})"
213
+ end
214
+
215
+ # Identifies whether the ssh-agent will be used or not.
216
+ def use_agent?
217
+ @use_agent
218
+ end
219
+
220
+ # Toggles whether the ssh-agent will be used or not. If true, an
221
+ # attempt will be made to use the ssh-agent. If false, any existing
222
+ # connection to an agent is closed and the agent will not be used.
223
+ def use_agent=( use_agent )
224
+ close_agent if !use_agent
225
+ @use_agent = use_agent
226
+ end
227
+
228
+ # Ensures that a connection to the agent has been made, if an agent is
229
+ # to be used.
230
+ def ensure_agent
231
+ return if @agent || !@use_agent
232
+ @agent = @agent_factory.open
233
+ end
234
+ private :ensure_agent
235
+
236
+ # Closes any open connection to an ssh-agent.
237
+ def close_agent
238
+ @agent.close if @agent
239
+ @agent = nil
240
+ end
241
+ private :close_agent
242
+
243
+ def find_identity( identity )
244
+ info = @known_identities[ identity ] if @known_identities
245
+ if !info && @known_host_identities[ identity ]
246
+ info = @known_host_identities[ identity ]
247
+ end
248
+ raise UserKeyManagerError,
249
+ "the given identity is unknown to the key manager" unless info
250
+ return info
251
+ end
252
+ private :find_identity
253
+
254
+ end
255
+
256
+ end
257
+ end
258
+ end
@@ -0,0 +1,274 @@
1
+ #--
2
+ # =============================================================================
3
+ # Copyright (c) 2004, Jamis Buck (jgb3@email.byu.edu)
4
+ # All rights reserved.
5
+ #
6
+ # This source file is distributed as part of the Net::SSH Secure Shell Client
7
+ # library for Ruby. This file (and the library as a whole) may be used only as
8
+ # allowed by either the BSD license, or the Ruby license (or, by association
9
+ # with the Ruby license, the GPL). See the "doc" subdirectory of the Net::SSH
10
+ # distribution for the texts of these licenses.
11
+ # -----------------------------------------------------------------------------
12
+ # net-ssh website : http://net-ssh.rubyforge.org
13
+ # project website: http://rubyforge.org/projects/net-ssh
14
+ # =============================================================================
15
+ #++
16
+
17
+ module Net
18
+ module SSH
19
+
20
+ module Util
21
+
22
+ # The abstract ancestor module of both ReaderBufferImpl and
23
+ # WriterBufferImpl. It defines the common interface for both submodules.
24
+ module BufferBase
25
+
26
+ # exposes the content of the buffer
27
+ attr_reader :content
28
+
29
+ # the length of the buffer's content.
30
+ def length
31
+ @content.length
32
+ end
33
+
34
+ # returns a copy of the buffer's content.
35
+ def to_s
36
+ ( @content || "" ).dup
37
+ end
38
+
39
+ # Compares the contents of the two buffers.
40
+ def ==( buffer )
41
+ to_s == buffer.to_s
42
+ end
43
+
44
+ # Resets the buffer, making it empty.
45
+ def clear!
46
+ @content = ""
47
+ end
48
+
49
+ def init_BufferBase( content="" )
50
+ @content = content
51
+ end
52
+ private :init_BufferBase
53
+
54
+ end
55
+
56
+ # A convenience module for representing a string of encoded data. It
57
+ # provides an interface for easily reading and decoding the buffer.
58
+ module ReaderBufferImpl
59
+
60
+ # the current position of the pointer in the buffer
61
+ attr_reader :position
62
+
63
+ # used by derived modules and classes to perform any
64
+ # reader-buffer-specific initialization.
65
+ def init_ReaderBufferImpl
66
+ @position = 0
67
+ end
68
+ private :init_ReaderBufferImpl
69
+
70
+ # Appends the given text to the end of the buffer.
71
+ def append( text )
72
+ @content << text
73
+ end
74
+
75
+ # Returns all text from the current pointer to the end of the buffer as
76
+ # a new buffer as the same class as the receiver.
77
+ def remainder_as_buffer
78
+ self.class.new( @content[ @position..-1 ] )
79
+ end
80
+
81
+ # Reads +count+ bytes from the buffer. If +count+ is +nil+, this will
82
+ # return all remaining text in the buffer. This method will increment
83
+ # the pointer.
84
+ def read( count = nil )
85
+ count = length - @position unless count
86
+ return nil if @position + count > length
87
+
88
+ @position += count
89
+ @content[ @position-count, count ]
90
+ end
91
+
92
+ # Return the next 8 bytes as a 64-bit integer (in network byte order).
93
+ def read_int64
94
+ hi = read_long
95
+ lo = read_long
96
+ return ( hi << 32 ) + lo
97
+ end
98
+
99
+ # Return the next four bytes as a long integer (in network byte order).
100
+ def read_long
101
+ b = read( 4 ) or return nil
102
+ b.unpack( "N" ).first
103
+ end
104
+
105
+ # Read the next two bytes as a short integer (in network byte order).
106
+ def read_short
107
+ b = read( 2 ) or return nil
108
+ b.unpack( "n" ).first
109
+ end
110
+
111
+ # Read and return the next byte in the buffer.
112
+ def read_byte
113
+ b = read( 1 ) or return nil
114
+ b[0]
115
+ end
116
+
117
+ # Read and return an SSH2-encoded string. The string starts with a long
118
+ # integer that describes the number of bytes remaining in the string.
119
+ def read_string
120
+ length = read_long or return nil
121
+ read( length )
122
+ end
123
+
124
+ # Read a single byte and convert it into a boolean, using 'C' rules
125
+ # (i.e., zero is false, non-zero is true).
126
+ def read_bool
127
+ b = read( 1 ) or return nil
128
+ b[0] != 0
129
+ end
130
+
131
+ # Resets the pointer to the start of the buffer.
132
+ def reset!
133
+ @position = 0
134
+ end
135
+
136
+ # Returns true if the pointer is at the end of the buffer.
137
+ def eof?
138
+ @position >= length
139
+ end
140
+
141
+ # Resets the buffer, making it empty.
142
+ def clear!
143
+ @content = ""
144
+ @position = 0
145
+ end
146
+
147
+ end # ReaderBufferImpl
148
+
149
+ # A convenience module for writing a string of encoded data. It provides
150
+ # an interface for easily writing and encoding data.
151
+ module WriterBufferImpl
152
+
153
+ def init_WriterBufferImpl
154
+ # nothing
155
+ end
156
+ private :init_WriterBufferImpl
157
+
158
+ # Writes the given data literally into the string.
159
+ def write( *data )
160
+ @content << data.join
161
+ end
162
+
163
+ # Writes each argument to the buffer as a network-byte-order-encoded
164
+ # 64-bit integer (8 bytes).
165
+ def write_int64( *n )
166
+ n.each do |i|
167
+ hi = ( i >> 32 ) & 0xFFFFFFFF
168
+ lo = i & 0xFFFFFFFF
169
+ @content << [ hi, lo ].pack( "N2" )
170
+ end
171
+ end
172
+
173
+ # Writes each argument to the buffer as a network-byte-order-encoded
174
+ # long (4-byte) integer.
175
+ def write_long( *n )
176
+ @content << n.pack( "N*" )
177
+ end
178
+
179
+ # Writes each argument to the buffer as a network-byte-order-encoded
180
+ # short (2-byte) integer.
181
+ def write_short( *n )
182
+ @content << n.pack( "n*" )
183
+ end
184
+
185
+ # Writes each argument to the buffer as a byte.
186
+ def write_byte( *n )
187
+ @content << n.map { |c| c.chr }.join
188
+ end
189
+
190
+ # Writes each argument to the buffer as an SSH2-encoded string. Each
191
+ # string is prefixed by its length, encoded as a 4-byte long integer.
192
+ def write_string( *text )
193
+ text.each do |string|
194
+ write_long( string.length )
195
+ write( string )
196
+ end
197
+ end
198
+
199
+ # Writes each argument to the buffer as a (C-style) boolean, with 1
200
+ # meaning true, and 0 meaning false.
201
+ def write_bool( *b )
202
+ @content << b.map { |v| ( v ? 1 : 0 ).chr }.join
203
+ end
204
+
205
+ # Writes each argument to the buffer as a bignum (SSH2-style). No
206
+ # checking is done to ensure that the arguments are, in fact, bignums.
207
+ def write_bignum( *n )
208
+ @content << n.map { |b| b.to_ssh }.join
209
+ end
210
+
211
+ # Writes the given arguments to the buffer as SSH2-encoded keys.
212
+ def write_key( *key )
213
+ key.each do |k|
214
+ write_string( k.ssh_type )
215
+
216
+ case k.ssh_type
217
+ when "ssh-dss"
218
+ write_bignum( k.p )
219
+ write_bignum( k.q )
220
+ write_bignum( k.g )
221
+ write_bignum( k.pub_key )
222
+
223
+ when "ssh-rsa"
224
+ write_bignum( k.e )
225
+ write_bignum( k.n )
226
+
227
+ else
228
+ raise NotImplementedError,
229
+ "unsupported key type '#{k.ssh_type}'"
230
+ end
231
+ end
232
+ end
233
+
234
+ end # class WriterBufferImpl
235
+
236
+ # A convenience class for a read-only buffer.
237
+ class ReaderBuffer
238
+ include BufferBase
239
+ include ReaderBufferImpl
240
+
241
+ def initialize( content )
242
+ init_BufferBase( content )
243
+ init_ReaderBufferImpl
244
+ end
245
+ end
246
+
247
+ # A convenience class for a write-only buffer.
248
+ class WriterBuffer
249
+ include BufferBase
250
+ include WriterBufferImpl
251
+
252
+ def initialize( content="" )
253
+ init_BufferBase( content )
254
+ init_WriterBufferImpl
255
+ end
256
+ end
257
+
258
+ # A convenience class for a read/write buffer.
259
+ class Buffer
260
+ include BufferBase
261
+ include ReaderBufferImpl
262
+ include WriterBufferImpl
263
+
264
+ def initialize( content="" )
265
+ init_BufferBase( content )
266
+ init_ReaderBufferImpl
267
+ init_WriterBufferImpl
268
+ end
269
+ end
270
+
271
+ end # module Util
272
+
273
+ end # module SSH
274
+ end # module Net