2014-04-23 21:31:33 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014 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/>.
|
|
|
|
|
|
|
|
ETHSW_CREATE_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to create a new Ethernet switch instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"description": "Ethernet switch name",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
2014-05-21 03:06:28 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
"additionalProperties": False,
|
2014-05-27 12:59:22 +03:00
|
|
|
"required": ["name"]
|
2014-04-23 21:31:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ETHSW_DELETE_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to delete an Ethernet switch instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"description": "Ethernet switch instance ID",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
},
|
2014-05-21 03:06:28 +03:00
|
|
|
"additionalProperties": False,
|
2014-04-23 21:31:33 +03:00
|
|
|
"required": ["id"]
|
|
|
|
}
|
|
|
|
|
|
|
|
#TODO: ports {'1': {'vlan': 1, 'type': 'qinq'}
|
|
|
|
ETHSW_UPDATE_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to update an Ethernet switch instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"description": "Ethernet switch instance ID",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"description": "Ethernet switch name",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
|
|
|
},
|
|
|
|
# "ports": {
|
|
|
|
# "type": "object",
|
|
|
|
# "properties": {
|
|
|
|
# "type": {
|
|
|
|
# "description": "Port type",
|
|
|
|
# "enum": ["access", "dot1q", "qinq"],
|
|
|
|
# },
|
|
|
|
# "vlan": {
|
|
|
|
# "description": "VLAN number",
|
|
|
|
# "type": "integer",
|
|
|
|
# "minimum": 1
|
|
|
|
# },
|
|
|
|
# },
|
|
|
|
# },
|
|
|
|
},
|
2014-05-21 03:06:28 +03:00
|
|
|
#"additionalProperties": False,
|
2014-04-23 21:31:33 +03:00
|
|
|
"required": ["id"]
|
|
|
|
}
|
|
|
|
|
|
|
|
ETHSW_ALLOCATE_UDP_PORT_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to allocate an UDP port for an Ethernet switch instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"description": "Ethernet switch instance ID",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"port_id": {
|
|
|
|
"description": "Unique port identifier for the Ethernet switch instance",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
},
|
2014-05-21 03:06:28 +03:00
|
|
|
"additionalProperties": False,
|
2014-04-23 21:31:33 +03:00
|
|
|
"required": ["id", "port_id"]
|
|
|
|
}
|
|
|
|
|
|
|
|
ETHSW_ADD_NIO_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to add a NIO for an Ethernet switch instance",
|
|
|
|
"type": "object",
|
|
|
|
|
|
|
|
"definitions": {
|
2014-05-28 15:26:20 +03:00
|
|
|
"UDP": {
|
|
|
|
"description": "UDP Network Input/Output",
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"enum": ["nio_udp"]
|
|
|
|
},
|
|
|
|
"lport": {
|
|
|
|
"description": "Local port",
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 65535
|
|
|
|
},
|
|
|
|
"rhost": {
|
|
|
|
"description": "Remote host",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
|
|
|
"rport": {
|
|
|
|
"description": "Remote port",
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 65535
|
|
|
|
}
|
2014-04-23 21:31:33 +03:00
|
|
|
},
|
2014-05-28 15:26:20 +03:00
|
|
|
"required": ["type", "lport", "rhost", "rport"],
|
|
|
|
"additionalProperties": False
|
|
|
|
},
|
|
|
|
"Ethernet": {
|
|
|
|
"description": "Generic Ethernet Network Input/Output",
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"enum": ["nio_generic_ethernet"]
|
|
|
|
},
|
|
|
|
"ethernet_device": {
|
|
|
|
"description": "Ethernet device name e.g. eth0",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
2014-04-23 21:31:33 +03:00
|
|
|
},
|
2014-05-28 15:26:20 +03:00
|
|
|
"required": ["type", "ethernet_device"],
|
|
|
|
"additionalProperties": False
|
|
|
|
},
|
|
|
|
"LinuxEthernet": {
|
|
|
|
"description": "Linux Ethernet Network Input/Output",
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"enum": ["nio_linux_ethernet"]
|
|
|
|
},
|
|
|
|
"ethernet_device": {
|
|
|
|
"description": "Ethernet device name e.g. eth0",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
2014-04-23 21:31:33 +03:00
|
|
|
},
|
2014-05-28 15:26:20 +03:00
|
|
|
"required": ["type", "ethernet_device"],
|
|
|
|
"additionalProperties": False
|
|
|
|
},
|
|
|
|
"TAP": {
|
|
|
|
"description": "TAP Network Input/Output",
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"enum": ["nio_tap"]
|
|
|
|
},
|
|
|
|
"tap_device": {
|
|
|
|
"description": "TAP device name e.g. tap0",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
2014-04-23 21:31:33 +03:00
|
|
|
},
|
2014-05-28 15:26:20 +03:00
|
|
|
"required": ["type", "tap_device"],
|
|
|
|
"additionalProperties": False
|
|
|
|
},
|
|
|
|
"UNIX": {
|
|
|
|
"description": "UNIX Network Input/Output",
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"enum": ["nio_unix"]
|
|
|
|
},
|
|
|
|
"local_file": {
|
|
|
|
"description": "path to the UNIX socket file (local)",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
|
|
|
"remote_file": {
|
|
|
|
"description": "path to the UNIX socket file (remote)",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
2014-04-23 21:31:33 +03:00
|
|
|
},
|
2014-05-28 15:26:20 +03:00
|
|
|
"required": ["type", "local_file", "remote_file"],
|
|
|
|
"additionalProperties": False
|
|
|
|
},
|
|
|
|
"VDE": {
|
|
|
|
"description": "VDE Network Input/Output",
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"enum": ["nio_vde"]
|
|
|
|
},
|
|
|
|
"control_file": {
|
|
|
|
"description": "path to the VDE control file",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
|
|
|
"local_file": {
|
|
|
|
"description": "path to the VDE control file",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
2014-04-23 21:31:33 +03:00
|
|
|
},
|
2014-05-28 15:26:20 +03:00
|
|
|
"required": ["type", "control_file", "local_file"],
|
|
|
|
"additionalProperties": False
|
|
|
|
},
|
|
|
|
"NULL": {
|
|
|
|
"description": "NULL Network Input/Output",
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"enum": ["nio_null"]
|
|
|
|
},
|
2014-04-23 21:31:33 +03:00
|
|
|
},
|
2014-05-28 15:26:20 +03:00
|
|
|
"required": ["type"],
|
|
|
|
"additionalProperties": False
|
2014-04-23 21:31:33 +03:00
|
|
|
},
|
2014-05-28 15:26:20 +03:00
|
|
|
},
|
2014-04-23 21:31:33 +03:00
|
|
|
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"description": "Ethernet switch instance ID",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"port_id": {
|
|
|
|
"description": "Unique port identifier for the Ethernet switch instance",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"port": {
|
|
|
|
"description": "Port number",
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1,
|
|
|
|
},
|
|
|
|
"port_type": {
|
|
|
|
"description": "Port type",
|
|
|
|
"enum": ["access", "dot1q", "qinq"],
|
|
|
|
},
|
|
|
|
"vlan": {
|
|
|
|
"description": "VLAN number",
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1
|
|
|
|
},
|
|
|
|
"nio": {
|
|
|
|
"type": "object",
|
|
|
|
"description": "Network Input/Output",
|
|
|
|
"oneOf": [
|
|
|
|
{"$ref": "#/definitions/UDP"},
|
|
|
|
{"$ref": "#/definitions/Ethernet"},
|
|
|
|
{"$ref": "#/definitions/LinuxEthernet"},
|
|
|
|
{"$ref": "#/definitions/TAP"},
|
|
|
|
{"$ref": "#/definitions/UNIX"},
|
|
|
|
{"$ref": "#/definitions/VDE"},
|
|
|
|
{"$ref": "#/definitions/NULL"},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
2014-05-21 03:06:28 +03:00
|
|
|
"additionalProperties": False,
|
2014-04-23 21:31:33 +03:00
|
|
|
"required": ["id", "port_id", "port", "port_type", "vlan", "nio"],
|
|
|
|
|
|
|
|
"dependencies": {
|
|
|
|
"port_type": ["vlan"],
|
|
|
|
"vlan": ["port_type"]
|
2014-05-28 15:26:20 +03:00
|
|
|
}
|
2014-04-23 21:31:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ETHSW_DELETE_NIO_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to delete a NIO for an Ethernet switch instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"description": "Ethernet switch instance ID",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"port": {
|
|
|
|
"description": "Port number",
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1,
|
|
|
|
},
|
|
|
|
},
|
2014-05-21 03:06:28 +03:00
|
|
|
"additionalProperties": False,
|
2014-04-23 21:31:33 +03:00
|
|
|
"required": ["id", "port"]
|
|
|
|
}
|