blob: f2d0a1e61f3bd0acfe153f1bf9087edd6376963f [file] [log] [blame]
Adam Israel5e08a0e2018-09-06 19:22:47 -04001import asyncio
Adam Israelc3e6c2e2018-03-01 09:31:50 -05002import logging
3import os
4import os.path
5import re
Adam Israelfa329072018-09-14 11:26:13 -04006import shlex
Adam Israelc3e6c2e2018-03-01 09:31:50 -05007import ssl
Adam Israelfa329072018-09-14 11:26:13 -04008import subprocess
Adam Israelc3e6c2e2018-03-01 09:31:50 -05009import sys
Adam Israel5e08a0e2018-09-06 19:22:47 -040010# import time
Adam Israelc3e6c2e2018-03-01 09:31:50 -050011
12# FIXME: this should load the juju inside or modules without having to
13# explicitly install it. Check why it's not working.
14# Load our subtree of the juju library
15path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
16path = os.path.join(path, "modules/libjuju/")
17if path not in sys.path:
18 sys.path.insert(1, path)
19
20from juju.controller import Controller
Adam Israel5e08a0e2018-09-06 19:22:47 -040021from juju.model import ModelObserver
Adam Israel136186e2018-09-14 12:01:12 -040022from juju.errors import JujuAPIError
Adam Israelc3e6c2e2018-03-01 09:31:50 -050023
24# We might need this to connect to the websocket securely, but test and verify.
25try:
26 ssl._create_default_https_context = ssl._create_unverified_context
27except AttributeError:
28 # Legacy Python doesn't verify by default (see pep-0476)
29 # https://www.python.org/dev/peps/pep-0476/
30 pass
31
32
33# Custom exceptions
34class JujuCharmNotFound(Exception):
35 """The Charm can't be found or is not readable."""
36
37
38class JujuApplicationExists(Exception):
39 """The Application already exists."""
40
Adam Israelb5214512018-05-03 10:00:04 -040041
Adam Israel88a49632018-04-10 13:04:57 -060042class N2VCPrimitiveExecutionFailed(Exception):
43 """Something failed while attempting to execute a primitive."""
44
Adam Israelc3e6c2e2018-03-01 09:31:50 -050045
46# Quiet the debug logging
47logging.getLogger('websockets.protocol').setLevel(logging.INFO)
48logging.getLogger('juju.client.connection').setLevel(logging.WARN)
49logging.getLogger('juju.model').setLevel(logging.WARN)
50logging.getLogger('juju.machine').setLevel(logging.WARN)
51
Adam Israelb5214512018-05-03 10:00:04 -040052
Adam Israelc3e6c2e2018-03-01 09:31:50 -050053class VCAMonitor(ModelObserver):
54 """Monitor state changes within the Juju Model."""
Adam Israelc3e6c2e2018-03-01 09:31:50 -050055 log = None
56 ns_name = None
Adam Israel28a43c02018-04-23 16:04:54 -040057 applications = {}
Adam Israelc3e6c2e2018-03-01 09:31:50 -050058
Adam Israel28a43c02018-04-23 16:04:54 -040059 def __init__(self, ns_name):
Adam Israelc3e6c2e2018-03-01 09:31:50 -050060 self.log = logging.getLogger(__name__)
61
62 self.ns_name = ns_name
Adam Israel28a43c02018-04-23 16:04:54 -040063
64 def AddApplication(self, application_name, callback, *callback_args):
65 if application_name not in self.applications:
66 self.applications[application_name] = {
67 'callback': callback,
68 'callback_args': callback_args
69 }
70
71 def RemoveApplication(self, application_name):
72 if application_name in self.applications:
73 del self.applications[application_name]
Adam Israelc3e6c2e2018-03-01 09:31:50 -050074
75 async def on_change(self, delta, old, new, model):
76 """React to changes in the Juju model."""
77
78 if delta.entity == "unit":
Adam Israel28a43c02018-04-23 16:04:54 -040079 # Ignore change events from other applications
80 if delta.data['application'] not in self.applications.keys():
81 return
82
Adam Israelc3e6c2e2018-03-01 09:31:50 -050083 try:
Adam Israel28a43c02018-04-23 16:04:54 -040084
85 application_name = delta.data['application']
86
87 callback = self.applications[application_name]['callback']
Adam Israel5e08a0e2018-09-06 19:22:47 -040088 callback_args = \
89 self.applications[application_name]['callback_args']
Adam Israel28a43c02018-04-23 16:04:54 -040090
Adam Israelc3e6c2e2018-03-01 09:31:50 -050091 if old and new:
Adam Israelfc511ed2018-09-21 14:20:55 +020092 # Fire off a callback with the application state
93 if callback:
94 callback(
95 self.ns_name,
96 delta.data['application'],
97 new.workload_status,
98 new.workload_status_message,
99 *callback_args)
Adam Israel28a43c02018-04-23 16:04:54 -0400100
101 if old and not new:
102 # This is a charm being removed
103 if callback:
104 callback(
105 self.ns_name,
106 delta.data['application'],
107 "removed",
Adam Israel9562f432018-05-09 13:55:28 -0400108 "",
Adam Israel28a43c02018-04-23 16:04:54 -0400109 *callback_args)
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500110 except Exception as e:
Adam Israel5e08a0e2018-09-06 19:22:47 -0400111 self.log.debug("[1] notify_callback exception: {}".format(e))
112
Adam Israel88a49632018-04-10 13:04:57 -0600113 elif delta.entity == "action":
114 # TODO: Decide how we want to notify the user of actions
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500115
Adam Israel88a49632018-04-10 13:04:57 -0600116 # uuid = delta.data['id'] # The Action's unique id
117 # msg = delta.data['message'] # The output of the action
118 #
119 # if delta.data['status'] == "pending":
120 # # The action is queued
121 # pass
122 # elif delta.data['status'] == "completed""
123 # # The action was successful
124 # pass
125 # elif delta.data['status'] == "failed":
126 # # The action failed.
127 # pass
128
129 pass
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500130
131########
132# TODO
133#
134# Create unique models per network service
135# Document all public functions
136
Adam Israelb5214512018-05-03 10:00:04 -0400137
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500138class N2VC:
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500139 def __init__(self,
140 log=None,
141 server='127.0.0.1',
142 port=17070,
143 user='admin',
144 secret=None,
Adam Israel5e08a0e2018-09-06 19:22:47 -0400145 artifacts=None,
146 loop=None,
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500147 ):
148 """Initialize N2VC
149
150 :param vcaconfig dict A dictionary containing the VCA configuration
151
152 :param artifacts str The directory where charms required by a vnfd are
153 stored.
154
155 :Example:
156 n2vc = N2VC(vcaconfig={
157 'secret': 'MzI3MDJhOTYxYmM0YzRjNTJiYmY1Yzdm',
158 'user': 'admin',
159 'ip-address': '10.44.127.137',
160 'port': 17070,
161 'artifacts': '/path/to/charms'
162 })
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500163 """
164
Adam Israel5e08a0e2018-09-06 19:22:47 -0400165 # Initialize instance-level variables
166 self.api = None
167 self.log = None
168 self.controller = None
169 self.connecting = False
170 self.authenticated = False
171
Adam Israelfc511ed2018-09-21 14:20:55 +0200172 # For debugging
173 self.refcount = {
174 'controller': 0,
175 'model': 0,
176 }
177
Adam Israel5e08a0e2018-09-06 19:22:47 -0400178 self.models = {}
179 self.default_model = None
180
181 # Model Observers
182 self.monitors = {}
183
184 # VCA config
185 self.hostname = ""
186 self.port = 17070
187 self.username = ""
188 self.secret = ""
189
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500190 if log:
191 self.log = log
192 else:
193 self.log = logging.getLogger(__name__)
194
195 # Quiet websocket traffic
196 logging.getLogger('websockets.protocol').setLevel(logging.INFO)
197 logging.getLogger('juju.client.connection').setLevel(logging.WARN)
198 logging.getLogger('model').setLevel(logging.WARN)
199 # logging.getLogger('websockets.protocol').setLevel(logging.DEBUG)
200
201 self.log.debug('JujuApi: instantiated')
202
203 self.server = server
204 self.port = port
205
206 self.secret = secret
207 if user.startswith('user-'):
208 self.user = user
209 else:
210 self.user = 'user-{}'.format(user)
211
212 self.endpoint = '%s:%d' % (server, int(port))
213
214 self.artifacts = artifacts
215
Adam Israel5e08a0e2018-09-06 19:22:47 -0400216 self.loop = loop or asyncio.get_event_loop()
217
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500218 def __del__(self):
219 """Close any open connections."""
220 yield self.logout()
221
Adam Israel5e08a0e2018-09-06 19:22:47 -0400222 def notify_callback(self, model_name, application_name, status, message,
223 callback=None, *callback_args):
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500224 try:
225 if callback:
Adam Israel5e08a0e2018-09-06 19:22:47 -0400226 callback(
227 model_name,
228 application_name,
229 status, message,
230 *callback_args,
231 )
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500232 except Exception as e:
233 self.log.error("[0] notify_callback exception {}".format(e))
Adam Israel88a49632018-04-10 13:04:57 -0600234 raise e
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500235 return True
236
237 # Public methods
238 async def CreateNetworkService(self, nsd):
239 """Create a new model to encapsulate this network service.
240
241 Create a new model in the Juju controller to encapsulate the
242 charms associated with a network service.
243
244 You can pass either the nsd record or the id of the network
245 service, but this method will fail without one of them.
246 """
247 if not self.authenticated:
248 await self.login()
249
250 # Ideally, we will create a unique model per network service.
251 # This change will require all components, i.e., LCM and SO, to use
252 # N2VC for 100% compatibility. If we adopt unique models for the LCM,
253 # services deployed via LCM would't be manageable via SO and vice versa
254
255 return self.default_model
256
Adam Israel136186e2018-09-14 12:01:12 -0400257 async def Relate(self, ns_name, vnfd):
258 """Create a relation between the charm-enabled VDUs in a VNF.
259
260 The Relation mapping has two parts: the id of the vdu owning the endpoint, and the name of the endpoint.
261
262 vdu:
263 ...
264 relation:
265 - provides: dataVM:db
266 requires: mgmtVM:app
267
268 This tells N2VC that the charm referred to by the dataVM vdu offers a relation named 'db', and the mgmtVM vdu has an 'app' endpoint that should be connected to a database.
269
270 :param str ns_name: The name of the network service.
271 :param dict vnfd: The parsed yaml VNF descriptor.
272 """
273
274 # Currently, the call to Relate() is made automatically after the
275 # deployment of each charm; if the relation depends on a charm that
276 # hasn't been deployed yet, the call will fail silently. This will
277 # prevent an API breakage, with the intent of making this an explicitly
278 # required call in a more object-oriented refactor of the N2VC API.
279
280 configs = []
281 vnf_config = vnfd.get("vnf-configuration")
282 if vnf_config:
283 juju = vnf_config['juju']
284 if juju:
285 configs.append(vnf_config)
286
287 for vdu in vnfd['vdu']:
288 vdu_config = vdu.get('vdu-configuration')
289 if vdu_config:
290 juju = vdu_config['juju']
291 if juju:
292 configs.append(vdu_config)
293
294 def _get_application_name(name):
295 """Get the application name that's mapped to a vnf/vdu."""
296 vnf_member_index = 0
297 vnf_name = vnfd['name']
298
299 for vdu in vnfd.get('vdu'):
300 # Compare the named portion of the relation to the vdu's id
301 if vdu['id'] == name:
302 application_name = self.FormatApplicationName(
303 ns_name,
304 vnf_name,
305 str(vnf_member_index),
306 )
307 return application_name
308 else:
309 vnf_member_index += 1
310
311 return None
312
313 # Loop through relations
314 for cfg in configs:
315 if 'juju' in cfg:
316 if 'relation' in juju:
317 for rel in juju['relation']:
318 try:
319
320 # get the application name for the provides
321 (name, endpoint) = rel['provides'].split(':')
322 application_name = _get_application_name(name)
323
324 provides = "{}:{}".format(
325 application_name,
326 endpoint
327 )
328
329 # get the application name for thr requires
330 (name, endpoint) = rel['requires'].split(':')
331 application_name = _get_application_name(name)
332
333 requires = "{}:{}".format(
334 application_name,
335 endpoint
336 )
337 self.log.debug("Relation: {} <-> {}".format(
338 provides,
339 requires
340 ))
341 await self.add_relation(
342 ns_name,
343 provides,
344 requires,
345 )
346 except Exception as e:
347 self.log.debug("Exception: {}".format(e))
348
349 return
350
Adam Israel5e08a0e2018-09-06 19:22:47 -0400351 async def DeployCharms(self, model_name, application_name, vnfd,
352 charm_path, params={}, machine_spec={},
353 callback=None, *callback_args):
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500354 """Deploy one or more charms associated with a VNF.
355
356 Deploy the charm(s) referenced in a VNF Descriptor.
357
Adam Israelc9df96f2018-05-03 14:49:56 -0400358 :param str model_name: The name of the network service.
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500359 :param str application_name: The name of the application
360 :param dict vnfd: The name of the application
361 :param str charm_path: The path to the Juju charm
362 :param dict params: A dictionary of runtime parameters
363 Examples::
364 {
Adam Israel88a49632018-04-10 13:04:57 -0600365 'rw_mgmt_ip': '1.2.3.4',
366 # Pass the initial-config-primitives section of the vnf or vdu
367 'initial-config-primitives': {...}
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500368 }
Adam Israel5e08a0e2018-09-06 19:22:47 -0400369 :param dict machine_spec: A dictionary describing the machine to
370 install to
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500371 Examples::
372 {
373 'hostname': '1.2.3.4',
374 'username': 'ubuntu',
375 }
376 :param obj callback: A callback function to receive status changes.
Adam Israel5e08a0e2018-09-06 19:22:47 -0400377 :param tuple callback_args: A list of arguments to be passed to the
378 callback
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500379 """
380
381 ########################################################
382 # Verify the path to the charm exists and is readable. #
383 ########################################################
384 if not os.path.exists(charm_path):
385 self.log.debug("Charm path doesn't exist: {}".format(charm_path))
Adam Israel5e08a0e2018-09-06 19:22:47 -0400386 self.notify_callback(
387 model_name,
388 application_name,
389 "failed",
390 callback,
391 *callback_args,
392 )
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500393 raise JujuCharmNotFound("No artifacts configured.")
394
395 ################################
396 # Login to the Juju controller #
397 ################################
398 if not self.authenticated:
399 self.log.debug("Authenticating with Juju")
400 await self.login()
401
402 ##########################################
403 # Get the model for this network service #
404 ##########################################
405 # TODO: In a point release, we will use a model per deployed network
406 # service. In the meantime, we will always use the 'default' model.
407 model_name = 'default'
408 model = await self.get_model(model_name)
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500409
410 ########################################
411 # Verify the application doesn't exist #
412 ########################################
413 app = await self.get_application(model, application_name)
414 if app:
Adam Israel42d88e62018-07-16 14:18:41 -0400415 raise JujuApplicationExists("Can't deploy application \"{}\" to model \"{}\" because it already exists.".format(application_name, model_name))
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500416
Adam Israel28a43c02018-04-23 16:04:54 -0400417 ################################################################
418 # Register this application with the model-level event monitor #
419 ################################################################
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500420 if callback:
Adam Israel28a43c02018-04-23 16:04:54 -0400421 self.monitors[model_name].AddApplication(
422 application_name,
423 callback,
424 *callback_args
425 )
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500426
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500427 ########################################################
428 # Check for specific machine placement (native charms) #
429 ########################################################
430 to = ""
431 if machine_spec.keys():
Adam Israel1ddca812018-09-14 11:32:35 -0400432 if all(k in machine_spec for k in ['hostname', 'username']):
433 # Get the path to the previously generated ssh private key.
434 # Machines we're manually provisioned must have N2VC's public
435 # key injected, so if we don't have a keypair, raise an error.
436 private_key_path = ""
437
438 # Enlist the existing machine in Juju
439 machine = await self.model.add_machine(
440 spec='ssh:{}@{}:{}'.format(
441 specs['host'],
442 specs['user'],
443 private_key_path,
444 )
445 )
446 # Set the machine id that the deploy below will use.
Adam Israelfa329072018-09-14 11:26:13 -0400447 to = machine.id
Adam Israel1ddca812018-09-14 11:32:35 -0400448 pass
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500449
450 #######################################
451 # Get the initial charm configuration #
452 #######################################
453
454 rw_mgmt_ip = None
455 if 'rw_mgmt_ip' in params:
456 rw_mgmt_ip = params['rw_mgmt_ip']
457
Adam Israel5afe0542018-08-08 12:54:55 -0400458 if 'initial-config-primitive' not in params:
459 params['initial-config-primitive'] = {}
460
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500461 initial_config = self._get_config_from_dict(
Adam Israel88a49632018-04-10 13:04:57 -0600462 params['initial-config-primitive'],
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500463 {'<rw_mgmt_ip>': rw_mgmt_ip}
464 )
465
Adam Israel88a49632018-04-10 13:04:57 -0600466 self.log.debug("JujuApi: Deploying charm ({}) from {}".format(
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500467 application_name,
468 charm_path,
469 to=to,
470 ))
471
472 ########################################################
473 # Deploy the charm and apply the initial configuration #
474 ########################################################
475 app = await model.deploy(
Adam Israel88a49632018-04-10 13:04:57 -0600476 # We expect charm_path to be either the path to the charm on disk
477 # or in the format of cs:series/name
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500478 charm_path,
Adam Israel88a49632018-04-10 13:04:57 -0600479 # This is the formatted, unique name for this charm
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500480 application_name=application_name,
Adam Israel88a49632018-04-10 13:04:57 -0600481 # Proxy charms should use the current LTS. This will need to be
482 # changed for native charms.
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500483 series='xenial',
Adam Israel88a49632018-04-10 13:04:57 -0600484 # Apply the initial 'config' primitive during deployment
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500485 config=initial_config,
Adam Israelfa329072018-09-14 11:26:13 -0400486 # Where to deploy the charm to.
487 to=to,
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500488 )
489
Adam Israel136186e2018-09-14 12:01:12 -0400490 # Map the vdu id<->app name,
491 #
492 await self.Relate(model_name, vnfd)
493
Adam Israel88a49632018-04-10 13:04:57 -0600494 # #######################################
495 # # Execute initial config primitive(s) #
496 # #######################################
Adam Israel5e08a0e2018-09-06 19:22:47 -0400497 await self.ExecuteInitialPrimitives(
498 model_name,
499 application_name,
500 params,
501 )
502
503 # primitives = {}
504 #
505 # # Build a sequential list of the primitives to execute
506 # for primitive in params['initial-config-primitive']:
507 # try:
508 # if primitive['name'] == 'config':
509 # # This is applied when the Application is deployed
510 # pass
511 # else:
512 # seq = primitive['seq']
513 #
514 # params = {}
515 # if 'parameter' in primitive:
516 # params = primitive['parameter']
517 #
518 # primitives[seq] = {
519 # 'name': primitive['name'],
520 # 'parameters': self._map_primitive_parameters(
521 # params,
522 # {'<rw_mgmt_ip>': rw_mgmt_ip}
523 # ),
524 # }
525 #
526 # for primitive in sorted(primitives):
527 # await self.ExecutePrimitive(
528 # model_name,
529 # application_name,
530 # primitives[primitive]['name'],
531 # callback,
532 # callback_args,
533 # **primitives[primitive]['parameters'],
534 # )
535 # except N2VCPrimitiveExecutionFailed as e:
536 # self.log.debug(
537 # "[N2VC] Exception executing primitive: {}".format(e)
538 # )
539 # raise
540
541 async def GetPrimitiveStatus(self, model_name, uuid):
542 """Get the status of an executed Primitive.
543
544 The status of an executed Primitive will be one of three values:
545 - completed
546 - failed
547 - running
548 """
549 status = None
550 try:
551 if not self.authenticated:
552 await self.login()
553
554 # FIXME: This is hard-coded until model-per-ns is added
555 model_name = 'default'
556
557 model = await self.get_model(model_name)
558
559 results = await model.get_action_status(uuid)
560
561 if uuid in results:
562 status = results[uuid]
563
564 except Exception as e:
565 self.log.debug(
566 "Caught exception while getting primitive status: {}".format(e)
567 )
568 raise N2VCPrimitiveExecutionFailed(e)
569
570 return status
571
572 async def GetPrimitiveOutput(self, model_name, uuid):
573 """Get the output of an executed Primitive.
574
575 Note: this only returns output for a successfully executed primitive.
576 """
577 results = None
578 try:
579 if not self.authenticated:
580 await self.login()
581
582 # FIXME: This is hard-coded until model-per-ns is added
583 model_name = 'default'
584
585 model = await self.get_model(model_name)
586 results = await model.get_action_output(uuid, 60)
587 except Exception as e:
588 self.log.debug(
589 "Caught exception while getting primitive status: {}".format(e)
590 )
591 raise N2VCPrimitiveExecutionFailed(e)
592
593 return results
594
Adam Israelfa329072018-09-14 11:26:13 -0400595 # async def ProvisionMachine(self, model_name, hostname, username):
596 # """Provision machine for usage with Juju.
597 #
598 # Provisions a previously instantiated machine for use with Juju.
599 # """
600 # try:
601 # if not self.authenticated:
602 # await self.login()
603 #
604 # # FIXME: This is hard-coded until model-per-ns is added
605 # model_name = 'default'
606 #
607 # model = await self.get_model(model_name)
608 # model.add_machine(spec={})
609 #
610 # machine = await model.add_machine(spec='ssh:{}@{}:{}'.format(
611 # "ubuntu",
612 # host['address'],
613 # private_key_path,
614 # ))
615 # return machine.id
616 #
617 # except Exception as e:
618 # self.log.debug(
619 # "Caught exception while getting primitive status: {}".format(e)
620 # )
621 # raise N2VCPrimitiveExecutionFailed(e)
622
623 def GetPrivateKeyPath(self):
624 homedir = os.environ['HOME']
625 sshdir = "{}/.ssh".format(homedir)
626 private_key_path = "{}/id_n2vc_rsa".format(sshdir)
627 return private_key_path
628
629 async def GetPublicKey(self):
630 """Get the N2VC SSH public key.abs
631
632 Returns the SSH public key, to be injected into virtual machines to
633 be managed by the VCA.
634
635 The first time this is run, a ssh keypair will be created. The public
636 key is injected into a VM so that we can provision the machine with
637 Juju, after which Juju will communicate with the VM directly via the
638 juju agent.
639 """
640 public_key = ""
641
642 # Find the path to where we expect our key to live.
643 homedir = os.environ['HOME']
644 sshdir = "{}/.ssh".format(homedir)
645 if not os.path.exists(sshdir):
646 os.mkdir(sshdir)
647
648 private_key_path = "{}/id_n2vc_rsa".format(sshdir)
649 public_key_path = "{}.pub".format(private_key_path)
650
651 # If we don't have a key generated, generate it.
652 if not os.path.exists(private_key_path):
653 cmd = "ssh-keygen -t {} -b {} -N '' -f {}".format(
654 "rsa",
655 "4096",
656 private_key_path
657 )
658 subprocess.check_output(shlex.split(cmd))
659
660 # Read the public key
661 with open(public_key_path, "r") as f:
662 public_key = f.readline()
663
664 return public_key
665
Adam Israel5e08a0e2018-09-06 19:22:47 -0400666 async def ExecuteInitialPrimitives(self, model_name, application_name,
667 params, callback=None, *callback_args):
668 """Execute multiple primitives.
669
670 Execute multiple primitives as declared in initial-config-primitive.
671 This is useful in cases where the primitives initially failed -- for
672 example, if the charm is a proxy but the proxy hasn't been configured
673 yet.
674 """
675 uuids = []
Adam Israel88a49632018-04-10 13:04:57 -0600676 primitives = {}
677
678 # Build a sequential list of the primitives to execute
679 for primitive in params['initial-config-primitive']:
680 try:
681 if primitive['name'] == 'config':
Adam Israel88a49632018-04-10 13:04:57 -0600682 pass
683 else:
Adam Israel88a49632018-04-10 13:04:57 -0600684 seq = primitive['seq']
685
Adam Israel42d88e62018-07-16 14:18:41 -0400686 params = {}
687 if 'parameter' in primitive:
688 params = primitive['parameter']
689
Adam Israel88a49632018-04-10 13:04:57 -0600690 primitives[seq] = {
691 'name': primitive['name'],
692 'parameters': self._map_primitive_parameters(
Adam Israel42d88e62018-07-16 14:18:41 -0400693 params,
Adam Israel5e08a0e2018-09-06 19:22:47 -0400694 {'<rw_mgmt_ip>': None}
Adam Israel88a49632018-04-10 13:04:57 -0600695 ),
696 }
697
698 for primitive in sorted(primitives):
Adam Israel5e08a0e2018-09-06 19:22:47 -0400699 uuids.append(
700 await self.ExecutePrimitive(
701 model_name,
702 application_name,
703 primitives[primitive]['name'],
704 callback,
705 callback_args,
706 **primitives[primitive]['parameters'],
707 )
Adam Israel88a49632018-04-10 13:04:57 -0600708 )
709 except N2VCPrimitiveExecutionFailed as e:
Adam Israel7d871fb2018-07-17 12:17:06 -0400710 self.log.debug(
Adam Israel88a49632018-04-10 13:04:57 -0600711 "[N2VC] Exception executing primitive: {}".format(e)
712 )
713 raise
Adam Israel5e08a0e2018-09-06 19:22:47 -0400714 return uuids
Adam Israel88a49632018-04-10 13:04:57 -0600715
Adam Israel5e08a0e2018-09-06 19:22:47 -0400716 async def ExecutePrimitive(self, model_name, application_name, primitive,
717 callback, *callback_args, **params):
Adam Israelc9df96f2018-05-03 14:49:56 -0400718 """Execute a primitive of a charm for Day 1 or Day 2 configuration.
Adam Israel6817f612018-04-13 08:41:43 -0600719
Adam Israelc9df96f2018-05-03 14:49:56 -0400720 Execute a primitive defined in the VNF descriptor.
721
722 :param str model_name: The name of the network service.
723 :param str application_name: The name of the application
724 :param str primitive: The name of the primitive to execute.
725 :param obj callback: A callback function to receive status changes.
Adam Israel5e08a0e2018-09-06 19:22:47 -0400726 :param tuple callback_args: A list of arguments to be passed to the
727 callback function.
728 :param dict params: A dictionary of key=value pairs representing the
729 primitive's parameters
Adam Israelc9df96f2018-05-03 14:49:56 -0400730 Examples::
731 {
732 'rw_mgmt_ip': '1.2.3.4',
733 # Pass the initial-config-primitives section of the vnf or vdu
734 'initial-config-primitives': {...}
735 }
Adam Israel6817f612018-04-13 08:41:43 -0600736 """
Adam Israel5e08a0e2018-09-06 19:22:47 -0400737 self.log.debug("Executing {}".format(primitive))
Adam Israel6817f612018-04-13 08:41:43 -0600738 uuid = None
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500739 try:
740 if not self.authenticated:
741 await self.login()
742
743 # FIXME: This is hard-coded until model-per-ns is added
744 model_name = 'default'
745
Adam Israel5e08a0e2018-09-06 19:22:47 -0400746 model = await self.get_model(model_name)
Adam Israelb5214512018-05-03 10:00:04 -0400747
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500748 if primitive == 'config':
749 # config is special, and expecting params to be a dictionary
Adam Israelb0943662018-08-02 15:32:00 -0400750 await self.set_config(
751 model,
752 application_name,
753 params['params'],
754 )
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500755 else:
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500756 app = await self.get_application(model, application_name)
757 if app:
758 # Run against the first (and probably only) unit in the app
759 unit = app.units[0]
760 if unit:
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500761 action = await unit.run_action(primitive, **params)
Adam Israel6817f612018-04-13 08:41:43 -0600762 uuid = action.id
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500763 except Exception as e:
Adam Israelb0943662018-08-02 15:32:00 -0400764 self.log.debug(
765 "Caught exception while executing primitive: {}".format(e)
766 )
Adam Israel7d871fb2018-07-17 12:17:06 -0400767 raise N2VCPrimitiveExecutionFailed(e)
Adam Israel6817f612018-04-13 08:41:43 -0600768 return uuid
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500769
Adam Israel5e08a0e2018-09-06 19:22:47 -0400770 async def RemoveCharms(self, model_name, application_name, callback=None,
771 *callback_args):
Adam Israelc9df96f2018-05-03 14:49:56 -0400772 """Remove a charm from the VCA.
773
774 Remove a charm referenced in a VNF Descriptor.
775
776 :param str model_name: The name of the network service.
777 :param str application_name: The name of the application
778 :param obj callback: A callback function to receive status changes.
Adam Israel5e08a0e2018-09-06 19:22:47 -0400779 :param tuple callback_args: A list of arguments to be passed to the
780 callback function.
Adam Israelc9df96f2018-05-03 14:49:56 -0400781 """
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500782 try:
783 if not self.authenticated:
784 await self.login()
785
786 model = await self.get_model(model_name)
787 app = await self.get_application(model, application_name)
788 if app:
Adam Israel28a43c02018-04-23 16:04:54 -0400789 # Remove this application from event monitoring
790 self.monitors[model_name].RemoveApplication(application_name)
791
792 # self.notify_callback(model_name, application_name, "removing", callback, *callback_args)
Adam Israel5e08a0e2018-09-06 19:22:47 -0400793 self.log.debug(
794 "Removing the application {}".format(application_name)
795 )
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500796 await app.remove()
Adam Israel28a43c02018-04-23 16:04:54 -0400797
798 # Notify the callback that this charm has been removed.
Adam Israel5e08a0e2018-09-06 19:22:47 -0400799 self.notify_callback(
800 model_name,
801 application_name,
802 "removed",
803 callback,
804 *callback_args,
805 )
Adam Israel28a43c02018-04-23 16:04:54 -0400806
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500807 except Exception as e:
808 print("Caught exception: {}".format(e))
Adam Israel88a49632018-04-10 13:04:57 -0600809 self.log.debug(e)
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500810 raise e
811
812 async def DestroyNetworkService(self, nsd):
813 raise NotImplementedError()
814
Adam Israelb5214512018-05-03 10:00:04 -0400815 async def GetMetrics(self, model_name, application_name):
816 """Get the metrics collected by the VCA.
817
818 :param model_name The name of the model
819 :param application_name The name of the application
820 """
821 metrics = {}
822 model = await self.get_model(model_name)
823 app = await self.get_application(model, application_name)
824 if app:
825 metrics = await app.get_metrics()
826
827 return metrics
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500828
Adam Israelfa329072018-09-14 11:26:13 -0400829 async def HasApplication(self, model_name, application_name):
830 model = await self.get_model(model_name)
831 app = await self.get_application(model, application_name)
832 if app:
833 return True
834 return False
835
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500836 # Non-public methods
Adam Israel136186e2018-09-14 12:01:12 -0400837 async def add_relation(self, model_name, relation1, relation2):
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500838 """
839 Add a relation between two application endpoints.
840
Adam Israel136186e2018-09-14 12:01:12 -0400841 :param str model_name Name of the network service.
842 :param str relation1 '<application>[:<relation_name>]'
843 :param str relation12 '<application>[:<relation_name>]'
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500844 """
Adam Israel136186e2018-09-14 12:01:12 -0400845
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500846 if not self.authenticated:
847 await self.login()
848
Adam Israel136186e2018-09-14 12:01:12 -0400849 m = await self.get_model(model_name)
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500850 try:
Adam Israel136186e2018-09-14 12:01:12 -0400851 await m.add_relation(relation1, relation2)
852 except JujuAPIError as e:
853 # If one of the applications in the relationship doesn't exist,
854 # or the relation has already been added, let the operation fail
855 # silently.
856 if 'not found' in e.message:
857 return
858 if 'already exists' in e.message:
859 return
860
861 raise e
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500862
Adam Israelb5214512018-05-03 10:00:04 -0400863 # async def apply_config(self, config, application):
864 # """Apply a configuration to the application."""
865 # print("JujuApi: Applying configuration to {}.".format(
866 # application
867 # ))
868 # return await self.set_config(application=application, config=config)
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500869
870 def _get_config_from_dict(self, config_primitive, values):
Adam Israel88a49632018-04-10 13:04:57 -0600871 """Transform the yang config primitive to dict.
872
873 Expected result:
874
875 config = {
876 'config':
877 }
878 """
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500879 config = {}
880 for primitive in config_primitive:
881 if primitive['name'] == 'config':
Adam Israel88a49632018-04-10 13:04:57 -0600882 # config = self._map_primitive_parameters()
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500883 for parameter in primitive['parameter']:
884 param = str(parameter['name'])
885 if parameter['value'] == "<rw_mgmt_ip>":
886 config[param] = str(values[parameter['value']])
887 else:
888 config[param] = str(parameter['value'])
889
890 return config
891
Adam Israel88a49632018-04-10 13:04:57 -0600892 def _map_primitive_parameters(self, parameters, values):
893 params = {}
894 for parameter in parameters:
895 param = str(parameter['name'])
Adam Israel5e08a0e2018-09-06 19:22:47 -0400896
897 # Typecast parameter value, if present
898 if 'data-type' in parameter:
899 paramtype = str(parameter['data-type']).lower()
900 value = None
901
902 if paramtype == "integer":
903 value = int(parameter['value'])
904 elif paramtype == "boolean":
905 value = bool(parameter['value'])
906 else:
907 value = str(parameter['value'])
908
Adam Israel88a49632018-04-10 13:04:57 -0600909 if parameter['value'] == "<rw_mgmt_ip>":
910 params[param] = str(values[parameter['value']])
911 else:
Adam Israel5e08a0e2018-09-06 19:22:47 -0400912 params[param] = value
Adam Israel88a49632018-04-10 13:04:57 -0600913 return params
914
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500915 def _get_config_from_yang(self, config_primitive, values):
916 """Transform the yang config primitive to dict."""
917 config = {}
918 for primitive in config_primitive.values():
919 if primitive['name'] == 'config':
920 for parameter in primitive['parameter'].values():
921 param = str(parameter['name'])
922 if parameter['value'] == "<rw_mgmt_ip>":
923 config[param] = str(values[parameter['value']])
924 else:
925 config[param] = str(parameter['value'])
926
927 return config
928
929 def FormatApplicationName(self, *args):
930 """
931 Generate a Juju-compatible Application name
932
933 :param args tuple: Positional arguments to be used to construct the
934 application name.
935
936 Limitations::
937 - Only accepts characters a-z and non-consequitive dashes (-)
938 - Application name should not exceed 50 characters
939
940 Examples::
941
942 FormatApplicationName("ping_pong_ns", "ping_vnf", "a")
943 """
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500944 appname = ""
945 for c in "-".join(list(args)):
946 if c.isdigit():
947 c = chr(97 + int(c))
948 elif not c.isalpha():
949 c = "-"
950 appname += c
951 return re.sub('\-+', '-', appname.lower())
952
Adam Israelc3e6c2e2018-03-01 09:31:50 -0500953 # def format_application_name(self, nsd_name, vnfr_name, member_vnf_index=0):
954 # """Format the name of the application
955 #
956 # Limitations:
957 # - Only accepts characters a-z and non-consequitive dashes (-)
958 # - Application name should not exceed 50 characters
959 # """
960 # name = "{}-{}-{}".format(nsd_name, vnfr_name, member_vnf_index)
961 # new_name = ''
962 # for c in name:
963 # if c.isdigit():
964 # c = chr(97 + int(c))
965 # elif not c.isalpha():
966 # c = "-"
967 # new_name += c
968 # return re.sub('\-+', '-', new_name.lower())
969
970 def format_model_name(self, name):
971 """Format the name of model.
972
973 Model names may only contain lowercase letters, digits and hyphens
974 """
975
976 return name.replace('_', '-').lower()
977
978 async def get_application(self, model, application):
979 """Get the deployed application."""
980 if not self.authenticated:
981 await self.login()
982
983 app = None
984 if application and model:
985 if model.applications:
986 if application in model.applications:
987 app = model.applications[application]
988
989 return app
990
991 async def get_model(self, model_name='default'):
992 """Get a model from the Juju Controller.
993
994 Note: Model objects returned must call disconnected() before it goes
995 out of scope."""
996 if not self.authenticated:
997 await self.login()
998
999 if model_name not in self.models:
Adam Israel5e08a0e2018-09-06 19:22:47 -04001000 self.models[model_name] = await self.controller.get_model(
1001 model_name,
1002 )
Adam Israelfc511ed2018-09-21 14:20:55 +02001003 self.refcount['model'] += 1
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001004
Adam Israel28a43c02018-04-23 16:04:54 -04001005 # Create an observer for this model
1006 self.monitors[model_name] = VCAMonitor(model_name)
1007 self.models[model_name].add_observer(self.monitors[model_name])
1008
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001009 return self.models[model_name]
1010
1011 async def login(self):
1012 """Login to the Juju controller."""
1013
1014 if self.authenticated:
1015 return
1016
1017 self.connecting = True
1018
1019 self.log.debug("JujuApi: Logging into controller")
1020
1021 cacert = None
Adam Israel5e08a0e2018-09-06 19:22:47 -04001022 self.controller = Controller(loop=self.loop)
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001023
1024 if self.secret:
Adam Israel5e08a0e2018-09-06 19:22:47 -04001025 self.log.debug(
1026 "Connecting to controller... ws://{}:{} as {}/{}".format(
1027 self.endpoint,
1028 self.port,
1029 self.user,
1030 self.secret,
1031 )
1032 )
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001033 await self.controller.connect(
1034 endpoint=self.endpoint,
1035 username=self.user,
1036 password=self.secret,
1037 cacert=cacert,
1038 )
Adam Israelfc511ed2018-09-21 14:20:55 +02001039 self.refcount['controller'] += 1
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001040 else:
1041 # current_controller no longer exists
1042 # self.log.debug("Connecting to current controller...")
1043 # await self.controller.connect_current()
Adam Israel88a49632018-04-10 13:04:57 -06001044 # await self.controller.connect(
1045 # endpoint=self.endpoint,
1046 # username=self.user,
1047 # cacert=cacert,
1048 # )
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001049 self.log.fatal("VCA credentials not configured.")
1050
1051 self.authenticated = True
1052 self.log.debug("JujuApi: Logged into controller")
1053
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001054 async def logout(self):
1055 """Logout of the Juju controller."""
1056 if not self.authenticated:
1057 return
1058
1059 try:
1060 if self.default_model:
Adam Israel5e08a0e2018-09-06 19:22:47 -04001061 self.log.debug("Disconnecting model {}".format(
1062 self.default_model
1063 ))
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001064 await self.default_model.disconnect()
Adam Israelfc511ed2018-09-21 14:20:55 +02001065 self.refcount['model'] -= 1
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001066 self.default_model = None
1067
1068 for model in self.models:
1069 await self.models[model].disconnect()
Adam Israelfc511ed2018-09-21 14:20:55 +02001070 self.refcount['model'] -= 1
1071 self.models[model] = None
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001072
1073 if self.controller:
Adam Israel5e08a0e2018-09-06 19:22:47 -04001074 self.log.debug("Disconnecting controller {}".format(
1075 self.controller
1076 ))
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001077 await self.controller.disconnect()
Adam Israelfc511ed2018-09-21 14:20:55 +02001078 self.refcount['controller'] -= 1
Adam Israel5e08a0e2018-09-06 19:22:47 -04001079 self.controller = None
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001080
1081 self.authenticated = False
Adam Israelfc511ed2018-09-21 14:20:55 +02001082
1083 self.log.debug(self.refcount)
1084
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001085 except Exception as e:
Adam Israel5e08a0e2018-09-06 19:22:47 -04001086 self.log.fatal(
1087 "Fatal error logging out of Juju Controller: {}".format(e)
1088 )
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001089 raise e
1090
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001091 # async def remove_application(self, name):
1092 # """Remove the application."""
1093 # if not self.authenticated:
1094 # await self.login()
1095 #
1096 # app = await self.get_application(name)
1097 # if app:
1098 # self.log.debug("JujuApi: Destroying application {}".format(
1099 # name,
1100 # ))
1101 #
1102 # await app.destroy()
1103
1104 async def remove_relation(self, a, b):
1105 """
1106 Remove a relation between two application endpoints
1107
1108 :param a An application endpoint
1109 :param b An application endpoint
1110 """
1111 if not self.authenticated:
1112 await self.login()
1113
1114 m = await self.get_model()
1115 try:
1116 m.remove_relation(a, b)
1117 finally:
1118 await m.disconnect()
1119
1120 async def resolve_error(self, application=None):
1121 """Resolve units in error state."""
1122 if not self.authenticated:
1123 await self.login()
1124
1125 app = await self.get_application(self.default_model, application)
1126 if app:
Adam Israel5e08a0e2018-09-06 19:22:47 -04001127 self.log.debug(
1128 "JujuApi: Resolving errors for application {}".format(
1129 application,
1130 )
1131 )
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001132
1133 for unit in app.units:
1134 app.resolved(retry=True)
1135
1136 async def run_action(self, application, action_name, **params):
1137 """Execute an action and return an Action object."""
1138 if not self.authenticated:
1139 await self.login()
1140 result = {
1141 'status': '',
1142 'action': {
1143 'tag': None,
1144 'results': None,
1145 }
1146 }
1147 app = await self.get_application(self.default_model, application)
1148 if app:
1149 # We currently only have one unit per application
1150 # so use the first unit available.
1151 unit = app.units[0]
1152
Adam Israel5e08a0e2018-09-06 19:22:47 -04001153 self.log.debug(
1154 "JujuApi: Running Action {} against Application {}".format(
1155 action_name,
1156 application,
1157 )
1158 )
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001159
1160 action = await unit.run_action(action_name, **params)
1161
1162 # Wait for the action to complete
1163 await action.wait()
1164
1165 result['status'] = action.status
1166 result['action']['tag'] = action.data['id']
1167 result['action']['results'] = action.results
1168
1169 return result
1170
Adam Israelb5214512018-05-03 10:00:04 -04001171 async def set_config(self, model_name, application, config):
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001172 """Apply a configuration to the application."""
1173 if not self.authenticated:
1174 await self.login()
1175
Adam Israelb5214512018-05-03 10:00:04 -04001176 app = await self.get_application(model_name, application)
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001177 if app:
1178 self.log.debug("JujuApi: Setting config for Application {}".format(
1179 application,
1180 ))
1181 await app.set_config(config)
1182
1183 # Verify the config is set
1184 newconf = await app.get_config()
1185 for key in config:
1186 if config[key] != newconf[key]['value']:
1187 self.log.debug("JujuApi: Config not set! Key {} Value {} doesn't match {}".format(key, config[key], newconf[key]))
1188
Adam Israelb5214512018-05-03 10:00:04 -04001189 # async def set_parameter(self, parameter, value, application=None):
1190 # """Set a config parameter for a service."""
1191 # if not self.authenticated:
1192 # await self.login()
1193 #
1194 # self.log.debug("JujuApi: Setting {}={} for Application {}".format(
1195 # parameter,
1196 # value,
1197 # application,
1198 # ))
1199 # return await self.apply_config(
1200 # {parameter: value},
1201 # application=application,
1202 # )
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001203
Adam Israel5e08a0e2018-09-06 19:22:47 -04001204 async def wait_for_application(self, model_name, application_name,
1205 timeout=300):
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001206 """Wait for an application to become active."""
1207 if not self.authenticated:
1208 await self.login()
1209
Adam Israel5e08a0e2018-09-06 19:22:47 -04001210 # TODO: In a point release, we will use a model per deployed network
1211 # service. In the meantime, we will always use the 'default' model.
1212 model_name = 'default'
1213 model = await self.get_model(model_name)
1214
1215 app = await self.get_application(model, application_name)
1216 self.log.debug("Application: {}".format(app))
1217 # app = await self.get_application(model_name, application_name)
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001218 if app:
1219 self.log.debug(
1220 "JujuApi: Waiting {} seconds for Application {}".format(
1221 timeout,
Adam Israel5e08a0e2018-09-06 19:22:47 -04001222 application_name,
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001223 )
1224 )
1225
Adam Israel5e08a0e2018-09-06 19:22:47 -04001226 await model.block_until(
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001227 lambda: all(
Adam Israel5e08a0e2018-09-06 19:22:47 -04001228 unit.agent_status == 'idle' and unit.workload_status in
1229 ['active', 'unknown'] for unit in app.units
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001230 ),
1231 timeout=timeout
1232 )