2004-03-31 10:45:39 +04:00
/*
ldb database library
Copyright ( C ) Andrew Tridgell 2004
2004-10-20 23:28:02 +04:00
Copyright ( C ) Stefan Metzmacher 2004
2004-03-31 10:45:39 +04: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 header
*
* Description : defines for base ldb API
*
* Author : Andrew Tridgell
2004-10-20 23:28:02 +04:00
* Author : Stefan Metzmacher
2004-03-31 10:45:39 +04:00
*/
2004-05-06 08:40:15 +04:00
# ifndef _LDB_H_
# define _LDB_H_ 1
2004-03-31 10:45:39 +04:00
/*
major restrictions as compared to normal LDAP :
- no async calls .
- each record must have a unique key field
- the key must be representable as a NULL terminated C string and may not
contain a comma or braces
major restrictions as compared to tdb :
- no explicit locking calls
*/
/*
an individual lump of data in a result comes in this format . The
pointer will usually be to a UTF - 8 string if the application is
sensible , but it can be to anything you like , including binary data
blobs of arbitrary size .
*/
2005-06-15 05:02:53 +04:00
# ifndef ldb_val
2004-03-31 10:45:39 +04:00
struct ldb_val {
2005-06-15 05:02:53 +04:00
uint8_t * data ;
size_t length ;
2004-03-31 10:45:39 +04:00
} ;
2005-06-15 05:02:53 +04:00
# endif
2004-03-31 10:45:39 +04:00
/* these flags are used in ldd_message_element.flags fields. The
LDA_FLAGS_MOD_ * flags are used in ldap_modify ( ) calls to specify
whether attributes are being added , deleted or modified */
# define LDB_FLAG_MOD_MASK 0x3
# define LDB_FLAG_MOD_ADD 1
# define LDB_FLAG_MOD_REPLACE 2
# define LDB_FLAG_MOD_DELETE 3
2005-06-14 07:04:24 +04:00
/*
well known object IDs
*/
# define LDB_OID_COMPARATOR_AND "1.2.840.113556.1.4.803"
# define LDB_OID_COMPARATOR_OR "1.2.840.113556.1.4.804"
2004-03-31 10:45:39 +04:00
/*
results are given back as arrays of ldb_message_element
*/
struct ldb_message_element {
unsigned int flags ;
2005-06-15 05:02:53 +04:00
const char * name ;
2004-04-03 16:29:21 +04:00
unsigned int num_values ;
struct ldb_val * values ;
2004-03-31 10:45:39 +04:00
} ;
/*
a ldb_message represents all or part of a record . It can contain an arbitrary
number of elements .
*/
struct ldb_message {
char * dn ;
unsigned int num_elements ;
struct ldb_message_element * elements ;
2004-04-28 11:32:37 +04:00
void * private_data ; /* private to the backend */
2004-03-31 10:45:39 +04:00
} ;
2004-04-03 16:29:21 +04:00
enum ldb_changetype {
LDB_CHANGETYPE_NONE = 0 ,
LDB_CHANGETYPE_ADD ,
LDB_CHANGETYPE_DELETE ,
LDB_CHANGETYPE_MODIFY
} ;
/*
a ldif record - from ldif_read
*/
struct ldb_ldif {
enum ldb_changetype changetype ;
2005-01-02 10:49:29 +03:00
struct ldb_message * msg ;
2004-04-03 16:29:21 +04:00
} ;
2004-03-31 10:45:39 +04:00
enum ldb_scope { LDB_SCOPE_DEFAULT = - 1 ,
LDB_SCOPE_BASE = 0 ,
LDB_SCOPE_ONELEVEL = 1 ,
LDB_SCOPE_SUBTREE = 2 } ;
struct ldb_context ;
/*
the fuction type for the callback used in traversing the database
*/
typedef int ( * ldb_traverse_fn ) ( struct ldb_context * , const struct ldb_message * ) ;
2004-11-16 12:00:52 +03:00
struct ldb_module ;
2004-05-06 08:40:15 +04:00
2004-05-06 13:55:05 +04:00
/* debugging uses one of the following levels */
enum ldb_debug_level { LDB_DEBUG_FATAL , LDB_DEBUG_ERROR ,
LDB_DEBUG_WARNING , LDB_DEBUG_TRACE } ;
/*
the user can optionally supply a debug function . The function
is based on the vfprintf ( ) style of interface , but with the addition
of a severity level
*/
struct ldb_debug_ops {
void ( * debug ) ( void * context , enum ldb_debug_level level ,
const char * fmt , va_list ap ) ;
void * context ;
} ;
2004-03-31 10:45:39 +04:00
# define LDB_FLG_RDONLY 1
2005-02-13 15:27:57 +03:00
# ifndef PRINTF_ATTRIBUTE
# define PRINTF_ATTRIBUTE(a,b)
# endif
2005-06-13 13:10:17 +04:00
/* structues for ldb_parse_tree handling code */
2005-07-19 13:09:00 +04:00
enum ldb_parse_op { LDB_OP_AND = 1 , LDB_OP_OR = 2 , LDB_OP_NOT = 3 ,
LDB_OP_EQUALITY = 4 , LDB_OP_SUBSTRING = 5 ,
LDB_OP_GREATER = 6 , LDB_OP_LESS = 7 , LDB_OP_PRESENT = 8 ,
LDB_OP_APPROX = 9 , LDB_OP_EXTENDED = 10 } ;
2005-06-13 13:10:17 +04:00
struct ldb_parse_tree {
enum ldb_parse_op operation ;
union {
struct {
2005-07-19 13:09:00 +04:00
struct ldb_parse_tree * child ;
} isnot ;
2005-07-12 16:04:54 +04:00
struct {
char * attr ;
2005-07-19 13:09:00 +04:00
struct ldb_val value ;
} equality ;
2005-07-12 16:04:54 +04:00
struct {
char * attr ;
int start_with_wildcard ;
int end_with_wildcard ;
struct ldb_val * * chunks ;
} substring ;
2005-07-19 13:09:00 +04:00
struct {
char * attr ;
} present ;
struct {
char * attr ;
struct ldb_val value ;
} comparison ;
2005-06-14 05:35:44 +04:00
struct {
char * attr ;
int dnAttributes ;
char * rule_id ;
struct ldb_val value ;
} extended ;
2005-06-13 13:10:17 +04:00
struct {
unsigned int num_elements ;
struct ldb_parse_tree * * elements ;
} list ;
} u ;
} ;
struct ldb_parse_tree * ldb_parse_tree ( void * mem_ctx , const char * s ) ;
char * ldb_filter_from_tree ( void * mem_ctx , struct ldb_parse_tree * tree ) ;
char * ldb_binary_encode ( void * ctx , struct ldb_val val ) ;
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
functions for controlling attribute handling
2005-06-21 10:35:55 +04:00
*/
2005-07-02 21:30:03 +04:00
typedef int ( * ldb_attr_handler_t ) ( struct ldb_context * , void * mem_ctx , const struct ldb_val * , struct ldb_val * ) ;
typedef int ( * ldb_attr_comparison_t ) ( struct ldb_context * , void * mem_ctx , const struct ldb_val * , const struct ldb_val * ) ;
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_attrib_handler {
2005-06-21 10:35:55 +04:00
const char * attr ;
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
/* LDB_ATTR_FLAG_* */
unsigned flags ;
/* convert from ldif to binary format */
ldb_attr_handler_t ldif_read_fn ;
/* convert from binary to ldif format */
ldb_attr_handler_t ldif_write_fn ;
/* canonicalise a value, for use by indexing and dn construction */
ldb_attr_handler_t canonicalise_fn ;
/* compare two values */
ldb_attr_comparison_t comparison_fn ;
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
# define LDB_ATTR_FLAG_HIDDEN (1<<0)
/* well-known ldap attribute syntaxes - see rfc2252 section 4.3.2 */
# define LDB_SYNTAX_DN "1.3.6.1.4.1.1466.115.121.1.12"
# define LDB_SYNTAX_DIRECTORY_STRING "1.3.6.1.4.1.1466.115.121.1.15"
# define LDB_SYNTAX_INTEGER "1.3.6.1.4.1.1466.115.121.1.27"
# define LDB_SYNTAX_OCTET_STRING "1.3.6.1.4.1.1466.115.121.1.40"
# define LDB_SYNTAX_OBJECTCLASS "LDB_SYNTAX_OBJECTCLASS"
2005-06-21 10:35:55 +04:00
2005-06-18 11:42:21 +04:00
/*
initialise a ldb context
*/
struct ldb_context * ldb_init ( void * mem_ctx ) ;
2005-06-13 13:10:17 +04:00
2004-03-31 10:45:39 +04:00
/*
connect to a database . The URL can either be one of the following forms
ldb : //path
ldapi : //path
flags is made up of LDB_FLG_ *
the options are passed uninterpreted to the backend , and are
backend specific
*/
2005-06-18 11:42:21 +04:00
int ldb_connect ( struct ldb_context * ldb , const char * url , unsigned int flags , const char * options [ ] ) ;
2004-03-31 10:45:39 +04:00
/*
search the database given a LDAP - like search expression
return the number of records found , or - 1 on error
2005-04-25 16:46:18 +04:00
use talloc_free to free the ldb_message returned
2004-03-31 10:45:39 +04:00
*/
int ldb_search ( struct ldb_context * ldb ,
const char * base ,
enum ldb_scope scope ,
const char * expression ,
2004-05-08 03:54:41 +04:00
const char * const * attrs , struct ldb_message * * * res ) ;
2004-03-31 10:45:39 +04:00
2005-06-13 13:10:17 +04:00
/*
like ldb_search ( ) but takes a parse tree
*/
int ldb_search_bytree ( struct ldb_context * ldb ,
const char * base ,
enum ldb_scope scope ,
struct ldb_parse_tree * tree ,
const char * const * attrs , struct ldb_message * * * res ) ;
2004-03-31 10:45:39 +04:00
/*
add a record to the database . Will fail if a record with the given class and key
already exists
*/
int ldb_add ( struct ldb_context * ldb ,
const struct ldb_message * message ) ;
/*
modify the specified attributes of a record
*/
int ldb_modify ( struct ldb_context * ldb ,
const struct ldb_message * message ) ;
2004-10-20 23:28:02 +04:00
/*
rename a record in the database
*/
int ldb_rename ( struct ldb_context * ldb , const char * olddn , const char * newdn ) ;
2005-06-22 06:39:07 +04:00
/*
create a named lock
*/
int ldb_lock ( struct ldb_context * ldb , const char * lockname ) ;
/*
release a named lock
*/
int ldb_unlock ( struct ldb_context * ldb , const char * lockname ) ;
2004-03-31 10:45:39 +04:00
/*
delete a record from the database
*/
int ldb_delete ( struct ldb_context * ldb , const char * dn ) ;
/*
return extended error information from the last call
*/
const char * ldb_errstring ( struct ldb_context * ldb ) ;
2004-05-01 13:45:56 +04:00
/*
casefold a string ( should be UTF8 , but at the moment it isn ' t )
*/
2005-06-09 06:47:26 +04:00
char * ldb_casefold ( void * mem_ctx , const char * s ) ;
2005-06-27 03:59:22 +04:00
int ldb_caseless_cmp ( const char * s1 , const char * s2 ) ;
2004-05-01 13:45:56 +04:00
2004-03-31 10:45:39 +04:00
/*
ldif manipulation functions
*/
2004-05-20 17:25:06 +04:00
int ldb_ldif_write ( struct ldb_context * ldb ,
int ( * fprintf_fn ) ( void * , const char * , . . . ) ,
void * private_data ,
const struct ldb_ldif * ldif ) ;
void ldb_ldif_read_free ( struct ldb_context * ldb , struct ldb_ldif * ) ;
struct ldb_ldif * ldb_ldif_read ( struct ldb_context * ldb ,
int ( * fgetc_fn ) ( void * ) , void * private_data ) ;
struct ldb_ldif * ldb_ldif_read_file ( struct ldb_context * ldb , FILE * f ) ;
2005-07-12 09:56:06 +04:00
struct ldb_ldif * ldb_ldif_read_string ( struct ldb_context * ldb , const char * * s ) ;
2004-05-20 17:25:06 +04:00
int ldb_ldif_write_file ( struct ldb_context * ldb , FILE * f , const struct ldb_ldif * msg ) ;
2005-06-19 05:31:27 +04:00
char * ldb_base64_encode ( void * mem_ctx , const char * buf , int len ) ;
int ldb_base64_decode ( char * s ) ;
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
int ldb_attrib_add_handlers ( struct ldb_context * ldb ,
const struct ldb_attrib_handler * handlers ,
unsigned num_handlers ) ;
2004-05-01 13:45:56 +04:00
2004-05-05 08:27:29 +04:00
/* useful functions for ldb_message structure manipulation */
2005-07-16 22:16:32 +04:00
int ldb_dn_cmp ( struct ldb_context * ldb , const char * dn1 , const char * dn2 ) ;
2004-11-16 12:00:52 +03:00
int ldb_attr_cmp ( const char * dn1 , const char * dn2 ) ;
2005-06-04 21:13:43 +04:00
/* case-fold a DN */
2005-06-15 06:43:42 +04:00
char * ldb_dn_fold ( void * mem_ctx ,
const char * dn ,
void * user_data ,
int ( * case_fold_attr_fn ) ( void * user_data , char * attr ) ) ;
2005-06-04 21:13:43 +04:00
2005-01-02 10:49:29 +03:00
/* create an empty message */
struct ldb_message * ldb_msg_new ( void * mem_ctx ) ;
2004-05-05 08:27:29 +04:00
/* find an element within an message */
struct ldb_message_element * ldb_msg_find_element ( const struct ldb_message * msg ,
const char * attr_name ) ;
/* compare two ldb_val values - return 0 on match */
int ldb_val_equal_exact ( const struct ldb_val * v1 , const struct ldb_val * v2 ) ;
/* find a value within an ldb_message_element */
struct ldb_val * ldb_msg_find_val ( const struct ldb_message_element * el ,
struct ldb_val * val ) ;
/* add a new empty element to a ldb_message */
2004-05-06 08:40:15 +04:00
int ldb_msg_add_empty ( struct ldb_context * ldb ,
struct ldb_message * msg , const char * attr_name , int flags ) ;
2004-05-05 08:27:29 +04:00
/* add a element to a ldb_message */
2004-05-06 08:40:15 +04:00
int ldb_msg_add ( struct ldb_context * ldb ,
struct ldb_message * msg ,
2004-05-05 08:27:29 +04:00
const struct ldb_message_element * el ,
int flags ) ;
2004-11-16 12:00:52 +03:00
int ldb_msg_add_value ( struct ldb_context * ldb ,
struct ldb_message * msg ,
const char * attr_name ,
2005-01-11 16:52:29 +03:00
const struct ldb_val * val ) ;
2004-11-16 12:00:52 +03:00
int ldb_msg_add_string ( struct ldb_context * ldb , struct ldb_message * msg ,
2005-01-29 07:04:38 +03:00
const char * attr_name , const char * str ) ;
2005-02-12 14:30:33 +03:00
int ldb_msg_add_fmt ( struct ldb_context * ldb , struct ldb_message * msg ,
const char * attr_name , const char * fmt , . . . ) PRINTF_ATTRIBUTE ( 4 , 5 ) ;
2004-05-05 08:27:29 +04:00
/* compare two message elements - return 0 on match */
int ldb_msg_element_compare ( struct ldb_message_element * el1 ,
struct ldb_message_element * el2 ) ;
/* find elements in a message and convert to a specific type, with
a give default value if not found . Assumes that elements are
single valued */
2004-11-16 12:00:52 +03:00
const struct ldb_val * ldb_msg_find_ldb_val ( const struct ldb_message * msg , const char * attr_name ) ;
2004-05-05 08:27:29 +04:00
int ldb_msg_find_int ( const struct ldb_message * msg ,
const char * attr_name ,
int default_value ) ;
unsigned int ldb_msg_find_uint ( const struct ldb_message * msg ,
const char * attr_name ,
2004-06-05 05:30:27 +04:00
unsigned int default_value ) ;
2004-11-16 12:00:52 +03:00
int64_t ldb_msg_find_int64 ( const struct ldb_message * msg ,
const char * attr_name ,
int64_t default_value ) ;
uint64_t ldb_msg_find_uint64 ( const struct ldb_message * msg ,
const char * attr_name ,
uint64_t default_value ) ;
2004-05-05 08:27:29 +04:00
double ldb_msg_find_double ( const struct ldb_message * msg ,
const char * attr_name ,
double default_value ) ;
const char * ldb_msg_find_string ( const struct ldb_message * msg ,
const char * attr_name ,
const char * default_value ) ;
2004-12-31 06:51:42 +03:00
void ldb_msg_sort_elements ( struct ldb_message * msg ) ;
void ldb_msg_free ( struct ldb_context * ldb , struct ldb_message * msg ) ;
struct ldb_message * ldb_msg_copy ( struct ldb_context * ldb ,
const struct ldb_message * msg ) ;
struct ldb_message * ldb_msg_canonicalize ( struct ldb_context * ldb ,
const struct ldb_message * msg ) ;
2005-05-17 02:31:45 +04:00
struct ldb_message * ldb_msg_diff ( struct ldb_context * ldb ,
struct ldb_message * msg1 ,
struct ldb_message * msg2 ) ;
2005-01-02 10:49:29 +03:00
struct ldb_val ldb_val_dup ( void * mem_ctx , const struct ldb_val * v ) ;
2004-11-16 12:00:52 +03:00
2004-05-06 13:55:05 +04:00
/*
this allows the user to set a debug function for error reporting
*/
int ldb_set_debug ( struct ldb_context * ldb ,
void ( * debug ) ( void * context , enum ldb_debug_level level ,
const char * fmt , va_list ap ) ,
void * context ) ;
/* this sets up debug to print messages on stderr */
int ldb_set_debug_stderr ( struct ldb_context * ldb ) ;
2005-06-20 08:56:43 +04:00
/* control backend specific opaque values */
int ldb_set_opaque ( struct ldb_context * ldb , const char * name , void * value ) ;
void * ldb_get_opaque ( struct ldb_context * ldb , const char * name ) ;
2005-07-21 05:56:22 +04:00
const struct ldb_attrib_handler * ldb_attrib_handler ( struct ldb_context * ldb ,
const char * attrib ) ;
2004-05-06 08:40:15 +04:00
# endif