source: trunk/packages/sipb-xen-www/code/getafsgroups.py @ 1154

Last change on this file since 1154 was 1154, checked in by broder, 16 years ago

If the ACL for a locker isn't accessible, assume it's empty (closes #82)

File size: 3.8 KB
RevLine 
[161]1#!/usr/bin/python
2import pprint
3import subprocess
4
5# import ldap
6# l = ldap.open("W92-130-LDAP-2.mit.edu")
7# # ldap.mit.edu is 1/2 broken right now so we're going to the working backend
8# l.simple_bind_s("", "")
9
10# def getLdapGroups(user):
11#     """
12#     getLdapGroups(user): returns a generator for the list of LDAP groups containing user
13#     """
14#     for user_data in l.search_s("ou=affiliates,dc=mit,dc=edu", ldap.SCOPE_ONELEVEL, "uid=" + user, []):
15#         for group_data in l.search_s("ou=groups,dc=mit,dc=edu", ldap.SCOPE_ONELEVEL, "uniqueMember="+user_data[0], ['cn']):
16#             yield group_data[1]['cn'][0]
17
18# def checkLdapGroups(user, group):
19#     """
20#     checkLdapGroups(user, group): returns True if and only if user is in LDAP group group
21#     """
22#     for result_data in l.search_s("ou=affiliates,dc=mit,dc=edu", ldap.SCOPE_ONELEVEL, "uid=" + user, []):
23#         if l.search_s("ou=groups,dc=mit,dc=edu", ldap.SCOPE_ONELEVEL, "(&(cn=" + group + ")(uniqueMember="+result_data[0] + "))", []) != []:
24#             return True
25#     return False
26
[409]27class AfsProcessError(Exception):
[234]28    pass
29
30def getAfsGroupMembers(group, cell):
[413]31    p = subprocess.Popen(["pts", "membership", "-noauth", group, '-c', cell], 
[177]32                         stdout=subprocess.PIPE, stderr=subprocess.PIPE)
[413]33    err = p.stderr.read()
34    if err: #Error code doesn't reveal missing groups, but stderr does
35        raise AfsProcessError(err)
[234]36    return [line.strip() for line in p.stdout.readlines()[1:]]
[161]37
[408]38def getLockerPath(locker):
39    if '/' in locker or locker in ['.', '..']:
[412]40        raise AfsProcessError("Locker '%s' is invalid." % locker)
[408]41    return '/mit/' + locker
42
[234]43def getCell(locker):
[408]44    p = subprocess.Popen(["fs", "whichcell", getLockerPath(locker)], 
[177]45                         stdout=subprocess.PIPE, stderr=subprocess.PIPE)
46    if p.wait():
[409]47        raise AfsProcessError(p.stderr.read())
[234]48    return p.stdout.read().split()[-1][1:-1]
49
50def getLockerAcl(locker):
[1154]51    try:
52        p = subprocess.Popen(["fs", "listacl", getLockerPath(locker)], 
53                             stdout=subprocess.PIPE, stderr=subprocess.PIPE)
54        if p.wait():
55            raise AfsProcessError(p.stderr.read())
56    except AfsProcessError, e:
57        if e.message.startswith("fs: You don't have the required access rights on"):
58            return []
59        raise
[234]60    lines = p.stdout.readlines()
61    values = []
62    for line in lines[1:]:
63        fields = line.split()
64        if fields[0] == 'Negative':
[161]65            break
[408]66        if 'a' in fields[1]:
[234]67            values.append(fields[0])
68    return values
[161]69
[234]70def notLockerOwner(user, locker):
71    """
72    notLockerOwner(user, locker) returns false if and only if user administers locker.
[161]73
[234]74    If the user does not own the locker, returns the string reason for
75    the failure.
76    """
77    try:
78        cell = getCell(locker)
79        values = getLockerAcl(locker)
[409]80    except AfsProcessError, e:
[234]81        return str(e)
82
83    for entry in values:
[413]84        if entry == user or (entry[0:6] == "system" and
85                                user in getAfsGroupMembers(entry, cell)):
[234]86            return False
[408]87    return "You don't have admin bits on " + getLockerPath(locker)
[234]88
89
[161]90if __name__ == "__main__":
91#    print list(getldapgroups("tabbott"))
[413]92    print "tabbott" in getAfsGroupMembers("system:debathena", 'athena.mit.edu')
93    print "tabbott" in getAfsGroupMembers("system:debathena", 'sipb.mit.edu')
94    print "tabbott" in getAfsGroupMembers("system:debathena-root", 'athena.mit.edu')
95    print "tabbott" in getAfsGroupMembers("system:hmmt-request", 'athena.mit.edu')
[234]96    print notLockerOwner("tabbott", "tabbott")
97    print notLockerOwner("tabbott", "debathena")
98    print notLockerOwner("tabbott", "sipb")
99    print notLockerOwner("tabbott", "lsc")
100    print notLockerOwner("tabbott", "scripts")
101    print notLockerOwner("ecprice", "hmmt")
Note: See TracBrowser for help on using the repository browser.