-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.ndn.hub.py
496 lines (377 loc) · 18.8 KB
/
main.ndn.hub.py
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
#!/usr/bin/python
import sys
import subprocess
import os
import time
import argparse
import datetime
import yaml
import random
__author__ = 'chepeftw'
numberOfNodesStr = '20'
emulationTimeStr = '600'
scenarioSize = '300'
noBuildCacheDocker = ''
timeoutStr = '800'
mode = 'single'
rootNode = '10.12.0.1'
nodeSpeed = '5'
nodePause = '1'
simulationCount = 0
numberOfNodes = 0
jobs = 1
nameList = []
baseContainerNameMin = 'ndn'
#baseContainerNameMin = 'networkstatic/iperf3'
pidsDirectory = "./var-ndn/pid/"
logsDirectory = "./var-ndn/log/"
ns3_home = '/home/srene/NS3DockerEmulator/bake/source/ns-3.26/'
base_name = "emu"
def main():
global numberOfNodesStr, \
emulationTimeStr, \
timeoutStr, \
nodeSpeed, \
nodePause, \
simulationCount, \
scenarioSize, \
numberOfNodes, \
nameList, \
jobs
print("Main ...")
###############################
# n == number of nodes
# t == simulation time in seconds
###############################
parser = argparse.ArgumentParser()
parser.add_argument("operationStr", action="store",
help="The name of the operation to perform, options: full, create, destroy")
parser.add_argument("-n", "--number", action="store", help="The number of nodes to simulate")
parser.add_argument("-t", "--time", action="store", help="The time in seconds of NS3 simulation")
parser.add_argument("-to", "--timeout", action="store", help="The timeout in seconds of NS3 simulation")
parser.add_argument("-s", "--size", action="store", help="The size in meters of NS3 network simulation")
parser.add_argument("-ns", "--nodespeed", action="store", help="The speed of the nodes expressed in m/s")
parser.add_argument("-np", "--nodepause", action="store", help="The pause of the nodes expressed in s")
parser.add_argument("-c", "--count", action="store", help="The count of simulations")
parser.add_argument("-j", "--jobs", action="store", help="The number of parallel jobs")
parser.add_argument('-v', '--version', action='version', version='%(prog)s 2.0')
args = parser.parse_args()
if args.number:
numberOfNodesStr = args.number
if args.time:
emulationTimeStr = args.time
if args.timeout:
timeoutStr = args.timeout
if args.size:
scenarioSize = args.size
if args.nodespeed:
nodeSpeed = args.nodespeed
if args.nodepause:
nodePause = args.nodepause
if args.count:
simulationCount = int(args.count)
if args.jobs:
jobs = int(args.jobs)
operation = args.operationStr
# Display input and output file name passed as the args
print("Number of nodes : %s" % numberOfNodesStr)
print("Emulation time : %s" % emulationTimeStr)
print("Operation : %s" % operation)
print("Timeout : %s" % timeoutStr)
print("Node Speed : %s" % nodeSpeed)
print("Node Pause : %s" % nodePause)
print("Simulation Count : %s" % simulationCount)
print("Scenario Size : %s x %s" % (scenarioSize, scenarioSize))
numberOfNodes = int(numberOfNodesStr)
#base_name = "emu"
for x in range(0, numberOfNodes*2):
nameList.append(base_name + str(x + 1))
if operation == "create":
create()
elif operation == "destroy":
destroy()
elif operation == "ns3":
ns3()
elif operation == "emulation":
run_emu()
else:
print("Nothing to be done ...")
################################################################################
# error handling ()
################################################################################
def check_return_code(rcode, message):
if rcode == 0:
print("Success: %s" % message)
return
print("Error: %s" % message)
# destroy() # Adding this in case something goes wrong, at least we do some cleanup
sys.exit(2)
def check_return_code_chill(rcode, message):
if rcode == 0:
print("Success: %s" % message)
return
print("Error: %s" % message)
return
################################################################################
# create ()
################################################################################
def create():
print("Creating ...")
#############################
# First we make sure we are running the latest version of our Ubuntu container
# docker build -t myubuntu docker/myubuntu/.
# r_code = subprocess.call("docker build -t %s docker/mybase/." % baseContainerName0, shell=True)
# check_return_code(r_code, "Building regular container %s" % baseContainerName0)
#r_code = subprocess.call("docker build -t %s docker/minimal/." % baseContainerNameMin, shell=True)
#r_code = subprocess.call("docker load < /home/uceesre/docker-ipfs.tar.gz" , shell=True)
#check_return_code(r_code, "Building minimal container %s" % baseContainerNameMin)
#r_code = subprocess.call("cd ns3 && bash update.sh tap-wifi-virtual-machine.cc", shell=True)
#if r_code != 0:
# print("Error copying latest ns3 file")
#else:
# print("NS3 up to date!")
# print("Go to NS3 folder, probably cd $NS3_HOME")
#r_code = subprocess.call("cd $NS3_HOME && ./waf build -j {} -d optimized --disable-examples".format(jobs),
# shell=True)
#if r_code == 0:
# print("NS3 BUILD WIN!")
#else:
# print("NS3 BUILD FAIL!")
#
#print('NS3 Build finished | Date now: %s' % datetime.datetime.now())
#############################
# First and a half ... we generate the configuration yaml files.
write_conf(0, numberOfNodes, timeoutStr, 0, 10001, "conf1.yml")
#############################
# Second, we run the numberOfNodes of containers.
# https://docs.docker.com/engine/reference/run/
# They have to run as privileged (don't remember why, need to clarify but I read it in stackoverflow)
# (Found it, it is to have access to all host devices, might be unsafe, will check later)
# By default, Docker containers are "unprivileged" and cannot, for example,
# run a Docker daemon inside a Docker container. This is because by default a container is not allowed to
# access any devices, but a "privileged" container is given access to all devices.
# -dit ... -d run as daemon, -i Keep STDIN open even if not attached, -t Allocate a pseudo-tty
# --name the name of the container, using emuX
# Finally the name of our own Ubuntu image.
if not os.path.exists(logsDirectory):
os.makedirs(logsDirectory)
dir_path = os.path.dirname(os.path.realpath(__file__))
acc_status = 0
for x in range(0, numberOfNodes+1):
if not os.path.exists(logsDirectory + nameList[x]):
os.makedirs(logsDirectory + nameList[x])
log_host_path = dir_path + logsDirectory[1:] + nameList[x]
#conf_host_path = dir_path + "/conf"
volumes = "-v " + log_host_path + ":/var/log/streaming "
print("VOLUMES: " + volumes)
'''
if x==0:
baseContainerName = baseContainerNameMin + "-server"
else:
baseContainerName = baseContainerNameMin + "-client"
'''
baseContainerName = baseContainerNameMin
acc_status += subprocess.call(
"docker run --privileged -dit --net=none %s --name %s %s" % (volumes, nameList[x], baseContainerNameMin),
#"docker run --privileged -dit --net=none %s --name %s --entrypoint '/bin/bash' %s" % (volumes, nameList[x],baseContainerName),
shell=True)
# If something went wrong running the docker containers, we panic and exit
check_return_code(acc_status, "Running docker containers")
time.sleep(1)
print('Finished running containers | Date now: %s' % datetime.datetime.now())
#############################
# Third, we create the bridges and the tap interfaces for NS3
# Based on NS3 scripts ... https://www.nsnam.org/docs/release/3.25/doxygen/tap-wifi-virtual-machine_8cc.html
# But in the source you can find more examples in the same dir.
acc_status = 0
for x in range(0, numberOfNodes*2):
acc_status += subprocess.call("bash net/singleSetup.sh %s" % (nameList[x]), shell=True)
check_return_code(acc_status, "Creating bridge and tap interface")
acc_status += subprocess.call("bash net/singleEndSetup.sh", shell=True)
check_return_code(acc_status, "Finalizing bridges and tap interfaces")
if not os.path.exists(pidsDirectory):
os.makedirs(pidsDirectory)
time.sleep(1)
print('Finished creating bridges and taps | Date now: %s' % datetime.datetime.now())
#############################
# Fourth, we create the bridges for the docker containers
# https://docs.docker.com/v1.7/articles/networking/
acc_status = 0
for x in range(0, numberOfNodes+1):
cmd = ['docker', 'inspect', '--format', "'{{ .State.Pid }}'", nameList[x]]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
pid = out[1:-2].strip()
with open(pidsDirectory + nameList[x], "w") as text_file:
text_file.write(str(pid, 'utf-8'))
if x<numberOfNodes:
print("bash net/container.sh "+nameList[x]+" "+str(x))
acc_status += subprocess.call("bash net/container.sh %s %s" % (nameList[x], x), shell=True)
else:
print("run containerhub")
acc_status += subprocess.call("bash net/containerHub.sh %s %s %s" % (base_name,x,numberOfNodes), shell=True)
# If something went wrong creating the bridges and tap interfaces, we panic and exit
# check_return_code( acc_status, "Creating bridge side-int-X and side-ext-X" )
# Old behaviour, but I got situations where this failed, who knows why and basically stopped everything
# therefore I changed it to passive, if one fails, who cares but keep on going so the next simulations
# dont break
check_return_code_chill(acc_status, "Creating bridge side-int-X and side-ext-X")
print("Done.")
print('Finished setting up bridges | Date now: %s' % datetime.datetime.now())
return
################################################################################
# end create ()
################################################################################
################################################################################
# ns3 ()
################################################################################
def ns3():
print("NS3 ...")
#total_emu_time = (5 * 60) * numberOfNodes
total_emu_time = emulationTimeStr
print('About to start NS3 RUN with total emulation time of %s' % str(total_emu_time))
tmp = 'cd '+ns3_home+' && '
tmp += './waf -j {0} --run "scratch/tap-vm3 --NumNodes={1} --TotalTime={2} --TapBaseName=emu"'
#tmp += '--SizeX={3} --SizeY={3} --MobilitySpeed={4} --MobilityPause={5}"'
ns3_cmd = tmp.format(jobs, numberOfNodesStr, total_emu_time)
print(ns3_cmd)
proc1 = subprocess.Popen(ns3_cmd, shell=True)
time.sleep(5)
print('proc1 = %s' % proc1.pid)
with open(pidsDirectory + "ns3", "w") as text_file:
text_file.write(str(proc1.pid))
print('Finished running NS3 in the background | Date now: %s' % datetime.datetime.now())
return
################################################################################
# run_emu ()
################################################################################
def run_emu():
print("RUN SIM ...")
print('About to start RUN SIM | Date now: %s' % datetime.datetime.now())
if os.path.exists(pidsDirectory + "ns3"):
with open(pidsDirectory + "ns3", "rt") as in_file:
text = in_file.read()
if os.path.exists("/proc/" + text.strip()):
print('NS3 is still running with pid = ' + text.strip())
else:
print('NS3 is NOT running')
ns3()
container_name_list = ""
for x in range(0, numberOfNodes+1):
container_name_list += nameList[x]
container_name_list += " "
acc_status = subprocess.call("docker restart -t 0 %s" % container_name_list, shell=True)
check_return_code_chill(acc_status, "Restarting containers")
for x in range(0, numberOfNodes+1):
if os.path.exists(pidsDirectory + nameList[x]):
with open(pidsDirectory + nameList[x], "rt") as in_file:
text = in_file.read()
r_code = subprocess.call("rm -rf /var/run/netns/%s" % (text.strip()), shell=True)
check_return_code_chill(r_code, "Destroying docker bridges %s" % (nameList[x]))
cmd = ['docker', 'inspect', '--format', "'{{ .State.Pid }}'", nameList[x]]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
pid = out[1:-2].strip()
with open(pidsDirectory + nameList[x], "w") as text_file:
text_file.write(str(pid, 'utf-8'))
# syncConfigTime (s) = seconds + ~seconds
sync_config_time = int(time.time()) + numberOfNodes
write_conf(sync_config_time, numberOfNodes, timeoutStr, 1, 10001, "conf1.yml")
acc_status = 0
for x in range(0, numberOfNodes+1):
#acc_status += subprocess.call("bash net/container.sh %s %s" % (nameList[x], x), shell=True)
if x<numberOfNodes:
print("bash net/container.sh "+nameList[x]+" "+str(x))
acc_status += subprocess.call("bash net/container.sh %s %s" % (nameList[x], x), shell=True)
else:
print("run containerhub")
acc_status += subprocess.call("bash net/containerHub.sh %s %s %s" % (base_name,x,numberOfNodes), shell=True)
check_return_code_chill(acc_status, "Cleaning old netns and setting up new")
print('Finished RUN SIM | Date now: %s' % datetime.datetime.now())
print('Letting the simulation run for %s' % emulationTimeStr)
#r_code = subprocess.call("docker exec "+nameList[0]+" -w /usr/sr/app/video ./publish.sh master", shell=True)
#check_return_code_chill(r_code, "Added video to server")
#cmd = ['docker', 'exec', nameList[0], "ipfs", "add","-r video"]
#proc3 = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
#out, err = proc3.communicate()
#print(cmd)
#hash = id[1:-1].strip()
#r_code = subprocess.call("docker exec -w /usr/src/app/video "+nameList[0]+" sh -c './publish.sh master >> /var/log/streaming/streaming.log'", shell=True)
#check_return_code_chill(r_code, "Added video to server")
cmd = "docker exec -w /usr/src/app/video "+nameList[0]+" sh -c './publish.sh master > /var/log/streaming/streaming.log 2> /var/log/streaming/streaming.log'"
process3 = subprocess.Popen(cmd, shell=True)
time.sleep(100)
cmd = "docker exec "+nameList[numberOfNodes]+" sh -c 'nfdc face create tcp://10.2.0.2'"
process4 = subprocess.Popen(cmd, shell=True)
time.sleep(1)
cmd = "docker exec "+nameList[numberOfNodes]+" sh -c 'nfdc route add /video tcp://10.2.0.2'"
process3 = subprocess.Popen(cmd, shell=True)
for x in range(1,numberOfNodes):
cmd = "docker exec "+nameList[x]+" sh -c 'nfdc face create tcp://10.2."+str(x)+".1'"
print(cmd)
process5 = subprocess.Popen(cmd, shell=True)
time.sleep(1)
cmd = "docker exec "+nameList[x]+" sh -c 'nfdc route add /video tcp://10.2."+str(x)+".1'"
print(cmd)
process6 = subprocess.Popen(cmd, shell=True)
# acc_status += subprocess.call("docker exec %s %s -w /usr/src/app/video ./publish.sh" % (volumes, emu1),shell=True)
list_of_nodes = list(range(1,numberOfNodes)) # list of numbers
random.shuffle(list_of_nodes)
#for x in range(1, numberOfNodes):
for x in list_of_nodes:
#for x in range(1, numberOfNodes):
#cmd = ['docker', 'exec', nameList[x],'sh -c "node --harmony streaming.js',videoHash,'/ip4/10.2.0.2/tcp/4001/ipfs/'+id+' >> /var/log/streaming.log"']
#proc4 = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
#print(cmd)
#out, err = proc4.communicate()
#print(id[1:-1].strip())
#r_code = subprocess.call("docker exec "+nameList[x]+" sh -c 'node --harmony streaming.js "+videoHash+" /ip4/10.2.0.2/tcp/4001/ipfs/"+hash+" >> /var/log/streaming/streaming.log'", shell=True)
#print("docker exec "+nameList[x]+" sh -c 'node --harmony streaming.js "+videoHash+" /ip4/10.2.0.2/tcp/4001/ipfs/"+hash+" >> /var/log/streaming/streaming.log'")
#check_return_code_chill(r_code, "Client executed") cmd = ['docker', 'inspect', '--format', "'{{ .State.Pid }}'", nameList[x]]
cmd = "docker exec "+nameList[x]+" sh -c 'node streaming-ndn.js 10.2."+str(x)+".2 10.2."+str(x)+".1 >> /var/log/streaming/streaming.log'"
print(cmd)
process7 = subprocess.Popen(cmd, shell=True)
time.sleep(10)
out, err = process3.communicate()
print("client execution done")
time.sleep(int(emulationTimeStr))
print('Finished RUN SIM 2 | Date now: %s' % datetime.datetime.now())
return
def write_conf(target, nodes, timeout, root, port, filename):
config = {
'target': target,
'nodes': nodes,
'timeout': int(timeout),
'rootnode': root,
'port': port
}
filename = "conf/" + filename
with open(filename, 'w') as yaml_file:
yaml.dump(config, yaml_file, default_flow_style=False)
################################################################################
# end ns3 ()
################################################################################
################################################################################
# destroy ()
################################################################################
def destroy():
print("Destroying ...")
print("DESTROYING ALL CONTAINERS")
r_code = subprocess.call("docker stop $(docker ps -a -q) && docker rm $(docker ps -a -q)", shell=True)
check_return_code_chill(r_code, "Destroying ALL containers")
for x in range(0, numberOfNodes*2):
r_code = subprocess.call("bash net/singleDestroy.sh %s" % (nameList[x]), shell=True)
check_return_code_chill(r_code, "Destroying bridge and tap interface %s" % (nameList[x]))
if os.path.exists(pidsDirectory + nameList[x]):
with open(pidsDirectory + nameList[x], "rt") as in_file:
text = in_file.read()
r_code = subprocess.call("rm -rf /var/run/netns/%s" % (text.strip()), shell=True)
check_return_code_chill(r_code, "Destroying docker bridges %s" % (nameList[x]))
r_code = subprocess.call("rm -rf %s" % (pidsDirectory + nameList[x]), shell=True)
check_return_code_chill(r_code, "Removing pids directory")
return
################################################################################
# end destroy ()
################################################################################
if __name__ == '__main__':
main()