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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
|
{-# Language LambdaCase #-}
-- Copyright (C) 2009-2012 John Millikin <john@john-millikin.com>
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
module DBus.Internal.Wire
( Endianness(..)
, MarshalError
, marshalErrorMessage
, UnmarshalError
, unmarshalErrorMessage
, marshalMessage
, unmarshalMessage
, unmarshalMessageM
) where
import qualified Control.Applicative
import Control.Monad (ap, liftM, when, unless)
import qualified Data.ByteString
import Data.ByteString (ByteString)
import qualified Data.ByteString.Builder as Builder
import qualified Data.ByteString.Char8
import qualified Data.ByteString.Lazy as Lazy
import Data.Int (Int16, Int32, Int64)
import Data.List (sortOn)
import qualified Data.Map
import Data.Map (Map)
import Data.Maybe (fromJust, listToMaybe, fromMaybe)
import Data.Monoid
import Data.Text (Text)
import qualified Data.Text.Encoding
import qualified Data.Vector
import Data.Vector (Vector)
import Data.Word (Word8, Word16, Word32, Word64)
import System.Posix.Types (Fd(..))
import Prelude
import qualified Data.Serialize.Get as Get
import Data.Serialize.IEEE754 (getFloat64be, getFloat64le, putFloat64be, putFloat64le)
import Data.Serialize.Put (runPut)
import DBus.Internal.Message
import DBus.Internal.Types
data Endianness = LittleEndian | BigEndian
deriving (Show, Eq)
encodeEndianness :: Endianness -> Word8
encodeEndianness LittleEndian = 0x6C
encodeEndianness BigEndian = 0x42
decodeEndianness :: Word8 -> Maybe Endianness
decodeEndianness 0x6C = Just LittleEndian
decodeEndianness 0x42 = Just BigEndian
decodeEndianness _ = Nothing
alignment :: Type -> Word8
alignment TypeBoolean = 4
alignment TypeWord8 = 1
alignment TypeWord16 = 2
alignment TypeWord32 = 4
alignment TypeWord64 = 8
alignment TypeInt16 = 2
alignment TypeInt32 = 4
alignment TypeInt64 = 8
alignment TypeDouble = 8
alignment TypeUnixFd = 4
alignment TypeString = 4
alignment TypeObjectPath = 4
alignment TypeSignature = 1
alignment (TypeArray _) = 4
alignment (TypeDictionary _ _) = 4
alignment (TypeStructure _) = 8
alignment TypeVariant = 1
{-# INLINE padding #-}
padding :: Word64 -> Word8 -> Word64
padding current count = required where
count' = fromIntegral count
missing = mod current count'
required = if missing > 0
then count' - missing
else 0
data WireR s a
= WireRL String
| WireRR a !s
newtype Wire s a = Wire
{ unWire :: Endianness -> s -> WireR s a
}
instance Functor (Wire s) where
{-# INLINE fmap #-}
fmap = liftM
instance Control.Applicative.Applicative (Wire s) where
{-# INLINE pure #-}
pure a = Wire (\_ s -> WireRR a s)
{-# INLINE (*>) #-}
m *> k = Wire $ \e s -> case unWire m e s of
WireRL err -> WireRL err
WireRR _ s' -> unWire k e s'
{-# INLINE (<*>) #-}
(<*>) = ap
instance Monad (Wire s) where
{-# INLINE (>>=) #-}
m >>= k = Wire $ \e s -> case unWire m e s of
WireRL err -> WireRL err
WireRR a s' -> unWire (k a) e s'
throwError :: String -> Wire s a
throwError err = Wire (\_ _ -> WireRL err)
{-# INLINE getState #-}
getState :: Wire s s
getState = Wire (\_ s -> WireRR s s)
{-# INLINE putState #-}
putState :: s -> Wire s ()
putState s = Wire (\_ _ -> WireRR () s)
{-# INLINE chooseEndian #-}
chooseEndian :: a -> a -> Wire s a
chooseEndian big little = Wire (\e s -> case e of
BigEndian -> WireRR big s
LittleEndian -> WireRR little s)
type Marshal = Wire MarshalState
newtype MarshalError = MarshalError String
deriving (Show, Eq)
marshalErrorMessage :: MarshalError -> String
marshalErrorMessage (MarshalError s) = s
data MarshalState = MarshalState
!Builder.Builder
{-# UNPACK #-} !Word64
!(Map Fd Word32)
marshal :: Value -> Marshal ()
marshal (ValueAtom x) = marshalAtom x
marshal (ValueBytes xs) = marshalStrictBytes xs
marshal (ValueVector t xs) = marshalVector t xs
marshal (ValueMap kt vt xs) = marshalMap kt vt xs
marshal (ValueStructure xs) = marshalStructure xs
marshal (ValueVariant x) = marshalVariant x
marshalAtom :: Atom -> Marshal ()
marshalAtom (AtomWord8 x) = marshalWord8 x
marshalAtom (AtomWord16 x) = marshalWord16 x
marshalAtom (AtomWord32 x) = marshalWord32 x
marshalAtom (AtomWord64 x) = marshalWord64 x
marshalAtom (AtomInt16 x) = marshalInt16 x
marshalAtom (AtomInt32 x) = marshalInt32 x
marshalAtom (AtomInt64 x) = marshalInt64 x
marshalAtom (AtomDouble x) = marshalDouble x
marshalAtom (AtomUnixFd x) = marshalUnixFd x
marshalAtom (AtomBool x) = marshalBool x
marshalAtom (AtomText x) = marshalText x
marshalAtom (AtomObjectPath x) = marshalObjectPath x
marshalAtom (AtomSignature x) = marshalSignature x
appendB :: Word64 -> Builder.Builder -> Marshal ()
appendB size bytes = Wire (\_ (MarshalState builder count fds) -> let
builder' = mappend builder bytes
count' = count + size
in WireRR () (MarshalState builder' count' fds))
appendS :: ByteString -> Marshal ()
appendS bytes = appendB
(fromIntegral (Data.ByteString.length bytes))
(Builder.byteString bytes)
appendL :: Lazy.ByteString -> Marshal ()
appendL bytes = appendB
(fromIntegral (Lazy.length bytes))
(Builder.lazyByteString bytes)
pad :: Word8 -> Marshal ()
pad count = do
(MarshalState _ existing _) <- getState
let padding' = fromIntegral (padding existing count)
appendS (Data.ByteString.replicate padding' 0)
marshalBuilder :: Word8
-> (a -> Builder.Builder)
-> (a -> Builder.Builder)
-> a -> Marshal ()
marshalBuilder size be le x = do
builder <- chooseEndian (be x) (le x)
pad size
appendB (fromIntegral size) builder
type Unmarshal = Wire UnmarshalState
newtype UnmarshalError = UnmarshalError String
deriving (Show, Eq)
unmarshalErrorMessage :: UnmarshalError -> String
unmarshalErrorMessage (UnmarshalError s) = s
data UnmarshalState = UnmarshalState
{-# UNPACK #-} !ByteString
{-# UNPACK #-} !Word64
![Fd]
unmarshal :: Type -> Unmarshal Value
unmarshal TypeWord8 = liftM toValue unmarshalWord8
unmarshal TypeWord16 = liftM toValue unmarshalWord16
unmarshal TypeWord32 = liftM toValue unmarshalWord32
unmarshal TypeWord64 = liftM toValue unmarshalWord64
unmarshal TypeInt16 = liftM toValue unmarshalInt16
unmarshal TypeInt32 = liftM toValue unmarshalInt32
unmarshal TypeInt64 = liftM toValue unmarshalInt64
unmarshal TypeDouble = liftM toValue unmarshalDouble
unmarshal TypeUnixFd = liftM toValue unmarshalUnixFd
unmarshal TypeBoolean = liftM toValue unmarshalBool
unmarshal TypeString = liftM toValue unmarshalText
unmarshal TypeObjectPath = liftM toValue unmarshalObjectPath
unmarshal TypeSignature = liftM toValue unmarshalSignature
unmarshal (TypeArray TypeWord8) = liftM toValue unmarshalByteArray
unmarshal (TypeArray t) = liftM (ValueVector t) (unmarshalArray t)
unmarshal (TypeDictionary kt vt) = unmarshalDictionary kt vt
unmarshal (TypeStructure ts) = unmarshalStructure ts
unmarshal TypeVariant = unmarshalVariant
{-# INLINE consume #-}
consume :: Word64 -> Unmarshal ByteString
consume count = do
(UnmarshalState bytes offset fds) <- getState
let count' = fromIntegral count
let (x, bytes') = Data.ByteString.splitAt count' bytes
let lenConsumed = Data.ByteString.length x
if lenConsumed == count'
then do
putState (UnmarshalState bytes' (offset + count) fds)
return x
else throwError ("Unexpected EOF at offset " ++ show (offset + fromIntegral lenConsumed))
skipPadding :: Word8 -> Unmarshal ()
skipPadding count = do
(UnmarshalState _ offset _) <- getState
bytes <- consume (padding offset count)
unless (Data.ByteString.all (== 0) bytes)
(throwError ("Value padding " ++ show bytes ++ " contains invalid bytes."))
skipTerminator :: Unmarshal ()
skipTerminator = do
byte <- unmarshalWord8
when (byte /= 0) (throwError "Textual value is not NUL-terminated.")
fromMaybeU :: Show a => String -> (a -> Maybe b) -> a -> Unmarshal b
fromMaybeU label f x = case f x of
Just x' -> return x'
Nothing -> throwError ("Invalid " ++ label ++ ": " ++ show x)
unmarshalGet :: Word8 -> Get.Get a -> Get.Get a -> Unmarshal a
unmarshalGet count be le = do
skipPadding count
bytes <- consume (fromIntegral count)
get <- chooseEndian be le
let Right ret = Get.runGet get bytes
return ret
marshalWord8 :: Word8 -> Marshal ()
marshalWord8 x = appendB 1 (Builder.word8 x)
unmarshalWord8 :: Unmarshal Word8
unmarshalWord8 = liftM Data.ByteString.head (consume 1)
marshalWord16 :: Word16 -> Marshal ()
marshalWord16 = marshalBuilder 2
Builder.word16BE
Builder.word16LE
marshalWord32 :: Word32 -> Marshal ()
marshalWord32 = marshalBuilder 4
Builder.word32BE
Builder.word32LE
marshalWord64 :: Word64 -> Marshal ()
marshalWord64 = marshalBuilder 8
Builder.word64BE
Builder.word64LE
marshalInt16 :: Int16 -> Marshal ()
marshalInt16 = marshalWord16 . fromIntegral
marshalInt32 :: Int32 -> Marshal ()
marshalInt32 = marshalWord32 . fromIntegral
marshalInt64 :: Int64 -> Marshal ()
marshalInt64 = marshalWord64 . fromIntegral
unmarshalWord16 :: Unmarshal Word16
unmarshalWord16 = unmarshalGet 2
Get.getWord16be
Get.getWord16le
unmarshalWord32 :: Unmarshal Word32
unmarshalWord32 = unmarshalGet 4
Get.getWord32be
Get.getWord32le
unmarshalWord64 :: Unmarshal Word64
unmarshalWord64 = unmarshalGet 8
Get.getWord64be
Get.getWord64le
unmarshalInt16 :: Unmarshal Int16
unmarshalInt16 = liftM fromIntegral unmarshalWord16
unmarshalInt32 :: Unmarshal Int32
unmarshalInt32 = liftM fromIntegral unmarshalWord32
unmarshalInt64 :: Unmarshal Int64
unmarshalInt64 = liftM fromIntegral unmarshalWord64
marshalDouble :: Double -> Marshal ()
marshalDouble x = do
put <- chooseEndian putFloat64be putFloat64le
pad 8
appendS (runPut (put x))
unmarshalDouble :: Unmarshal Double
unmarshalDouble = unmarshalGet 8
getFloat64be
getFloat64le
marshalUnixFd :: Fd -> Marshal ()
marshalUnixFd fd@(Fd x)
| x < 0 = throwError ("Invalid file descriptor: " ++ show x)
| toInteger x > toInteger (maxBound :: Word32) = throwError ("D-Bus forbids file descriptors exceeding UINT32_MAX: " ++ show x)
| otherwise = do
MarshalState builder count fds <- getState
case Data.Map.lookup fd fds of
Just i -> marshalWord32 i
Nothing -> do
let i = fromIntegral (Data.Map.size fds)
putState (MarshalState builder count (Data.Map.insert fd i fds))
marshalWord32 i
unmarshalUnixFd :: Unmarshal Fd
unmarshalUnixFd = do
x <- fromIntegral <$> unmarshalWord32
UnmarshalState _ _ fds <- getState
when (x >= length fds) $ do
throwError ("File descriptor index " ++ show x ++ " out of bounds - only " ++ show (length fds) ++ " file descriptors in message header.")
return (fds !! x)
marshalBool :: Bool -> Marshal ()
marshalBool False = marshalWord32 0
marshalBool True = marshalWord32 1
unmarshalBool :: Unmarshal Bool
unmarshalBool = do
word <- unmarshalWord32
case word of
0 -> return False
1 -> return True
_ -> throwError ("Invalid boolean: " ++ show word)
marshalText :: Text -> Marshal ()
marshalText text = do
let bytes = Data.Text.Encoding.encodeUtf8 text
when (Data.ByteString.any (== 0) bytes)
(throwError ("String " ++ show text ++ " contained forbidden character: '\\x00'"))
marshalWord32 (fromIntegral (Data.ByteString.length bytes))
appendS bytes
marshalWord8 0
unmarshalText :: Unmarshal Text
unmarshalText = do
byteCount <- unmarshalWord32
bytes <- consume (fromIntegral byteCount)
skipTerminator
fromMaybeU "text" maybeDecodeUtf8 bytes
maybeDecodeUtf8 :: ByteString -> Maybe Text
maybeDecodeUtf8 bs = case Data.Text.Encoding.decodeUtf8' bs of
Right text -> Just text
_ -> Nothing
marshalObjectPath :: ObjectPath -> Marshal ()
marshalObjectPath p = do
let bytes = Data.ByteString.Char8.pack (formatObjectPath p)
marshalWord32 (fromIntegral (Data.ByteString.length bytes))
appendS bytes
marshalWord8 0
unmarshalObjectPath :: Unmarshal ObjectPath
unmarshalObjectPath = do
byteCount <- unmarshalWord32
bytes <- consume (fromIntegral byteCount)
skipTerminator
fromMaybeU "object path" parseObjectPath (Data.ByteString.Char8.unpack bytes)
signatureBytes :: Signature -> ByteString
signatureBytes (Signature ts) = Data.ByteString.Char8.pack (concatMap typeCode ts)
marshalSignature :: Signature -> Marshal ()
marshalSignature x = do
let bytes = signatureBytes x
marshalWord8 (fromIntegral (Data.ByteString.length bytes))
appendS bytes
marshalWord8 0
unmarshalSignature :: Unmarshal Signature
unmarshalSignature = do
byteCount <- unmarshalWord8
bytes <- consume (fromIntegral byteCount)
skipTerminator
fromMaybeU "signature" parseSignatureBytes bytes
arrayMaximumLength :: Int64
arrayMaximumLength = 67108864
marshalVector :: Type -> Vector Value -> Marshal ()
marshalVector t x = do
(arrayPadding, arrayBytes) <- getArrayBytes t x
let arrayLen = Lazy.length arrayBytes
when (arrayLen > arrayMaximumLength) (throwError ("Marshaled array size (" ++ show arrayLen ++ " bytes) exceeds maximum limit of (" ++ show arrayMaximumLength ++ " bytes)."))
marshalWord32 (fromIntegral arrayLen)
appendS (Data.ByteString.replicate arrayPadding 0)
appendL arrayBytes
marshalStrictBytes :: ByteString -> Marshal ()
marshalStrictBytes bytes = do
let arrayLen = Lazy.length (Lazy.fromStrict bytes)
when (fromIntegral arrayLen > arrayMaximumLength) (throwError ("Marshaled array size (" ++ show arrayLen ++ " bytes) exceeds maximum limit of (" ++ show arrayMaximumLength ++ " bytes)."))
marshalWord32 (fromIntegral arrayLen)
appendS bytes
getArrayBytes :: Type -> Vector Value -> Marshal (Int, Lazy.ByteString)
getArrayBytes itemType vs = do
(MarshalState bytes count fds) <- getState
(MarshalState _ afterLength _) <- marshalWord32 0 >> getState
(MarshalState _ afterPadding _) <- pad (alignment itemType) >> getState
putState (MarshalState mempty afterPadding fds)
(MarshalState itemBuilder _ fds') <- Data.Vector.mapM_ marshal vs >> getState
let itemBytes = Builder.toLazyByteString itemBuilder
paddingSize = fromIntegral (afterPadding - afterLength)
putState (MarshalState bytes count fds')
return (paddingSize, itemBytes)
unmarshalByteArray :: Unmarshal ByteString
unmarshalByteArray = do
byteCount <- unmarshalWord32
consume (fromIntegral byteCount)
unmarshalArray :: Type -> Unmarshal (Vector Value)
unmarshalArray itemType = do
let getOffset = do
(UnmarshalState _ o _) <- getState
return o
byteCount <- unmarshalWord32
skipPadding (alignment itemType)
start <- getOffset
let end = start + fromIntegral byteCount
vs <- untilM (liftM (>= end) getOffset) (unmarshal itemType)
end' <- getOffset
when (end' > end) (throwError ("Array data size exeeds array size of " ++ show end))
return (Data.Vector.fromList vs)
dictionaryToArray :: Map Atom Value -> Vector Value
dictionaryToArray = Data.Vector.fromList . map step . Data.Map.toList where
step (k, v) = ValueStructure [ValueAtom k, v]
arrayToDictionary :: Vector Value -> Map Atom Value
arrayToDictionary = Data.Map.fromList . map step . Data.Vector.toList where
step (ValueStructure [ValueAtom k, v]) = (k, v)
step _ = error "arrayToDictionary: internal error"
marshalMap :: Type -> Type -> Map Atom Value -> Marshal ()
marshalMap kt vt x = let
structType = TypeStructure [kt, vt]
array = dictionaryToArray x
in marshalVector structType array
unmarshalDictionary :: Type -> Type -> Unmarshal Value
unmarshalDictionary kt vt = do
let pairType = TypeStructure [kt, vt]
array <- unmarshalArray pairType
return (ValueMap kt vt (arrayToDictionary array))
marshalStructure :: [Value] -> Marshal ()
marshalStructure vs = do
pad 8
mapM_ marshal vs
unmarshalStructure :: [Type] -> Unmarshal Value
unmarshalStructure ts = do
skipPadding 8
liftM ValueStructure (mapM unmarshal ts)
marshalVariant :: Variant -> Marshal ()
marshalVariant var@(Variant val) = do
sig <- case signature [valueType val] of
Just x' -> return x'
Nothing -> throwError ("Signature " ++ show (typeCode (valueType val)) ++ " for variant " ++ show var ++ " is malformed or too large.")
marshalSignature sig
marshal val
unmarshalVariant :: Unmarshal Value
unmarshalVariant = do
let getType sig = case signatureTypes sig of
[t] -> Just t
_ -> Nothing
t <- fromMaybeU "variant signature" getType =<< unmarshalSignature
(toValue . Variant) `liftM` unmarshal t
protocolVersion :: Word8
protocolVersion = 1
messageMaximumLength :: Integer
messageMaximumLength = 134217728
encodeField :: HeaderField -> Value
encodeField (HeaderPath x) = encodeField' 1 x
encodeField (HeaderInterface x) = encodeField' 2 x
encodeField (HeaderMember x) = encodeField' 3 x
encodeField (HeaderErrorName x) = encodeField' 4 x
encodeField (HeaderReplySerial x) = encodeField' 5 x
encodeField (HeaderDestination x) = encodeField' 6 x
encodeField (HeaderSender x) = encodeField' 7 x
encodeField (HeaderSignature x) = encodeField' 8 x
encodeField (HeaderUnixFds x) = encodeField' 9 x
encodeField' :: IsVariant a => Word8 -> a -> Value
encodeField' code x = toValue (code, toVariant x)
decodeField :: (Word8, Variant)
-> ErrorM UnmarshalError [HeaderField]
decodeField struct = case struct of
(1, x) -> decodeField' x HeaderPath "path"
(2, x) -> decodeField' x HeaderInterface "interface"
(3, x) -> decodeField' x HeaderMember "member"
(4, x) -> decodeField' x HeaderErrorName "error name"
(5, x) -> decodeField' x HeaderReplySerial "reply serial"
(6, x) -> decodeField' x HeaderDestination "destination"
(7, x) -> decodeField' x HeaderSender "sender"
(8, x) -> decodeField' x HeaderSignature "signature"
(9, x) -> decodeField' x HeaderUnixFds "unix fds"
_ -> return []
decodeField' :: IsVariant a => Variant -> (a -> b) -> String
-> ErrorM UnmarshalError [b]
decodeField' x f label = case fromVariant x of
Just x' -> return [f x']
Nothing -> throwErrorM (UnmarshalError ("Header field " ++ show label ++ " contains invalid value " ++ show x))
marshalMessage :: Message a => Endianness -> Serial -> a
-> Either MarshalError (ByteString, [Fd])
marshalMessage e serial msg = runMarshal where
body = messageBody msg
marshaler = do
sig <- checkBodySig body
MarshalState emptyBytes emptyCount _ <- getState
mapM_ (marshal . (\(Variant x) -> x)) body
(MarshalState bodyBytesB _ fds) <- getState
putState (MarshalState emptyBytes emptyCount fds)
marshal (toValue (encodeEndianness e))
let bodyBytes = Builder.toLazyByteString bodyBytesB
marshalHeader msg serial sig (fromIntegral (Lazy.length bodyBytes)) (Data.Map.size fds)
pad 8
appendL bodyBytes
checkMaximumSize
emptyState = MarshalState mempty 0 mempty
runMarshal = case unWire marshaler e emptyState of
WireRL err -> Left (MarshalError err)
WireRR _ (MarshalState builder _ fds) ->
let fdList = (map fst . sortOn snd . Data.Map.toList) fds
in Right (Lazy.toStrict (Builder.toLazyByteString builder), fdList)
checkBodySig :: [Variant] -> Marshal Signature
checkBodySig vs = case signature (map variantType vs) of
Just x -> return x
Nothing -> throwError ("Message body " ++ show vs ++ " has too many items")
marshalHeader :: Message a => a -> Serial -> Signature -> Word32 -> Int
-> Marshal ()
marshalHeader msg serial bodySig bodyLength numFds = do
let fields = HeaderSignature bodySig : consUnixFdsField numFds (messageHeaderFields msg)
marshalWord8 (messageTypeCode msg)
marshalWord8 (messageFlags msg)
marshalWord8 protocolVersion
marshalWord32 bodyLength
marshalWord32 (serialValue serial)
let fieldType = TypeStructure [TypeWord8, TypeVariant]
marshalVector fieldType (Data.Vector.fromList (map encodeField fields))
consUnixFdsField :: Int -> [HeaderField] -> [HeaderField]
consUnixFdsField numFds headers =
if numFds == 0
then filteredHeaders
else HeaderUnixFds (fromIntegral numFds) : filteredHeaders
where
filteredHeaders = filter (not . isHeaderUnixFds) headers
isHeaderUnixFds = \case
HeaderUnixFds _ -> True
_ -> False
checkMaximumSize :: Marshal ()
checkMaximumSize = do
(MarshalState _ messageLength _) <- getState
when (toInteger messageLength > messageMaximumLength)
(throwError ("Marshaled message size (" ++ show messageLength ++ " bytes) exeeds maximum limit of (" ++ show messageMaximumLength ++ " bytes)."))
unmarshalMessageM :: Monad m => (Int -> m (ByteString, [Fd]))
-> m (Either UnmarshalError ReceivedMessage)
unmarshalMessageM getBytes' = runErrorT $ do
let getBytes count = do
(bytes, fds) <- ErrorT (liftM Right (getBytes' count))
if Data.ByteString.length bytes < count
then throwErrorT (UnmarshalError "Unexpected end of input while parsing message header.")
else return (bytes, fds)
let Just fixedSig = parseSignature "yyyyuuu"
(fixedBytes, fixedFds) <- getBytes 16
let messageVersion = Data.ByteString.index fixedBytes 3
when (messageVersion /= protocolVersion) (throwErrorT (UnmarshalError ("Unsupported protocol version: " ++ show messageVersion)))
let eByte = Data.ByteString.index fixedBytes 0
endianness <- case decodeEndianness eByte of
Just x' -> return x'
Nothing -> throwErrorT (UnmarshalError ("Invalid endianness: " ++ show eByte))
let unmarshalSig = mapM unmarshal . signatureTypes
let unmarshal' x bytes fds = case unWire (unmarshalSig x) endianness (UnmarshalState bytes 0 fds) of
WireRR x' _ -> return x'
WireRL err -> throwErrorT (UnmarshalError err)
fixed <- unmarshal' fixedSig fixedBytes []
let messageType = fromJust (fromValue (fixed !! 1))
let flags = fromJust (fromValue (fixed !! 2))
let bodyLength = fromJust (fromValue (fixed !! 4)) :: Word32
let serial = fromJust (fromVariant (Variant (fixed !! 5)))
let fieldByteCount = fromJust (fromValue (fixed !! 6)) :: Word32
let bodyPadding = padding (fromIntegral fieldByteCount + 16) 8
-- Forbid messages larger than 'messageMaximumLength'
let messageLength = 16 + toInteger fieldByteCount + toInteger bodyPadding + toInteger bodyLength
when (messageLength > messageMaximumLength) $
throwErrorT (UnmarshalError ("Message size " ++ show messageLength ++ " exceeds limit of " ++ show messageMaximumLength))
let Just headerSig = parseSignature "yyyyuua(yv)"
(fieldBytes, fieldFds) <- getBytes (fromIntegral fieldByteCount)
let headerBytes = Data.ByteString.append fixedBytes fieldBytes
header <- unmarshal' headerSig headerBytes []
let fieldArray = Data.Vector.toList (fromJust (fromValue (header !! 6)))
fields <- case runErrorM $ concat `liftM` mapM decodeField fieldArray of
Left err -> throwErrorT err
Right x -> return x
(_, paddingFds) <- getBytes (fromIntegral bodyPadding)
let bodySig = findBodySignature fields
(bodyBytes, bodyFds) <- getBytes (fromIntegral bodyLength)
let fds = fixedFds <> fieldFds <> paddingFds <> bodyFds
checkUnixFdsHeader fields fds
body <- unmarshal' bodySig bodyBytes fds
y <- case runErrorM (buildReceivedMessage messageType fields) of
Right x -> return x
Left err -> throwErrorT (UnmarshalError ("Header field " ++ show err ++ " is required, but missing"))
return (y serial flags (map Variant body))
checkUnixFdsHeader :: Monad m => [HeaderField] -> [Fd] -> ErrorT UnmarshalError m ()
checkUnixFdsHeader fields fds = do
let headerCount = findUnixFds fields
when (headerCount /= length fds) $
throwErrorT (UnmarshalError ("File descriptor count in message header"
<> " (" <> show headerCount <> ") does not match the number of file descriptors"
<> " received from the socket (" <> show (length fds) <> ")."))
findBodySignature :: [HeaderField] -> Signature
findBodySignature fields = fromMaybe (signature_ []) (listToMaybe [x | HeaderSignature x <- fields])
findUnixFds :: [HeaderField] -> Int
findUnixFds fields = fromMaybe 0 (listToMaybe [fromIntegral n | HeaderUnixFds n <- fields])
buildReceivedMessage :: Word8 -> [HeaderField] -> ErrorM String (Serial -> Word8 -> [Variant] -> ReceivedMessage)
buildReceivedMessage 1 fields = do
path <- require "path" [x | HeaderPath x <- fields]
member <- require "member name" [x | HeaderMember x <- fields]
return $ \serial flags body -> let
iface = listToMaybe [x | HeaderInterface x <- fields]
dest = listToMaybe [x | HeaderDestination x <- fields]
sender = listToMaybe [x | HeaderSender x <- fields]
msg = MethodCall path iface member sender dest True True body
in ReceivedMethodCall serial (setMethodCallFlags msg flags)
buildReceivedMessage 2 fields = do
replySerial <- require "reply serial" [x | HeaderReplySerial x <- fields]
return $ \serial _ body -> let
dest = listToMaybe [x | HeaderDestination x <- fields]
sender = listToMaybe [x | HeaderSender x <- fields]
msg = MethodReturn replySerial sender dest body
in ReceivedMethodReturn serial msg
buildReceivedMessage 3 fields = do
name <- require "error name" [x | HeaderErrorName x <- fields]
replySerial <- require "reply serial" [x | HeaderReplySerial x <- fields]
return $ \serial _ body -> let
dest = listToMaybe [x | HeaderDestination x <- fields]
sender = listToMaybe [x | HeaderSender x <- fields]
msg = MethodError name replySerial sender dest body
in ReceivedMethodError serial msg
buildReceivedMessage 4 fields = do
path <- require "path" [x | HeaderPath x <- fields]
member <- require "member name" [x | HeaderMember x <- fields]
iface <- require "interface" [x | HeaderInterface x <- fields]
return $ \serial _ body -> let
dest = listToMaybe [x | HeaderDestination x <- fields]
sender = listToMaybe [x | HeaderSender x <- fields]
msg = Signal path iface member sender dest body
in ReceivedSignal serial msg
buildReceivedMessage messageType fields = return $ \serial _ body -> let
sender = listToMaybe [x | HeaderSender x <- fields]
msg = UnknownMessage messageType sender body
in ReceivedUnknown serial msg
require :: String -> [a] -> ErrorM String a
require _ (x:_) = return x
require label _ = throwErrorM label
unmarshalMessage :: ByteString -> [Fd] -> Either UnmarshalError ReceivedMessage
unmarshalMessage bytes fds = checkError (Get.runGet get bytes) where
get = unmarshalMessageM getBytes
-- wrap getByteString, so it will behave like transportGet and return
-- a truncated result on EOF instead of throwing an exception.
getBytes count = do
remaining <- Get.remaining
buf <- Get.getByteString (min remaining count)
return (buf, if remaining == Data.ByteString.length bytes then fds else [])
checkError (Left err) = Left (UnmarshalError err)
checkError (Right x) = x
untilM :: Monad m => m Bool -> m a -> m [a]
untilM test comp = do
done <- test
if done
then return []
else do
x <- comp
xs <- untilM test comp
return (x:xs)
-------------------------------------------------------------------------------
-- local ErrorT and MonadError, which don't have the silly Error => dependency
-- found in the "transformers" package.
-------------------------------------------------------------------------------
newtype ErrorM e a = ErrorM { runErrorM :: Either e a }
instance Functor (ErrorM e) where
fmap f m = ErrorM $ case runErrorM m of
Left err -> Left err
Right x -> Right (f x)
instance Control.Applicative.Applicative (ErrorM e) where
pure = ErrorM . Right
(<*>) = ap
instance Monad (ErrorM e) where
(>>=) m k = case runErrorM m of
Left err -> ErrorM (Left err)
Right x -> k x
throwErrorM :: e -> ErrorM e a
throwErrorM = ErrorM . Left
newtype ErrorT e m a = ErrorT { runErrorT :: m (Either e a) }
instance Monad m => Functor (ErrorT e m) where
fmap = liftM
instance Monad m => Control.Applicative.Applicative (ErrorT e m) where
pure = ErrorT . return . Right
(<*>) = ap
instance Monad m => Monad (ErrorT e m) where
(>>=) m k = ErrorT $ do
x <- runErrorT m
case x of
Left l -> return (Left l)
Right r -> runErrorT (k r)
throwErrorT :: Monad m => e -> ErrorT e m a
throwErrorT = ErrorT . return . Left
|