source: fedd/federation/deter_impl.py @ d3c8759

axis_examplecompt_changesinfo-opsversion-3.01version-3.02
Last change on this file since d3c8759 was d3c8759, checked in by Ted Faber <faber@…>, 14 years ago

Wholesale change of IOError to EnvironmentError? for file operations. Lots of
uncaught EnvironmentErrors? were causing spurious error conditions, e.g. on disk
full.

  • Property mode set to 100644
File size: 3.7 KB
RevLine 
[19cc408]1#!/usr/local/bin/python
2
[3c6dbec]3import emulab_access
[23dec62]4import dragon_access
[9c2e4e1]5import protogeni_access
[175b444]6import deter_internal_access
7
[ec4fb42]8from experiment_control import experiment_control_local
[5f6929a]9from ns2topdl import ns2topdl_local
[05191a6]10from util import read_simple_accessdb
[73ded03]11from fedid import fedid
[19cc408]12
[73ded03]13from authorizer import authorizer, abac_authorizer
[3f6bc5f]14
[7454054]15class deter_impl:
[19cc408]16    """
17    The implementation of access control based on mapping users to projects.
18
19    Users can be mapped to existing projects or have projects created
20    dynamically.  This implements both direct requests and proxies.
21    """
22    # Used by the SOAP caller
[e77c86e]23    soap_namespaces = ('http://www.isi.edu/fedd.wsdl',
24            'http://www.isi.edu/fedd_internal.wsdl')
[19cc408]25
[72ed6e4]26    def __init__(self, config=None):
[19cc408]27        """
[ec4fb42]28        Initializer.  Uses the parsed configuration to create appropriate
29        components.
[19cc408]30        """
[72ed6e4]31        self.soap_services = { }
32        self.xmlrpc_services = { }
[73ded03]33        self.auth = None
[72ed6e4]34
35        if config:
36            self.cert_file = config.get("globals", "cert_file");
37            self.cert_pwd = config.get("globals", "cert_pwd");
38            self.trusted_certs = config.get("globals", "trusted_certs");
[3c6dbec]39            self.access_type = config.get("globals", "access_type", "emulab")
[73ded03]40            self.auth_type = config.get("globals", "auth_type", "legacy")
41
42            if self.auth_type == 'legacy':
43                self.auth = authorizer()
44            elif self.auth_type == 'abac':
45                auth_url = config.get('globals', 'auth_url')
46                if not auth_url:
47                    raise RuntimeError("auth_url required for ABAC " + \
48                            "authorization")
49                if self.cert_file:
50                    me = fedid(file=self.cert_file)
51                else:
52                    raise RuntimeError("ABAC authorization needs a " +\
53                            "certificate file")
54                self.auth= abac_authorizer(url=auth_url, 
55                        cert_file=self.cert_file, cert_pwd=self.cert_pwd,
56                        trusted_certs=self.trusted_certs, me=me)
57            else:
58                raise RuntimeError("Unknown authorizer type %s" % \
59                        self.auth_type)
[72ed6e4]60
[05191a6]61            access_db = config.get("globals", "accessdb")
62
63            if access_db:
64                try:
65                    read_simple_accessdb(access_db, self.auth)
[d3c8759]66                except EnvironmentError, e:
[0b4e272]67                    raise RuntimeError(
[05191a6]68                            "Error reading accessDB %s: %s" % (access_db, e))
[cc8d8e9]69                except ValueError, e:
[0b4e272]70                    raise RuntimeError("%s" % e)
[05191a6]71
[72ed6e4]72            if config.has_section("access"):
[3c6dbec]73                if self.access_type == "emulab":
74                    self.access = emulab_access.access(config, self.auth)
[23dec62]75                elif self.access_type == "dragon":
76                    self.access = dragon_access.access(config, self.auth)
[9c2e4e1]77                elif self.access_type == "protogeni":
78                    self.access = protogeni_access.access(config, self.auth)
[175b444]79                elif self.access_type == "deter_internal":
80                    self.access = deter_internal_access.access(config,
81                            self.auth)
[3c6dbec]82                else:
83                    raise RuntimeError("Unknown access_type: %s" % \
84                            self.access_type)
[72ed6e4]85                self.soap_services.update(self.access.soap_services) 
86                self.xmlrpc_services.update(self.access.xmlrpc_services) 
[09b4dc4]87            else:
88                self.access = None
[72ed6e4]89
90            if config.has_section("experiment_control"):
[3f6bc5f]91                self.experiment = \
[ec4fb42]92                        experiment_control_local(config, self.auth)
[5fffd82]93                # Tell the experiment control where local access control is and
[5a6b75b]94                # what testbeds it pertains to.
[c9318dc]95                if getattr(self, 'access', None):
[5a6b75b]96                    for t in self.access.testbed:
97                        self.experiment.local_access[t] = self.access
[5fffd82]98
[72ed6e4]99                self.soap_services.update(self.experiment.soap_services) 
100                self.xmlrpc_services.update(self.experiment.xmlrpc_services) 
[81a7f3f]101                self.get_handler = self.experiment.get_handler
102            else:
[39ee3cc]103                if self.access and getattr(self.access, 'get_handler', None):
[dac2316]104                    self.get_handler = self.access.get_handler
105                else:
106                    self.get_handler = None
[72ed6e4]107
[5f6929a]108            if config.has_section("ns2topdl"):
109                self.ns2topdl = ns2topdl_local(config, self.auth)
110                self.soap_services.update(self.ns2topdl.soap_services) 
111                self.xmlrpc_services.update(self.ns2topdl.xmlrpc_services) 
[f4f4117]112
[72ed6e4]113def new_feddservice(config):
[7454054]114    return deter_impl(config)
Note: See TracBrowser for help on using the repository browser.