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