Class: HrrRbSftp::Protocol::Version3::Packets::SSH_FXP_READLINK
- Inherits:
-
Packets::Packet
- Object
- Packets::Packet
- HrrRbSftp::Protocol::Version3::Packets::SSH_FXP_READLINK
- Defined in:
- lib/hrr_rb_sftp/protocol/version3/packets/019_ssh_fxp_readlink.rb
Overview
This class implements SFTP protocol version 1 SSH_FXP_READLINK packet type, format, and responder.
Constant Summary collapse
- TYPE =
Represents SSH_FXP_READLINK packet type.
19
- FORMAT =
Represents SSH_FXP_READLINK packet format.
[ [DataTypes::Byte, :"type" ], [DataTypes::Uint32, :"request-id"], [DataTypes::String, :"path" ], ]
Instance Method Summary collapse
-
#respond_to(request) ⇒ Hash{Symbol=>Object}
Responds to SSH_FXP_READLINK request.
Instance Method Details
#respond_to(request) ⇒ Hash{Symbol=>Object}
Responds to SSH_FXP_READLINK request.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/hrr_rb_sftp/protocol/version3/packets/019_ssh_fxp_readlink.rb', line 31 def respond_to request begin log_debug { "realpath = File.realpath(#{request[:"path"].inspect})" } realpath = File.realpath(request[:"path"]) { :"type" => Packets::SSH_FXP_NAME::TYPE, :"request-id" => request[:"request-id"], :"count" => 1, :"filename[0]" => realpath, :"longname[0]" => realpath, :"attrs[0]" => {}, } rescue Errno::ENOENT => e log_debug { e. } { :"type" => Packets::SSH_FXP_STATUS::TYPE, :"request-id" => request[:"request-id"], :"code" => Packets::SSH_FXP_STATUS::SSH_FX_NO_SUCH_FILE, :"error message" => "No such file or directory", :"language tag" => "", } rescue Errno::EACCES => e log_debug { e. } { :"type" => Packets::SSH_FXP_STATUS::TYPE, :"request-id" => request[:"request-id"], :"code" => Packets::SSH_FXP_STATUS::SSH_FX_PERMISSION_DENIED, :"error message" => "Permission denied", :"language tag" => "", } rescue => e log_error { [e.backtrace[0], ": ", e., " (", e.class.to_s, ")\n\t", e.backtrace[1..-1].join("\n\t")].join } { :"type" => Packets::SSH_FXP_STATUS::TYPE, :"request-id" => request[:"request-id"], :"code" => Packets::SSH_FXP_STATUS::SSH_FX_FAILURE, :"error message" => e., :"language tag" => "", } end end |