2009-01-30 02:39:30 +03:00
/*
ldb database library
Copyright ( C ) Simo Sorce 2008
* * 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 3 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 , see < http : //www.gnu.org/licenses/>.
*/
/*
* Name : ldb
*
* Component : ldb module header
*
* Description : defines ldb modules structures and helpers
*
*/
# ifndef _LDB_MODULE_H_
# define _LDB_MODULE_H_
2011-03-03 08:31:00 +03:00
# include <ldb.h>
2009-01-30 02:39:30 +03:00
struct ldb_context ;
struct ldb_module ;
2010-08-17 06:04:45 +04:00
/**
internal flag bits on message elements . Must be within LDB_FLAG_INTERNAL_MASK
*/
# define LDB_FLAG_INTERNAL_DISABLE_VALIDATION 0x10
2010-11-04 12:27:43 +03:00
/* disable any single value checking on this attribute */
# define LDB_FLAG_INTERNAL_DISABLE_SINGLE_VALUE_CHECK 0x20
2010-12-08 13:03:43 +03:00
/* attribute has failed access check and must not be exposed */
2010-12-08 14:19:27 +03:00
# define LDB_FLAG_INTERNAL_INACCESSIBLE_ATTRIBUTE 0x40
2010-12-08 13:03:43 +03:00
2011-02-14 02:08:24 +03:00
/* force single value checking on this attribute */
# define LDB_FLAG_INTERNAL_FORCE_SINGLE_VALUE_CHECK 0x80
2011-08-02 11:16:44 +04:00
/* an extended match rule that always fails to match */
# define SAMBA_LDAP_MATCH_ALWAYS_FALSE "1.3.6.1.4.1.7165.4.5.1"
2010-08-17 06:04:45 +04:00
2012-08-29 05:29:44 +04:00
/* The const char * const * pointer to a list of secret (password)
* attributes , not to be printed in trace messages */
# define LDB_SECRET_ATTRIBUTE_LIST_OPAQUE "LDB_SECRET_ATTRIBUTE_LIST"
2009-01-30 02:39:30 +03:00
/*
these function pointers define the operations that a ldb module can intercept
*/
struct ldb_module_ops {
const char * name ;
int ( * init_context ) ( struct ldb_module * ) ;
int ( * search ) ( struct ldb_module * , struct ldb_request * ) ; /* search */
int ( * add ) ( struct ldb_module * , struct ldb_request * ) ; /* add */
int ( * modify ) ( struct ldb_module * , struct ldb_request * ) ; /* modify */
int ( * del ) ( struct ldb_module * , struct ldb_request * ) ; /* delete */
int ( * rename ) ( struct ldb_module * , struct ldb_request * ) ; /* rename */
int ( * request ) ( struct ldb_module * , struct ldb_request * ) ; /* match any other operation */
int ( * extended ) ( struct ldb_module * , struct ldb_request * ) ; /* extended operations */
int ( * start_transaction ) ( struct ldb_module * ) ;
2009-03-31 08:07:54 +04:00
int ( * prepare_commit ) ( struct ldb_module * ) ;
2009-01-30 02:39:30 +03:00
int ( * end_transaction ) ( struct ldb_module * ) ;
int ( * del_transaction ) ( struct ldb_module * ) ;
int ( * sequence_number ) ( struct ldb_module * , struct ldb_request * ) ;
2009-01-30 18:18:52 +03:00
void * private_data ;
2009-01-30 02:39:30 +03:00
} ;
/* 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 ) ;
void ldb_debug_set ( struct ldb_context * ldb , enum ldb_debug_level level ,
const char * fmt , . . . ) PRINTF_ATTRIBUTE ( 3 , 4 ) ;
2009-09-22 04:52:21 +04:00
void ldb_debug_add ( struct ldb_context * ldb , const char * fmt , . . . ) PRINTF_ATTRIBUTE ( 2 , 3 ) ;
void ldb_debug_end ( struct ldb_context * ldb , enum ldb_debug_level level ) ;
2012-08-09 13:40:45 +04:00
void ldb_vdebug ( struct ldb_context * ldb , enum ldb_debug_level level , const char * fmt , va_list ap ) PRINTF_ATTRIBUTE ( 3 , 0 ) ;
2009-01-30 02:39:30 +03:00
2010-07-06 07:20:19 +04:00
# define ldb_error(ldb, ecode, reason) ldb_error_at(ldb, ecode, reason, __FILE__, __LINE__)
2011-11-15 05:34:40 +04:00
# define ldb_module_error(module, ecode, reason) ldb_error_at(ldb_module_get_ctx(module), ecode, reason, __FILE__, __LINE__)
2010-07-06 07:20:19 +04:00
2010-11-04 04:27:10 +03:00
# define ldb_oom(ldb) ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR, "ldb out of memory")
2009-10-21 15:18:32 +04:00
# define ldb_module_oom(module) ldb_oom(ldb_module_get_ctx(module))
2010-07-06 07:20:19 +04:00
# define ldb_operr(ldb) ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR, "operations error")
2011-11-15 05:34:40 +04:00
# define ldb_module_operr(module) ldb_error(ldb_module_get_ctx(module), LDB_ERR_OPERATIONS_ERROR, "operations error")
2009-01-30 02:39:30 +03:00
/* The following definitions come from lib/ldb/common/ldb.c */
void ldb_request_set_state ( struct ldb_request * req , int state ) ;
int ldb_request_get_status ( struct ldb_request * req ) ;
unsigned int ldb_get_create_perms ( struct ldb_context * ldb ) ;
const struct ldb_schema_syntax * ldb_standard_syntax_by_name ( struct ldb_context * ldb ,
const char * syntax ) ;
/* The following definitions come from lib/ldb/common/ldb_attributes.c */
int ldb_schema_attribute_add_with_syntax ( struct ldb_context * ldb ,
const char * name ,
unsigned flags ,
const struct ldb_schema_syntax * syntax ) ;
int ldb_schema_attribute_add ( struct ldb_context * ldb ,
const char * name ,
unsigned flags ,
const char * syntax ) ;
void ldb_schema_attribute_remove ( struct ldb_context * ldb , const char * name ) ;
2009-04-02 09:42:21 +04:00
/* we allow external code to override the name -> schema_attribute function */
typedef const struct ldb_schema_attribute * ( * ldb_attribute_handler_override_fn_t ) ( struct ldb_context * , void * , const char * ) ;
2017-05-30 12:00:34 +03:00
/**
Allow the caller to define a callback for the attribute handler
\ param ldb The ldb context
\ param override The callback to be used for attribute lookups
\ param private_data Private data for the callback
*/
2009-04-02 09:42:21 +04:00
void ldb_schema_attribute_set_override_handler ( struct ldb_context * ldb ,
ldb_attribute_handler_override_fn_t override ,
void * private_data ) ;
2017-05-30 12:04:02 +03:00
/**
Allow the caller to define that the callback for the attribute handler
also overrides the index list
\ param ldb The ldb context
\ param one_level_indexes Indicates that the index for SCOPE_ONELEVEL
should also be maintained
*/
2017-03-30 03:23:44 +03:00
void ldb_schema_set_override_indexlist ( struct ldb_context * ldb ,
bool one_level_indexes ) ;
2009-04-02 09:42:21 +04:00
2009-11-05 08:56:05 +03:00
/* A useful function to build comparison functions with */
int ldb_any_comparison ( struct ldb_context * ldb , void * mem_ctx ,
ldb_attr_handler_t canonicalise_fn ,
const struct ldb_val * v1 ,
const struct ldb_val * v2 ) ;
2009-01-30 02:39:30 +03:00
/* The following definitions come from lib/ldb/common/ldb_controls.c */
2010-12-18 01:00:46 +03:00
int ldb_save_controls ( struct ldb_control * exclude , struct ldb_request * req , struct ldb_control * * * saver ) ;
2009-10-21 08:20:26 +04:00
/* Returns a list of controls, except the one specified. Included
* controls become a child of returned list if they were children of
* controls_in */
2010-12-18 02:43:24 +03:00
struct ldb_control * * ldb_controls_except_specified ( struct ldb_control * * controls_in ,
2009-10-21 08:20:26 +04:00
TALLOC_CTX * mem_ctx ,
struct ldb_control * exclude ) ;
2010-12-18 01:00:46 +03:00
int ldb_check_critical_controls ( struct ldb_control * * controls ) ;
2009-01-30 02:39:30 +03:00
/* The following definitions come from lib/ldb/common/ldb_ldif.c */
2009-09-08 14:57:31 +04:00
int ldb_should_b64_encode ( struct ldb_context * ldb , const struct ldb_val * val ) ;
2009-01-30 02:39:30 +03:00
/* The following definitions come from lib/ldb/common/ldb_match.c */
int ldb_match_msg ( struct ldb_context * ldb ,
const struct ldb_message * msg ,
const struct ldb_parse_tree * tree ,
struct ldb_dn * base ,
enum ldb_scope scope ) ;
2010-10-13 13:58:38 +04:00
int ldb_match_msg_error ( struct ldb_context * ldb ,
const struct ldb_message * msg ,
const struct ldb_parse_tree * tree ,
struct ldb_dn * base ,
enum ldb_scope scope ,
bool * matched ) ;
2009-12-07 07:27:43 +03:00
int ldb_match_msg_objectclass ( const struct ldb_message * msg ,
const char * objectclass ) ;
2014-11-05 13:02:25 +03:00
int ldb_register_extended_match_rules ( struct ldb_context * ldb ) ;
2009-01-30 02:39:30 +03:00
/* The following definitions come from lib/ldb/common/ldb_modules.c */
struct ldb_module * ldb_module_new ( TALLOC_CTX * memctx ,
struct ldb_context * ldb ,
const char * module_name ,
const struct ldb_module_ops * ops ) ;
2009-01-30 18:18:52 +03:00
const char * ldb_module_get_name ( struct ldb_module * module ) ;
2009-01-30 02:39:30 +03:00
struct ldb_context * ldb_module_get_ctx ( struct ldb_module * module ) ;
void * ldb_module_get_private ( struct ldb_module * module ) ;
void ldb_module_set_private ( struct ldb_module * module , void * private_data ) ;
2009-12-21 13:03:11 +03:00
const struct ldb_module_ops * ldb_module_get_ops ( struct ldb_module * module ) ;
2009-01-30 02:39:30 +03:00
int ldb_next_request ( struct ldb_module * module , struct ldb_request * request ) ;
int ldb_next_start_trans ( struct ldb_module * module ) ;
int ldb_next_end_trans ( struct ldb_module * module ) ;
int ldb_next_del_trans ( struct ldb_module * module ) ;
2009-09-03 12:29:58 +04:00
int ldb_next_prepare_commit ( struct ldb_module * module ) ;
2009-01-30 02:39:30 +03:00
int ldb_next_init ( struct ldb_module * module ) ;
void ldb_set_errstring ( struct ldb_context * ldb , const char * err_string ) ;
void ldb_asprintf_errstring ( struct ldb_context * ldb , const char * format , . . . ) PRINTF_ATTRIBUTE ( 2 , 3 ) ;
void ldb_reset_err_string ( struct ldb_context * ldb ) ;
2010-07-06 07:20:19 +04:00
int ldb_error_at ( struct ldb_context * ldb , int ecode , const char * reason , const char * file , int line ) ;
2009-01-30 02:39:30 +03:00
const char * ldb_default_modules_dir ( void ) ;
int ldb_register_module ( const struct ldb_module_ops * ) ;
typedef int ( * ldb_connect_fn ) ( struct ldb_context * ldb , const char * url ,
unsigned int flags , const char * options [ ] ,
struct ldb_module * * module ) ;
2017-05-12 03:21:28 +03:00
void ldb_set_require_private_event_context ( struct ldb_context * ldb ) ;
2009-01-30 02:39:30 +03:00
struct ldb_backend_ops {
const char * name ;
ldb_connect_fn connect_fn ;
} ;
const char * ldb_default_modules_dir ( void ) ;
2010-11-01 10:41:32 +03:00
int ldb_register_backend ( const char * url_prefix , ldb_connect_fn , bool ) ;
2009-01-30 02:39:30 +03:00
struct ldb_handle * ldb_handle_new ( TALLOC_CTX * mem_ctx , struct ldb_context * ldb ) ;
2017-05-04 12:39:21 +03:00
/**
Obtains the private event context for the handle ,
A private event context may have been created to avoid nested event
loops during ldb_tdb with the locks held . Otherwise return the
global one .
\ param handle The ldb handle to obtain the event context for
\ return the tevent event context for this handle ( private or global )
2017-05-04 12:39:21 +03:00
*/
struct tevent_context * ldb_handle_get_event_context ( struct ldb_handle * handle ) ;
2009-01-30 02:39:30 +03:00
int ldb_module_send_entry ( struct ldb_request * req ,
struct ldb_message * msg ,
struct ldb_control * * ctrls ) ;
int ldb_module_send_referral ( struct ldb_request * req ,
char * ref ) ;
int ldb_module_done ( struct ldb_request * req ,
struct ldb_control * * ctrls ,
struct ldb_extended * response ,
int error ) ;
int ldb_mod_register_control ( struct ldb_module * module , const char * oid ) ;
2009-06-30 09:30:13 +04:00
void ldb_set_default_dns ( struct ldb_context * ldb ) ;
2009-10-15 03:45:44 +04:00
/**
Add a ldb_control to a ldb_reply
\ param ares the reply struct where to add the control
\ param oid the object identifier of the control as string
\ param critical whether the control should be critical or not
\ param data a talloc pointer to the control specific data
\ return result code ( LDB_SUCCESS on success , or a failure code )
*/
int ldb_reply_add_control ( struct ldb_reply * ares , const char * oid , bool critical , void * data ) ;
2009-06-30 09:30:13 +04:00
2010-10-19 04:17:53 +04:00
/**
2017-05-30 11:57:23 +03:00
mark a request as untrusted .
This tells the rootdse module to remove unregistered controls
\ param req the request to mark as untrusted
*/
2010-10-19 04:17:53 +04:00
void ldb_req_mark_untrusted ( struct ldb_request * req ) ;
2011-01-17 05:11:08 +03:00
/**
mark a request as trusted .
2017-05-30 11:57:23 +03:00
This tells the rootdse module to allow unregistered controls
\ param req the request to mark as trusted
*/
2011-01-17 05:11:08 +03:00
void ldb_req_mark_trusted ( struct ldb_request * req ) ;
2010-10-19 04:17:53 +04:00
/**
return true is a request is untrusted
2017-05-30 11:57:23 +03:00
This indicates the request came across a trust boundary
for example over LDAP
\ param req the request check
\ return is req trusted
*/
2010-10-19 04:17:53 +04:00
bool ldb_req_is_untrusted ( struct ldb_request * req ) ;
2011-04-20 20:26:47 +04:00
/**
set custom flags . Those flags are set by applications using ldb ,
they are application dependent and the same bit can have different
meaning in different application .
*/
void ldb_req_set_custom_flags ( struct ldb_request * req , uint32_t flags ) ;
/**
get custom flags . Those flags are set by applications using ldb ,
they are application dependent and the same bit can have different
meaning in different application .
*/
uint32_t ldb_req_get_custom_flags ( struct ldb_request * req ) ;
2010-11-01 04:32:18 +03:00
/* load all modules from the given directory */
int ldb_modules_load ( const char * modules_path , const char * version ) ;
2010-11-01 07:00:11 +03:00
/* init functions prototype */
typedef int ( * ldb_module_init_fn ) ( const char * ) ;
2010-11-01 10:41:32 +03:00
/*
general ldb hook function
*/
enum ldb_module_hook_type { LDB_MODULE_HOOK_CMDLINE_OPTIONS = 1 ,
LDB_MODULE_HOOK_CMDLINE_PRECONNECT = 2 ,
LDB_MODULE_HOOK_CMDLINE_POSTCONNECT = 3 } ;
typedef int ( * ldb_hook_fn ) ( struct ldb_context * , enum ldb_module_hook_type ) ;
/*
register a ldb hook function
*/
int ldb_register_hook ( ldb_hook_fn hook_fn ) ;
/*
call ldb hooks of a given type
*/
int ldb_modules_hook ( struct ldb_context * ldb , enum ldb_module_hook_type t ) ;
2010-11-01 14:28:59 +03:00
# define LDB_MODULE_CHECK_VERSION(version) do { \
if ( strcmp ( version , LDB_VERSION ) ! = 0 ) { \
fprintf ( stderr , " ldb: module version mismatch in %s : ldb_version=%s module_version=%s \n " , \
__FILE__ , version , LDB_VERSION ) ; \
return LDB_ERR_UNAVAILABLE ; \
} } while ( 0 )
2010-11-02 02:40:52 +03:00
/*
return a string representation of the calling chain for the given
ldb request
*/
char * ldb_module_call_chain ( struct ldb_request * req , TALLOC_CTX * mem_ctx ) ;
/*
return the next module in the chain
*/
struct ldb_module * ldb_module_next ( struct ldb_module * module ) ;
/*
set the next module in the module chain
*/
void ldb_module_set_next ( struct ldb_module * module , struct ldb_module * next ) ;
/*
load a list of modules
*/
int ldb_module_load_list ( struct ldb_context * ldb , const char * * module_list ,
struct ldb_module * backend , struct ldb_module * * out ) ;
/*
get the popt_options pointer in the ldb structure . This allows a ldb
module to change the command line parsing
*/
struct poptOption * * ldb_module_popt_options ( struct ldb_context * ldb ) ;
/* modules are called in inverse order on the stack.
Lets place them as an admin would think the right order is .
Modules order is important */
const char * * ldb_modules_list_from_string ( struct ldb_context * ldb , TALLOC_CTX * mem_ctx , const char * string ) ;
/*
return the current ldb flags LDB_FLG_ *
*/
uint32_t ldb_module_flags ( struct ldb_context * ldb ) ;
int ldb_module_connect_backend ( struct ldb_context * ldb ,
const char * url ,
const char * options [ ] ,
struct ldb_module * * backend_module ) ;
/*
initialise a chain of modules
*/
int ldb_module_init_chain ( struct ldb_context * ldb , struct ldb_module * module ) ;
2010-12-18 02:11:36 +03:00
/*
* prototype for the init function defined by dynamically loaded modules
*/
int ldb_init_module ( const char * version ) ;
2011-08-01 06:24:13 +04:00
/* replace the components of a DN with those from another DN, without
* touching the extended components
*
* return true if successful and false if not
* if false is returned the dn may be marked invalid
*/
bool ldb_dn_replace_components ( struct ldb_dn * dn , struct ldb_dn * new_dn ) ;
2010-11-02 02:40:52 +03:00
2011-08-01 11:46:39 +04:00
/*
walk a parse tree , calling the provided callback on each node
*/
int ldb_parse_tree_walk ( struct ldb_parse_tree * tree ,
int ( * callback ) ( struct ldb_parse_tree * tree , void * ) ,
void * private_context ) ;
2012-04-17 08:01:08 +04:00
/* compare two message elements with ordering - used by modify */
bool ldb_msg_element_equal_ordered ( const struct ldb_message_element * el1 ,
const struct ldb_message_element * el2 ) ;
2014-11-05 13:02:25 +03:00
struct ldb_extended_match_rule
{
const char * oid ;
int ( * callback ) ( struct ldb_context * , const char * oid ,
const struct ldb_message * , const char * ,
const struct ldb_val * , bool * ) ;
} ;
int ldb_register_extended_match_rule ( struct ldb_context * ldb ,
const struct ldb_extended_match_rule * rule ) ;
2015-09-01 00:53:12 +03:00
/*
* these pack / unpack functions are exposed in the library for use by
* ldb tools like ldbdump and for use in tests ,
* but are not part of the public API
*/
int ldb_pack_data ( struct ldb_context * ldb ,
const struct ldb_message * message ,
struct ldb_val * data ) ;
2016-07-26 15:17:36 +03:00
/*
* Unpack a ldb message from a linear buffer in ldb_val
*
* Providing a list of attributes to this function allows selective unpacking .
* Giving a NULL list ( or a list_size of 0 ) unpacks all the attributes .
*/
2015-12-17 01:24:44 +03:00
int ldb_unpack_data_only_attr_list ( struct ldb_context * ldb ,
const struct ldb_val * data ,
struct ldb_message * message ,
const char * const * list ,
unsigned int list_size ,
unsigned int * nb_attributes_indb ) ;
2015-09-01 00:53:12 +03:00
int ldb_unpack_data ( struct ldb_context * ldb ,
const struct ldb_val * data ,
struct ldb_message * message ) ;
2016-07-26 15:17:36 +03:00
/*
* Unpack a ldb message from a linear buffer in ldb_val
*
* Providing a list of attributes to this function allows selective unpacking .
* Giving a NULL list ( or a list_size of 0 ) unpacks all the attributes .
*
* Flags allow control of allocation , so that if
2016-08-23 02:38:26 +03:00
* LDB_UNPACK_DATA_FLAG_NO_DATA_ALLOC is specified , then data in values are
* not allocated , instead they point into the supplier constant buffer .
*
* If LDB_UNPACK_DATA_FLAG_NO_VALUES_ALLOC is specified , then values
* array are not allocated individually ( for single - valued
* attributes ) , instead they point into a single buffer per message .
*
* LDB_UNPACK_DATA_FLAG_NO_VALUES_ALLOC is only valid when
* LDB_UNPACK_DATA_FLAG_NO_DATA_ALLOC is also specified .
2016-07-26 15:17:36 +03:00
*
* Likewise if LDB_UNPACK_DATA_FLAG_NO_DN is specified , the DN is omitted .
*/
int ldb_unpack_data_only_attr_list_flags ( struct ldb_context * ldb ,
const struct ldb_val * data ,
struct ldb_message * message ,
const char * const * list ,
unsigned int list_size ,
unsigned int flags ,
unsigned int * nb_elements_in_db ) ;
2016-08-23 02:38:26 +03:00
# define LDB_UNPACK_DATA_FLAG_NO_DATA_ALLOC 0x0001
# define LDB_UNPACK_DATA_FLAG_NO_DN 0x0002
# define LDB_UNPACK_DATA_FLAG_NO_VALUES_ALLOC 0x0004
2015-09-01 00:53:12 +03:00
2017-05-05 09:25:40 +03:00
/*
* This function forces a specific ldb handle to use the global event
* context . This allows a nested event loop to operate , so any open
* transaction also needs to be aborted .
*
* Any events on this event context will be lost
*
* This is used in Samba when sending an IRPC to another part of the
* same process instead of making a local DB modification .
*/
void ldb_handle_use_global_event_context ( struct ldb_handle * handle ) ;
2009-01-30 02:39:30 +03:00
# endif