2016-06-14 10:04:23 +00:00
#!/usr/bin/env python
#
# Copyright (C) 2016 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-07-13 07:58:53 +00:00
import os
2017-03-20 18:14:07 +00:00
import html
2016-06-14 14:07:37 +00:00
import json
2016-10-07 10:33:46 +00:00
import copy
2016-07-07 10:10:42 +00:00
import uuid
2017-01-06 14:16:19 +00:00
import glob
2016-07-07 10:10:42 +00:00
import shutil
2016-07-28 16:11:52 +00:00
import zipfile
2016-06-14 14:07:37 +00:00
import aiohttp
2016-07-28 16:11:52 +00:00
import jsonschema
2016-06-14 14:07:37 +00:00
2016-06-14 10:04:23 +00:00
from . . version import __version__
2016-07-11 13:36:52 +00:00
from . . schemas . topology import TOPOLOGY_SCHEMA
2016-10-07 10:33:46 +00:00
from . . schemas import dynamips_vm
2016-08-17 15:12:23 +00:00
from . . utils . qt import qt_font_to_style
2016-10-07 10:33:46 +00:00
from . . compute . dynamips import PLATFORMS_DEFAULT_RAM
2016-07-11 13:36:52 +00:00
import logging
log = logging . getLogger ( __name__ )
2016-06-14 10:04:23 +00:00
2018-03-30 14:18:44 +00:00
GNS3_FILE_FORMAT_REVISION = 9
2016-06-14 10:04:23 +00:00
2016-06-14 14:57:13 +00:00
2016-07-11 13:36:52 +00:00
def _check_topology_schema ( topo ) :
try :
jsonschema . validate ( topo , TOPOLOGY_SCHEMA )
2016-10-07 10:33:46 +00:00
# Check the nodes property against compute schemas
for node in topo [ " topology " ] . get ( " nodes " , [ ] ) :
schema = None
if node [ " node_type " ] == " dynamips " :
schema = copy . deepcopy ( dynamips_vm . VM_CREATE_SCHEMA )
if schema :
# Properties send to compute but in an other place in topology
delete_properties = [ " name " , " node_id " ]
for prop in delete_properties :
del schema [ " properties " ] [ prop ]
schema [ " required " ] = [ p for p in schema [ " required " ] if p not in delete_properties ]
jsonschema . validate ( node . get ( " properties " , { } ) , schema )
2016-07-11 13:36:52 +00:00
except jsonschema . ValidationError as e :
error = " Invalid data in topology file: {} in schema: {} " . format (
e . message ,
json . dumps ( e . schema ) )
2021-04-07 03:10:15 +00:00
log . debug ( error )
2016-07-11 13:36:52 +00:00
raise aiohttp . web . HTTPConflict ( text = error )
2016-06-14 10:04:23 +00:00
def project_to_topology ( project ) :
"""
2021-04-07 03:10:15 +00:00
: return : A dictionary with the topology ready to dump to a . gns3
2016-06-14 10:04:23 +00:00
"""
data = {
" project_id " : project . id ,
" name " : project . name ,
2016-07-07 10:10:42 +00:00
" auto_start " : project . auto_start ,
2016-08-16 13:45:06 +00:00
" auto_open " : project . auto_open ,
" auto_close " : project . auto_close ,
2016-10-05 13:52:44 +00:00
" scene_width " : project . scene_width ,
" scene_height " : project . scene_height ,
2017-06-30 12:31:25 +00:00
" zoom " : project . zoom ,
" show_layers " : project . show_layers ,
" snap_to_grid " : project . snap_to_grid ,
" show_grid " : project . show_grid ,
2018-04-13 08:54:57 +00:00
" grid_size " : project . grid_size ,
2018-11-25 13:25:29 +00:00
" drawing_grid_size " : project . drawing_grid_size ,
2017-07-03 08:01:22 +00:00
" show_interface_labels " : project . show_interface_labels ,
2018-05-08 08:07:42 +00:00
" variables " : project . variables ,
" supplier " : project . supplier ,
2016-06-14 10:04:23 +00:00
" topology " : {
" nodes " : [ ] ,
" links " : [ ] ,
2016-06-20 16:45:31 +00:00
" computes " : [ ] ,
2016-06-23 09:17:23 +00:00
" drawings " : [ ]
2016-06-14 10:04:23 +00:00
} ,
" type " : " topology " ,
2016-06-14 14:07:37 +00:00
" revision " : GNS3_FILE_FORMAT_REVISION ,
2016-06-14 10:04:23 +00:00
" version " : __version__
}
for node in project . nodes . values ( ) :
2020-05-26 09:04:20 +00:00
if hasattr ( node , " __json__ " ) :
data [ " topology " ] [ " nodes " ] . append ( node . __json__ ( topology_dump = True ) )
else :
data [ " topology " ] [ " nodes " ] . append ( node )
2016-06-14 10:04:23 +00:00
for link in project . links . values ( ) :
2020-05-26 09:04:20 +00:00
if hasattr ( link , " __json__ " ) :
data [ " topology " ] [ " links " ] . append ( link . __json__ ( topology_dump = True ) )
else :
data [ " topology " ] [ " links " ] . append ( link )
2016-06-23 09:17:23 +00:00
for drawing in project . drawings . values ( ) :
2020-05-26 09:04:20 +00:00
if hasattr ( drawing , " __json__ " ) :
data [ " topology " ] [ " drawings " ] . append ( drawing . __json__ ( topology_dump = True ) )
else :
data [ " topology " ] [ " drawings " ] . append ( drawing )
for compute in project . computes :
2016-06-14 10:04:23 +00:00
if hasattr ( compute , " __json__ " ) :
2017-01-09 09:14:21 +00:00
compute = compute . __json__ ( topology_dump = True )
if compute [ " compute_id " ] not in ( " vm " , " local " , ) :
data [ " topology " ] [ " computes " ] . append ( compute )
2020-05-26 12:10:41 +00:00
elif isinstance ( compute , dict ) :
2020-05-26 09:04:20 +00:00
data [ " topology " ] [ " computes " ] . append ( compute )
2016-07-11 13:36:52 +00:00
_check_topology_schema ( data )
2016-06-14 10:04:23 +00:00
return data
2016-06-14 14:07:37 +00:00
def load_topology ( path ) :
"""
Open a topology file , patch it for last GNS3 release and return it
"""
2016-07-07 10:10:42 +00:00
log . debug ( " Read topology %s " , path )
2016-06-14 14:07:37 +00:00
try :
2016-09-18 20:23:52 +00:00
with open ( path , encoding = " utf-8 " ) as f :
2016-06-14 14:07:37 +00:00
topo = json . load ( f )
2016-12-21 08:45:24 +00:00
except ( OSError , UnicodeDecodeError , ValueError ) as e :
2016-06-14 14:07:37 +00:00
raise aiohttp . web . HTTPConflict ( text = " Could not load topology {} : {} " . format ( path , str ( e ) ) )
2017-02-02 10:52:55 +00:00
if topo . get ( " revision " , 0 ) > GNS3_FILE_FORMAT_REVISION :
2019-05-26 08:44:55 +00:00
raise aiohttp . web . HTTPConflict ( text = " This project was created with more recent version of GNS3 (file revision: {} ). Please upgrade GNS3 to version {} or later " . format ( topo [ " revision " ] , topo [ " version " ] ) )
2017-02-02 10:52:55 +00:00
changed = False
if " revision " not in topo or topo [ " revision " ] < GNS3_FILE_FORMAT_REVISION :
2019-05-26 08:44:55 +00:00
# Convert the topology if this is an old one but backup the file first
2017-05-03 15:35:10 +00:00
try :
shutil . copy ( path , path + " .backup {} " . format ( topo . get ( " revision " , 0 ) ) )
2019-05-26 08:44:55 +00:00
except OSError as e :
2017-05-03 15:35:10 +00:00
raise aiohttp . web . HTTPConflict ( text = " Can ' t write backup of the topology {} : {} " . format ( path , str ( e ) ) )
2017-02-02 10:52:55 +00:00
changed = True
2019-05-26 08:44:55 +00:00
# update the version because we converted the topology
topo [ " version " ] = __version__
2017-02-02 10:52:55 +00:00
if " revision " not in topo or topo [ " revision " ] < 5 :
2016-07-13 07:58:53 +00:00
topo = _convert_1_3_later ( topo , path )
2016-11-03 17:17:50 +00:00
# Version before GNS3 2.0 alpha 4
if topo [ " revision " ] < 6 :
topo = _convert_2_0_0_alpha ( topo , path )
2017-01-06 14:16:19 +00:00
# Version before GNS3 2.0 beta 3
if topo [ " revision " ] < 7 :
topo = _convert_2_0_0_beta_2 ( topo , path )
2017-02-02 18:13:47 +00:00
# Version before GNS3 2.1
if topo [ " revision " ] < 8 :
topo = _convert_2_0_0 ( topo , path )
2018-03-30 14:18:44 +00:00
# Version before GNS3 2.1
if topo [ " revision " ] < 9 :
topo = _convert_2_1_0 ( topo , path )
2018-11-28 09:12:57 +00:00
# Version GNS3 2.2 dev (for project created with 2.2dev).
2019-03-02 09:26:40 +00:00
# Appliance ID has been replaced by Template ID
2018-11-28 09:12:57 +00:00
if topo [ " revision " ] == 9 :
for node in topo . get ( " topology " , { } ) . get ( " nodes " , [ ] ) :
if " appliance_id " in node :
node [ " template_id " ] = node [ " appliance_id " ]
del node [ " appliance_id " ]
2019-10-08 09:16:17 +00:00
# make sure console_type is not None but "none" string
if " console_type " in node and node [ " console_type " ] is None :
node [ " console_type " ] = " none "
2018-11-28 09:12:57 +00:00
2020-03-14 06:52:43 +00:00
# make sure we can open a project with empty variable name
variables = topo . get ( " variables " )
if variables :
topo [ " variables " ] = [ var for var in variables if var . get ( " name " ) ]
2017-03-06 11:15:52 +00:00
try :
_check_topology_schema ( topo )
except aiohttp . web . HTTPConflict as e :
log . error ( " Can ' t load the topology %s " , path )
raise e
2017-02-02 10:52:55 +00:00
if changed :
2017-05-03 15:28:47 +00:00
try :
with open ( path , " w+ " , encoding = " utf-8 " ) as f :
json . dump ( topo , f , indent = 4 , sort_keys = True )
2019-03-02 09:26:40 +00:00
except OSError as e :
2017-05-03 15:28:47 +00:00
raise aiohttp . web . HTTPConflict ( text = " Can ' t write the topology {} : {} " . format ( path , str ( e ) ) )
2016-06-14 14:07:37 +00:00
return topo
2016-07-07 10:10:42 +00:00
2018-03-30 14:18:44 +00:00
def _convert_2_1_0 ( topo , topo_path ) :
"""
Convert topologies from GNS3 2.1 . x to 2.2
Changes :
* Removed acpi_shutdown option from Qemu , VMware and VirtualBox
2019-10-08 09:16:17 +00:00
2018-03-30 14:18:44 +00:00
"""
topo [ " revision " ] = 9
2019-03-31 09:48:08 +00:00
if " grid_size " in topo :
# drawing_grid_size should be the same size as grid_size
# to avoid overlapping grids
topo [ " drawing_grid_size " ] = topo [ " grid_size " ]
2018-03-30 14:18:44 +00:00
for node in topo . get ( " topology " , { } ) . get ( " nodes " , [ ] ) :
2019-10-08 09:16:17 +00:00
# make sure console_type is not None but "none" string
if " console_type " in node and node [ " console_type " ] is None :
node [ " console_type " ] = " none "
2018-03-30 14:18:44 +00:00
if " properties " in node :
if node [ " node_type " ] in ( " qemu " , " vmware " , " virtualbox " ) :
if " acpi_shutdown " in node [ " properties " ] :
2018-03-30 16:01:37 +00:00
if node [ " properties " ] [ " acpi_shutdown " ] is True :
2022-03-23 07:38:14 +00:00
node [ " properties " ] [ " on_close " ] = " save_vm_state "
2018-03-30 16:01:37 +00:00
else :
node [ " properties " ] [ " on_close " ] = " power_off "
2018-03-30 14:18:44 +00:00
del node [ " properties " ] [ " acpi_shutdown " ]
if " save_vm_state " in node [ " properties " ] :
del node [ " properties " ] [ " save_vm_state " ]
return topo
2017-02-02 18:13:47 +00:00
def _convert_2_0_0 ( topo , topo_path ) :
"""
Convert topologies from GNS3 2.0 .0 to 2.1
Changes :
* Remove startup_script_path from VPCS and base config file for IOU and Dynamips
"""
topo [ " revision " ] = 8
for node in topo . get ( " topology " , { } ) . get ( " nodes " , [ ] ) :
if " properties " in node :
if node [ " node_type " ] == " vpcs " :
if " startup_script_path " in node [ " properties " ] :
del node [ " properties " ] [ " startup_script_path " ]
if " startup_script " in node [ " properties " ] :
del node [ " properties " ] [ " startup_script " ]
elif node [ " node_type " ] == " dynamips " or node [ " node_type " ] == " iou " :
if " startup_config " in node [ " properties " ] :
del node [ " properties " ] [ " startup_config " ]
if " private_config " in node [ " properties " ] :
del node [ " properties " ] [ " private_config " ]
if " startup_config_content " in node [ " properties " ] :
del node [ " properties " ] [ " startup_config_content " ]
if " private_config_content " in node [ " properties " ] :
del node [ " properties " ] [ " private_config_content " ]
return topo
2017-01-06 14:16:19 +00:00
def _convert_2_0_0_beta_2 ( topo , topo_path ) :
"""
Convert topologies from GNS3 2.0 .0 beta 2 to beta 3.
Changes :
* Node id folders for dynamips
"""
topo_dir = os . path . dirname ( topo_path )
topo [ " revision " ] = 7
for node in topo . get ( " topology " , { } ) . get ( " nodes " , [ ] ) :
if node [ " node_type " ] == " dynamips " :
node_id = node [ " node_id " ]
dynamips_id = node [ " properties " ] [ " dynamips_id " ]
dynamips_dir = os . path . join ( topo_dir , " project-files " , " dynamips " )
node_dir = os . path . join ( dynamips_dir , node_id )
2017-02-07 09:36:36 +00:00
try :
os . makedirs ( os . path . join ( node_dir , " configs " ) , exist_ok = True )
for path in glob . glob ( os . path . join ( glob . escape ( dynamips_dir ) , " *_i {} _* " . format ( dynamips_id ) ) ) :
shutil . move ( path , os . path . join ( node_dir , os . path . basename ( path ) ) )
for path in glob . glob ( os . path . join ( glob . escape ( dynamips_dir ) , " configs " , " i {} _* " . format ( dynamips_id ) ) ) :
shutil . move ( path , os . path . join ( node_dir , " configs " , os . path . basename ( path ) ) )
except OSError as e :
raise aiohttp . web . HTTPConflict ( text = " Can ' t convert project {} : {} " . format ( topo_path , str ( e ) ) )
2017-01-06 14:16:19 +00:00
return topo
2016-11-03 17:17:50 +00:00
def _convert_2_0_0_alpha ( topo , topo_path ) :
"""
Convert topologies from GNS3 2.0 .0 alpha to 2.0 .0 final .
Changes :
* No more serial console
* No more option for VMware / VirtualBox remote console ( always use telnet )
"""
topo [ " revision " ] = 6
for node in topo . get ( " topology " , { } ) . get ( " nodes " , [ ] ) :
if node . get ( " console_type " ) == " serial " :
node [ " console_type " ] = " telnet "
if node [ " node_type " ] in ( " vmware " , " virtualbox " ) :
prop = node . get ( " properties " )
if " enable_remote_console " in prop :
del prop [ " enable_remote_console " ]
return topo
2016-07-13 07:58:53 +00:00
def _convert_1_3_later ( topo , topo_path ) :
2016-07-07 10:10:42 +00:00
"""
2016-07-13 07:58:53 +00:00
Convert topologies from 1_3 to the new file format
2016-07-07 10:10:42 +00:00
Look in tests / topologies / README . rst for instructions to test changes here
"""
2016-07-13 07:58:53 +00:00
topo_dir = os . path . dirname ( topo_path )
2016-07-28 16:11:52 +00:00
_convert_snapshots ( topo_dir )
2016-07-07 10:10:42 +00:00
new_topo = {
" type " : " topology " ,
2016-11-03 17:17:50 +00:00
" revision " : 5 ,
2016-07-07 10:10:42 +00:00
" version " : __version__ ,
" auto_start " : topo . get ( " auto_start " , False ) ,
" name " : topo [ " name " ] ,
2016-08-31 07:42:05 +00:00
" project_id " : topo . get ( " project_id " ) ,
2016-07-07 10:10:42 +00:00
" topology " : {
" links " : [ ] ,
" drawings " : [ ] ,
" computes " : [ ] ,
" nodes " : [ ]
}
}
if new_topo [ " project_id " ] is None :
new_topo [ " project_id " ] = str ( uuid . uuid4 ( ) ) # Could arrive for topologues with drawing only
if " topology " not in topo :
return new_topo
topo = topo [ " topology " ]
# Create computes
server_id_to_compute_id = { }
for server in topo . get ( " servers " , [ ] ) :
compute = {
" host " : server . get ( " host " , " localhost " ) ,
" port " : server . get ( " port " , 3080 ) ,
" protocol " : server . get ( " protocol " , " http " )
}
if server [ " local " ] :
compute [ " compute_id " ] = " local "
compute [ " name " ] = " Local "
elif server . get ( " vm " , False ) :
compute [ " compute_id " ] = " vm "
compute [ " name " ] = " GNS3 VM "
else :
compute [ " name " ] = " Remote {} " . format ( server [ " id " ] )
compute [ " compute_id " ] = str ( uuid . uuid4 ( ) )
server_id_to_compute_id [ server [ " id " ] ] = compute [ " compute_id " ]
new_topo [ " topology " ] [ " computes " ] . append ( compute )
# Create nodes
ports = { }
node_id_to_node_uuid = { }
for old_node in topo . get ( " nodes " , [ ] ) :
node = { }
node [ " console " ] = old_node [ " properties " ] . get ( " console " , None )
2017-03-16 17:29:02 +00:00
try :
node [ " compute_id " ] = server_id_to_compute_id [ old_node [ " server_id " ] ]
except KeyError :
node [ " compute_id " ] = " local "
2016-07-07 10:10:42 +00:00
node [ " console_type " ] = old_node [ " properties " ] . get ( " console_type " , " telnet " )
2017-04-14 08:38:21 +00:00
if " label " in old_node :
node [ " name " ] = old_node [ " label " ] [ " text " ]
node [ " label " ] = _convert_label ( old_node [ " label " ] )
else :
node [ " name " ] = old_node [ " properties " ] [ " name " ]
2016-07-07 10:10:42 +00:00
node [ " node_id " ] = old_node . get ( " vm_id " , str ( uuid . uuid4 ( ) ) )
2016-07-13 16:31:12 +00:00
2016-07-07 10:10:42 +00:00
node [ " symbol " ] = old_node . get ( " symbol " , None )
2016-07-13 16:31:12 +00:00
# Compatibility with <= 1.3
if node [ " symbol " ] is None and " default_symbol " in old_node :
if old_node [ " default_symbol " ] . endswith ( " normal.svg " ) :
node [ " symbol " ] = old_node [ " default_symbol " ] [ : - 11 ] + " .svg "
else :
node [ " symbol " ] = old_node [ " default_symbol " ]
2016-07-07 10:10:42 +00:00
node [ " x " ] = int ( old_node [ " x " ] )
node [ " y " ] = int ( old_node [ " y " ] )
node [ " z " ] = int ( old_node . get ( " z " , 1 ) )
2016-09-13 07:47:22 +00:00
node [ " port_name_format " ] = old_node . get ( " port_name_format " , " Ethernet {0} " )
node [ " port_segment_size " ] = int ( old_node . get ( " port_segment_size " , " 0 " ) )
node [ " first_port_name " ] = old_node . get ( " first_port_name " )
2016-07-07 10:10:42 +00:00
node [ " properties " ] = { }
2017-05-19 15:49:39 +00:00
# Some old dynamips node don't have type
if " type " not in old_node :
old_node [ " type " ] = old_node [ " properties " ] [ " platform " ] . upper ( )
2016-07-07 10:10:42 +00:00
if old_node [ " type " ] == " VPCSDevice " :
node [ " node_type " ] = " vpcs "
elif old_node [ " type " ] == " QemuVM " :
2016-09-05 09:11:23 +00:00
node = _convert_qemu_node ( node , old_node )
2016-07-07 10:10:42 +00:00
elif old_node [ " type " ] == " DockerVM " :
node [ " node_type " ] = " docker "
if node [ " symbol " ] is None :
node [ " symbol " ] = " :/symbols/docker_guest.svg "
elif old_node [ " type " ] == " ATMSwitch " :
node [ " node_type " ] = " atm_switch "
node [ " symbol " ] = " :/symbols/atm_switch.svg "
node [ " console_type " ] = None
elif old_node [ " type " ] == " EthernetHub " :
node [ " node_type " ] = " ethernet_hub "
node [ " console_type " ] = None
2016-09-13 07:47:22 +00:00
node [ " symbol " ] = " :/symbols/hub.svg "
node [ " properties " ] [ " ports_mapping " ] = [ ]
2017-05-04 10:09:56 +00:00
for port in old_node . get ( " ports " , [ ] ) :
2016-09-13 07:47:22 +00:00
node [ " properties " ] [ " ports_mapping " ] . append ( {
2016-09-29 12:59:11 +00:00
" name " : " Ethernet {} " . format ( port [ " port_number " ] - 1 ) ,
" port_number " : port [ " port_number " ] - 1
2016-07-07 10:10:42 +00:00
} )
elif old_node [ " type " ] == " EthernetSwitch " :
node [ " node_type " ] = " ethernet_switch "
node [ " symbol " ] = " :/symbols/ethernet_switch.svg "
node [ " console_type " ] = None
2016-09-13 07:47:22 +00:00
node [ " properties " ] [ " ports_mapping " ] = [ ]
2017-05-19 15:49:39 +00:00
for port in old_node . get ( " ports " , [ ] ) :
2016-09-13 07:47:22 +00:00
node [ " properties " ] [ " ports_mapping " ] . append ( {
2016-09-29 12:59:11 +00:00
" name " : " Ethernet {} " . format ( port [ " port_number " ] - 1 ) ,
" port_number " : port [ " port_number " ] - 1 ,
2016-07-07 10:10:42 +00:00
" type " : port [ " type " ] ,
" vlan " : port [ " vlan " ]
} )
elif old_node [ " type " ] == " FrameRelaySwitch " :
node [ " node_type " ] = " frame_relay_switch "
node [ " symbol " ] = " :/symbols/frame_relay_switch.svg "
node [ " console_type " ] = None
2017-05-19 16:27:20 +00:00
elif old_node [ " type " ] . upper ( ) in [ " C1700 " , " C2600 " , " C2691 " , " C3600 " , " C3620 " , " C3640 " , " C3660 " , " C3725 " , " C3745 " , " C7200 " , " EtherSwitchRouter " ] :
2016-07-07 10:10:42 +00:00
if node [ " symbol " ] is None :
node [ " symbol " ] = " :/symbols/router.svg "
node [ " node_type " ] = " dynamips "
2016-10-24 15:57:23 +00:00
node [ " properties " ] [ " dynamips_id " ] = old_node . get ( " dynamips_id " )
2017-05-19 16:27:20 +00:00
if " platform " not in node [ " properties " ] and old_node [ " type " ] . upper ( ) . startswith ( " C " ) :
2016-10-07 10:33:46 +00:00
node [ " properties " ] [ " platform " ] = old_node [ " type " ] . lower ( )
2017-05-10 11:50:19 +00:00
if node [ " properties " ] [ " platform " ] . startswith ( " c36 " ) :
node [ " properties " ] [ " platform " ] = " c3600 "
2016-10-07 10:33:46 +00:00
if " ram " not in node [ " properties " ] and old_node [ " type " ] . startswith ( " C " ) :
node [ " properties " ] [ " ram " ] = PLATFORMS_DEFAULT_RAM [ old_node [ " type " ] . lower ( ) ]
2016-07-07 10:10:42 +00:00
elif old_node [ " type " ] == " VMwareVM " :
node [ " node_type " ] = " vmware "
2017-02-14 13:45:48 +00:00
node [ " properties " ] [ " linked_clone " ] = old_node . get ( " linked_clone " , False )
2016-07-07 10:10:42 +00:00
if node [ " symbol " ] is None :
node [ " symbol " ] = " :/symbols/vmware_guest.svg "
elif old_node [ " type " ] == " VirtualBoxVM " :
node [ " node_type " ] = " virtualbox "
2017-02-14 13:45:48 +00:00
node [ " properties " ] [ " linked_clone " ] = old_node . get ( " linked_clone " , False )
2016-07-07 10:10:42 +00:00
if node [ " symbol " ] is None :
node [ " symbol " ] = " :/symbols/vbox_guest.svg "
2016-07-18 16:55:47 +00:00
elif old_node [ " type " ] == " IOUDevice " :
node [ " node_type " ] = " iou "
2017-02-20 09:48:03 +00:00
node [ " port_name_format " ] = old_node . get ( " port_name_format " , " Ethernet {segment0} / {port0} " )
node [ " port_segment_size " ] = int ( old_node . get ( " port_segment_size " , " 4 " ) )
if node [ " symbol " ] is None :
if " l2 " in node [ " properties " ] . get ( " path " , " " ) :
node [ " symbol " ] = " :/symbols/multilayer_switch.svg "
else :
node [ " symbol " ] = " :/symbols/router.svg "
2016-07-12 15:38:13 +00:00
elif old_node [ " type " ] == " Cloud " :
2017-03-28 07:12:36 +00:00
symbol = old_node . get ( " symbol " , " :/symbols/cloud.svg " )
old_node [ " ports " ] = _create_cloud ( node , old_node , symbol )
2016-07-26 19:40:11 +00:00
elif old_node [ " type " ] == " Host " :
2017-03-28 07:12:36 +00:00
symbol = old_node . get ( " symbol " , " :/symbols/computer.svg " )
old_node [ " ports " ] = _create_cloud ( node , old_node , symbol )
2016-07-07 10:10:42 +00:00
else :
2018-09-11 13:06:01 +00:00
raise aiohttp . web . HTTPConflict ( text = " Conversion of {} is not supported " . format ( old_node [ " type " ] ) )
2016-07-07 10:10:42 +00:00
2016-09-05 09:11:23 +00:00
for prop in old_node . get ( " properties " , { } ) :
2017-05-22 09:42:50 +00:00
if prop not in [ " console " , " name " , " console_type " , " console_host " , " use_ubridge " ] :
2016-07-07 10:10:42 +00:00
node [ " properties " ] [ prop ] = old_node [ " properties " ] [ prop ]
node_id_to_node_uuid [ old_node [ " id " ] ] = node [ " node_id " ]
for port in old_node . get ( " ports " , [ ] ) :
2017-01-23 12:34:11 +00:00
if node [ " node_type " ] in ( " ethernet_hub " , " ethernet_switch " ) :
port [ " port_number " ] - = 1
2016-07-07 10:10:42 +00:00
ports [ port [ " id " ] ] = port
new_topo [ " topology " ] [ " nodes " ] . append ( node )
# Create links
for old_link in topo . get ( " links " , [ ] ) :
2016-12-21 13:39:44 +00:00
try :
nodes = [ ]
source_node = {
" adapter_number " : ports [ old_link [ " source_port_id " ] ] . get ( " adapter_number " , 0 ) ,
" port_number " : ports [ old_link [ " source_port_id " ] ] . get ( " port_number " , 0 ) ,
" node_id " : node_id_to_node_uuid [ old_link [ " source_node_id " ] ]
}
nodes . append ( source_node )
destination_node = {
" adapter_number " : ports [ old_link [ " destination_port_id " ] ] . get ( " adapter_number " , 0 ) ,
" port_number " : ports [ old_link [ " destination_port_id " ] ] . get ( " port_number " , 0 ) ,
" node_id " : node_id_to_node_uuid [ old_link [ " destination_node_id " ] ]
}
nodes . append ( destination_node )
except KeyError :
continue
2016-07-07 10:10:42 +00:00
link = {
" link_id " : str ( uuid . uuid4 ( ) ) ,
" nodes " : nodes
}
new_topo [ " topology " ] [ " links " ] . append ( link )
# Ellipse
for ellipse in topo . get ( " ellipses " , [ ] ) :
svg = ' <svg height= " {height} " width= " {width} " ><ellipse cx= " {cx} " cy= " {cy} " fill= " {fill} " fill-opacity= " 1.0 " rx= " {rx} " ry= " {ry} " {border_style} /></svg> ' . format (
height = int ( ellipse [ " height " ] ) ,
width = int ( ellipse [ " width " ] ) ,
cx = int ( ellipse [ " width " ] / 2 ) ,
cy = int ( ellipse [ " height " ] / 2 ) ,
rx = int ( ellipse [ " width " ] / 2 ) ,
ry = int ( ellipse [ " height " ] / 2 ) ,
fill = ellipse . get ( " color " , " #ffffff " ) ,
border_style = _convert_border_style ( ellipse )
)
new_ellipse = {
" drawing_id " : str ( uuid . uuid4 ( ) ) ,
" x " : int ( ellipse [ " x " ] ) ,
" y " : int ( ellipse [ " y " ] ) ,
" z " : int ( ellipse . get ( " z " , 0 ) ) ,
" rotation " : int ( ellipse . get ( " rotation " , 0 ) ) ,
" svg " : svg
}
new_topo [ " topology " ] [ " drawings " ] . append ( new_ellipse )
# Notes
for note in topo . get ( " notes " , [ ] ) :
2016-11-01 17:18:51 +00:00
font_info = note . get ( " font " , " TypeWriter,10,-1,5,75,0,0,0,0,0 " ) . split ( " , " )
2016-07-07 10:10:42 +00:00
if font_info [ 4 ] == " 75 " :
weight = " bold "
else :
weight = " normal "
if font_info [ 5 ] == " 1 " :
style = " italic "
else :
style = " normal "
svg = ' <svg height= " {height} " width= " {width} " ><text fill= " {fill} " fill-opacity= " {opacity} " font-family= " {family} " font-size= " {size} " font-weight= " {weight} " font-style= " {style} " > {text} </text></svg> ' . format (
height = int ( font_info [ 1 ] ) * 2 ,
width = int ( font_info [ 1 ] ) * len ( note [ " text " ] ) ,
2017-01-23 09:17:52 +00:00
fill = " # " + note . get ( " color " , " #00000000 " ) [ - 6 : ] ,
2016-12-15 15:52:01 +00:00
opacity = round ( 1.0 / 255 * int ( note . get ( " color " , " #ffffffff " ) [ : 3 ] [ - 2 : ] , base = 16 ) , 2 ) , # Extract the alpha channel from the hexa version
2016-07-07 10:10:42 +00:00
family = font_info [ 0 ] ,
size = int ( font_info [ 1 ] ) ,
weight = weight ,
style = style ,
2017-03-20 18:14:07 +00:00
text = html . escape ( note [ " text " ] )
2016-07-07 10:10:42 +00:00
)
new_note = {
" drawing_id " : str ( uuid . uuid4 ( ) ) ,
" x " : int ( note [ " x " ] ) ,
" y " : int ( note [ " y " ] ) ,
" z " : int ( note . get ( " z " , 0 ) ) ,
2016-07-13 14:37:05 +00:00
" rotation " : int ( note . get ( " rotation " , 0 ) ) ,
2016-07-07 10:10:42 +00:00
" svg " : svg
}
new_topo [ " topology " ] [ " drawings " ] . append ( new_note )
2016-07-13 14:37:05 +00:00
# Images
for image in topo . get ( " images " , [ ] ) :
img_path = image [ " path " ]
# Absolute image path are rewrite to project specific image
if os . path . abspath ( img_path ) :
try :
os . makedirs ( os . path . join ( topo_dir , " images " ) , exist_ok = True )
shutil . copy ( img_path , os . path . join ( topo_dir , " images " , os . path . basename ( img_path ) ) )
except OSError :
pass
new_image = {
" drawing_id " : str ( uuid . uuid4 ( ) ) ,
" x " : int ( image [ " x " ] ) ,
" y " : int ( image [ " y " ] ) ,
" z " : int ( image . get ( " z " , 0 ) ) ,
" rotation " : int ( image . get ( " rotation " , 0 ) ) ,
" svg " : os . path . basename ( img_path )
}
new_topo [ " topology " ] [ " drawings " ] . append ( new_image )
2016-07-07 10:10:42 +00:00
# Rectangles
for rectangle in topo . get ( " rectangles " , [ ] ) :
svg = ' <svg height= " {height} " width= " {width} " ><rect fill= " {fill} " fill-opacity= " 1.0 " height= " {height} " width= " {width} " {border_style} /></svg> ' . format (
height = int ( rectangle [ " height " ] ) ,
width = int ( rectangle [ " width " ] ) ,
fill = rectangle . get ( " color " , " #ffffff " ) ,
border_style = _convert_border_style ( rectangle )
)
new_rectangle = {
" drawing_id " : str ( uuid . uuid4 ( ) ) ,
" x " : int ( rectangle [ " x " ] ) ,
" y " : int ( rectangle [ " y " ] ) ,
" z " : int ( rectangle . get ( " z " , 0 ) ) ,
2016-07-13 14:37:05 +00:00
" rotation " : int ( rectangle . get ( " rotation " , 0 ) ) ,
2016-07-07 10:10:42 +00:00
" svg " : svg
}
new_topo [ " topology " ] [ " drawings " ] . append ( new_rectangle )
2016-07-13 07:58:53 +00:00
# Convert instructions.txt to README.txt
instructions_path = os . path . join ( topo_dir , " instructions.txt " )
readme_path = os . path . join ( topo_dir , " README.txt " )
if os . path . exists ( instructions_path ) and not os . path . exists ( readme_path ) :
shutil . move ( instructions_path , readme_path )
2016-07-07 10:10:42 +00:00
return new_topo
def _convert_border_style ( element ) :
QT_DASH_TO_SVG = {
2 : " 25, 25 " ,
3 : " 5, 25 " ,
4 : " 5, 25, 25 " ,
5 : " 25, 25, 5, 25, 5 "
}
border_style = int ( element . get ( " border_style " , 0 ) )
style = " "
if border_style == 1 : # No border
return " "
elif border_style == 0 :
pass # Solid line
else :
style + = ' stroke-dasharray= " {} " ' . format ( QT_DASH_TO_SVG [ border_style ] )
style + = ' stroke= " {stroke} " stroke-width= " {stroke_width} " ' . format (
stroke = element . get ( " border_color " , " #000000 " ) ,
stroke_width = element . get ( " border_width " , 2 )
)
return style
def _convert_label ( label ) :
"""
Convert a label from 1. X to the new format
"""
2016-10-24 12:58:14 +00:00
style = qt_font_to_style ( label . get ( " font " ) , label . get ( " color " ) )
2016-07-07 10:10:42 +00:00
return {
2017-03-20 18:14:07 +00:00
" text " : html . escape ( label [ " text " ] ) ,
2016-07-07 10:10:42 +00:00
" rotation " : 0 ,
" style " : style ,
" x " : int ( label [ " x " ] ) ,
" y " : int ( label [ " y " ] )
}
2016-07-12 16:48:01 +00:00
2016-07-26 19:40:11 +00:00
def _create_cloud ( node , old_node , icon ) :
2016-07-12 16:48:01 +00:00
node [ " node_type " ] = " cloud "
2016-07-26 19:40:11 +00:00
node [ " symbol " ] = icon
2016-07-12 16:48:01 +00:00
node [ " console_type " ] = None
node [ " console " ] = None
del old_node [ " properties " ] [ " nios " ]
ports = [ ]
2017-01-11 18:20:12 +00:00
keep_ports = [ ]
2016-07-12 16:48:01 +00:00
for old_port in old_node . get ( " ports " , [ ] ) :
if old_port [ " name " ] . startswith ( " nio_gen_eth " ) :
port_type = " ethernet "
elif old_port [ " name " ] . startswith ( " nio_gen_linux " ) :
port_type = " ethernet "
elif old_port [ " name " ] . startswith ( " nio_tap " ) :
port_type = " tap "
2016-12-19 08:46:13 +00:00
elif old_port [ " name " ] . startswith ( " nio_udp " ) :
port_type = " udp "
2017-01-11 18:20:12 +00:00
elif old_port [ " name " ] . startswith ( " nio_nat " ) :
continue
2016-07-12 16:48:01 +00:00
else :
2018-09-11 13:06:01 +00:00
raise aiohttp . web . HTTPConflict ( text = " The conversion of cloud with {} is not supported " . format ( old_port [ " name " ] ) )
2016-07-12 16:48:01 +00:00
2016-12-19 08:46:13 +00:00
if port_type == " udp " :
2017-07-20 14:23:32 +00:00
try :
_ , lport , rhost , rport = old_port [ " name " ] . split ( " : " )
except ValueError :
2018-09-11 13:06:01 +00:00
raise aiohttp . web . HTTPConflict ( text = " UDP tunnel using IPV6 is not supported in cloud " )
2016-12-19 08:46:13 +00:00
port = {
" name " : " UDP tunnel {} " . format ( len ( ports ) + 1 ) ,
" port_number " : len ( ports ) + 1 ,
" type " : port_type ,
" lport " : int ( lport ) ,
" rhost " : rhost ,
" rport " : int ( rport )
}
else :
port = {
" interface " : old_port [ " name " ] . split ( " : " ) [ 1 ] ,
" name " : old_port [ " name " ] . split ( " : " ) [ 1 ] ,
" port_number " : len ( ports ) + 1 ,
" type " : port_type
}
2017-01-11 18:20:12 +00:00
keep_ports . append ( old_port )
2016-07-12 16:48:01 +00:00
ports . append ( port )
2016-09-13 07:47:22 +00:00
node [ " properties " ] [ " ports_mapping " ] = ports
2016-07-12 16:48:01 +00:00
node [ " properties " ] [ " interfaces " ] = [ ]
2017-01-11 18:20:12 +00:00
return keep_ports
2016-07-28 16:11:52 +00:00
def _convert_snapshots ( topo_dir ) :
"""
Convert 1. x snapshot to the new format
"""
old_snapshots_dir = os . path . join ( topo_dir , " project-files " , " snapshots " )
if os . path . exists ( old_snapshots_dir ) :
new_snapshots_dir = os . path . join ( topo_dir , " snapshots " )
2018-09-11 13:06:01 +00:00
os . makedirs ( new_snapshots_dir , exist_ok = True )
2016-07-28 16:11:52 +00:00
for snapshot in os . listdir ( old_snapshots_dir ) :
snapshot_dir = os . path . join ( old_snapshots_dir , snapshot )
if os . path . isdir ( snapshot_dir ) :
is_gns3_topo = False
# In .gns3project fileformat the .gns3 should be name project.gns3
for file in os . listdir ( snapshot_dir ) :
if file . endswith ( " .gns3 " ) :
shutil . move ( os . path . join ( snapshot_dir , file ) , os . path . join ( snapshot_dir , " project.gns3 " ) )
is_gns3_topo = True
if is_gns3_topo :
snapshot_arc = os . path . join ( new_snapshots_dir , snapshot + " .gns3project " )
2016-09-08 09:52:16 +00:00
with zipfile . ZipFile ( snapshot_arc , ' w ' , allowZip64 = True ) as myzip :
2016-07-28 16:11:52 +00:00
for root , dirs , files in os . walk ( snapshot_dir ) :
for file in files :
myzip . write ( os . path . join ( root , file ) , os . path . relpath ( os . path . join ( root , file ) , snapshot_dir ) , compress_type = zipfile . ZIP_DEFLATED )
shutil . rmtree ( old_snapshots_dir )
2016-09-05 09:11:23 +00:00
def _convert_qemu_node ( node , old_node ) :
"""
Convert qemu node from 1. X to 2.0
"""
# In 2.0 the internet VM is replaced by the NAT node
if old_node . get ( " properties " , { } ) . get ( " hda_disk_image_md5sum " ) == " 8ebc5a6ec53a1c05b7aa101b5ceefe31 " :
node [ " console " ] = None
node [ " console_type " ] = None
node [ " node_type " ] = " nat "
del old_node [ " properties " ]
node [ " properties " ] = {
" ports " : [
{
" interface " : " eth1 " ,
" name " : " nat0 " ,
" port_number " : 0 ,
" type " : " ethernet "
}
]
}
if node [ " symbol " ] is None :
node [ " symbol " ] = " :/symbols/cloud.svg "
return node
node [ " node_type " ] = " qemu "
if node [ " symbol " ] is None :
node [ " symbol " ] = " :/symbols/qemu_guest.svg "
return node