X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FAllocate.py;h=c8cbb0af5153f04c3d21dc1f5b3353272ebe5a54;hb=bcafcbf0f80ffcb32da8eb6579d6c291c6e4e36c;hp=b549fd6b727f23e0b5b1a304712d94f4166a1932;hpb=9fe1cc1bbb72921e1fe94e9a7997cd387073d863;p=sfa.git diff --git a/sfa/methods/Allocate.py b/sfa/methods/Allocate.py index b549fd6b..c8cbb0af 100644 --- a/sfa/methods/Allocate.py +++ b/sfa/methods/Allocate.py @@ -1,5 +1,6 @@ from sfa.util.faults import SfaInvalidArgument, InvalidRSpec, SfatablesRejected -from sfa.util.xrn import Xrn +from sfa.util.sfatime import datetime_to_string +from sfa.util.xrn import Xrn, urn_to_hrn from sfa.util.method import Method from sfa.util.sfatablesRuntime import run_sfatables from sfa.trust.credential import Credential @@ -22,7 +23,26 @@ class Allocate(Method): @param slice_urn (string) URN of slice to allocate to @param credentials (dict) of credentials @param rspec (string) rspec to allocate - + @param options (dict) + + As of 3.1.16, the PL driver implements here an important option named + 'pltags' that affects the management of slice tags. + + This option can take 3 values + (*) options['pltags'] == 'ignore' (default) + This is the recommended mode; in this mode all slice tags passed + here are ignore, which correspond to the XML tags in + the areas of incoming rspec to Allocate. + In other words you are guaranteed to leave slice tags alone. + (*) options['pltags'] == 'append' + All incoming slice tags are added to corresponding slivers, + unless an exact match can be found in the PLC db + (*) options['pltags'] == 'sync' + The historical mode, that attempts to leave the PLC db in a state + in sync with the ones specified in incoming rspec. + + See also http://svn.planet-lab.org/wiki/SFASliceTags + """ interfaces = ['aggregate', 'slicemgr'] accepts = [ @@ -35,15 +55,22 @@ class Allocate(Method): def call(self, xrn, creds, rspec, options): xrn = Xrn(xrn, type='slice') - self.api.logger.info("interface: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, xrn.get_hrn(), self.name)) # Find the valid credentials - valid_creds = self.api.auth.checkCredentials(creds, 'createsliver', xrn.get_hrn()) + valid_creds = self.api.auth.checkCredentialsSpeaksFor(creds, 'createsliver', xrn.get_hrn(), options=options) + the_credential = Credential(cred=valid_creds[0]) + + # use the expiration from the first valid credential to determine when + # the slivers should expire. + expiration = datetime_to_string(the_credential.expiration) - # make sure request is not empty - slivers = RSpec(rspec).version.get_nodes_with_slivers() - if not slivers: - raise InvalidRSpec("Missing or element. Request rspec must explicitly allocate slivers") + self.api.logger.debug("Allocate, received expiration from credential: %s"%expiration) + +# turned off, as passing an empty rspec is indeed useful for cleaning up the slice +# # make sure request is not empty +# slivers = RSpec(rspec).version.get_nodes_with_slivers() +# if not slivers: +# raise InvalidRSpec("Missing or element. Request rspec must explicitly allocate slivers") # flter rspec through sfatables if self.api.interface in ['aggregate']: @@ -51,12 +78,15 @@ class Allocate(Method): elif self.api.interface in ['slicemgr']: chain_name = 'FORWARD-INCOMING' self.api.logger.debug("Allocate: sfatables on chain %s"%chain_name) - origin_hrn = Credential(cred=valid_creds[0]).get_gid_caller().get_hrn() - self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, xrns, self.name)) - rspec = run_sfatables(chain_name, xrn.get_hrn(), origin_hrn, rspec) - slivers = RSpec(rspec).version.get_nodes_with_slivers() - if not slivers: - raise SfatablesRejected(slice_xrn) - - result = self.api.manager.Allocate(self.api, xrn.get_urn(), creds, rspec, options) + actual_caller_hrn = the_credential.actual_caller_hrn() + self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, actual_caller_hrn, xrn.get_hrn(), self.name)) + rspec = run_sfatables(chain_name, xrn.get_hrn(), actual_caller_hrn, rspec) +# turned off, as passing an empty rspec is indeed useful for cleaning up the slice +# slivers = RSpec(rspec).version.get_nodes_with_slivers() +# if not slivers: +# raise SfatablesRejected(slice_xrn) + + # pass this to the driver code in case they need it + options['actual_caller_hrn'] = actual_caller_hrn + result = self.api.manager.Allocate(self.api, xrn.get_urn(), creds, rspec, expiration, options) return result