blob: 8233c906d456bbe26cd62a4e41f8c5b950a6980f [file] [log] [blame]
tiernoc94c3df2018-02-09 15:38:54 +01001# -*- coding: utf-8 -*-
2
tiernod125caf2018-11-22 16:05:54 +00003# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12# implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
tiernoc94c3df2018-02-09 15:38:54 +010016import logging
Eduardo Sousa5c01e192019-05-08 02:35:47 +010017import yaml
tiernob24258a2018-10-04 18:39:49 +020018from osm_common import dbmongo, dbmemory, fslocal, msglocal, msgkafka, version as common_version
19from osm_common.dbbase import DbException
tiernoa8d63632018-05-10 13:12:32 +020020from osm_common.fsbase import FsException
21from osm_common.msgbase import MsgException
tiernoc94c3df2018-02-09 15:38:54 +010022from http import HTTPStatus
Eduardo Sousa5c01e192019-05-08 02:35:47 +010023
tierno23acf402019-08-28 13:36:34 +000024from osm_nbi.authconn_keystone import AuthconnKeystone
25from osm_nbi.authconn_internal import AuthconnInternal
26from osm_nbi.base_topic import EngineException, versiontuple
27from osm_nbi.admin_topics import VimAccountTopic, WimAccountTopic, SdnTopic
28from osm_nbi.admin_topics import UserTopicAuth, ProjectTopicAuth, RoleTopicAuth
29from osm_nbi.descriptor_topics import VnfdTopic, NsdTopic, PduTopic, NstTopic
30from osm_nbi.instance_topics import NsrTopic, VnfrTopic, NsLcmOpTopic, NsiTopic, NsiLcmOpTopic
31from osm_nbi.pmjobs_topics import PmJobsTopic
tiernod985a8d2018-10-19 14:12:28 +020032from base64 import b64encode
Eduardo Sousa5c01e192019-05-08 02:35:47 +010033from os import urandom, path
tierno04dbb0e2019-01-09 16:00:24 +000034from threading import Lock
tiernoc94c3df2018-02-09 15:38:54 +010035
36__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
tierno932499c2019-01-28 17:28:10 +000037min_common_version = "0.1.16"
tierno441dbbf2018-07-10 12:52:48 +020038
39
tiernoc94c3df2018-02-09 15:38:54 +010040class Engine(object):
tiernob24258a2018-10-04 18:39:49 +020041 map_from_topic_to_class = {
42 "vnfds": VnfdTopic,
43 "nsds": NsdTopic,
Felipe Vicensb57758d2018-10-16 16:00:20 +020044 "nsts": NstTopic,
tiernob24258a2018-10-04 18:39:49 +020045 "pdus": PduTopic,
46 "nsrs": NsrTopic,
47 "vnfrs": VnfrTopic,
48 "nslcmops": NsLcmOpTopic,
49 "vim_accounts": VimAccountTopic,
tierno55ba2e62018-12-11 17:22:22 +000050 "wim_accounts": WimAccountTopic,
tiernob24258a2018-10-04 18:39:49 +020051 "sdns": SdnTopic,
delacruzramo01b15d32019-07-02 14:37:47 +020052 "users": UserTopicAuth, # Valid for both internal and keystone authentication backends
53 "projects": ProjectTopicAuth, # Valid for both internal and keystone authentication backends
delacruzramoceb8baf2019-06-21 14:25:38 +020054 "roles": RoleTopicAuth, # Valid for both internal and keystone authentication backends
Felipe Vicensb57758d2018-10-16 16:00:20 +020055 "nsis": NsiTopic,
Felipe Vicens07f31722018-10-29 15:16:44 +010056 "nsilcmops": NsiLcmOpTopic
tiernob24258a2018-10-04 18:39:49 +020057 # [NEW_TOPIC]: add an entry here
vijay.r35ef2f72019-04-30 17:55:49 +053058 # "pm_jobs": PmJobsTopic will be added manually because it needs other parameters
tiernob24258a2018-10-04 18:39:49 +020059 }
tiernoc94c3df2018-02-09 15:38:54 +010060
Eduardo Sousa044f4312019-05-20 15:17:35 +010061 map_target_version_to_int = {
62 "1.0": 1000,
tierno1f029d82019-06-13 22:37:04 +000063 "1.1": 1001,
64 "1.2": 1002,
Eduardo Sousa044f4312019-05-20 15:17:35 +010065 # Add new versions here
66 }
67
tiernoc94c3df2018-02-09 15:38:54 +010068 def __init__(self):
tiernoc94c3df2018-02-09 15:38:54 +010069 self.db = None
70 self.fs = None
71 self.msg = None
Eduardo Sousa5c01e192019-05-08 02:35:47 +010072 self.auth = None
tiernoc94c3df2018-02-09 15:38:54 +010073 self.config = None
Eduardo Sousa5c01e192019-05-08 02:35:47 +010074 self.operations = None
tiernoc94c3df2018-02-09 15:38:54 +010075 self.logger = logging.getLogger("nbi.engine")
tiernob24258a2018-10-04 18:39:49 +020076 self.map_topic = {}
tierno04dbb0e2019-01-09 16:00:24 +000077 self.write_lock = None
tiernoc94c3df2018-02-09 15:38:54 +010078
79 def start(self, config):
80 """
81 Connect to database, filesystem storage, and messaging
82 :param config: two level dictionary with configuration. Top level should contain 'database', 'storage',
83 :return: None
84 """
85 self.config = config
tiernob24258a2018-10-04 18:39:49 +020086 # check right version of common
87 if versiontuple(common_version) < versiontuple(min_common_version):
88 raise EngineException("Not compatible osm/common version '{}'. Needed '{}' or higher".format(
89 common_version, min_common_version))
90
tiernoc94c3df2018-02-09 15:38:54 +010091 try:
92 if not self.db:
93 if config["database"]["driver"] == "mongo":
94 self.db = dbmongo.DbMongo()
95 self.db.db_connect(config["database"])
96 elif config["database"]["driver"] == "memory":
97 self.db = dbmemory.DbMemory()
98 self.db.db_connect(config["database"])
99 else:
100 raise EngineException("Invalid configuration param '{}' at '[database]':'driver'".format(
101 config["database"]["driver"]))
102 if not self.fs:
103 if config["storage"]["driver"] == "local":
104 self.fs = fslocal.FsLocal()
105 self.fs.fs_connect(config["storage"])
106 else:
107 raise EngineException("Invalid configuration param '{}' at '[storage]':'driver'".format(
108 config["storage"]["driver"]))
109 if not self.msg:
110 if config["message"]["driver"] == "local":
111 self.msg = msglocal.MsgLocal()
112 self.msg.connect(config["message"])
113 elif config["message"]["driver"] == "kafka":
114 self.msg = msgkafka.MsgKafka()
115 self.msg.connect(config["message"])
116 else:
117 raise EngineException("Invalid configuration param '{}' at '[message]':'driver'".format(
tierno932499c2019-01-28 17:28:10 +0000118 config["message"]["driver"]))
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100119 if not self.auth:
120 if config["authentication"]["backend"] == "keystone":
delacruzramo01b15d32019-07-02 14:37:47 +0200121 self.auth = AuthconnKeystone(config["authentication"], self.db, None)
delacruzramoceb8baf2019-06-21 14:25:38 +0200122 else:
delacruzramo01b15d32019-07-02 14:37:47 +0200123 self.auth = AuthconnInternal(config["authentication"], self.db, dict())
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100124 if not self.operations:
125 if "resources_to_operations" in config["rbac"]:
126 resources_to_operations_file = config["rbac"]["resources_to_operations"]
127 else:
128 possible_paths = (
129 __file__[:__file__.rfind("engine.py")] + "resources_to_operations.yml",
130 "./resources_to_operations.yml"
131 )
132 for config_file in possible_paths:
133 if path.isfile(config_file):
134 resources_to_operations_file = config_file
135 break
Eduardo Sousaa519a962019-06-06 15:00:50 +0100136 if not resources_to_operations_file:
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100137 raise EngineException("Invalid permission configuration: resources_to_operations file missing")
Eduardo Sousaa519a962019-06-06 15:00:50 +0100138
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100139 with open(resources_to_operations_file, 'r') as f:
140 resources_to_operations = yaml.load(f)
Eduardo Sousaa519a962019-06-06 15:00:50 +0100141
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100142 self.operations = []
143
144 for _, value in resources_to_operations["resources_to_operations"].items():
145 if value not in self.operations:
Eduardo Sousac5a18892019-06-06 14:51:23 +0100146 self.operations += [value]
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100147
tierno04dbb0e2019-01-09 16:00:24 +0000148 self.write_lock = Lock()
tiernob24258a2018-10-04 18:39:49 +0200149 # create one class per topic
150 for topic, topic_class in self.map_from_topic_to_class.items():
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100151 if self.auth and topic_class in (UserTopicAuth, ProjectTopicAuth):
152 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth)
153 elif self.auth and topic_class == RoleTopicAuth:
154 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth,
155 self.operations)
156 else:
157 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg)
Eduardo Sousa225200d2019-05-22 15:57:17 +0100158
vijay.r35ef2f72019-04-30 17:55:49 +0530159 self.map_topic["pm_jobs"] = PmJobsTopic(config["prometheus"].get("host"), config["prometheus"].get("port"))
tiernoc94c3df2018-02-09 15:38:54 +0100160 except (DbException, FsException, MsgException) as e:
161 raise EngineException(str(e), http_code=e.http_code)
162
163 def stop(self):
164 try:
165 if self.db:
166 self.db.db_disconnect()
167 if self.fs:
168 self.fs.fs_disconnect()
tierno932499c2019-01-28 17:28:10 +0000169 if self.msg:
170 self.msg.disconnect()
tierno04dbb0e2019-01-09 16:00:24 +0000171 self.write_lock = None
tiernoc94c3df2018-02-09 15:38:54 +0100172 except (DbException, FsException, MsgException) as e:
173 raise EngineException(str(e), http_code=e.http_code)
174
tierno65ca36d2019-02-12 19:27:52 +0100175 def new_item(self, rollback, session, topic, indata=None, kwargs=None, headers=None):
tiernoc94c3df2018-02-09 15:38:54 +0100176 """
tiernof27c79b2018-03-12 17:08:42 +0100177 Creates a new entry into database. For nsds and vnfds it creates an almost empty DISABLED entry,
178 that must be completed with a call to method upload_content
tiernob24258a2018-10-04 18:39:49 +0200179 :param rollback: list to append created items at database in case a rollback must to be done
tierno65ca36d2019-02-12 19:27:52 +0100180 :param session: contains the used login username and working project, force to avoid checkins, public
tiernob24258a2018-10-04 18:39:49 +0200181 :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds
tiernoc94c3df2018-02-09 15:38:54 +0100182 :param indata: data to be inserted
183 :param kwargs: used to override the indata descriptor
184 :param headers: http request headers
tierno0ffaa992018-05-09 13:21:56 +0200185 :return: _id: identity of the inserted data.
tiernoc94c3df2018-02-09 15:38:54 +0100186 """
tiernob24258a2018-10-04 18:39:49 +0200187 if topic not in self.map_topic:
188 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000189 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100190 return self.map_topic[topic].new(rollback, session, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100191
tierno65ca36d2019-02-12 19:27:52 +0100192 def upload_content(self, session, topic, _id, indata, kwargs, headers):
tierno65acb4d2018-04-06 16:42:40 +0200193 """
tiernob24258a2018-10-04 18:39:49 +0200194 Upload content for an already created entry (_id)
tierno65acb4d2018-04-06 16:42:40 +0200195 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200196 :param topic: it can be: users, projects, vnfds, nsds,
197 :param _id: server id of the item
198 :param indata: data to be inserted
tierno65acb4d2018-04-06 16:42:40 +0200199 :param kwargs: used to override the indata descriptor
tiernob24258a2018-10-04 18:39:49 +0200200 :param headers: http request headers
tiernob24258a2018-10-04 18:39:49 +0200201 :return: _id: identity of the inserted data.
tierno65acb4d2018-04-06 16:42:40 +0200202 """
tiernob24258a2018-10-04 18:39:49 +0200203 if topic not in self.map_topic:
204 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000205 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100206 return self.map_topic[topic].upload_content(session, _id, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100207
tiernob24258a2018-10-04 18:39:49 +0200208 def get_item_list(self, session, topic, filter_q=None):
tiernoc94c3df2018-02-09 15:38:54 +0100209 """
210 Get a list of items
211 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200212 :param topic: it can be: users, projects, vnfds, nsds, ...
213 :param filter_q: filter of data to be applied
214 :return: The list, it can be empty if no one match the filter_q.
tiernoc94c3df2018-02-09 15:38:54 +0100215 """
tiernob24258a2018-10-04 18:39:49 +0200216 if topic not in self.map_topic:
217 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
218 return self.map_topic[topic].list(session, filter_q)
tiernof27c79b2018-03-12 17:08:42 +0100219
tiernob24258a2018-10-04 18:39:49 +0200220 def get_item(self, session, topic, _id):
tiernoc94c3df2018-02-09 15:38:54 +0100221 """
tiernob24258a2018-10-04 18:39:49 +0200222 Get complete information on an item
tiernoc94c3df2018-02-09 15:38:54 +0100223 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200224 :param topic: it can be: users, projects, vnfds, nsds,
tiernoc94c3df2018-02-09 15:38:54 +0100225 :param _id: server id of the item
226 :return: dictionary, raise exception if not found.
227 """
tiernob24258a2018-10-04 18:39:49 +0200228 if topic not in self.map_topic:
229 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
230 return self.map_topic[topic].show(session, _id)
tiernoc94c3df2018-02-09 15:38:54 +0100231
tierno87006042018-10-24 12:50:20 +0200232 def get_file(self, session, topic, _id, path=None, accept_header=None):
233 """
234 Get descriptor package or artifact file content
235 :param session: contains the used login username and working project
236 :param topic: it can be: users, projects, vnfds, nsds,
237 :param _id: server id of the item
238 :param path: artifact path or "$DESCRIPTOR" or None
239 :param accept_header: Content of Accept header. Must contain applition/zip or/and text/plain
240 :return: opened file plus Accept format or raises an exception
241 """
242 if topic not in self.map_topic:
243 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
244 return self.map_topic[topic].get_file(session, _id, path, accept_header)
245
tiernob24258a2018-10-04 18:39:49 +0200246 def del_item_list(self, session, topic, _filter=None):
tiernoc94c3df2018-02-09 15:38:54 +0100247 """
248 Delete a list of items
249 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200250 :param topic: it can be: users, projects, vnfds, nsds, ...
251 :param _filter: filter of data to be applied
252 :return: The deleted list, it can be empty if no one match the _filter.
tiernoc94c3df2018-02-09 15:38:54 +0100253 """
tiernob24258a2018-10-04 18:39:49 +0200254 if topic not in self.map_topic:
255 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000256 with self.write_lock:
257 return self.map_topic[topic].delete_list(session, _filter)
tiernoc94c3df2018-02-09 15:38:54 +0100258
tierno65ca36d2019-02-12 19:27:52 +0100259 def del_item(self, session, topic, _id):
tiernoc94c3df2018-02-09 15:38:54 +0100260 """
tiernob92094f2018-05-11 13:44:22 +0200261 Delete item by its internal id
tiernoc94c3df2018-02-09 15:38:54 +0100262 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200263 :param topic: it can be: users, projects, vnfds, nsds, ...
tiernoc94c3df2018-02-09 15:38:54 +0100264 :param _id: server id of the item
delacruzramo01b15d32019-07-02 14:37:47 +0200265 :return: dictionary with deleted item _id. It raises exception if not found.
tiernoc94c3df2018-02-09 15:38:54 +0100266 """
tiernob24258a2018-10-04 18:39:49 +0200267 if topic not in self.map_topic:
268 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000269 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100270 return self.map_topic[topic].delete(session, _id)
tiernoc94c3df2018-02-09 15:38:54 +0100271
tierno65ca36d2019-02-12 19:27:52 +0100272 def edit_item(self, session, topic, _id, indata=None, kwargs=None):
tiernob24258a2018-10-04 18:39:49 +0200273 """
274 Update an existing entry at database
275 :param session: contains the used login username and working project
276 :param topic: it can be: users, projects, vnfds, nsds, ...
277 :param _id: identifier to be updated
278 :param indata: data to be inserted
279 :param kwargs: used to override the indata descriptor
delacruzramo01b15d32019-07-02 14:37:47 +0200280 :return: dictionary with edited item _id, raise exception if not found.
tiernob24258a2018-10-04 18:39:49 +0200281 """
282 if topic not in self.map_topic:
283 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000284 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100285 return self.map_topic[topic].edit(session, _id, indata, kwargs)
tiernoc94c3df2018-02-09 15:38:54 +0100286
tiernod985a8d2018-10-19 14:12:28 +0200287 def upgrade_db(self, current_version, target_version):
Eduardo Sousa044f4312019-05-20 15:17:35 +0100288 if target_version not in self.map_target_version_to_int.keys():
tierno1f029d82019-06-13 22:37:04 +0000289 raise EngineException("Cannot upgrade to version '{}' with this version of code".format(target_version),
Eduardo Sousa044f4312019-05-20 15:17:35 +0100290 http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
tiernod985a8d2018-10-19 14:12:28 +0200291
Eduardo Sousa044f4312019-05-20 15:17:35 +0100292 if current_version == target_version:
293 return
294
295 target_version_int = self.map_target_version_to_int[target_version]
296
297 if not current_version:
298 # create database version
299 serial = urandom(32)
300 version_data = {
301 "_id": "version", # Always "version"
302 "version_int": 1000, # version number
303 "version": "1.0", # version text
304 "date": "2018-10-25", # version date
305 "description": "added serial", # changes in this version
306 'status': "ENABLED", # ENABLED, DISABLED (migration in process), ERROR,
307 'serial': b64encode(serial)
308 }
309 self.db.create("admin", version_data)
310 self.db.set_secret_key(serial)
311 current_version = "1.0"
312
tierno1f029d82019-06-13 22:37:04 +0000313 if current_version in ("1.0", "1.1") and target_version_int >= self.map_target_version_to_int["1.2"]:
delacruzramo01b15d32019-07-02 14:37:47 +0200314 if self.config['authentication']['backend'] == "internal":
315 self.db.del_list("roles")
316
Eduardo Sousa044f4312019-05-20 15:17:35 +0100317 version_data = {
318 "_id": "version",
tierno1f029d82019-06-13 22:37:04 +0000319 "version_int": 1002,
320 "version": "1.2",
321 "date": "2019-06-11",
Eduardo Sousa044f4312019-05-20 15:17:35 +0100322 "description": "set new format for roles_operations"
323 }
324
325 self.db.set_one("admin", {"_id": "version"}, version_data)
tierno1f029d82019-06-13 22:37:04 +0000326 current_version = "1.2"
Eduardo Sousa044f4312019-05-20 15:17:35 +0100327 # TODO add future migrations here
tiernod985a8d2018-10-19 14:12:28 +0200328
tierno4a946e42018-04-12 17:48:49 +0200329 def init_db(self, target_version='1.0'):
330 """
tiernod985a8d2018-10-19 14:12:28 +0200331 Init database if empty. If not empty it checks that database version and migrates if needed
tierno4a946e42018-04-12 17:48:49 +0200332 If empty, it creates a new user admin/admin at 'users' and a new entry at 'version'
tiernod985a8d2018-10-19 14:12:28 +0200333 :param target_version: check desired database version. Migrate to it if possible or raises exception
tierno4a946e42018-04-12 17:48:49 +0200334 :return: None if ok, exception if error or if the version is different.
335 """
tiernod985a8d2018-10-19 14:12:28 +0200336
337 version_data = self.db.get_one("admin", {"_id": "version"}, fail_on_empty=False, fail_on_more=True)
338 # check database status is ok
339 if version_data and version_data.get("status") != 'ENABLED':
tierno4a946e42018-04-12 17:48:49 +0200340 raise EngineException("Wrong database status '{}'".format(
tiernod985a8d2018-10-19 14:12:28 +0200341 version_data["status"]), HTTPStatus.INTERNAL_SERVER_ERROR)
342
343 # check version
344 db_version = None if not version_data else version_data.get("version")
345 if db_version != target_version:
346 self.upgrade_db(db_version, target_version)
347
tierno4a946e42018-04-12 17:48:49 +0200348 return