3 from sfa.server.registry import Registries
4 from sfa.util.prefixTree import prefixTree
5 from sfa.util.record import SfaRecord
6 from sfa.util.table import SfaTable
7 from sfa.util.record import SfaRecord
8 from sfa.trust.gid import GID
9 from sfa.util.namespace import *
10 from sfa.trust.credential import *
11 from sfa.trust.certificate import *
12 from sfa.util.faults import *
14 def get_credential(api, xrn, type, is_self=False):
17 hrn = urn_to_hrn(xrn)[0]
19 hrn, type = urn_to_hrn(xrn)
20 # Is this a root or sub authority
21 auth_hrn = api.auth.get_authority(hrn)
22 if not auth_hrn or hrn == api.config.SFA_INTERFACE_HRN:
25 auth_info = api.auth.get_auth_info(auth_hrn)
27 records = table.findObjects({'type': type, 'hrn': hrn})
29 raise RecordNotFound(hrn)
32 # verify_cancreate_credential requires that the member lists
33 # (researchers, pis, etc) be filled in
34 api.fill_record_info(record)
37 # if this is a self cred the record's gid is the caller's gid
40 caller_gid = record.get_gid_object()
42 caller_gid = api.auth.client_cred.get_gid_caller()
43 caller_hrn = caller_gid.get_hrn()
45 object_hrn = record.get_gid_object().get_hrn()
46 rights = api.auth.determine_user_rights(caller_hrn, record)
47 # make sure caller has rights to this object
49 raise PermissionError(caller_hrn + " has no rights to " + record['name'])
51 object_gid = GID(string=record['gid'])
52 new_cred = Credential(subject = object_gid.get_subject())
53 new_cred.set_gid_caller(caller_gid)
54 new_cred.set_gid_object(object_gid)
55 new_cred.set_issuer(key=auth_info.get_pkey_object(), subject=auth_hrn)
56 new_cred.set_pubkey(object_gid.get_pubkey())
57 new_cred.set_privileges(rights)
58 new_cred.set_delegate(True)
59 auth_kind = "authority,ma,sa"
60 new_cred.set_parent(api.auth.hierarchy.get_auth_cred(auth_hrn, kind=auth_kind))
64 return new_cred.save_to_string(save_parents=True)
66 def resolve(api, xrns, type=None, origin_hrn=None):
68 # load all know registry names into a prefix tree and attempt to find
69 # the longest matching prefix
70 if not isinstance(xrns, types.ListType):
72 hrns = [urn_to_hrn(xrn)[0] for xrn in xrns]
73 # create a dict whre key is an registry hrn and its value is a
74 # hrns at that registry (determined by the known prefix tree).
76 registries = Registries(api)
78 registry_hrns = registries.keys()
79 tree.load(registry_hrns)
81 registry_hrn = tree.best_match(urn_to_hrn(xrn)[0])
82 if registry_hrn not in xrn_dict:
83 xrn_dict[registry_hrn] = []
84 xrn_dict[registry_hrn].append(xrn)
87 for registry_hrn in xrn_dict:
88 # skip the hrn without a registry hrn
89 # XX should we let the user know the authority is unknown?
93 # if the best match (longest matching hrn) is not the local registry,
95 xrns = xrn_dict[registry_hrn]
96 if registry_hrn != api.hrn:
97 credential = api.getCredential()
98 peer_records = registries[registry_hrn].resolve(credential, xrns, origin_hrn)
99 records.extend([SfaRecord(dict=record).as_dict() for record in peer_records])
101 # try resolving the remaining unfound records at the local registry
102 remaining_hrns = set(hrns).difference([record['hrn'] for record in records])
103 # convert set to list
104 remaining_hrns = [hrn for hrn in remaining_hrns]
108 local_records = table.findObjects({'hrn': remaining_hrns})
109 for record in local_records:
111 api.fill_record_info(record)
112 records.append(dict(record))
113 except PlanetLabRecordDoesNotExist:
114 # silently drop the ones that are missing in PL
115 print >> log, "ignoring SFA record ", record['hrn'], \
116 " because pl record does not exist"
120 raise RecordNotFound(str(hrns))
123 records = filter(lambda rec: rec['type'] in [type], records)
128 hrn, type = urn_to_hrn(xrn)
129 # load all know registry names into a prefix tree and attempt to find
130 # the longest matching prefix
132 registries = Registries(api)
133 registry_hrns = registries.keys()
135 tree.load(registry_hrns)
136 registry_hrn = tree.best_match(hrn)
138 #if there was no match then this record belongs to an unknow registry
140 raise MissingAuthority(xrn)
142 # if the best match (longest matching hrn) is not the local registry,
143 # forward the request
145 if registry_hrn != api.hrn:
146 credential = api.getCredential()
147 record_list = registries[registry_hrn].list(credential, xrn, origin_hrn)
148 records = [SfaRecord(dict=record).as_dict() for record in record_list]
150 # if we still havnt found the record yet, try the local registry
152 if not api.auth.hierarchy.auth_exists(hrn):
153 raise MissingAuthority(hrn)
156 records = table.find({'authority': hrn})
161 def register(api, record):
163 hrn, type = record['hrn'], record['type']
166 if type not in ['authority', 'slice', 'node', 'user']:
167 raise UnknownSfaType(type)
169 # check if record already exists
171 existing_records = table.find({'type': type, 'hrn': hrn})
173 raise ExistingRecord(hrn)
175 record = SfaRecord(dict = record)
176 record['authority'] = get_authority(record['hrn'])
177 type = record['type']
179 api.auth.verify_object_permission(hrn)
180 auth_info = api.auth.get_auth_info(record['authority'])
182 # make sure record has a gid
183 if 'gid' not in record:
185 pkey = Keypair(create=True)
186 if 'key' in record and record['key']:
187 if isinstance(record['key'], types.ListType):
188 pub_key = record['key'][0]
190 pub_key = record['key']
191 pkey = convert_public_key(pub_key)
193 gid_object = api.auth.hierarchy.create_gid(hrn, uuid, pkey)
194 gid = gid_object.save_to_string(save_parents=True)
198 if type in ["authority"]:
200 if not api.auth.hierarchy.auth_exists(hrn):
201 api.auth.hierarchy.create_auth(hrn)
203 # get the GID from the newly created authority
204 gid = auth_info.get_gid_object()
205 record.set_gid(gid.save_to_string(save_parents=True))
206 pl_record = api.sfa_fields_to_pl_fields(type, hrn, record)
207 sites = api.plshell.GetSites(api.plauth, [pl_record['login_base']])
209 pointer = api.plshell.AddSite(api.plauth, pl_record)
211 pointer = sites[0]['site_id']
213 record.set_pointer(pointer)
214 record['pointer'] = pointer
216 elif (type == "slice"):
217 acceptable_fields=['url', 'instantiation', 'name', 'description']
218 pl_record = api.sfa_fields_to_pl_fields(type, hrn, record)
219 for key in pl_record.keys():
220 if key not in acceptable_fields:
222 slices = api.plshell.GetSlices(api.plauth, [pl_record['name']])
224 pointer = api.plshell.AddSlice(api.plauth, pl_record)
226 pointer = slices[0]['slice_id']
227 record.set_pointer(pointer)
228 record['pointer'] = pointer
230 elif (type == "user"):
231 persons = api.plshell.GetPersons(api.plauth, [record['email']])
233 pointer = api.plshell.AddPerson(api.plauth, dict(record))
235 pointer = persons[0]['person_id']
237 if 'enabled' in record and record['enabled']:
238 api.plshell.UpdatePerson(api.plauth, pointer, {'enabled': record['enabled']})
239 # add this persons to the site only if he is being added for the first
240 # time by sfa and doesont already exist in plc
241 if not persons or not persons[0]['site_ids']:
242 login_base = get_leaf(record['authority'])
243 api.plshell.AddPersonToSite(api.plauth, pointer, login_base)
245 # What roles should this user have?
246 api.plshell.AddRoleToPerson(api.plauth, 'user', pointer)
249 api.plshell.AddPersonKey(api.plauth, pointer, {'key_type' : 'ssh', 'key' : pub_key})
251 elif (type == "node"):
252 pl_record = api.sfa_fields_to_pl_fields(type, hrn, record)
253 login_base = hrn_to_pl_login_base(record['authority'])
254 nodes = api.plshell.GetNodes(api.plauth, [pl_record['hostname']])
256 pointer = api.plshell.AddNode(api.plauth, login_base, pl_record)
258 pointer = nodes[0]['node_id']
260 record['pointer'] = pointer
261 record.set_pointer(pointer)
262 record_id = table.insert(record)
263 record['record_id'] = record_id
265 # update membership for researchers, pis, owners, operators
266 api.update_membership(None, record)
268 return record.get_gid_object().save_to_string(save_parents=True)
270 def update(api, record_dict):
271 new_record = SfaRecord(dict = record_dict)
272 type = new_record['type']
273 hrn = new_record['hrn']
274 api.auth.verify_object_permission(hrn)
276 # make sure the record exists
277 records = table.findObjects({'type': type, 'hrn': hrn})
279 raise RecordNotFound(hrn)
281 record['last_updated'] = time.gmtime()
283 # Update_membership needs the membership lists in the existing record
284 # filled in, so it can see if members were added or removed
285 api.fill_record_info(record)
287 # Use the pointer from the existing record, not the one that the user
288 # gave us. This prevents the user from inserting a forged pointer
289 pointer = record['pointer']
290 # update the PLC information that was specified with the record
292 if (type == "authority"):
293 api.plshell.UpdateSite(api.plauth, pointer, new_record)
295 elif type == "slice":
296 pl_record=api.sfa_fields_to_pl_fields(type, hrn, new_record)
297 if 'name' in pl_record:
298 pl_record.pop('name')
299 api.plshell.UpdateSlice(api.plauth, pointer, pl_record)
302 # SMBAKER: UpdatePerson only allows a limited set of fields to be
303 # updated. Ideally we should have a more generic way of doing
304 # this. I copied the field names from UpdatePerson.py...
306 all_fields = new_record
307 for key in all_fields.keys():
308 if key in ['first_name', 'last_name', 'title', 'email',
309 'password', 'phone', 'url', 'bio', 'accepted_aup',
311 update_fields[key] = all_fields[key]
312 api.plshell.UpdatePerson(api.plauth, pointer, update_fields)
314 if 'key' in new_record and new_record['key']:
315 # must check this key against the previous one if it exists
316 persons = api.plshell.GetPersons(api.plauth, [pointer], ['key_ids'])
318 keys = person['key_ids']
319 keys = api.plshell.GetKeys(api.plauth, person['key_ids'])
321 if isinstance(new_record['key'], types.ListType):
322 new_key = new_record['key'][0]
324 new_key = new_record['key']
326 # Delete all stale keys
328 if new_record['key'] != key['key']:
329 api.plshell.DeleteKey(api.plauth, key['key_id'])
333 api.plshell.AddPersonKey(api.plauth, pointer, {'key_type': 'ssh', 'key': new_key})
335 # update the openssl key and gid
336 pkey = convert_public_key(new_key)
338 gid_object = api.auth.hierarchy.create_gid(hrn, uuid, pkey)
339 gid = gid_object.save_to_string(save_parents=True)
341 record = SfaRecord(dict=record)
345 api.plshell.UpdateNode(api.plauth, pointer, new_record)
348 raise UnknownSfaType(type)
350 # update membership for researchers, pis, owners, operators
351 api.update_membership(record, new_record)
355 def remove(api, xrn, type, origin_hrn=None):
358 hrn = urn_to_hrn(xrn)[0]
360 hrn, type = urn_to_hrn(xrn)
363 filter = {'hrn': hrn}
364 if type not in ['all', '*']:
365 filter['type'] = type
366 records = table.find(filter)
368 raise RecordNotFound(hrn)
370 type = record['type']
372 credential = api.getCredential()
373 registries = Registries(api)
375 # Try to remove the object from the PLCDB of federated agg.
376 # This is attempted before removing the object from the local agg's PLCDB and sfa table
377 if hrn.startswith(api.hrn) and type in ['user', 'slice', 'authority']:
378 for registry in registries:
379 if registry not in [api.hrn]:
381 result=registries[registry].remove_peer_object(credential, record, origin_hrn)
385 persons = api.plshell.GetPersons(api.plauth, record['pointer'])
386 # only delete this person if he has site ids. if he doesnt, it probably means
387 # he was just removed from a site, not actually deleted
388 if persons and persons[0]['site_ids']:
389 api.plshell.DeletePerson(api.plauth, record['pointer'])
390 elif type == "slice":
391 if api.plshell.GetSlices(api.plauth, record['pointer']):
392 api.plshell.DeleteSlice(api.plauth, record['pointer'])
394 if api.plshell.GetNodes(api.plauth, record['pointer']):
395 api.plshell.DeleteNode(api.plauth, record['pointer'])
396 elif type == "authority":
397 if api.plshell.GetSites(api.plauth, record['pointer']):
398 api.plshell.DeleteSite(api.plauth, record['pointer'])
400 raise UnknownSfaType(type)
406 def remove_peer_object(api, record, origin_hrn=None):
409 def register_peer_object(api, record, origin_hrn=None):