2005-11-29 08:50:52 +00:00
/*
Unix SMB / CIFS implementation .
rootDSE ldb module
Copyright ( C ) Andrew Tridgell 2005
2006-01-06 04:01:23 +00:00
Copyright ( C ) Simo Sorce 2005
2005-11-29 08:50:52 +00:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-10 02:07:03 +00:00
the Free Software Foundation ; either version 3 of the License , or
2005-11-29 08:50:52 +00:00
( at your option ) any later version .
This program 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 General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 02:07:03 +00:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2005-11-29 08:50:52 +00:00
*/
# include "includes.h"
# include "lib/ldb/include/ldb.h"
# include "lib/ldb/include/ldb_errors.h"
# include "lib/ldb/include/ldb_private.h"
2006-01-11 15:01:21 +00:00
# include "system/time.h"
2007-01-18 00:49:52 +00:00
# include "dsdb/samdb/samdb.h"
2008-04-04 12:25:19 +11:00
# include "version.h"
2005-11-29 08:50:52 +00:00
2006-01-06 04:01:23 +00:00
struct private_data {
int num_controls ;
char * * controls ;
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 18:04:24 +00:00
int num_partitions ;
struct ldb_dn * * partitions ;
2006-01-06 04:01:23 +00:00
} ;
2005-11-29 08:50:52 +00:00
/*
return 1 if a specific attribute has been requested
*/
static int do_attribute ( const char * const * attrs , const char * name )
{
return attrs = = NULL | |
ldb_attr_in_list ( attrs , name ) | |
ldb_attr_in_list ( attrs , " * " ) ;
}
2007-01-18 00:49:52 +00:00
static int do_attribute_explicit ( const char * const * attrs , const char * name )
{
return attrs ! = NULL & & ldb_attr_in_list ( attrs , name ) ;
}
2006-02-27 00:39:26 +00:00
2005-11-29 08:50:52 +00:00
/*
add dynamically generated attributes to rootDSE result
*/
2006-03-14 17:34:00 +00:00
static int rootdse_add_dynamic ( struct ldb_module * module , struct ldb_message * msg , const char * const * attrs )
2005-11-29 08:50:52 +00:00
{
2006-01-06 04:01:23 +00:00
struct private_data * priv = talloc_get_type ( module - > private_data , struct private_data ) ;
2006-11-01 03:21:04 +00:00
char * * server_sasl ;
2007-01-18 00:49:52 +00:00
const struct dsdb_schema * schema ;
schema = dsdb_get_schema ( module - > ldb ) ;
2005-11-29 08:50:52 +00:00
2006-11-22 00:59:34 +00:00
msg - > dn = ldb_dn_new ( msg , module - > ldb , NULL ) ;
2005-11-29 08:50:52 +00:00
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 18:04:24 +00:00
/* don't return the distinduishedName, cn and name attributes */
2006-03-14 17:39:02 +00:00
ldb_msg_remove_attr ( msg , " distinguishedName " ) ;
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 18:04:24 +00:00
ldb_msg_remove_attr ( msg , " cn " ) ;
ldb_msg_remove_attr ( msg , " name " ) ;
2006-03-14 17:39:02 +00:00
2006-03-14 17:34:00 +00:00
if ( do_attribute ( attrs , " currentTime " ) ) {
2006-02-22 09:28:58 +00:00
if ( ldb_msg_add_steal_string ( msg , " currentTime " ,
ldb_timestring ( msg , time ( NULL ) ) ) ! = 0 ) {
2005-11-29 08:50:52 +00:00
goto failed ;
}
}
2006-03-14 17:34:00 +00:00
if ( do_attribute ( attrs , " supportedControl " ) ) {
2006-01-06 04:01:23 +00:00
int i ;
for ( i = 0 ; i < priv - > num_controls ; i + + ) {
2006-02-22 00:26:56 +00:00
char * control = talloc_strdup ( msg , priv - > controls [ i ] ) ;
if ( ! control ) {
goto failed ;
}
2006-02-22 09:28:58 +00:00
if ( ldb_msg_add_steal_string ( msg , " supportedControl " ,
control ) ! = 0 ) {
2006-01-06 04:01:23 +00:00
goto failed ;
}
}
}
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 18:04:24 +00:00
if ( do_attribute ( attrs , " namingContexts " ) ) {
int i ;
for ( i = 0 ; i < priv - > num_partitions ; i + + ) {
struct ldb_dn * dn = priv - > partitions [ i ] ;
if ( ldb_msg_add_steal_string ( msg , " namingContexts " ,
2006-11-22 02:05:19 +00:00
ldb_dn_alloc_linearized ( msg , dn ) ) ! = 0 ) {
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 18:04:24 +00:00
goto failed ;
}
}
}
2006-11-01 03:21:04 +00:00
server_sasl = talloc_get_type ( ldb_get_opaque ( module - > ldb , " supportedSASLMechanims " ) ,
char * ) ;
if ( server_sasl & & do_attribute ( attrs , " supportedSASLMechanisms " ) ) {
2006-01-03 04:25:12 +00:00
int i ;
2006-11-01 03:21:04 +00:00
for ( i = 0 ; server_sasl & & server_sasl [ i ] ; i + + ) {
char * sasl_name = talloc_strdup ( msg , server_sasl [ i ] ) ;
if ( ! sasl_name ) {
goto failed ;
}
if ( ldb_msg_add_steal_string ( msg , " supportedSASLMechanisms " ,
sasl_name ) ! = 0 ) {
goto failed ;
2006-01-03 04:25:12 +00:00
}
}
}
2006-02-27 00:39:26 +00:00
2006-03-14 17:34:00 +00:00
if ( do_attribute ( attrs , " highestCommittedUSN " ) ) {
2006-06-07 21:03:38 +00:00
uint64_t seq_num ;
2006-09-21 06:44:12 +00:00
int ret = ldb_sequence_number ( module - > ldb , LDB_SEQ_HIGHEST_SEQ , & seq_num ) ;
2006-06-07 21:03:38 +00:00
if ( ret = = LDB_SUCCESS ) {
if ( ldb_msg_add_fmt ( msg , " highestCommittedUSN " ,
2006-09-09 10:05:58 +00:00
" %llu " , ( unsigned long long ) seq_num ) ! = 0 ) {
2006-06-07 21:03:38 +00:00
goto failed ;
}
2006-02-27 00:39:26 +00:00
}
}
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 18:04:24 +00:00
2007-01-18 00:49:52 +00:00
if ( schema & & do_attribute_explicit ( attrs , " dsSchemaAttrCount " ) ) {
struct dsdb_attribute * cur ;
uint32_t n = 0 ;
for ( cur = schema - > attributes ; cur ; cur = cur - > next ) {
n + + ;
}
if ( ldb_msg_add_fmt ( msg , " dsSchemaAttrCount " ,
" %u " , n ) ! = 0 ) {
goto failed ;
}
}
if ( schema & & do_attribute_explicit ( attrs , " dsSchemaClassCount " ) ) {
struct dsdb_class * cur ;
uint32_t n = 0 ;
for ( cur = schema - > classes ; cur ; cur = cur - > next ) {
n + + ;
}
if ( ldb_msg_add_fmt ( msg , " dsSchemaClassCount " ,
" %u " , n ) ! = 0 ) {
goto failed ;
}
}
if ( schema & & do_attribute_explicit ( attrs , " dsSchemaPrefixCount " ) ) {
if ( ldb_msg_add_fmt ( msg , " dsSchemaPrefixCount " ,
" %u " , schema - > num_prefixes ) ! = 0 ) {
goto failed ;
}
}
2007-01-18 01:31:09 +00:00
if ( do_attribute_explicit ( attrs , " validFSMOs " ) ) {
const struct dsdb_naming_fsmo * naming_fsmo ;
const struct dsdb_pdc_fsmo * pdc_fsmo ;
const char * dn_str ;
2008-07-01 16:35:13 +02:00
if ( schema & & schema - > fsmo . we_are_master ) {
2007-01-18 01:31:09 +00:00
dn_str = ldb_dn_get_linearized ( samdb_schema_dn ( module - > ldb ) ) ;
if ( dn_str & & dn_str [ 0 ] ) {
if ( ldb_msg_add_fmt ( msg , " validFSMOs " , " %s " , dn_str ) ! = 0 ) {
goto failed ;
}
}
}
naming_fsmo = talloc_get_type ( ldb_get_opaque ( module - > ldb , " dsdb_naming_fsmo " ) ,
struct dsdb_naming_fsmo ) ;
if ( naming_fsmo & & naming_fsmo - > we_are_master ) {
dn_str = ldb_dn_get_linearized ( samdb_partitions_dn ( module - > ldb , msg ) ) ;
if ( dn_str & & dn_str [ 0 ] ) {
if ( ldb_msg_add_fmt ( msg , " validFSMOs " , " %s " , dn_str ) ! = 0 ) {
goto failed ;
}
}
}
pdc_fsmo = talloc_get_type ( ldb_get_opaque ( module - > ldb , " dsdb_pdc_fsmo " ) ,
struct dsdb_pdc_fsmo ) ;
if ( pdc_fsmo & & pdc_fsmo - > we_are_master ) {
dn_str = ldb_dn_get_linearized ( samdb_base_dn ( module - > ldb ) ) ;
if ( dn_str & & dn_str [ 0 ] ) {
if ( ldb_msg_add_fmt ( msg , " validFSMOs " , " %s " , dn_str ) ! = 0 ) {
goto failed ;
}
}
}
}
2008-04-04 12:25:19 +11:00
if ( schema & & do_attribute_explicit ( attrs , " vendorVersion " ) ) {
if ( ldb_msg_add_fmt ( msg , " vendorVersion " ,
" %s " , SAMBA_VERSION_STRING ) ! = 0 ) {
goto failed ;
}
}
2005-11-29 08:50:52 +00:00
/* TODO: lots more dynamic attributes should be added here */
2006-03-14 17:34:00 +00:00
return LDB_SUCCESS ;
2005-11-29 08:50:52 +00:00
failed :
return LDB_ERR_OPERATIONS_ERROR ;
}
/*
handle search requests
*/
2006-07-22 17:21:59 +00:00
struct rootdse_context {
2006-03-14 17:34:00 +00:00
struct ldb_module * module ;
void * up_context ;
2006-07-22 16:56:33 +00:00
int ( * up_callback ) ( struct ldb_context * , void * , struct ldb_reply * ) ;
2006-03-14 17:34:00 +00:00
const char * const * attrs ;
} ;
2006-07-22 17:21:59 +00:00
static int rootdse_callback ( struct ldb_context * ldb , void * context , struct ldb_reply * ares )
2006-03-14 17:34:00 +00:00
{
2006-07-22 17:21:59 +00:00
struct rootdse_context * ac ;
2006-03-14 17:34:00 +00:00
2006-07-22 17:21:59 +00:00
ac = talloc_get_type ( context , struct rootdse_context ) ;
2006-03-14 17:34:00 +00:00
if ( ares - > type = = LDB_REPLY_ENTRY ) {
2006-11-15 17:35:24 +00:00
/*
* if the client explicit asks for the ' netlogon ' attribute
* the reply_entry needs to be skipped
*/
if ( ac - > attrs & & ldb_attr_in_list ( ac - > attrs , " netlogon " ) ) {
talloc_free ( ares ) ;
return LDB_SUCCESS ;
}
2006-03-14 17:34:00 +00:00
/* for each record returned post-process to add any dynamic
attributes that have been asked for */
if ( rootdse_add_dynamic ( ac - > module , ares - > message , ac - > attrs ) ! = LDB_SUCCESS ) {
goto error ;
}
}
return ac - > up_callback ( ldb , ac - > up_context , ares ) ;
error :
talloc_free ( ares ) ;
return LDB_ERR_OPERATIONS_ERROR ;
}
2006-05-29 23:46:43 +00:00
static int rootdse_search ( struct ldb_module * module , struct ldb_request * req )
2006-03-14 17:34:00 +00:00
{
2006-07-22 17:21:59 +00:00
struct rootdse_context * ac ;
2006-03-14 17:34:00 +00:00
struct ldb_request * down_req ;
int ret ;
/* see if its for the rootDSE */
if ( req - > op . search . scope ! = LDB_SCOPE_BASE | |
2006-11-22 00:59:34 +00:00
( ! ldb_dn_is_null ( req - > op . search . base ) ) ) {
2006-03-14 17:34:00 +00:00
return ldb_next_request ( module , req ) ;
}
2006-07-22 17:21:59 +00:00
ac = talloc ( req , struct rootdse_context ) ;
2006-03-14 17:34:00 +00:00
if ( ac = = NULL ) {
return LDB_ERR_OPERATIONS_ERROR ;
}
ac - > module = module ;
2006-07-22 17:21:59 +00:00
ac - > up_context = req - > context ;
ac - > up_callback = req - > callback ;
2006-03-14 17:34:00 +00:00
ac - > attrs = req - > op . search . attrs ;
down_req = talloc_zero ( req , struct ldb_request ) ;
if ( down_req = = NULL ) {
return LDB_ERR_OPERATIONS_ERROR ;
}
down_req - > operation = req - > operation ;
2007-10-30 21:01:07 +01:00
/* in our db we store the rootDSE with a DN of @ROOTDSE */
down_req - > op . search . base = ldb_dn_new ( down_req , module - > ldb , " @ROOTDSE " ) ;
2006-03-14 17:34:00 +00:00
down_req - > op . search . scope = LDB_SCOPE_BASE ;
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 18:04:24 +00:00
down_req - > op . search . tree = ldb_parse_tree ( down_req , NULL ) ;
2006-03-14 17:34:00 +00:00
if ( down_req - > op . search . base = = NULL | | down_req - > op . search . tree = = NULL ) {
ldb_oom ( module - > ldb ) ;
talloc_free ( down_req ) ;
return LDB_ERR_OPERATIONS_ERROR ;
}
down_req - > op . search . attrs = req - > op . search . attrs ;
down_req - > controls = req - > controls ;
2006-07-22 17:21:59 +00:00
down_req - > context = ac ;
down_req - > callback = rootdse_callback ;
2006-06-04 05:28:13 +00:00
ldb_set_timeout_from_prev_req ( module - > ldb , req , down_req ) ;
2006-03-14 17:34:00 +00:00
/* perform the search */
ret = ldb_next_request ( module , down_req ) ;
/* do not free down_req as the call results may be linked to it,
* it will be freed when the upper level request get freed */
if ( ret = = LDB_SUCCESS ) {
2006-07-22 17:21:59 +00:00
req - > handle = down_req - > handle ;
2006-03-14 17:34:00 +00:00
}
return ret ;
}
2006-01-06 04:01:23 +00:00
static int rootdse_register_control ( struct ldb_module * module , struct ldb_request * req )
{
struct private_data * priv = talloc_get_type ( module - > private_data , struct private_data ) ;
char * * list ;
list = talloc_realloc ( priv , priv - > controls , char * , priv - > num_controls + 1 ) ;
if ( ! list ) {
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 18:04:24 +00:00
list [ priv - > num_controls ] = talloc_strdup ( list , req - > op . reg_control . oid ) ;
2006-01-06 04:01:23 +00:00
if ( ! list [ priv - > num_controls ] ) {
return LDB_ERR_OPERATIONS_ERROR ;
}
priv - > num_controls + = 1 ;
priv - > controls = list ;
return LDB_SUCCESS ;
}
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 18:04:24 +00:00
static int rootdse_register_partition ( struct ldb_module * module , struct ldb_request * req )
{
struct private_data * priv = talloc_get_type ( module - > private_data , struct private_data ) ;
struct ldb_dn * * list ;
list = talloc_realloc ( priv , priv - > partitions , struct ldb_dn * , priv - > num_partitions + 1 ) ;
if ( ! list ) {
return LDB_ERR_OPERATIONS_ERROR ;
}
2006-09-09 10:05:58 +00:00
list [ priv - > num_partitions ] = ldb_dn_copy ( list , req - > op . reg_partition . dn ) ;
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 18:04:24 +00:00
if ( ! list [ priv - > num_partitions ] ) {
return LDB_ERR_OPERATIONS_ERROR ;
}
priv - > num_partitions + = 1 ;
priv - > partitions = list ;
return LDB_SUCCESS ;
}
2005-11-29 08:50:52 +00:00
static int rootdse_request ( struct ldb_module * module , struct ldb_request * req )
{
switch ( req - > operation ) {
2006-03-14 17:34:00 +00:00
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 18:04:24 +00:00
case LDB_REQ_REGISTER_CONTROL :
2006-01-06 04:01:23 +00:00
return rootdse_register_control ( module , req ) ;
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 18:04:24 +00:00
case LDB_REQ_REGISTER_PARTITION :
return rootdse_register_partition ( module , req ) ;
2006-03-14 17:34:00 +00:00
2005-11-29 08:50:52 +00:00
default :
break ;
}
return ldb_next_request ( module , req ) ;
}
2006-03-02 16:32:53 +00:00
static int rootdse_init ( struct ldb_module * module )
2005-11-29 08:50:52 +00:00
{
2006-01-06 04:01:23 +00:00
struct private_data * data ;
2006-03-02 16:32:53 +00:00
data = talloc ( module , struct private_data ) ;
2006-01-06 04:01:23 +00:00
if ( data = = NULL ) {
2006-03-02 16:32:53 +00:00
return - 1 ;
2006-01-06 04:01:23 +00:00
}
data - > num_controls = 0 ;
data - > controls = NULL ;
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 18:04:24 +00:00
data - > num_partitions = 0 ;
data - > partitions = NULL ;
2006-03-02 16:32:53 +00:00
module - > private_data = data ;
2006-01-06 04:01:23 +00:00
2007-01-14 13:45:18 +00:00
ldb_set_default_dns ( module - > ldb ) ;
2006-03-02 16:32:53 +00:00
return ldb_next_init ( module ) ;
}
2005-11-29 08:50:52 +00:00
2008-02-20 04:33:43 +01:00
_PUBLIC_ const struct ldb_module_ops ldb_rootdse_module_ops = {
2006-03-02 16:32:53 +00:00
. name = " rootdse " ,
2006-03-03 20:01:19 +00:00
. init_context = rootdse_init ,
2006-05-29 23:46:43 +00:00
. search = rootdse_search ,
2006-03-02 16:32:53 +00:00
. request = rootdse_request
} ;