diff options
Diffstat (limited to 'Pivot.py')
-rw-r--r-- | Pivot.py | 155 |
1 files changed, 82 insertions, 73 deletions
@@ -2,31 +2,19 @@ import sys, os, sets import ldap, ldap.dn, ldap.filter, ldif -import Backend - -HOST = "ldap://localhost:3890" -ROOTDN = "cn=root,dc=fam" -PASSWORD = "barn" -BASE = "dc=fam" -REF_ATTRIBUTE = "member" -KEY_ATTRIBUTE = "uid" -TAG_ATTRIBUTE = "memberOf" -ACCESS_ATTRIBUTE = "access" -FILENAME = "/tmp/pivot.ldif" - -OBJECT_CLASS = "group" -DN_ATTRIBUTE = "cn" - -# hasSubordinates: TRUE +import Backend, Config SCOPE_BASE = "0" SCOPE_ONE = "1" SCOPE_SUB = "2" class Lookups: - def __init__(self, url): + def __init__(self, url, binddn, password): self.url = url self.ldap = None + self.binddn = binddn + self.password = password + def __connect(self, force = False): if self.ldap: @@ -35,7 +23,7 @@ class Lookups: self.ldap.unbind() self.ldap = ldap.initialize(self.url) try: - self.ldap.simple_bind_s(ROOTDN, PASSWORD) + self.ldap.simple_bind_s(self.binddn, self.password) except ldap.LDAPError, ex: raise Backend.Error(Backend.OPERATIONS_ERROR, "Couldn't do internal authenticate: %s" % ex.args[0]["desc"]) @@ -80,12 +68,14 @@ class Lookups: class Storage: - def __init__(self, filename): + def __init__(self, filename = None): self.filename = filename self.entries = { } self.load() def load(self): + if not self.filename: + return if not os.path.exists(self.filename): return input = open(self.filename, 'r') @@ -97,16 +87,14 @@ class Storage: self.entries[dn] = entry def save(self): + if not self.filename: + return output = open(self.filename, 'w') print >> output, "# Overwritten automatically, do not edit\n" writer = ldif.LDIFWriter(output) for (dn, entry) in self.entries.items(): if (entry): - print - print dn - print repr(entry) - print writer.unparse(dn, entry) output.close() @@ -174,13 +162,15 @@ class Tags: if not force and self.tags is not None: return try: - results = self.database.lookups.search(BASE, "(%s=*)" % TAG_ATTRIBUTE, [TAG_ATTRIBUTE]) + results = self.database.lookups.search(self.database.search_base, + "(%s=*)" % self.database.tag_attribute, + [self.database.tag_attribute]) tags = { } for (dn, entry) in results: for attr in entry.values(): for value in attr: - tags[value] = DN_ATTRIBUTE + tags[value] = self.database.dn_attribute self.tags = tags except ldap.LDAPError, ex: @@ -235,13 +225,10 @@ def parse_dn(dn): raise Backend.Error(Backend.PROTOCOL_ERROR, "Invalid dn: %s" % dn) def is_parsed_dn_parent(dn, parent): - print dn - print parent if len(dn) != len(parent) + 1: return False # Go backwards and validate each parent for i in range(-1, -1 - len(parent)): - print i, dn[i], parent[i] if dn[i] != parent[i]: return False return True @@ -249,9 +236,23 @@ def is_parsed_dn_parent(dn, parent): class Database(Backend.Database): def __init__(self, suffix): Backend.Database.__init__(self, suffix) - self.lookups = Lookups(HOST) + + self.rootdn = Config.require("ldap-root") + self.search_base = Config.require("ldap-base") + self.lookups = Lookups(Config.require("ldap-host"), self.rootdn, + Config.require("ldap-password")) self.suffix_dn = parse_dn(self.suffix) - self.storage = Storage(FILENAME) + + self.dn_attribute = Config.require("rdn-attribute") + self.object_class = Config.require("ref-objectclass") + self.ref_attribute = Config.require("ref-attribute") + self.key_attribute = Config.require("key-attribute") + self.access_attribute = Config.require("access-attribute") + self.tag_attribute = Config.require("tag-attribute") + + filename = Config.option("storage-file") + self.storage = Storage(filename) + def __search_tag_keys(self, tags): @@ -259,7 +260,7 @@ class Database(Backend.Database): return [] # Build up a filter - filter = [ldap.filter.filter_format("(%s=%s)", (TAG_ATTRIBUTE, tag)) for tag in tags] + filter = [ldap.filter.filter_format("(%s=%s)", (self.tag_attribute, tag)) for tag in tags] if len(filter) > 1: filter = "(&" + "".join(filter) + ")" else: @@ -267,23 +268,23 @@ class Database(Backend.Database): try: # Search for all those guys - results = self.lookups.search(BASE, filter, [ KEY_ATTRIBUTE ]) + results = self.lookups.search(self.search_base, filter, [ self.key_attribute ]) except ldap.LDAPError, ex: raise Backend.Error(Backend.OPERATIONS_ERROR, "Couldn't search ldap for tags: %s" % ex.args[0]["desc"]) - return [entry[KEY_ATTRIBUTE][0] for (dn, entry) in results if entry[KEY_ATTRIBUTE]] + return [entry[self.key_attribute][0] for (dn, entry) in results if entry[self.key_attribute]] def __search_key_dns(self, key): # Build up a filter - filter = ldap.filter.filter_format("(%s=%s)", (KEY_ATTRIBUTE, key)) + filter = ldap.filter.filter_format("(%s=%s)", (self.key_attribute, key)) try: # Do the actual search - results = self.lookups.search(BASE, filter) + results = self.lookups.search(self.search_base, filter) except ldap.LDAPError, ex: raise Backend.Error(Backend.OPERATIONS_ERROR, @@ -292,7 +293,7 @@ class Database(Backend.Database): return [dn for (dn, entry) in results if dn] - def __build_root_entry(self, tags, with_attrs = True): + def __build_root_entry(self, tags): attrs = { "objectClass" : [ "top" ], "hasSubordinates" : [ ] @@ -303,17 +304,14 @@ class Database(Backend.Database): attrs[typ] = [ ] attrs[typ].append(val) - # Note that we don't access 'tags' unless attributes requested - if with_attrs: - attrs["hasSubordinates"].append(tags and "TRUE" or "FALSE") - + attrs["hasSubordinates"].append(tags and "TRUE" or "FALSE") return (self.suffix, attrs) - def __build_pivot_entry(self, tags, with_attrs = True): + def __build_pivot_entry(self, tags, keys): attrs = { - REF_ATTRIBUTE : [ ], - "objectClass" : [ OBJECT_CLASS ], + self.ref_attribute : [ ], + "objectClass" : [ self.object_class ], "hasSubordinates" : [ "FALSE" ] } @@ -328,16 +326,16 @@ class Database(Backend.Database): dn.extend(self.suffix_dn) dn = ldap.dn.dn2str(dn) - # Get out all the attributes - if with_attrs: - for key in self.__search_tag_keys(tags): - attrs[REF_ATTRIBUTE].append(key) + for key in keys: + attrs[self.ref_attribute].append(key) return (dn, attrs) - def __build_storage_entry(self, parsed_dn, with_attrs = True): - attrs = { } + def __build_storage_entry(self, parsed_dn, keys): + attrs = { + self.ref_attribute : [ ] + } # Build up DN relevant attrs for (typ, val, num) in parsed_dn[0]: @@ -345,6 +343,9 @@ class Database(Backend.Database): attrs[typ] = [ ] attrs[typ].append(val) + for key in keys: + attrs[self.ref_attribute].append(key) + # All other storage attributes retrieved later if necessary return (ldap.dn.dn2str(parsed_dn), attrs) @@ -404,38 +405,47 @@ class Database(Backend.Database): # Arguments sent scope = args["scope"] or SCOPE_BASE - with_attrs = len(args["attrs"].strip()) > 0 # Start at the root if parsed == self.suffix_dn: tags = Tags.from_database(self) if scope == SCOPE_BASE or scope == SCOPE_SUB: - (dn, entry) = self.__build_root_entry(tags, with_attrs) + (dn, entry) = self.__build_root_entry(tags) results[dn] = entry if scope == SCOPE_ONE or scope == SCOPE_SUB: # Process each tag individually, by default for (tag, typ) in tags.items(): - (child, entry) = self.__build_pivot_entry({ tag : typ }, with_attrs) + ctags = { tag : typ } + keys = self.__search_tag_keys(ctags) + (child, entry) = self.__build_pivot_entry(ctags, keys) results[child] = entry # Process all extra storage items for child in self.storage.list_dns(): if child not in results: - (child, entry) = self.__build_storage_entry(parse_dn(child)) + cparsed = parse_dn(child) + ctags = Tags.from_parsed_dn(cparsed) + keys = self.__search_tag_keys(ctags) + (child, entry) = self.__build_storage_entry(parse_dn(child), keys) results[child] = entry - # Start at a tag - elif is_parsed_dn_parent(parsed, self.suffix_dn): - tags = Tags.from_parsed_dn(parsed) - if scope == SCOPE_BASE or scope == SCOPE_SUB: - (dn, entry) = self.__build_pivot_entry(tags, with_attrs) - results[dn] = entry - # Something in the database elif self.storage.exists(dn): if scope == SCOPE_BASE or scope == SCOPE_SUB: - (dn, entry) = self.__build_storage_entry(parsed, with_attrs) + tags = Tags.from_parsed_dn(parsed) + keys = self.__search_tag_keys(tags) + (dn, entry) = self.__build_storage_entry(parsed, keys) results[dn] = entry + # Start at a tag + elif is_parsed_dn_parent(parsed, self.suffix_dn): + if scope == SCOPE_BASE or scope == SCOPE_SUB: + tags = Tags.from_parsed_dn(parsed) + keys = self.__search_tag_keys(tags) + if keys: + (dn, entry) = self.__build_pivot_entry(tags, keys) + results[dn] = entry + + # We don't have that base else: raise Backend.Error(Backend.NO_SUCH_OBJECT, "DN '%s' does not exist" % dn) @@ -447,18 +457,18 @@ class Database(Backend.Database): dns = self.__search_key_dns(key) if not dns: raise Backend.Error(Backend.CONSTRAINT_VIOLATION, - "Cannot find an entry for %s '%s'" % (KEY_ATTRIBUTE, key)) + "Cannot find an entry for %s '%s'" % (self.key_attribute, key)) for dn in dns: if not mods.has_key(dn): mods[dn] = (key, []) for tag in tags: - mods[dn][1].append((op, TAG_ATTRIBUTE, tag)) + mods[dn][1].append((op, self.tag_attribute, tag)) def __check_write_access(self, dn): - if self.binddn == ROOTDN: + if self.binddn == self.rootdn: return True - return self.storage.has(dn, ACCESS_ATTRIBUTE, self.binddn) + return self.storage.has(dn, self.access_attribute, self.binddn) def add(self, dn, entry): @@ -469,7 +479,7 @@ class Database(Backend.Database): if parsed == self.suffix_dn: raise Backend.Error(Backend.ALREADY_EXISTS, "This entry already exists: %s" % dn) if not is_parsed_dn_parent(parsed, self.suffix_dn): - raise Backend.Error(Backend.NO_SUCH_OBJECT, "Parent of '%s' does not exist or is not valid" % dn) + raise Backend.Error(Backend.NO_SUCH_OBJECT, "Parent of '%s' does not exist or is not a valid place for an entry" % dn) if self.storage.exists(dn): raise Backend.Error(Backend.ALREADY_EXISTS, "This entry already exists: %s" % dn) if len(self.__search_tag_keys(tags)): @@ -484,8 +494,8 @@ class Database(Backend.Database): mods.append((ldap.MOD_ADD, attr, value)) # Add an access attribute for the creator - if self.binddn and not ACCESS_ATTRIBUTE in entry : - mods.append((ldap.MOD_ADD, ACCESS_ATTRIBUTE, self.binddn)) + if self.binddn and not self.access_attribute in entry : + mods.append((ldap.MOD_ADD, self.access_attribute, self.binddn)) # Make the actual changes self.__change(parsed, mods, tags) @@ -507,7 +517,7 @@ class Database(Backend.Database): raise Backend.Error(Backend.INSUFFICIENT_ACCESS, "Access denied to delete entry: %s" % dn) mods = [] - mods.append((ldap.MOD_DELETE, REF_ATTRIBUTE, None)) + mods.append((ldap.MOD_DELETE, self.ref_attribute, None)) # Make the actual changes self.__change(parsed, mods, tags) @@ -546,7 +556,7 @@ class Database(Backend.Database): for (op, attr, value) in mods: # Process access attributes later - if attr != REF_ATTRIBUTE: + if attr != self.ref_attribute: continue if op == ldap.MOD_ADD: @@ -587,7 +597,6 @@ class Database(Backend.Database): errors = [] for (dn, (key, mod)) in keys_and_mods_by_dn.items(): try: - print dn, mod self.lookups.modify(dn, mod) except (ldap.TYPE_OR_VALUE_EXISTS, ldap.NO_SUCH_ATTRIBUTE): continue @@ -600,12 +609,12 @@ class Database(Backend.Database): # Send back errors if errors: raise Backend.Error(Backend.CONSTRAINT_VIOLATION, - "Couldn't change %s for %s" % (KEY_ATTRIBUTE, ", ".join(errors))) + "Couldn't change %s for %s" % (self.key_attribute, ", ".join(errors))) # Process other attributes now dn = ldap.dn.dn2str(parsed) for (op, attr, value) in mods: - if attr == REF_ATTRIBUTE: + if attr == self.ref_attribute: continue if op == ldap.MOD_ADD: self.storage.store(dn, attr, value) |