blob: 5763c38cb2d32026263ad294fa7843b1f2851103 [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
24from authconn_keystone import AuthconnKeystone
tiernob24258a2018-10-04 18:39:49 +020025from base_topic import EngineException, versiontuple
tierno55ba2e62018-12-11 17:22:22 +000026from admin_topics import UserTopic, ProjectTopic, VimAccountTopic, WimAccountTopic, SdnTopic
Eduardo Sousa5c01e192019-05-08 02:35:47 +010027from admin_topics import UserTopicAuth, ProjectTopicAuth, RoleTopicAuth
Felipe Vicensb57758d2018-10-16 16:00:20 +020028from descriptor_topics import VnfdTopic, NsdTopic, PduTopic, NstTopic
Felipe Vicens07f31722018-10-29 15:16:44 +010029from instance_topics import NsrTopic, VnfrTopic, NsLcmOpTopic, NsiTopic, NsiLcmOpTopic
vijay.r35ef2f72019-04-30 17:55:49 +053030from pmjobs_topics import PmJobsTopic
tiernod985a8d2018-10-19 14:12:28 +020031from base64 import b64encode
Eduardo Sousa5c01e192019-05-08 02:35:47 +010032from os import urandom, path
tierno04dbb0e2019-01-09 16:00:24 +000033from threading import Lock
tiernoc94c3df2018-02-09 15:38:54 +010034
35__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
tierno932499c2019-01-28 17:28:10 +000036min_common_version = "0.1.16"
tierno441dbbf2018-07-10 12:52:48 +020037
38
tiernoc94c3df2018-02-09 15:38:54 +010039class Engine(object):
tiernob24258a2018-10-04 18:39:49 +020040 map_from_topic_to_class = {
41 "vnfds": VnfdTopic,
42 "nsds": NsdTopic,
Felipe Vicensb57758d2018-10-16 16:00:20 +020043 "nsts": NstTopic,
tiernob24258a2018-10-04 18:39:49 +020044 "pdus": PduTopic,
45 "nsrs": NsrTopic,
46 "vnfrs": VnfrTopic,
47 "nslcmops": NsLcmOpTopic,
48 "vim_accounts": VimAccountTopic,
tierno55ba2e62018-12-11 17:22:22 +000049 "wim_accounts": WimAccountTopic,
tiernob24258a2018-10-04 18:39:49 +020050 "sdns": SdnTopic,
51 "users": UserTopic,
52 "projects": ProjectTopic,
Felipe Vicensb57758d2018-10-16 16:00:20 +020053 "nsis": NsiTopic,
Felipe Vicens07f31722018-10-29 15:16:44 +010054 "nsilcmops": NsiLcmOpTopic
tiernob24258a2018-10-04 18:39:49 +020055 # [NEW_TOPIC]: add an entry here
vijay.r35ef2f72019-04-30 17:55:49 +053056 # "pm_jobs": PmJobsTopic will be added manually because it needs other parameters
tiernob24258a2018-10-04 18:39:49 +020057 }
tiernoc94c3df2018-02-09 15:38:54 +010058
59 def __init__(self):
tiernoc94c3df2018-02-09 15:38:54 +010060 self.db = None
61 self.fs = None
62 self.msg = None
Eduardo Sousa5c01e192019-05-08 02:35:47 +010063 self.auth = None
tiernoc94c3df2018-02-09 15:38:54 +010064 self.config = None
Eduardo Sousa5c01e192019-05-08 02:35:47 +010065 self.operations = None
tiernoc94c3df2018-02-09 15:38:54 +010066 self.logger = logging.getLogger("nbi.engine")
tiernob24258a2018-10-04 18:39:49 +020067 self.map_topic = {}
tierno04dbb0e2019-01-09 16:00:24 +000068 self.write_lock = None
tiernoc94c3df2018-02-09 15:38:54 +010069
70 def start(self, config):
71 """
72 Connect to database, filesystem storage, and messaging
73 :param config: two level dictionary with configuration. Top level should contain 'database', 'storage',
74 :return: None
75 """
76 self.config = config
tiernob24258a2018-10-04 18:39:49 +020077 # check right version of common
78 if versiontuple(common_version) < versiontuple(min_common_version):
79 raise EngineException("Not compatible osm/common version '{}'. Needed '{}' or higher".format(
80 common_version, min_common_version))
81
tiernoc94c3df2018-02-09 15:38:54 +010082 try:
83 if not self.db:
84 if config["database"]["driver"] == "mongo":
85 self.db = dbmongo.DbMongo()
86 self.db.db_connect(config["database"])
87 elif config["database"]["driver"] == "memory":
88 self.db = dbmemory.DbMemory()
89 self.db.db_connect(config["database"])
90 else:
91 raise EngineException("Invalid configuration param '{}' at '[database]':'driver'".format(
92 config["database"]["driver"]))
93 if not self.fs:
94 if config["storage"]["driver"] == "local":
95 self.fs = fslocal.FsLocal()
96 self.fs.fs_connect(config["storage"])
97 else:
98 raise EngineException("Invalid configuration param '{}' at '[storage]':'driver'".format(
99 config["storage"]["driver"]))
100 if not self.msg:
101 if config["message"]["driver"] == "local":
102 self.msg = msglocal.MsgLocal()
103 self.msg.connect(config["message"])
104 elif config["message"]["driver"] == "kafka":
105 self.msg = msgkafka.MsgKafka()
106 self.msg.connect(config["message"])
107 else:
108 raise EngineException("Invalid configuration param '{}' at '[message]':'driver'".format(
tierno932499c2019-01-28 17:28:10 +0000109 config["message"]["driver"]))
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100110 if not self.auth:
111 if config["authentication"]["backend"] == "keystone":
112 self.auth = AuthconnKeystone(config["authentication"])
113 if not self.operations:
114 if "resources_to_operations" in config["rbac"]:
115 resources_to_operations_file = config["rbac"]["resources_to_operations"]
116 else:
117 possible_paths = (
118 __file__[:__file__.rfind("engine.py")] + "resources_to_operations.yml",
119 "./resources_to_operations.yml"
120 )
121 for config_file in possible_paths:
122 if path.isfile(config_file):
123 resources_to_operations_file = config_file
124 break
125 if not resources_to_operations_file:
126 raise EngineException("Invalid permission configuration: resources_to_operations file missing")
127
128 with open(resources_to_operations_file, 'r') as f:
129 resources_to_operations = yaml.load(f)
130
131 self.operations = []
132
133 for _, value in resources_to_operations["resources_to_operations"].items():
134 if value not in self.operations:
135 self.operations += value
136
137 if config["authentication"]["backend"] == "keystone":
138 self.map_from_topic_to_class["users"] = UserTopicAuth
139 self.map_from_topic_to_class["projects"] = ProjectTopicAuth
140 self.map_from_topic_to_class["roles"] = RoleTopicAuth
tiernob24258a2018-10-04 18:39:49 +0200141
tierno04dbb0e2019-01-09 16:00:24 +0000142 self.write_lock = Lock()
tiernob24258a2018-10-04 18:39:49 +0200143 # create one class per topic
144 for topic, topic_class in self.map_from_topic_to_class.items():
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100145 if self.auth and topic_class in (UserTopicAuth, ProjectTopicAuth):
146 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth)
147 elif self.auth and topic_class == RoleTopicAuth:
148 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth,
149 self.operations)
150 else:
151 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg)
Eduardo Sousa225200d2019-05-22 15:57:17 +0100152
vijay.r35ef2f72019-04-30 17:55:49 +0530153 self.map_topic["pm_jobs"] = PmJobsTopic(config["prometheus"].get("host"), config["prometheus"].get("port"))
tiernoc94c3df2018-02-09 15:38:54 +0100154 except (DbException, FsException, MsgException) as e:
155 raise EngineException(str(e), http_code=e.http_code)
156
157 def stop(self):
158 try:
159 if self.db:
160 self.db.db_disconnect()
161 if self.fs:
162 self.fs.fs_disconnect()
tierno932499c2019-01-28 17:28:10 +0000163 if self.msg:
164 self.msg.disconnect()
tierno04dbb0e2019-01-09 16:00:24 +0000165 self.write_lock = None
tiernoc94c3df2018-02-09 15:38:54 +0100166 except (DbException, FsException, MsgException) as e:
167 raise EngineException(str(e), http_code=e.http_code)
168
tierno65ca36d2019-02-12 19:27:52 +0100169 def new_item(self, rollback, session, topic, indata=None, kwargs=None, headers=None):
tiernoc94c3df2018-02-09 15:38:54 +0100170 """
tiernof27c79b2018-03-12 17:08:42 +0100171 Creates a new entry into database. For nsds and vnfds it creates an almost empty DISABLED entry,
172 that must be completed with a call to method upload_content
tiernob24258a2018-10-04 18:39:49 +0200173 :param rollback: list to append created items at database in case a rollback must to be done
tierno65ca36d2019-02-12 19:27:52 +0100174 :param session: contains the used login username and working project, force to avoid checkins, public
tiernob24258a2018-10-04 18:39:49 +0200175 :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds
tiernoc94c3df2018-02-09 15:38:54 +0100176 :param indata: data to be inserted
177 :param kwargs: used to override the indata descriptor
178 :param headers: http request headers
tierno0ffaa992018-05-09 13:21:56 +0200179 :return: _id: identity of the inserted data.
tiernoc94c3df2018-02-09 15:38:54 +0100180 """
tiernob24258a2018-10-04 18:39:49 +0200181 if topic not in self.map_topic:
182 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000183 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100184 return self.map_topic[topic].new(rollback, session, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100185
tierno65ca36d2019-02-12 19:27:52 +0100186 def upload_content(self, session, topic, _id, indata, kwargs, headers):
tierno65acb4d2018-04-06 16:42:40 +0200187 """
tiernob24258a2018-10-04 18:39:49 +0200188 Upload content for an already created entry (_id)
tierno65acb4d2018-04-06 16:42:40 +0200189 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200190 :param topic: it can be: users, projects, vnfds, nsds,
191 :param _id: server id of the item
192 :param indata: data to be inserted
tierno65acb4d2018-04-06 16:42:40 +0200193 :param kwargs: used to override the indata descriptor
tiernob24258a2018-10-04 18:39:49 +0200194 :param headers: http request headers
tiernob24258a2018-10-04 18:39:49 +0200195 :return: _id: identity of the inserted data.
tierno65acb4d2018-04-06 16:42:40 +0200196 """
tiernob24258a2018-10-04 18:39:49 +0200197 if topic not in self.map_topic:
198 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000199 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100200 return self.map_topic[topic].upload_content(session, _id, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100201
tiernob24258a2018-10-04 18:39:49 +0200202 def get_item_list(self, session, topic, filter_q=None):
tiernoc94c3df2018-02-09 15:38:54 +0100203 """
204 Get a list of items
205 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200206 :param topic: it can be: users, projects, vnfds, nsds, ...
207 :param filter_q: filter of data to be applied
208 :return: The list, it can be empty if no one match the filter_q.
tiernoc94c3df2018-02-09 15:38:54 +0100209 """
tiernob24258a2018-10-04 18:39:49 +0200210 if topic not in self.map_topic:
211 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
212 return self.map_topic[topic].list(session, filter_q)
tiernof27c79b2018-03-12 17:08:42 +0100213
tiernob24258a2018-10-04 18:39:49 +0200214 def get_item(self, session, topic, _id):
tiernoc94c3df2018-02-09 15:38:54 +0100215 """
tiernob24258a2018-10-04 18:39:49 +0200216 Get complete information on an item
tiernoc94c3df2018-02-09 15:38:54 +0100217 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200218 :param topic: it can be: users, projects, vnfds, nsds,
tiernoc94c3df2018-02-09 15:38:54 +0100219 :param _id: server id of the item
220 :return: dictionary, raise exception if not found.
221 """
tiernob24258a2018-10-04 18:39:49 +0200222 if topic not in self.map_topic:
223 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
224 return self.map_topic[topic].show(session, _id)
tiernoc94c3df2018-02-09 15:38:54 +0100225
tierno87006042018-10-24 12:50:20 +0200226 def get_file(self, session, topic, _id, path=None, accept_header=None):
227 """
228 Get descriptor package or artifact file content
229 :param session: contains the used login username and working project
230 :param topic: it can be: users, projects, vnfds, nsds,
231 :param _id: server id of the item
232 :param path: artifact path or "$DESCRIPTOR" or None
233 :param accept_header: Content of Accept header. Must contain applition/zip or/and text/plain
234 :return: opened file plus Accept format or raises an exception
235 """
236 if topic not in self.map_topic:
237 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
238 return self.map_topic[topic].get_file(session, _id, path, accept_header)
239
tiernob24258a2018-10-04 18:39:49 +0200240 def del_item_list(self, session, topic, _filter=None):
tiernoc94c3df2018-02-09 15:38:54 +0100241 """
242 Delete a list of items
243 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200244 :param topic: it can be: users, projects, vnfds, nsds, ...
245 :param _filter: filter of data to be applied
246 :return: The deleted list, it can be empty if no one match the _filter.
tiernoc94c3df2018-02-09 15:38:54 +0100247 """
tiernob24258a2018-10-04 18:39:49 +0200248 if topic not in self.map_topic:
249 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000250 with self.write_lock:
251 return self.map_topic[topic].delete_list(session, _filter)
tiernoc94c3df2018-02-09 15:38:54 +0100252
tierno65ca36d2019-02-12 19:27:52 +0100253 def del_item(self, session, topic, _id):
tiernoc94c3df2018-02-09 15:38:54 +0100254 """
tiernob92094f2018-05-11 13:44:22 +0200255 Delete item by its internal id
tiernoc94c3df2018-02-09 15:38:54 +0100256 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200257 :param topic: it can be: users, projects, vnfds, nsds, ...
tiernoc94c3df2018-02-09 15:38:54 +0100258 :param _id: server id of the item
tierno09c073e2018-04-26 13:36:48 +0200259 :return: dictionary with deleted item _id. It raises exception if not found.
tiernoc94c3df2018-02-09 15:38:54 +0100260 """
tiernob24258a2018-10-04 18:39:49 +0200261 if topic not in self.map_topic:
262 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000263 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100264 return self.map_topic[topic].delete(session, _id)
tiernoc94c3df2018-02-09 15:38:54 +0100265
tierno65ca36d2019-02-12 19:27:52 +0100266 def edit_item(self, session, topic, _id, indata=None, kwargs=None):
tiernob24258a2018-10-04 18:39:49 +0200267 """
268 Update an existing entry at database
269 :param session: contains the used login username and working project
270 :param topic: it can be: users, projects, vnfds, nsds, ...
271 :param _id: identifier to be updated
272 :param indata: data to be inserted
273 :param kwargs: used to override the indata descriptor
tiernob24258a2018-10-04 18:39:49 +0200274 :return: dictionary, raise exception if not found.
275 """
276 if topic not in self.map_topic:
277 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000278 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100279 return self.map_topic[topic].edit(session, _id, indata, kwargs)
tiernoc94c3df2018-02-09 15:38:54 +0100280
delacruzramoc061f562019-04-05 11:00:02 +0200281 def create_admin_project(self):
282 """
283 Creates a new project 'admin' into database if database is empty. Useful for initialization.
284 :return: _id identity of the inserted data, or None
285 """
286
287 projects = self.db.get_one("projects", fail_on_empty=False, fail_on_more=False)
288 if projects:
289 return None
290 project_desc = {"name": "admin"}
tierno65ca36d2019-02-12 19:27:52 +0100291 fake_session = {"project_id": "admin", "username": "admin", "admin": True, "force": True, "public": None}
delacruzramoc061f562019-04-05 11:00:02 +0200292 rollback_list = []
tierno65ca36d2019-02-12 19:27:52 +0100293 _id = self.map_topic["projects"].new(rollback_list, fake_session, project_desc)
delacruzramoc061f562019-04-05 11:00:02 +0200294 return _id
295
296 def create_admin_user(self):
tiernoc94c3df2018-02-09 15:38:54 +0100297 """
tierno4a946e42018-04-12 17:48:49 +0200298 Creates a new user admin/admin into database if database is empty. Useful for initialization
299 :return: _id identity of the inserted data, or None
tiernoc94c3df2018-02-09 15:38:54 +0100300 """
301 users = self.db.get_one("users", fail_on_empty=False, fail_on_more=False)
302 if users:
tierno4a946e42018-04-12 17:48:49 +0200303 return None
304 # raise EngineException("Unauthorized. Database users is not empty", HTTPStatus.UNAUTHORIZED)
tiernob24258a2018-10-04 18:39:49 +0200305 user_desc = {"username": "admin", "password": "admin", "projects": ["admin"]}
tierno65ca36d2019-02-12 19:27:52 +0100306 fake_session = {"project_id": "admin", "username": "admin", "admin": True, "force": True, "public": None}
tiernob24258a2018-10-04 18:39:49 +0200307 roolback_list = []
tierno65ca36d2019-02-12 19:27:52 +0100308 _id = self.map_topic["users"].new(roolback_list, fake_session, user_desc)
tiernoc94c3df2018-02-09 15:38:54 +0100309 return _id
310
delacruzramoc061f562019-04-05 11:00:02 +0200311 def create_admin(self):
312 """
313 Creates new 'admin' user and project into database if database is empty. Useful for initialization.
314 :return: _id identity of the inserted data, or None
315 """
316 project_id = self.create_admin_project()
317 user_id = self.create_admin_user()
318 if not project_id and not user_id:
319 return None
320 else:
321 return {'project_id': project_id, 'user_id': user_id}
322
tiernod985a8d2018-10-19 14:12:28 +0200323 def upgrade_db(self, current_version, target_version):
324 if not target_version or current_version == target_version:
325 return
326 if target_version == '1.0':
327 if not current_version:
328 # create database version
329 serial = urandom(32)
330 version_data = {
331 "_id": 'version', # Always 'version'
332 "version_int": 1000, # version number
333 "version": '1.0', # version text
334 "date": "2018-10-25", # version date
335 "description": "added serial", # changes in this version
336 'status': 'ENABLED', # ENABLED, DISABLED (migration in process), ERROR,
337 'serial': b64encode(serial)
338 }
339 self.db.create("admin", version_data)
340 self.db.set_secret_key(serial)
tiernobee085c2018-12-12 17:03:04 +0000341 return
tiernod985a8d2018-10-19 14:12:28 +0200342 # TODO add future migrations here
343
344 raise EngineException("Wrong database version '{}'. Expected '{}'"
345 ". It cannot be up/down-grade".format(current_version, target_version),
346 http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
347
tierno4a946e42018-04-12 17:48:49 +0200348 def init_db(self, target_version='1.0'):
349 """
tiernod985a8d2018-10-19 14:12:28 +0200350 Init database if empty. If not empty it checks that database version and migrates if needed
tierno4a946e42018-04-12 17:48:49 +0200351 If empty, it creates a new user admin/admin at 'users' and a new entry at 'version'
tiernod985a8d2018-10-19 14:12:28 +0200352 :param target_version: check desired database version. Migrate to it if possible or raises exception
tierno4a946e42018-04-12 17:48:49 +0200353 :return: None if ok, exception if error or if the version is different.
354 """
tiernod985a8d2018-10-19 14:12:28 +0200355
356 version_data = self.db.get_one("admin", {"_id": "version"}, fail_on_empty=False, fail_on_more=True)
357 # check database status is ok
358 if version_data and version_data.get("status") != 'ENABLED':
tierno4a946e42018-04-12 17:48:49 +0200359 raise EngineException("Wrong database status '{}'".format(
tiernod985a8d2018-10-19 14:12:28 +0200360 version_data["status"]), HTTPStatus.INTERNAL_SERVER_ERROR)
361
362 # check version
363 db_version = None if not version_data else version_data.get("version")
364 if db_version != target_version:
365 self.upgrade_db(db_version, target_version)
366
367 # create user admin if not exist
368 self.create_admin()
tierno4a946e42018-04-12 17:48:49 +0200369 return