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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
|
#!/usr/bin/python
# vim: ts=4 sw=4 smarttab expandtab
import collections
import contextlib
import errno
import json
import logging
import logging.handlers
import os
import rados
import textwrap
import xml.etree.ElementTree
import xml.sax.saxutils
import flask
from ceph_argparse import *
#
# Globals and defaults
#
DEFAULT_ADDR = '0.0.0.0'
DEFAULT_PORT = '5000'
DEFAULT_ID = 'restapi'
DEFAULT_BASEURL = '/api/v0.1'
DEFAULT_LOG_LEVEL = 'warning'
# default client name will be 'client.<DEFAULT_ID>'
# 'app' must be global for decorators, etc.
APPNAME = '__main__'
app = flask.Flask(APPNAME)
LOGLEVELS = {
'critical':logging.CRITICAL,
'error':logging.ERROR,
'warning':logging.WARNING,
'info':logging.INFO,
'debug':logging.DEBUG,
}
def find_up_osd(app):
'''
Find an up OSD. Return the last one that's up.
Returns id as an int.
'''
ret, outbuf, outs = json_command(app.ceph_cluster, prefix="osd dump",
argdict=dict(format='json'))
if ret:
raise EnvironmentError(ret, 'Can\'t get osd dump output')
try:
osddump = json.loads(outbuf)
except:
raise EnvironmentError(errno.EINVAL, 'Invalid JSON back from osd dump')
osds = [osd['osd'] for osd in osddump['osds'] if osd['up']]
if not osds:
raise EnvironmentError(errno.ENOENT, 'No up OSDs found')
return int(osds[-1])
METHOD_DICT = {'r':['GET'], 'w':['PUT', 'DELETE']}
def api_setup(app, conf, cluster, clientname, clientid, args):
'''
This is done globally, and cluster connection kept open for
the lifetime of the daemon. librados should assure that even
if the cluster goes away and comes back, our connection remains.
Initialize the running instance. Open the cluster, get the command
signatures, module, perms, and help; stuff them away in the app.ceph_urls
dict. Also save app.ceph_sigdict for help() handling.
'''
def get_command_descriptions(cluster, target=('mon','')):
ret, outbuf, outs = json_command(cluster, target,
prefix='get_command_descriptions',
timeout=30)
if ret:
err = "Can't get command descriptions: {0}".format(outs)
app.logger.error(err)
raise EnvironmentError(ret, err)
try:
sigdict = parse_json_funcsigs(outbuf, 'rest')
except Exception as e:
err = "Can't parse command descriptions: {}".format(e)
app.logger.error(err)
raise EnvironmentError(err)
return sigdict
app.ceph_cluster = cluster or 'ceph'
app.ceph_urls = {}
app.ceph_sigdict = {}
app.ceph_baseurl = ''
conf = conf or ''
cluster = cluster or 'ceph'
clientid = clientid or DEFAULT_ID
clientname = clientname or 'client.' + clientid
app.ceph_cluster = rados.Rados(name=clientname, conffile=conf)
app.ceph_cluster.conf_parse_argv(args)
app.ceph_cluster.connect()
app.ceph_baseurl = app.ceph_cluster.conf_get('restapi_base_url') \
or DEFAULT_BASEURL
if app.ceph_baseurl.endswith('/'):
app.ceph_baseurl = app.ceph_baseurl[:-1]
addr = app.ceph_cluster.conf_get('public_addr') or DEFAULT_ADDR
# remove any nonce from the conf value
addr = addr.split('/')[0]
addr, port = addr.rsplit(':', 1)
addr = addr or DEFAULT_ADDR
port = port or DEFAULT_PORT
port = int(port)
loglevel = app.ceph_cluster.conf_get('restapi_log_level') \
or DEFAULT_LOG_LEVEL
logfile = app.ceph_cluster.conf_get('log_file')
app.logger.addHandler(logging.handlers.WatchedFileHandler(logfile))
app.logger.setLevel(LOGLEVELS[loglevel.lower()])
for h in app.logger.handlers:
h.setFormatter(logging.Formatter(
'%(asctime)s %(name)s %(levelname)s: %(message)s'))
app.ceph_sigdict = get_command_descriptions(app.ceph_cluster)
osdid = find_up_osd(app)
if osdid:
osd_sigdict = get_command_descriptions(app.ceph_cluster,
target=('osd', int(osdid)))
# shift osd_sigdict keys up to fit at the end of the mon's app.ceph_sigdict
maxkey = sorted(app.ceph_sigdict.keys())[-1]
maxkey = int(maxkey.replace('cmd', ''))
osdkey = maxkey + 1
for k, v in osd_sigdict.iteritems():
newv = v
newv['flavor'] = 'tell'
globk = 'cmd' + str(osdkey)
app.ceph_sigdict[globk] = newv
osdkey += 1
# app.ceph_sigdict maps "cmdNNN" to a dict containing:
# 'sig', an array of argdescs
# 'help', the helptext
# 'module', the Ceph module this command relates to
# 'perm', a 'rwx*' string representing required permissions, and also
# a hint as to whether this is a GET or POST/PUT operation
# 'avail', a comma-separated list of strings of consumers that should
# display this command (filtered by parse_json_funcsigs() above)
app.ceph_urls = {}
for cmdnum, cmddict in app.ceph_sigdict.iteritems():
cmdsig = cmddict['sig']
flavor = cmddict.get('flavor', 'mon')
url, params = generate_url_and_params(app, cmdsig, flavor)
perm = cmddict['perm']
for k in METHOD_DICT.iterkeys():
if k in perm:
methods = METHOD_DICT[k]
urldict = {'paramsig':params,
'help':cmddict['help'],
'module':cmddict['module'],
'perm':perm,
'flavor':flavor,
'methods':methods,
}
# app.ceph_urls contains a list of urldicts (usually only one long)
if url not in app.ceph_urls:
app.ceph_urls[url] = [urldict]
else:
# If more than one, need to make union of methods of all.
# Method must be checked in handler
methodset = set(methods)
for old_urldict in app.ceph_urls[url]:
methodset |= set(old_urldict['methods'])
methods = list(methodset)
app.ceph_urls[url].append(urldict)
# add, or re-add, rule with all methods and urldicts
app.add_url_rule(url, url, handler, methods=methods)
url += '.<fmt>'
app.add_url_rule(url, url, handler, methods=methods)
app.logger.debug("urls added: %d", len(app.ceph_urls))
app.add_url_rule('/<path:catchall_path>', '/<path:catchall_path>',
handler, methods=['GET', 'PUT'])
return addr, port
def generate_url_and_params(app, sig, flavor):
'''
Digest command signature from cluster; generate an absolute
(including app.ceph_baseurl) endpoint from all the prefix words,
and a list of non-prefix param descs
'''
url = ''
params = []
# the OSD command descriptors don't include the 'tell <target>', so
# tack it onto the front of sig
if flavor == 'tell':
tellsig = parse_funcsig(['tell',
{'name':'target', 'type':'CephOsdName'}])
sig = tellsig + sig
for desc in sig:
# prefixes go in the URL path
if desc.t == CephPrefix:
url += '/' + desc.instance.prefix
# CephChoices with 1 required string (not --) do too, unless
# we've already started collecting params, in which case they
# too are params
elif desc.t == CephChoices and \
len(desc.instance.strings) == 1 and \
desc.req and \
not str(desc.instance).startswith('--') and \
not params:
url += '/' + str(desc.instance)
else:
# tell/<target> is a weird case; the URL includes what
# would everywhere else be a parameter
if flavor == 'tell' and \
(desc.t, desc.name) == (CephOsdName, 'target'):
url += '/<target>'
else:
params.append(desc)
return app.ceph_baseurl + url, params
#
# end setup (import-time) functions, begin request-time functions
#
def concise_sig_for_uri(sig, flavor):
'''
Return a generic description of how one would send a REST request for sig
'''
prefix = []
args = []
ret = ''
if flavor == 'tell':
ret = 'tell/<osdid-or-pgid>/'
for d in sig:
if d.t == CephPrefix:
prefix.append(d.instance.prefix)
else:
args.append(d.name + '=' + str(d))
ret += '/'.join(prefix)
if args:
ret += '?' + '&'.join(args)
return ret
def show_human_help(prefix):
'''
Dump table showing commands matching prefix
'''
# XXX There ought to be a better discovery mechanism than an HTML table
s = '<html><body><table border=1><th>Possible commands:</th><th>Method</th><th>Description</th>'
permmap = {'r':'GET', 'rw':'PUT'}
line = ''
for cmdsig in sorted(app.ceph_sigdict.itervalues(), cmp=descsort):
concise = concise_sig(cmdsig['sig'])
flavor = cmdsig.get('flavor', 'mon')
if flavor == 'tell':
concise = 'tell/<target>/' + concise
if concise.startswith(prefix):
line = ['<tr><td>']
wrapped_sig = textwrap.wrap(
concise_sig_for_uri(cmdsig['sig'], flavor), 40
)
for sigline in wrapped_sig:
line.append(flask.escape(sigline) + '\n')
line.append('</td><td>')
line.append(permmap[cmdsig['perm']])
line.append('</td><td>')
line.append(flask.escape(cmdsig['help']))
line.append('</td></tr>\n')
s += ''.join(line)
s += '</table></body></html>'
if line:
return s
else:
return ''
@app.before_request
def log_request():
'''
For every request, log it. XXX Probably overkill for production
'''
app.logger.info(flask.request.url + " from " + flask.request.remote_addr + " " + flask.request.user_agent.string)
app.logger.debug("Accept: %s", flask.request.accept_mimetypes.values())
@app.route('/')
def root_redir():
return flask.redirect(app.ceph_baseurl)
def make_response(fmt, output, statusmsg, errorcode):
'''
If formatted output, cobble up a response object that contains the
output and status wrapped in enclosing objects; if nonformatted, just
use output+status. Return HTTP status errorcode in any event.
'''
response = output
if fmt:
if 'json' in fmt:
try:
native_output = json.loads(output or '[]')
response = json.dumps({"output":native_output,
"status":statusmsg})
except:
return flask.make_response("Error decoding JSON from " +
output, 500)
elif 'xml' in fmt:
# XXX
# one is tempted to do this with xml.etree, but figuring out how
# to 'un-XML' the XML-dumped output so it can be reassembled into
# a piece of the tree here is beyond me right now.
#ET = xml.etree.ElementTree
#resp_elem = ET.Element('response')
#o = ET.SubElement(resp_elem, 'output')
#o.text = output
#s = ET.SubElement(resp_elem, 'status')
#s.text = statusmsg
#response = ET.tostring(resp_elem)
response = '''
<response>
<output>
{0}
</output>
<status>
{1}
</status>
</response>'''.format(response, xml.sax.saxutils.escape(statusmsg))
else:
if not 200 <= errorcode < 300:
response = response + '\n' + statusmsg + '\n'
return flask.make_response(response, errorcode)
def handler(catchall_path=None, fmt=None, target=None):
'''
Main endpoint handler; generic for every endpoint, including catchall.
Handles the catchall, anything with <.fmt>, anything with embedded
<target>. Partial match or ?help cause the HTML-table
"show_human_help" output.
'''
ep = catchall_path or flask.request.endpoint
ep = ep.replace('.<fmt>', '')
if ep[0] != '/':
ep = '/' + ep
# demand that endpoint begin with app.ceph_baseurl
if not ep.startswith(app.ceph_baseurl):
return make_response(fmt, '', 'Page not found', 404)
rel_ep = ep[len(app.ceph_baseurl)+1:]
# Extensions override Accept: headers override defaults
if not fmt:
if 'application/json' in flask.request.accept_mimetypes.values():
fmt = 'json'
elif 'application/xml' in flask.request.accept_mimetypes.values():
fmt = 'xml'
prefix = ''
pgid = None
cmdtarget = 'mon', ''
if target:
# got tell/<target>; validate osdid or pgid
name = CephOsdName()
pgidobj = CephPgid()
try:
name.valid(target)
except ArgumentError:
# try pgid
try:
pgidobj.valid(target)
except ArgumentError:
return flask.make_response("invalid osdid or pgid", 400)
else:
# it's a pgid
pgid = pgidobj.val
cmdtarget = 'pg', pgid
else:
# it's an osd
cmdtarget = name.nametype, name.nameid
# prefix does not include tell/<target>/
prefix = ' '.join(rel_ep.split('/')[2:]).strip()
else:
# non-target command: prefix is entire path
prefix = ' '.join(rel_ep.split('/')).strip()
# show "match as much as you gave me" help for unknown endpoints
if not ep in app.ceph_urls:
helptext = show_human_help(prefix)
if helptext:
resp = flask.make_response(helptext, 400)
resp.headers['Content-Type'] = 'text/html'
return resp
else:
return make_response(fmt, '', 'Invalid endpoint ' + ep, 400)
found = None
exc = ''
for urldict in app.ceph_urls[ep]:
if flask.request.method not in urldict['methods']:
continue
paramsig = urldict['paramsig']
# allow '?help' for any specifically-known endpoint
if 'help' in flask.request.args:
response = flask.make_response('{0}: {1}'.\
format(prefix + concise_sig(paramsig), urldict['help']))
response.headers['Content-Type'] = 'text/plain'
return response
# if there are parameters for this endpoint, process them
if paramsig:
args = {}
for k, l in flask.request.args.iterlists():
if len(l) == 1:
args[k] = l[0]
else:
args[k] = l
# is this a valid set of params?
try:
argdict = validate(args, paramsig)
found = urldict
break
except Exception as e:
exc += str(e)
continue
else:
if flask.request.args:
continue
found = urldict
argdict = {}
break
if not found:
return make_response(fmt, '', exc + '\n', 400)
argdict['format'] = fmt or 'plain'
argdict['module'] = found['module']
argdict['perm'] = found['perm']
if pgid:
argdict['pgid'] = pgid
if not cmdtarget:
cmdtarget = ('mon', '')
app.logger.debug('sending command prefix %s argdict %s', prefix, argdict)
ret, outbuf, outs = json_command(app.ceph_cluster, prefix=prefix,
target=cmdtarget,
inbuf=flask.request.data, argdict=argdict)
if ret:
return make_response(fmt, '', 'Error: {0} ({1})'.format(outs, ret), 400)
response = make_response(fmt, outbuf, outs or 'OK', 200)
if fmt:
contenttype = 'application/' + fmt.replace('-pretty','')
else:
contenttype = 'text/plain'
response.headers['Content-Type'] = contenttype
return response
#
# Main entry point from wrapper/WSGI server: call with cmdline args,
# get back the WSGI app entry point
#
def generate_app(conf, cluster, clientname, clientid, args):
addr, port = api_setup(app, conf, cluster, clientname, clientid, args)
app.ceph_addr = addr
app.ceph_port = port
return app
|