source: fedd/access_to_abac.py @ 923984c

compt_changesinfo-ops
Last change on this file since 923984c was 6bedbdba, checked in by Ted Faber <faber@…>, 12 years ago

Split topdl and fedid out to different packages. Add differential
installs

  • Property mode set to 100755
File size: 14.2 KB
Line 
1#!/usr/bin/env python
2
3import sys, os
4import re
5import subprocess
6import os.path
7
8from string import join
9from optparse import OptionParser, OptionValueError
10from tempfile import mkdtemp
11
12import Creddy
13
14from deter import fedid
15from federation.authorizer import abac_authorizer
16from federation.util import abac_split_cert, abac_pem_type, file_expanding_opts
17
18
19class attribute:
20    '''
21    Encapculate a principal/attribute/link tuple.
22    '''
23    bad_attr = re.compile('[^a-zA-Z0-9_]+')
24    def __init__(self, p, a, l=None):
25        self.principal = p
26        self.attr = attribute.bad_attr.sub('_', a)
27        if l: self.link = attribute.bad_attr.sub('_', l)
28        else: self.link = None
29
30    def __str__(self):
31        if self.link:
32            return "%s.%s.%s" % (self.principal, self.attr, self.link)
33        elif self.attr:
34            return "%s.%s" % (self.principal, self.attr)
35        else:
36            return "%s" % self.principal
37
38class credential:
39    '''
40    A Credential, that is the requisites (as attributes) and the assigned
41    attribute (as principal, attr).   If req is iterable, the requirements are
42    an intersection/conjunction.
43    '''
44    bad_attr = re.compile('[^a-zA-Z0-9_]+')
45    def __init__(self, p, a, req):
46        self.principal = p
47        if isinstance(a, (tuple, list, set)) and len(a) == 1:
48            self.attr = credential.bad_attr.sub('_', a[0])
49        else:
50            self.attr = credential.bad_attr.sub('_', a)
51        self.req = req
52
53    def __str__(self):
54        if isinstance(self.req, (tuple, list, set)):
55            return "%s.%s <- %s" % (self.principal, self.attr, 
56                    join(["%s" % r for r in self.req], ' & '))
57        else:
58            return "%s.%s <- %s" % (self.principal, self.attr, self.req)
59
60# Mappinng generation function and the access parser throw these when there is
61# a parsing problem.
62class parse_error(RuntimeError): pass
63
64# Error creating a credential
65class credential_error(RuntimeError): pass
66
67# Functions to parse the individual access maps as well as an overall function
68# to parse generic ones.  The specific ones create a credential to local
69# attributes mapping and the global one creates the access policy credentials.
70
71#  All the local parsing functions get the unparsed remainder of the line
72#  (after the three-name and the attribute it maps to), the credential list to
73#  add the new ABAC credential(s) that will be mapped into the local
74#  credentials, the fedid of this entity, a dict mapping the local credentials
75#  to ABAC credentials that are required to exercise those local rights and the
76#  three-name (p, gp, gu) that is being mapped.
77def parse_emulab(l, creds, me, to_id, p, gp, gu, lr):
78    '''
79    Parse the emulab (project, allocation_user, cert_file) format.
80    '''
81    right_side_str = '\s*,\s*\(\s*%s\s*,\s*%s\s*,\s*(%s)\s*\)' % \
82            (proj_same_str, id_same_str,path_str)
83
84    m = re.match(right_side_str, l)
85    if m:
86        project, user, cert = m.group(1,2,3)
87        # Resolve "<same>"s in project and user
88        if project == '<same>':
89            if gp  is not None:
90                project = gp
91            else:
92                raise parse_error("Project cannot be decisively mapped: %s" % l)
93        if user == '<same>':
94            if gu is not None:
95                user = gu
96            else:
97                raise parse_error("User cannot be decisively mapped: %s" % l)
98
99        # Create a semi-mnemonic name for the destination credential (the one
100        # that will be mapped to the local attributes
101        if gp and gu:
102            a = 'project_%s_user_%s' % (gp, gu)
103        elif gp:
104            a = 'project_%s' % gp
105        elif gu:
106            a = 'user_%s' % gu
107        else:
108            raise parse_error("No mapping for %s/%s!?" % (gp, gu))
109
110        # Store the creds and map entries
111        c = credential(me, a, 
112                [attribute(p, x, lr) for x in (gp, gu) if x is not None])
113        creds.add(c)
114        if (project, user,cert) in to_id: to_id[(project,user,cert)].append(c)
115        else: to_id[(project,user,cert)] = [ c ]
116    else:
117        raise parse_error("Badly formatted local mapping: %s" % l)
118
119
120def parse_protogeni(l, creds, me, to_id, p, gp, gu, lr):
121    '''
122    Parse the protoGENI (cert, user, user_key, cert_pw) format.
123    '''
124    right_side_str = '\s*,\s*\(\s*(%s)\s*,\s*(%s)\s*,\s*(%s)\s*,\s*(%s)\s*\)' \
125            % (path_str, id_str, path_str, id_str)
126
127    m = re.match(right_side_str, l)
128    if m:
129        cert, user, key, pw = m.group(1,2,3,4)
130        # The credential is formed from just the path (with / mapped to _) and
131        # the username.
132        acert = re.sub('/', '_', cert)
133
134        a = "cert_%s_user_%s" % (acert, user)
135
136        # Store em
137        c = credential(me, a, 
138                [attribute(p, x, lr) for x in (gp, gu) if x is not None])
139        creds.add(c)
140        if (cert, user, key, pw) in to_id: 
141            to_id[(cert, user, key, pw)].append(c)
142        else: 
143            to_id[(cert, user, key, pw)] = [ c ]
144    else:
145        raise parse_error("Badly formatted local mapping: %s" % l)
146
147def parse_dragon(l, creds, me, to_id, p, gp, gu, lr):
148    '''
149    Parse the dragon (repository_name) version.
150    '''
151    right_side_str = '\s*,\s*\(\s*(%s)\s*\)' % \
152            (id_str)
153
154    m = re.match(right_side_str, l)
155    if m:
156        repo= m.group(1)
157        c = credential(me, 'repo_%s' % repo, 
158                [attribute(p, x, lr) for x in (gp, gu) if x is not None])
159        creds.add(c)
160        if repo in to_id: to_id[repo].append(c)
161        else: to_id[repo] = [ c ]
162    else:
163        raise parse_error("Badly formatted local mapping: %s" % l)
164
165def parse_skel(l, creds, me, to_id, p, gp, gu, lr):
166    '''
167    Parse the skeleton (local_attr) version.
168    '''
169    right_side_str = '\s*,\s*\(\s*(%s)\s*\)' % \
170            (id_str)
171
172    m = re.match(right_side_str, l)
173    if m:
174        lattr = m.group(1)
175        c = credential(me, 'lattr_%s' % lattr, 
176                [attribute(p, x, lr) for x in (gp, gu) if x is not None])
177        creds.add(c)
178        if lattr in to_id: to_id[lattr].append(c)
179        else: to_id[lattr] = [ c ]
180    else:
181        raise parse_error("Badly formatted local mapping: %s" % l)
182
183# internal plug-ins have no local attributes.
184def parse_internal(l, creds, me, to_id, p, gp, gu, lr): pass
185
186
187def parse_access(fn, mapper, delegation_link):
188    """
189    Parse the access file, calling out to the mapper to parse specific
190    credential types.  Mappers are above this code.
191    """
192    creds = set()
193    to_id = { }
194    f = open(fn, "r")
195    for i, l in enumerate(f):
196        try:
197            if comment_re.match(l):
198                continue
199            else:
200                m =  line_re.match(l)
201                if m:
202                    p, da = m.group(1, 4)
203                    gp, gu = m.group(2, 3)
204                    if gp == '<any>': gp = None
205                    if gu == '<any>': gu = None
206
207                    creds.add(credential(me, da, 
208                            [attribute(p, x, delegation_link) \
209                                    for x in (gp, gu) \
210                                        if x is not None]))
211                    if m.group(5) and mapper:
212                        mapper(m.group(5), creds, me, to_id, p, gp, gu,
213                                delegation_link)
214                else:
215                    raise parse_error('Syntax error')
216        except parse_error, e:
217            f.close()
218            raise parse_error('Error on line %d of %s: %s' % \
219                    (i, fn, e.message))
220    f.close()
221
222    return creds, to_id
223
224
225
226class access_opts(file_expanding_opts):
227    '''
228    Parse the options for this program.  Most are straightforward, but the
229    mapper uses a callback to convert from a string to a local mapper function.
230    '''
231    # Valid mappers
232    mappers = { 
233            'emulab': parse_emulab, 
234            'dragon': parse_dragon,
235            'internal': parse_internal,
236            'skel': parse_skel,
237            'protogeni': parse_protogeni,
238            }
239
240    @staticmethod
241    def parse_mapper(opt, s, val, parser, dest):
242        if val in access_opts.mappers:
243            setattr(parser.values, dest, access_opts.mappers[val])
244        else:
245            raise OptionValueError('%s must be one of %s' % \
246                    (s, join(access_opts.mappers.keys(), ', ')))
247
248    def __init__(self):
249        file_expanding_opts.__init__(self, usage='%prog [opts] file [...]')
250        self.add_option('--cert', dest='cert', default=None,
251                type='str', action='callback', callback=self.expand_file,
252                help='my fedid as an X.509 certificate')
253        self.add_option('--key', dest='key', default=None,
254                type='str', action='callback', callback=self.expand_file,
255                help='key for the certificate')
256        self.add_option('--dir', dest='dir', default=None,
257                type='str', action='callback', callback=self.expand_file,
258                help='Output directory for credentials')
259        self.add_option('--type', action='callback', nargs=1, type='str',
260                callback=access_opts.parse_mapper, 
261                callback_kwargs = { 'dest': 'mapper'}, 
262                help='Type of access file to parse.  One of %s. ' %\
263                        join(access_opts.mappers.keys(), ', ') + \
264                        'Omit for generic parsing.')
265        self.add_option('--quiet', dest='quiet', action='store_true', 
266                default=False,
267                help='Do not print credential to local attribute map')
268        self.add_option('--no_create_creds', action='store_false', 
269                dest='create_creds', default=True,
270                help='Do not create credentials for rules.')
271        self.add_option('--file', dest='file', default=None,
272                type='str', action='callback', callback=self.expand_file,
273                help='Access DB to parse.  If this is present, ' + \
274                        'omit the positional filename')
275        self.add_option('--mapfile', dest='map', default=None,
276                type='str', action='callback', callback=self.expand_file,
277                help='File for the attribute to local authorization data')
278        self.add_option('--no-delegate', action='store_false', dest='delegate',
279                default=True,
280                help='do not accept delegated attributes with the ' +\
281                        'acting_for linking role')
282        self.add_option('--no_auth', action='store_false', dest='create_auth', 
283                default=True, help='do not create a full ABAC authorizer')
284        self.add_option('--debug', action='store_true', dest='debug', 
285                default=False, help='Just print actions')
286        self.set_defaults(mapper=None)
287
288def create_creds(creds, cert, key, dir, debug=False, 
289        creddy='/usr/local/bin/creddy'):
290    '''
291    Make the the attributes from the list of credential
292    objects in the creds parameter.
293    '''
294    for i, c in enumerate(creds):
295        cid = Creddy.ID(cert)
296        cid.load_privkey(key)
297        cattr = Creddy.Attribute(cid, c.attr, 3600 * 24 * 365 * 10)
298        for r in c.req:
299            if r.principal and r.link and r.attr:
300                cattr.linking_role(r.principal, r.attr, r.link)
301            elif r.principal and r.attr:
302                cattr.role(r.principal, r.attr)
303            elif r.principal:
304                cattr.principal(r.principal)
305            else:
306                raise parse_error('Attribute without a principal?')
307        cattr.bake()
308        cattr.write_name('%s/cred%d_attr.der' % (dir, i))
309
310def clear_dir(dir):
311    for path, dirs, files in os.walk(dir, topdown=False):
312        for f in files: os.unlink(os.path.join(path, f))
313        for d in dirs: os.rmdir(os.path.join(path, d))
314
315# Regular expressions and parts thereof for parsing
316comment_re = re.compile('^\s*#|^$')
317fedid_str = 'fedid:([0-9a-fA-F]{40})'
318id_str = '[a-zA-Z][\w_-]*'
319proj_str = '[a-zA-Z][\w_/-]*'
320path_str = '[a-zA-Z0-9_/\.-]+'
321id_any_str = '(%s|<any>)' % id_str
322proj_any_str = '(%s|<any>)' % proj_str
323id_same_str = '(%s|<same>)' % id_str
324proj_same_str = '(%s|<same>)' % proj_str
325left_side_str = '\(\s*%s\s*,\s*%s\s*,\s*%s\s*\)' % \
326        (fedid_str, proj_any_str, id_any_str)
327right_side_str = '(%s)(\s*,\s*\(.*\))?' % (id_str)
328line_re = re.compile('%s\s*->\s*%s' % (left_side_str, right_side_str))
329
330p = access_opts()
331opts, args = p.parse_args()
332
333cert, key = None, None
334delete_certs = False
335delete_creds = False
336
337if opts.file:
338    args.append(opts.file)
339
340# Validate arguments
341if len(args) < 1:
342    sys.exit('No filenames given to parse')
343
344if opts.key:
345    if not os.access(opts.key, os.R_OK):
346        key = opts.key
347    else:
348        sys.exit('Cannot read key (%s)' % opts.key)
349
350if opts.dir:
351    if not os.access(opts.dir, os.F_OK):
352        try:
353            os.mkdir(opts.dir, 0700)
354        except EnvironmentError, e:
355            sys.exit("Cannot create %s: %s" % (e.filename, e.strerror))
356    if not os.path.isdir(opts.dir):
357        sys.exit('%s is not a directory' % opts.dir)
358    elif not os.access(opts.dir, os.W_OK):
359        sys.exit('%s is not writable' % opts.dir)
360
361if opts.create_auth:
362    creds_dir = mkdtemp()
363    delete_creds = True
364    auth_dir = opts.dir
365    if not os.path.isabs(auth_dir):
366        sys.exit('Authorizer path must be absolute')
367else:
368    creds_dir = opts.dir
369    auth_dir = None
370
371if opts.delegate: delegation_link = 'acting_for'
372else: delegation_link = None
373
374if not opts.mapper and (opts.map or opts.debug):
375    print >>sys.stderr, "No --type specified, mapping file will be empty."
376
377if opts.cert: 
378    try:
379        me = fedid(file=opts.cert) 
380    except EnvironmentError, e:
381        sys.exit('Bad --cert: %s (%s)' % (e.strerror, e.filename or '?!'))
382
383    if not opts.key:
384        if abac_pem_type(opts.cert) == 'both':
385            key, cert = abac_split_cert(opts.cert)
386            delete_certs = True
387    else:
388        cert = opts.cert
389else: 
390    print >>sys.stderr, 'No --cert, using dummy fedid'
391    me = fedid(hexstr='0123456789012345678901234567890123456789')
392    cert = None
393
394# The try block makes sure that credentials split into tmp files are deleted
395try:
396    # Do the parsing
397    for fn in args:
398        try:
399            creds, to_id = parse_access(fn, opts.mapper, delegation_link)
400        except parse_error, e:
401            print >> sys.stderr, "%s" % e
402            continue
403
404        except EnvironmentError, e:
405            print >>sys.stderr, "File error %s: %s" % \
406                    (e.filename or '!?', e.strerror) 
407            continue
408
409        # Credential output
410        if opts.create_creds:
411            if all([cert, key, opts.dir]):
412                try:
413                    create_creds([c for c in creds if c.principal == me],
414                            cert, key, creds_dir, opts.debug)
415                except credential_error, e:
416                    sys.exit('Credential creation failed: %s' % e)
417            else:
418                print >>sys.stderr, 'Cannot create credentials.  ' + \
419                        'Missing parameter'
420
421        # Local map output
422        if opts.map or opts.debug:
423            try:
424                if opts.map and opts.map != '-' and not opts.debug:
425                    f = open(opts.map, 'w')
426                else:
427                    f = sys.stdout
428                for k, c in to_id.items():
429                    # Keys are either a single string or a tuple of them; join
430                    # the tuples into a comma-separated string.
431                    if isinstance(k, basestring): rhs = k
432                    else: rhs = join(k, ', ')
433
434                    for a in set(["%s.%s" % (x.principal, x.attr) for x in c]):
435                        print >>f, "%s -> (%s)" % (a, rhs)
436            except EnvironmentError, e:
437                sys.exit("Cannot open %s: %s" % (e.filename or '!?', 
438                    e.strerror))
439
440        # Create an authorizer if requested.
441        if opts.create_auth:
442            clear_dir(auth_dir)
443            try:
444                # Pass in the options rather than the potentially split key
445                # because abac_authorizer will split it and store it
446                # internally.  The opts.cert may get split twice, but we won't
447                # lose one.
448                a = abac_authorizer(key=opts.key, me=opts.cert, 
449                        certs=creds_dir, save=auth_dir)
450                a.save(auth_dir)
451            except EnvironmentError, e:
452                sys.exit("Can't create or write %s: %s" % \
453                        (e.filename, e.strerror))
454            except abac_authorizer.bad_cert_error, e:
455                sys.exit("Error creating authorizer: %s" % e)
456
457finally:
458    try:
459        if delete_certs:
460            if cert: os.unlink(cert)
461            if key: os.unlink(key)
462        if delete_creds and creds_dir:
463            clear_dir(creds_dir)
464            os.rmdir(creds_dir)
465    except EnvironmentError, e:
466        sys.exit("Can't remove %s: %s" % ( e.filename, e.strerror))
Note: See TracBrowser for help on using the repository browser.