X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=api.py;h=f8200fb0bd587b9f9e4cc903a11b5ce6c2f03ced;hb=refs%2Fheads%2Ftrellis;hp=4a64c3de20ca0a3d5652cd2843e8bee79f79dba0;hpb=38f77cf31084d8af5d233639f1dbe10f377fb8f3;p=nodemanager.git diff --git a/api.py b/api.py index 4a64c3d..f8200fb 100644 --- a/api.py +++ b/api.py @@ -21,90 +21,14 @@ import xmlrpclib import accounts import database import logger +import sliver_vs import ticket import tools - +from api_calls import * API_SERVER_PORT = 812 UNIX_ADDR = '/tmp/sliver_mgr.api' -deliver_ticket = None # set in sm.py:start() - -api_method_dict = {} -nargs_dict = {} - -def export_to_api(nargs): - def export(method): - nargs_dict[method.__name__] = nargs - api_method_dict[method.__name__] = method - return method - return export - - -@export_to_api(0) -def Help(): - """Help(): get help""" - return ''.join([method.__doc__ + '\n' for method in api_method_dict.itervalues()]) - -@export_to_api(1) -def Ticket(tkt): - """Ticket(tkt): deliver a ticket""" - succeeded = False - if type(tkt) == str: - data = ticket.verify(tkt) - if data != None: - deliver_ticket(data) - succeeded = True - if not succeeded: raise xmlrpclib.Fault(102, 'Invalid argument: the sole argument must be a valid ticket as returned from GetTicket().') - -@export_to_api(1) -def Create(rec): - """Create(sliver_name): create a non-PLC-instantiated sliver""" - if rec['instantiation'] == 'delegated': accounts.get(rec['name']).ensure_created(rec) - -@export_to_api(1) -def Destroy(rec): - """Destroy(sliver_name): destroy a non-PLC-instantiated sliver""" - if rec['instantiation'] == 'delegated': accounts.get(rec['name']).ensure_destroyed() - -@export_to_api(1) -def Start(rec): - """Start(sliver_name): run start scripts belonging to the specified sliver""" - accounts.get(rec['name']).start() - -@export_to_api(1) -def Stop(rec): - """Stop(sliver_name): kill all processes belonging to the specified sliver""" - accounts.get(rec['name']).stop() - -@export_to_api(1) -def GetEffectiveRSpec(rec): - """GetEffectiveRSpec(sliver_name): return the RSpec allocated to the specified sliver, including loans""" - return rec.get('_rspec', {}).copy() - -@export_to_api(1) -def GetRSpec(rec): - """GetRSpec(sliver_name): return the RSpec allocated to the specified sliver, excluding loans""" - return rec.get('rspec', {}).copy() - -@export_to_api(1) -def GetLoans(rec): - """GetLoans(sliver_name): return the list of loans made by the specified sliver""" - return rec.get('_loans', [])[:] - -def validate_loans(obj): - """Check that is a valid loan specification.""" - def validate_loan(obj): return (type(obj)==list or type(obj)==tuple) and len(obj)==3 and type(obj[0])==str and type(obj[1])==str and obj[1] in database.LOANABLE_RESOURCES and type(obj[2])==int and obj[2]>=0 - return type(obj)==list and False not in map(validate_loan, obj) - -@export_to_api(2) -def SetLoans(rec, loans): - """SetLoans(sliver_name, loans): overwrite the list of loans made by the specified sliver""" - if not validate_loans(loans): raise xmlrpclib.Fault(102, 'Invalid argument: the second argument must be a well-formed loan specification') - rec['_loans'] = loans - database.db.sync() - - class APIRequestHandler(SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): # overriding _dispatch to achieve this effect is officially deprecated, # but I can't figure out how to get access to .request without @@ -118,9 +42,12 @@ class APIRequestHandler(SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): except KeyError: api_method_list = api_method_dict.keys() api_method_list.sort() - raise xmlrpclib.Fault(100, 'Invalid API method %s. Valid choices are %s' % (method_name, ', '.join(api_method_list))) + raise xmlrpclib.Fault(100, 'Invalid API method %s. Valid choices are %s' % \ + (method_name, ', '.join(api_method_list))) expected_nargs = nargs_dict[method_name] - if len(args) != expected_nargs: raise xmlrpclib.Fault(101, 'Invalid argument count: got %d, expecting %d.' % (len(args), expected_nargs)) + if len(args) != expected_nargs: + raise xmlrpclib.Fault(101, 'Invalid argument count: got %d, expecting %d.' % \ + (len(args), expected_nargs)) else: # Figure out who's calling. # XXX - these ought to be imported directly from some .h file @@ -129,12 +56,16 @@ class APIRequestHandler(SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): ucred = self.request.getsockopt(socket.SOL_SOCKET, SO_PEERCRED, sizeof_struct_ucred) xid = struct.unpack('3i', ucred)[2] caller_name = pwd.getpwuid(xid)[0] - if method_name not in ('Help', 'Ticket'): + if method_name not in ('ReCreate', 'Help', 'Ticket', 'GetXIDs', 'GetSSHKeys'): target_name = args[0] target_rec = database.db.get(target_name) - if not target_rec: raise xmlrpclib.Fault(102, 'Invalid argument: the first argument must be a sliver name.') - if not (caller_name in (args[0], 'root') or (caller_name, method_name) in target_rec['delegations']): raise xmlrpclib.Fault(108, 'Permission denied.') - result = method(target_rec, *args[1:]) + if not (target_rec and target_rec['type'].startswith('sliver.')): + raise xmlrpclib.Fault(102, \ + 'Invalid argument: the first argument must be a sliver name.') + if not caller_name in (target_name, target_rec['delegations']): + raise xmlrpclib.Fault(108, '%s: Permission denied.' % caller_name) + try: result = method(target_rec, *args[1:]) + except Exception, err: raise xmlrpclib.Fault(104, 'Error in call: %s' %err) else: result = method(*args) if result == None: result = 1 return result