[161] | 1 | #!/usr/bin/python |
---|
| 2 | import pprint |
---|
| 3 | import 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 | |
---|
| 27 | def checkAfsGroup(user, group, cell): |
---|
| 28 | """ |
---|
| 29 | checkAfsGroup(user, group) returns True if and only if user is in AFS group group in cell cell |
---|
| 30 | """ |
---|
[177] | 31 | p = subprocess.Popen(["pts", "membership", group, '-c', cell], |
---|
| 32 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
---|
| 33 | if p.wait(): |
---|
[161] | 34 | return False |
---|
[177] | 35 | for line in p.stdout.readlines()[1:]: |
---|
| 36 | if line.strip() == user: |
---|
[161] | 37 | return True |
---|
| 38 | return False |
---|
| 39 | |
---|
[177] | 40 | def checkLockerOwner(user, locker, verbose=False): |
---|
[161] | 41 | """ |
---|
| 42 | checkLockerOwner(user, locker) returns True if and only if user administers locker |
---|
| 43 | """ |
---|
[177] | 44 | p = subprocess.Popen(["fs", "whichcell", "/mit/" + locker], |
---|
| 45 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
---|
| 46 | if p.wait(): |
---|
| 47 | if verbose: |
---|
| 48 | return p.stderr.read() |
---|
[161] | 49 | return False |
---|
| 50 | cell = p.stdout.read().split()[-1][1:-1] |
---|
[177] | 51 | p = subprocess.Popen(["fs", "listacl", "/mit/" + locker], |
---|
| 52 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
---|
| 53 | if p.wait(): |
---|
| 54 | if verbose: |
---|
| 55 | return p.stderr.read() |
---|
[161] | 56 | return False |
---|
[177] | 57 | for line in p.stdout.readlines()[1:]: |
---|
[161] | 58 | entry = line.split() |
---|
[177] | 59 | if not entry or entry[0] == "Negative": |
---|
[161] | 60 | break |
---|
| 61 | if entry[1] == "rlidwka": |
---|
[177] | 62 | if entry[0] == user or (entry[0][0:6] == "system" and |
---|
| 63 | checkAfsGroup(user, entry[0], cell)): |
---|
[161] | 64 | return True |
---|
[177] | 65 | if verbose: |
---|
| 66 | return "You don't have admin bits on /mit/" + locker |
---|
[161] | 67 | return False |
---|
| 68 | |
---|
| 69 | |
---|
| 70 | if __name__ == "__main__": |
---|
| 71 | # print list(getldapgroups("tabbott")) |
---|
| 72 | print checkAfsGroup("tabbott", "system:debathena", 'athena.mit.edu') |
---|
| 73 | print checkAfsGroup("tabbott", "system:debathena", 'sipb.mit.edu') |
---|
| 74 | print checkAfsGroup("tabbott", "system:debathena-root", 'athena.mit.edu') |
---|
| 75 | print checkAfsGroup("tabbott", "system:hmmt-request", 'athena.mit.edu') |
---|
| 76 | print checkLockerOwner("tabbott", "tabbott") |
---|
| 77 | print checkLockerOwner("tabbott", "debathena") |
---|
| 78 | print checkLockerOwner("tabbott", "sipb") |
---|
| 79 | print checkLockerOwner("tabbott", "lsc") |
---|
| 80 | print checkLockerOwner("tabbott", "scripts") |
---|
| 81 | print checkLockerOwner("ecprice", "hmmt") |
---|