forked from yyd19981117/Graphml-To-Mininet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphML-to-Mininet.py
More file actions
588 lines (497 loc) · 18.6 KB
/
Copy pathGraphML-to-Mininet.py
File metadata and controls
588 lines (497 loc) · 18.6 KB
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
#!/usr/bin/python
#################################################################################
#
# GraphML-to-Mininet
#
# Parses Network Topologies in GraphML format from the Internet Topology Zoo.
# A python file for creating Mininet Topologies will be created as Output.
# Files have to be in the same directory.
#
# Arguments:
# -f [filename of GraphML input file]
# --file [filename of GraphML input file]
# -o [filename of GraphML output file]
# --output [filename of GraphML output file]
# -b [number as integer for DEFAULT bandwidth in mbit]
# --bw [number as integer for DEFAULT bandwidth in mbit]
# --bandwidth [number as integer for DEFAULT bandwidth in mbit]
# -c [controller ip as string]
# --controller [controller ip as string]
# -p [port number as string]
# -port [port number as string]
#
# sjas
# Wed Jul 17 02:59:06 PDT 2013
#
# modified
# Tue Apr 19 2022
#
#################################################################################
import xml.etree.ElementTree as ET
import numpy as np
import sys
import math
import re
import random
import keyword
from sys import argv
input_file_name = ''
output_file_name = ''
bandwidth_argument = ''
controller_ip = ''
controller_port = ''
# This is the 17 to 24 digits in the IP address, that is X in 10.0.X.0.
# To handle the situation in which the number of nodes excceed 254.
# Host begin from 10.0.0.1, switch begin from 10.0.8.1.
# IP is limited in the field of 10.0.0.0/12
# If a host IP is 10.0.X.Y, then its corresponding switch node is 10.0.X+8.Y
# Support up to 254 * 8 nodes in current setting
# To change the node number limit, you should modify the '/12' mask setting.
ip_host_base = -1
ip_switch_base = 7
# Enable spanning tree protocol (STP) to OpenvSwitch in Mininet
enable_stp = 0
# Enable Mininet CLI after simulation code complete, else exit immediately
enable_cli = 0
# Enable tips for user, telling them to add their own simulation code
enable_tip = 1
# First check commandline arguments
for i in range(len(argv)):
if argv[i] == '-f':
input_file_name = argv[i+1]
if argv[i] == '--file':
input_file_name = argv[i+1]
if argv[i] == '-o':
output_file_name = argv[i+1]
if argv[i] == '--output':
output_file_name = argv[i+1]
if argv[i] == '-b':
bandwidth_argument = argv[i+1]
if argv[i] == '--bw':
bandwidth_argument = argv[i+1]
if argv[i] == '--bandwidth':
bandwidth_argument = argv[i+1]
if argv[i] == '-c':
controller_ip = argv[i+1]
if argv[i] == '--controller':
controller_ip = argv[i+1]
if argv[i] == '-p':
controller_port = argv[i+1]
if argv[i] == '--port':
controller_port = argv[i+1]
if argv[i] == '-s':
enable_stp = 1
if argv[i] == '--stp':
enable_stp = 1
if argv[i] == '--cli':
enable_cli = 1
if argv[i] == '--notip':
enable_tip = 0
# Terminate when inputfile is missing
if input_file_name == '':
sys.exit('\033[1;31mError: No input file was specified as argument!\033[0m')
# Define string fragments for output later on
outputstring_1 = '''#!/usr/bin/python
"""
Custom topology for Mininet, generated by GraphML-Topo-to-Mininet-Network-Generator.
"""
from mininet.net import Mininet
from mininet.node import Controller, RemoteController, OVSController
from mininet.node import CPULimitedHost, Host, Node
from mininet.node import OVSKernelSwitch, UserSwitch
from mininet.node import IVSSwitch
from mininet.cli import CLI
from mininet.log import setLogLevel, info
from mininet.link import TCLink, Intf
from subprocess import call
import time
def myNetwork():
net = Mininet( topo=None,
build=False,
ipBase='10.0.0.0/12',
autoSetMacs = True
)
info( '\033[1;36m*** Adding controller\033[0m\\n')\n
'''
outputstring_2a='''
info( '\033[1;36m*** Add switches\033[0m\\n')\n
'''
outputstring_2b='''
info( '\033[1;36m*** Add hosts\033[0m\\n')\n
'''
outputstring_2c='''
info( '\033[1;36m*** Add links\033[0m\\n')\n
'''
outputstring_3='''
info( '\\n\033[1;36m*** Starting network\033[0m\\n')\n
net.build()
info( '\033[1;36m*** Starting controllers\033[0m\\n')\n
for controller in net.controllers:
controller.start()
info( '\033[1;36m*** Starting switches\033[0m\\n')\n
'''
outputstring_4a='''
info( '\\n\033[1;36m*** Post configure switches and hosts\033[0m\\n')\n
'''
outputstring_4b='''
info( '\033[1;36m*** Wait while enabling RSTP to OpenvSwitch\033[0m\\n')
'''
user_simulation_code_area='''
####################################
#### USER SIMULATION CODE HERE #####
####################################
# Your automatic simulation code.
####################################
'''
outputstring_4c='''
CLI(net)
'''
outputstring_4d='''
net.stop()
if __name__ == '__main__':
setLogLevel( 'info' )
myNetwork()
'''
outputstring_5 = '''
'''
# WHERE TO PUT RESULTS
outputstring_to_be_exported = ''
outputstring_to_be_exported += outputstring_1
# OUTPUT the controller settings
outputstring_controller = ''' c0 = net.addController(name='c0',
controller=RemoteController,
ip='''
outputstring_controller += "'127.0.0.1'" if controller_ip == '' else "'" + controller_ip + "'"
outputstring_controller += ','
outputstring_controller += '''
protocol='tcp',
port='''
outputstring_controller += '''6633''' if controller_port == '' else controller_port
outputstring_controller += ''')
'''
outputstring_to_be_exported += outputstring_controller
# READ FILE AND DO ALL THE ACTUAL PARSING IN THE NEXT PARTS
xml_tree = ET.parse(input_file_name)
namespace = "{http://graphml.graphdrawing.org/xmlns}"
ns = namespace # just doing shortcutting, namespace is needed often.
# GET ALL ELEMENTS THAT ARE PARENTS OF ELEMENTS NEEDED LATER ON
root_element = xml_tree.getroot()
graph_element = root_element.find(ns + 'graph')
# GET ALL ELEMENT SETS NEEDED LATER ON
index_values_set = root_element.findall(ns + 'key')
node_set = graph_element.findall(ns + 'node')
edge_set = graph_element.findall(ns + 'edge')
# SET SOME VARIABLES TO SAVE FOUND DATA FIRST
# Memomorize the values' ids to search for in current topology
node_label_name_in_graphml = ''
node_latitude_name_in_graphml = ''
node_longitude_name_in_graphml = ''
node_edge_bandwidth = ''
# For saving the current values
node_index_value = ''
node_name_value = ''
node_longitude_value = ''
node_latitude_value = ''
edge_bandwidth_unit = ''
edge_bandwidth_temp_info = ''
# ID: value dictionaries
id_node_name_dict = {} # to hold all 'id: node_name_value' pairs
id_longitude_dict = {} # to hold all 'id: node_longitude_value' pairs
id_latitude_dict = {} # to hold all 'id: node_latitude_value' pairs
# FIND OUT WHAT KEYS ARE TO BE USED, SINCE THIS DIFFERS IN DIFFERENT GRAPHML TOPOLOGIES
for i in index_values_set:
if i.attrib['attr.name'] == 'label' and i.attrib['for'] == 'node':
node_label_name_in_graphml = i.attrib['id']
if i.attrib['attr.name'] == 'Longitude':
node_longitude_name_in_graphml = i.attrib['id']
if i.attrib['attr.name'] == 'Latitude':
node_latitude_name_in_graphml = i.attrib['id']
if i.attrib['attr.name'] == 'LinkSpeed' and i.attrib['for'] == 'edge':
node_edge_bandwidth = i.attrib['id']
if i.attrib['attr.name'] == 'LinkSpeedUnits' and i.attrib['for'] == 'edge':
edge_bandwidth_unit = i.attrib['id']
if i.attrib['attr.name'] == 'LinkLabel' and i.attrib['for'] == 'edge':
edge_bandwidth_temp_info = i.attrib['id']
# Calculate THE AVERAGE LONGITUDE AND LATITUDE TO COVER NULL GEOGRAPHICAL DATA
longitude_set = []
latitude_set = []
for n in node_set:
location_set = n.findall(ns + 'data')
# Finally get all needed values
for l in location_set:
# Longitude data
if l.attrib['key'] == node_longitude_name_in_graphml:
longitude_set.append(float(l.text))
# Latitude data
if l.attrib['key'] == node_latitude_name_in_graphml:
latitude_set.append(float(l.text))
defalult_longitude = round(np.mean(longitude_set), 5) if len(longitude_set) != 0 else 0.0
defalult_latitude = round(np.mean(latitude_set), 5) if len(latitude_set) != 0 else 0.0
# NOW PARSE ELEMENT SETS TO GET THE DATA FOR THE TOPO
# GET NODE_NAME DATA
# GET LONGITUDE DATK
# GET LATITUDE DATA
node_names = []
node_count = 0
for n in node_set:
node_index_value = n.attrib['id']
# Get all data elements residing under all node elements
data_set = n.findall(ns + 'data')
node_count = node_count + 1
# Finally get all needed values
for d in data_set:
# Node name in python variable format
if d.attrib['key'] == node_label_name_in_graphml:
node_name_value = re.sub('[^a-zA-Z0-9_]', '', d.text)
node_name_value = re.match('[^0-9_]+[a-zA-Z0-9_]*', node_name_value)
if node_name_value is None:
node_name_value = 'NotGiven'
else:
node_name_value = node_name_value.group()
if keyword.iskeyword(node_name_value) or node_name_value == 'None':
node_name_value = 'NotGiven'
node_names.append(node_name_value)
# Longitude data
if d.attrib['key'] == node_longitude_name_in_graphml:
node_longitude_value = d.text
# Latitude data
if d.attrib['key'] == node_latitude_name_in_graphml:
node_latitude_value = d.text
# Save ID: data couple
id_node_name_dict[node_index_value] = node_name_value
id_longitude_dict[node_index_value] = node_longitude_value if node_longitude_value != '' else defalult_longitude
id_latitude_dict[node_index_value] = node_latitude_value if node_latitude_value != '' else defalult_latitude
cur_node = 1
# If the names of some nodes are same,
# They will be regarded as the same node in topology.
# Here checks whether there are same node names.
# If exist, change the node names into standard formant 's + No' (e.g. s11, s12).
if len(set(node_names)) != len(node_names) or 'NotGiven' in node_names:
id_node_name_dict = {}
for n in node_set:
node_index_value = n.attrib['id']
id_node_name_dict[node_index_value] = 's' + str(cur_node)
cur_node = cur_node + 1
# STRING CREATION
# FIRST CREATE THE SWITCHES AND HOSTS
tempstring1 = ''
tempstring2 = ''
tempstring3 = ''
local_link_flag = 1
for i in range(0, len(id_node_name_dict)):
# Create switch
temp1 = ' '
temp1 += id_node_name_dict[str(i)]
temp1 += " = net.addSwitch('s"
temp1 += str(i+1)
temp1 += "', cls=OVSKernelSwitch, dpid='"
temp1 += (16-len(str(i+1))) * '0'
temp1 += str(i+1)
temp1 += "')\n"
# Create corresponding host
temp2 = ' '
temp2 += id_node_name_dict[str(i)]
temp2 += "_host = net.addHost('h"
temp2 += str((i+1))
if i % 254 == 0:
ip_host_base = ip_host_base + 1
temp2 += "', cls=Host, ip='10.0."
temp2 += str(ip_host_base)
temp2 += '.'
temp2 += str((i % 254) + 1)
temp2 += "', defaultRoute=None"
temp2 += ")\n"
tempstring1 += temp1
tempstring2 += temp2
# Link each switch and its host...
# Local links bewteen switch and its corresponding host is 1000 Mbps by default
# Linkname = 'local_link'
linkname = ' local_link'
value = " = {'bw':1000.0, 'delay':'0ms'}\n"
if local_link_flag:
tempstring3 += linkname
tempstring3 += value
local_link_flag = 0
temp3 = ' net.addLink('
temp3 += id_node_name_dict[str(i)]
temp3 += ', '
temp3 += id_node_name_dict[str(i)]
temp3 += "_host, cls=TCLink, **"
# Temp3 += id_node_name_dict[str(i)] + '_local'
temp3 += "local_link"
temp3 += ")"
temp3 += '\n'
tempstring3 += temp3
outputstring_to_be_exported += outputstring_2a
outputstring_to_be_exported += tempstring1
outputstring_to_be_exported += outputstring_2b
outputstring_to_be_exported += tempstring2
outputstring_to_be_exported += outputstring_2c
tempstring3 += '\n'
outputstring_to_be_exported += tempstring3
# SECOND CALCULATE DISTANCES BETWEEN SWITCHES,
# Set global bandwidth and create the edges between switches,
# And link each single host to its corresponding switch
tempstring4 = ''
tempstring5 = ''
distance = 0.0
latency = 0.0
citylinknum = 0
edge_count = 0
for e in edge_set:
# GET IDS FOR EASIER HANDLING
src_id = e.attrib['source']
dst_id = e.attrib['target']
bandwidth_from_text = ''
bandwidth_unit = ''
bandwidth_temp_info = ''
edge_data = e.findall(ns + 'data')
edge_count = edge_count + 1
for e_d in edge_data:
if e_d.attrib['key'] == node_edge_bandwidth:
bandwidth_from_text = e_d.text
if e_d.attrib['key'] == edge_bandwidth_unit:
bandwidth_unit = e_d.text
if e_d.attrib['key'] == edge_bandwidth_temp_info:
bandwidth_temp_info = e_d.text
# CALCULATE DELAYS
# CALCULATION EXPLANATION
#
# formula: (for distance)
# dist(SP,EP) = arccos{ sin(La[EP]) * sin(La[SP]) + cos(La[EP]) * cos(La[SP]) * cos(Lo[EP] - Lo[SP])} * r
# r = 6378.137 km
#
# formula: (speed of light, not within a vacuumed box)
# v = 1.97 * 10**8 m/s
#
# formula: (latency being calculated from distance and light speed)
# t = distance / speed of light
# t (in ms) = ( distance in km * 1000 (for meters) ) / ( speed of light / 1000 (for ms))
# ACTUAL CALCULATION: implementing this was no fun.
latitude_src = math.radians(float(id_latitude_dict[src_id]))
latitude_dst = math.radians(float(id_latitude_dict[dst_id]))
longitude_src = math.radians(float(id_longitude_dict[src_id]))
longitude_dst = math.radians(float(id_longitude_dict[dst_id]))
first_product = math.sin(latitude_dst) * math.sin(latitude_src)
second_product_first_part = math.cos(latitude_dst) * math.cos(latitude_src)
second_product_second_part = math.cos(longitude_dst - longitude_src)
# If some latitude or longtitude data is empty, acos may fail,
# Use random latency instead.
try:
distance = math.acos(first_product + (second_product_first_part * second_product_second_part)) * 6378.137
latency = round(( distance * 1000 ) / ( 197000 ), 4)
except ValueError as latitude_NULL:
latency = round(random.uniform(0, 5), 4)
# t (in ms) = ( distance in km * 1000 (for meters) ) / ( speed of light / 1000 (for ms))
# t = ( distance * 1000 ) / ( 1.97 * 10**8 / 1000 )
# Set the DEFAULT bandwidth first,
# If the bandwidth data exist, change it later.
real_bandwidth = float(bandwidth_argument) if bandwidth_argument != '' else 128.0
# Get the edge bandwidth data from GRAPHML fields.
if bandwidth_from_text != '':
real_bandwidth = float(bandwidth_from_text)
# Check whether the bandwidth unit is Gbps.
if bandwidth_unit == 'G':
real_bandwidth = real_bandwidth * 1024
# if the bandwidth cannot be found in LinkSpeed, use LinkLabel instead
elif bandwidth_from_text == '' and bandwidth_temp_info != '':
bandwidth_digits = re.findall("\d+[.?\d+]", bandwidth_temp_info)
for digits in range (0, len(bandwidth_digits)):
bandwidth_digits[digits] = float(bandwidth_digits[digits])
if len(bandwidth_digits) > 0:
real_bandwidth = np.mean(bandwidth_digits)
if bandwidth_temp_info.find('Gb') >= 0:
real_bandwidth = real_bandwidth * 1024
# Mininet does not support custom bandwidth setting that excceed 1000 Mbps.
if real_bandwidth > 1000.0:
real_bandwidth = 1000.0
citylinknum = citylinknum + 1
# Link all corresponding switches with each other
linkname = ' CityLink' + str(citylinknum)
value = " = {'bw':"
value += str(real_bandwidth)
value += ", 'delay':'"
value += str(latency)
value += "ms'}\n"
tempstring4 += linkname
tempstring4 += value
temp4 = ' net.addLink('
temp4 += id_node_name_dict[src_id]
temp4 += ', '
temp4 += id_node_name_dict[dst_id]
temp4 += ", cls=TCLink, **"
temp4 += "CityLink"
temp4 += str(citylinknum)
temp4 += ")"
temp4 += '\n'
# Next line so i dont have to look up other possible settings
# temp4 += "ms', loss=0, max_queue_size=1000, use_htb=True)"
tempstring4 += temp4
tempstring5 = ''
for i in range(0, len(id_node_name_dict)):
temp5 = " net.get('s"
temp5 += str(i+1)
temp5 += "').start([c0])\n"
tempstring5 += temp5
outputstring_to_be_exported += tempstring4
outputstring_to_be_exported += outputstring_3
outputstring_to_be_exported += tempstring5
outputstring_to_be_exported += outputstring_4a
# Configure switch IP
switch_addr = ''
for i in range(0, len(id_node_name_dict)):
addr = ' '
addr += id_node_name_dict[str(i)]
addr += ".cmd('ifconfig s"
addr += str(i+1)
addr += " 10.0."
if i % 254 == 0:
ip_switch_base = ip_switch_base + 1
addr += str(ip_switch_base)
addr += '.'
addr += str((i % 254) + 1)
addr += "')"
addr += '\n'
switch_addr += addr
outputstring_to_be_exported += switch_addr
if enable_stp:
stp_time = 5 + int(len(id_node_name_dict))
outputstring_to_be_exported += outputstring_4b
stp_wait = ''
stp_wait += " info( '\033[1;33m*** Expected time: "
stp_wait += str(stp_time / 60)
stp_wait += ' min '
stp_wait += str(stp_time % 60)
stp_wait += ' sec'
stp_wait += "\033[0m\\n')\n"
outputstring_to_be_exported += stp_wait
stp_active = ''
for i in range(0, len(id_node_name_dict)):
stp_command = ' '
stp_command += id_node_name_dict[str(i)]
stp_command += ".cmd('ovs-vsctl set bridge s"
stp_command += str(i+1)
stp_command += " rstp_enable=true')\n"
stp_active += stp_command
stp_active += '\n time.sleep('
stp_active += str(stp_time)
stp_active += ')\n'
outputstring_to_be_exported += stp_active
outputstring_to_be_exported += user_simulation_code_area
if enable_cli:
outputstring_to_be_exported += outputstring_4c
outputstring_to_be_exported += outputstring_4d
# GENERATION FINISHED, WRITE STRING TO FILE
outputfile = ''
if output_file_name == '':
output_file_name = re.split("\.", input_file_name)[0] + '.py'
outputfile = open(output_file_name, 'w')
outputfile.write(outputstring_to_be_exported)
outputfile.close()
print "Generate \033[0;33m" + input_file_name + "\033[0m SUCCESSFUL! \033[0;36m" + \
"(" + str(node_count) + " Switches, " + \
str(edge_count) + " Links)\033[0m"
if enable_tip:
print ""
print "*** NEXT STEP ***"
print "*** PLease Place Your Additional Simulation Code in the <USER SIMULATION CODE HERE> area of .py Runnable Topology File. ***"