1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
#!/usr/bin/python
from __future__ import print_function
from argparse import ArgumentParser
from datetime import (
datetime,
timedelta,
)
import json
import os
import pprint
import subprocess
import sys
from time import sleep
import urllib2
from utility import until_timeout
VERSION = '0.1.0'
USER_AGENT = "juju-cloud-tool/{} ({}) Python/{}".format(
VERSION, sys.platform, sys.version.split(None, 1)[0])
ISO_8601_FORMAT = '%Y-%m-%dT%H:%M:%S.%fZ'
SSL_SIGN = """
echo -n "date:" {0} |
openssl dgst -sha256 -sign {1} |
openssl enc -e -a |
tr -d '\n'
"""
OLD_MACHINE_AGE = 12
class DeleteRequest(urllib2.Request):
def get_method(self):
return "DELETE"
class HeadRequest(urllib2.Request):
def get_method(self):
return "HEAD"
class PostRequest(urllib2.Request):
def get_method(self):
return "POST"
class PutRequest(urllib2.Request):
def get_method(self):
return "PUT"
def parse_iso_date(string):
return datetime.strptime(string, ISO_8601_FORMAT)
class Client:
"""A class that mirrors MantaClient without the modern Crypto.
See https://github.com/joyent/python-manta
"""
def __init__(self, sdc_url, account, key_id, key_path, manta_url,
user_agent=USER_AGENT, pause=3, dry_run=False, verbose=False):
if sdc_url.endswith('/'):
sdc_url = sdc_url[1:]
self.sdc_url = sdc_url
if manta_url.endswith('/'):
manta_url = manta_url[1:]
self.manta_url = manta_url
self.account = account
self.key_id = key_id
self.key_path = key_path
self.user_agent = user_agent
self.pause = pause
self.dry_run = dry_run
self.verbose = verbose
def make_request_headers(self, headers=None):
"""Return a dict of required headers.
The Authorization header is always a signing of the "Date" header,
where "date" must be lowercase.
"""
timestamp = datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S GMT")
script = SSL_SIGN.format(timestamp, self.key_path)
signature = subprocess.check_output(['bash', '-c', script])
key = "/{}/keys/{}".format(self.account, self.key_id)
auth = (
'Signature keyId="{}",algorithm="rsa-sha256",'.format(key) +
'signature="{}"'.format(signature))
if headers is None:
headers = {}
headers['Date'] = timestamp
headers['Authorization'] = auth
headers["User-Agent"] = USER_AGENT
return headers
def _request(self, path, method="GET", body=None, headers=None,
is_manta=False):
headers = self.make_request_headers(headers)
if path.startswith('/'):
path = path[1:]
if is_manta:
base_url = self.manta_url
else:
base_url = self.sdc_url
uri = "{}/{}/{}".format(base_url, self.account, path)
if method == 'DELETE':
request = DeleteRequest(uri, headers=headers)
elif method == 'HEAD':
request = HeadRequest(uri, headers=headers)
elif method == 'POST':
request = PostRequest(uri, data=body, headers=headers)
elif method == 'PUT':
request = PutRequest(uri, data=body, headers=headers)
else:
request = urllib2.Request(uri, headers=headers)
try:
response = urllib2.urlopen(request)
except Exception as err:
print(request.header_items())
print(err.read())
raise
content = response.read()
headers = dict(response.headers.items())
headers['status'] = str(response.getcode())
headers['reason'] = response.msg
return headers, content
def _list_objects(self, path, deep=False):
headers, content = self._request(path, is_manta=True)
objects = []
for line in content.splitlines():
obj = json.loads(line)
obj['path'] = '%s/%s' % (path, obj['name'])
objects.append(obj)
if obj['type'] == 'directory' and deep:
objects.extend(self._list_objects(obj['path'], deep=True))
return objects
def list_objects(self, path, deep=False):
objects = self._list_objects(path, deep=deep)
for obj in objects:
print('{type:9} {mtime} {path}'.format(**obj))
def delete_old_objects(self, path, old_age):
now = datetime.utcnow()
ago = timedelta(hours=old_age)
objects = self._list_objects(path, deep=True)
# The list is dir, the sub objects. Manta requires the sub objects
# to be deleted first.
objects.reverse()
for obj in objects:
if '.joyent' in obj['path']:
# The .joyent dir cannot be deleted.
print('ignoring %s' % obj['path'])
continue
mtime = parse_iso_date(obj['mtime'])
age = now - mtime
if age < ago:
print('ignoring young %s' % obj['path'])
continue
if self.verbose:
print('Deleting %s' % obj['path'])
if not self.dry_run:
headers, content = self._request(
obj['path'], method='DELETE', is_manta=True)
def _list_machines(self, machine_id=None):
"""Return a list of machine dicts."""
if machine_id:
path = '/machines/{}'.format(machine_id)
else:
path = '/machines'
headers, content = self._request(path)
machines = json.loads(content)
if self.verbose:
print(machines)
return machines
def list_machines(self, machine_id=None):
machines = self._list_machines(machine_id)
pprint.pprint(machines, indent=2)
def _list_machine_tags(self, machine_id):
path = '/machines/{}/tags'.format(machine_id)
headers, content = self._request(path)
tags = json.loads(content)
if self.verbose:
print(tags)
return tags
def list_machine_tags(self, machine_id):
tags = self._list_machine_tags(machine_id)
pprint.pprint(tags, indent=2)
def stop_machine(self, machine_id):
path = '/machines/{}?action=stop'.format(machine_id)
print("Stopping machine {}".format(machine_id))
if not self.dry_run:
headers, content = self._request(path, method='POST')
def delete_machine(self, machine_id):
path = '/machines/{}'.format(machine_id)
print("Deleting machine {}".format(machine_id))
if not self.dry_run:
headers, content = self._request(path, method='DELETE')
def attempt_deletion(self, current_stuck):
all_success = True
for machine_id in current_stuck:
if self.verbose:
print("Attempting to delete {} stuck in provisioning.".format(
machine_id))
if not self.dry_run:
try:
# Officially the we cannot delete non-stopped machines,
# but using the UI, we can delete machines stuck in
# provisioning or stopping, so we try.
self.delete_machine(machine_id)
if self.verbose:
print("Deleted {}".format(machine_id))
except:
print('Delete stuck machine {} using the UI.'.format(
machine_id))
all_success = False
return all_success
def _delete_running_machine(self, machine_id):
self.stop_machine(machine_id)
for ignored in until_timeout(120):
if self.verbose:
print(".", end="")
sys.stdout.flush()
sleep(self.pause)
stopping_machine = self._list_machines(machine_id)
if stopping_machine['state'] == 'stopped':
break
if self.verbose:
print("stopped")
self.delete_machine(machine_id)
def delete_old_machines(self, old_age):
machines = self._list_machines()
now = datetime.utcnow()
current_stuck = []
for machine in machines:
created = parse_iso_date(machine['created'])
age = now - created
if age > timedelta(hours=old_age):
machine_id = machine['id']
tags = self._list_machine_tags(machine_id)
if tags.get('permanent', 'false') == 'true':
continue
if machine['state'] == 'provisioning':
current_stuck.append(machine)
continue
if self.verbose:
print("Machine {} is {} old".format(machine_id, age))
if not self.dry_run:
self._delete_running_machine(machine_id)
if not self.dry_run and current_stuck:
self.attempt_deletion(current_stuck)
def parse_args(argv=None):
"""Return the argument parser for this program."""
parser = ArgumentParser('Query and manage joyent.')
parser.add_argument(
'-d', '--dry-run', action='store_true', default=False,
help='Do not make changes.')
parser.add_argument(
'-v', '--verbose', action="store_true", help='Increse verbosity.')
parser.add_argument(
"-u", "--url", dest="sdc_url",
help="SDC URL. Environment: SDC_URL=URL",
default=os.environ.get("SDC_URL"))
parser.add_argument(
"-m", "--manta-url", dest="manta_url",
help="Manta URL. Environment: MANTA_URL=URL",
default=os.environ.get("MANTA_URL"))
parser.add_argument(
"-a", "--account",
help="Manta account. Environment: MANTA_USER=ACCOUNT",
default=os.environ.get("MANTA_USER"))
parser.add_argument(
"-k", "--key-id", dest="key_id",
help="SSH key fingerprint. Environment: MANTA_KEY_ID=FINGERPRINT",
default=os.environ.get("MANTA_KEY_ID"))
parser.add_argument(
"-p", "--key-path", dest="key_path",
help="Path to the SSH key",
default=os.path.join(os.environ.get('JUJU_HOME', '~/.juju'), 'id_rsa'))
subparsers = parser.add_subparsers(help='sub-command help', dest="command")
subparsers.add_parser('list-machines', help='List running machines')
parser_delete_old_machine = subparsers.add_parser(
'delete-old-machines',
help='Delete machines older than %d hours' % OLD_MACHINE_AGE)
parser_delete_old_machine.add_argument(
'-o', '--old-age', default=OLD_MACHINE_AGE, type=int,
help='Set old machine age to n hours.')
parser_list_tags = subparsers.add_parser(
'list-tags', help='List tags of running machines')
parser_list_tags.add_argument('machine_id', help='The machine id.')
parser_list_objects = subparsers.add_parser(
'list-objects', help='List directories and files in manta')
parser_list_objects.add_argument(
'-r', '--recursive', action='store_true', default=False,
help='Include content in subdirectories.')
parser_list_objects.add_argument('path', help='The path')
parser_delete_old_objects = subparsers.add_parser(
'delete-old-objects',
help='Delete objects older than %d hours' % OLD_MACHINE_AGE)
parser_delete_old_objects.add_argument(
'-o', '--old-age', default=OLD_MACHINE_AGE, type=int,
help='Set old object age to n hours.')
parser_delete_old_objects.add_argument('path', help='The path')
args = parser.parse_args(argv)
if not args.sdc_url:
print('SDC_URL must be sourced into the environment.')
sys.exit(1)
return args
def main(argv):
args = parse_args(argv)
client = Client(
args.sdc_url, args.account, args.key_id, args.key_path, args.manta_url,
dry_run=args.dry_run, verbose=args.verbose)
if args.command == 'list-machines':
client.list_machines()
elif args.command == 'list-tags':
client.list_machine_tags(args.machine_id)
elif args.command == 'list-objects':
client.list_objects(args.path, deep=args.recursive)
elif args.command == 'delete-old-machines':
client.delete_old_machines(args.old_age)
elif args.command == 'delete-old-objects':
client.delete_old_objects(args.path, args.old_age)
else:
print("action not understood.")
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))
|