2004-11-16 12:00:52 +03:00
/*
ldb database library
2005-07-02 21:30:03 +04:00
Copyright ( C ) Andrew Tridgell 2004
2004-11-16 12:00:52 +03:00
Copyright ( C ) Stefan Metzmacher 2004
2005-07-02 21:30:03 +04:00
Copyright ( C ) Simo Sorce 2004
2004-11-16 12:00:52 +03:00
* * 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 private header
*
* Description : defines internal ldb structures used by th esubsystem and modules
*
* Author : Andrew Tridgell
* Author : Stefan Metzmacher
*/
# ifndef _LDB_PRIVATE_H_
# define _LDB_PRIVATE_H_ 1
struct ldb_context ;
struct ldb_module_ops ;
/* basic module structure */
struct ldb_module {
struct ldb_module * prev , * next ;
struct ldb_context * ldb ;
void * private_data ;
const struct ldb_module_ops * ops ;
} ;
/*
these function pointers define the operations that a ldb module must perform
they correspond exactly to the ldb_ * ( ) interface
*/
struct ldb_module_ops {
const char * name ;
2005-08-18 19:02:01 +04:00
int ( * search ) ( struct ldb_module * , const struct ldb_dn * , enum ldb_scope ,
2004-11-16 12:00:52 +03:00
const char * , const char * const [ ] , struct ldb_message * * * ) ;
2005-08-18 19:02:01 +04:00
int ( * search_bytree ) ( struct ldb_module * , const struct ldb_dn * , enum ldb_scope ,
2005-06-13 13:10:17 +04:00
struct ldb_parse_tree * , const char * const [ ] , struct ldb_message * * * ) ;
2004-11-16 12:00:52 +03:00
int ( * add_record ) ( struct ldb_module * , const struct ldb_message * ) ;
int ( * modify_record ) ( struct ldb_module * , const struct ldb_message * ) ;
2005-08-18 19:02:01 +04:00
int ( * delete_record ) ( struct ldb_module * , const struct ldb_dn * ) ;
int ( * rename_record ) ( struct ldb_module * , const struct ldb_dn * , const struct ldb_dn * ) ;
2004-11-21 18:51:54 +03:00
int ( * named_lock ) ( struct ldb_module * , const char * ) ;
int ( * named_unlock ) ( struct ldb_module * , const char * ) ;
2004-11-16 12:00:52 +03:00
const char * ( * errstring ) ( struct ldb_module * ) ;
} ;
r8037: a fairly major update to the internals of ldb. Changes are:
- moved the knowledge of attribute types out of ldb_tdb and into the
generic ldb code. This allows the ldb_match() message match logic
to be generic, so it can be used by other backend
- added the generic ability to load attribute handlers, for
canonicalisation, compare, ldif read and ldif write. In the future
this will be used by the schema module to allow us to correctly
obey the attributetype schema elements
- added attribute handlers for some of the core ldap attribute types,
Integer, DirectoryString, DN, ObjectClass etc
- added automatic registration of attribute handlers for well-known
attribute names 'cn', 'dc', 'dn', 'ou' and 'objectClass'
- converted the objectSid special handlers for Samba to the new system
- added more correct handling of indexing in tdb backend based on the
attribute canonicalisation function
- added generic support for subclasses, moving it out of the tdb
backend. This will be used in future by the schema module
- fixed several bugs in the dn_explode code. It still needs more
work, but doesn't corrupt ldb dbs any more.
(This used to be commit 944c5844ab441b96d8e5d7b2d151982139d1fab9)
2005-07-01 10:21:26 +04:00
/*
schema related information needed for matching rules
*/
struct ldb_schema {
/* attribute handling table */
unsigned num_attrib_handlers ;
struct ldb_attrib_handler * attrib_handlers ;
/* objectclass information */
unsigned num_classes ;
struct ldb_subclass {
char * name ;
char * * subclasses ;
} * classes ;
} ;
2004-11-16 12:00:52 +03:00
/*
every ldb connection is started by establishing a ldb_context
*/
struct ldb_context {
/* the operations provided by the backend */
struct ldb_module * modules ;
2005-01-02 10:49:29 +03:00
/* debugging operations */
2004-11-16 12:00:52 +03:00
struct ldb_debug_ops debug_ops ;
2005-06-20 08:56:43 +04:00
/* backend specific opaque parameters */
struct ldb_opaque {
struct ldb_opaque * next ;
const char * name ;
void * value ;
} * opaque ;
2005-06-21 10:35:55 +04:00
r8037: a fairly major update to the internals of ldb. Changes are:
- moved the knowledge of attribute types out of ldb_tdb and into the
generic ldb code. This allows the ldb_match() message match logic
to be generic, so it can be used by other backend
- added the generic ability to load attribute handlers, for
canonicalisation, compare, ldif read and ldif write. In the future
this will be used by the schema module to allow us to correctly
obey the attributetype schema elements
- added attribute handlers for some of the core ldap attribute types,
Integer, DirectoryString, DN, ObjectClass etc
- added automatic registration of attribute handlers for well-known
attribute names 'cn', 'dc', 'dn', 'ou' and 'objectClass'
- converted the objectSid special handlers for Samba to the new system
- added more correct handling of indexing in tdb backend based on the
attribute canonicalisation function
- added generic support for subclasses, moving it out of the tdb
backend. This will be used in future by the schema module
- fixed several bugs in the dn_explode code. It still needs more
work, but doesn't corrupt ldb dbs any more.
(This used to be commit 944c5844ab441b96d8e5d7b2d151982139d1fab9)
2005-07-01 10:21:26 +04:00
struct ldb_schema schema ;
2004-11-16 12:00:52 +03:00
} ;
2005-02-27 14:35:47 +03:00
/* the modules init function */
typedef struct ldb_module * ( * ldb_module_init_function ) ( struct ldb_context * ldb , const char * options [ ] ) ;
2005-06-14 05:35:44 +04:00
# ifndef ARRAY_SIZE
# define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
# endif
2005-06-18 11:42:21 +04:00
/*
simplify out of memory handling
*/
# define ldb_oom(ldb) ldb_debug(ldb, LDB_DEBUG_FATAL, "ldb out of memory at %s:%d\n", __FILE__, __LINE__)
2004-11-16 12:00:52 +03:00
/* The following definitions come from lib/ldb/common/ldb_modules.c */
int ldb_load_modules ( struct ldb_context * ldb , const char * options [ ] ) ;
int ldb_next_search ( struct ldb_module * module ,
2005-08-18 19:02:01 +04:00
const struct ldb_dn * base ,
2004-11-16 12:00:52 +03:00
enum ldb_scope scope ,
const char * expression ,
const char * const * attrs , struct ldb_message * * * res ) ;
2005-06-13 13:10:17 +04:00
int ldb_next_search_bytree ( struct ldb_module * module ,
2005-08-18 19:02:01 +04:00
const struct ldb_dn * base ,
2005-06-13 13:10:17 +04:00
enum ldb_scope scope ,
struct ldb_parse_tree * tree ,
const char * const * attrs , struct ldb_message * * * res ) ;
2004-11-16 12:00:52 +03:00
int ldb_next_add_record ( struct ldb_module * module , const struct ldb_message * message ) ;
int ldb_next_modify_record ( struct ldb_module * module , const struct ldb_message * message ) ;
2005-08-18 19:02:01 +04:00
int ldb_next_delete_record ( struct ldb_module * module , const struct ldb_dn * dn ) ;
int ldb_next_rename_record ( struct ldb_module * module , const struct ldb_dn * olddn , const struct ldb_dn * newdn ) ;
2004-11-21 18:51:54 +03:00
int ldb_next_named_lock ( struct ldb_module * module , const char * lockname ) ;
int ldb_next_named_unlock ( struct ldb_module * module , const char * lockname ) ;
2004-11-16 12:00:52 +03:00
const char * ldb_next_errstring ( struct ldb_module * module ) ;
/* The following definitions come from lib/ldb/common/ldb_debug.c */
void ldb_debug ( struct ldb_context * ldb , enum ldb_debug_level level , const char * fmt , . . . ) PRINTF_ATTRIBUTE ( 3 , 4 ) ;
/* The following definitions come from lib/ldb/common/ldb_ldif.c */
int ldb_should_b64_encode ( const struct ldb_val * val ) ;
2005-06-18 11:42:21 +04:00
int ltdb_connect ( struct ldb_context * ldb , const char * url ,
unsigned int flags ,
const char * options [ ] ) ;
int lldb_connect ( struct ldb_context * ldb , const char * url ,
unsigned int flags ,
const char * options [ ] ) ;
int ildb_connect ( struct ldb_context * ldb ,
const char * url ,
unsigned int flags ,
const char * options [ ] ) ;
int lsqlite3_connect ( struct ldb_context * ldb ,
const char * url ,
unsigned int flags ,
const char * options [ ] ) ;
2004-11-16 12:00:52 +03:00
struct ldb_module * timestamps_module_init ( struct ldb_context * ldb , const char * options [ ] ) ;
2005-05-22 14:02:53 +04:00
struct ldb_module * schema_module_init ( struct ldb_context * ldb , const char * options [ ] ) ;
2005-07-26 13:17:46 +04:00
struct ldb_module * rdn_name_module_init ( struct ldb_context * ldb , const char * options [ ] ) ;
2004-11-16 12:00:52 +03:00
2005-08-18 19:02:01 +04:00
int ldb_match_msg ( struct ldb_context * ldb ,
2005-07-12 16:04:54 +04:00
struct ldb_message * msg ,
struct ldb_parse_tree * tree ,
2005-08-18 19:02:01 +04:00
const struct ldb_dn * base ,
2005-07-12 16:04:54 +04:00
enum ldb_scope scope ) ;
r8037: a fairly major update to the internals of ldb. Changes are:
- moved the knowledge of attribute types out of ldb_tdb and into the
generic ldb code. This allows the ldb_match() message match logic
to be generic, so it can be used by other backend
- added the generic ability to load attribute handlers, for
canonicalisation, compare, ldif read and ldif write. In the future
this will be used by the schema module to allow us to correctly
obey the attributetype schema elements
- added attribute handlers for some of the core ldap attribute types,
Integer, DirectoryString, DN, ObjectClass etc
- added automatic registration of attribute handlers for well-known
attribute names 'cn', 'dc', 'dn', 'ou' and 'objectClass'
- converted the objectSid special handlers for Samba to the new system
- added more correct handling of indexing in tdb backend based on the
attribute canonicalisation function
- added generic support for subclasses, moving it out of the tdb
backend. This will be used in future by the schema module
- fixed several bugs in the dn_explode code. It still needs more
work, but doesn't corrupt ldb dbs any more.
(This used to be commit 944c5844ab441b96d8e5d7b2d151982139d1fab9)
2005-07-01 10:21:26 +04:00
void ldb_remove_attrib_handler ( struct ldb_context * ldb , const char * attrib ) ;
const struct ldb_attrib_handler * ldb_attrib_handler_syntax ( struct ldb_context * ldb ,
const char * syntax ) ;
int ldb_set_attrib_handlers ( struct ldb_context * ldb ,
const struct ldb_attrib_handler * handlers ,
unsigned num_handlers ) ;
int ldb_setup_wellknown_attributes ( struct ldb_context * ldb ) ;
2005-07-02 21:30:03 +04:00
/* The following definitions come from lib/ldb/common/ldb_attributes.c */
r8037: a fairly major update to the internals of ldb. Changes are:
- moved the knowledge of attribute types out of ldb_tdb and into the
generic ldb code. This allows the ldb_match() message match logic
to be generic, so it can be used by other backend
- added the generic ability to load attribute handlers, for
canonicalisation, compare, ldif read and ldif write. In the future
this will be used by the schema module to allow us to correctly
obey the attributetype schema elements
- added attribute handlers for some of the core ldap attribute types,
Integer, DirectoryString, DN, ObjectClass etc
- added automatic registration of attribute handlers for well-known
attribute names 'cn', 'dc', 'dn', 'ou' and 'objectClass'
- converted the objectSid special handlers for Samba to the new system
- added more correct handling of indexing in tdb backend based on the
attribute canonicalisation function
- added generic support for subclasses, moving it out of the tdb
backend. This will be used in future by the schema module
- fixed several bugs in the dn_explode code. It still needs more
work, but doesn't corrupt ldb dbs any more.
(This used to be commit 944c5844ab441b96d8e5d7b2d151982139d1fab9)
2005-07-01 10:21:26 +04:00
const char * * ldb_subclass_list ( struct ldb_context * ldb , const char * class ) ;
void ldb_subclass_remove ( struct ldb_context * ldb , const char * class ) ;
int ldb_subclass_add ( struct ldb_context * ldb , const char * class , const char * subclass ) ;
2005-07-02 21:30:03 +04:00
int ldb_handler_copy ( struct ldb_context * ldb , void * mem_ctx ,
r8037: a fairly major update to the internals of ldb. Changes are:
- moved the knowledge of attribute types out of ldb_tdb and into the
generic ldb code. This allows the ldb_match() message match logic
to be generic, so it can be used by other backend
- added the generic ability to load attribute handlers, for
canonicalisation, compare, ldif read and ldif write. In the future
this will be used by the schema module to allow us to correctly
obey the attributetype schema elements
- added attribute handlers for some of the core ldap attribute types,
Integer, DirectoryString, DN, ObjectClass etc
- added automatic registration of attribute handlers for well-known
attribute names 'cn', 'dc', 'dn', 'ou' and 'objectClass'
- converted the objectSid special handlers for Samba to the new system
- added more correct handling of indexing in tdb backend based on the
attribute canonicalisation function
- added generic support for subclasses, moving it out of the tdb
backend. This will be used in future by the schema module
- fixed several bugs in the dn_explode code. It still needs more
work, but doesn't corrupt ldb dbs any more.
(This used to be commit 944c5844ab441b96d8e5d7b2d151982139d1fab9)
2005-07-01 10:21:26 +04:00
const struct ldb_val * in , struct ldb_val * out ) ;
2005-07-02 21:30:03 +04:00
int ldb_comparison_binary ( struct ldb_context * ldb , void * mem_ctx ,
r8037: a fairly major update to the internals of ldb. Changes are:
- moved the knowledge of attribute types out of ldb_tdb and into the
generic ldb code. This allows the ldb_match() message match logic
to be generic, so it can be used by other backend
- added the generic ability to load attribute handlers, for
canonicalisation, compare, ldif read and ldif write. In the future
this will be used by the schema module to allow us to correctly
obey the attributetype schema elements
- added attribute handlers for some of the core ldap attribute types,
Integer, DirectoryString, DN, ObjectClass etc
- added automatic registration of attribute handlers for well-known
attribute names 'cn', 'dc', 'dn', 'ou' and 'objectClass'
- converted the objectSid special handlers for Samba to the new system
- added more correct handling of indexing in tdb backend based on the
attribute canonicalisation function
- added generic support for subclasses, moving it out of the tdb
backend. This will be used in future by the schema module
- fixed several bugs in the dn_explode code. It still needs more
work, but doesn't corrupt ldb dbs any more.
(This used to be commit 944c5844ab441b96d8e5d7b2d151982139d1fab9)
2005-07-01 10:21:26 +04:00
const struct ldb_val * v1 , const struct ldb_val * v2 ) ;
2004-11-16 12:00:52 +03:00
# endif