1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 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 123 124 125 126 127 128 129 130 131 132 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 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 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
# dbus.rb - Module containing the low-level D-Bus implementation
#
# This file is part of the ruby-dbus project
# Copyright (C) 2007 Arnaud Cornet and Paul van Tilburg
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License, version 2.1 as published by the Free Software Foundation.
# See the file "COPYING" for the exact licensing terms.
require "socket"
# = D-Bus main module
#
# Module containing all the D-Bus modules and classes.
module DBus
# Exception raised when an invalid packet is encountered.
class InvalidPacketException < Exception
end
# = D-Bus packet unmarshaller class
#
# Class that handles the conversion (unmarshalling) of payload data
# to Array.
class PacketUnmarshaller
# Index pointer that points to the byte in the data that is
# currently being processed.
#
# Used to kown what part of the buffer has been consumed by unmarshalling.
# FIXME: Maybe should be accessed with a "consumed_size" method.
attr_reader :idx
# Create a new unmarshaller for the given data _buffer_ and _endianness_.
def initialize(buffer, endianness)
@buffy = buffer.dup
@endianness = endianness
if @endianness == BIG_END
@uint32 = "N"
@uint16 = "n"
@double = "G"
elsif @endianness == LIL_END
@uint32 = "V"
@uint16 = "v"
@double = "E"
else
raise InvalidPacketException, "Incorrect endianness #{@endianness}"
end
@idx = 0
end
# Unmarshall the buffer for a given _signature_ and length _len_.
# Return an array of unmarshalled objects
def unmarshall(signature, len = nil)
if !len.nil?
if @buffy.bytesize < @idx + len
raise IncompleteBufferException
end
end
sigtree = Type::Parser.new(signature).parse
ret = []
sigtree.each do |elem|
ret << do_parse(elem)
end
ret
end
# Align the pointer index on a byte index of _a_, where a
# must be 1, 2, 4 or 8.
def align(a)
case a
when 1
nil
when 2, 4, 8
bits = a - 1
@idx = @idx + bits & ~bits
raise IncompleteBufferException if @idx > @buffy.bytesize
else
raise "Unsupported alignment #{a}"
end
end
###############################################################
# FIXME: does anyone except the object itself call the above methods?
# Yes : Message marshalling code needs to align "body" to 8 byte boundary
private
# Retrieve the next _nbytes_ number of bytes from the buffer.
def read(nbytes)
raise IncompleteBufferException if @idx + nbytes > @buffy.bytesize
ret = @buffy.slice(@idx, nbytes)
@idx += nbytes
ret
end
# Read the string length and string itself from the buffer.
# Return the string.
def read_string
align(4)
str_sz = read(4).unpack(@uint32)[0]
ret = @buffy.slice(@idx, str_sz)
raise IncompleteBufferException if @idx + str_sz + 1 > @buffy.bytesize
@idx += str_sz
if @buffy[@idx].ord != 0
raise InvalidPacketException, "String is not nul-terminated"
end
@idx += 1
# no exception, see check above
ret
end
# Read the signature length and signature itself from the buffer.
# Return the signature.
def read_signature
str_sz = read(1).unpack("C")[0]
ret = @buffy.slice(@idx, str_sz)
raise IncompleteBufferException if @idx + str_sz + 1 >= @buffy.bytesize
@idx += str_sz
if @buffy[@idx].ord != 0
raise InvalidPacketException, "Type is not nul-terminated"
end
@idx += 1
# no exception, see check above
ret
end
# Based on the _signature_ type, retrieve a packet from the buffer
# and return it.
def do_parse(signature)
packet = nil
case signature.sigtype
when Type::BYTE
packet = read(1).unpack("C")[0]
when Type::UINT16
align(2)
packet = read(2).unpack(@uint16)[0]
when Type::INT16
align(2)
packet = read(2).unpack(@uint16)[0]
if (packet & 0x8000) != 0
packet -= 0x10000
end
when Type::UINT32, Type::UNIX_FD
align(4)
packet = read(4).unpack(@uint32)[0]
when Type::INT32
align(4)
packet = read(4).unpack(@uint32)[0]
if (packet & 0x80000000) != 0
packet -= 0x100000000
end
when Type::UINT64
align(8)
packet_l = read(4).unpack(@uint32)[0]
packet_h = read(4).unpack(@uint32)[0]
packet = if @endianness == LIL_END
packet_l + packet_h * 2**32
else
packet_l * 2**32 + packet_h
end
when Type::INT64
align(8)
packet_l = read(4).unpack(@uint32)[0]
packet_h = read(4).unpack(@uint32)[0]
packet = if @endianness == LIL_END
packet_l + packet_h * 2**32
else
packet_l * 2**32 + packet_h
end
if (packet & 0x8000000000000000) != 0
packet -= 0x10000000000000000
end
when Type::DOUBLE
align(8)
packet = read(8).unpack(@double)[0]
when Type::BOOLEAN
align(4)
v = read(4).unpack(@uint32)[0]
raise InvalidPacketException if ![0, 1].member?(v)
packet = (v == 1)
when Type::ARRAY
align(4)
# checks please
array_sz = read(4).unpack(@uint32)[0]
raise InvalidPacketException if array_sz > 67_108_864
align(signature.child.alignment)
raise IncompleteBufferException if @idx + array_sz > @buffy.bytesize
packet = []
start_idx = @idx
while @idx - start_idx < array_sz
packet << do_parse(signature.child)
end
if signature.child.sigtype == Type::DICT_ENTRY
packet = Hash[packet]
end
when Type::STRUCT
align(8)
packet = []
signature.members.each do |elem|
packet << do_parse(elem)
end
when Type::VARIANT
string = read_signature
# error checking please
sig = Type::Parser.new(string).parse[0]
align(sig.alignment)
packet = do_parse(sig)
when Type::OBJECT_PATH
packet = read_string
when Type::STRING
packet = read_string
packet.force_encoding("UTF-8")
when Type::SIGNATURE
packet = read_signature
when Type::DICT_ENTRY
align(8)
key = do_parse(signature.members[0])
value = do_parse(signature.members[1])
packet = [key, value]
else
raise NotImplementedError,
"sigtype: #{signature.sigtype} (#{signature.sigtype.chr})"
end
packet
end # def do_parse
end # class PacketUnmarshaller
# D-Bus packet marshaller class
#
# Class that handles the conversion (marshalling) of Ruby objects to
# (binary) payload data.
class PacketMarshaller
# The current or result packet.
# FIXME: allow access only when marshalling is finished
attr_reader :packet
# Create a new marshaller, setting the current packet to the
# empty packet.
def initialize(offset = 0)
@packet = ""
@offset = offset # for correct alignment of nested marshallers
end
# Round _n_ up to the specified power of two, _a_
def num_align(n, a)
case a
when 1, 2, 4, 8
bits = a - 1
n + bits & ~bits
else
raise "Unsupported alignment"
end
end
# Align the buffer with NULL (\0) bytes on a byte length of _a_.
def align(a)
@packet = @packet.ljust(num_align(@offset + @packet.bytesize, a) - @offset, 0.chr)
end
# Append the the string _str_ itself to the packet.
def append_string(str)
align(4)
@packet += [str.bytesize].pack("L") + [str].pack("Z*")
end
# Append the the signature _signature_ itself to the packet.
def append_signature(str)
@packet += str.bytesize.chr + str + "\0"
end
# Append the array type _type_ to the packet and allow for appending
# the child elements.
def array(type)
# Thanks to Peter Rullmann for this line
align(4)
sizeidx = @packet.bytesize
@packet += "ABCD"
align(type.alignment)
contentidx = @packet.bytesize
yield
sz = @packet.bytesize - contentidx
raise InvalidPacketException if sz > 67_108_864
@packet[sizeidx...sizeidx + 4] = [sz].pack("L")
end
# Align and allow for appending struct fields.
def struct
align(8)
yield
end
# Append a value _val_ to the packet based on its _type_.
#
# Host native endianness is used, declared in Message#marshall
def append(type, val)
raise TypeException, "Cannot send nil" if val.nil?
type = type.chr if type.is_a?(Integer)
type = Type::Parser.new(type).parse[0] if type.is_a?(String)
case type.sigtype
when Type::BYTE
@packet += val.chr
when Type::UINT32, Type::UNIX_FD
align(4)
@packet += [val].pack("L")
when Type::UINT64
align(8)
@packet += [val].pack("Q")
when Type::INT64
align(8)
@packet += [val].pack("q")
when Type::INT32
align(4)
@packet += [val].pack("l")
when Type::UINT16
align(2)
@packet += [val].pack("S")
when Type::INT16
align(2)
@packet += [val].pack("s")
when Type::DOUBLE
align(8)
@packet += [val].pack("d")
when Type::BOOLEAN
align(4)
@packet += if val
[1].pack("L")
else
[0].pack("L")
end
when Type::OBJECT_PATH
append_string(val)
when Type::STRING
append_string(val)
when Type::SIGNATURE
append_signature(val)
when Type::VARIANT
vartype = nil
if val.is_a?(Array) && val.size == 2
if val[0].is_a?(DBus::Type::Type)
vartype, vardata = val
elsif val[0].is_a?(String)
begin
parsed = Type::Parser.new(val[0]).parse
vartype = parsed[0] if parsed.size == 1
vardata = val[1]
rescue Type::SignatureException
# no assignment
end
end
end
if vartype.nil?
vartype, vardata = PacketMarshaller.make_variant(val)
vartype = Type::Parser.new(vartype).parse[0]
end
append_signature(vartype.to_s)
align(vartype.alignment)
sub = PacketMarshaller.new(@offset + @packet.bytesize)
sub.append(vartype, vardata)
@packet += sub.packet
when Type::ARRAY
if val.is_a?(Hash)
raise TypeException, "Expected an Array but got a Hash" if type.child.sigtype != Type::DICT_ENTRY
# Damn ruby rocks here
val = val.to_a
end
# If string is recieved and ay is expected, explode the string
if val.is_a?(String) && type.child.sigtype == Type::BYTE
val = val.bytes
end
if !val.is_a?(Enumerable)
raise TypeException, "Expected an Enumerable of #{type.child.inspect} but got a #{val.class}"
end
array(type.child) do
val.each do |elem|
append(type.child, elem)
end
end
when Type::STRUCT, Type::DICT_ENTRY
# TODO: use duck typing, val.respond_to?
raise TypeException, "Struct/DE expects an Array" if !val.is_a?(Array)
if type.sigtype == Type::DICT_ENTRY && val.size != 2
raise TypeException, "Dict entry expects a pair"
end
if type.members.size != val.size
raise TypeException, "Struct/DE has #{val.size} elements but type info for #{type.members.size}"
end
struct do
type.members.zip(val).each do |t, v|
append(t, v)
end
end
else
raise NotImplementedError,
"sigtype: #{type.sigtype} (#{type.sigtype.chr})"
end
end # def append
# Make a [signature, value] pair for a variant
def self.make_variant(value)
# TODO: mix in _make_variant to String, Integer...
if value == true
["b", true]
elsif value == false
["b", false]
elsif value.nil?
["b", nil]
elsif value.is_a? Float
["d", value]
elsif value.is_a? Symbol
["s", value.to_s]
elsif value.is_a? Array
["av", value.map { |i| make_variant(i) }]
elsif value.is_a? Hash
h = {}
value.each_key { |k| h[k] = make_variant(value[k]) }
["a{sv}", h]
elsif value.respond_to? :to_str
["s", value.to_str]
elsif value.respond_to? :to_int
i = value.to_int
if -2_147_483_648 <= i && i < 2_147_483_648
["i", i]
else
["x", i]
end
end
end
end # class PacketMarshaller
end # module DBus
|