blob: ba78c550c015e39bc4a4a0edc7d5e89ddb7b3150 [file] [log] [blame]
tierno0f98af52018-03-19 10:28:22 +01001# -*- coding: utf-8 -*-
2
3from jsonschema import validate as js_v, exceptions as js_e
4
5__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
6__version__ = "0.1"
7version_date = "Mar 2018"
8
9"""
10Validator of input data using JSON schemas for those items that not contains an OSM yang information model
11"""
12
13# Basis schemas
14patern_name = "^[ -~]+$"
15passwd_schema = {"type": "string", "minLength": 1, "maxLength": 60}
16nameshort_schema = {"type": "string", "minLength": 1, "maxLength": 60, "pattern": "^[^,;()'\"]+$"}
17name_schema = {"type": "string", "minLength": 1, "maxLength": 255, "pattern": "^[^,;()'\"]+$"}
18xml_text_schema = {"type": "string", "minLength": 1, "maxLength": 1000, "pattern": "^[^']+$"}
19description_schema = {"type": ["string", "null"], "maxLength": 255, "pattern": "^[^'\"]+$"}
20id_schema_fake = {"type": "string", "minLength": 2,
21 "maxLength": 36} # "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
22id_schema = {"type": "string", "pattern": "^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$"}
23pci_schema = {"type": "string", "pattern": "^[0-9a-fA-F]{4}(:[0-9a-fA-F]{2}){2}\.[0-9a-fA-F]$"}
24http_schema = {"type": "string", "pattern": "^https?://[^'\"=]+$"}
25bandwidth_schema = {"type": "string", "pattern": "^[0-9]+ *([MG]bps)?$"}
26memory_schema = {"type": "string", "pattern": "^[0-9]+ *([MG]i?[Bb])?$"}
27integer0_schema = {"type": "integer", "minimum": 0}
28integer1_schema = {"type": "integer", "minimum": 1}
29path_schema = {"type": "string", "pattern": "^(\.){0,2}(/[^/\"':{}\(\)]+)+$"}
30vlan_schema = {"type": "integer", "minimum": 1, "maximum": 4095}
31vlan1000_schema = {"type": "integer", "minimum": 1000, "maximum": 4095}
32mac_schema = {"type": "string",
33 "pattern": "^[0-9a-fA-F][02468aceACE](:[0-9a-fA-F]{2}){5}$"} # must be unicast: LSB bit of MSB byte ==0
34# mac_schema={"type":"string", "pattern":"^([0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}$"}
35ip_schema = {"type": "string",
36 "pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"}
37ip_prefix_schema = {"type": "string",
38 "pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/(30|[12]?[0-9])$"}
39port_schema = {"type": "integer", "minimum": 1, "maximum": 65534}
40object_schema = {"type": "object"}
41schema_version_2 = {"type": "integer", "minimum": 2, "maximum": 2}
42# schema_version_string={"type":"string","enum": ["0.1", "2", "0.2", "3", "0.3"]}
43log_level_schema = {"type": "string", "enum": ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]}
44checksum_schema = {"type": "string", "pattern": "^[0-9a-fA-F]{32}$"}
45size_schema = {"type": "integer", "minimum": 1, "maximum": 100}
46
tierno65acb4d2018-04-06 16:42:40 +020047
48ns_instantiate = {
49 "title": "ns action instantiate input schema",
50 "$schema": "http://json-schema.org/draft-04/schema#",
51 "type": "object",
52}
53ns_action = { # TODO for the moment it is only contemplated the vnfd primitive execution
54 "title": "ns action update input schema",
55 "$schema": "http://json-schema.org/draft-04/schema#",
56 "type": "object",
57 "properties": {
58 "vnf_member_index": name_schema,
59 "primitive": name_schema,
60 "primitive_params": {"type": "object"},
61 },
62 "required": ["vnf_member_index", "primitive", "primitive_params"],
63 "additionalProperties": False
64}
65
66
tierno0f98af52018-03-19 10:28:22 +010067schema_version = {"type": "string", "enum": ["1.0"]}
tierno09c073e2018-04-26 13:36:48 +020068vim_account_edit_schema = {
69 "title": "vim_account edit input schema",
70 "$schema": "http://json-schema.org/draft-04/schema#",
71 "type": "object",
72 "properties": {
73 "name": name_schema,
74 "description": description_schema,
75 "type": nameshort_schema, # currently "openvim" or "openstack", can be enlarged with plugins
76 "vim": name_schema,
77 "datacenter": name_schema,
78 "vim_url": description_schema,
79 "vim_url_admin": description_schema,
80 "vim_tenant": name_schema,
81 "vim_tenant_name": name_schema,
82 "vim_username": nameshort_schema,
83 "vim_password": nameshort_schema,
84 "config": {"type": "object"}
85 },
86 "additionalProperties": False
87}
tierno0f98af52018-03-19 10:28:22 +010088schema_type = {"type": "string"}
89
tierno09c073e2018-04-26 13:36:48 +020090vim_account_new_schema = {
91 "title": "vim_account creation input schema",
tierno0f98af52018-03-19 10:28:22 +010092 "$schema": "http://json-schema.org/draft-04/schema#",
93 "type": "object",
94 "properties": {
95 "schema_version": schema_version,
96 "schema_type": schema_type,
97 "name": name_schema,
98 "description": description_schema,
tierno09c073e2018-04-26 13:36:48 +020099 "vim": name_schema,
100 "datacenter": name_schema,
tierno0f98af52018-03-19 10:28:22 +0100101 "vim_type": {"enum": ["openstack", "openvim", "vmware", "opennebula", "aws"]},
102 "vim_url": description_schema,
103 # "vim_url_admin": description_schema,
104 # "vim_tenant": name_schema,
105 "vim_tenant_name": name_schema,
106 "vim_user": nameshort_schema,
107 "vim_password": nameshort_schema,
108 "config": {"type": "object"}
109 },
110 "required": ["name", "vim_url", "vim_type", "vim_user", "vim_password", "vim_tenant_name"],
111 "additionalProperties": False
112}
tierno0f98af52018-03-19 10:28:22 +0100113
114
115sdn_properties = {
116 "name": name_schema,
tiernocfb07c62018-05-10 18:30:51 +0200117 "description": description_schema,
tierno0f98af52018-03-19 10:28:22 +0100118 "dpid": {"type": "string", "pattern": "^[0-9a-fA-F]{2}(:[0-9a-fA-F]{2}){7}$"},
119 "ip": ip_schema,
120 "port": port_schema,
121 "type": {"type": "string", "enum": ["opendaylight", "floodlight", "onos"]},
122 "version": {"type": "string", "minLength": 1, "maxLength": 12},
123 "user": nameshort_schema,
124 "password": passwd_schema
125}
126sdn_new_schema = {
127 "title": "sdn controller information schema",
128 "$schema": "http://json-schema.org/draft-04/schema#",
129 "type": "object",
130 "properties": sdn_properties,
131 "required": ["name", "port", 'ip', 'dpid', 'type'],
132 "additionalProperties": False
133}
134sdn_edit_schema = {
135 "title": "sdn controller update information schema",
136 "$schema": "http://json-schema.org/draft-04/schema#",
137 "type": "object",
138 "properties": sdn_properties,
tiernocfb07c62018-05-10 18:30:51 +0200139 # "required": ["name", "port", 'ip', 'dpid', 'type'],
tierno0f98af52018-03-19 10:28:22 +0100140 "additionalProperties": False
141}
142sdn_port_mapping_schema = {
143 "$schema": "http://json-schema.org/draft-04/schema#",
144 "title": "sdn port mapping information schema",
145 "type": "array",
146 "items": {
147 "type": "object",
148 "properties": {
149 "compute_node": nameshort_schema,
150 "ports": {
151 "type": "array",
152 "items": {
153 "type": "object",
154 "properties": {
155 "pci": pci_schema,
156 "switch_port": nameshort_schema,
157 "switch_mac": mac_schema
158 },
159 "required": ["pci"]
160 }
161 }
162 },
163 "required": ["compute_node", "ports"]
164 }
165}
166sdn_external_port_schema = {
167 "$schema": "http://json-schema.org/draft-04/schema#",
168 "title": "External port ingformation",
169 "type": "object",
170 "properties": {
171 "port": {"type": "string", "minLength": 1, "maxLength": 60},
172 "vlan": vlan_schema,
173 "mac": mac_schema
174 },
175 "required": ["port"]
176}
177
178
179nbi_new_input_schemas = {
tierno09c073e2018-04-26 13:36:48 +0200180 "vim_accounts": vim_account_new_schema,
tierno65acb4d2018-04-06 16:42:40 +0200181 "sdns": sdn_new_schema,
182 "ns_instantiate": ns_instantiate,
183 "ns_action": ns_action,
tierno0f98af52018-03-19 10:28:22 +0100184}
185
186nbi_edit_input_schemas = {
tierno09c073e2018-04-26 13:36:48 +0200187 "vim_accounts": vim_account_edit_schema,
tierno0f98af52018-03-19 10:28:22 +0100188 "sdns": sdn_edit_schema
189}
190
191
192class ValidationError(Exception):
193 pass
194
195
196def validate_input(indata, item, new=True):
197 """
198 Validates input data agains json schema
199 :param indata: user input data. Should be a dictionary
tierno65acb4d2018-04-06 16:42:40 +0200200 :param item: can be users, projects, vims, sdns, ns_xxxxx
tierno0f98af52018-03-19 10:28:22 +0100201 :param new: True if the validation is for creating or False if it is for editing
202 :return: None if ok, raises ValidationError exception otherwise
203 """
204 try:
205 if new:
206 schema_to_use = nbi_new_input_schemas.get(item)
207 else:
208 schema_to_use = nbi_edit_input_schemas.get(item)
209 if schema_to_use:
210 js_v(indata, schema_to_use)
211 return None
212 except js_e.ValidationError as e:
213 if e.path:
214 error_pos = "at '" + ":".join(e.path) + "'"
215 else:
216 error_pos = ""
217 raise ValidationError("Format error {} '{}' ".format(error_pos, e))