blob: 3acbedfa429f36ec3829f374fbc41c1591378b9f [file] [log] [blame]
tiernof7aa8c42016-09-06 16:43:04 +02001#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4##
5# Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U.
tierno9a61c6b2016-09-08 10:57:02 +02006# This file is part of openvim
tiernof7aa8c42016-09-06 16:43:04 +02007# 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'''
26This is the main program of openvim, it reads the configuration
27and launches the rest of threads: http clients, openflow controller
28and host controllers
29'''
30
mirabal9e194592017-02-17 11:03:25 +010031__author__ = "Alfonso Tierno"
32__date__ = "$10-jul-2014 12:07:15$"
mirabal50a052f2017-03-27 18:08:07 +020033
tiernof7aa8c42016-09-06 16:43:04 +020034
35import httpserver
tiernof0537372016-09-08 08:17:37 +020036import auxiliary_functions as af
tiernof7aa8c42016-09-06 16:43:04 +020037import sys
38import getopt
39import time
tiernof7aa8c42016-09-06 16:43:04 +020040import yaml
41import os
42from jsonschema import validate as js_v, exceptions as js_e
tiernof7aa8c42016-09-06 16:43:04 +020043from vim_schema import config_schema
44import logging
tiernof13617a2016-09-08 11:42:10 +020045import logging.handlers as log_handlers
tiernof13617a2016-09-08 11:42:10 +020046import socket
tierno57f7bda2017-02-09 12:01:55 +010047import ovim
tiernof7aa8c42016-09-06 16:43:04 +020048
49global config_dic
50global logger
51logger = logging.getLogger('vim')
52
tiernof13617a2016-09-08 11:42:10 +020053class LoadConfigurationException(Exception):
54 pass
55
tiernof7aa8c42016-09-06 16:43:04 +020056def load_configuration(configuration_file):
57 default_tokens ={'http_port':9080, 'http_host':'localhost',
58 'of_controller_nets_with_same_vlan':True,
59 'image_path':'/opt/VNF/images',
60 'network_vlan_range_start':1000,
61 'network_vlan_range_end': 4096,
62 'log_level': "DEBUG",
63 'log_level_db': "ERROR",
64 'log_level_of': 'ERROR',
Mirabal7256d6b2016-12-15 10:51:19 +000065 'bridge_ifaces': {},
66 'network_type': 'ovs',
Mirabale9317ff2017-01-18 16:10:58 +000067 'ovs_controller_user': 'osm_dhcp',
68 'ovs_controller_file_path': '/var/lib/',
tiernof7aa8c42016-09-06 16:43:04 +020069 }
70 try:
71 #First load configuration from configuration file
72 #Check config file exists
73 if not os.path.isfile(configuration_file):
74 return (False, "Configuration file '"+configuration_file+"' does not exists")
75
76 #Read and parse file
77 (return_status, code) = af.read_file(configuration_file)
78 if not return_status:
79 return (return_status, "Error loading configuration file '"+configuration_file+"': "+code)
80 try:
81 config = yaml.load(code)
82 except yaml.YAMLError, exc:
83 error_pos = ""
84 if hasattr(exc, 'problem_mark'):
85 mark = exc.problem_mark
86 error_pos = " at position: (%s:%s)" % (mark.line+1, mark.column+1)
87 return (False, "Error loading configuration file '"+configuration_file+"'"+error_pos+": content format error: Failed to parse yaml format")
88
89
90 try:
91 js_v(config, config_schema)
92 except js_e.ValidationError, exc:
93 error_pos = ""
94 if len(exc.path)>0: error_pos=" at '" + ":".join(map(str, exc.path))+"'"
95 return False, "Error loading configuration file '"+configuration_file+"'"+error_pos+": "+exc.message
96
97
98 #Check default values tokens
99 for k,v in default_tokens.items():
100 if k not in config: config[k]=v
101 #Check vlan ranges
102 if config["network_vlan_range_start"]+10 >= config["network_vlan_range_end"]:
103 return False, "Error invalid network_vlan_range less than 10 elements"
104
105 except Exception,e:
106 return (False, "Error loading configuration file '"+configuration_file+"': "+str(e))
107 return (True, config)
108
tiernof7aa8c42016-09-06 16:43:04 +0200109def usage():
110 print "Usage: ", sys.argv[0], "[options]"
111 print " -v|--version: prints current version"
tiernoa36d64d2016-09-14 15:58:40 +0200112 print " -c|--config FILE: loads the configuration file (default: openvimd.cfg)"
tiernof7aa8c42016-09-06 16:43:04 +0200113 print " -h|--help: shows this help"
tiernoa36d64d2016-09-14 15:58:40 +0200114 print " -p|--port PORT: changes port number and overrides the port number in the configuration file (default: 908)"
115 print " -P|--adminport PORT: changes admin port number and overrides the port number in the configuration file (default: not listen)"
116 print " --dbname NAME: changes db_name and overrides the db_name in the configuration file"
tiernof13617a2016-09-08 11:42:10 +0200117 #print( " --log-socket-host HOST: send logs to this host")
118 #print( " --log-socket-port PORT: send logs using this port (default: 9022)")
119 print( " --log-file FILE: send logs to this file")
tiernof7aa8c42016-09-06 16:43:04 +0200120 return
121
122
123if __name__=="__main__":
tiernof13617a2016-09-08 11:42:10 +0200124 hostname = socket.gethostname()
tiernof7aa8c42016-09-06 16:43:04 +0200125 #streamformat = "%(levelname)s (%(module)s:%(lineno)d) %(message)s"
tiernof13617a2016-09-08 11:42:10 +0200126 log_formatter_complete = logging.Formatter(
127 '%(asctime)s.%(msecs)03d00Z[{host}@openmanod] %(filename)s:%(lineno)s severity:%(levelname)s logger:%(name)s log:%(message)s'.format(host=hostname),
128 datefmt='%Y-%m-%dT%H:%M:%S',
129 )
130 log_format_simple = "%(asctime)s %(levelname)s %(name)s %(filename)s:%(lineno)s %(message)s"
131 log_formatter_simple = logging.Formatter(log_format_simple, datefmt='%Y-%m-%dT%H:%M:%S')
132 logging.basicConfig(format=log_format_simple, level= logging.DEBUG)
tierno57f7bda2017-02-09 12:01:55 +0100133 logger = logging.getLogger('openvim')
tiernof7aa8c42016-09-06 16:43:04 +0200134 logger.setLevel(logging.DEBUG)
135 try:
tiernoa36d64d2016-09-14 15:58:40 +0200136 opts, args = getopt.getopt(sys.argv[1:], "hvc:p:P:", ["config=", "help", "version", "port=", "adminport=", "log-file=", "dbname="])
tiernof7aa8c42016-09-06 16:43:04 +0200137 except getopt.GetoptError, err:
138 # print help information and exit:
139 logger.error("%s. Type -h for help", err) # will print something like "option -a not recognized"
140 #usage()
141 sys.exit(-2)
142
143 port=None
144 port_admin = None
145 config_file = 'openvimd.cfg'
tiernof13617a2016-09-08 11:42:10 +0200146 log_file = None
tiernoa36d64d2016-09-14 15:58:40 +0200147 db_name = None
tiernof7aa8c42016-09-06 16:43:04 +0200148
149 for o, a in opts:
150 if o in ("-v", "--version"):
mirabal50a052f2017-03-27 18:08:07 +0200151 print "openvimd version", ovim.ovim.get_version(), ovim.ovim.get_version_date()
tiernof7aa8c42016-09-06 16:43:04 +0200152 print "(c) Copyright Telefonica"
153 sys.exit(0)
154 elif o in ("-h", "--help"):
155 usage()
156 sys.exit(0)
157 elif o in ("-c", "--config"):
158 config_file = a
159 elif o in ("-p", "--port"):
160 port = a
161 elif o in ("-P", "--adminport"):
162 port_admin = a
tiernoa36d64d2016-09-14 15:58:40 +0200163 elif o in ("-P", "--dbname"):
164 db_name = a
tiernof13617a2016-09-08 11:42:10 +0200165 elif o == "--log-file":
166 log_file = a
tiernof7aa8c42016-09-06 16:43:04 +0200167 else:
168 assert False, "Unhandled option"
169
170
tierno57f7bda2017-02-09 12:01:55 +0100171 engine = None
tierno56c0c282017-02-10 14:52:55 +0100172 http_thread = None
173 http_thread_admin = None
174
tiernof7aa8c42016-09-06 16:43:04 +0200175 try:
176 #Load configuration file
177 r, config_dic = load_configuration(config_file)
178 #print config_dic
179 if not r:
180 logger.error(config_dic)
181 config_dic={}
182 exit(-1)
tiernof13617a2016-09-08 11:42:10 +0200183 if log_file:
184 try:
185 file_handler= logging.handlers.RotatingFileHandler(log_file, maxBytes=100e6, backupCount=9, delay=0)
186 file_handler.setFormatter(log_formatter_simple)
187 logger.addHandler(file_handler)
188 #logger.debug("moving logs to '%s'", global_config["log_file"])
189 #remove initial stream handler
190 logging.root.removeHandler(logging.root.handlers[0])
191 print ("logging on '{}'".format(log_file))
192 except IOError as e:
193 raise LoadConfigurationException("Cannot open logging file '{}': {}. Check folder exist and permissions".format(log_file, str(e)) )
194
tiernof7aa8c42016-09-06 16:43:04 +0200195 logger.setLevel(getattr(logging, config_dic['log_level']))
tiernof13617a2016-09-08 11:42:10 +0200196 logger.critical("Starting openvim server command: '%s'", sys.argv[0])
tiernof7aa8c42016-09-06 16:43:04 +0200197 #override parameters obtained by command line
tiernoa36d64d2016-09-14 15:58:40 +0200198 if port:
199 config_dic['http_port'] = port
200 if port_admin:
201 config_dic['http_admin_port'] = port_admin
202 if db_name:
203 config_dic['db_name'] = db_name
tiernof7aa8c42016-09-06 16:43:04 +0200204
205 #check mode
206 if 'mode' not in config_dic:
207 config_dic['mode'] = 'normal'
208 #allow backward compatibility of test_mode option
209 if 'test_mode' in config_dic and config_dic['test_mode']==True:
210 config_dic['mode'] = 'test'
Mirabal7256d6b2016-12-15 10:51:19 +0000211 if config_dic['mode'] == 'development' and config_dic['network_type'] == 'bridge' and \
212 ( 'development_bridge' not in config_dic or config_dic['development_bridge'] not in config_dic.get("bridge_ifaces",None) ):
tiernof7aa8c42016-09-06 16:43:04 +0200213 logger.error("'%s' is not a valid 'development_bridge', not one of the 'bridge_ifaces'", config_file)
214 exit(-1)
Mirabale9317ff2017-01-18 16:10:58 +0000215
tiernof7aa8c42016-09-06 16:43:04 +0200216 if config_dic['mode'] != 'normal':
217 print '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
218 print "!! Warning, openvimd in TEST mode '%s'" % config_dic['mode']
219 print '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
mirabal50a052f2017-03-27 18:08:07 +0200220 config_dic['version'] = ovim.get_version()
tiernof7aa8c42016-09-06 16:43:04 +0200221
mirabal50a052f2017-03-27 18:08:07 +0200222 config_dic["database_version"] = ovim.ovim.get_database_version()
tierno57f7bda2017-02-09 12:01:55 +0100223 config_dic["logger_name"] = "openvim"
tiernof7aa8c42016-09-06 16:43:04 +0200224
tierno57f7bda2017-02-09 12:01:55 +0100225 engine = ovim.ovim(config_dic)
226 engine.start_service()
tiernof7aa8c42016-09-06 16:43:04 +0200227
tiernof7aa8c42016-09-06 16:43:04 +0200228
229 #Create thread to listen to web requests
tierno57f7bda2017-02-09 12:01:55 +0100230 http_thread = httpserver.httpserver(engine, 'http', config_dic['http_host'], config_dic['http_port'], False, config_dic)
tiernof7aa8c42016-09-06 16:43:04 +0200231 http_thread.start()
232
tierno57f7bda2017-02-09 12:01:55 +0100233 if 'http_admin_port' in config_dic:
234 engine2 = ovim.ovim(config_dic)
235 http_thread_admin = httpserver.httpserver(engine2, 'http-admin', config_dic['http_host'], config_dic['http_admin_port'], True)
tiernof7aa8c42016-09-06 16:43:04 +0200236 http_thread_admin.start()
237 else:
238 http_thread_admin = None
239 time.sleep(1)
240 logger.info('Waiting for http clients')
241 print ('openvimd ready')
242 print ('====================')
243 sys.stdout.flush()
244
245 #TODO: Interactive console would be nice here instead of join or sleep
246
247 r="help" #force print help at the beginning
248 while True:
249 if r=='exit':
250 break
251 elif r!='':
252 print "type 'exit' for terminate"
253 r = raw_input('> ')
254
255 except (KeyboardInterrupt, SystemExit):
256 pass
tiernof13617a2016-09-08 11:42:10 +0200257 except SystemExit:
258 pass
259 except getopt.GetoptError as e:
260 logger.critical(str(e)) # will print something like "option -a not recognized"
261 #usage()
262 exit(-1)
263 except LoadConfigurationException as e:
264 logger.critical(str(e))
265 exit(-1)
tierno57f7bda2017-02-09 12:01:55 +0100266 except ovim.ovimException as e:
267 logger.critical(str(e))
268 exit(-1)
tiernof7aa8c42016-09-06 16:43:04 +0200269
270 logger.info('Exiting openvimd')
tierno57f7bda2017-02-09 12:01:55 +0100271 if engine:
272 engine.stop_service()
tierno56c0c282017-02-10 14:52:55 +0100273 if http_thread:
274 http_thread.join(1)
275 if http_thread_admin:
276 http_thread_admin.join(1)
tierno57f7bda2017-02-09 12:01:55 +0100277
tiernof7aa8c42016-09-06 16:43:04 +0200278 logger.debug( "bye!")
279 exit()
280