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
|
module Main where
import Control.Concurrent
import Control.Concurrent.STM
import Control.Monad
import Text.Regex.TDFA
import Text.Regex.TDFA.String
import System.Directory
import System.Environment
import System.Exit
import System.FilePath
import System.IO
import System.IO.Error
import System.Process
data Network = Network
{ netNodes :: MVar [(Int, Node)]
, netDir :: FilePath
}
data Node = Node
{ nodeNetwork :: Network
, nodeProcesses :: MVar [Process]
, nodeName :: String
, nodeDir :: FilePath
}
data Process = Process
{ procHandle :: ProcessHandle
, procNode :: Node
, procStdin :: Handle
, procOutput :: TVar [String]
}
testDir :: FilePath
testDir = "./.test"
initNetwork :: IO Network
initNetwork = do
exists <- doesPathExist testDir
when exists $ ioError $ userError $ testDir ++ " exists"
createDirectoryIfMissing True testDir
callCommand "ip link add name br0 type bridge"
callCommand "ip addr add 192.168.0.1/24 broadcast 192.168.0.255 dev br0"
callCommand "ip link set dev br0 up"
callCommand "ip link set dev lo up"
Network <$> newMVar [] <*> pure testDir
exitNetwork :: Network -> IO ()
exitNetwork net = do
nodes <- readMVar (netNodes net)
ok <- fmap and $ forM nodes $ \(_, node) -> do
processes <- readMVar (nodeProcesses node)
fmap and $ forM processes $ \p -> do
hClose (procStdin p)
waitForProcess (procHandle p) >>= \case
ExitSuccess -> return True
ExitFailure code -> do
putStrLn $ "\ESC[31m" ++ nodeName node ++ "!!> exit code: " ++ show code ++ "\ESC[0m"
return False
if ok
then do removeDirectoryRecursive $ netDir net
exitSuccess
else exitFailure
getNode :: Network -> Int -> IO Node
getNode net idx = (lookup idx <$> readMVar (netNodes net)) >>= \case
Just node -> return node
_ -> do
processes <- newMVar []
let name = "node" ++ show idx
dir = netDir net </> ("erebos" ++ show idx)
node = Node { nodeNetwork = net
, nodeProcesses = processes
, nodeName = name
, nodeDir = dir
}
exists <- doesPathExist dir
when exists $ ioError $ userError $ dir ++ " exists"
createDirectoryIfMissing True dir
callCommand $ "ip netns add \""++ name ++ "\""
callCommand $ "ip link add \"veth" ++ show idx ++ ".0\" type veth peer name \"veth" ++ show idx ++ ".1\" netns \"" ++ name ++ "\""
callCommand $ "ip link set dev \"veth" ++ show idx ++ ".0\" master br0 up"
callOn node $ "ip addr add 192.168.0." ++ show (10 + idx) ++ "/24 broadcast 192.168.0.255 dev \"veth" ++ show idx ++ ".1\""
callOn node $ "ip link set dev \"veth" ++ show idx ++ ".1\" up"
callOn node $ "ip link set dev lo up"
modifyMVar_ (netNodes net) $ return . ((idx, node):)
return node
callOn :: Node -> String -> IO ()
callOn node cmd = callCommand $ "ip netns exec \"" ++ nodeName node ++ "\" " ++ cmd
spawnOn :: Node -> String -> IO Process
spawnOn node cmd = do
(Just hin, Just hout, Just herr, handle) <- createProcess (shell $ "ip netns exec \"" ++ nodeName node ++ "\" " ++ cmd)
{ std_in = CreatePipe, std_out = CreatePipe, std_err = CreatePipe
, env = Just [("EREBOS_DIR", nodeDir node)]
}
out <- newTVarIO []
let readingLoop :: Handle -> (String -> IO ()) -> IO ()
readingLoop h act =
tryIOError (hGetLine h) >>= \case
Left err
| isEOFError err -> return ()
| otherwise -> putStrLn $ "\ESC[31m" ++ nodeName node ++ "!!> IO error: " ++ show err ++ "\ESC[0m"
Right line -> do
act line
readingLoop h act
void $ forkIO $ readingLoop hout $ \line -> do
putStrLn $ nodeName node ++ "> " ++ line
atomically $ modifyTVar out (++[line])
void $ forkIO $ readingLoop herr $ \line -> do
putStrLn $ "\ESC[31m" ++ nodeName node ++ "!> " ++ line ++ "\ESC[0m"
let process = Process
{ procHandle = handle
, procNode = node
, procStdin = hin
, procOutput = out
}
modifyMVar_ (nodeProcesses node) $ return . (process:)
return process
tryMatch :: Regex -> [String] -> Maybe (String, [String])
tryMatch re (x:xs) | Right (Just _) <- regexec re x = Just (x, xs)
| otherwise = fmap (x:) <$> tryMatch re xs
tryMatch _ [] = Nothing
expect :: Process -> String -> IO ()
expect p pat = case compile defaultCompOpt defaultExecOpt ("^" ++ pat ++ "$") of
Right re -> do
mbmatch <- atomically $ do
out <- readTVar (procOutput p)
case tryMatch re out of
Nothing -> retry
Just (m, out') -> do
writeTVar (procOutput p) out'
return $ Just m
case mbmatch of
Just line -> putStrLn $ "\ESC[32m" ++ nodeName (procNode p) ++ "+> " ++ line ++ "\ESC[0m"
Nothing -> putStrLn $ "\ESC[31m" ++ nodeName (procNode p) ++ "/> expect failed" ++ "\ESC[0m"
Left err -> putStrLn $ "failed to parse re: " ++ err
send :: Process -> String -> IO ()
send p str = do
hPutStrLn (procStdin p) str
hFlush (procStdin p)
main :: IO ()
main = do
[tool] <- getArgs
net <- initNetwork
node1 <- getNode net 1
node2 <- getNode net 2
p1 <- spawnOn node1 tool
p2 <- spawnOn node2 tool
send p1 "create-identity Device1"
send p2 "create-identity Device2"
send p1 "start-server"
send p2 "start-server"
expect p1 "peer [0-9]+ 192.168.0.11:29665"
expect p1 "peer [0-9]+ 192.168.0.12:29665"
expect p2 "peer [0-9]+ 192.168.0.12:29665"
expect p2 "peer [0-9]+ 192.168.0.11:29665"
exitNetwork net
|