blob: 8187d25ae4b38aa5a32223a543fe115e0da5439d [file] [log] [blame]
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -07001#!/usr/bin/env python
2#
Zsolt Harasztiaccad4a2017-01-03 21:56:48 -08003# Copyright 2017 the original author or authors.
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -07004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18"""A REST protocol gateway to self-describing GRPC end-points"""
19
20import argparse
21import os
22import sys
Zsolt Haraszti3d55ffc2016-10-03 22:26:41 -070023
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070024import yaml
25from twisted.internet.defer import inlineCallbacks
26
alshabib6ca05622017-01-31 14:08:36 -080027from chameleon.utils.dockerhelpers import get_my_containers_name
28from chameleon.utils.nethelpers import get_my_primary_local_ipv4
29from chameleon.utils.structlog_setup import setup_logging
30
Zsolt Harasztia9a12dc2016-09-27 13:48:35 -070031from chameleon.grpc_client.grpc_client import GrpcClient
Zsolt Haraszti3d55ffc2016-10-03 22:26:41 -070032from chameleon.web_server.web_server import WebServer
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070033
34
35defs = dict(
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070036 config=os.environ.get('CONFIG', './chameleon.yml'),
Zsolt Haraszti58074322016-09-27 10:24:27 -070037 consul=os.environ.get('CONSUL', 'localhost:8500'),
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070038 external_host_address=os.environ.get('EXTERNAL_HOST_ADDRESS',
39 get_my_primary_local_ipv4()),
Zsolt Haraszti58074322016-09-27 10:24:27 -070040 grpc_endpoint=os.environ.get('GRPC_ENDPOINT', 'localhost:50055'),
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070041 fluentd=os.environ.get('FLUENTD', None),
Zsolt Haraszti58074322016-09-27 10:24:27 -070042 instance_id=os.environ.get('INSTANCE_ID', os.environ.get('HOSTNAME', '1')),
43 internal_host_address=os.environ.get('INTERNAL_HOST_ADDRESS',
44 get_my_primary_local_ipv4()),
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070045 rest_port=os.environ.get('REST_PORT', 8881),
Matteo Scandolo54356572017-04-24 18:52:28 -070046 work_dir=os.environ.get('WORK_DIR', '/tmp/chameleon'),
khenaidoo650ce812017-05-16 10:51:56 -040047 swagger_url=os.environ.get('SWAGGER_URL', ''),
ubuntu37975582017-07-01 17:53:19 -070048 enable_tls=os.environ.get('ENABLE_TLS',"True"),
49 key=os.environ.get('KEY','/chameleon/pki/voltha.key'),
50 cert=os.environ.get('CERT','/chameleon/pki/voltha.crt'),
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070051)
52
53
54def parse_args():
55
56 parser = argparse.ArgumentParser()
57
58 _help = ('Path to chameleon.yml config file (default: %s). '
59 'If relative, it is relative to main.py of chameleon.'
60 % defs['config'])
61 parser.add_argument('-c', '--config',
62 dest='config',
63 action='store',
64 default=defs['config'],
65 help=_help)
66
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070067 _help = '<hostname>:<port> to consul agent (default: %s)' % defs['consul']
68 parser.add_argument(
69 '-C', '--consul', dest='consul', action='store',
70 default=defs['consul'],
71 help=_help)
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070072
73 _help = ('<hostname> or <ip> at which Chameleon is reachable from outside '
74 'the cluster (default: %s)' % defs['external_host_address'])
75 parser.add_argument('-E', '--external-host-address',
76 dest='external_host_address',
77 action='store',
78 default=defs['external_host_address'],
79 help=_help)
80
81 _help = ('<hostname>:<port> to fluentd server (default: %s). (If not '
82 'specified (None), the address from the config file is used'
83 % defs['fluentd'])
84 parser.add_argument('-F', '--fluentd',
85 dest='fluentd',
86 action='store',
87 default=defs['fluentd'],
88 help=_help)
89
Zsolt Harasztia9a12dc2016-09-27 13:48:35 -070090 _help = ('gRPC end-point to connect to. It can either be a direct'
91 'definition in the form of <hostname>:<port>, or it can be an'
92 'indirect definition in the form of @<service-name> where'
93 '<service-name> is the name of the grpc service as registered'
94 'in consul (example: @voltha-grpc). (default: %s'
95 % defs['grpc_endpoint'])
96 parser.add_argument('-G', '--grpc-endpoint',
97 dest='grpc_endpoint',
98 action='store',
99 default=defs['grpc_endpoint'],
100 help=_help)
101
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -0700102 _help = ('<hostname> or <ip> at which Chameleon is reachable from inside'
103 'the cluster (default: %s)' % defs['internal_host_address'])
104 parser.add_argument('-H', '--internal-host-address',
105 dest='internal_host_address',
106 action='store',
107 default=defs['internal_host_address'],
108 help=_help)
109
110 _help = ('unique string id of this Chameleon instance (default: %s)'
111 % defs['instance_id'])
112 parser.add_argument('-i', '--instance-id',
113 dest='instance_id',
114 action='store',
115 default=defs['instance_id'],
116 help=_help)
117
118 _help = 'omit startup banner log lines'
119 parser.add_argument('-n', '--no-banner',
120 dest='no_banner',
121 action='store_true',
122 default=False,
123 help=_help)
124
125 _help = ('port number for the rest service (default: %d)'
126 % defs['rest_port'])
127 parser.add_argument('-R', '--rest-port',
128 dest='rest_port',
129 action='store',
130 type=int,
131 default=defs['rest_port'],
132 help=_help)
133
134 _help = "suppress debug and info logs"
135 parser.add_argument('-q', '--quiet',
136 dest='quiet',
137 action='count',
138 help=_help)
139
140 _help = 'enable verbose logging'
141 parser.add_argument('-v', '--verbose',
142 dest='verbose',
143 action='count',
144 help=_help)
145
Zsolt Haraszti3d55ffc2016-10-03 22:26:41 -0700146 _help = ('work dir to compile and assemble generated files (default=%s)'
147 % defs['work_dir'])
148 parser.add_argument('-w', '--work-dir',
149 dest='work_dir',
150 action='store',
151 default=defs['work_dir'],
152 help=_help)
153
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -0700154 _help = ('use docker container name as Chameleon instance id'
155 ' (overrides -i/--instance-id option)')
156 parser.add_argument('--instance-id-is-container-name',
157 dest='instance_id_is_container_name',
158 action='store_true',
159 default=False,
160 help=_help)
161
Matteo Scandolo54356572017-04-24 18:52:28 -0700162 _help = ('override swagger url (default=%s)'
163 % defs['swagger_url'])
164 parser.add_argument('-S', '--swagger-url',
165 dest='swagger_url',
166 action='store',
167 default=defs['swagger_url'],
168 help=_help)
169
ubuntu37975582017-07-01 17:53:19 -0700170 _help = ('Enable TLS or not (default: %s). '
171 % defs['enable_tls'])
172 parser.add_argument('-t', '--tls-enable',
173 dest='enable_tls',
174 action='store',
175 default=defs['enable_tls'],
176 help=_help)
177
178 _help = ('Path to chameleon ssl server private key (default: %s). '
179 'If relative, it is relative to main.py of chameleon.'
180 % defs['key'])
181 parser.add_argument('-k', '--key',
182 dest='key',
183 action='store',
184 default=defs['key'],
185 help=_help)
186
187 _help = ('Path to chameleon ssl server certificate file (default: %s). '
188 'If relative, it is relative to main.py of chameleon.'
189 % defs['cert'])
190 parser.add_argument('-f', '--cert-file',
191 dest='cert',
192 action='store',
193 default=defs['cert'],
194 help=_help)
195
Scott Baker73784f12018-02-20 12:05:35 -0800196 _help = ('Restart chameleon if the gRPC connection is disconnected.')
197 parser.add_argument('-r', '--restart',
198 dest='restart',
199 action='store_true',
200 default=False,
201 help=_help)
ubuntu37975582017-07-01 17:53:19 -0700202
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -0700203 args = parser.parse_args()
204
205 # post-processing
206
207 if args.instance_id_is_container_name:
208 args.instance_id = get_my_containers_name()
209
210 return args
211
212
213def load_config(args):
214 path = args.config
215 if path.startswith('.'):
216 dir = os.path.dirname(os.path.abspath(__file__))
217 path = os.path.join(dir, path)
218 path = os.path.abspath(path)
219 with open(path) as fd:
220 config = yaml.load(fd)
221 return config
222
223banner = r'''
224 ____ _ _
225 / ___| | |__ __ _ _ __ ___ ___ | | ___ ___ _ __
226 | | | '_ \ / _` | | '_ ` _ \ / _ \ | | / _ \ / _ \ | '_ \
227 | |___ | | | | | (_| | | | | | | | | __/ | | | __/ | (_) | | | | |
228 \____| |_| |_| \__,_| |_| |_| |_| \___| |_| \___| \___/ |_| |_|
229
230'''
Zsolt Haraszti1189c302016-12-28 15:08:23 -0800231
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -0700232def print_banner(log):
233 for line in banner.strip('\n').splitlines():
234 log.info(line)
235 log.info('(to stop: press Ctrl-C)')
236
237
238class Main(object):
239
240 def __init__(self):
241
242 self.args = args = parse_args()
243 self.config = load_config(args)
244
245 verbosity_adjust = (args.verbose or 0) - (args.quiet or 0)
246 self.log = setup_logging(self.config.get('logging', {}),
247 args.instance_id,
248 verbosity_adjust=verbosity_adjust,
249 fluentd=args.fluentd)
250
251 # components
252 self.rest_server = None
253 self.grpc_client = None
254
255 if not args.no_banner:
256 print_banner(self.log)
257
258 self.startup_components()
259
260 def start(self):
261 self.start_reactor() # will not return except Keyboard interrupt
262
Zsolt Haraszti3d55ffc2016-10-03 22:26:41 -0700263 @inlineCallbacks
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -0700264 def startup_components(self):
Zsolt Haraszti267a9062016-12-26 23:11:15 -0800265 try:
266 self.log.info('starting-internal-components')
267 args = self.args
268 self.grpc_client = yield \
Scott Baker73784f12018-02-20 12:05:35 -0800269 GrpcClient(args.consul, args.work_dir, args.grpc_endpoint, restart_on_disconnect=args.restart)
ubuntu37975582017-07-01 17:53:19 -0700270
271 if args.enable_tls == "False":
272 self.log.info('tls-disabled-through-configuration')
273 self.rest_server = yield \
274 WebServer(args.rest_port, args.work_dir, args.swagger_url,\
275 self.grpc_client).start()
276 else:
277 # If TLS is enabled, but the server key or cert is not found,
278 # then automatically disable TLS
279 if not os.path.exists(args.key) or \
280 not os.path.exists(args.cert):
281 if not os.path.exists(args.key):
282 self.log.error('key-not-found')
283 if not os.path.exists(args.cert):
284 self.log.error('cert-not-found')
285 self.log.info('disabling-tls-due-to-missing-pki-files')
286 self.rest_server = yield \
287 WebServer(args.rest_port, args.work_dir,\
288 args.swagger_url,\
289 self.grpc_client).start()
290 else:
291 self.log.info('tls-enabled')
292 self.rest_server = yield \
293 WebServer(args.rest_port, args.work_dir,\
294 args.swagger_url,\
295 self.grpc_client, args.key,\
296 args.cert).start()
297
Zsolt Haraszti267a9062016-12-26 23:11:15 -0800298 self.grpc_client.set_reconnect_callback(
299 self.rest_server.reload_generated_routes).start()
300 self.log.info('started-internal-services')
301 except Exception, e:
302 self.log.exception('startup-failed', e=e)
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -0700303
304 @inlineCallbacks
305 def shutdown_components(self):
306 """Execute before the reactor is shut down"""
307 self.log.info('exiting-on-keyboard-interrupt')
308 if self.rest_server is not None:
Zsolt Harasztidca6fa12016-11-03 16:56:17 -0700309 yield self.rest_server.stop()
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -0700310 if self.grpc_client is not None:
Zsolt Harasztidca6fa12016-11-03 16:56:17 -0700311 yield self.grpc_client.stop()
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -0700312
313 def start_reactor(self):
314 from twisted.internet import reactor
315 reactor.callWhenRunning(
316 lambda: self.log.info('twisted-reactor-started'))
317 reactor.addSystemEventTrigger('before', 'shutdown',
318 self.shutdown_components)
319 reactor.run()
320
321
322if __name__ == '__main__':
323 Main().start()