Merge branch 'upstreammaster'
[sfa.git] / sfa / managers / registry_manager.py
1 import types
2 # for get_key_from_incoming_ip
3 import tempfile
4 import os
5 import commands
6
7 from sfa.util.faults import RecordNotFound, AccountNotEnabled, PermissionError, MissingAuthority, \
8     UnknownSfaType, ExistingRecord, NonExistingRecord
9 from sfa.util.sfatime import utcparse, datetime_to_epoch
10 from sfa.util.prefixTree import prefixTree
11 from sfa.util.xrn import Xrn, get_authority, hrn_to_urn, urn_to_hrn
12 from sfa.util.version import version_core
13 from sfa.util.sfalogging import logger
14
15 from sfa.trust.gid import GID 
16 from sfa.trust.credential import Credential
17 from sfa.trust.certificate import Certificate, Keypair, convert_public_key
18 from sfa.trust.gid import create_uuid
19
20 from sfa.storage.model import make_record, RegRecord, RegAuthority, RegUser, RegSlice, RegKey, \
21     augment_with_sfa_builtins
22 from sfa.storage.alchemy import dbsession
23 ### the types that we need to exclude from sqlobjects before being able to dump
24 # them on the xmlrpc wire
25 from sqlalchemy.orm.collections import InstrumentedList
26
27 class RegistryManager:
28
29     def __init__ (self, config): pass
30
31     # The GENI GetVersion call
32     def GetVersion(self, api, options):
33         peers = dict ( [ (hrn,interface.get_url()) for (hrn,interface) in api.registries.iteritems() 
34                        if hrn != api.hrn])
35         xrn=Xrn(api.hrn)
36         return version_core({'interface':'registry',
37                              'sfa': 2,
38                              'geni_api': 2,
39                              'hrn':xrn.get_hrn(),
40                              'urn':xrn.get_urn(),
41                              'peers':peers})
42     
43     def GetCredential(self, api, xrn, type, caller_xrn=None):
44         # convert xrn to hrn     
45         if type:
46             hrn = urn_to_hrn(xrn)[0]
47         else:
48             hrn, type = urn_to_hrn(xrn)
49             
50         # Is this a root or sub authority
51         auth_hrn = api.auth.get_authority(hrn)
52         if not auth_hrn or hrn == api.config.SFA_INTERFACE_HRN:
53             auth_hrn = hrn
54         auth_info = api.auth.get_auth_info(auth_hrn)
55         # get record info
56         record=dbsession.query(RegRecord).filter_by(type=type,hrn=hrn).first()
57         if not record:
58             raise RecordNotFound("hrn=%s, type=%s"%(hrn,type))
59
60         # get the callers gid
61         # if caller_xrn is not specified assume the caller is the record
62         # object itself.
63         if not caller_xrn:
64             caller_hrn = hrn
65             caller_gid = record.get_gid_object()
66         else:
67             caller_hrn, caller_type = urn_to_hrn(caller_xrn)
68             if caller_type:
69                 caller_record = dbsession.query(RegRecord).filter_by(hrn=caller_hrn,type=caller_type).first()
70             else:
71                 caller_record = dbsession.query(RegRecord).filter_by(hrn=caller_hrn).first()
72             if not caller_record:
73                 raise RecordNotFound("Unable to associated caller (hrn=%s, type=%s) with credential for (hrn: %s, type: %s)"%(caller_hrn, caller_type, hrn, type))
74             caller_gid = GID(string=caller_record.gid)
75  
76         object_hrn = record.get_gid_object().get_hrn()
77         # call the builtin authorization/credential generation engine
78         rights = api.auth.determine_user_rights(caller_hrn, record)
79         # make sure caller has rights to this object
80         if rights.is_empty():
81             raise PermissionError("%s has no rights to %s (%s)" % \
82                                   (caller_hrn, object_hrn, xrn))    
83         object_gid = GID(string=record.gid)
84         new_cred = Credential(subject = object_gid.get_subject())
85         new_cred.set_gid_caller(caller_gid)
86         new_cred.set_gid_object(object_gid)
87         new_cred.set_issuer_keys(auth_info.get_privkey_filename(), auth_info.get_gid_filename())
88         #new_cred.set_pubkey(object_gid.get_pubkey())
89         new_cred.set_privileges(rights)
90         new_cred.get_privileges().delegate_all_privileges(True)
91         if hasattr(record,'expires'):
92             date = utcparse(record.expires)
93             expires = datetime_to_epoch(date)
94             new_cred.set_expiration(int(expires))
95         auth_kind = "authority,ma,sa"
96         # Parent not necessary, verify with certs
97         #new_cred.set_parent(api.auth.hierarchy.get_auth_cred(auth_hrn, kind=auth_kind))
98         new_cred.encode()
99         new_cred.sign()
100     
101         return new_cred.save_to_string(save_parents=True)
102     
103     
104     # the default for full, which means 'dig into the testbed as well', should be false
105     def Resolve(self, api, xrns, type=None, details=False):
106     
107         if not isinstance(xrns, types.ListType):
108             # try to infer type if not set and we get a single input
109             if not type:
110                 type = Xrn(xrns).get_type()
111             xrns = [xrns]
112         hrns = [urn_to_hrn(xrn)[0] for xrn in xrns] 
113
114         # load all known registry names into a prefix tree and attempt to find
115         # the longest matching prefix
116         # create a dict where key is a registry hrn and its value is a list
117         # of hrns at that registry (determined by the known prefix tree).  
118         xrn_dict = {}
119         registries = api.registries
120         tree = prefixTree()
121         registry_hrns = registries.keys()
122         tree.load(registry_hrns)
123         for xrn in xrns:
124             registry_hrn = tree.best_match(urn_to_hrn(xrn)[0])
125             if registry_hrn not in xrn_dict:
126                 xrn_dict[registry_hrn] = []
127             xrn_dict[registry_hrn].append(xrn)
128             
129         records = [] 
130         for registry_hrn in xrn_dict:
131             # skip the hrn without a registry hrn
132             # XX should we let the user know the authority is unknown?       
133             if not registry_hrn:
134                 continue
135     
136             # if the best match (longest matching hrn) is not the local registry,
137             # forward the request
138             xrns = xrn_dict[registry_hrn]
139             if registry_hrn != api.hrn:
140                 credential = api.getCredential()
141                 interface = api.registries[registry_hrn]
142                 server_proxy = api.server_proxy(interface, credential)
143                 # should propagate the details flag but that's not supported in the xmlrpc interface yet
144                 #peer_records = server_proxy.Resolve(xrns, credential,type, details=details)
145                 peer_records = server_proxy.Resolve(xrns, credential)
146                 # pass foreign records as-is
147                 # previous code used to read
148                 # records.extend([SfaRecord(dict=record).as_dict() for record in peer_records])
149                 # not sure why the records coming through xmlrpc had to be processed at all
150                 records.extend(peer_records)
151     
152         # try resolving the remaining unfound records at the local registry
153         local_hrns = list ( set(hrns).difference([record['hrn'] for record in records]) )
154         # 
155         local_records = dbsession.query(RegRecord).filter(RegRecord.hrn.in_(local_hrns))
156         if type:
157             local_records = local_records.filter_by(type=type)
158         local_records=local_records.all()
159         
160         for local_record in local_records:
161             augment_with_sfa_builtins (local_record)
162
163         logger.info("Resolve, (details=%s,type=%s) local_records=%s "%(details,type,local_records))
164         local_dicts = [ record.__dict__ for record in local_records ]
165         
166         if details:
167             # in details mode we get as much info as we can, which involves contacting the 
168             # testbed for getting implementation details about the record
169             self.driver.augment_records_with_testbed_info(local_dicts)
170             # also we fill the 'url' field for known authorities
171             # used to be in the driver code, sounds like a poorman thing though
172             def solve_neighbour_url (record):
173                 if not record.type.startswith('authority'): return 
174                 hrn=record.hrn
175                 for neighbour_dict in [ api.aggregates, api.registries ]:
176                     if hrn in neighbour_dict:
177                         record.url=neighbour_dict[hrn].get_url()
178                         return 
179             for record in local_records: solve_neighbour_url (record)
180         
181         # convert local record objects to dicts for xmlrpc
182         # xxx somehow here calling dict(record) issues a weird error
183         # however record.todict() seems to work fine
184         # records.extend( [ dict(record) for record in local_records ] )
185         records.extend( [ record.todict(exclude_types=[InstrumentedList]) for record in local_records ] )
186
187         if not records:
188             raise RecordNotFound(str(hrns))
189     
190         return records
191     
192     def List (self, api, xrn, origin_hrn=None, options={}):
193         # load all know registry names into a prefix tree and attempt to find
194         # the longest matching prefix
195         hrn, type = urn_to_hrn(xrn)
196         registries = api.registries
197         registry_hrns = registries.keys()
198         tree = prefixTree()
199         tree.load(registry_hrns)
200         registry_hrn = tree.best_match(hrn)
201        
202         #if there was no match then this record belongs to an unknow registry
203         if not registry_hrn:
204             raise MissingAuthority(xrn)
205         # if the best match (longest matching hrn) is not the local registry,
206         # forward the request
207         record_dicts = []    
208         if registry_hrn != api.hrn:
209             credential = api.getCredential()
210             interface = api.registries[registry_hrn]
211             server_proxy = api.server_proxy(interface, credential)
212             record_list = server_proxy.List(xrn, credential, options)
213             # same as above, no need to process what comes from through xmlrpc
214             # pass foreign records as-is
215             record_dicts = record_list
216         
217         # if we still have not found the record yet, try the local registry
218         if not record_dicts:
219             recursive = False
220             if ('recursive' in options and options['recursive']):
221                 recursive = True
222             elif hrn.endswith('*'):
223                 hrn = hrn[:-1]
224                 recursive = True
225
226             if not api.auth.hierarchy.auth_exists(hrn):
227                 raise MissingAuthority(hrn)
228             if recursive:
229                 records = dbsession.query(RegRecord).filter(RegRecord.hrn.startswith(hrn))
230             else:
231                 records = dbsession.query(RegRecord).filter_by(authority=hrn)
232             # so that sfi list can show more than plain names...
233             for record in records: augment_with_sfa_builtins (record)
234             record_dicts=[ record.todict(exclude_types=[InstrumentedList]) for record in records ]
235     
236         return record_dicts
237     
238     
239     def CreateGid(self, api, xrn, cert):
240         # get the authority
241         authority = Xrn(xrn=xrn).get_authority_hrn()
242         auth_info = api.auth.get_auth_info(authority)
243         if not cert:
244             pkey = Keypair(create=True)
245         else:
246             certificate = Certificate(string=cert)
247             pkey = certificate.get_pubkey()    
248         gid = api.auth.hierarchy.create_gid(xrn, create_uuid(), pkey) 
249         return gid.save_to_string(save_parents=True)
250     
251     ####################
252     # utility for handling relationships among the SFA objects 
253     
254     # subject_record describes the subject of the relationships
255     # ref_record contains the target values for the various relationships we need to manage
256     # (to begin with, this is just the slice x person (researcher) and authority x person (pi) relationships)
257     def update_driver_relations (self, subject_obj, ref_obj):
258         type=subject_obj.type
259         #for (k,v) in subject_obj.__dict__.items(): print k,'=',v
260         if type=='slice' and hasattr(ref_obj,'researcher'):
261             self.update_driver_relation(subject_obj, ref_obj.researcher, 'user', 'researcher')
262         elif type=='authority' and hasattr(ref_obj,'pi'):
263             self.update_driver_relation(subject_obj,ref_obj.pi, 'user', 'pi')
264         
265     # field_key is the name of one field in the record, typically 'researcher' for a 'slice' record
266     # hrns is the list of hrns that should be linked to the subject from now on
267     # target_type would be e.g. 'user' in the 'slice' x 'researcher' example
268     def update_driver_relation (self, record_obj, hrns, target_type, relation_name):
269         # locate the linked objects in our db
270         subject_type=record_obj.type
271         subject_id=record_obj.pointer
272         # get the 'pointer' field of all matching records
273         link_id_tuples = dbsession.query(RegRecord.pointer).filter_by(type=target_type).filter(RegRecord.hrn.in_(hrns)).all()
274         # sqlalchemy returns named tuples for columns
275         link_ids = [ tuple.pointer for tuple in link_id_tuples ]
276         self.driver.update_relation (subject_type, target_type, relation_name, subject_id, link_ids)
277
278     def Register(self, api, record_dict):
279     
280         hrn, type = record_dict['hrn'], record_dict['type']
281         urn = hrn_to_urn(hrn,type)
282         # validate the type
283         if type not in ['authority', 'slice', 'node', 'user']:
284             raise UnknownSfaType(type) 
285         
286         # check if record_dict already exists
287         existing_records = dbsession.query(RegRecord).filter_by(type=type,hrn=hrn).all()
288         if existing_records:
289             raise ExistingRecord(hrn)
290            
291         assert ('type' in record_dict)
292         # returns the right type of RegRecord according to type in record
293         record = make_record(dict=record_dict)
294         record.just_created()
295         record.authority = get_authority(record.hrn)
296         auth_info = api.auth.get_auth_info(record.authority)
297         pub_key = None
298         # make sure record has a gid
299         if not record.gid:
300             uuid = create_uuid()
301             pkey = Keypair(create=True)
302             if getattr(record,'keys',None):
303                 pub_key=record.keys
304                 # use only first key in record
305                 if isinstance(record.keys, types.ListType):
306                     pub_key = record.keys[0]
307                 pkey = convert_public_key(pub_key)
308     
309             gid_object = api.auth.hierarchy.create_gid(urn, uuid, pkey)
310             gid = gid_object.save_to_string(save_parents=True)
311             record.gid = gid
312     
313         if isinstance (record, RegAuthority):
314             # update the tree
315             if not api.auth.hierarchy.auth_exists(hrn):
316                 api.auth.hierarchy.create_auth(hrn_to_urn(hrn,'authority'))
317     
318             # get the GID from the newly created authority
319             auth_info = api.auth.get_auth_info(hrn)
320             gid = auth_info.get_gid_object()
321             record.gid=gid.save_to_string(save_parents=True)
322
323             # locate objects for relationships
324             pi_hrns = getattr(record,'pi',None)
325             if pi_hrns is not None: record.update_pis (pi_hrns)
326
327         elif isinstance (record, RegSlice):
328             researcher_hrns = getattr(record,'researcher',None)
329             if researcher_hrns is not None: record.update_researchers (researcher_hrns)
330         
331         elif isinstance (record, RegUser):
332             # create RegKey objects for incoming keys
333             if hasattr(record,'keys'): 
334                 logger.debug ("creating %d keys for user %s"%(len(record.keys),record.hrn))
335                 record.reg_keys = [ RegKey (key) for key in record.keys ]
336             
337         # update testbed-specific data if needed
338         pointer = self.driver.register (record.__dict__, hrn, pub_key)
339
340         record.pointer=pointer
341         dbsession.add(record)
342         dbsession.commit()
343     
344         # update membership for researchers, pis, owners, operators
345         self.update_driver_relations (record, record)
346         
347         return record.get_gid_object().save_to_string(save_parents=True)
348     
349     def Update(self, api, record_dict):
350         assert ('type' in record_dict)
351         new_record=make_record(dict=record_dict)
352         (type,hrn) = (new_record.type, new_record.hrn)
353         
354         # make sure the record exists
355         record = dbsession.query(RegRecord).filter_by(type=type,hrn=hrn).first()
356         if not record:
357             raise RecordNotFound("hrn=%s, type=%s"%(hrn,type))
358         record.just_updated()
359     
360         # Use the pointer from the existing record, not the one that the user
361         # gave us. This prevents the user from inserting a forged pointer
362         pointer = record.pointer
363     
364         # is there a change in keys ?
365         new_key=None
366         if type=='user':
367             if getattr(new_key,'keys',None):
368                 new_key=new_record.keys
369                 if isinstance (new_key,types.ListType):
370                     new_key=new_key[0]
371
372         # take new_key into account
373         if new_key:
374             # update the openssl key and gid
375             pkey = convert_public_key(new_key)
376             uuid = create_uuid()
377             urn = hrn_to_urn(hrn,type)
378             gid_object = api.auth.hierarchy.create_gid(urn, uuid, pkey)
379             gid = gid_object.save_to_string(save_parents=True)
380             record.gid = gid
381             dsession.commit()
382         
383         # xxx should do side effects from new_record to record
384         # not too sure how to do that
385         # not too big a deal with planetlab as the driver is authoritative, but...
386
387         # update native relations
388         if isinstance (record, RegSlice):
389             researcher_hrns = getattr(new_record,'researcher',None)
390             if researcher_hrns is not None: record.update_researchers (researcher_hrns)
391             dbsession.commit()
392
393         elif isinstance (record, RegAuthority):
394             pi_hrns = getattr(new_record,'pi',None)
395             if pi_hrns is not None: record.update_pis (pi_hrns)
396             dbsession.commit()
397         
398         # update the PLC information that was specified with the record
399         # xxx oddly enough, without this useless statement, 
400         # record.__dict__ as received by the driver seems to be off
401         # anyway the driver should receive an object 
402         # (and then extract __dict__ itself if needed)
403         print "DO NOT REMOVE ME before driver.update, record=%s"%record
404         if not self.driver.update (record.__dict__, new_record.__dict__, hrn, new_key):
405             logger.warning("driver.update failed")
406     
407         # update membership for researchers, pis, owners, operators
408         self.update_driver_relations (record, new_record)
409         
410         return 1 
411     
412     # expecting an Xrn instance
413     def Remove(self, api, xrn, origin_hrn=None):
414         hrn=xrn.get_hrn()
415         type=xrn.get_type()
416         request=dbsession.query(RegRecord).filter_by(hrn=hrn)
417         if type and type not in ['all', '*']:
418             request=request.filter_by(type=type)
419     
420         record = request.first()
421         if not record:
422             msg="Could not find hrn %s"%hrn
423             if type: msg += " type=%s"%type
424             raise RecordNotFound(msg)
425
426         type = record.type
427         if type not in ['slice', 'user', 'node', 'authority'] :
428             raise UnknownSfaType(type)
429
430         credential = api.getCredential()
431         registries = api.registries
432     
433         # Try to remove the object from the PLCDB of federated agg.
434         # This is attempted before removing the object from the local agg's PLCDB and sfa table
435         if hrn.startswith(api.hrn) and type in ['user', 'slice', 'authority']:
436             for registry in registries:
437                 if registry not in [api.hrn]:
438                     try:
439                         result=registries[registry].remove_peer_object(credential, record, origin_hrn)
440                     except:
441                         pass
442
443         # call testbed callback first
444         # IIUC this is done on the local testbed TOO because of the refreshpeer link
445         if not self.driver.remove(record.__dict__):
446             logger.warning("driver.remove failed")
447
448         # delete from sfa db
449         dbsession.delete(record)
450         dbsession.commit()
451     
452         return 1
453
454     # This is a PLC-specific thing, won't work with other platforms
455     def get_key_from_incoming_ip (self, api):
456         # verify that the callers's ip address exist in the db and is an interface
457         # for a node in the db
458         (ip, port) = api.remote_addr
459         interfaces = self.driver.shell.GetInterfaces({'ip': ip}, ['node_id'])
460         if not interfaces:
461             raise NonExistingRecord("no such ip %(ip)s" % locals())
462         nodes = self.driver.shell.GetNodes([interfaces[0]['node_id']], ['node_id', 'hostname'])
463         if not nodes:
464             raise NonExistingRecord("no such node using ip %(ip)s" % locals())
465         node = nodes[0]
466        
467         # look up the sfa record
468         record=dbsession.query(RegRecord).filter_by(type='node',pointer=node['node_id']).first()
469         if not record:
470             raise RecordNotFound("node with pointer %s"%node['node_id'])
471         
472         # generate a new keypair and gid
473         uuid = create_uuid()
474         pkey = Keypair(create=True)
475         urn = hrn_to_urn(record.hrn, record.type)
476         gid_object = api.auth.hierarchy.create_gid(urn, uuid, pkey)
477         gid = gid_object.save_to_string(save_parents=True)
478         record.gid = gid
479
480         # update the record
481         dbsession.commit()
482   
483         # attempt the scp the key
484         # and gid onto the node
485         # this will only work for planetlab based components
486         (kfd, key_filename) = tempfile.mkstemp() 
487         (gfd, gid_filename) = tempfile.mkstemp() 
488         pkey.save_to_file(key_filename)
489         gid_object.save_to_file(gid_filename, save_parents=True)
490         host = node['hostname']
491         key_dest="/etc/sfa/node.key"
492         gid_dest="/etc/sfa/node.gid" 
493         scp = "/usr/bin/scp" 
494         #identity = "/etc/planetlab/root_ssh_key.rsa"
495         identity = "/etc/sfa/root_ssh_key"
496         scp_options=" -i %(identity)s " % locals()
497         scp_options+="-o StrictHostKeyChecking=no " % locals()
498         scp_key_command="%(scp)s %(scp_options)s %(key_filename)s root@%(host)s:%(key_dest)s" %\
499                          locals()
500         scp_gid_command="%(scp)s %(scp_options)s %(gid_filename)s root@%(host)s:%(gid_dest)s" %\
501                          locals()    
502
503         all_commands = [scp_key_command, scp_gid_command]
504         
505         for command in all_commands:
506             (status, output) = commands.getstatusoutput(command)
507             if status:
508                 raise Exception, output
509
510         for filename in [key_filename, gid_filename]:
511             os.unlink(filename)
512
513         return 1