summaryrefslogtreecommitdiff
path: root/Presence/LocalPeerCred.hs
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2017-11-13 17:35:30 -0500
committerjoe <joe@jerkface.net>2017-11-13 17:35:30 -0500
commit4d25010f0eaf06dc7c909c17f2a6ae85d29879c3 (patch)
tree4164ef3826b781828e92e8f9e0b373786c5b14fb /Presence/LocalPeerCred.hs
parent66b7039f00faa00055353f99b8dfeee77694ae1c (diff)
Type signatures for LocalPeerCred.
Diffstat (limited to 'Presence/LocalPeerCred.hs')
-rw-r--r--Presence/LocalPeerCred.hs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Presence/LocalPeerCred.hs b/Presence/LocalPeerCred.hs
index 3396358e..c73c39df 100644
--- a/Presence/LocalPeerCred.hs
+++ b/Presence/LocalPeerCred.hs
@@ -20,12 +20,16 @@ import System.Posix.Files
20import Logging 20import Logging
21import Network.SocketLike 21import Network.SocketLike
22import ControlMaybe 22import ControlMaybe
23import Data.String
24import System.IO
23 25
26(??) :: (Num t, Ord t) => [a] -> t -> Maybe a
24xs ?? n | n < 0 = Nothing 27xs ?? n | n < 0 = Nothing
25[] ?? _ = Nothing 28[] ?? _ = Nothing
26(x:_) ?? 0 = Just x 29(x:_) ?? 0 = Just x
27(_:xs) ?? n = xs ?? (n-1) 30(_:xs) ?? n = xs ?? (n-1)
28 31
32parseHex :: W8.ByteString -> W8.ByteString
29parseHex bs = L.concat . parseHex' $ bs 33parseHex bs = L.concat . parseHex' $ bs
30 where 34 where
31 parseHex' bs = 35 parseHex' bs =
@@ -40,6 +44,7 @@ parseHex bs = L.concat . parseHex' $ bs
40 then [] 44 then []
41 else parseHex' ts 45 else parseHex' ts
42 46
47getLocalPeerCred' :: SockAddr -> IO (Maybe (UserID, W8.ByteString))
43getLocalPeerCred' (unmap6mapped4 -> SockAddrInet portn host) = do 48getLocalPeerCred' (unmap6mapped4 -> SockAddrInet portn host) = do
44 let port = fromEnum portn 49 let port = fromEnum portn
45 {- trace ("tcp4 "++show(port,host)) $ -} 50 {- trace ("tcp4 "++show(port,host)) $ -}
@@ -56,6 +61,7 @@ getLocalPeerCred' (unmap6mapped4 -> addr@(SockAddrUnix _)) =
56 -- see also: Network.Socket.getPeerCred 61 -- see also: Network.Socket.getPeerCred
57 return Nothing 62 return Nothing
58 63
64getLocalPeerCred :: SocketLike sock => sock -> IO (Maybe UserID)
59getLocalPeerCred sock = do 65getLocalPeerCred sock = do
60 addr <- getPeerName sock 66 addr <- getPeerName sock
61 muid <- getLocalPeerCred' addr 67 muid <- getLocalPeerCred' addr
@@ -72,6 +78,11 @@ from16 = fromEnum
72as16 :: Word16 -> Word16 78as16 :: Word16 -> Word16
73as16 = id 79as16 = id
74 80
81parseProcNet :: (Binary t, Num t1, Eq t, Eq t1) =>
82 t1
83 -> t
84 -> Handle
85 -> IO (Maybe (UserID, W8.ByteString))
75parseProcNet port host h = do 86parseProcNet port host h = do
76 tcp <- L.hGetContents h -- Failed: tcp <- hFileSize h >>= hGet h . fromIntegral 87 tcp <- L.hGetContents h -- Failed: tcp <- hFileSize h >>= hGet h . fromIntegral
77 let u = do 88 let u = do
@@ -101,6 +112,7 @@ parseProcNet port host h = do
101 112
102 113
103-- PEER NAME: [::ffff:127.0.0.1]:34307 114-- PEER NAME: [::ffff:127.0.0.1]:34307
115unmap6mapped4 :: SockAddr -> SockAddr
104unmap6mapped4 addr@(SockAddrInet6 port _ (0,0,0xFFFF,a) _) = SockAddrInet port (toBE32 a) 116unmap6mapped4 addr@(SockAddrInet6 port _ (0,0,0xFFFF,a) _) = SockAddrInet port (toBE32 a)
105unmap6mapped4 addr = addr 117unmap6mapped4 addr = addr
106 118
@@ -141,6 +153,7 @@ ttyToXorgs tty_pids = do
141 return dts 153 return dts
142 154
143 155
156scanProc :: t -> [Char] -> IO (Maybe (CPid, FilePath))
144scanProc uid inode = do 157scanProc uid inode = do
145 contents <- getDirectoryContents "/proc" `catchIO_` return [] 158 contents <- getDirectoryContents "/proc" `catchIO_` return []
146 let pids = reverse $ filter (\n -> not (null n) && isDigit (head n)) contents 159 let pids = reverse $ filter (\n -> not (null n) && isDigit (head n)) contents
@@ -169,6 +182,7 @@ scanProc uid inode = do
169 182
170 fmap (fmap (first (read :: String -> CPid))) $ searchPids pids 183 fmap (fmap (first (read :: String -> CPid))) $ searchPids pids
171 184
185ttyOrDisplay :: Show a => a -> FilePath -> IO [Char]
172ttyOrDisplay pid ttydev = do 186ttyOrDisplay pid ttydev = do
173 ptty <- searchParentsForTTY (show pid) ttydev 187 ptty <- searchParentsForTTY (show pid) ttydev
174 case ptty of 188 case ptty of
@@ -181,6 +195,7 @@ ttyOrDisplay pid ttydev = do
181 _ -> return ttydev 195 _ -> return ttydev
182 196
183 197
198readDisplayVariable :: Show a => a -> IO (Maybe ([Char], [Char]))
184readDisplayVariable pid = do 199readDisplayVariable pid = do
185 env <- handleIO_ (return "") 200 env <- handleIO_ (return "")
186 . readFile $ "/proc/"++show pid++"/environ" 201 . readFile $ "/proc/"++show pid++"/environ"
@@ -198,10 +213,12 @@ readDisplayVariable pid = do
198 return display 213 return display
199 214
200 215
216makeUidStr :: (Data.String.IsString t, Eq t) => t -> t
201makeUidStr "4294967295" = "invalid" 217makeUidStr "4294967295" = "invalid"
202makeUidStr uid = uid 218makeUidStr uid = uid
203 219
204 220
221searchParentsForTTY :: String -> FilePath -> IO (Maybe [Char])
205searchParentsForTTY pid ttydev | take 8 ttydev == "/dev/tty" = return . Just $ drop 5 ttydev 222searchParentsForTTY pid ttydev | take 8 ttydev == "/dev/tty" = return . Just $ drop 5 ttydev
206searchParentsForTTY "1" ttydev | otherwise = return Nothing 223searchParentsForTTY "1" ttydev | otherwise = return Nothing
207searchParentsForTTY pid ttydev = do 224searchParentsForTTY pid ttydev = do