2003-11-27 10:35:20 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2008-01-08 08:19:56 +08:00
|
|
|
* Copyright 2001-2008 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
2003-11-27 10:35:20 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by Pierangelo Masarati for inclusion
|
|
|
|
* in OpenLDAP Software.
|
2001-07-15 01:34:24 +08:00
|
|
|
*/
|
|
|
|
|
2003-04-13 12:51:12 +08:00
|
|
|
#ifndef _PROTO_BACK_MONITOR
|
|
|
|
#define _PROTO_BACK_MONITOR
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
#include <ldap_cdefs.h>
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
|
|
|
/*
|
2004-11-08 18:10:15 +08:00
|
|
|
* backends
|
2001-07-15 01:34:24 +08:00
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
int
|
|
|
|
monitor_subsys_backend_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
/*
|
2004-11-08 18:10:15 +08:00
|
|
|
* cache
|
2001-07-15 01:34:24 +08:00
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_cache_cmp LDAP_P((
|
|
|
|
const void *c1,
|
|
|
|
const void *c2 ));
|
|
|
|
extern int
|
|
|
|
monitor_cache_dup LDAP_P((
|
|
|
|
void *c1,
|
|
|
|
void *c2 ));
|
|
|
|
extern int
|
|
|
|
monitor_cache_add LDAP_P((
|
|
|
|
monitor_info_t *mi,
|
|
|
|
Entry *e ));
|
|
|
|
extern int
|
|
|
|
monitor_cache_get LDAP_P((
|
|
|
|
monitor_info_t *mi,
|
|
|
|
struct berval *ndn,
|
|
|
|
Entry **ep ));
|
|
|
|
extern int
|
2006-09-06 20:06:42 +08:00
|
|
|
monitor_cache_remove LDAP_P((
|
|
|
|
monitor_info_t *mi,
|
|
|
|
struct berval *ndn,
|
|
|
|
Entry **ep ));
|
|
|
|
extern int
|
2005-04-28 05:30:35 +08:00
|
|
|
monitor_cache_dn2entry LDAP_P((
|
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs,
|
|
|
|
struct berval *ndn,
|
|
|
|
Entry **ep,
|
|
|
|
Entry **matched ));
|
|
|
|
extern int
|
|
|
|
monitor_cache_lock LDAP_P((
|
|
|
|
Entry *e ));
|
|
|
|
extern int
|
|
|
|
monitor_cache_release LDAP_P((
|
|
|
|
monitor_info_t *mi,
|
|
|
|
Entry *e ));
|
2004-11-08 18:10:15 +08:00
|
|
|
|
2005-07-20 22:59:56 +08:00
|
|
|
extern int
|
|
|
|
monitor_cache_destroy LDAP_P((
|
|
|
|
monitor_info_t *mi ));
|
|
|
|
|
2004-11-08 18:10:15 +08:00
|
|
|
/*
|
|
|
|
* connections
|
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_subsys_conn_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* databases
|
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_subsys_database_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
/*
|
2004-11-08 18:10:15 +08:00
|
|
|
* entry
|
2001-07-15 01:34:24 +08:00
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_entry_update LDAP_P((
|
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs,
|
|
|
|
Entry *e ));
|
|
|
|
extern int
|
|
|
|
monitor_entry_create LDAP_P((
|
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs,
|
|
|
|
struct berval *ndn,
|
|
|
|
Entry *e_parent,
|
|
|
|
Entry **ep ));
|
|
|
|
extern int
|
|
|
|
monitor_entry_modify LDAP_P((
|
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs,
|
|
|
|
Entry *e ));
|
|
|
|
extern int
|
|
|
|
monitor_entry_test_flags LDAP_P((
|
|
|
|
monitor_entry_t *mp,
|
|
|
|
int cond ));
|
|
|
|
extern monitor_entry_t *
|
|
|
|
monitor_entrypriv_create LDAP_P((
|
|
|
|
void ));
|
2001-07-15 01:34:24 +08:00
|
|
|
|
2006-01-12 16:40:09 +08:00
|
|
|
extern Entry *
|
|
|
|
monitor_entry_stub LDAP_P((
|
|
|
|
struct berval *pdn,
|
|
|
|
struct berval *pndn,
|
|
|
|
struct berval *rdn,
|
|
|
|
ObjectClass *oc,
|
|
|
|
monitor_info_t *mi,
|
|
|
|
struct berval *create,
|
|
|
|
struct berval *modify));
|
|
|
|
|
2001-07-15 01:34:24 +08:00
|
|
|
/*
|
2004-11-08 18:10:15 +08:00
|
|
|
* init
|
2001-07-15 01:34:24 +08:00
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
2007-03-22 07:22:49 +08:00
|
|
|
monitor_subsys_is_opened LDAP_P((
|
|
|
|
void ));
|
|
|
|
extern int
|
2005-04-28 05:30:35 +08:00
|
|
|
monitor_back_register_subsys LDAP_P((
|
|
|
|
monitor_subsys_t *ms ));
|
2007-03-22 06:35:37 +08:00
|
|
|
extern int
|
|
|
|
monitor_back_register_backend LDAP_P((
|
|
|
|
BackendInfo *bi ));
|
|
|
|
extern int
|
|
|
|
monitor_back_register_database LDAP_P((
|
2007-09-15 23:34:49 +08:00
|
|
|
BackendDB *be,
|
|
|
|
struct berval *ndn ));
|
2007-03-22 06:35:37 +08:00
|
|
|
extern int
|
|
|
|
monitor_back_register_overlay_info LDAP_P((
|
|
|
|
slap_overinst *on ));
|
|
|
|
extern int
|
|
|
|
monitor_back_register_overlay LDAP_P((
|
|
|
|
BackendDB *be ));
|
2007-03-22 07:22:49 +08:00
|
|
|
extern int
|
|
|
|
monitor_back_register_backend_limbo LDAP_P((
|
|
|
|
BackendInfo *bi ));
|
|
|
|
extern int
|
|
|
|
monitor_back_register_database_limbo LDAP_P((
|
2007-09-15 23:34:49 +08:00
|
|
|
BackendDB *be,
|
|
|
|
struct berval *ndn ));
|
2007-03-22 07:22:49 +08:00
|
|
|
extern int
|
|
|
|
monitor_back_register_overlay_info_limbo LDAP_P((
|
|
|
|
slap_overinst *on ));
|
|
|
|
extern int
|
|
|
|
monitor_back_register_overlay_limbo LDAP_P((
|
|
|
|
BackendDB *be ));
|
2005-04-28 05:30:35 +08:00
|
|
|
extern monitor_subsys_t *
|
|
|
|
monitor_back_get_subsys LDAP_P((
|
|
|
|
const char *name ));
|
|
|
|
extern monitor_subsys_t *
|
|
|
|
monitor_back_get_subsys_by_dn LDAP_P((
|
|
|
|
struct berval *ndn,
|
|
|
|
int sub ));
|
|
|
|
extern int
|
2005-09-08 22:23:35 +08:00
|
|
|
monitor_back_is_configured LDAP_P(( void ));
|
|
|
|
extern int
|
2005-04-28 05:30:35 +08:00
|
|
|
monitor_back_register_entry LDAP_P((
|
|
|
|
Entry *e,
|
2006-09-09 06:02:32 +08:00
|
|
|
monitor_callback_t *cb,
|
|
|
|
monitor_subsys_t *mss,
|
|
|
|
unsigned long flags ));
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_back_register_entry_parent LDAP_P((
|
|
|
|
Entry *e,
|
|
|
|
monitor_callback_t *cb,
|
2006-09-09 06:02:32 +08:00
|
|
|
monitor_subsys_t *mss,
|
|
|
|
unsigned long flags,
|
2005-04-28 05:30:35 +08:00
|
|
|
struct berval *base,
|
|
|
|
int scope,
|
|
|
|
struct berval *filter ));
|
|
|
|
extern int
|
2006-09-09 10:35:58 +08:00
|
|
|
monitor_search2ndn LDAP_P((
|
2005-04-28 05:30:35 +08:00
|
|
|
struct berval *base,
|
|
|
|
int scope,
|
|
|
|
struct berval *filter,
|
|
|
|
struct berval *ndn ));
|
|
|
|
extern int
|
|
|
|
monitor_back_register_entry_attrs LDAP_P((
|
|
|
|
struct berval *ndn,
|
|
|
|
Attribute *a,
|
|
|
|
monitor_callback_t *cb,
|
|
|
|
struct berval *base,
|
|
|
|
int scope,
|
|
|
|
struct berval *filter ));
|
|
|
|
extern int
|
|
|
|
monitor_back_register_entry_callback LDAP_P((
|
|
|
|
struct berval *ndn,
|
|
|
|
monitor_callback_t *cb,
|
|
|
|
struct berval *base,
|
|
|
|
int scope,
|
|
|
|
struct berval *filter ));
|
2006-09-06 09:54:54 +08:00
|
|
|
extern int
|
|
|
|
monitor_back_unregister_entry LDAP_P((
|
2006-09-09 06:02:32 +08:00
|
|
|
struct berval *ndn ));
|
|
|
|
extern int
|
|
|
|
monitor_back_unregister_entry_parent LDAP_P((
|
|
|
|
struct berval *nrdn,
|
|
|
|
monitor_callback_t *target_cb,
|
|
|
|
struct berval *base,
|
|
|
|
int scope,
|
|
|
|
struct berval *filter ));
|
2006-09-06 09:54:54 +08:00
|
|
|
extern int
|
|
|
|
monitor_back_unregister_entry_attrs LDAP_P((
|
|
|
|
struct berval *ndn,
|
2006-09-06 20:06:42 +08:00
|
|
|
Attribute *a,
|
|
|
|
monitor_callback_t *cb,
|
2006-09-06 09:54:54 +08:00
|
|
|
struct berval *base,
|
|
|
|
int scope,
|
|
|
|
struct berval *filter ));
|
|
|
|
extern int
|
|
|
|
monitor_back_unregister_entry_callback LDAP_P((
|
|
|
|
struct berval *ndn,
|
2006-09-06 20:06:42 +08:00
|
|
|
monitor_callback_t *cb,
|
2006-09-06 09:54:54 +08:00
|
|
|
struct berval *base,
|
|
|
|
int scope,
|
|
|
|
struct berval *filter ));
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
/*
|
2004-11-08 18:10:15 +08:00
|
|
|
* listener
|
2001-07-15 01:34:24 +08:00
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_subsys_listener_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2001-07-15 01:34:24 +08:00
|
|
|
|
2001-12-10 17:50:06 +08:00
|
|
|
/*
|
|
|
|
* log
|
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_subsys_log_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2001-12-10 17:50:06 +08:00
|
|
|
|
2001-12-23 03:14:10 +08:00
|
|
|
/*
|
|
|
|
* operations
|
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_subsys_ops_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2004-03-17 05:58:29 +08:00
|
|
|
/*
|
|
|
|
* overlay
|
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_subsys_overlay_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2004-03-17 05:58:29 +08:00
|
|
|
|
2001-12-23 03:14:10 +08:00
|
|
|
/*
|
|
|
|
* sent
|
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_subsys_sent_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2001-12-23 03:14:10 +08:00
|
|
|
|
2002-01-11 19:43:35 +08:00
|
|
|
/*
|
2004-11-08 18:10:15 +08:00
|
|
|
* threads
|
2002-01-11 19:43:35 +08:00
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_subsys_thread_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2002-01-11 19:43:35 +08:00
|
|
|
|
2002-01-29 20:15:13 +08:00
|
|
|
/*
|
|
|
|
* time
|
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int monitor_subsys_time_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2002-01-29 20:15:13 +08:00
|
|
|
|
2004-11-08 18:10:15 +08:00
|
|
|
/*
|
|
|
|
* waiters
|
|
|
|
*/
|
2005-04-28 05:30:35 +08:00
|
|
|
extern int
|
|
|
|
monitor_subsys_rww_init LDAP_P((
|
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms ));
|
2004-11-08 18:10:15 +08:00
|
|
|
|
2004-11-11 08:39:19 +08:00
|
|
|
/*
|
|
|
|
* former external.h
|
|
|
|
*/
|
|
|
|
|
2004-11-16 03:45:49 +08:00
|
|
|
extern BI_init monitor_back_initialize;
|
|
|
|
|
2004-11-11 08:39:19 +08:00
|
|
|
extern BI_db_init monitor_back_db_init;
|
|
|
|
extern BI_db_open monitor_back_db_open;
|
|
|
|
extern BI_config monitor_back_config;
|
|
|
|
extern BI_db_destroy monitor_back_db_destroy;
|
|
|
|
extern BI_db_config monitor_back_db_config;
|
|
|
|
|
|
|
|
extern BI_op_search monitor_back_search;
|
|
|
|
extern BI_op_compare monitor_back_compare;
|
|
|
|
extern BI_op_modify monitor_back_modify;
|
|
|
|
extern BI_op_bind monitor_back_bind;
|
|
|
|
extern BI_operational monitor_back_operational;
|
|
|
|
|
2001-07-15 01:34:24 +08:00
|
|
|
LDAP_END_DECL
|
2001-12-27 23:16:12 +08:00
|
|
|
|
2003-04-13 12:51:12 +08:00
|
|
|
#endif /* _PROTO_BACK_MONITOR */
|
2003-04-12 07:08:16 +08:00
|
|
|
|