1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-21 12:23:50 +03:00
Files
samba-mirror/source/lib/ldb/ldb_ildap/ldb_ildap.c
Andrew Tridgell 7e44f9153c r10753: don't require every ldb module to implement both a search_bytree() and
a search() function, instead each module now only implements the
bytree method, and the expression based search is handled generically
by the modules code. This makes for more consistency and less code
duplication.

fixed the tdb backend to handle BASE searches much more
efficiently. They now always only lookup one record, regardless of the
search expression
2007-10-10 13:39:26 -05:00

470 lines
11 KiB
C

/*
ldb database library - ildap backend
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
*/
/*
This is a ldb backend for the internal ldap client library in
Samba4. By using this backend we are independent of a system ldap
library
*/
#include "includes.h"
#include "ldb/include/ldb.h"
#include "ldb/include/ldb_private.h"
#include "libcli/ldap/ldap.h"
#include "libcli/ldap/ldap_client.h"
#include "lib/cmdline/popt_common.h"
struct ildb_private {
struct ldap_connection *ldap;
NTSTATUS last_rc;
struct ldb_message *rootDSE;
};
/*
rename a record
*/
static int ildb_rename(struct ldb_module *module, const struct ldb_dn *olddn, const struct ldb_dn *newdn)
{
TALLOC_CTX *local_ctx;
struct ildb_private *ildb = module->private_data;
int ret = 0;
char *old_dn;
char *newrdn, *parentdn;
/* ignore ltdb specials */
if (ldb_dn_is_special(olddn) || ldb_dn_is_special(newdn)) {
return 0;
}
local_ctx = talloc_named(ildb, 0, "ildb_rename local context");
if (local_ctx == NULL) {
return -1;
}
old_dn = ldb_dn_linearize(local_ctx, olddn);
if (old_dn == NULL) {
goto failed;
}
newrdn = talloc_asprintf(local_ctx, "%s=%s",
newdn->components[0].name,
ldb_dn_escape_value(ildb, newdn->components[0].value));
if (newrdn == NULL) {
goto failed;
}
parentdn = ldb_dn_linearize(local_ctx, ldb_dn_get_parent(ildb, newdn));
if (parentdn == NULL) {
goto failed;
}
ildb->last_rc = ildap_rename(ildb->ldap, old_dn, newrdn, parentdn, True);
if (!NT_STATUS_IS_OK(ildb->last_rc)) {
ldb_set_errstring(module, talloc_strdup(module, ldap_errstr(ildb->ldap, ildb->last_rc)));
ret = -1;
}
talloc_free(local_ctx);
return ret;
failed:
talloc_free(local_ctx);
return -1;
}
/*
delete a record
*/
static int ildb_delete(struct ldb_module *module, const struct ldb_dn *dn)
{
struct ildb_private *ildb = module->private_data;
char *del_dn;
int ret = 0;
/* ignore ltdb specials */
if (ldb_dn_is_special(dn)) {
return 0;
}
del_dn = ldb_dn_linearize(ildb, dn);
ildb->last_rc = ildap_delete(ildb->ldap, del_dn);
if (!NT_STATUS_IS_OK(ildb->last_rc)) {
ldb_set_errstring(module, talloc_strdup(module, ldap_errstr(ildb->ldap, ildb->last_rc)));
ret = -1;
}
talloc_free(del_dn);
return ret;
}
static void ildb_rootdse(struct ldb_module *module);
/*
search for matching records using a ldb_parse_tree
*/
static int ildb_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)
{
struct ildb_private *ildb = module->private_data;
int count, i;
struct ldap_message **ldapres, *msg;
char *search_base;
if (scope == LDB_SCOPE_DEFAULT) {
scope = LDB_SCOPE_SUBTREE;
}
if (base == NULL) {
if (ildb->rootDSE == NULL) {
ildb_rootdse(module);
}
if (ildb->rootDSE != NULL) {
search_base = talloc_strdup(ildb,
ldb_msg_find_string(ildb->rootDSE,
"defaultNamingContext", ""));
} else {
search_base = talloc_strdup(ildb, "");
}
} else {
search_base = ldb_dn_linearize(ildb, base);
}
if (search_base == NULL) {
ldb_set_errstring(module, talloc_asprintf(module, "Unable to determine baseDN"));
return -1;
}
if (tree == NULL) {
ldb_set_errstring(module, talloc_asprintf(module, "Invalid expression parse tree"));
return -1;
}
ildb->last_rc = ildap_search_bytree(ildb->ldap, search_base, scope, tree, attrs,
0, &ldapres);
talloc_free(search_base);
if (!NT_STATUS_IS_OK(ildb->last_rc)) {
ldb_set_errstring(module, talloc_strdup(module, ldap_errstr(ildb->ldap, ildb->last_rc)));
return -1;
}
count = ildap_count_entries(ildb->ldap, ldapres);
if (count == -1 || count == 0) {
talloc_free(ldapres);
return count;
}
(*res) = talloc_array(ildb, struct ldb_message *, count+1);
if (! *res) {
talloc_free(ldapres);
return -1;
}
(*res)[0] = NULL;
/* loop over all messages */
for (i=0;i<count;i++) {
struct ldap_SearchResEntry *search;
msg = ldapres[i];
search = &msg->r.SearchResultEntry;
(*res)[i] = talloc(*res, struct ldb_message);
if (!(*res)[i]) {
goto failed;
}
(*res)[i+1] = NULL;
(*res)[i]->dn = ldb_dn_explode((*res)[i], search->dn);
if ((*res)[i]->dn == NULL) {
goto failed;
}
(*res)[i]->num_elements = search->num_attributes;
(*res)[i]->elements = talloc_steal((*res)[i], search->attributes);
(*res)[i]->private_data = NULL;
}
talloc_free(ldapres);
return count;
failed:
if (*res) talloc_free(*res);
return -1;
}
/*
convert a ldb_message structure to a list of ldap_mod structures
ready for ildap_add() or ildap_modify()
*/
static struct ldap_mod **ildb_msg_to_mods(struct ldb_context *ldb,
const struct ldb_message *msg, int use_flags)
{
struct ldap_mod **mods;
unsigned int i;
int num_mods = 0;
/* allocate maximum number of elements needed */
mods = talloc_array(ldb, struct ldap_mod *, msg->num_elements+1);
if (!mods) {
errno = ENOMEM;
return NULL;
}
mods[0] = NULL;
for (i=0;i<msg->num_elements;i++) {
const struct ldb_message_element *el = &msg->elements[i];
mods[num_mods] = talloc(ldb, struct ldap_mod);
if (!mods[num_mods]) {
goto failed;
}
mods[num_mods+1] = NULL;
mods[num_mods]->type = 0;
mods[num_mods]->attrib = *el;
if (use_flags) {
switch (el->flags & LDB_FLAG_MOD_MASK) {
case LDB_FLAG_MOD_ADD:
mods[num_mods]->type = LDAP_MODIFY_ADD;
break;
case LDB_FLAG_MOD_DELETE:
mods[num_mods]->type = LDAP_MODIFY_DELETE;
break;
case LDB_FLAG_MOD_REPLACE:
mods[num_mods]->type = LDAP_MODIFY_REPLACE;
break;
}
}
num_mods++;
}
return mods;
failed:
talloc_free(mods);
return NULL;
}
/*
add a record
*/
static int ildb_add(struct ldb_module *module, const struct ldb_message *msg)
{
struct ldb_context *ldb = module->ldb;
struct ildb_private *ildb = module->private_data;
struct ldap_mod **mods;
char *dn;
int ret = 0;
/* ignore ltdb specials */
if (ldb_dn_is_special(msg->dn)) {
return 0;
}
mods = ildb_msg_to_mods(ldb, msg, 0);
if (mods == NULL) {
return -1;
}
dn = ldb_dn_linearize(mods, msg->dn);
if (dn == NULL) {
talloc_free(mods);
return -1;
}
ildb->last_rc = ildap_add(ildb->ldap, dn, mods);
if (!NT_STATUS_IS_OK(ildb->last_rc)) {
ldb_set_errstring(module, talloc_strdup(module, ldap_errstr(ildb->ldap, ildb->last_rc)));
ret = -1;
}
talloc_free(mods);
return ret;
}
/*
modify a record
*/
static int ildb_modify(struct ldb_module *module, const struct ldb_message *msg)
{
struct ldb_context *ldb = module->ldb;
struct ildb_private *ildb = module->private_data;
struct ldap_mod **mods;
char *dn;
int ret = 0;
/* ignore ltdb specials */
if (ldb_dn_is_special(msg->dn)) {
return 0;
}
mods = ildb_msg_to_mods(ldb, msg, 1);
if (mods == NULL) {
return -1;
}
dn = ldb_dn_linearize(mods, msg->dn);
if (dn == NULL) {
talloc_free(mods);
return -1;
}
ildb->last_rc = ildap_modify(ildb->ldap, dn, mods);
if (!NT_STATUS_IS_OK(ildb->last_rc)) {
ldb_set_errstring(module, talloc_strdup(module, ldap_errstr(ildb->ldap, ildb->last_rc)));
ret = -1;
}
talloc_free(mods);
return ret;
}
static int ildb_start_trans(struct ldb_module *module)
{
/* TODO implement a local locking mechanism here */
return 0;
}
static int ildb_end_trans(struct ldb_module *module)
{
/* TODO implement a local transaction mechanism here */
return 0;
}
static int ildb_del_trans(struct ldb_module *module)
{
/* TODO implement a local locking mechanism here */
return 0;
}
static const struct ldb_module_ops ildb_ops = {
.name = "ldap",
.search_bytree = ildb_search_bytree,
.add_record = ildb_add,
.modify_record = ildb_modify,
.delete_record = ildb_delete,
.rename_record = ildb_rename,
.start_transaction = ildb_start_trans,
.end_transaction = ildb_end_trans,
.del_transaction = ildb_del_trans
};
/*
fetch the rootDSE
*/
static void ildb_rootdse(struct ldb_module *module)
{
struct ildb_private *ildb = module->private_data;
struct ldb_message **res = NULL;
struct ldb_dn *empty_dn = ldb_dn_new(ildb);
int ret;
ret = ildb_search_bytree(module, empty_dn, LDB_SCOPE_BASE,
ldb_parse_tree(empty_dn, "dn=dc=rootDSE"),
NULL, &res);
if (ret == 1) {
ildb->rootDSE = talloc_steal(ildb, res[0]);
}
if (ret != -1) talloc_free(res);
talloc_free(empty_dn);
}
/*
connect to the database
*/
int ildb_connect(struct ldb_context *ldb, const char *url,
unsigned int flags, const char *options[])
{
struct ildb_private *ildb = NULL;
NTSTATUS status;
struct cli_credentials *creds;
ildb = talloc(ldb, struct ildb_private);
if (!ildb) {
ldb_oom(ldb);
goto failed;
}
ildb->rootDSE = NULL;
ildb->ldap = ldap_new_connection(ildb, ldb_get_opaque(ldb, "EventContext"));
if (!ildb->ldap) {
ldb_oom(ldb);
goto failed;
}
status = ldap_connect(ildb->ldap, url);
if (!NT_STATUS_IS_OK(status)) {
ldb_debug(ldb, LDB_DEBUG_ERROR, "Failed to connect to ldap URL '%s' - %s\n",
url, ldap_errstr(ildb->ldap, status));
goto failed;
}
ldb->modules = talloc(ldb, struct ldb_module);
if (!ldb->modules) {
ldb_oom(ldb);
goto failed;
}
ldb->modules->ldb = ldb;
ldb->modules->prev = ldb->modules->next = NULL;
ldb->modules->private_data = ildb;
ldb->modules->ops = &ildb_ops;
/* caller can optionally setup credentials using the opaque token 'credentials' */
creds = ldb_get_opaque(ldb, "credentials");
if (creds == NULL) {
creds = cmdline_credentials;
}
if (creds != NULL && cli_credentials_authentication_requested(creds)) {
status = ldap_bind_sasl(ildb->ldap, creds);
if (!NT_STATUS_IS_OK(status)) {
ldb_debug(ldb, LDB_DEBUG_ERROR, "Failed to bind - %s\n",
ldap_errstr(ildb->ldap, status));
goto failed;
}
}
return 0;
failed:
if (ldb->modules) {
ldb->modules->private_data = NULL;
}
talloc_free(ildb);
return -1;
}