| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- /** BEGIN COPYRIGHT BLOCK
- * 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 the Free Software
- * Foundation; version 2 of the License.
- *
- * 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 along with
- * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place, Suite 330, Boston, MA 02111-1307 USA.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- #include <stdio.h>
- #include <string.h>
- #include "portable.h"
- #include "nspr.h"
- #include "slapi-plugin.h"
- #include "slapi-private.h"
- #include "cos_cache.h"
- #include "vattr_spi.h"
- /* get file mode flags for unix */
- #ifndef _WIN32
- #include <sys/stat.h>
- #endif
- /*** secret slapd stuff ***/
- /*
- these are required here because they are not available
- in any public header. They must exactly match their
- counterparts in the server or they will fail to work
- correctly.
- */
- /*** from proto-slap.h ***/
- int slapd_log_error_proc( char *subsystem, char *fmt, ... );
- /*** from ldaplog.h ***/
- /* edited ldaplog.h for LDAPDebug()*/
- #ifndef _LDAPLOG_H
- #define _LDAPLOG_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define LDAP_DEBUG_TRACE 0x00001 /* 1 */
- #define LDAP_DEBUG_ANY 0x04000 /* 16384 */
- #define LDAP_DEBUG_PLUGIN 0x10000 /* 65536 */
- /* debugging stuff */
- # ifdef _WIN32
- extern int *module_ldap_debug;
- # define LDAPDebug( level, fmt, arg1, arg2, arg3 ) \
- { \
- if ( *module_ldap_debug & level ) { \
- slapd_log_error_proc( NULL, fmt, arg1, arg2, arg3 ); \
- } \
- }
- # else /* _WIN32 */
- extern int slapd_ldap_debug;
- # define LDAPDebug( level, fmt, arg1, arg2, arg3 ) \
- { \
- if ( slapd_ldap_debug & level ) { \
- slapd_log_error_proc( NULL, fmt, arg1, arg2, arg3 ); \
- } \
- }
- # endif /* Win32 */
- #ifdef __cplusplus
- }
- #endif
- #endif /* _LDAP_H */
- /*** end secrets ***/
- #define COS_PLUGIN_SUBSYSTEM "cos-plugin" /* used for logging */
- /* subrelease in the following version info is for odd-ball cos releases
- * which do not fit into a general release, this can be used for beta releases
- * and other (this version stuff is really to help outside applications which
- * may wish to update cos decide whether the cos version they want to update to
- * is a higher release than the installed plugin)
- *
- * note: release origin is 00 for directory server
- * sub-release should be:
- * 50 for initial RTM products
- * from 0 increasing for alpha/beta releases
- * from 51 increasing for patch releases
- */
- #define COS_VERSION 0x00050050 /* version format: 0x release origin 00 major 05 minor 00 sub-release 00 */
- /* other function prototypes */
- int cos_init( Slapi_PBlock *pb );
- int cos_compute(computed_attr_context *c,char* type,Slapi_Entry *e,slapi_compute_output_t outputfn);
- int cos_start( Slapi_PBlock *pb );
- int cos_close( Slapi_PBlock *pb );
- int cos_post_op( Slapi_PBlock *pb );
- static Slapi_PluginDesc pdesc = { "cos", VENDOR, DS_PACKAGE_VERSION,
- "class of service plugin" };
- static void * cos_plugin_identity = NULL;
- #ifdef _WIN32
- int *module_ldap_debug = 0;
- void plugin_init_debug_level(int *level_ptr)
- {
- module_ldap_debug = level_ptr;
- }
- #endif
- /*
- ** Plugin identity mgmt
- */
- void cos_set_plugin_identity(void * identity)
- {
- cos_plugin_identity=identity;
- }
- void * cos_get_plugin_identity()
- {
- return cos_plugin_identity;
- }
- int cos_version()
- {
- return COS_VERSION;
- }
- int
- cos_postop_init ( Slapi_PBlock *pb )
- {
- int rc = 0;
- if ( slapi_pblock_set( pb, SLAPI_PLUGIN_VERSION,
- SLAPI_PLUGIN_VERSION_01 ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_POST_MODIFY_FN,
- (void *)cos_post_op ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_POST_MODRDN_FN,
- (void *)cos_post_op ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_POST_ADD_FN,
- (void *) cos_post_op ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_POST_DELETE_FN,
- (void *) cos_post_op ) != 0 )
- {
- slapi_log_error( SLAPI_LOG_FATAL, COS_PLUGIN_SUBSYSTEM,
- "cos_postop_init: failed to register plugin\n" );
- rc = -1;
- }
- return rc;
- }
- int
- cos_internalpostop_init ( Slapi_PBlock *pb )
- {
- int rc = 0;
- if ( slapi_pblock_set( pb, SLAPI_PLUGIN_VERSION,
- SLAPI_PLUGIN_VERSION_01 ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_INTERNAL_POST_MODIFY_FN,
- (void *)cos_post_op ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_INTERNAL_POST_MODRDN_FN,
- (void *)cos_post_op ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_INTERNAL_POST_ADD_FN,
- (void *) cos_post_op ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_INTERNAL_POST_DELETE_FN,
- (void *) cos_post_op ) != 0 )
- {
- slapi_log_error( SLAPI_LOG_FATAL, COS_PLUGIN_SUBSYSTEM,
- "cos_internalpostop_init: failed to register plugin\n" );
- rc = -1;
- }
- return rc;
- }
- /*
- cos_init
- --------
- adds our callbacks to the list
- */
- int cos_init( Slapi_PBlock *pb )
- {
- int ret = 0;
- void * plugin_identity=NULL;
- LDAPDebug( LDAP_DEBUG_TRACE, "--> cos_init\n",0,0,0);
- /*
- ** Store the plugin identity for later use.
- ** Used for internal operations
- */
-
- slapi_pblock_get (pb, SLAPI_PLUGIN_IDENTITY, &plugin_identity);
- PR_ASSERT (plugin_identity);
- cos_set_plugin_identity(plugin_identity);
-
- if ( slapi_pblock_set( pb, SLAPI_PLUGIN_VERSION,
- SLAPI_PLUGIN_VERSION_01 ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_START_FN,
- (void *) cos_start ) != 0 ||
- slapi_pblock_set(pb, SLAPI_PLUGIN_CLOSE_FN,
- (void *) cos_close ) != 0 ||
- slapi_pblock_set( pb, SLAPI_PLUGIN_DESCRIPTION,
- (void *)&pdesc ) != 0 )
- {
- slapi_log_error( SLAPI_LOG_FATAL, COS_PLUGIN_SUBSYSTEM,
- "cos_init: failed to register plugin\n" );
- ret = -1;
- goto bailout;
- }
- ret = slapi_register_plugin("postoperation", 1 /* Enabled */,
- "cos_postop_init", cos_postop_init,
- "Class of Service postoperation plugin", NULL,
- plugin_identity);
- if ( ret < 0 ) {
- goto bailout;
- }
- ret = slapi_register_plugin("internalpostoperation", 1 /* Enabled */,
- "cos_internalpostop_init", cos_internalpostop_init,
- "Class of Service internalpostoperation plugin", NULL,
- plugin_identity);
- bailout:
- LDAPDebug( LDAP_DEBUG_TRACE, "<-- cos_init\n",0,0,0);
- return ret;
- }
- /*
- cos_start
- ---------
- This function registers the computed attribute evaluator
- and inits the cos cache.
- It is called after cos_init.
- */
- int cos_start( Slapi_PBlock *pb )
- {
- int ret = 0;
- LDAPDebug( LDAP_DEBUG_TRACE, "--> cos_start\n",0,0,0);
- if( !cos_cache_init() )
- {
- LDAPDebug( LDAP_DEBUG_PLUGIN, "cos: ready for service\n",0,0,0);
- }
- else
- {
- /* problems we are hosed */
- cos_cache_stop();
- LDAPDebug( LDAP_DEBUG_ANY, "cos_start: failed to initialise\n",0,0,0);
- ret = -1;
- }
- LDAPDebug( LDAP_DEBUG_TRACE, "<-- cos_start\n",0,0,0);
- return ret;
- }
- /*
- cos_close
- ---------
- closes down the cache
- */
- int cos_close( Slapi_PBlock *pb )
- {
- LDAPDebug( LDAP_DEBUG_TRACE, "--> cos_close\n",0,0,0);
- cos_cache_stop();
- LDAPDebug( LDAP_DEBUG_TRACE, "<-- cos_close\n",0,0,0);
- return 0;
- }
- /*
- cos_compute
- -----------
- called when evaluating named attributes in a search
- and attributes remain unfound in the entry,
- this function checks the attribute for a match with
- those in the class of service definitions, and if a
- match is found, adds the attribute and value to the
- output list
- returns
- 0 on success
- 1 on outright failure
- -1 when doesn't know about attribute
- */
- int cos_compute(computed_attr_context *c,char* type,Slapi_Entry *e,slapi_compute_output_t outputfn)
- {
- int ret = -1;
- return ret;
- }
- /*
- cos_post_op
- -----------
- Catch all for all post operations that change entries
- in some way - this simply notifies the cache of a
- change - the cache decides if action is necessary
- */
- int cos_post_op( Slapi_PBlock *pb )
- {
- LDAPDebug( LDAP_DEBUG_TRACE, "--> cos_post_op\n",0,0,0);
- cos_cache_change_notify(pb);
- LDAPDebug( LDAP_DEBUG_TRACE, "<-- cos_post_op\n",0,0,0);
- return 0; /* always succeed */
- }
|