5e76dbf3735e6e67271d5b3152b1ef2c2e4cd6b9
[sfa.git] / sfa / trust / hierarchy.py
1 ##
2 # This module implements a hierarchy of authorities and performs a similar
3 # function as the "tree" module of the original SFA prototype. An HRN
4 # is assumed to be a string of authorities separated by dots. For example,
5 # "planetlab.us.arizona.bakers". Each component of the HRN is a different
6 # authority, with the last component being a leaf in the tree.
7 #
8 # Each authority is stored in a subdirectory on the registry. Inside this
9 # subdirectory are several files:
10 #      *.GID - GID file
11 #      *.PKEY - private key file
12 ##
13
14 import os
15
16 from sfa.util.faults import MissingAuthority
17 from sfa.util.sfalogging import logger
18 from sfa.util.xrn import get_leaf, get_authority, hrn_to_urn, urn_to_hrn
19 from sfa.trust.certificate import Keypair
20 from sfa.trust.credential import Credential
21 from sfa.trust.gid import GID, create_uuid
22 from sfa.util.config import Config
23 from sfa.trust.sfaticket import SfaTicket
24
25 ##
26 # The AuthInfo class contains the information for an authority. This information
27 # includes the GID, private key, and database connection information.
28
29 class AuthInfo:
30     hrn = None
31     gid_object = None
32     gid_filename = None
33     privkey_filename = None
34     ##
35     # Initialize and authority object.
36     #
37     # @param xrn the human readable name of the authority (urn will be converted to hrn)
38     # @param gid_filename the filename containing the GID
39     # @param privkey_filename the filename containing the private key
40
41     def __init__(self, xrn, gid_filename, privkey_filename):
42         hrn, type = urn_to_hrn(xrn)
43         self.hrn = hrn
44         self.set_gid_filename(gid_filename)
45         self.privkey_filename = privkey_filename
46
47     ##
48     # Set the filename of the GID
49     #
50     # @param fn filename of file containing GID
51
52     def set_gid_filename(self, fn):
53         self.gid_filename = fn
54         self.gid_object = None
55
56     def get_privkey_filename(self):
57         return self.privkey_filename
58
59     def get_gid_filename(self):
60         return self.gid_filename
61
62     ##
63     # Get the GID in the form of a GID object
64
65     def get_gid_object(self):
66         if not self.gid_object:
67             self.gid_object = GID(filename = self.gid_filename)
68         return self.gid_object
69
70     ##
71     # Get the private key in the form of a Keypair object
72
73     def get_pkey_object(self):
74         return Keypair(filename = self.privkey_filename)
75
76     ##
77     # Replace the GID with a new one. The file specified by gid_filename is
78     # overwritten with the new GID object
79     #
80     # @param gid object containing new GID
81
82     def update_gid_object(self, gid):
83         gid.save_to_file(self.gid_filename)
84         self.gid_object = gid
85
86 ##
87 # The Hierarchy class is responsible for managing the tree of authorities.
88 # Each authority is a node in the tree and exists as an AuthInfo object.
89 #
90 # The tree is stored on disk in a hierarchical manner than reflects the
91 # structure of the tree. Each authority is a subdirectory, and each subdirectory
92 # contains the GID and pkey files for that authority (as well as
93 # subdirectories for each sub-authority)
94
95 class Hierarchy:
96     ##
97     # Create the hierarchy object.
98     #
99     # @param basedir the base directory to store the hierarchy in
100
101     def __init__(self, basedir = None):
102         self.config = Config()
103         if not basedir:
104             basedir = os.path.join(self.config.SFA_DATA_DIR, "authorities")
105         self.basedir = basedir
106     ##
107     # Given a hrn, return the filenames of the GID, private key
108     # files.
109     #
110     # @param xrn the human readable name of the authority (urn will be convertd to hrn)
111
112     def get_auth_filenames(self, xrn):
113         hrn, type = urn_to_hrn(xrn)
114         if '\\' in hrn:
115             hrn = hrn.replace('\\', '')
116             leaf = hrn
117         else:
118             leaf = get_leaf(hrn)
119         parent_hrn = get_authority(hrn)
120         directory = os.path.join(self.basedir, hrn.replace(".", "/"))
121
122         gid_filename = os.path.join(directory, leaf+".gid")
123         privkey_filename = os.path.join(directory, leaf+".pkey")
124
125         return (directory, gid_filename, privkey_filename)
126
127     ##
128     # Check to see if an authority exists. An authority exists if it's disk
129     # files exist.
130     #
131     # @param the human readable name of the authority to check
132
133     def auth_exists(self, xrn):
134         hrn, type = urn_to_hrn(xrn) 
135         (directory, gid_filename, privkey_filename) = \
136             self.get_auth_filenames(hrn)
137         
138         return os.path.exists(gid_filename) and os.path.exists(privkey_filename) 
139
140     ##
141     # Create an authority. A private key for the authority and the associated
142     # GID are created and signed by the parent authority.
143     #
144     # @param xrn the human readable name of the authority to create (urn will be converted to hrn) 
145     # @param create_parents if true, also create the parents if they do not exist
146
147     def create_auth(self, xrn, create_parents=False):
148         hrn, type = urn_to_hrn(str(xrn))
149         logger.debug("Hierarchy: creating authority: %s"% hrn)
150
151         # create the parent authority if necessary
152         parent_hrn = get_authority(hrn)
153         parent_urn = hrn_to_urn(parent_hrn, 'authority')
154         if (parent_hrn) and (not self.auth_exists(parent_urn)) and (create_parents):
155             self.create_auth(parent_urn, create_parents)
156         (directory, gid_filename, privkey_filename,) = \
157             self.get_auth_filenames(hrn)
158
159         # create the directory to hold the files
160         try:
161             os.makedirs(directory)
162         # if the path already exists then pass
163         except OSError as xxx_todo_changeme:
164             (errno, strerr) = xxx_todo_changeme.args
165             if errno == 17:
166                 pass
167
168         if os.path.exists(privkey_filename):
169             logger.debug("using existing key %r for authority %r"%(privkey_filename,hrn))
170             pkey = Keypair(filename = privkey_filename)
171         else:
172             pkey = Keypair(create = True)
173             pkey.save_to_file(privkey_filename)
174
175         gid = self.create_gid(xrn, create_uuid(), pkey)
176         gid.save_to_file(gid_filename, save_parents=True)
177
178     def create_top_level_auth(self, hrn=None):
179         """
180         Create top level records (includes root and sub authorities (local/remote)
181         """
182         # create the authority if it doesnt alrady exist
183         if not self.auth_exists(hrn):
184             self.create_auth(hrn, create_parents=True)
185             
186         
187     def get_interface_auth_info(self, create=True):
188         hrn = self.config.SFA_INTERFACE_HRN
189         if not self.auth_exists(hrn):
190             if create==True:
191                 self.create_top_level_auth(hrn) 
192             else:
193                 raise MissingAuthority(hrn)
194         return self.get_auth_info(hrn)
195     ##
196     # Return the AuthInfo object for the specified authority. If the authority
197     # does not exist, then an exception is thrown. As a side effect, disk files
198     # and a subdirectory may be created to store the authority.
199     #
200     # @param xrn the human readable name of the authority to create (urn will be converted to hrn).
201
202     def get_auth_info(self, xrn):
203         hrn, type = urn_to_hrn(xrn)
204         if not self.auth_exists(hrn):
205             logger.warning("Hierarchy: missing authority - xrn=%s, hrn=%s"%(xrn,hrn))
206             raise MissingAuthority(hrn)
207
208         (directory, gid_filename, privkey_filename, ) = \
209             self.get_auth_filenames(hrn)
210
211         auth_info = AuthInfo(hrn, gid_filename, privkey_filename)
212
213         # check the GID and see if it needs to be refreshed
214         gid = auth_info.get_gid_object()
215         gid_refreshed = self.refresh_gid(gid)
216         if gid != gid_refreshed:
217             auth_info.update_gid_object(gid_refreshed)
218
219         return auth_info
220
221     ##
222     # Create a new GID. The GID will be signed by the authority that is it's
223     # immediate parent in the hierarchy (and recursively, the parents' GID
224     # will be signed by its parent)
225     #
226     # @param hrn the human readable name to store in the GID
227     # @param uuid the unique identifier to store in the GID
228     # @param pkey the public key to store in the GID
229
230     def create_gid(self, xrn, uuid, pkey, CA=False, email=None, force_parent=None):
231         hrn, type = urn_to_hrn(xrn)
232         if not type:
233             type = 'authority'
234         parent_hrn = force_parent if force_parent else get_authority(hrn)
235         # Using hrn_to_urn() here to make sure the urn is in the right format
236         # If xrn was a hrn instead of a urn, then the gid's urn will be
237         # of type None 
238         urn = hrn_to_urn(hrn, type)
239         gid = GID(subject=hrn, uuid=uuid, hrn=hrn, urn=urn, email=email)
240         # is this a CA cert
241         if hrn == self.config.SFA_INTERFACE_HRN or not parent_hrn:
242             # root or sub authority  
243             gid.set_intermediate_ca(True)
244         elif type and 'authority' in type:
245             # authority type
246             gid.set_intermediate_ca(True)
247         elif CA:
248             gid.set_intermediate_ca(True)
249         else:
250             gid.set_intermediate_ca(False)
251
252         # set issuer
253         if not parent_hrn or hrn == self.config.SFA_INTERFACE_HRN:
254             # if there is no parent hrn, then it must be self-signed. this
255             # is where we terminate the recursion
256             gid.set_issuer(pkey, hrn)
257         else:
258             # we need the parent's private key in order to sign this GID
259             parent_auth_info = self.get_auth_info(parent_hrn)
260             gid.set_issuer(parent_auth_info.get_pkey_object(), parent_auth_info.hrn)
261             gid.set_parent(parent_auth_info.get_gid_object())
262
263         gid.set_pubkey(pkey)
264         gid.encode()
265         gid.sign()
266
267         return gid
268
269     ##
270     # Refresh a GID. The primary use of this function is to refresh the
271     # the expiration time of the GID. It may also be used to change the HRN,
272     # UUID, or Public key of the GID.
273     #
274     # @param gid the GID to refresh
275     # @param hrn if !=None, change the hrn
276     # @param uuid if !=None, change the uuid
277     # @param pubkey if !=None, change the public key
278
279     def refresh_gid(self, gid, xrn=None, uuid=None, pubkey=None):
280         # TODO: compute expiration time of GID, refresh it if necessary
281         gid_is_expired = False
282
283         # update the gid if we need to
284         if gid_is_expired or xrn or uuid or pubkey:
285             
286             if not xrn:
287                 xrn = gid.get_urn()
288             if not uuid:
289                 uuid = gid.get_uuid()
290             if not pubkey:
291                 pubkey = gid.get_pubkey()
292
293             gid = self.create_gid(xrn, uuid, pubkey)
294
295         return gid
296
297     ##
298     # Retrieve an authority credential for an authority. The authority
299     # credential will contain the authority privilege and will be signed by
300     # the authority's parent.
301     #
302     # @param hrn the human readable name of the authority (urn is converted to hrn)
303     # @param authority type of credential to return (authority | sa | ma)
304
305     def get_auth_cred(self, xrn, kind="authority"):
306         hrn, type = urn_to_hrn(xrn) 
307         auth_info = self.get_auth_info(hrn)
308         gid = auth_info.get_gid_object()
309
310         cred = Credential(subject=hrn)
311         cred.set_gid_caller(gid)
312         cred.set_gid_object(gid)
313         cred.set_privileges(kind)
314         cred.get_privileges().delegate_all_privileges(True)
315         #cred.set_pubkey(auth_info.get_gid_object().get_pubkey())
316
317         parent_hrn = get_authority(hrn)
318         if not parent_hrn or hrn == self.config.SFA_INTERFACE_HRN:
319             # if there is no parent hrn, then it must be self-signed. this
320             # is where we terminate the recursion
321             cred.set_issuer_keys(auth_info.get_privkey_filename(), auth_info.get_gid_filename())
322         else:
323             # we need the parent's private key in order to sign this GID
324             parent_auth_info = self.get_auth_info(parent_hrn)
325             cred.set_issuer_keys(parent_auth_info.get_privkey_filename(), parent_auth_info.get_gid_filename())
326
327             
328             cred.set_parent(self.get_auth_cred(parent_hrn, kind))
329
330         cred.encode()
331         cred.sign()
332
333         return cred
334     ##
335     # Retrieve an authority ticket. An authority ticket is not actually a
336     # redeemable ticket, but only serves the purpose of being included as the
337     # parent of another ticket, in order to provide a chain of authentication
338     # for a ticket.
339     #
340     # This looks almost the same as get_auth_cred, but works for tickets
341     # XXX does similarity imply there should be more code re-use?
342     #
343     # @param xrn the human readable name of the authority (urn is converted to hrn)
344
345     def get_auth_ticket(self, xrn):
346         hrn, type = urn_to_hrn(xrn)
347         auth_info = self.get_auth_info(hrn)
348         gid = auth_info.get_gid_object()
349
350         ticket = SfaTicket(subject=hrn)
351         ticket.set_gid_caller(gid)
352         ticket.set_gid_object(gid)
353         ticket.set_delegate(True)
354         ticket.set_pubkey(auth_info.get_gid_object().get_pubkey())
355
356         parent_hrn = get_authority(hrn)
357         if not parent_hrn:
358             # if there is no parent hrn, then it must be self-signed. this
359             # is where we terminate the recursion
360             ticket.set_issuer(auth_info.get_pkey_object(), hrn)
361         else:
362             # we need the parent's private key in order to sign this GID
363             parent_auth_info = self.get_auth_info(parent_hrn)
364             ticket.set_issuer(parent_auth_info.get_pkey_object(), parent_auth_info.hrn)
365             ticket.set_parent(self.get_auth_cred(parent_hrn))
366
367         ticket.encode()
368         ticket.sign()
369
370         return ticket
371