Class: PhusionPassenger::MessageChannel
- Defined in:
- lib/phusion_passenger/message_channel.rb
Overview
This class provides convenience methods for:
-
sending and receiving raw data over an IO channel.
-
sending and receiving messages over an IO channel.
-
file descriptor (IO object) passing over a Unix socket.
All of these methods use exceptions for error reporting.
There are two kinds of messages:
- Array messages
-
These are just a list of strings, and the message itself has a specific length. The contained strings may not contain NUL characters (
'\0'
). Note that an array message must have at least one element. - Scalar messages
-
These are byte strings which may contain arbitrary binary data. Scalar messages also have a specific length.
The protocol is designed to be low overhead, easy to implement and easy to parse.
MessageChannel is to be wrapped around an IO object. For example:
a, b = IO.pipe
channel1 = MessageChannel.new(a)
channel2 = MessageChannel.new(b)
# Send an array message.
channel2.write("hello", "world !!")
channel1.read # => ["hello", "world !!"]
# Send a scalar message.
channel2.write_scalar("some long string which can contain arbitrary binary data")
channel1.read_scalar
The life time of a MessageChannel is independent from that of the wrapped IO object. If a MessageChannel object is destroyed, the underlying IO object is not automatically closed. Call close() if you want to close the underlying IO object.
Note: Be careful with mixing the sending/receiving of array messages, scalar messages and IO objects. If you send a collection of any of these in a specific order, then the receiving side must receive them in the exact some order. So suppose you first send a message, then an IO object, then a scalar, then the receiving side must first receive a message, then an IO object, then a scalar. If the receiving side does things in the wrong order then bad things will happen.
Constant Summary collapse
- HEADER_SIZE =
:nodoc:
2
- DELIMITER =
:nodoc:
"\0"
- DELIMITER_NAME =
:nodoc:
"null byte"
Instance Attribute Summary collapse
-
#io ⇒ Object
readonly
The wrapped IO object.
Instance Method Summary collapse
-
#close ⇒ Object
Close the underlying IO stream.
-
#fileno ⇒ Object
Return the file descriptor of the underlying IO object.
-
#initialize(io) ⇒ MessageChannel
constructor
Create a new MessageChannel by wrapping the given IO object.
-
#read ⇒ Object
Read an array message from the underlying file descriptor.
-
#read_scalar(max_size = nil) ⇒ Object
Read a scalar message from the underlying IO object.
-
#recv_io(klass = IO, negotiate = true) ⇒ Object
Receive an IO object (a file descriptor) from the channel.
-
#send_io(io) ⇒ Object
Send an IO object (a file descriptor) over the channel.
-
#write(name, *args) ⇒ Object
Send an array message, which consists of the given elements, over the underlying file descriptor.
-
#write_scalar(data) ⇒ Object
Send a scalar message over the underlying IO object.
Constructor Details
#initialize(io) ⇒ MessageChannel
Create a new MessageChannel by wrapping the given IO object.
83 84 85 |
# File 'lib/phusion_passenger/message_channel.rb', line 83 def initialize(io) @io = io end |
Instance Attribute Details
#io ⇒ Object (readonly)
The wrapped IO object.
80 81 82 |
# File 'lib/phusion_passenger/message_channel.rb', line 80 def io @io end |
Instance Method Details
#close ⇒ Object
Close the underlying IO stream. Might raise SystemCallError or IOError when something goes wrong.
259 260 261 |
# File 'lib/phusion_passenger/message_channel.rb', line 259 def close @io.close end |
#fileno ⇒ Object
Return the file descriptor of the underlying IO object.
253 254 255 |
# File 'lib/phusion_passenger/message_channel.rb', line 253 def fileno return @io.fileno end |
#read ⇒ Object
Read an array message from the underlying file descriptor. Returns the array message as an array, or nil when end-of-stream has been reached.
Might raise SystemCallError, IOError or SocketError when something goes wrong.
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/phusion_passenger/message_channel.rb', line 93 def read buffer = '' while buffer.size < HEADER_SIZE buffer << @io.readpartial(HEADER_SIZE - buffer.size) end chunk_size = buffer.unpack('n')[0] buffer = '' while buffer.size < chunk_size buffer << @io.readpartial(chunk_size - buffer.size) end = [] offset = 0 delimiter_pos = buffer.index(DELIMITER, offset) while !delimiter_pos.nil? if delimiter_pos == 0 << "" else << buffer[offset .. delimiter_pos - 1] end offset = delimiter_pos + 1 delimiter_pos = buffer.index(DELIMITER, offset) end return rescue Errno::ECONNRESET return nil rescue EOFError return nil end |
#read_scalar(max_size = nil) ⇒ Object
Read a scalar message from the underlying IO object. Returns the read message, or nil on end-of-stream.
Might raise SystemCallError, IOError or SocketError when something goes wrong.
The max_size
argument allows one to specify the maximum allowed size for the scalar message. If the received scalar message’s size is larger than max_size
, then a SecurityError will be raised.
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/phusion_passenger/message_channel.rb', line 133 def read_scalar(max_size = nil) buffer = '' temp = '' while buffer.size < 4 buffer << @io.readpartial(4 - buffer.size, temp) end size = buffer.unpack('N')[0] if size == 0 return '' else if !max_size.nil? && size > max_size raise SecurityError, "Scalar message size (#{size}) " << "exceeds maximum allowed size (#{max_size})." end buffer = '' while buffer.size < size temp = '' # JRuby doesn't clear the buffer. TODO: remove this when JRuby has been fixed. buffer << @io.readpartial(size - buffer.size, temp) end return buffer end rescue Errno::ECONNRESET return nil rescue EOFError return nil end |
#recv_io(klass = IO, negotiate = true) ⇒ Object
Receive an IO object (a file descriptor) from the channel. The other side must have sent an IO object by calling send_io(). Note that this only works on Unix sockets.
Might raise SystemCallError, IOError or SocketError when something goes wrong.
196 197 198 199 200 201 |
# File 'lib/phusion_passenger/message_channel.rb', line 196 def recv_io(klass = IO, negotiate = true) write("pass IO") if negotiate io = @io.recv_io(klass) write("got IO") if negotiate return io end |
#send_io(io) ⇒ Object
Send an IO object (a file descriptor) over the channel. The other side must receive the IO object by calling recv_io(). Note that this only works on Unix sockets.
Might raise SystemCallError, IOError or SocketError when something goes wrong.
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/phusion_passenger/message_channel.rb', line 209 def send_io(io) # We read a message before actually calling #send_io # in order to prevent the other side from accidentally # read()ing past the normal data and reading our file # descriptor too. # # For example suppose that side A looks like this: # # read(fd, buf, 1024) # read_io(fd) # # and side B: # # write(fd, buf, 100) # send_io(fd_to_pass) # # If B completes both write() and send_io(), then A's read() call # reads past the 100 bytes that B sent. On some platforms, like # Linux, this will cause read_io() to fail. And it just so happens # that Ruby's IO#read method slurps more than just the given amount # of bytes. result = read if !result raise EOFError, "End of stream" elsif result != ["pass IO"] raise IOError, "IO passing pre-negotiation header expected" else @io.send_io(io) # Once you've sent the IO you expect to be able to close it on the # sender's side, even if the other side hasn't read the IO yet. # Not so: on some operating systems (I'm looking at you OS X) this # can cause the receiving side to receive a bad file descriptor. # The post negotiation protocol ensures that we block until the # other side has really received the IO. result = read if !result raise EOFError, "End of stream" elsif result != ["got IO"] raise IOError, "IO passing post-negotiation header expected" end end end |
#write(name, *args) ⇒ Object
Send an array message, which consists of the given elements, over the underlying file descriptor. name is the first element in the message, and args are the other elements. These arguments will internally be converted to strings by calling to_s().
Might raise SystemCallError, IOError or SocketError when something goes wrong.
167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/phusion_passenger/message_channel.rb', line 167 def write(name, *args) check_argument(name) args.each do |arg| check_argument(arg) end = "#{name}#{DELIMITER}" args.each do |arg| << arg.to_s << DELIMITER end @io.write([.size].pack('n') << ) @io.flush end |
#write_scalar(data) ⇒ Object
Send a scalar message over the underlying IO object.
Might raise SystemCallError, IOError or SocketError when something goes wrong.
185 186 187 188 |
# File 'lib/phusion_passenger/message_channel.rb', line 185 def write_scalar(data) @io.write([data.size].pack('N') << data) @io.flush end |