packages feed

crypton-socks-0.6.2: src/Network/Socks5/Command.hs

{-# LANGUAGE CPP               #-}
{-# LANGUAGE ViewPatterns      #-}

{- |
Module      : Network.Socks5.Command
License     : BSD-style
Copyright   : (c) 2010-2019 Vincent Hanquez <vincent@snarc.org>
Stability   : experimental
Portability : unknown
-}

module Network.Socks5.Command
  ( establish
  , Connect (..)
  , Command (..)
  , connectIPV4
  , connectIPV6
  , connectDomainName
    -- * lowlevel interface
  , rpc
  , rpc_
  , sendSerialized
  , waitSerialized
  ) where

import           Control.Exception ( throwIO )
import           Data.ByteString ( ByteString )
import qualified Data.ByteString as B
import           Data.ByteString.Char8 ( pack )
import           Data.Serialize
                   ( Get, Result (..), Serialize (..), encode, runGetPartial )
import           Network.Socket
                   ( HostAddress, HostAddress6, PortNumber, Socket )
import           Network.Socket.ByteString ( recv, sendAll )
import           Network.Socks5.Types
                   ( SocksAddress (..), SocksCommand (..), SocksError (..)
                   , SocksHostAddress (..), SocksMethod (..), SocksReply (..)
                   , SocksVersion (..)
                   )
import           Network.Socks5.Wire
                   ( SocksHello (..), SocksHelloResponse (..)
                   , SocksRequest (..), SocksResponse (..)
                   )

-- | Establish a connection with a SOCKS server.
establish ::
     SocksVersion
     -- ^ The SOCKS protocol version to use.
  -> Socket
     -- ^ The socket to use.
  -> [SocksMethod]
     -- ^ A list of the authentification methods supported.
  -> IO SocksMethod
establish SocksVer5 socket methods = do
  sendAll socket (encode $ SocksHello methods)
  getSocksHelloResponseMethod <$> runGetDone get (recv socket 4096)

-- | Type representing connect commands.
newtype Connect = Connect SocksAddress
  deriving (Eq, Ord, Show)

-- | A type class for types that can yield a SOCKS request or, optionally, be
-- obtained from a SOCKS request.
class Command a where
  toRequest   :: a -> SocksRequest
  fromRequest :: SocksRequest -> Maybe a

instance Command SocksRequest where
  toRequest   = id
  fromRequest = Just

instance Command Connect where
  toRequest (Connect (SocksAddress ha port)) = SocksRequest
    { requestCommand = SocksCommandConnect
    , requestDstAddr = ha
    , requestDstPort = fromIntegral port
    }
  fromRequest req
    | requestCommand req /= SocksCommandConnect = Nothing
    | otherwise = Just $
        Connect $ SocksAddress (requestDstAddr req) (requestDstPort req)

-- | Connect using IPv4.
connectIPV4 ::
     Socket
     -- ^ The socket to use.
  -> HostAddress
     -- ^ The host address.
  -> PortNumber
     -- ^ The port number to use.
  -> IO (HostAddress, PortNumber)
connectIPV4 socket hostaddr port = onReply <$>
  rpc_ socket (Connect $ SocksAddress (SocksAddrIPV4 hostaddr) port)
 where
  onReply (SocksAddrIPV4 h, p) = (h, p)
  onReply _                    = error "ipv4 requested, got something different"

-- | Connect using IPv6.
connectIPV6 ::
     Socket
     -- ^ The socket to use.
  -> HostAddress6
     -- ^ The host address.
  -> PortNumber
     -- ^ The port number to use.
  -> IO (HostAddress6, PortNumber)
connectIPV6 socket hostaddr6 port = onReply <$>
  rpc_ socket (Connect $ SocksAddress (SocksAddrIPV6 hostaddr6) port)
 where
  onReply (SocksAddrIPV6 h, p) = (h, p)
  onReply _                    = error "ipv6 requested, got something different"

-- | Connect using a fully-qualified domain name (FQDN).

-- TODO: FQDN should only be ascii, maybe putting a "fqdn" data type in front to
-- make sure and make the BC.pack safe.
connectDomainName ::
     Socket
     -- ^ The socket to use.
  -> String
      -- ^ Destination FQDN. Should comprise only ASCII characters, otherwise
     -- unexpected behaviour will ensure. For FQDN including other Unicode code
     -- points, Punycode encoding should be used.
    -> PortNumber
     -- ^ The port number to use.
  -> IO (SocksHostAddress, PortNumber)
connectDomainName socket fqdn port =
  rpc_ socket $ Connect $ SocksAddress (SocksAddrDomainName $ pack fqdn) port

-- | Send data to the specified socket.
sendSerialized ::
     Serialize a
  => Socket
     -- ^ The socket to use.
  -> a
     -- ^ The data.
  -> IO ()
sendSerialized sock a = sendAll sock $ encode a

-- | Wait for data from the specified socket.
waitSerialized ::
     Serialize a
  => Socket
     -- ^ The socket to use.
  -> IO a
waitSerialized sock = runGetDone get (getMore sock)

-- | Try to execute the specified command with the specified socket.
rpc ::
     Command a
  => Socket
     -- ^ The socket to use.
  -> a
     -- ^ The command.
  -> IO (Either SocksError (SocksHostAddress, PortNumber))
rpc socket req = do
  sendSerialized socket (toRequest req)
  onReply <$> runGetDone get (getMore socket)
 where
  onReply res@(responseReply -> reply) =
    case reply of
      SocksReplySuccess ->
        Right (responseBindAddr res, fromIntegral $ responseBindPort res)
      SocksReplyError e -> Left e

-- | As for 'rpc' but throws an exception if it does not succeed.
rpc_ ::
     Command a
  => Socket
     -- ^ The socket to use.
  -> a
     -- ^ The command.
  -> IO (SocksHostAddress, PortNumber)
rpc_ socket req = rpc socket req >>= either throwIO return

-- This function expects all the data to be consumed. This is fine for
-- intertwined messages, but might not be a good idea for multi-messages from
-- one party.
runGetDone :: Serialize a => Get a -> IO ByteString -> IO a
runGetDone getter ioget = ioget >>= r . runGetPartial getter
 where
#if MIN_VERSION_cereal(0,4,0)
  r (Fail s _) = error s
#else
  r (Fail s) = error s
#endif
  r (Partial cont) = ioget >>= r . cont
  r (Done a b)
      | not $ B.null b = error "got too many bytes while receiving data"
      | otherwise = return a

getMore :: Socket -> IO ByteString
getMore socket = recv socket 4096