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