/* ldb database library Copyright (C) Andrew Tridgell 2005 ** NOTE! The following LGPL license applies to the ldb ** library. This does NOT imply that all of Samba is released ** under the LGPL This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* handle operational attributes */ /* createTimestamp: HIDDEN, searchable, ldaptime, alias for whenCreated modifyTimestamp: HIDDEN, searchable, ldaptime, alias for whenChanged for the above two, we do the search as normal, and if createTimestamp or modifyTimestamp is asked for, then do additional searches for whenCreated and whenChanged and fill in the resulting values we also need to replace these with the whenCreated/whenChanged equivalent in the search expression trees whenCreated: not-HIDDEN, CONSTRUCTED, SEARCHABLE whenChanged: not-HIDDEN, CONSTRUCTED, SEARCHABLE on init we need to setup attribute handlers for these so comparisons are done correctly. The resolution is 1 second. on add we need to add both the above, for current time on modify we need to change whenChanged subschemaSubentry: HIDDEN, not-searchable, points at DN CN=Aggregate,CN=Schema,CN=Configuration,$BASEDN for this one we do the search as normal, then add the static value if requested. How do we work out the $BASEDN from inside a module? structuralObjectClass: HIDDEN, CONSTRUCTED, not-searchable. always same as objectclass? for this one we do the search as normal, then if requested ask for objectclass, change the attribute name, and add it allowedAttributesEffective: HIDDEN, CONSTRUCTED, not-searchable, list of attributes that can be modified - requires schema lookup attributeTypes: in schema only objectClasses: in schema only matchingRules: in schema only matchingRuleUse: in schema only creatorsName: not supported by w2k3? modifiersName: not supported by w2k3? */ #include "includes.h" #include "ldb/include/ldb.h" #include "ldb/include/ldb_private.h" #include /* construct a canonical name from a message */ static int construct_canonical_name(struct ldb_module *module, struct ldb_message *msg) { char *canonicalName; canonicalName = ldb_dn_canonical_string(msg, msg->dn); if (canonicalName == NULL) { return -1; } return ldb_msg_add_string(msg, "canonicalName", canonicalName); } /* a list of attribute names that should be substituted in the parse tree before the search is done */ static const struct { const char *attr; const char *replace; } parse_tree_sub[] = { { "createTimestamp", "whenCreated" }, { "modifyTimestamp", "whenChanged" } }; /* a list of attribute names that are hidden, but can be searched for using another (non-hidden) name to produce the correct result */ static const struct { const char *attr; const char *replace; int (*constructor)(struct ldb_module *, struct ldb_message *); } search_sub[] = { { "createTimestamp", "whenCreated", NULL }, { "modifyTimestamp", "whenChanged", NULL }, { "structuralObjectClass", "objectClass", NULL }, { "canonicalName", "distinguishedName", construct_canonical_name } }; /* post process a search result record. For any search_sub[] attributes that were asked for, we need to call the appropriate copy routine to copy the result into the message, then remove any attributes that we added to the search but were not asked for by the user */ static int operational_search_post_process(struct ldb_module *module, struct ldb_message *msg, const char * const *attrs) { int i, a=0; for (a=0;attrs && attrs[a];a++) { for (i=0;ildb, LDB_DEBUG_WARNING, "operational_search_post_process failed for attribute '%s'\n", attrs[a]); return -1; } /* hook search operations */ static int operational_search_bytree(struct ldb_module *module, const struct ldb_dn *base, enum ldb_scope scope, struct ldb_parse_tree *tree, const char * const *attrs, struct ldb_message ***res) { int i, r, a; int ret; const char **search_attrs = NULL; (*res) = NULL; /* replace any attributes in the parse tree that are searchable, but are stored using a different name in the backend */ for (i=0;i