2006-01-15 09:12:29 +03:00
/*
ldb database library
Copyright ( C ) Simo Sorce 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
*/
/*
* Name : ldb
*
* Component : ldb attribute scoped query control module
*
* Description : this module searches all the the objects pointed
* by the DNs contained in the references attribute
*
* Author : Simo Sorce
*/
# include "includes.h"
# include "ldb/include/includes.h"
2006-07-22 20:56:33 +04:00
struct asq_context {
2006-05-28 19:20:53 +04:00
enum { ASQ_SEARCH_BASE , ASQ_SEARCH_MULTI } step ;
2006-03-14 00:05:55 +03:00
struct ldb_module * module ;
void * up_context ;
2006-07-22 20:56:33 +04:00
int ( * up_callback ) ( struct ldb_context * , void * , struct ldb_reply * ) ;
2006-03-14 00:05:55 +03:00
const char * const * req_attrs ;
char * req_attribute ;
2006-08-24 12:32:57 +04:00
enum {
ASQ_CTRL_SUCCESS = 0 ,
ASQ_CTRL_INVALID_ATTRIBUTE_SYNTAX = 21 ,
ASQ_CTRL_UNWILLING_TO_PERFORM = 53 ,
ASQ_CTRL_AFFECTS_MULTIPLE_DSA = 71
} asq_ret ;
2006-03-14 00:05:55 +03:00
struct ldb_request * base_req ;
2006-07-22 20:56:33 +04:00
struct ldb_reply * base_res ;
2006-03-14 00:05:55 +03:00
struct ldb_request * * reqs ;
int num_reqs ;
int cur_req ;
struct ldb_control * * controls ;
} ;
2006-07-22 20:56:33 +04:00
static struct ldb_handle * init_handle ( void * mem_ctx , struct ldb_module * module ,
2006-03-14 00:05:55 +03:00
void * context ,
2006-07-22 20:56:33 +04:00
int ( * callback ) ( struct ldb_context * , void * , struct ldb_reply * ) )
2006-03-14 00:05:55 +03:00
{
2006-07-22 20:56:33 +04:00
struct asq_context * ac ;
struct ldb_handle * h ;
2006-03-14 00:05:55 +03:00
2006-07-22 20:56:33 +04:00
h = talloc_zero ( mem_ctx , struct ldb_handle ) ;
2006-03-14 00:05:55 +03:00
if ( h = = NULL ) {
2006-08-13 11:33:57 +04:00
ldb_set_errstring ( module - > ldb , " Out of Memory " ) ;
2006-03-14 00:05:55 +03:00
return NULL ;
}
h - > module = module ;
2006-07-22 20:56:33 +04:00
ac = talloc_zero ( h , struct asq_context ) ;
2006-03-14 00:05:55 +03:00
if ( ac = = NULL ) {
2006-08-13 11:33:57 +04:00
ldb_set_errstring ( module - > ldb , " Out of Memory " ) ;
2006-03-14 00:05:55 +03:00
talloc_free ( h ) ;
return NULL ;
}
h - > private_data = ( void * ) ac ;
h - > state = LDB_ASYNC_INIT ;
h - > status = LDB_SUCCESS ;
ac - > module = module ;
ac - > up_context = context ;
ac - > up_callback = callback ;
return h ;
}
2006-07-22 20:56:33 +04:00
static int asq_terminate ( struct ldb_handle * handle )
2006-03-14 00:05:55 +03:00
{
2006-07-22 20:56:33 +04:00
struct asq_context * ac ;
struct ldb_reply * ares ;
2006-03-14 00:05:55 +03:00
struct ldb_asq_control * asq ;
int i ;
2006-07-22 20:56:33 +04:00
ac = talloc_get_type ( handle - > private_data , struct asq_context ) ;
2006-03-14 00:05:55 +03:00
handle - > status = LDB_SUCCESS ;
handle - > state = LDB_ASYNC_DONE ;
2006-07-22 20:56:33 +04:00
ares = talloc_zero ( ac , struct ldb_reply ) ;
2006-03-14 00:05:55 +03:00
if ( ares = = NULL )
return LDB_ERR_OPERATIONS_ERROR ;
ares - > type = LDB_REPLY_DONE ;
if ( ac - > controls ) {
for ( i = 0 ; ac - > controls [ i ] ; i + + ) ;
2006-09-13 06:33:51 +04:00
ares - > controls = talloc_move ( ares , & ac - > controls ) ;
2006-03-14 00:05:55 +03:00
} else {
i = 0 ;
}
ares - > controls = talloc_realloc ( ares , ares - > controls , struct ldb_control * , i + 2 ) ;
if ( ares - > controls = = NULL )
return LDB_ERR_OPERATIONS_ERROR ;
ares - > controls [ i ] = talloc ( ares - > controls , struct ldb_control ) ;
if ( ares - > controls [ i ] = = NULL )
return LDB_ERR_OPERATIONS_ERROR ;
ares - > controls [ i ] - > oid = LDB_CONTROL_ASQ_OID ;
ares - > controls [ i ] - > critical = 0 ;
asq = talloc_zero ( ares - > controls [ i ] , struct ldb_asq_control ) ;
if ( asq = = NULL )
return LDB_ERR_OPERATIONS_ERROR ;
asq - > result = ac - > asq_ret ;
ares - > controls [ i ] - > data = asq ;
ares - > controls [ i + 1 ] = NULL ;
ac - > up_callback ( ac - > module - > ldb , ac - > up_context , ares ) ;
return LDB_SUCCESS ;
}
2006-07-22 20:56:33 +04:00
static int asq_base_callback ( struct ldb_context * ldb , void * context , struct ldb_reply * ares )
2006-03-14 00:05:55 +03:00
{
2006-07-22 20:56:33 +04:00
struct asq_context * ac ;
2006-03-14 00:05:55 +03:00
if ( ! context | | ! ares ) {
2006-08-13 11:33:57 +04:00
ldb_set_errstring ( ldb , " NULL Context or Result in callback " ) ;
2006-03-14 00:05:55 +03:00
goto error ;
}
2006-07-22 20:56:33 +04:00
ac = talloc_get_type ( context , struct asq_context ) ;
2006-03-14 00:05:55 +03:00
/* we are interested only in the single reply (base search) we receive here */
if ( ares - > type = = LDB_REPLY_ENTRY ) {
2006-09-13 06:33:51 +04:00
ac - > base_res = talloc_move ( ac , & ares ) ;
2006-03-14 00:05:55 +03:00
} else {
talloc_free ( ares ) ;
}
return LDB_SUCCESS ;
error :
talloc_free ( ares ) ;
return LDB_ERR_OPERATIONS_ERROR ;
}
2006-07-22 20:56:33 +04:00
static int asq_reqs_callback ( struct ldb_context * ldb , void * context , struct ldb_reply * ares )
2006-03-14 00:05:55 +03:00
{
2006-07-22 20:56:33 +04:00
struct asq_context * ac ;
2006-03-14 00:05:55 +03:00
if ( ! context | | ! ares ) {
2006-08-13 11:33:57 +04:00
ldb_set_errstring ( ldb , " NULL Context or Result in callback " ) ;
2006-03-14 00:05:55 +03:00
goto error ;
}
2006-07-22 20:56:33 +04:00
ac = talloc_get_type ( context , struct asq_context ) ;
2006-03-14 00:05:55 +03:00
/* we are interested only in the single reply (base search) we receive here */
if ( ares - > type = = LDB_REPLY_ENTRY ) {
/* pass the message up to the original callback as we
* do not have to elaborate on it any further */
return ac - > up_callback ( ac - > module - > ldb , ac - > up_context , ares ) ;
} else { /* ignore any REFERRAL or DONE reply */
talloc_free ( ares ) ;
}
return LDB_SUCCESS ;
error :
talloc_free ( ares ) ;
return LDB_ERR_OPERATIONS_ERROR ;
}
2006-05-29 05:30:02 +04:00
static int asq_search ( struct ldb_module * module , struct ldb_request * req )
2006-03-14 00:05:55 +03:00
{
2006-05-29 05:30:02 +04:00
struct ldb_control * control ;
2006-03-14 00:05:55 +03:00
struct ldb_asq_control * asq_ctrl ;
2006-07-22 20:56:33 +04:00
struct asq_context * ac ;
struct ldb_handle * h ;
2006-03-14 00:05:55 +03:00
char * * base_attrs ;
int ret ;
2006-05-29 05:30:02 +04:00
/* check if there's a paged request control */
control = get_control_from_list ( req - > controls , LDB_CONTROL_ASQ_OID ) ;
if ( control = = NULL ) {
/* not found go on */
return ldb_next_request ( module , req ) ;
}
2006-07-22 21:21:59 +04:00
req - > handle = NULL ;
2006-03-14 00:05:55 +03:00
2006-07-22 21:21:59 +04:00
if ( ! req - > callback | | ! req - > context ) {
2006-08-13 11:33:57 +04:00
ldb_set_errstring ( module - > ldb ,
" Async interface called with NULL callback function or NULL context " ) ;
2006-03-14 00:05:55 +03:00
return LDB_ERR_OPERATIONS_ERROR ;
}
asq_ctrl = talloc_get_type ( control - > data , struct ldb_asq_control ) ;
if ( ! asq_ctrl ) {
return LDB_ERR_PROTOCOL_ERROR ;
}
2006-07-22 21:21:59 +04:00
h = init_handle ( req , module , req - > context , req - > callback ) ;
2006-03-14 00:05:55 +03:00
if ( ! h ) {
return LDB_ERR_OPERATIONS_ERROR ;
}
2006-07-22 20:56:33 +04:00
ac = talloc_get_type ( h - > private_data , struct asq_context ) ;
2006-03-14 00:05:55 +03:00
2006-07-22 21:21:59 +04:00
req - > handle = h ;
2006-03-14 00:05:55 +03:00
/* check the search is well formed */
if ( req - > op . search . scope ! = LDB_SCOPE_BASE ) {
ac - > asq_ret = ASQ_CTRL_UNWILLING_TO_PERFORM ;
return asq_terminate ( h ) ;
}
ac - > req_attrs = req - > op . search . attrs ;
ac - > req_attribute = talloc_strdup ( ac , asq_ctrl - > source_attribute ) ;
if ( ac - > req_attribute = = NULL )
return LDB_ERR_OPERATIONS_ERROR ;
/* get the object to retrieve the DNs to search */
ac - > base_req = talloc_zero ( req , struct ldb_request ) ;
if ( ac - > base_req = = NULL )
return LDB_ERR_OPERATIONS_ERROR ;
ac - > base_req - > operation = req - > operation ;
ac - > base_req - > op . search . base = req - > op . search . base ;
ac - > base_req - > op . search . scope = LDB_SCOPE_BASE ;
ac - > base_req - > op . search . tree = req - > op . search . tree ;
base_attrs = talloc_array ( ac - > base_req , char * , 2 ) ;
if ( base_attrs = = NULL )
return LDB_ERR_OPERATIONS_ERROR ;
base_attrs [ 0 ] = talloc_strdup ( base_attrs , asq_ctrl - > source_attribute ) ;
if ( base_attrs [ 0 ] = = NULL )
return LDB_ERR_OPERATIONS_ERROR ;
base_attrs [ 1 ] = NULL ;
ac - > base_req - > op . search . attrs = ( const char * const * ) base_attrs ;
2006-07-22 21:21:59 +04:00
ac - > base_req - > context = ac ;
ac - > base_req - > callback = asq_base_callback ;
2006-06-04 09:28:13 +04:00
ldb_set_timeout_from_prev_req ( module - > ldb , req , ac - > base_req ) ;
2006-03-14 00:05:55 +03:00
2006-05-28 19:20:53 +04:00
ac - > step = ASQ_SEARCH_BASE ;
2006-03-14 00:05:55 +03:00
ret = ldb_request ( module - > ldb , ac - > base_req ) ;
if ( ret ! = LDB_SUCCESS ) {
return ret ;
}
return LDB_SUCCESS ;
}
2006-07-22 20:56:33 +04:00
static int asq_requests ( struct ldb_handle * handle ) {
struct asq_context * ac ;
2006-03-14 00:05:55 +03:00
struct ldb_message_element * el ;
int i ;
2006-07-22 20:56:33 +04:00
ac = talloc_get_type ( handle - > private_data , struct asq_context ) ;
2006-03-14 00:05:55 +03:00
/* look up the DNs */
2006-09-10 07:11:03 +04:00
if ( ac - > base_res = = NULL ) {
return LDB_ERR_NO_SUCH_OBJECT ;
}
2006-03-14 00:05:55 +03:00
el = ldb_msg_find_element ( ac - > base_res - > message , ac - > req_attribute ) ;
/* no values found */
if ( el = = NULL ) {
ac - > asq_ret = ASQ_CTRL_SUCCESS ;
return asq_terminate ( handle ) ;
}
/* build up the requests call chain */
ac - > num_reqs = el - > num_values ;
ac - > cur_req = 0 ;
ac - > reqs = talloc_array ( ac , struct ldb_request * , ac - > num_reqs ) ;
if ( ac - > reqs = = NULL ) {
return LDB_ERR_OPERATIONS_ERROR ;
}
for ( i = 0 ; i < el - > num_values ; i + + ) {
ac - > reqs [ i ] = talloc_zero ( ac - > reqs , struct ldb_request ) ;
if ( ac - > reqs [ i ] = = NULL )
return LDB_ERR_OPERATIONS_ERROR ;
2006-05-30 04:33:52 +04:00
ac - > reqs [ i ] - > operation = LDB_SEARCH ;
2006-03-14 00:05:55 +03:00
ac - > reqs [ i ] - > op . search . base = ldb_dn_explode ( ac - > reqs [ i ] , ( const char * ) el - > values [ i ] . data ) ;
if ( ac - > reqs [ i ] - > op . search . base = = NULL ) {
ac - > asq_ret = ASQ_CTRL_INVALID_ATTRIBUTE_SYNTAX ;
return asq_terminate ( handle ) ;
}
ac - > reqs [ i ] - > op . search . scope = LDB_SCOPE_BASE ;
ac - > reqs [ i ] - > op . search . tree = ac - > base_req - > op . search . tree ;
ac - > reqs [ i ] - > op . search . attrs = ac - > req_attrs ;
2006-07-22 21:21:59 +04:00
ac - > reqs [ i ] - > context = ac ;
ac - > reqs [ i ] - > callback = asq_reqs_callback ;
2006-06-04 09:28:13 +04:00
ldb_set_timeout_from_prev_req ( ac - > module - > ldb , ac - > base_req , ac - > reqs [ i ] ) ;
2006-03-14 00:05:55 +03:00
}
2006-05-28 19:20:53 +04:00
ac - > step = ASQ_SEARCH_MULTI ;
2006-03-14 00:05:55 +03:00
return LDB_SUCCESS ;
}
2006-07-22 20:56:33 +04:00
static int asq_wait_none ( struct ldb_handle * handle )
2006-03-14 00:05:55 +03:00
{
2006-07-22 20:56:33 +04:00
struct asq_context * ac ;
2006-03-14 00:05:55 +03:00
int ret ;
if ( ! handle | | ! handle - > private_data ) {
return LDB_ERR_OPERATIONS_ERROR ;
}
if ( handle - > state = = LDB_ASYNC_DONE ) {
return handle - > status ;
}
handle - > state = LDB_ASYNC_PENDING ;
2006-05-28 06:10:44 +04:00
handle - > status = LDB_SUCCESS ;
2006-03-14 00:05:55 +03:00
2006-07-22 20:56:33 +04:00
ac = talloc_get_type ( handle - > private_data , struct asq_context ) ;
2006-03-14 00:05:55 +03:00
2006-05-28 06:10:44 +04:00
2006-05-28 19:20:53 +04:00
switch ( ac - > step ) {
case ASQ_SEARCH_BASE :
2006-07-22 21:21:59 +04:00
ret = ldb_wait ( ac - > base_req - > handle , LDB_WAIT_NONE ) ;
2006-05-28 19:20:53 +04:00
if ( ret ! = LDB_SUCCESS ) {
handle - > status = ret ;
goto done ;
2006-03-14 00:05:55 +03:00
}
2006-07-22 21:21:59 +04:00
if ( ac - > base_req - > handle - > status ! = LDB_SUCCESS ) {
handle - > status = ac - > base_req - > handle - > status ;
2006-05-28 19:20:53 +04:00
goto done ;
2006-03-14 00:05:55 +03:00
}
2006-07-22 21:21:59 +04:00
if ( ac - > base_req - > handle - > state ! = LDB_ASYNC_DONE ) {
2006-05-28 19:20:53 +04:00
return LDB_SUCCESS ;
2006-03-14 00:05:55 +03:00
}
2006-07-22 20:56:33 +04:00
ret = asq_requests ( handle ) ;
2006-03-14 00:05:55 +03:00
2006-10-06 17:47:52 +04:00
/* no break nor return,
* the set of requests is performed in ASQ_SEARCH_MULTI
*/
2006-05-28 19:20:53 +04:00
case ASQ_SEARCH_MULTI :
2006-03-14 00:05:55 +03:00
2006-07-22 21:21:59 +04:00
if ( ac - > reqs [ ac - > cur_req ] - > handle = = NULL ) {
2006-03-14 00:05:55 +03:00
ret = ldb_request ( ac - > module - > ldb , ac - > reqs [ ac - > cur_req ] ) ;
2006-05-28 19:20:53 +04:00
if ( ret ! = LDB_SUCCESS ) {
return ret ;
}
2006-03-14 00:05:55 +03:00
}
2006-07-22 21:21:59 +04:00
ret = ldb_wait ( ac - > reqs [ ac - > cur_req ] - > handle , LDB_WAIT_NONE ) ;
2006-05-28 19:20:53 +04:00
if ( ret ! = LDB_SUCCESS ) {
handle - > status = ret ;
goto done ;
}
2006-07-22 21:21:59 +04:00
if ( ac - > reqs [ ac - > cur_req ] - > handle - > status ! = LDB_SUCCESS ) {
handle - > status = ac - > reqs [ ac - > cur_req ] - > handle - > status ;
2006-03-14 00:05:55 +03:00
}
2006-07-22 21:21:59 +04:00
if ( ac - > reqs [ ac - > cur_req ] - > handle - > state = = LDB_ASYNC_DONE ) {
2006-03-14 00:05:55 +03:00
ac - > cur_req + + ;
}
2006-05-28 19:20:53 +04:00
if ( ac - > cur_req < ac - > num_reqs ) {
return LDB_SUCCESS ;
}
return asq_terminate ( handle ) ;
default :
ret = LDB_ERR_OPERATIONS_ERROR ;
goto done ;
2006-03-14 00:05:55 +03:00
}
2006-05-28 19:20:53 +04:00
ret = LDB_SUCCESS ;
2006-03-14 00:05:55 +03:00
2006-05-28 19:20:53 +04:00
done :
2006-03-14 00:05:55 +03:00
handle - > state = LDB_ASYNC_DONE ;
return ret ;
}
2006-07-22 20:56:33 +04:00
static int asq_wait_all ( struct ldb_handle * handle )
2006-05-28 19:20:53 +04:00
{
int ret ;
while ( handle - > state ! = LDB_ASYNC_DONE ) {
2006-07-22 20:56:33 +04:00
ret = asq_wait_none ( handle ) ;
2006-05-28 19:20:53 +04:00
if ( ret ! = LDB_SUCCESS ) {
return ret ;
}
}
return handle - > status ;
}
2006-07-22 20:56:33 +04:00
static int asq_wait ( struct ldb_handle * handle , enum ldb_wait_type type )
2006-05-28 19:20:53 +04:00
{
if ( type = = LDB_WAIT_ALL ) {
2006-07-22 20:56:33 +04:00
return asq_wait_all ( handle ) ;
2006-05-28 19:20:53 +04:00
} else {
2006-07-22 20:56:33 +04:00
return asq_wait_none ( handle ) ;
2006-05-28 19:20:53 +04:00
}
}
2006-03-02 19:32:53 +03:00
static int asq_init ( struct ldb_module * module )
2006-02-05 23:48:27 +03:00
{
2006-06-04 09:28:13 +04:00
struct ldb_request * req ;
2006-02-05 23:48:27 +03:00
int ret ;
2006-06-04 09:28:13 +04:00
req = talloc_zero ( module , struct ldb_request ) ;
if ( req = = NULL ) {
ldb_debug ( module - > ldb , LDB_DEBUG_ERROR , " asq: Out of memory! \n " ) ;
return LDB_ERR_OPERATIONS_ERROR ;
}
r16264: Add, but do not yet enable, the partitions module.
This required changes to the rootDSE module, to allow registration of
partitions. In doing so I renamed the 'register' operation to
'register_control' and 'register_partition', which changed a few more
modules.
Due to the behaviour of certain LDAP servers, we create the baseDN
entry in two parts: Firstly, we allow the admin to export a simple
LDIF file to add to their server. Then we perform a modify to add the
remaining attributes.
To delete all users in partitions, we must now search and delete all
objects in the partition, rather than a simple search from the root.
Against LDAP, this might not delete all objects, so we allow this to
fail.
In testing, we found that the 'Domain Controllers' container was
misnamed, and should be 'CN=', rather than 'OU='.
To avoid the Templates being found in default searches, they have been
moved to CN=Templates from CN=Templates,${BASEDN}.
Andrew Bartlett
(This used to be commit b49a4fbb57f10726bd288fdc9fc95c0cbbe9094a)
2006-06-15 22:04:24 +04:00
req - > operation = LDB_REQ_REGISTER_CONTROL ;
req - > op . reg_control . oid = LDB_CONTROL_ASQ_OID ;
2006-02-05 23:48:27 +03:00
2006-06-04 09:28:13 +04:00
ret = ldb_request ( module - > ldb , req ) ;
2006-02-05 23:48:27 +03:00
if ( ret ! = LDB_SUCCESS ) {
2006-10-23 01:15:30 +04:00
ldb_debug ( module - > ldb , LDB_DEBUG_WARNING , " asq: Unable to register control with rootdse! \n " ) ;
2006-02-05 23:48:27 +03:00
}
2006-03-02 19:32:53 +03:00
return ldb_next_init ( module ) ;
2006-02-05 23:48:27 +03:00
}
2006-01-15 09:12:29 +03:00
static const struct ldb_module_ops asq_ops = {
. name = " asq " ,
2006-05-29 05:30:02 +04:00
. search = asq_search ,
2006-07-22 20:56:33 +04:00
. wait = asq_wait ,
2006-03-02 19:32:53 +03:00
. init_context = asq_init
2006-01-15 09:12:29 +03:00
} ;
2006-03-02 19:32:53 +03:00
int ldb_asq_init ( void )
2006-01-15 09:12:29 +03:00
{
2006-03-02 19:32:53 +03:00
return ldb_register_module ( & asq_ops ) ;
2006-01-15 09:12:29 +03:00
}