refactored fill_record_geni_info() and got rid of lookup_users()
[sfa.git] / sfa / plc / api.py
1 #
2 # Geniwrapper XML-RPC and SOAP interfaces
3 #
4 ### $Id$
5 ### $URL$
6 #
7
8 import sys
9 import os
10 import traceback
11 import string
12 import xmlrpclib
13
14 from sfa.trust.auth import Auth
15 from sfa.util.config import *
16 from sfa.util.faults import *
17 from sfa.util.debug import *
18 from sfa.trust.rights import *
19 from sfa.trust.credential import *
20 from sfa.util.misc import *
21 from sfa.util.sfalogging import *
22 from sfa.util.genitable import *
23
24 # See "2.2 Characters" in the XML specification:
25 #
26 # #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD]
27 # avoiding
28 # [#x7F-#x84], [#x86-#x9F], [#xFDD0-#xFDDF]
29
30 invalid_xml_ascii = map(chr, range(0x0, 0x8) + [0xB, 0xC] + range(0xE, 0x1F))
31 xml_escape_table = string.maketrans("".join(invalid_xml_ascii), "?" * len(invalid_xml_ascii))
32
33 def xmlrpclib_escape(s, replace = string.replace):
34     """
35     xmlrpclib does not handle invalid 7-bit control characters. This
36     function augments xmlrpclib.escape, which by default only replaces
37     '&', '<', and '>' with entities.
38     """
39
40     # This is the standard xmlrpclib.escape function
41     s = replace(s, "&", "&amp;")
42     s = replace(s, "<", "&lt;")
43     s = replace(s, ">", "&gt;",)
44
45     # Replace invalid 7-bit control characters with '?'
46     return s.translate(xml_escape_table)
47
48 def xmlrpclib_dump(self, value, write):
49     """
50     xmlrpclib cannot marshal instances of subclasses of built-in
51     types. This function overrides xmlrpclib.Marshaller.__dump so that
52     any value that is an instance of one of its acceptable types is
53     marshalled as that type.
54
55     xmlrpclib also cannot handle invalid 7-bit control characters. See
56     above.
57     """
58
59     # Use our escape function
60     args = [self, value, write]
61     if isinstance(value, (str, unicode)):
62         args.append(xmlrpclib_escape)
63
64     try:
65         # Try for an exact match first
66         f = self.dispatch[type(value)]
67     except KeyError:
68         raise
69         # Try for an isinstance() match
70         for Type, f in self.dispatch.iteritems():
71             if isinstance(value, Type):
72                 f(*args)
73                 return
74         raise TypeError, "cannot marshal %s objects" % type(value)
75     else:
76         f(*args)
77
78 # You can't hide from me!
79 xmlrpclib.Marshaller._Marshaller__dump = xmlrpclib_dump
80
81 # SOAP support is optional
82 try:
83     import SOAPpy
84     from SOAPpy.Parser import parseSOAPRPC
85     from SOAPpy.Types import faultType
86     from SOAPpy.NS import NS
87     from SOAPpy.SOAPBuilder import buildSOAP
88 except ImportError:
89     SOAPpy = None
90
91
92 def import_deep(name):
93     mod = __import__(name)
94     components = name.split('.')
95     for comp in components[1:]:
96         mod = getattr(mod, comp)
97     return mod
98
99 class GeniAPI:
100
101     # flat list of method names
102     import sfa.methods
103     methods = sfa.methods.all
104     
105     def __init__(self, config = "/etc/sfa/sfa_config", encoding = "utf-8", 
106                  peer_cert = None, interface = None, key_file = None, cert_file = None):
107         self.encoding = encoding
108
109         # Better just be documenting the API
110         if config is None:
111             return
112
113         # Load configuration
114         self.config = Config(config)
115         self.auth = Auth(peer_cert)
116         self.interface = interface
117         self.key_file = key_file
118         self.cert_file = cert_file
119         self.credential = None
120         self.plshell = self.getPLCShell()
121         self.plshell_version = self.getPLCShellVersion()
122         self.hrn = self.config.SFA_INTERFACE_HRN
123         self.time_format = "%Y-%m-%d %H:%M:%S"
124         self.logger=get_sfa_logger()
125
126     def getPLCShell(self):
127         self.plauth = {'Username': self.config.SFA_PLC_USER,
128                        'AuthMethod': 'password',
129                        'AuthString': self.config.SFA_PLC_PASSWORD}
130         try:
131             import PLC.Shell
132             shell = PLC.Shell.Shell(globals = globals())
133             shell.AuthCheck(self.plauth)
134             return shell
135         except ImportError:
136             # connect via xmlrpc
137             url = self.config.SFA_PLC_URL
138              
139             shell = xmlrpclib.Server(url, verbose = 0, allow_none = True)
140             shell.AuthCheck(self.plauth)
141             return shell
142
143     def getPLCShellVersion(self):
144         # We need to figure out what version of PLCAPI we are talking to.
145         # Some calls we need to make later will be different depending on
146         # the api version. 
147         try:
148             # This is probably a bad way to determine api versions
149             # but its easy and will work for now. Lets try to make 
150             # a call that only exists is PLCAPI.4.3. If it fails, we
151             # can assume the api version is 4.2
152             self.plshell.GetTagTypes(self.plauth)
153             return '4.3'
154         except:
155             return '4.2'
156             
157
158     def getCredential(self):
159         if self.interface in ['registry']:
160             return self.getCredentialFromLocalRegistry()
161         else:
162             return self.getCredentialFromRegistry()
163     
164
165     def getCredentialFromRegistry(self):
166         """ 
167         Get our credential from a remote registry using a geniclient connection
168         """
169         type = 'authority'
170         path = self.config.SFA_BASE_DIR
171         filename = ".".join([self.interface, self.hrn, type, "cred"])
172         cred_filename = path + os.sep + filename
173         try:
174             credential = Credential(filename = cred_filename)
175             return credential
176         except IOError:
177             from sfa.server.registry import Registries
178             registries = Registries(self)
179             registry = registries[self.hrn]
180             self_cred = registry.get_credential(None, type, self.hrn)
181             cred = registry.get_credential(self_cred, type, self.hrn)
182             cred.save_to_file(cred_filename, save_parents=True)
183             return cred
184
185     def getCredentialFromLocalRegistry(self):
186         """
187         Get our current credential directly from the local registry.
188         """
189
190         hrn = self.hrn
191         auth_hrn = self.auth.get_authority(hrn)
192     
193         # is this a root or sub authority
194         if not auth_hrn or hrn == self.config.SFA_INTERFACE_HRN:
195             auth_hrn = hrn
196         auth_info = self.auth.get_auth_info(auth_hrn)
197         table = GeniTable()
198         records = table.findObjects(hrn)
199         if not records:
200             raise RecordNotFound
201         record = records[0]
202         type = record['type']
203         object_gid = record.get_gid_object()
204         new_cred = Credential(subject = object_gid.get_subject())
205         new_cred.set_gid_caller(object_gid)
206         new_cred.set_gid_object(object_gid)
207         new_cred.set_issuer(key=auth_info.get_pkey_object(), subject=auth_hrn)
208         new_cred.set_pubkey(object_gid.get_pubkey())
209         r1 = determine_rights(type, hrn)
210         new_cred.set_privileges(r1)
211
212         auth_kind = "authority,ma,sa"
213
214         new_cred.set_parent(self.auth.hierarchy.get_auth_cred(auth_hrn, kind=auth_kind))
215
216         new_cred.encode()
217         new_cred.sign()
218
219         return new_cred
220    
221
222     def loadCredential (self):
223         """
224         Attempt to load credential from file if it exists. If it doesnt get
225         credential from registry.
226         """
227
228         # see if this file exists
229         # XX This is really the aggregate's credential. Using this is easier than getting
230         # the registry's credential from iteslf (ssl errors).   
231         ma_cred_filename = self.config.SFA_BASE_DIR + os.sep + self.interface + self.hrn + ".ma.cred"
232         try:
233             self.credential = Credential(filename = ma_cred_filename)
234         except IOError:
235             self.credential = self.getCredentialFromRegistry()
236
237     ##
238     # Convert geni fields to PLC fields for use when registering up updating
239     # registry record in the PLC database
240     #
241     # @param type type of record (user, slice, ...)
242     # @param hrn human readable name
243     # @param geni_fields dictionary of geni fields
244     # @param pl_fields dictionary of PLC fields (output)
245
246     def geni_fields_to_pl_fields(self, type, hrn, record):
247
248         def convert_ints(tmpdict, int_fields):
249             for field in int_fields:
250                 if field in tmpdict:
251                     tmpdict[field] = int(tmpdict[field])
252
253         pl_record = {}
254         #for field in record:
255         #    pl_record[field] = record[field]
256  
257         if type == "slice":
258             if not "instantiation" in pl_record:
259                 pl_record["instantiation"] = "plc-instantiated"
260             pl_record["name"] = hrn_to_pl_slicename(hrn)
261             if "url" in record:
262                pl_record["url"] = record["url"]
263             if "description" in record:
264                 pl_record["description"] = record["description"]
265
266         elif type == "node":
267             if not "hostname" in pl_record:
268                 if not "hostname" in record:
269                     raise MissingGeniInfo("hostname")
270                 pl_record["hostname"] = record["hostname"]
271             if not "model" in pl_record:
272                 pl_record["model"] = "geni"
273
274         elif type == "authority":
275             pl_record["login_base"] = hrn_to_pl_login_base(hrn)
276
277             if not "name" in pl_record:
278                 pl_record["name"] = hrn
279
280             if not "abbreviated_name" in pl_record:
281                 pl_record["abbreviated_name"] = hrn
282
283             if not "enabled" in pl_record:
284                 pl_record["enabled"] = True
285
286             if not "is_public" in pl_record:
287                 pl_record["is_public"] = True
288
289         return pl_record
290
291     def fill_record_pl_info(self, record):
292         """
293         Fill in the planetlab specific fields of a Geni record. This
294         involves calling the appropriate PLC method to retrieve the 
295         database record for the object.
296         
297         PLC data is filled into the pl_info field of the record.
298     
299         @param record: record to fill in field (in/out param)     
300         """
301         type = record['type']
302         pointer = record['pointer']
303         auth_hrn = self.hrn
304         login_base = ''
305         # records with pointer==-1 do not have plc info associated with them.
306         # for example, the top level authority records which are
307         # authorities, but not PL "sites"
308         if pointer == -1:
309             record.update({})
310             return
311
312         if (type in ["authority", "sa", "ma"]):
313             pl_res = self.plshell.GetSites(self.plauth, [pointer])
314         elif (type == "slice"):
315             pl_res = self.plshell.GetSlices(self.plauth, [pointer])
316         elif (type == "user"):
317             pl_res = self.plshell.GetPersons(self.plauth, [pointer])
318         elif (type == "node"):
319             pl_res = self.plshell.GetNodes(self.plauth, [pointer])
320         else:
321             raise UnknownGeniType(type)
322         
323         if not pl_res:
324             raise PlanetLabRecordDoesNotExist(record['hrn'])
325
326         # convert ids to hrns
327         pl_record = pl_res[0]
328         if 'site_id' in pl_record:
329             sites = self.plshell.GetSites(self.plauth, pl_record['site_id'], ['login_base'])
330             site = sites[0]
331             login_base = site['login_base']
332             pl_record['site'] = ".".join([auth_hrn, login_base])
333         if 'person_ids' in pl_record:
334             persons =  self.plshell.GetPersons(self.plauth, pl_record['person_ids'], ['email'])
335             emails = [person['email'] for person in persons]
336             usernames = [email.split('@')[0] for email in emails]
337             person_hrns = [".".join([auth_hrn, login_base, username]) for username in usernames]
338             pl_record['persons'] = person_hrns 
339         if 'slice_ids' in pl_record:
340             slices = self.plshell.GetSlices(self.plauth, pl_record['slice_ids'], ['name'])
341             slicenames = [slice['name'] for slice in slices]
342             slice_hrns = [slicename_to_hrn(auth_hrn, slicename) for slicename in slicenames]
343             pl_record['slices'] = slice_hrns
344         if 'node_ids' in pl_record:
345             nodes = self.plshell.GetNodes(self.plauth, pl_record['node_ids'], ['hostname'])
346             hostnames = [node['hostname'] for node in nodes]
347             node_hrns = [hostname_to_hrn(auth_hrn, login_base, hostname) for hostname in hostnames]
348             pl_record['nodes'] = node_hrns
349         if 'site_ids' in pl_record:
350             sites = self.plshell.GetSites(self.plauth, pl_record['site_ids'], ['login_base'])
351             login_bases = [site['login_base'] for site in sites]
352             site_hrns = [".".join([auth_hrn, lbase]) for lbase in login_bases]
353             pl_record['sites'] = site_hrns
354         if 'key_ids' in pl_record:
355             keys = self.plshell.GetKeys(self.plauth, pl_record['key_ids'])
356             pubkeys = []
357             if keys:
358                 pubkeys = [key['key'] for key in keys]
359             pl_record['keys'] = pubkeys     
360
361         record.update(pl_record)
362
363
364
365     def fill_record_geni_info(self, record):
366         geni_info = {}
367         type = record['type']
368         table = GeniTable()
369         if (type == "slice"):
370             person_ids = record.get("person_ids", [])
371             persons = table.find({'type': 'user', 'pointer': person_ids})
372             researchers = [person['hrn'] for person in persons]
373             geni_info['researcher'] = researchers
374
375         elif (type == "authority"):
376             person_ids = record.get("person_ids", [])
377             persons = table.find({'type': 'user', 'pointer': person_ids})
378             persons_dict = {}
379             for person in persons:
380                 persons_dict[person['pointer']] = person 
381             pl_persons = self.plshell.GetPersons(self.plauth, person_ids, ['person_id', 'roles'])
382             pis, techs, admins = [], [], []
383             for person in pl_persons:
384                 pointer = person['person_id']
385                 
386                 if pointer not in persons_dict:
387                     # this means there is not sfa record for this user
388                     continue    
389                 hrn = persons_dict[pointer]['hrn']    
390                 if 'pi' in person['roles']:
391                     pis.append(hrn)
392                 if 'tech' in person['roles']:
393                     techs.append(hrn)
394                 if 'admin' in person['roles']:
395                     admins.append(hrn)
396             
397             geni_info['PI'] = pis
398             geni_info['operator'] = techs
399             geni_info['owner'] = admins
400             # xxx TODO: OrganizationName
401
402         elif (type == "node"):
403             geni_info['dns'] = record.get("hostname", "")
404             # xxx TODO: URI, LatLong, IP, DNS
405     
406         elif (type == "user"):
407             geni_info['email'] = record.get("email", "")
408             # xxx TODO: PostalAddress, Phone
409
410         record.update(geni_info)
411
412     def fill_record_info(self, record):
413         """
414         Given a geni record, fill in the PLC specific and Geni specific
415         fields in the record. 
416         """
417         self.fill_record_pl_info(record)
418         self.fill_record_geni_info(record)
419
420     def update_membership_list(self, oldRecord, record, listName, addFunc, delFunc):
421         # get a list of the HRNs tht are members of the old and new records
422         if oldRecord:
423             oldList = oldRecord.get(listName, [])
424         else:
425             oldList = []     
426         newList = record.get(listName, [])
427
428         # if the lists are the same, then we don't have to update anything
429         if (oldList == newList):
430             return
431
432         # build a list of the new person ids, by looking up each person to get
433         # their pointer
434         newIdList = []
435         table = GeniTable()
436         records = table.find({'type': 'user', 'hrn': newList})
437         for rec in records:
438             newIdList.append(rec['pointer'])
439
440         # build a list of the old person ids from the person_ids field 
441         if oldRecord:
442             oldIdList = oldRecord.get("person_ids", [])
443             containerId = oldRecord.get_pointer()
444         else:
445             # if oldRecord==None, then we are doing a Register, instead of an
446             # update.
447             oldIdList = []
448             containerId = record.get_pointer()
449
450     # add people who are in the new list, but not the oldList
451         for personId in newIdList:
452             if not (personId in oldIdList):
453                 print "adding id", personId, "to", record.get_name()
454                 addFunc(self.plauth, personId, containerId)
455
456         # remove people who are in the old list, but not the new list
457         for personId in oldIdList:
458             if not (personId in newIdList):
459                 print "removing id", personId, "from", record.get_name()
460                 delFunc(self.plauth, personId, containerId)
461
462     def update_membership(self, oldRecord, record):
463         if record.type == "slice":
464             self.update_membership_list(oldRecord, record, 'researcher',
465                                         self.plshell.AddPersonToSlice,
466                                         self.plshell.DeletePersonFromSlice)
467         elif record.type == "authority":
468             # xxx TODO
469             pass
470
471
472     def callable(self, method):
473         """
474         Return a new instance of the specified method.
475         """
476         # Look up method
477         if method not in self.methods:
478             raise GeniInvalidAPIMethod, method
479         
480         # Get new instance of method
481         try:
482             classname = method.split(".")[-1]
483             module = __import__("sfa.methods." + method, globals(), locals(), [classname])
484             callablemethod = getattr(module, classname)(self)
485             return getattr(module, classname)(self)
486         except ImportError, AttributeError:
487             raise
488             raise GeniInvalidAPIMethod, method
489
490     def call(self, source, method, *args):
491         """
492         Call the named method from the specified source with the
493         specified arguments.
494         """
495         function = self.callable(method)
496         function.source = source
497         return function(*args)
498
499     def handle(self, source, data):
500         """
501         Handle an XML-RPC or SOAP request from the specified source.
502         """
503         # Parse request into method name and arguments
504         try:
505             interface = xmlrpclib
506             (args, method) = xmlrpclib.loads(data)
507             methodresponse = True
508         except Exception, e:
509             if SOAPpy is not None:
510                 interface = SOAPpy
511                 (r, header, body, attrs) = parseSOAPRPC(data, header = 1, body = 1, attrs = 1)
512                 method = r._name
513                 args = r._aslist()
514                 # XXX Support named arguments
515             else:
516                 raise e
517
518         try:
519             result = self.call(source, method, *args)
520         except Exception, fault:
521             traceback.print_exc(file = log)
522             # Handle expected faults
523             if interface == xmlrpclib:
524                 result = fault
525                 methodresponse = None
526             elif interface == SOAPpy:
527                 result = faultParameter(NS.ENV_T + ":Server", "Method Failed", method)
528                 result._setDetail("Fault %d: %s" % (fault.faultCode, fault.faultString))
529             else:
530                 raise
531
532         # Return result
533         if interface == xmlrpclib:
534             if not isinstance(result, GeniFault):
535                 result = (result,)
536
537             data = xmlrpclib.dumps(result, methodresponse = True, encoding = self.encoding, allow_none = 1)
538         elif interface == SOAPpy:
539             data = buildSOAP(kw = {'%sResponse' % method: {'Result': result}}, encoding = self.encoding)
540
541         return data
542