blob: 34f0f14cf8501de3f54de3303a23d13b894f362b [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
tierno9e87a7f2020-03-23 09:24:10 +000017# import yaml
Eduardo Sousa7e0eb132019-06-21 11:50:21 +010018from osm_common import dbmongo, dbmemory, fslocal, fsmongo, msglocal, msgkafka, version as common_version
tiernob24258a2018-10-04 18:39:49 +020019from 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
delacruzramofe598fe2019-10-23 18:25:11 +020028from osm_nbi.admin_topics import K8sClusterTopic, K8sRepoTopic
tierno23acf402019-08-28 13:36:34 +000029from osm_nbi.admin_topics import UserTopicAuth, ProjectTopicAuth, RoleTopicAuth
delacruzramo271d2002019-12-02 21:00:37 +010030from osm_nbi.descriptor_topics import VnfdTopic, NsdTopic, PduTopic, NstTopic, VnfPkgOpTopic
tierno23acf402019-08-28 13:36:34 +000031from osm_nbi.instance_topics import NsrTopic, VnfrTopic, NsLcmOpTopic, NsiTopic, NsiLcmOpTopic
32from osm_nbi.pmjobs_topics import PmJobsTopic
tiernod985a8d2018-10-19 14:12:28 +020033from base64 import b64encode
tierno9e87a7f2020-03-23 09:24:10 +000034from os import urandom # , path
tierno04dbb0e2019-01-09 16:00:24 +000035from threading import Lock
tiernoc94c3df2018-02-09 15:38:54 +010036
37__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
tierno932499c2019-01-28 17:28:10 +000038min_common_version = "0.1.16"
tierno441dbbf2018-07-10 12:52:48 +020039
40
tiernoc94c3df2018-02-09 15:38:54 +010041class Engine(object):
tiernob24258a2018-10-04 18:39:49 +020042 map_from_topic_to_class = {
43 "vnfds": VnfdTopic,
44 "nsds": NsdTopic,
Felipe Vicensb57758d2018-10-16 16:00:20 +020045 "nsts": NstTopic,
tiernob24258a2018-10-04 18:39:49 +020046 "pdus": PduTopic,
47 "nsrs": NsrTopic,
48 "vnfrs": VnfrTopic,
49 "nslcmops": NsLcmOpTopic,
50 "vim_accounts": VimAccountTopic,
tierno55ba2e62018-12-11 17:22:22 +000051 "wim_accounts": WimAccountTopic,
tiernob24258a2018-10-04 18:39:49 +020052 "sdns": SdnTopic,
delacruzramofe598fe2019-10-23 18:25:11 +020053 "k8sclusters": K8sClusterTopic,
54 "k8srepos": K8sRepoTopic,
delacruzramo01b15d32019-07-02 14:37:47 +020055 "users": UserTopicAuth, # Valid for both internal and keystone authentication backends
56 "projects": ProjectTopicAuth, # Valid for both internal and keystone authentication backends
delacruzramoceb8baf2019-06-21 14:25:38 +020057 "roles": RoleTopicAuth, # Valid for both internal and keystone authentication backends
Felipe Vicensb57758d2018-10-16 16:00:20 +020058 "nsis": NsiTopic,
delacruzramo271d2002019-12-02 21:00:37 +010059 "nsilcmops": NsiLcmOpTopic,
60 "vnfpkgops": VnfPkgOpTopic,
tiernob24258a2018-10-04 18:39:49 +020061 # [NEW_TOPIC]: add an entry here
vijay.r35ef2f72019-04-30 17:55:49 +053062 # "pm_jobs": PmJobsTopic will be added manually because it needs other parameters
tiernob24258a2018-10-04 18:39:49 +020063 }
tiernoc94c3df2018-02-09 15:38:54 +010064
Eduardo Sousa044f4312019-05-20 15:17:35 +010065 map_target_version_to_int = {
66 "1.0": 1000,
tierno1f029d82019-06-13 22:37:04 +000067 "1.1": 1001,
68 "1.2": 1002,
Eduardo Sousa044f4312019-05-20 15:17:35 +010069 # Add new versions here
70 }
71
delacruzramoad682a52019-12-10 16:26:34 +010072 def __init__(self, authenticator):
tiernoc94c3df2018-02-09 15:38:54 +010073 self.db = None
74 self.fs = None
75 self.msg = None
delacruzramoad682a52019-12-10 16:26:34 +010076 self.authconn = None
tiernoc94c3df2018-02-09 15:38:54 +010077 self.config = None
tierno9e87a7f2020-03-23 09:24:10 +000078 # self.operations = None
tiernoc94c3df2018-02-09 15:38:54 +010079 self.logger = logging.getLogger("nbi.engine")
tiernob24258a2018-10-04 18:39:49 +020080 self.map_topic = {}
tierno04dbb0e2019-01-09 16:00:24 +000081 self.write_lock = None
delacruzramoad682a52019-12-10 16:26:34 +010082 # self.token_cache = token_cache
83 self.authenticator = authenticator
tiernoc94c3df2018-02-09 15:38:54 +010084
85 def start(self, config):
86 """
87 Connect to database, filesystem storage, and messaging
88 :param config: two level dictionary with configuration. Top level should contain 'database', 'storage',
89 :return: None
90 """
91 self.config = config
tiernob24258a2018-10-04 18:39:49 +020092 # check right version of common
93 if versiontuple(common_version) < versiontuple(min_common_version):
94 raise EngineException("Not compatible osm/common version '{}'. Needed '{}' or higher".format(
95 common_version, min_common_version))
96
tiernoc94c3df2018-02-09 15:38:54 +010097 try:
98 if not self.db:
99 if config["database"]["driver"] == "mongo":
100 self.db = dbmongo.DbMongo()
101 self.db.db_connect(config["database"])
102 elif config["database"]["driver"] == "memory":
103 self.db = dbmemory.DbMemory()
104 self.db.db_connect(config["database"])
105 else:
106 raise EngineException("Invalid configuration param '{}' at '[database]':'driver'".format(
107 config["database"]["driver"]))
108 if not self.fs:
109 if config["storage"]["driver"] == "local":
110 self.fs = fslocal.FsLocal()
111 self.fs.fs_connect(config["storage"])
Eduardo Sousa7e0eb132019-06-21 11:50:21 +0100112 elif config["storage"]["driver"] == "mongo":
113 self.fs = fsmongo.FsMongo()
114 self.fs.fs_connect(config["storage"])
tiernoc94c3df2018-02-09 15:38:54 +0100115 else:
116 raise EngineException("Invalid configuration param '{}' at '[storage]':'driver'".format(
117 config["storage"]["driver"]))
118 if not self.msg:
119 if config["message"]["driver"] == "local":
120 self.msg = msglocal.MsgLocal()
121 self.msg.connect(config["message"])
122 elif config["message"]["driver"] == "kafka":
123 self.msg = msgkafka.MsgKafka()
124 self.msg.connect(config["message"])
125 else:
126 raise EngineException("Invalid configuration param '{}' at '[message]':'driver'".format(
tierno932499c2019-01-28 17:28:10 +0000127 config["message"]["driver"]))
delacruzramoad682a52019-12-10 16:26:34 +0100128 if not self.authconn:
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100129 if config["authentication"]["backend"] == "keystone":
tierno9e87a7f2020-03-23 09:24:10 +0000130 self.authconn = AuthconnKeystone(config["authentication"], self.db,
131 self.authenticator.role_permissions)
delacruzramoceb8baf2019-06-21 14:25:38 +0200132 else:
tierno9e87a7f2020-03-23 09:24:10 +0000133 self.authconn = AuthconnInternal(config["authentication"], self.db,
134 self.authenticator.role_permissions)
135 # if not self.operations:
136 # if "resources_to_operations" in config["rbac"]:
137 # resources_to_operations_file = config["rbac"]["resources_to_operations"]
138 # else:
139 # possible_paths = (
140 # __file__[:__file__.rfind("engine.py")] + "resources_to_operations.yml",
141 # "./resources_to_operations.yml"
142 # )
143 # for config_file in possible_paths:
144 # if path.isfile(config_file):
145 # resources_to_operations_file = config_file
146 # break
147 # if not resources_to_operations_file:
148 # raise EngineException("Invalid permission configuration:"
149 # "resources_to_operations file missing")
150 #
151 # with open(resources_to_operations_file, 'r') as f:
152 # resources_to_operations = yaml.load(f, Loader=yaml.Loader)
153 #
154 # self.operations = []
155 #
156 # for _, value in resources_to_operations["resources_to_operations"].items():
157 # if value not in self.operations:
158 # self.operations += [value]
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100159
tierno04dbb0e2019-01-09 16:00:24 +0000160 self.write_lock = Lock()
tiernob24258a2018-10-04 18:39:49 +0200161 # create one class per topic
162 for topic, topic_class in self.map_from_topic_to_class.items():
delacruzramo32bab472019-09-13 12:24:22 +0200163 # if self.auth and topic_class in (UserTopicAuth, ProjectTopicAuth):
164 # self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth)
tierno9e87a7f2020-03-23 09:24:10 +0000165 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.authconn)
Eduardo Sousa225200d2019-05-22 15:57:17 +0100166
preethika.p0952a482019-09-20 16:37:50 +0530167 self.map_topic["pm_jobs"] = PmJobsTopic(self.db, config["prometheus"].get("host"),
168 config["prometheus"].get("port"))
tiernoc94c3df2018-02-09 15:38:54 +0100169 except (DbException, FsException, MsgException) as e:
170 raise EngineException(str(e), http_code=e.http_code)
171
172 def stop(self):
173 try:
174 if self.db:
175 self.db.db_disconnect()
176 if self.fs:
177 self.fs.fs_disconnect()
tierno932499c2019-01-28 17:28:10 +0000178 if self.msg:
179 self.msg.disconnect()
tierno04dbb0e2019-01-09 16:00:24 +0000180 self.write_lock = None
tiernoc94c3df2018-02-09 15:38:54 +0100181 except (DbException, FsException, MsgException) as e:
182 raise EngineException(str(e), http_code=e.http_code)
183
tierno65ca36d2019-02-12 19:27:52 +0100184 def new_item(self, rollback, session, topic, indata=None, kwargs=None, headers=None):
tiernoc94c3df2018-02-09 15:38:54 +0100185 """
tiernof27c79b2018-03-12 17:08:42 +0100186 Creates a new entry into database. For nsds and vnfds it creates an almost empty DISABLED entry,
187 that must be completed with a call to method upload_content
tiernob24258a2018-10-04 18:39:49 +0200188 :param rollback: list to append created items at database in case a rollback must to be done
tierno65ca36d2019-02-12 19:27:52 +0100189 :param session: contains the used login username and working project, force to avoid checkins, public
tiernob24258a2018-10-04 18:39:49 +0200190 :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds
tiernoc94c3df2018-02-09 15:38:54 +0100191 :param indata: data to be inserted
192 :param kwargs: used to override the indata descriptor
193 :param headers: http request headers
tierno0ffaa992018-05-09 13:21:56 +0200194 :return: _id: identity of the inserted data.
tiernoc94c3df2018-02-09 15:38:54 +0100195 """
tiernob24258a2018-10-04 18:39:49 +0200196 if topic not in self.map_topic:
197 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000198 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100199 return self.map_topic[topic].new(rollback, session, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100200
tierno65ca36d2019-02-12 19:27:52 +0100201 def upload_content(self, session, topic, _id, indata, kwargs, headers):
tierno65acb4d2018-04-06 16:42:40 +0200202 """
tiernob24258a2018-10-04 18:39:49 +0200203 Upload content for an already created entry (_id)
tierno65acb4d2018-04-06 16:42:40 +0200204 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200205 :param topic: it can be: users, projects, vnfds, nsds,
206 :param _id: server id of the item
207 :param indata: data to be inserted
tierno65acb4d2018-04-06 16:42:40 +0200208 :param kwargs: used to override the indata descriptor
tiernob24258a2018-10-04 18:39:49 +0200209 :param headers: http request headers
tiernob24258a2018-10-04 18:39:49 +0200210 :return: _id: identity of the inserted data.
tierno65acb4d2018-04-06 16:42:40 +0200211 """
tiernob24258a2018-10-04 18:39:49 +0200212 if topic not in self.map_topic:
213 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000214 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100215 return self.map_topic[topic].upload_content(session, _id, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100216
tiernob24258a2018-10-04 18:39:49 +0200217 def get_item_list(self, session, topic, filter_q=None):
tiernoc94c3df2018-02-09 15:38:54 +0100218 """
219 Get a list of items
220 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200221 :param topic: it can be: users, projects, vnfds, nsds, ...
222 :param filter_q: filter of data to be applied
223 :return: The list, it can be empty if no one match the filter_q.
tiernoc94c3df2018-02-09 15:38:54 +0100224 """
tiernob24258a2018-10-04 18:39:49 +0200225 if topic not in self.map_topic:
226 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
227 return self.map_topic[topic].list(session, filter_q)
tiernof27c79b2018-03-12 17:08:42 +0100228
tiernob24258a2018-10-04 18:39:49 +0200229 def get_item(self, session, topic, _id):
tiernoc94c3df2018-02-09 15:38:54 +0100230 """
tiernob24258a2018-10-04 18:39:49 +0200231 Get complete information on an item
tiernoc94c3df2018-02-09 15:38:54 +0100232 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200233 :param topic: it can be: users, projects, vnfds, nsds,
tiernoc94c3df2018-02-09 15:38:54 +0100234 :param _id: server id of the item
235 :return: dictionary, raise exception if not found.
236 """
tiernob24258a2018-10-04 18:39:49 +0200237 if topic not in self.map_topic:
238 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
239 return self.map_topic[topic].show(session, _id)
tiernoc94c3df2018-02-09 15:38:54 +0100240
tierno87006042018-10-24 12:50:20 +0200241 def get_file(self, session, topic, _id, path=None, accept_header=None):
242 """
243 Get descriptor package or artifact file content
244 :param session: contains the used login username and working project
245 :param topic: it can be: users, projects, vnfds, nsds,
246 :param _id: server id of the item
247 :param path: artifact path or "$DESCRIPTOR" or None
248 :param accept_header: Content of Accept header. Must contain applition/zip or/and text/plain
249 :return: opened file plus Accept format or raises an exception
250 """
251 if topic not in self.map_topic:
252 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
253 return self.map_topic[topic].get_file(session, _id, path, accept_header)
254
tiernob24258a2018-10-04 18:39:49 +0200255 def del_item_list(self, session, topic, _filter=None):
tiernoc94c3df2018-02-09 15:38:54 +0100256 """
257 Delete a list of items
258 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200259 :param topic: it can be: users, projects, vnfds, nsds, ...
260 :param _filter: filter of data to be applied
261 :return: The deleted list, it can be empty if no one match the _filter.
tiernoc94c3df2018-02-09 15:38:54 +0100262 """
tiernob24258a2018-10-04 18:39:49 +0200263 if topic not in self.map_topic:
264 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000265 with self.write_lock:
266 return self.map_topic[topic].delete_list(session, _filter)
tiernoc94c3df2018-02-09 15:38:54 +0100267
tiernobee3bad2019-12-05 12:26:01 +0000268 def del_item(self, session, topic, _id, not_send_msg=None):
tiernoc94c3df2018-02-09 15:38:54 +0100269 """
tiernob92094f2018-05-11 13:44:22 +0200270 Delete item by its internal id
tiernoc94c3df2018-02-09 15:38:54 +0100271 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200272 :param topic: it can be: users, projects, vnfds, nsds, ...
tiernoc94c3df2018-02-09 15:38:54 +0100273 :param _id: server id of the item
tiernobee3bad2019-12-05 12:26:01 +0000274 :param not_send_msg: If False, message will not be sent to kafka.
275 If a list, message is not sent, but content is stored in this variable so that the caller can send this
276 message using its own loop. If None, message is sent
delacruzramo01b15d32019-07-02 14:37:47 +0200277 :return: dictionary with deleted item _id. It raises exception if not found.
tiernoc94c3df2018-02-09 15:38:54 +0100278 """
tiernob24258a2018-10-04 18:39:49 +0200279 if topic not in self.map_topic:
280 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000281 with self.write_lock:
tiernobee3bad2019-12-05 12:26:01 +0000282 return self.map_topic[topic].delete(session, _id, not_send_msg=not_send_msg)
tiernoc94c3df2018-02-09 15:38:54 +0100283
tierno65ca36d2019-02-12 19:27:52 +0100284 def edit_item(self, session, topic, _id, indata=None, kwargs=None):
tiernob24258a2018-10-04 18:39:49 +0200285 """
286 Update an existing entry at database
287 :param session: contains the used login username and working project
288 :param topic: it can be: users, projects, vnfds, nsds, ...
289 :param _id: identifier to be updated
290 :param indata: data to be inserted
291 :param kwargs: used to override the indata descriptor
delacruzramo01b15d32019-07-02 14:37:47 +0200292 :return: dictionary with edited item _id, raise exception if not found.
tiernob24258a2018-10-04 18:39:49 +0200293 """
294 if topic not in self.map_topic:
295 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000296 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100297 return self.map_topic[topic].edit(session, _id, indata, kwargs)
tiernoc94c3df2018-02-09 15:38:54 +0100298
tiernod985a8d2018-10-19 14:12:28 +0200299 def upgrade_db(self, current_version, target_version):
Eduardo Sousa044f4312019-05-20 15:17:35 +0100300 if target_version not in self.map_target_version_to_int.keys():
tierno1f029d82019-06-13 22:37:04 +0000301 raise EngineException("Cannot upgrade to version '{}' with this version of code".format(target_version),
Eduardo Sousa044f4312019-05-20 15:17:35 +0100302 http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
tiernod985a8d2018-10-19 14:12:28 +0200303
Eduardo Sousa044f4312019-05-20 15:17:35 +0100304 if current_version == target_version:
305 return
306
307 target_version_int = self.map_target_version_to_int[target_version]
308
309 if not current_version:
310 # create database version
311 serial = urandom(32)
312 version_data = {
313 "_id": "version", # Always "version"
314 "version_int": 1000, # version number
315 "version": "1.0", # version text
316 "date": "2018-10-25", # version date
317 "description": "added serial", # changes in this version
318 'status': "ENABLED", # ENABLED, DISABLED (migration in process), ERROR,
319 'serial': b64encode(serial)
320 }
321 self.db.create("admin", version_data)
322 self.db.set_secret_key(serial)
323 current_version = "1.0"
324
tierno1f029d82019-06-13 22:37:04 +0000325 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 +0200326 if self.config['authentication']['backend'] == "internal":
327 self.db.del_list("roles")
328
Eduardo Sousa044f4312019-05-20 15:17:35 +0100329 version_data = {
330 "_id": "version",
tierno1f029d82019-06-13 22:37:04 +0000331 "version_int": 1002,
332 "version": "1.2",
333 "date": "2019-06-11",
Eduardo Sousa044f4312019-05-20 15:17:35 +0100334 "description": "set new format for roles_operations"
335 }
336
337 self.db.set_one("admin", {"_id": "version"}, version_data)
tierno1f029d82019-06-13 22:37:04 +0000338 current_version = "1.2"
Eduardo Sousa044f4312019-05-20 15:17:35 +0100339 # TODO add future migrations here
tiernod985a8d2018-10-19 14:12:28 +0200340
tierno4a946e42018-04-12 17:48:49 +0200341 def init_db(self, target_version='1.0'):
342 """
tiernod985a8d2018-10-19 14:12:28 +0200343 Init database if empty. If not empty it checks that database version and migrates if needed
tierno4a946e42018-04-12 17:48:49 +0200344 If empty, it creates a new user admin/admin at 'users' and a new entry at 'version'
tiernod985a8d2018-10-19 14:12:28 +0200345 :param target_version: check desired database version. Migrate to it if possible or raises exception
tierno4a946e42018-04-12 17:48:49 +0200346 :return: None if ok, exception if error or if the version is different.
347 """
tiernod985a8d2018-10-19 14:12:28 +0200348
349 version_data = self.db.get_one("admin", {"_id": "version"}, fail_on_empty=False, fail_on_more=True)
350 # check database status is ok
351 if version_data and version_data.get("status") != 'ENABLED':
tierno4a946e42018-04-12 17:48:49 +0200352 raise EngineException("Wrong database status '{}'".format(
tiernod985a8d2018-10-19 14:12:28 +0200353 version_data["status"]), HTTPStatus.INTERNAL_SERVER_ERROR)
354
355 # check version
356 db_version = None if not version_data else version_data.get("version")
357 if db_version != target_version:
358 self.upgrade_db(db_version, target_version)
359
tierno4a946e42018-04-12 17:48:49 +0200360 return