blob: dbd7737e8f8d6a6a4b8f5fbed13708d9b111d6b3 [file] [log] [blame]
tierno7edb6752016-03-21 17:37:52 +01001#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4##
5# Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U.
6# This file is part of openmano
7# All Rights Reserved.
8#
9# Licensed under the Apache License, Version 2.0 (the "License"); you may
10# not use this file except in compliance with the License. You may obtain
11# a copy of the License at
12#
13# http://www.apache.org/licenses/LICENSE-2.0
14#
15# Unless required by applicable law or agreed to in writing, software
16# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
17# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
18# License for the specific language governing permissions and limitations
19# under the License.
20#
21# For those usages not covered by the Apache License, Version 2.0 please
22# contact with: nfvlabs@tid.es
23##
24
25'''
26openmano server.
27Main program that implements a reference NFVO (Network Functions Virtualisation Orchestrator).
28It interfaces with an NFV VIM through its API and offers a northbound interface, based on REST (openmano API),
29where NFV services are offered including the creation and deletion of VNF templates, VNF instances,
30network service templates and network service instances.
31
32It loads the configuration file and launches the http_server thread that will listen requests using openmano API.
33'''
34__author__="Alfonso Tierno, Gerardo Garcia, Pablo Montes"
35__date__ ="$26-aug-2014 11:09:29$"
tierno205d1022016-07-21 11:26:22 +020036__version__="0.4.44-r482"
tiernof97fd272016-07-11 14:32:37 +020037version_date="Jul 2016"
tiernocea279c2016-07-18 12:36:49 +020038database_version="0.11" #expected database schema version
tierno7edb6752016-03-21 17:37:52 +010039
40import httpserver
41import time
tierno7edb6752016-03-21 17:37:52 +010042import sys
43import getopt
44import yaml
45import nfvo_db
46from jsonschema import validate as js_v, exceptions as js_e
tierno7edb6752016-03-21 17:37:52 +010047from openmano_schemas import config_schema
48import nfvo
tiernoae4a8d12016-07-08 12:30:39 +020049import logging
tiernof97fd272016-07-11 14:32:37 +020050import logging.handlers as log_handlers
tierno72f35a52016-07-15 13:18:30 +020051import socket
tierno7edb6752016-03-21 17:37:52 +010052
53global global_config
tiernof97fd272016-07-11 14:32:37 +020054global logger
tiernoae4a8d12016-07-08 12:30:39 +020055
56class LoadConfigurationException(Exception):
57 pass
tierno7edb6752016-03-21 17:37:52 +010058
59def load_configuration(configuration_file):
tiernoae4a8d12016-07-08 12:30:39 +020060 default_tokens ={'http_port':9090,
61 'http_host':'localhost',
62 'log_level': 'DEBUG',
63 'log_level_db': 'ERROR',
64 'log_level_vimconn': 'DEBUG',
tiernof97fd272016-07-11 14:32:37 +020065 'log_level_nfvo': 'DEBUG',
tierno72f35a52016-07-15 13:18:30 +020066 'log_socket_port': 9022,
tiernoae4a8d12016-07-08 12:30:39 +020067 }
tierno7edb6752016-03-21 17:37:52 +010068 try:
69 #Check config file exists
tierno72f35a52016-07-15 13:18:30 +020070 with open(configuration_file, 'r') as f:
71 config_str = f.read()
tierno7edb6752016-03-21 17:37:52 +010072 #Parse configuration file
tierno72f35a52016-07-15 13:18:30 +020073 config = yaml.load(config_str)
tierno7edb6752016-03-21 17:37:52 +010074 #Validate configuration file with the config_schema
tierno72f35a52016-07-15 13:18:30 +020075 js_v(config, config_schema)
tierno7edb6752016-03-21 17:37:52 +010076
tierno72f35a52016-07-15 13:18:30 +020077 #Add default values tokens
tierno7edb6752016-03-21 17:37:52 +010078 for k,v in default_tokens.items():
tierno72f35a52016-07-15 13:18:30 +020079 if k not in config:
80 config[k]=v
81 return config
tierno7edb6752016-03-21 17:37:52 +010082
tierno72f35a52016-07-15 13:18:30 +020083 except yaml.YAMLError as e:
84 error_pos = ""
85 if hasattr(e, 'problem_mark'):
86 mark = e.problem_mark
87 error_pos = " at line:{} column:{}".format(mark.line+1, mark.column+1)
88 raise LoadConfigurationException("Bad YAML format at configuration file '{file}'{pos}".format(file=configuration_file, pos=error_pos) )
89 except js_e.ValidationError as e:
90 error_pos = ""
91 if e.path:
92 error_pos=" at '" + ":".join(map(str, e.path))+"'"
93 raise LoadConfigurationException("Invalid field at configuration file '{file}'{pos} {message}".format(file=configuration_file, pos=error_pos, message=str(e)) )
94 except Exception as e:
95 raise LoadConfigurationException("Cannot load configuration file '{file}' {message}".format(file=configuration_file, message=str(e) ) )
tierno7edb6752016-03-21 17:37:52 +010096
tierno7edb6752016-03-21 17:37:52 +010097
98def console_port_iterator():
99 '''this iterator deals with the http_console_ports
100 returning the ports one by one
101 '''
102 index = 0
103 while index < len(global_config["http_console_ports"]):
104 port = global_config["http_console_ports"][index]
tiernoae4a8d12016-07-08 12:30:39 +0200105 #print("ports -> ", port)
tierno7edb6752016-03-21 17:37:52 +0100106 if type(port) is int:
107 yield port
108 else: #this is dictionary with from to keys
109 port2 = port["from"]
tiernoae4a8d12016-07-08 12:30:39 +0200110 #print("ports -> ", port, port2)
tierno7edb6752016-03-21 17:37:52 +0100111 while port2 <= port["to"]:
tiernoae4a8d12016-07-08 12:30:39 +0200112 #print("ports -> ", port, port2)
tierno7edb6752016-03-21 17:37:52 +0100113 yield port2
114 port2 += 1
115 index += 1
116
117
118def usage():
tiernoae4a8d12016-07-08 12:30:39 +0200119 print("Usage: ", sys.argv[0], "[options]")
120 print( " -v|--version: prints current version")
121 print( " -c|--config [configuration_file]: loads the configuration file (default: openmanod.cfg)")
122 print( " -h|--help: shows this help")
123 print( " -p|--port [port_number]: changes port number and overrides the port number in the configuration file (default: 9090)")
124 print( " -P|--adminport [port_number]: changes admin port number and overrides the port number in the configuration file (default: 9095)")
tierno72f35a52016-07-15 13:18:30 +0200125 #print( " -V|--vnf-repository: changes the path of the vnf-repository and overrides the path in the configuration file")
126 print( " --log-socket-host: send logs to this host")
127 print( " --log-socket-port: send logs using this port (default: 9022)")
tierno205d1022016-07-21 11:26:22 +0200128 print( " --log-file: send logs to this file")
tierno7edb6752016-03-21 17:37:52 +0100129 return
130
131if __name__=="__main__":
tierno72f35a52016-07-15 13:18:30 +0200132 #Configure logging step 1
133 hostname = socket.gethostname()
tiernoae4a8d12016-07-08 12:30:39 +0200134 #streamformat = "%(levelname)s (%(module)s:%(lineno)d) %(message)s"
tierno72f35a52016-07-15 13:18:30 +0200135 # "%(asctime)s %(name)s %(levelname)s %(filename)s:%(lineno)d %(funcName)s %(process)d: %(message)s"
136 log_formatter_complete = logging.Formatter(
137 '%(asctime)s.%(msecs)03d00Z[{host}@openmanod] %(filename)s:%(lineno)s severity:%(levelname)s logger:%(name)s log:%(message)s'.format(host=hostname),
138 datefmt='%Y-%m-%dT%H:%M:%S',
139 )
140 log_format_simple = "%(asctime)s %(levelname)s %(name)s %(filename)s:%(lineno)s %(message)s"
141 log_formatter_simple = logging.Formatter(log_format_simple, datefmt='%Y-%m-%dT%H:%M:%S')
142 logging.basicConfig(format=log_format_simple, level= logging.DEBUG)
143 logger = logging.getLogger('openmano')
tiernoae4a8d12016-07-08 12:30:39 +0200144 logger.setLevel(logging.DEBUG)
tierno72f35a52016-07-15 13:18:30 +0200145 socket_handler = None
tiernof97fd272016-07-11 14:32:37 +0200146 file_handler = None
tierno7edb6752016-03-21 17:37:52 +0100147 # Read parameters and configuration file
148 try:
tierno72f35a52016-07-15 13:18:30 +0200149 #load parameters and configuration
tierno205d1022016-07-21 11:26:22 +0200150 opts, args = getopt.getopt(sys.argv[1:], "hvc:V:p:P:", ["config", "help", "version", "port", "vnf-repository", "adminport", "log-socket-host=", "log-socket-port=", "log-file="])
tiernoae4a8d12016-07-08 12:30:39 +0200151 port=None
152 port_admin = None
153 config_file = 'openmanod.cfg'
154 vnf_repository = None
tierno205d1022016-07-21 11:26:22 +0200155 log_file = None
tierno72f35a52016-07-15 13:18:30 +0200156 log_socket_host = None
157 log_socket_port = None
tiernoae4a8d12016-07-08 12:30:39 +0200158
159 for o, a in opts:
160 if o in ("-v", "--version"):
tierno72f35a52016-07-15 13:18:30 +0200161 print ("openmanod version " + __version__ + ' ' + version_date)
162 print ("(c) Copyright Telefonica")
tiernoae4a8d12016-07-08 12:30:39 +0200163 sys.exit()
164 elif o in ("-h", "--help"):
165 usage()
166 sys.exit()
167 elif o in ("-V", "--vnf-repository"):
168 vnf_repository = a
169 elif o in ("-c", "--config"):
170 config_file = a
171 elif o in ("-p", "--port"):
172 port = a
173 elif o in ("-P", "--adminport"):
174 port_admin = a
tierno72f35a52016-07-15 13:18:30 +0200175 elif o == "--log-socket-port":
176 log_socket_port = a
177 elif o == "--log-socket-port":
178 log_socket_host = a
tierno205d1022016-07-21 11:26:22 +0200179 elif o == "--log-file":
180 log_file = a
tiernoae4a8d12016-07-08 12:30:39 +0200181 else:
182 assert False, "Unhandled option"
tiernoae4a8d12016-07-08 12:30:39 +0200183 global_config = load_configuration(config_file)
tierno7edb6752016-03-21 17:37:52 +0100184 #print global_config
tierno72f35a52016-07-15 13:18:30 +0200185 # Override parameters obtained by command line
186 if port:
187 global_config['http_port'] = port
188 if port_admin:
189 global_config['http_admin_port'] = port_admin
190 if log_socket_host:
191 global_config['log_socket_host'] = log_socket_host
192 if log_socket_port:
193 global_config['log_socket_port'] = log_socket_port
tierno205d1022016-07-21 11:26:22 +0200194 if log_file:
195 global_config['log_file'] = log_file
tierno72f35a52016-07-15 13:18:30 +0200196# if vnf_repository is not None:
197# global_config['vnf_repository'] = vnf_repository
198# else:
199# if not 'vnf_repository' in global_config:
200# logger.error( os.getcwd() )
201# global_config['vnf_repository'] = os.getcwd()+'/vnfrepo'
202# #print global_config
203# if not os.path.exists(global_config['vnf_repository']):
204# logger.error( "Creating folder vnf_repository folder: '%s'.", global_config['vnf_repository'])
205# try:
206# os.makedirs(global_config['vnf_repository'])
207# except Exception as e:
208# logger.error( "Error '%s'. Ensure the path 'vnf_repository' is properly set at %s",e.args[1], config_file)
209# exit(-1)
210
211 global_config["console_port_iterator"] = console_port_iterator
212 global_config["console_thread"]={}
213 global_config["console_ports"]={}
214
215 #Configure logging STEP 2
tiernof97fd272016-07-11 14:32:37 +0200216 if "log_host" in global_config:
tierno72f35a52016-07-15 13:18:30 +0200217 socket_handler= log_handlers.SocketHandler(global_config["log_socket_host"], global_config["log_socket_port"])
218 socket_handler.setFormatter(log_formatter_complete)
219 if global_config.get("log_socket_level") and global_config["log_socket_level"] != global_config["log_level"]:
220 socket_handler.setLevel(global_config["log_socket_level"])
tiernof97fd272016-07-11 14:32:37 +0200221 logger.addHandler(socket_handler)
tierno205d1022016-07-21 11:26:22 +0200222 #logger.addHandler(log_handlers.SysLogHandler())
tiernof97fd272016-07-11 14:32:37 +0200223 if "log_file" in global_config:
224 try:
225 file_handler= logging.handlers.RotatingFileHandler(global_config["log_file"], maxBytes=100e6, backupCount=9, delay=0)
tierno72f35a52016-07-15 13:18:30 +0200226 file_handler.setFormatter(log_formatter_simple)
tiernof97fd272016-07-11 14:32:37 +0200227 logger.addHandler(file_handler)
tierno205d1022016-07-21 11:26:22 +0200228 logger.debug("moving logs to '%s'", global_config["log_file"])
229 #remove initial strema handler
230 logging.root.removeHandler(logging.root.handlers[0])
tiernof97fd272016-07-11 14:32:37 +0200231 except IOError as e:
tierno72f35a52016-07-15 13:18:30 +0200232 raise LoadConfigurationException("Cannot open logging file '{}': {}. Check folder exist and permissions".format(global_config["log_file"], str(e)) )
tierno205d1022016-07-21 11:26:22 +0200233 #logging.basicConfig(level = getattr(logging, global_config.get('log_level',"debug")))
234 logger.setLevel(getattr(logging, global_config['log_level']))
tierno7edb6752016-03-21 17:37:52 +0100235
tierno7edb6752016-03-21 17:37:52 +0100236 # Initialize DB connection
tiernof97fd272016-07-11 14:32:37 +0200237 mydb = nfvo_db.nfvo_db(log_level=global_config["log_level_db"]);
tierno7edb6752016-03-21 17:37:52 +0100238 if mydb.connect(global_config['db_host'], global_config['db_user'], global_config['db_passwd'], global_config['db_name']) == -1:
tierno72f35a52016-07-15 13:18:30 +0200239 logger.critical("Cannot connect to database %s at %s@%s", global_config['db_name'], global_config['db_user'], global_config['db_host'])
tierno7edb6752016-03-21 17:37:52 +0100240 exit(-1)
241 r = mydb.get_db_version()
242 if r[0]<0:
tierno72f35a52016-07-15 13:18:30 +0200243 logger.critical("DATABASE is not a MANO one or it is a '0.0' version. Try to upgrade to version '%s' with './database_utils/migrate_mano_db.sh'", database_version)
tierno7edb6752016-03-21 17:37:52 +0100244 exit(-1)
245 elif r[1]!=database_version:
tierno72f35a52016-07-15 13:18:30 +0200246 logger.critical("DATABASE wrong version '%s'. Try to upgrade/downgrade to version '%s' with './database_utils/migrate_mano_db.sh'", r[1], database_version)
tierno7edb6752016-03-21 17:37:52 +0100247 exit(-1)
248
249 nfvo.global_config=global_config
250
251 httpthread = httpserver.httpserver(mydb, False, global_config['http_host'], global_config['http_port'])
252
253 httpthread.start()
254 if 'http_admin_port' in global_config:
255 httpthreadadmin = httpserver.httpserver(mydb, True, global_config['http_host'], global_config['http_admin_port'])
256 httpthreadadmin.start()
257 time.sleep(1)
tiernoae4a8d12016-07-08 12:30:39 +0200258 logger.info('Waiting for http clients')
tierno205d1022016-07-21 11:26:22 +0200259 print('Waiting for http clients')
tiernoae4a8d12016-07-08 12:30:39 +0200260 print('openmanod ready')
261 print('====================')
tierno7edb6752016-03-21 17:37:52 +0100262 time.sleep(20)
263 sys.stdout.flush()
264
265 #TODO: Interactive console must be implemented here instead of join or sleep
266
267 #httpthread.join()
268 #if 'http_admin_port' in global_config:
269 # httpthreadadmin.join()
270 while True:
271 time.sleep(86400)
272 for thread in global_config["console_thread"]:
273 thread.terminate = True
274
tierno72f35a52016-07-15 13:18:30 +0200275 except KeyboardInterrupt as e:
276 logger.info(str(e))
tierno809a7802016-07-08 13:31:24 +0200277 except SystemExit:
278 pass
tiernoae4a8d12016-07-08 12:30:39 +0200279 except getopt.GetoptError as e:
tierno72f35a52016-07-15 13:18:30 +0200280 logger.critical(str(e)) # will print something like "option -a not recognized"
tiernoae4a8d12016-07-08 12:30:39 +0200281 #usage()
282 exit(-1)
283 except LoadConfigurationException as e:
tierno72f35a52016-07-15 13:18:30 +0200284 logger.critical(str(e))
tiernoae4a8d12016-07-08 12:30:39 +0200285 exit(-1)
tierno7edb6752016-03-21 17:37:52 +0100286