8a39c0b5f484fd5f881c33d6ca36ac4f7ff34308
[sfa.git] / sfa / managers / aggregate_manager_pl.py
1 import datetime
2 import time
3 import traceback
4 import sys
5 import re
6 from types import StringTypes
7
8 from sfa.util.faults import *
9 from sfa.util.xrn import get_authority, hrn_to_urn, urn_to_hrn, Xrn
10 from sfa.util.plxrn import slicename_to_hrn, hrn_to_pl_slicename, hostname_to_urn
11 from sfa.util.rspec import *
12 from sfa.util.specdict import *
13 from sfa.util.record import SfaRecord
14 from sfa.util.policy import Policy
15 from sfa.util.record import *
16 from sfa.util.sfaticket import SfaTicket
17 from sfa.plc.slices import Slices
18 from sfa.trust.credential import Credential
19 import sfa.plc.peers as peers
20 from sfa.plc.network import *
21 from sfa.plc.api import SfaAPI
22 from sfa.plc.slices import *
23 from sfa.util.version import version_core
24 from sfa.util.sfatime import utcparse
25 from sfa.util.callids import Callids
26
27 def GetVersion(api):
28     xrn=Xrn(api.hrn)
29     return version_core({'interface':'aggregate',
30                          'testbed':'myplc',
31                          'hrn':xrn.get_hrn(),
32                          })
33
34 def __get_registry_objects(slice_xrn, creds, users):
35     """
36
37     """
38     hrn, type = urn_to_hrn(slice_xrn)
39
40     hrn_auth = get_authority(hrn)
41
42     # Build up objects that an SFA registry would return if SFA
43     # could contact the slice's registry directly
44     reg_objects = None
45
46     if users:
47         # dont allow special characters in the site login base
48         #only_alphanumeric = re.compile('[^a-zA-Z0-9]+')
49         #login_base = only_alphanumeric.sub('', hrn_auth[:20]).lower()
50         slicename = hrn_to_pl_slicename(hrn)
51         login_base = slicename.split('_')[0]
52         reg_objects = {}
53         site = {}
54         site['site_id'] = 0
55         site['name'] = 'geni.%s' % login_base 
56         site['enabled'] = True
57         site['max_slices'] = 100
58
59         # Note:
60         # Is it okay if this login base is the same as one already at this myplc site?
61         # Do we need uniqueness?  Should use hrn_auth instead of just the leaf perhaps?
62         site['login_base'] = login_base
63         site['abbreviated_name'] = login_base
64         site['max_slivers'] = 1000
65         reg_objects['site'] = site
66
67         slice = {}
68         
69         extime = Credential(string=creds[0]).get_expiration()
70         # If the expiration time is > 60 days from now, set the expiration time to 60 days from now
71         if extime > datetime.datetime.utcnow() + datetime.timedelta(days=60):
72             extime = datetime.datetime.utcnow() + datetime.timedelta(days=60)
73         slice['expires'] = int(time.mktime(extime.timetuple()))
74         slice['hrn'] = hrn
75         slice['name'] = hrn_to_pl_slicename(hrn)
76         slice['url'] = hrn
77         slice['description'] = hrn
78         slice['pointer'] = 0
79         reg_objects['slice_record'] = slice
80
81         reg_objects['users'] = {}
82         for user in users:
83             user['key_ids'] = []
84             hrn, _ = urn_to_hrn(user['urn'])
85             user['email'] = hrn_to_pl_slicename(hrn) + "@geni.net"
86             user['first_name'] = hrn
87             user['last_name'] = hrn
88             reg_objects['users'][user['email']] = user
89
90         return reg_objects
91
92 def __get_hostnames(nodes):
93     hostnames = []
94     for node in nodes:
95         hostnames.append(node.hostname)
96     return hostnames
97
98 def slice_status(api, slice_xrn, creds):
99     hrn, type = urn_to_hrn(slice_xrn)
100     # find out where this slice is currently running
101     api.logger.info(hrn)
102     slicename = hrn_to_pl_slicename(hrn)
103     
104     slices = api.plshell.GetSlices(api.plauth, [slicename], ['node_ids','person_ids','name','expires'])
105     if len(slices) == 0:        
106         raise Exception("Slice %s not found (used %s as slicename internally)" % slice_xrn, slicename)
107     slice = slices[0]
108     
109     nodes = api.plshell.GetNodes(api.plauth, slice['node_ids'],
110                                     ['hostname', 'site_id', 'boot_state', 'last_contact'])
111     site_ids = [node['site_id'] for node in nodes]
112     sites = api.plshell.GetSites(api.plauth, site_ids, ['site_id', 'login_base'])
113     sites_dict = {}
114     for site in sites:
115         sites_dict[site['site_id']] = site['login_base']
116
117     # XX remove me
118     #api.logger.info(slice_xrn)
119     #api.logger.info(slice)
120     #api.logger.info(nodes)
121     # XX remove me
122
123     result = {}
124     top_level_status = 'unknown'
125     if nodes:
126         top_level_status = 'ready'
127     result['geni_urn'] = Xrn(slice_xrn, 'slice').get_urn()
128     result['pl_login'] = slice['name']
129     result['pl_expires'] = datetime.datetime.fromtimestamp(slice['expires']).ctime()
130     
131     resources = []
132     for node in nodes:
133         res = {}
134         res['pl_hostname'] = node['hostname']
135         res['pl_boot_state'] = node['boot_state']
136         res['pl_last_contact'] = node['last_contact']
137         if not node['last_contact'] is None:
138             res['pl_last_contact'] = datetime.datetime.fromtimestamp(node['last_contact']).ctime()
139         res['geni_urn'] = hostname_to_urn(api.hrn, sites_dict[node['site_id']], node['hostname'])
140         if node['boot_state'] == 'boot':
141             res['geni_status'] = 'ready'
142         else:
143             res['geni_status'] = 'failed'
144             top_level_staus = 'failed' 
145             
146         res['geni_error'] = ''
147
148         resources.append(res)
149         
150     result['geni_status'] = top_level_status
151     result['geni_resources'] = resources
152     # XX remove me
153     #api.logger.info(result)
154     # XX remove me
155     return result
156
157 def CreateSliver(api, slice_xrn, creds, rspec, users, call_id):
158     """
159     Create the sliver[s] (slice) at this aggregate.    
160     Verify HRN and initialize the slice record in PLC if necessary.
161     """
162     if Callids().already_handled(call_id): return ""
163
164     reg_objects = __get_registry_objects(slice_xrn, creds, users)
165
166     (hrn, type) = urn_to_hrn(slice_xrn)
167     peer = None
168     slices = Slices(api)
169     peer = slices.get_peer(hrn)
170     sfa_peer = slices.get_sfa_peer(hrn)
171     registry = api.registries[api.hrn]
172     credential = api.getCredential()
173     (site_id, remote_site_id) = slices.verify_site(registry, credential, hrn, 
174                                                    peer, sfa_peer, reg_objects)
175
176     slice_record = slices.verify_slice(registry, credential, hrn, site_id, 
177                                        remote_site_id, peer, sfa_peer, reg_objects)
178      
179     network = Network(api)
180
181     slice = network.get_slice(api, hrn)
182     slice.peer_id = slice_record['peer_slice_id']
183     current = __get_hostnames(slice.get_nodes())
184     
185     network.addRSpec(rspec, api.config.SFA_AGGREGATE_RSPEC_SCHEMA)
186     request = __get_hostnames(network.nodesWithSlivers())
187     
188     # remove nodes not in rspec
189     deleted_nodes = list(set(current).difference(request))
190
191     # add nodes from rspec
192     added_nodes = list(set(request).difference(current))
193
194     try:
195         if peer:
196             api.plshell.UnBindObjectFromPeer(api.plauth, 'slice', slice.id, peer)
197
198         api.plshell.AddSliceToNodes(api.plauth, slice.name, added_nodes) 
199         api.plshell.DeleteSliceFromNodes(api.plauth, slice.name, deleted_nodes)
200
201         network.updateSliceTags()
202
203     finally:
204         if peer:
205             api.plshell.BindObjectToPeer(api.plauth, 'slice', slice.id, peer, 
206                                          slice.peer_id)
207
208     # xxx - check this holds enough data for the client to understand what's happened
209     return network.toxml()
210
211
212 def RenewSliver(api, xrn, creds, expiration_time, call_id):
213     if Callids().already_handled(call_id): return True
214     (hrn, type) = urn_to_hrn(xrn)
215     slicename = hrn_to_pl_slicename(hrn)
216     slices = api.plshell.GetSlices(api.plauth, {'name': slicename}, ['slice_id'])
217     if not slices:
218         raise RecordNotFound(hrn)
219     slice = slices[0]
220     requested_time = utcparse(expiration_time)
221     record = {'expires': int(time.mktime(requested_time.timetuple()))}
222     try:
223         api.plshell.UpdateSlice(api.plauth, slice['slice_id'], record)
224         return True
225     except:
226         return False
227
228 def start_slice(api, xrn, creds):
229     hrn, type = urn_to_hrn(xrn)
230     slicename = hrn_to_pl_slicename(hrn)
231     slices = api.plshell.GetSlices(api.plauth, {'name': slicename}, ['slice_id'])
232     if not slices:
233         raise RecordNotFound(hrn)
234     slice_id = slices[0]['slice_id']
235     slice_tags = api.plshell.GetSliceTags(api.plauth, {'slice_id': slice_id, 'tagname': 'enabled'}, ['slice_tag_id'])
236     # just remove the tag if it exists
237     if slice_tags:
238         api.plshell.DeleteSliceTag(api.plauth, slice_tags[0]['slice_tag_id'])
239
240     return 1
241  
242 def stop_slice(api, xrn, creds):
243     hrn, type = urn_to_hrn(xrn)
244     slicename = hrn_to_pl_slicename(hrn)
245     slices = api.plshell.GetSlices(api.plauth, {'name': slicename}, ['slice_id'])
246     if not slices:
247         raise RecordNotFound(hrn)
248     slice_id = slices[0]['slice_id']
249     slice_tags = api.plshell.GetSliceTags(api.plauth, {'slice_id': slice_id, 'tagname': 'enabled'})
250     if not slice_tags:
251         api.plshell.AddSliceTag(api.plauth, slice_id, 'enabled', '0')
252     elif slice_tags[0]['value'] != "0":
253         tag_id = attributes[0]['slice_tag_id']
254         api.plshell.UpdateSliceTag(api.plauth, tag_id, '0')
255     return 1
256
257 def reset_slice(api, xrn):
258     # XX not implemented at this interface
259     return 1
260
261 def DeleteSliver(api, xrn, creds, call_id):
262     if Callids().already_handled(call_id): return ""
263     (hrn, type) = urn_to_hrn(xrn)
264     slicename = hrn_to_pl_slicename(hrn)
265     slices = api.plshell.GetSlices(api.plauth, {'name': slicename})
266     if not slices:
267         return 1
268     slice = slices[0]
269
270     # determine if this is a peer slice
271     peer = peers.get_peer(api, hrn)
272     try:
273         if peer:
274             api.plshell.UnBindObjectFromPeer(api.plauth, 'slice', slice['slice_id'], peer)
275         api.plshell.DeleteSliceFromNodes(api.plauth, slicename, slice['node_ids'])
276     finally:
277         if peer:
278             api.plshell.BindObjectToPeer(api.plauth, 'slice', slice['slice_id'], peer, slice['peer_slice_id'])
279     return 1
280
281 def get_slices(api, creds):
282     # look in cache first
283     if api.cache:
284         slices = api.cache.get('slices')
285         if slices:
286             return slices
287
288     # get data from db 
289     slices = api.plshell.GetSlices(api.plauth, {'peer_id': None}, ['name'])
290     slice_hrns = [slicename_to_hrn(api.hrn, slice['name']) for slice in slices]
291     slice_urns = [hrn_to_urn(slice_hrn, 'slice') for slice_hrn in slice_hrns]
292
293     # cache the result
294     if api.cache:
295         api.cache.add('slices', slice_urns) 
296
297     return slice_urns
298     
299 # xxx Thierry : caching at the aggregate level sounds wrong...
300 caching=True
301 #caching=False
302 def ListResources(api, creds, options,call_id):
303     if Callids().already_handled(call_id): return ""
304     # get slice's hrn from options
305     xrn = options.get('geni_slice_urn', '')
306     (hrn, type) = urn_to_hrn(xrn)
307
308     # look in cache first
309     if caching and api.cache and not xrn:
310         rspec = api.cache.get('nodes')
311         if rspec:
312             api.logger.info("aggregate.ListResources: returning cached value for hrn %s"%hrn)
313             return rspec 
314
315     network = Network(api)
316     if (hrn):
317         if network.get_slice(api, hrn):
318             network.addSlice()
319
320     rspec = network.toxml()
321
322     # cache the result
323     if caching and api.cache and not xrn:
324         api.cache.add('nodes', rspec)
325
326     return rspec
327
328
329 def get_ticket(api, xrn, creds, rspec, users):
330
331     reg_objects = __get_registry_objects(xrn, creds, users)
332
333     slice_hrn, type = urn_to_hrn(xrn)
334     slices = Slices(api)
335     peer = slices.get_peer(slice_hrn)
336     sfa_peer = slices.get_sfa_peer(slice_hrn)
337
338     # get the slice record
339     registry = api.registries[api.hrn]
340     credential = api.getCredential()
341     records = registry.Resolve(xrn, credential)
342
343     # similar to CreateSliver, we must verify that the required records exist
344     # at this aggregate before we can issue a ticket
345     site_id, remote_site_id = slices.verify_site(registry, credential, slice_hrn,
346                                                  peer, sfa_peer, reg_objects)
347     slice = slices.verify_slice(registry, credential, slice_hrn, site_id,
348                                 remote_site_id, peer, sfa_peer, reg_objects)
349
350     # make sure we get a local slice record
351     record = None
352     for tmp_record in records:
353         if tmp_record['type'] == 'slice' and \
354            not tmp_record['peer_authority']:
355             record = SliceRecord(dict=tmp_record)
356     if not record:
357         raise RecordNotFound(slice_hrn)
358
359     # get sliver info
360     slivers = Slices(api).get_slivers(slice_hrn)
361     if not slivers:
362         raise SliverDoesNotExist(slice_hrn)
363
364     # get initscripts
365     initscripts = []
366     data = {
367         'timestamp': int(time.time()),
368         'initscripts': initscripts,
369         'slivers': slivers
370     }
371
372     # create the ticket
373     object_gid = record.get_gid_object()
374     new_ticket = SfaTicket(subject = object_gid.get_subject())
375     new_ticket.set_gid_caller(api.auth.client_gid)
376     new_ticket.set_gid_object(object_gid)
377     new_ticket.set_issuer(key=api.key, subject=api.hrn)
378     new_ticket.set_pubkey(object_gid.get_pubkey())
379     new_ticket.set_attributes(data)
380     new_ticket.set_rspec(rspec)
381     #new_ticket.set_parent(api.auth.hierarchy.get_auth_ticket(auth_hrn))
382     new_ticket.encode()
383     new_ticket.sign()
384
385     return new_ticket.save_to_string(save_parents=True)
386
387
388
389 def main():
390     api = SfaAPI()
391     """
392     rspec = ListResources(api, "plc.princeton.sapan", None, 'pl_test_sapan')
393     #rspec = ListResources(api, "plc.princeton.coblitz", None, 'pl_test_coblitz')
394     #rspec = ListResources(api, "plc.pl.sirius", None, 'pl_test_sirius')
395     print rspec
396     """
397     f = open(sys.argv[1])
398     xml = f.read()
399     f.close()
400     CreateSliver(api, "plc.princeton.sapan", xml, 'CreateSliver_sapan')
401
402 if __name__ == "__main__":
403     main()