Performs an LDAP modify operation based on a parameter block to modify a directory entry.
#include "slapi-plugin.h" int slapi_modify_internal_pb(Slapi_PBlock *pb);
This function takes the following parameter:
A parameter block that has been initialized using slapi_modify_internal_set_pb().
This function returns -1 if the parameter passed is a NULL pointer. Otherwise, it returns 0.
After your code calls this function, the server sets SLAPI_PLUGIN_INTOP_RESULT in the parameter block to the appropriate LDAP result code. You can therefore check SLAPI_PLUGIN_INTOP_RESULT in the parameter block to determine whether an error has occurred.
This function performs an internal modify operation based on a parameter block. The parameter block should be initialized by calling slapi_modify_internal_set_pb() .
None of the parameters that are passed to slapi_modify_internal_set_pb() are altered or consumed by this function.
Prepares a parameter block for an internal modify operation.
#include "slapi-plugin.h" int slapi_modify_internal_set_pb(Slapi_PBlock *pb, const char *dn, LDAPMod **mods, LDAPControl **controls, const char *uniqueid, Slapi_ComponentId *plugin_identity, int operation_flags);
This function takes the following parameters:
Parameter block for the internal modify operation
Distinguished Name of the entry to modify
Array of modifications to apply
Array of controls to request for the modify operation
Unique identifier for the entry if using this rather than DN
Plug-in identifier obtained from SLAPI_PLUGIN_IDENTITY during plug-in initialization
NULL or SLAPI_OP_FLAG_NEVER_CHAIN
This function returns 0 if successful. Otherwise, it returns an LDAP error code.
This function prepares a parameter block for use with slapi_modify_internal_pb().
Allocate the parameter block using slapi_pblock_new() before calling this function.
Directory Server does not free the parameters you passed to this function.
Free the parameter block after calling slapi_modify_internal_pb() .
Performs an LDAP modify RDN operation based on a parameter block to rename a directory entry.
#include "slapi-plugin.h" int slapi_modrdn_internal_pb(Slapi_PBlock *pb);
This function takes the following parameter:
A parameter block that has been initialized using slapi_rename_internal_set_pb().
This function returns -1 if the parameter passed is a NULL pointer. Otherwise, it returns 0.
After your code calls this function, the server sets SLAPI_PLUGIN_INTOP_RESULT in the parameter block to the appropriate LDAP result code. You can therefore check SLAPI_PLUGIN_INTOP_RESULT in the parameter block to determine whether an error has occurred.
This function performs an internal modify RDN operation based on a parameter block. The parameter block should be initialized by calling slapi_rename_internal_set_pb().
None of the parameters that are passed to slapi_rename_internal_set_pb() are altered or consumed by this function.
slapi_rename_internal_set_pb()
Creates a Slapi_Entry from an array of LDAPMod.
#include "slapi-plugin.h" int slapi_mods2entry(Slapi_Entry **e, const char *dn, LDAPMod **attrs);
This function takes the following parameters:
Address of a pointer that will be set on return to the created entry.
The LDAP DN of the entry.
An array of LDAPMod of type LDAP_MOD_ADD representing the entry attributes.
This function returns LDAP_SUCCESS if successful, or an LDAP return code if not successful.
This function creates a Slapi_Entry from a copy of an array of LDAPMod of type LDAP_MODD_ADD .
Appends a new mod with a single attribute value to Slapi_Mods structure.
#include "slapi-plugin.h" void slapi_mods_add( Slapi_Mods *smods, int modtype, const char *type, unsigned long len, const char *val);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
One of LDAP_MOD_ADD, LDAP_MOD_DELETE, LDAP_MOD_REPLACE.
The LDAP attribute type.
The length in bytes of the attribute value.
The attribute value.
This function appends a new mod with a single attribute value to a Slapi_Mods. The mod is constructed from copies of the values of modtype, type, len, and val.
This function must not be used on Slapi_Mods initialized with slapi_mods_init_byref().
Appends an LDAPMod to a Slapi_Mods structure.
#include "slapi-plugin.h" void slapi_mods_add_ldapmod(Slapi_Mods *smods, LDAPMod *mod);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
Pointer to a the LDAPMod to be appended.
Appends an LDAPMod to a Slapi_Mods.
Responsibility for the LDAPMod is transferred to the Slapi_Mods.
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
Appends a new mod to a Slapi_Mods structure, with attribute values provided as an array of Slapi_Value.
#include "slapi-plugin.h" void slapi_mods_add_mod_values( Slapi_Mods *smods, int modtype, const char *type, Slapi_Value **va );
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
One of LDAP_MOD_ADD, LDAP_MOD_DELETE, LDAP_MOD_REPLACE.
The LDAP attribute type.
A NULL terminated array of Slapi_Value representing the attribute values.
This function appends a new mod to a Slapi_Mods. The mod is constructed from copies of the values of modtype, type and va. Use this function when you have the attribute values to hand as an array of Slapi_Value.
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
See Also
Appends a new mod to a Slapi_Mods structure, with attribute values provided as an array of berval.
#include "slapi-plugin.h" void slapi_mods_add_modbvps( Slapi_Mods *smods, int modtype, const char *type, struct berval **bvps );
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
One of LDAP_MOD_ADD, LDAP_MOD_DELETE, LDAP_MOD_REPLACE.
The LDAP attribute type.
A NULL terminated array of berval representing the attribute values.
This function appends a new mod to Slapi_Mods. The mod is constructed from copies of the values of modtype, type and bvps. Use this function when you have the attribute values to hand as an array of berval
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
Appends a Slapi_Mod to a Slapi_Mods structure.
#include "slapi-plugin.h" void slapi_mods_add_smod(Slapi_Mods *smods, Slapi_Mod *smod);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
Pointer to a the Slapi_Mod to be appended.
Appends a Slapi_Mod to a Slapi_Mods.
Responsibility for the Slapi_Mod is transferred to the Slapi_Mods.
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
Appends a new mod to Slapi_Mods structure with a single attribute value provided as a string.
#include "slapi-plugin.h" void slapi_mods_add_string( Slapi_Mods *smods, int modtype, const char *type, const char *val);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
One of LDAP_MOD_ADD, LDAP_MOD_DELETE, LDAP_MOD_REPLACE.
The LDAP attribute type.
The attribute value represented as a NULL terminated string.
This function appends a new mod with a single string attribute value to a Slapi_Mods. The mod is constructed from copies of the values of modtype, type and val.
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
Frees internals of a Slapi_Mods structure.
#include "slapi-plugin.h" void slapi_mods_done(Slapi_Mods *smods);
This function takes the following parameter:
Pointer to a Slapi_Mods structure.
This function frees the internals of a Slapi_Mods, leaving it in the uninitialized state. Use this function on a stack-allocated Slapi_Mods when you are finished with it, or when you wish to reuse it.
Dumps the contents of a Slapi_Mods structure to the server log.
#include "slapi-plugin.h" void slapi_mods_dump(const Slapi_Mods *smods, const char *text);
This function takes the following parameters:
Pointer to a Slapi_Mods
Descriptive text that will be included in the log, preceding the Slapi_Mods content.
This function uses the LDAP_DEBUG_ANY log level to dump the contents of a Slapi_Mods to $INSTANCE_PATH/logs/errors for debugging.
Frees a Slapi_Mods structure.
#include "slapi-plugin.h" void slapi_mods_free(Slapi_Mods **smods);
This function takes the following parameter:
Pointer to an allocated Slapi_Mods.
This function frees a Slapi_Mods that was allocated by slapi_mods_new().
Initializes a Slapi_Mods iterator and returns the first LDAPMod.
#include "slapi-plugin.h" LDAPMod *slapi_mods_get_first_mod(Slapi_Mods *smods);
This function takes the following parameter:
Pointer to an initialized Slapi_Mods.
This function returns a pointer to the first LDAPMod in the Slapi_Mods, or NULL if there are no mods.
Initializes a Slapi_Mods iterator and returns the first mod wrapped in a Slapi_Mods structure.
#include "slapi-plugin.h" Slapi_Mod *slapi_mods_get_first_smod(Slapi_Mods *smods, Slapi_Mod *smod);
This function takes the following parameters:
A pointer to an initialized Slapi_Mods.
Pointer to a Slapi_Mod that used to hold the mod.
This function returns a pointer to the Slapi_Mod, wrapping the first mod, or NULL if no mod exists.
Use this function in conjunction with slapi_mods_get_next_smod() to iterate through the mods in a Slapi_Mods using a Slapi_Mods wrapper.
Only one thread may be iterating through a particular Slapi_Mods at any given time.
Gets a reference to the array of LDAPMod in a Slapi_Mods structure.
#include "slapi-plugin.h" LDAPMod **slapi_mods_get_ldapmods_byref(Slapi_Mods *smods);
This function takes the following parameter:
Pointer to an initialized Slapi_Mods.
This function returns a NULL terminated array of LDAPMod owned by the Slapi_Mods.
Use this function to get direct access to the array of LDAPMod contained in a Slapi_Mods.
Responsibility for the array remains with the Slapi_Mods .
slapi_mods_get_ldapmods_passout()
Retrieves the array of LDAPMod contained in a Slapi_Mods structure.
#include "slapi-plugin.h" LDAPMod **slapi_mods_get_ldapmods_passout(Slapi_Mods *smods);
This function takes the following parameter:
Pointer to an initialized Slapi_Mods.
A NULL terminated array LDAPMod owned by the caller.
Gets the array of LDAPMod out of a Slapi_Mods. Responsibility for the array transfers to the caller. The Slapi_Mods is left in the uninitialized state.
slapi_mods_get_ldapmods_byref()
Increments the Slapi_Mods iterator and returns the next LDAPMod.
#include "slapi-plugin.h" LDAPMod *slapi_mods_get_next_mod(Slapi_Mods *smods);
This function takes the following parameter:
Pointer to an initialized Slapi_Mods.
This function returns a pointer to the next LDAPMod , or NULL if there are no more.
Use this function in conjunction with slapi_mods_get_first_mod() to iterate through the mods in a Slapi_Mods. This will return an LDAPMod each time until the end.
Only one thread may be iterating through a particular Slapi_Mods at any given time.
Increments the Slapi_Mods iterator and returns the next mod wrapped in a Slapi_Mods.
#include "slapi-plugin.h" Slapi_Mod *slapi_mods_get_next_smod(Slapi_Mods *smods, Slapi_Mod *smod);
This function takes the following parameters:
A pointer to a an initialized Slapi_Mods.
Pointer to a Slapi_Mod that used to hold the mod.
This function returns a pointer to the Slapi_Mod, wrapping the next mod, or NULL if there are no more mods.
Use this function in conjunction with slapi_mods_get_first_smod() to iterate through the mods in a Slapi_Mods using a Slapi_Mods wrapper.
Only one thread may be iterating through a particular Slapi_Mods at any given time.
Gets the number of mods in a Slapi_Mods structure.
#include "slapi-plugin.h" int slapi_mods_get_num_mods(const Slapi_Mods *smods);
This function takes the following parameter:
Pointer to an initialized Slapi_Mods.
The number of mods in the Slapi_Mods .
Initializes a Slapi_Mods.
#include "slapi-plugin.h" void slapi_mods_init(Slapi_Mods *smods, int initCount);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
Number of modifications to allocate initially.
Initializes a Slapi_Mods so that it is empty, but initially has room for the given number of mods.
If you are unsure of how much room you will need, you may use an initCount of 0. The Slapi_Mods expands as necessary.
Initializes a Slapi_Mods that is a wrapper for an existing array of LDAPMod.
#include "slapi-plugin.h" void slapi_mods_init_byref(Slapi_Mods *smods, LDAPMod **mods);
This function takes the following parameters:
Pointer to an uninitialized Slapi_Mods.
A NULL terminated array of LDAPMod.
Initializes a Slapi_Mods containing a reference to an array of LDAPMod. This function provides the convenience of using Slapi_Mods functions to access LDAPMod array items.
The array is not destroyed when the Slapi_Mods is destroyed. Notice that you cannot insert new mods in a Slapi_Mods that has been initialized by reference.
Initializes a Slapi_Mods structure from an array of LDAPMod.
#include "slapi-plugin.h" void slapi_mods_init_passin(Slapi_Mods *smods, LDAPMod **mods);
This function takes the following parameters:
Pointer to an uninitialized Slapi_Mods.
A NULL terminated array of LDAPMod.
This function initializes a Slapi_Mods by passing in an array of LDAPMod. This function converts an array of LDAPMod to a Slapi_Mods .
The responsibility for the array and its elements is transferred to the Slapi_Mods. The array and its elements are destroyed when the Slapi_Mods is destroyed.
Inserts an LDAPMod into a Slapi_Mods structure after the current iterator position.
#include "slapi-plugin.h" void slapi_mods_insert_after(Slapi_Mods *smods, LDAPMod *mod);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods with a valid iterator position.
Pointer to the LDAPMod to be inserted.
This function inserts an LDAPMod in a Slapi_Mods immediately after the current position of the Slapi_Mods iterator. The iterator position is unchanged.
Responsibility for the LDAPMod is transferred to the Slapi_Mods.
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
Inserts an LDAPMod anywhere in a Slapi_Mods.
#include "slapi-plugin.h" void slapi_mods_insert_at(Slapi_Mods *smods, LDAPMod *mod, int pos);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
Pointer to the LDAPMod to be inserted.
Position at which to insert the new mod. Minimum value is 0. Maximum value is the current number of mods .
This function inserts an LDAPMod at a given position in Slapi_Mods. Position 0 (zero) refers to the first mod. A position equal to the current number of mods causes an append. mods at and above the specified position are moved up by one, and the given position refers to the newly inserted mod.
Responsibility for the LDAPMod is transferred to the Slapi_Mods.
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
Inserts an LDAPMod into a Slapi_Mods structure before the current iterator position.
#include "slapi-plugin.h" void slapi_mods_insert_before(Slapi_Mods *smods, LDAPMod *mod);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods with a valid iterator position.
Pointer to the LDAPMod to be inserted.
Inserts an LDAPMod into a Slapi_Mods immediately before the current position of the Slapi_Mods iterator. The iterator position is unchanged.
The responsibility for the LDAPMod is transferred to the Slapi_Mods.
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
Inserts a Slapi_Mod anywhere in a Slapi_Mods.
#include "slapi-plugin.h" void slapi_mods_insert_smod_at(Slapi_Mods *smods, Slapi_Mod *smod, int pos);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
Pointer to the Slapi_Mod to be inserted.
Position at which to insert the Slapi_Mod . Minimum value is 0. Maximum value is the current number of mods.
This function inserts a Slapi_Mod at a given position in Slapi_Mods. Position 0 (zero) refers to the first mod. A position equal to the current number of mods causes an append. mods at and above the specified position are moved up by one, and the given position refers to the newly inserted mod.
Responsibility for the Slapi_Mod is transferred to the Slapi_Mods.
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
Inserts a Slapi_Mod into a Slapi_Mods structure before the current iterator position.
#include "slapi-plugin.h" void slapi_mods_insert_smod_before(Slapi_Mods *smods, Slapi_Mod *smod);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods with a valid iterator position.
Pointer to the Slapi_Mod to be inserted.
Inserts a Slapi_Mod into a Slapi_Mods immediately before the current position of the Slapi_Mods iterator. The iterator position is unchanged.
The responsibility for the Slapi_Mod is transferred to the Slapi_Mods.
This function must not be used on a Slapi_Mods initialized with slapi_mods_init_byref().
Decrements the Slapi_Mods current iterator position.
#include "slapi-plugin.h" void slapi_mods_iterator_backone(Slapi_Mods *smods);
This function takes the following parameter:
Pointer to an initialized Slapi_Mods.
This function moves the iterator back one position.
Allocates a new uninitialized Slapi_Mods structure.
#include "slapi-plugin.h" Slapi_Mods* slapi_mods_new( void );
This function takes no parameters.
A pointer to an allocated uninitialized Slapi_Mods.
This function allocates a new initialized Slapi_Mods .
Use this function when you need a Slapi_Mods allocated from the heap, rather than from the stack.
Removes the mod at the current Slapi_Mods iterator position.
#include "slapi-plugin.h" void slapi_mods_remove(Slapi_Mods *smods);
This function takes the following parameter:
Pointer to an initialized Slapi_Mods.
This function removes the mod at the current iterator position.
Removes the mod at the specified Slapi_Mods iterator position.
#include "slapi-plugin.h" void slapi_mods_remove_at(Slapi_Mods *smods, int pos);
This function takes the following parameters:
Pointer to an initialized Slapi_Mods.
Position of the mod to remove.
This function removes the mod at the pos iterator position, obtained by counting as you iterate through the modifications in a Slapi_Mods.
Call a matching rule filter index function.
#include "slapi-plugin.h" int slapi_mr_filter_index(Slapi_Filter* f, Slapi_PBlock* pb);
This function takes the following parameters:
Filter containing the matching rule OID
Parameter block to pass to the filter index function
This function enables plug-ins to call matching rule filter index functions.
This function returns 0 if successful. It returns LDAP_UNAVAILABLE_CRITICAL_EXTENSION if no filter index function is available for the rule in the filter. It returns -1 if something goes horribly wrong setting the parameter block arguments.
Set a pointer in the parameter block to the indexer factory function for a matching rule.
#include "slapi-plugin.h" int slapi_mr_indexer_create(Slapi_PBlock * pb);
This function takes the following parameters:
Parameter block containing the matching rule object identifier affected to SLAPI_PLUGIN_MR_OID
This function enables plug-ins to call matching rule indexer factory functions. If successful, the function sets SLAPI_PLUGIN_MR_INDEXER_CREATE_FN in pb to point to the indexer factory function.
This function returns 0 if successful. It returns LDAP_UNAVAILABLE_CRITICAL_EXTENSION if no indexer factory function is available for the matching rule. It returns -1 if something goes horribly wrong getting or setting the parameter block arguments.
Allocate a condition variable.
#include "slapi-plugin.h" Slapi_CondVar *slapi_new_condvar( Slapi_Mutex *mutex );
This function takes the following parameter:
Mutex used for the lock
This function enables thread synchronization using a wait/notify mechanism.
This function returns a pointer to the new condition variable if successful. Otherwise, it returns NULL.
Call this function to create the condition variable and slapi_destroy_condvar() to free the condition variable.
Allocate a mutex.
#include "slapi-plugin.h" Slapi_Mutex *slapi_new_mutex( void );
This function returns a pointer to the new mutex if successful. Otherwise, it returns NULL.
This function enables thread synchronization. Once a thread has locked the mutex using slapi_lock_mutex(), other threads attempting to acquire the lock are blocked until the thread holding the mutex calls slapi_UTF-8STRTOLOWER().
Call slapi_destroy_mutex() to free the mutex.
Notify a change in a condition variable.
#include "slapi-plugin.h" int slapi_notify_condvar( Slapi_CondVar *cvar, int notify_all );
This function takes the following parameter:
Condition variable changed
NULL means notify only the next thread waiting for notification. Otherwise, all threads are notified.
This function enables thread synchronization using a wait/notify mechanism.
This function returns 1 if successful. Otherwise, it returns NULL.
Call slapi_wait_condvar() to wait on a change to the condition variable.
Determines whether or not the client has abandoned the current operation (the operation that passes in the parameter block).
#include "slapi-plugin.h" int slapi_op_abandoned( Slapi_PBlock *pb );
This function takes the following parameter:
Parameter block passed in from the current operation.
This function allows you to verify if the operation associated to the PBlock in the parameter has been abandoned. This function is useful to periodically check the operations status from long-running plug-ins.
This function returns one of the following values:
1 if the operation has been abandoned.
0 if the operation has not been abandoned.
Gets the type of a Slapi_Operation.
#include "slapi-plugin.h" unsigned long slapi_op_get_type(Slapi_Operation * op);
This function takes the following parameter:
The operation of which you wish to get the type.
This function returns the type of an operation. The Slapi_Operation structure can be extracted from a pblock structure using slapi_pblock_get() with the Slapi_Operation parameter. For example:
slapi_pblock_get (pb, SLAPI_OPERATION, &op);
This function will return one of the following operation types:
SLAPI_OPERATION_BIND
SLAPI_OPERATION_UNBIND
SLAPI_OPERATION_SEARCH
SLAPI_OPERATION_MODIFY
SLAPI_OPERATION_ADD
SLAPI_OPERATION_DELETE
SLAPI_OPERATION_MODDN
SLAPI_OPERATION_MODRDN
SLAPI_OPERATION_COMPARE
SLAPI_OPERATION_ABANDON
SLAPI_OPERATION_EXTENDED
Frees the specified parameter block from memory.
#include "slapi-plugin.h" void slapi_pblock_destroy( Slapi_PBlock *pb );
This function takes the following parameters:
Parameter block that you wish to free.
The parameter block that you wish to free must have been created using slapi_pblock_new(). Use of this function with parameter blocks allocated on the stack, with Slapi_PBlock pb;, or using another memory allocator, is not supported and may lead to memory errors and memory leaks. For example:
Slapi_PBlock *pb = malloc(sizeof(Slapi_PBlock));
After calling this function, you should set the parameter block pointer to NULL to avoid reusing freed memory in your function context, as in the following:
slapi_pblock_destroy(pb); pb = NULL;
If you reuse the pointer in this way, it makes it easier to identify a Segmentation Fault, rather than using some difficult method to detect memory leaks or other abnormal behavior.
It is safe to call this function with a NULL pointer. For example:
Slapi_PBlock *pb = NULL; slapi_pblock_destroy(pb);
This saves the trouble of checking for NULL before calling slapi_pblock_destroy().
Gets the value of a name-value pair from a parameter block.
#include "slapi-plugin.h" int slapi_pblock_get( Slapi_PBlock *pb, int arg, void *value );
This function takes the following parameters:
Parameter block.
ID of the name-value pair that you want to get. For a list of IDs that you can specify, see Chapter 15, Data Type and Structure Reference
Pointer to the value retrieved from the parameter block.
This function returns one of the following values:
0 if successful.
-1 if an error occurs (for example, if an invalid ID is specified).
The void *value argument should always be a pointer to the type of value you are retrieving:
int connid = 0; ... retval = slapi_pblock_get(pb, SLAPI_CONN_ID, &connid);
SLAPI_CONN_ID is an integer value, so you will pass in a pointer to/address of an integer to get the value. Similarly, for a char * value (a string), pass in a pointer to/address of the value. For example:
char *binddn = NULL; ... retval = slapi_pblock_get(pb, SLAPI_CONN_DN, &binddn);
With certain compilers on some platforms, you may have to cast the value to (void *).
We recommend that you set the value to 0 or NULL before calling slapi_pblock_get() to avoid reading from uninitialized memory, in case the call to slapi_pblock_get() fails.
In most instances, the caller should not free the returned value. The value will usually be freed internally or through the call to slapi_pblock_destroy() . The exception is if the value is explicitly set by the caller through slapi_pblock_set(). In this case, the caller is responsible for memory management. If the value is freed, it is strongly recommended that the free is followed by a call to slapi_pblock_set() with a value of NULL. For example:
char *someparam = NULL; ... someparam = slapi_ch_strdup(somestring); slapi_pblock_set(pb, SOME_PARAM, someparam); someparam = NULL; /* avoid dangling reference */ ... slapi_pblock_get(pb, SOME_PARAM, &someparam); slapi_pblock_set(pb, SOME_PARAM, NULL); /* Make sure no one else references this. */ slapi_ch_free_string(&someparam); ...
Some internal functions may change the value passed in, so it is recommended to use slapi_pblock_get() to retrieve the value again, rather than relying on a potential dangling pointer. This is shown in the previous example, which sets someparam to NULL after setting it in the parameter block.
Creates a new parameter block.
#include "slapi-plugin.h" Slapi_PBlock *slapi_pblock_new();
Pointer to the new parameter block.
The parameter block pointer allocated with slapi_pblock_new() must always be freed by slapi_pblock_destroy(). The use of other memory liberators such as free() is not supported and may lead to crashes or memory leaks.
Sets the value of a name-value pair in a parameter block.
#include "slapi-plugin.h" int slapi_pblock_set( Slapi_PBlock *pb, int arg, void *value );
This function takes the following parameters:
Parameter block.
ID of the name-value pair that you want to set. For a list of IDs that you can specify, see Chapter 15, Data Type and Structure Reference
Pointer to the value that you want to set in the parameter block.
This function returns 0 if successful, or -1 if an error occurs (for example, if an invalid ID is specified).
The value to be passed in must always be a pointer, even for integer arguments. For example, if you wanted to do a search with the ManageDSAIT control:
int managedsait = 1; ... slapi_pblock_set(pb, SLAPI_MANAGEDSAIT, &managedsait);
A call similar to the following example will cause a crash:
slapi_pblock_set(pb, SLAPI_MANAGEDSAIT, 1);
However, for values which are already pointers such as char * strings , char **arrays,Slapi_Backend *, and so forth, you can pass in the value directly. For example:
char *target_dn = slapi_ch_strdup(some_dn); slapi_pblock_set(pb, SLAPI_TARGET_DN, target_dn);
or
slapi_pblock_set(pb, SLAPI_TARGET_DN, NULL);
With some compilers, you will have to cast the value argument to (void *).
If the caller allocates the memory passed in, the caller is responsible for freeing that memory. Also, it is recommended to use slapi_pblock_get() to retrieve the value to free rather than relying on a potentially dangling pointer. See the slapi_pblock_get() example for more details.
When setting parameters to register a plug-in, the plug-in type must always be set first, since many of the plug-in parameters depend on the type. For example, set the SLAPI_PLUGIN_TYPE to extended operation before setting the list of extended operation OIDs for the plug-in.
Determines whether a specified password matches one of the hashed values of an attribute. For example, you can call this function to determine if a given password matches a value in the userpassword attribute.
#include "slapi-plugin.h" int slapi_pw_find_sv( Slapi_Value **vals, const Slapi_Value *v );
This function takes the following parameters:
Pointer to the array of Slapi_Value structure pointers to hold the values of an attribute that stores passwords such as userpassword.
Pointer to the Slapi_Value structure containing the password that you wish to check.
For example, you can get this value from the SLAPI_BIND_CREDENTIALS parameter in the parameter block and create the Slapi_Value using slapi_value_init_berval().
This function returns 0 if the password specified by v was found in vals, or a non-zero value if the password v was not found in vals.
You must allocate and release an array of Slapi_Value structures for vals sized to hold the exact number of password values for the userpassword attribute on the entry to check. The resulting array is not NULL terminated. For a simpler memory allocation model, use slapi_pw_find_valueset() instead.
When the server stores the password for an entry in the userpassword attribute, it hashes the password using different schemes.
Use this function to determine if a given password is one of the values of the userpassword attribute. This function determines which password scheme was used to store the password and uses the appropriate comparison function to compare a given value against the hashed values of the userpassword attribute.
Determines whether or not a specified password matches one of the hashed values of an attribute. For example, you can call this function to determine if a given password matches a value in the userpassword attribute.
#include "slapi-plugin.h" int slapi_pw_find_valueset(Slapi_Valueset *valset, const Slapi_Value *v);
This function takes the following parameters:
Pointer to the Slapi_ValueSet structure containing the values of an attribute that stores passwords such as userpassword .
Pointer to the Slapi_Value structure containing the password to check.
For example, you can get this value from the SLAPI_BIND_CREDENTIALS parameter in the parameter block and create the Slapi_Value using slapi_value_init_berval().
This function returns 0 if the password specified by v was found in valset, or a non-zero value if the password v was not found in valset.
When the server stores the password for an entry in the userpassword attribute, it hashes the password using different schemes.
Use this function to determine if a given password is one of the values of the userpassword attribute. This function determines which password scheme was used to store the password and uses the appropriate comparison function to compare a given value against the hashed values of the userpassword attribute.
Adds a new RDN to an existing Slapi_RDN structure.
#include "slapi-plugin.h" int slapi_rdn_add(Slapi_RDN *rdn, const char *type, const char *value);
This function takes the following parameters:
The target Slapi_RDN structure.
The type (cn, o, ou , etc.) of the RDN to be added. This parameter cannot be NULL.
The value of the RDN to be added. This parameter cannot be NULL.
This function always returns 1.
This function adds a new type/value pair to an existing RDN, or sets the type/value pair as the new RDN if rdn is empty. This function resets the FLAG_RDNS flags, which means that the RDN array within the Slapi_RDN structure is no longer current with the new RDN.
slapi_rdn_get_num_components()
Compares two RDNs.
#include "slapi-plugin.h" int slapi_rdn_compare(Slapi_RDN *rdn1, Slapi_RDN *rdn2);
This function takes the following parameters:
The first RDN to compare.
The second RDN to compare.
This function returns 0 if rdn1 and rdn2 have the same RDN components, or -1 if they do not.
This function compares rdn1 and rdn2. For rdn1 and rdn2 to be considered equal RDNs, their components do not necessarily have to be in the same order.
Checks whether a Slapi_RDN structure holds any RDN matching a given type/value pair.
#include "slapi-plugin.h" int slapi_rdn_contains(Slapi_RDN *rdn, const char *type, const char *value,size_t length);
This function takes the following parameters:
The Slapi_RDN structure containing the RDN value(s).
The type (cn, o, ou , etc.) of the RDN searched.
The value of the RDN searched.
Gives the length of value that should be taken into account for the string operation when searching for the RDN.
This function returns 1 if rdn contains an RDN that matches the type, value and length, or 0 if no RDN matches the desired type/value.
This function searches for an RDN inside of the Slapi_RDN structure rdn that matches both type and value as given in the parameters. This function makes a call to slapi_rdn_get_index() and verifies that the returned value is anything but -1.
Checks whether a Slapi_RDN structure contains any RDN matching a given type, and if true, gets the corresponding attribute value.
#include "slapi-plugin.h" int slapi_rdn_contains_attr(Slapi_RDN *rdn, const char *type, char **value);
This function takes the following parameters:
The Slapi_RDN structure containing the RDN value(s).
Type (cn, o, ou, etc.) of the RDN searched.
Repository that will hold the value of the first RDN whose type matches the content of the parameter type. If this parameter is NULL at the return of the function, no RDN with the desired type exists within rdn.
This function returns 1 if rdn contains a RDN that matches the given type, or 0 if there is no match.
This function looks for an RDN inside the Slapi_RDN structure rdn that matches the type given in the parameters. This function makes a call to slapi_rdn_get_index_attr() and verifies that the returned value is anything but -1. If successful, it also returns the corresponding attribute value.
Clears an instance of a Slapi_RDN structure.
#include "slapi-plugin.h" void slapi_rdn_done(Slapi_RDN *rdn);
This function takes the following parameter:
Pointer to the structure to be cleared.
This function clears the contents of a Slapi_RDN structure. It frees both the RDN value and the array of split RDNs. Those pointers are then set to NULL.
Frees a Slapi_RDN structure.
#include "slapi-plugin.h" void slapi_rdn_free(Slapi_RDN **rdn);
This function takes the following parameter:
Pointer to the pointer of the Slapi_RDN structure to be freed.
This function frees both the contents of the Slapi_RDN structure and the structure itself pointed to by the content of rdn.
Gets the type/value pair corresponding to the first RDN stored in a Slapi_RDN structure.
#include "slapi-plugin.h" int slapi_rdn_get_first(Slapi_RDN *rdn, char **type, char **value);
This function takes the following parameters:
The Slapi_RDN structure containing the RDN value(s).
Repository that will hold the type of the first RDN. If this parameter is NULL at the return of the function, it means rdn is empty.
Repository that will hold the type of the first RDN. If this parameter is NULL at the return of the function, it means rdn is empty.
This function returns -1 if rdn is empty, or 1 if the operation is successful.
This function gets the type/value pair corresponding to the first RDN stored in rdn. For example, if the RDN is cn=Joey, the function will place cn in the type return parameter, and Joey in value.
Gets the index of the RDN that follows the RDN with a given type and value.
#include "slapi-plugin.h" int slapi_rdn_get_index(Slapi_RDN *rdn, const char *type, const char *value, size_t length);
This function takes the following parameters:
The Slapi_RDN structure containing the RDN value(s).
Type (cn, o, ou, etc.) of the RDN that is searched.
Value of the RDN searched.
Gives the length of value that should be taken into account for the string comparisons when searching for the RDN. A matching RDN value must not exceed the length specified.
This function returns the index of the RDN that follows the RDN matching the contents of the parameters type and value. If no RDN stored in rdn matches the given type/value pair, -1 is returned.
This function searches for an RDN inside the Slapi_RDN structure rdn that matches both type and value as given in the parameters. If it succeeds, the position of the matching RDN is returned.
Gets the position and the attribute value of the first RDN in a Slapi_RDN structure that matches a given type.
#include "slapi-plugin.h" int slapi_rdn_get_index_attr(Slapi_RDN *rdn, const char *type, char **value);
This function takes the following parameters:
The Slapi_RDN structure containing the RDN value(s).
Type (cn, o, ou, etc.) of the RDN searched.
Repository that will hold the value of the first RDN whose type matches the content of the parameter type. If this parameter is NULL at the return of the function, no RDN exists within rdn.
This function returns -1 if there is no RDN that matches the content type, or the real position of the first RDN within RDN that matches the content of type.
This function searches for an RDN inside of the Slapi_RDN structure rdn that matches the type given in the parameters. If successful, the position of the matching RDN, as well as the corresponding attribute value, is returned.
Gets a certain RDN type/value pair from within the RDNs stored in a Slapi_RDN structure.
#include "slapi-plugin.h" int slapi_rdn_get_next(Slapi_RDN *rdn, int index, char **type, char **value);
This function takes the following parameters:
The Slapi_RDN structure containing the RDN value(s).
Indicates the position of the RDN that precedes the currently desired RDN.
Repository that will hold the type (cn, o, ou, etc.) of the next (index+1) RDN. If this parameter is NULL at the return of the function, the RDN does not exist.
Repository that will hold the value of the next (index+1) RDN. If this parameter is NULL, the RDN does not exist.
This function returns -1 if there is no RDN in the index position, or the real position of the retrieved RDN if the operation was successful.
This function gets the type/value pair corresponding to the RDN stored in the next (index+1) position inside rdn. Notice that the index of an element within an array of values is always one unit below its real position in the array.
Gets the number of RDN type/value pairs present in a Slapi_RDN structure.
#include "slapi-plugin.h" int slapi_rdn_get_num_components(Slapi_RDN *rdn);
This function takes the following parameter:
The target Slapi_RDN structure.
This function returns the number of RDN type/value pairs present in rdn.
Gets the RDN from a Slapi_RDN structure.
#include "slapi-plugin.h" const char *slapi_rdn_get_rdn(const Slapi_RDN *rdn);
This function takes the following parameter:
The Slapi_RDN structure holding the RDN value.
This function returns the RDN value.
Initializes a Slapi_RDN structure with NULL values.
#include "slapi-plugin.h" void slapi_rdn_init(Slapi_RDN *rdn);
This function takes the following parameter:
The Slapi_RDN structure to be initialized.
This function initializes a given Slapi_RDN structure with NULL values (both the RDN value and the array of split RDNs are set to NULL).
Initializes a Slapi_RDN structure with an RDN value taken from a given DN.
#include "slapi-plugin.h" void slapi_rdn_init_dn(Slapi_RDN *rdn,const char *dn);
This function takes the following parameters:
The Slapi_RDN structure to be initialized.
The DN value whose RDN will be used to initialize the new Slapi_RDN structure.
This function initializes a given Slapi_RDN structure with the RDN value taken from the DN passed in the dn parameter.
Initializes a Slapi_RDN structure with an RDN value.
#include "slapi-plugin.h" void slapi_rdn_init_rdn(Slapi_RDN *rdn,const Slapi_RDN *fromrdn);
This function takes the following parameters:
The Slapi_RDN structure to be initialized.
The RDN value to be set in the new Slapi_RDN structure.
This function initializes a given Slapi_RDN structure with the RDN value in fromrdn.
Initializes a Slapi_RDN structure with an RDN value taken from the DN contained in a given Slapi_DN structure.
#include "slapi-plugin.h" void slapi_rdn_init_sdn(Slapi_RDN *rdn,const Slapi_DN *sdn);
This function takes the following parameters:
The Slapi_RDN structure to be initialized.
The Slapi_DN structure containing the DN value whose RDN will be used to initialize the new Slapi_RDN structure.
This function initializes a given Slapi_RDN structure with the RDN value taken from the DN passed within the Slapi_DN structure of the sdn parameter.
Checks whether an RDN value is stored in a Slapi_RDN structure.
#include "slapi-plugin.h" int slapi_rdn_isempty(const Slapi_RDN *rdn);
This function takes the following parameter:
The target Slapi_RDN structure.
This function returns 1 if there is no RDN value present, or 0 if rdn contains a value.
Allocates a new Slapi_RDN structure and initializes the values to NULL.
#include "slapi-plugin.h" Slapi_RDN * slapi_rdn_new();
This function takes no parameters.
This function returns a pointer to the newly allocated, and still empty,Slapi_RDN structure.
This function creates a new Slapi_RDN structure by allocating the necessary memory and initializing both the RDN value and the array of split RDNs to NULL.
Creates a new Slapi_RDN structure and sets an RDN value taken from a given DN.
#include "slapi-plugin.h" Slapi_RDN *slapi_rdn_new_dn(const char *dn);
This function takes the following parameter:
The DN value whose RDN will be used to initialize the new Slapi_RDN structure.
This function returns a pointer to the new Slapi_RDN structure initialized with the TDN taken from the DN value in dn .
This function creates a new Slapi_RDN structure and initializes its RDN with the value taken from the DN passed in the dn parameter.
The memory is allocated by the function itself.
Creates a new Slapi_RDN structure and sets an RDN value.
#include "slapi-plugin.h" Slapi_RDN * slapi_rdn_new_rdn(const Slapi_RDN *fromrdn);
This function takes the following parameters:
The RDN value to be set in the new Slapi_RDN structure.
This function returns a pointer to the new Slapi_RDN structure with an RDN set to the content of fromrdn.
This function creates a new Slapi_RDN structure and initializes its RDN with the value of fromrdn.
The memory is allocated by the function itself.
Creates a new Slapi_RDN structure and sets an RDN value taken from the DN contained in a given Slapi_RDN structure.
#include "slapi-plugin.h" vSlapi_RDN *slapi_rdn_new_sdn(const Slapi_DN *sdn);
This function takes the following parameter:
Slapi_RDN structure containing the DN value whose RDN will be used to initialize the new Slapi_RDN structure.
This function returns a pointer to the new Slapi_RDN structure initialized with the RDN taken from the DN value in dn .
This function creates a new Slapi_RDN structure and initializes its RDN with the value taken from the DN passed within the Slapi_RDN structure of the sdn parameter.
The memory is allocated by the function itself.
Removes an RDN type/value pair from a Slapi_RDN structure.
#include "slapi-plugin.h" int slapi_rdn_remove(Slapi_RDN *rdn, const char *type, const char *value, size_t length);
This function takes the following parameters:
The target Slapi_RDN structure.
Type (cn, o, ou, etc.) of the RDN searched.
The value of the RDN searched.
Gives the length of value that should be taken into account for the string comparisons when searching for the RDN.
This function returns 1 if the RND is removed from rdn, or 0 if no RDN is removed.
This function removes the RDN from rdn that matches the given criteria (type, value and length).
Removes an RDN type/value pair from a Slapi_RDN structure.
#include "slapi-plugin.h" int slapi_rdn_remove_attr(Slapi_RDN *rdn, const char *type);
This function takes the following parameters:
The target Slapi_RDN structure.
Type (cn, o, ou, etc.) of the RDN searched.
This function returns 1 of the RDN is removed from rdn, or 0 if no RDN is removed.
This function removes the first RDN from rdn that matches the given type.
Removes an RDN type/value pair from a Slapi_RDN structure.
#include "slapi-plugin.h" int slapi_rdn_remove_index(Slapi_RDN *rdn, int atindex);
This function takes the following parameters:
The target Slapi_RDN structure.
The index of the RDN type/value pair to remove.
This function returns 1 if the RDN is removed from rdn, or 0 if no RDN is removed because either rdn is empty, or the index goes beyond the number of RDNs present.
This function removes the RDN from rdn with atindex index (placed in the atindex+1 position).
Sets an RDN value in a Slapi_RDN structure.
#include "slapi-plugin.h" void slapi_rdn_set_dn(Slapi_RDN *rdn,const char *dn);
This function takes the following parameters:
The target Slapi_RDN structure.
The DN value whose RDN will be set in rdn.
This function sets an RDN value in a Slapi_RDN structure. The structure is freed from memory and freed of any previous content before setting the new RDN. The new RDN is taken from the DN value present in the dn parameter.
Sets an RDN in a Slapi_RDN structure.
#include "slapi-plugin.h" void slapi_rdn_set_rdn(Slapi_RDN *rdn,const Slapi_RDN *fromrdn);
This function takes the following parameters:
This function sets an RDN value in a Slapi_RDN structure. The structure is freed from memory and freed of any previous content before setting the new RDN.
Sets an RDN value in a Slapi_RDN structure.
#include "slapi-plugin.h" void slapi_rdn_set_sdn(Slapi_RDN *rdn,const Slapi_DN *sdn);
This function takes the following parameters:
This function sets an RDN value in a Slapi_RDN structure. The structure is freed from memory and freed of any previous content before setting the new RDN. The new RDN is taken from the DN value present inside of a Slapi_DN structure.
This function determines whether the value of the RDN complies with attribute syntax rules.
#include "slapi-plugin.h" int slapi_rdn_syntax_check( Slapi_PBlock *pb, const char *rdn );
This function takes the following parameters:
Parameter block.
Value whose compliance is to be checked.
Returns one of the following values:
0 if rdn complies or if syntax checking is turned off.
1 if rdn does not comply with attribute syntax rules.
The pb argument can be NULL. It is used only to get the SLAPI_IS_REPLICATED_OPERATION flag. If that flag is present, no syntax checking is done.
Register an object extension.
#include "slapi-plugin.h" int slapi_register_object_extension( const char *pluginname, const char *objectname, slapi_extension_constructor_fnptr constructor, slapi_extension_destructor_fnptr destructor, int *objecttype, int *extensionhandle);
This function takes the following parameters:
String identifying the plug-in
Name of the object to extend such as SLAPI_EXT_CONNECTION to add private data to a connection or SLAPI_EXT_OPERATION to add private data to an operation
Constructor to allocate memory for the object extension and create the extension
Destructor to free memory used for the object extension
Set by the server and used to retrieve the extension
Set by the server and used to retrieve the extension
This function registers an extension to an object such as a connection or an operation. This mechanism enables a plug-in to store private data with an operation that is passed from a preoperation to a postoperation plug-in for example, something not possible using parameter blocks.
Register object extensions as part of the plug-in initialization function.
This function returns 0 if successful. Otherwise, it returns -1.
slapi_extension_constructor_fnptr
slapi_extension_destructor_fnptr
Register another plug-in.
#include "slapi-plugin.h" int slapi_register_plugin( const char *plugintype, int enabled, const char *initsymbol, slapi_plugin_init_fnptr initfunc, const char *name, char **argv, void *group_identity);
This function takes the following parameters:
String identifying the plug-in type as described under Plug-In Registration
1 to enable the plug-in on registration, 0 otherwise
String representation of the plug-in initialization function initfunc such as "my_init_fcn"
Pointer to the plug-in initialization function
Common Name for the plug-in
Arguments passed to the plug-in
Plug-in group identifier, typically obtained from SLAPI_PLUGIN_IDENTITY for the plug-in calling this function
This function registers another plug-in. Register plug-ins as part of the plug-in initialization function.
This function returns 0 if successful. Otherwise, it returns -1.
Register a callback to determine the scope of a role.
#include "slapi-plugin.h" void slapi_register_role_get_scope( roles_get_scope_fn_type get_scope_fn);
This function takes the following parameters:
Callback to determine the scope of a role
This function registers the callback that evaluates the scope of a role. Register the callback as part of the plug-in initialization function.
Registers the specified control with the server. This function associates the control with an object identification (OID). When the server receives a request that specifies this OID, the server makes use of this information to determine if the control is supported by the server or its plug-ins.
#include "slapi-plugin.h" void slapi_register_supported_control( char const *controloid, unsigned long controlops );
This function takes the following parameters:
OID of the control you want to register.
Operation that the control is applicable to.
The controlops argument can have one or more of the following values:
You can specify a combination of values by bitwise ORing the values together (for example, SLAPI_OPERATION_ADD | SLAPI_OPERATION_DELETE).
Registers the specified Simple Authentication and Security Layer (SASL) mechanism with the server.
#include "slapi-plugin.h" void slapi_register_supported_saslmechanism( char *mechanism );
This function takes the following parameter:
String identifying the SASL mechanism to both the server and to clients requesting the mechanism during a SASL bind
Use this function in the plug-in initialization function to register the name of a SASL mechanism supported by the plug-in. The preoperation function handling the SASL bind can then check the SASL bind mechanism name provided by the client to determine whether to attempt to handle the bind.
The sample $INSTALL_DIR/plugins/slapd/slapi/examples/testsaslbind.c plug-in demonstrates the use of this function.
Prepares a parameter block for an internal modify RDN operation.
#include "slapi-plugin.h" int slapi_rename_internal_set_pb(Slapi_PBlock *pb, const char *olddn, const char *newrdn, const char *newsuperior, int deloldrdn, LDAPControl **controls, const char *uniqueid, Slapi_ComponentId *plugin_identity, int operation_flags);
This function takes the following parameters:
Parameter block for the internal modify RDN operation
Distinguished Name of the entry to rename
New Relative Distinguished name to apply
DN of parent after renaming
1 to delete the old RDN, 0 to retain the old RDN
Array of controls to request for the modify RDN operation
Unique identifier for the entry if using this rather than DN
Plug-in identifier obtained from SLAPI_PLUGIN_IDENTITY during plug-in initialization
NULL or SLAPI_OP_FLAG_NEVER_CHAIN
This function returns 0 if successful. Otherwise, it returns an LDAP error code.
This function prepares a parameter block for use with slapi_modrdn_internal_pb().
Allocate the parameter block using slapi_pblock_new() before calling this function.
Directory Server does not free the parameters you passed to this function.
Free the parameter block after calling slapi_modrdn_internal_pb() .
Checks if the entry pointed to by entry_to_check contains the role indicated by role_dn.
#include "slapi-plugin.h" int slapi_role_check(Slapi_Entry *entry_to_check, Slapi_DN *role_dn,int *present);
This function takes the following parameters:
The entry in which the presence of a role is to be checked.
The DN of the role for which to check.
Pointer to an integer where the result is placed. For results:
non 0 means present
0 means not present
This function returns one of the following values:
0 for success if role_dn is present in entry_to_check and present is set to non-zero. Otherwise it is 0.
non-zero (error condition) if the presence of the role is undetermined.
Determine the scope of a role.
#include "slapi-plugin.h" int slapi_role_get_scope(Slapi_Entry *role_entry, Slapi_DN ***scope_dn, int *nb_scope);
This function takes the following parameters:
Entry defining the role
Set by the callback to the Distinguished Name of the entry at the base of the scope
Set by the callback to a value such as LDAP_SCOPE_BASE, LDAP_SCOPE_ONELEVEL, or LDAP_SCOPE_SUBTREE
This function triggers a callback to evaluate the scope of a role.
Directory Server does not free or copy the parameters passed to this function.
slapi_register_role_get_scope()
Adds the RDN contained in a Slapi_RDN structure to the DN contained in a Slapi_DN structure.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_add_rdn(Slapi_DN *sdn, const Slapi_RDN *rdn);
This function takes the following parameters:
Slapi_DN structure containing the value to which a new RDN is to be added.
Slapi_RDN structure containing the RDN value that is to be added to the DN value.
This function returns the Slapi_DN structure with the new DN formed by adding the RDN value in rdn to the DN value in dn.
Compares two DNs.
#include "slapi-plugin.h" int slapi_sdn_compare( const Slapi_DN *sdn1, const Slapi_DN *sdn2 );
This function takes the following parameters:
DN to compare with the value in sdn2.
DN to compare with the value in sdn1.
This function returns one of the following values:
0 if sdn1 is equal to sdn2.
-1 if sdn1 is NULL.
1 if sdn2 is NULL and sdn1 is not NULL.
This function compares two DNs, sdn1 and sdn2. The comparison is case sensitive.
Makes a copy of a DN.
#include "slapi-plugin.h" void slapi_sdn_copy(const Slapi_DN *from, Slapi_DN *to);
This function takes the following parameters:
The original DN.
Destination of the copied DN, containing the copy of the DN in from.
This function copies the DN in from to the structure pointed by to.
to must be allocated in advance of calling this function.
Clears an instance of a Slapi_DN structure.
#include "slapi-plugin.h" void slapi_sdn_done(Slapi_DN *sdn);
This function takes the following parameter:
Pointer to the structure to clear.
This function clears the contents of a Slapi_DN structure. It frees both the DN and the normalized DN, if any, and sets those pointers to NULL.
Duplicates a Slapi_DN structure.
#include "slapi-plugin.h" Slapi_DN * slapi_sdn_dup(const Slapi_DN *sdn);
This function takes the following parameter:
Pointer to the Slapi_DN structure to duplicate.
This function returns a pointer to a duplicate of sdn.
Frees a Slapi_DN structure.
#include "slapi-plugin.h" void slapi_sdn_free(Slapi_DN **sdn);
This function takes the following parameter:
Pointer to the Slapi_DN structure to free.
This function frees the Slapi_DN structure and its contents pointed to by the contents of sdn.
Gets the DN of the parent of an entry within a specific backend.
#include "slapi-plugin.h" void slapi_sdn_get_backend_parent(const Slapi_DN *sdn, Slapi_DN *sdn_parent,const Slapi_Backend *backend);
This function takes the following parameters:
DN of the entry whose parent is searched.
Parent DN of sdn.
Backend of which the parent of sdn is to be searched.
This function gets the parent DN of an entry within a given backend. The parent DN is returned is sdn_parent, unless sdn is empty or is a suffix of the backend itself. In this case, sdn_parent is empty.
A Slapi_DN structure for sdn_parent must be allocated before calling this function.
Gets the DN from a Slapi_DN structure.
#include "slapi-plugin.h" const char * slapi_sdn_get_dn(const Slapi_DN *sdn);
This function takes the following parameter:
The Slapi_DN structure containing the DN value.
This function returns the DN value.
This function retrieves the DN value of a Slapi_DN structure. The returned value can be the normalized DN (in a canonical format and in lower case) if no other value is present.
Gets the normalized DN of a Slapi_DN structure.
#include "slapi-plugin.h" const char * slapi_sdn_get_ndn(const Slapi_DN *sdn);
This function takes the following parameter:
The Slapi_DN structure containing the DN value.
This function returns the normalized DN value.
This function retrieves the normalized DN (in a canonical format and lower case) from a Slapi_DN structure and normalizes sdn if it has not already been normalized.
Gets the length of the normalized DN of a Slapi_DN structure.
#include "slapi-plugin.h" int slapi_sdn_get_ndn_len(const Slapi_DN *sdn);
This function takes the following parameter:
The Slapi_DN structure containing the DN value.
This function returns the length of the normalized DN.
This function contains the length of the normalized DN and normalizes sdn if it has not already been normalized.
Gets the parent DN of a given Slapi_DN structure.
#include "slapi-plugin.h" void slapi_sdn_get_parent(const Slapi_DN *sdn,Slapi_DN *sdn_parent);
This function takes the following parameters:
Pointer to the initialized Slapi_DN structure containing the DN whose parent is searched.
Pointer to the Slapi_DN structure where the parent DN is returned.
This function returns a Slapi_DN structure containing the parent DN of the DN kept in the structure pointed to by sdn.
slapi_sdn_get_backend_parent()
Gets the RDN from a DN.
#include "slapi-plugin.h" void slapi_sdn_get_rdn(const Slapi_DN *sdn, Slapi_RDN *rdn);
This function takes the following parameters:
Pointer to the Slapi_DN structure containing the DN.
Pointer to the Slapi_RDN structure where the RDN is returned.
This function takes the DN stored in the Slapi_DN structure pointed to by sdn and retrieves its returned RDN within the Slapi_RDN structure pointed to by rdn.
Returns a pointer to the DN of the suffix containing the target.
#include "slapi-plugin.h" Slapi_DN* slapi_sdn_get_suffix(const Slapi_DN *target_sdn);
This function takes the following parameter:
DN of the target entry whose suffix you want.
This function returns a pointer to a Slapi_DN structure containing the base DN of the suffix for the entry with target_sdn, or NULL if that suffix is not available.
Free the structure returned using slapi_sdn_free().
Checks whether there is a DN value stored in a Slapi_DN structure.
#include "slapi-plugin.h" int slapi_sdn_isempty( const Slapi_DN *sdn);
This function takes the following parameter:
Pointer to the Slapi_DN structure that is going to be checked.
This function returns one of the following values:
1 if there is no DN value (normalized or not) present in the Slapi_DN structure.
0 if sdn is not empty.
This function checks whether a Slapi_DN structure contains a normalized or non-normalized value.
Checks whether a DN is the parent of the parent of a given DN.
#include "slapi-plugin.h" int slapi_sdn_isgrandparent( const Slapi_DN *parent, const Slapi_DN *child );
This function takes the following parameters:
Pointer to the Slapi_DN structure containing the DN that claims to be the grandparent DN of the DN in child .
Pointer to the Slapi_DN structure containing the DN of the supposed “grandchild” of the DN in the structure pointed to by parent.
This function returns one of the following values:
1 if the DN in parent is the grandparent of the DN in child.
0 if the DN in parent does not match the DN of the grandparent of the DN in child.
Checks whether a DN is the parent of a given DN.
#include "slapi-plugin.h" int slapi_sdn_isparent(const Slapi_DN *parent, const Slapi_DN *child);
This function takes the following parameters:
Pointer to the Slapi_DN structure containing the DN that claims to be the parent of the DN in child.
Pointer to the Slapi_DN structure containing the DN of the supposed child of the DN in the structure pointed to by parent.
This function returns one of the following values:
1 if the DN in parent is the parent of the DN in child.
0 if the DN in parent does not match the DN of the parent of the DN in child.
Checks whether a Slapi_DN structure contains a suffix of another Slapi_DN structure.
#include "slapi-plugin.h" int slapi_sdn_issuffix(const Slapi_DN *sdn, const Slapi_DN *suffixsdn);
This function takes the following parameters:
Pointer to the Slapi_DN structure to be checked.
Pointer to the Slapi_DN structure of the suffix.
This function returns one of the following values:
1 if the DN is suffixsdn is the suffix of sdn.
0 if the DN in suffixsdn is not a suffix of sdn.
Allocates a new Slapi_DN structure and initializes it to NULL.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_new();
This function takes no parameters.
This function returns a pointer to the newly allocated, and still empty,Slapi_DN structure.
This function creates a new Slapi_DN structure by allocating the necessary memory and initializing both DN and normalized DN values to NULL.
Creates a new Slapi_DN structure and sets a DN value.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_new_dn_byref(const char *dn);
This function takes the following parameter:
The DN value to be set in the new Slapi_DN structure.
This function returns a pointer to the new Slapi_DN structure with a DN value set to the content of dn.
This function creates a new Slapi_DN structure and initializes its DN with the value of dn. The DN of the new structure will point to the same string pointed to by dn (the DN value is passed in to the parameter by reference). However, the FLAG_DN flag is not set and no counter is incremented.
The memory is allocated by the function itself.
Creates a new Slapi_DN structure and sets a DN value.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_new_dn_byval(const char *dn);
This function takes the following parameter:
The DN value to be set in the new Slapi_DN structure.
This function returns a pointer to the new Slapi_DN structure with a DN value set to the content of dn.
This function creates a new Slapi_DN structure and initializes its DN with the value of dn. The DN of the new structure will point to a copy of the string pointed to by dn (the DN value is passed in to the parameter by value). The FLAG_DN flag is set and the internal counter is incremented.
The memory is allocated by the function itself.
Creates a new Slapi_DN structure and sets a DN value.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_new_dn_passin(const char *dn);
This function takes the following parameter:
The DN value to be set in the new Slapi_DN structure.
This function returns a pointer to the new Slapi_DN structure with DN value set to the content of dn.
This function creates a new Slapi_DN structure and initializes its DN with the value of dn. The DN of the new structure will point to the string pointed to by dn. The FLAG_DN flag is set and the internal counter is incremented.
The memory is allocated by the function itself.
Creates a new Slapi_DN structure and sets a normalized DN value.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_new_ndn_byref(const char *ndn);
This function takes the following parameter:
The normalized DN value to be set in the new Slapi_DN structure.
This function returns a pointer to the new Slapi_DN structure with a normalized DN value set to the content of ndn.
This function creates a new Slapi_DN structure and initializes its normalized DN with the value of ndn. The normalized DN of the new structure will point to the same string pointed to by ndn (the normalized DN value is passed into the parameter by reference). However, the FLAG_NDN flag is not set and no counter is incremented.
The memory is allocated by the function itself.
Creates a new Slapi_DN structure and sets a normalized DN value.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_new_ndn_byval(const char *ndn);
This function takes the following parameter:
The normalized DN value to be set in the new Slapi_DN structure.
This function returns a pointer to the new Slapi_DN structure with a normalized DN value set to the content of ndn.
This function creates a new Slapi_DN structure and initializes its normalized DN with the value of ndn. The normalized DN of the new structure will point to a copy of the string pointed to by ndn (the normalized DN value is passed into the parameter by value). The FLAG_DND flag is set and the internal counter is incremented.
The memory is allocated by the function itself.
Checks whether an entry, given its DN, is in the scope of a certain base DN.
#include "slapi-plugin.h" int slapi_sdn_scope_test( const Slapi_DN *dn, const Slapi_DN *base, int scope );
This function takes the following parameters:
The DN of the entry subject of scope test.
The base DN to which dn is going to be tested against.
The scope tested. This parameter can take one of the following levels
LDAP_SCOPE_BASE - where the entry DN should be the same as the base DN
LDAP_SCOPE_ONELEVEL - where the base DN should be the parent of the entry DN
LDAP_SCOPE_SUBTREE - where the base DN should at least be the suffix of the entry DN
This function returns non-zero if dn matches the scoping criteria given by base and scope.
This function carries out a simple test to check whether the DN passed in the dn parameter is actually in scope of the base DN according to the values passed into the scope and base parameters.
Sets a DN value in a Slapi_DN structure.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_set_dn_byref(Slapi_DN *sdn, const char *dn);
This function takes the following parameters:
The target Slapi_DN structure.
The DN value to be set in sdn.
This function returns a pointer to the Slapi_DN structure containing the new DN value.
This function sets a DN value in a Slapi_DN structure. The DN of the new structure will point to the same string pointed to by dn (the DN value is passed into the parameter by value). However, the FLAG_DN flag is not set, and no internal counter is incremented.
Sets a DN value in a Slapi_DN structure.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_set_dn_byval(Slapi_DN *sdn, const char *dn);
This function takes the following parameters:
The target Slapi_DN structure.
The DN value to be set in sdn.
This function returns a pointer to the Slapi_DN structure containing the new DN value.
This function sets a DN value in a Slapi_DN structure. The DN of the new structure will point to a copy of the string pointed to by dn (the DN value is passed into the parameter by value). The FLAG_DN flag is set, and the internal counters are incremented.
Sets a DN value in Slapi_DN structure.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_set_dn_passin(Slapi_DN *sdn, const char *dn);
This function takes the following parameters:
The target Slapi_DN structure.
The DN value to be set in sdn.
This function returns a pointer to the Slapi_DN structure containing the new DN value.
This function sets a DN value in a Slapi_DN structure. The DN of the new structure will point to the same string pointed to by dn. The FLAG_DN flag is set, and the internal counters are incremented.
Sets a normalized DN in a Slapi_DN structure.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_set_ndn_byref(Slapi_DN *sdn, const char *ndn);
This function takes the following parameters:
The target Slapi_DN structure.
The normalized DN value to be set in sdn.
This function returns a pointer to the Slapi_DN structure containing the new normalized DN value.
This function sets a normalized DN value in a Slapi_DN structure. The normalized DN of the new structure will point to the same string pointed to by ndn (the normalized DN value is passed into the parameter by reference). However, the FLAG_DN flag is not set, and no internal counter is incremented.
Sets a normalized DN value in Slapi_DN structure.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_set_ndn_byval(Slapi_DN *sdn, const char *ndn);
This function takes the following parameters:
The target Slapi_DN structure.
The normalized DN value to be set in sdn.
This function returns a pointer to the Slapi_DN structure containing the new normalized DN value.
This function sets a normalized DN value in a Slapi_DN structure. The normalized DN of the new structure will point to a copy of the string pointed to by ndn (the normalized DN value is passed into the parameter by value). The FLAG_DN flag is set, and the internal counters are incremented.
Sets a new parent for a given entry.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_set_parent(Slapi_DN *sdn, const Slapi_DN *parentdn);
This function takes the following parameters:
The Slapi_DN structure containing the DN of the entry.
The new parent DN.
The function returns a pointer to the Slapi_DN structure that contains the DN of the entry after the new parent DN has been set.
This function sets a new parent for an entry. This is done by keeping the RDN of the original DN of the entry and by adding the DN of its new parent (the value of parentdn).
Sets a new RDN for given entry.
#include "slapi-plugin.h" Slapi_DN *slapi_sdn_set_rdn(Slapi_DN *sdn, const Slapi_RDN *rdn);
This function takes the following parameters:
The Slapi_DN structure containing the DN of the entry.
The new RDN.
This function returns a pointer to the Slapi_DN structure that keeps the DN of the entry after the new RDN has been set.
This function sets a new RDN for an entry. This is done by retrieving the DN of the entry’s parent of the origin DN of the entry and then adding it to the RDN (the value of rdn) to it.
Performs an LDAP search operation based on a parameter block to search the directory. Unlike slapi_search_internal_pb(), this function allows you to specify callback functions that are invoked when the search operation finds matching entries or entries with referrals.
#include "slapi-plugin.h" int slapi_search_internal_callback_pb(Slapi_PBlock *pb, void *callback_data, plugin_result_callback prc, plugin_search_entry_callback psec, plugin_referral_entry_callback prec);
This function takes the following parameters:
A parameter block that has been initialized using slapi_search_internal_set_pb().
A pointer to arbitrary plug-in or operation-specific data that you would like to pass to your callback functions.
Callback function that the server calls to send result codes. The function must have the prototype specified by plugin_result_callback .
Callback function that the server calls when finding a matching entry in the directory. The function must have the prototype specified by plugin_search_entry_callback.
Callback function that the server calls when finding an entry that contains LDAP v3 referrals. The function must have the prototype specified by plugin_referral_entry_callback.
This function returns -1 if the parameter passed is a NULL pointer. Otherwise, it returns 0.
After your code calls this function, the server sets SLAPI_PLUGIN_INTOP_RESULT in the parameter block to the appropriate LDAP result code. You can therefore check SLAPI_PLUGIN_INTOP_RESULT in the parameter block to determine whether an error has occurred.
Like slapi_search_internal_pb(), this function allows you to search the directory from a plug-in function.
Unlike a search operation requested by a client, no result code, search entries, or referrals are sent to a client by slapi_search_internal_callback_pb() . However, you can write your own callback functions that are invoked when these events occur:
You can write a callback function that is invoked when the search operation normally sends a result code to the client. This function must have the prototype specified by plugin_result_callback. You specify this function in the prc argument of slapi_search_internal_callback_pb() .
You can write a callback function that is invoked when the search operation normally sends a search entry to the client. This function must have the prototype specified by plugin_search_entry_callback. You specify this function in the psec argument of slapi_search_internal_callback_pb() .
You can write a callback function that is invoked when the search operation normally sends LDAP v3 search result references. This function must have the prototype specified by plugin_referral_entry_callback . You specify this function in the prec argument of slapi_search_internal_callback_pb().
You can also pass arbitrary plug-in or operation-specific data to these callback functions. Specify the data that you want to pass as the callback_data argument of slapi_search_internal_callback_pb() .
The entries passed to the search entry callback function do not need to be freed. If you need to access an entry after returning from the callback function, call slapi_entry_dup() to make a copy.
The referral URLs passed to the referral entry callback function do not need to be freed. If you need to access a referral string after returning from the callback function, call slapi_ch_strdup() to make a copy.
You do not need to call slapi_free_search_results_internal() after calling slapi_search_internal_callback_pb().
Performs an internal search operation to read one entry (that is, it performs a base object search).
#include "slapi-plugin.h" int slapi_search_internal_get_entry( Slapi_DN const *dn, char ** attrlist, Slapi_Entry **ret_entry, void *caller_identity);
This function takes the following parameters:
The DN of the entry to be read.
A NULL terminated array of attribute types to return from entries that match filter. If you specify a NULL, all attributes will be returned.
The address of a Slapi_Entry pointer to receive the entry if it is found.
A plug-in or component identifier. This value can be obtained from the SLAPI_PLUGIN_IDENTITY field of the parameter block that is passed to your plug-in initialization function.
This function returns the LDAP result code for the search operation.
This function performs an internal search operation to read one entry (that is, it preforms a base object search). If an entry named by dn is found, the ret_entry pointer will be set to point to a copy of the entry that contains the attribute values specified by the attrlist parameter.
The returned entry (*ret_entry) should be freed by calling slapi_entry_free().
Performs an LDAP search operation based on a parameter block to search the directory.
#include "slapi-plugin.h" int slapi_search_internal_pb(Slapi_PBlock *pb);
This function takes the following parameter:
A parameter block that has been initialized using slapi_search_internal_set_pb().
This function returns -1 if the parameter passed is a NULL pointer. Otherwise, it returns 0.
After your code calls this function, the server sets SLAPI_PLUGIN_INTOP_RESULT in the parameter block to the appropriate LDAP result code. You can therefore check SLAPI_PLUGIN_INTOP_RESULT in the parameter block to determine whether an error has occurred.
This function performs an internal search based on a parameter block. The parameter block should be initialized by calling the slapi_search_internal_set_pb() function.
slapi_free_search_results_internal() should be called to dispose of any entires and other items that were allocated by a call to slapi_search_internal_pb().
Sets a parameter block for an internal search.
#include slapi-plugin.h int slapi_search_internal_set_pb(Slapi_PBlock *pb, const char *base, int scope, const char *filter, char **attrs, int attrsonly,LDAPControl **controls, const char *uniqueid,Slapi_ComponentId *plugin_identity, int operation_flags);
This function takes the following parameters:
Parameter block.
The base of the search.
LDAP_SCOPE_SUBTREE, LDAP_SCOPE_ONELEVEL , or LDAP_SCOPE_BASE
The search filter.
Request attribute list.
This parameter is currently ignored.
Specifying 1 retrieves only the attribute types. Specifying 0 retrieves the attribute types and the attribute values.
LDAP control that you wish to attach.
Unique ID must be set to NULL.
Plug-in identifier obtained from SLAPI_PLUGIN_IDENTITY during plug-in initialization.
The only flag that is exposed in this release is SLAPI_OP_FLAG_NEVER_CHAIN . If this flag is set, then the search will not be conducted if the entry is a chained backend.
This function returns 0 if successful. Otherwise, it returns an LDAP error code.
Use this function to set the parameter block to perform an internal search. This function is needed in order to use the internal search operation function, slapi_search_internal_pb().
You would typically create a Slapi_PBlock structure using slapi_pblock_new(), pass that parameter block to slapi_search_internal_pb(), and then pass the same parameter block to actually do the search.
Allocate the parameter block using slapi_pblock_new() before calling this function.
Directory Server does not free the parameters you passed to this function.
Free the parameter block after calling slapi_search_internal_pb() .
Processes an entry’s LDAP v3 referrals (which are found in the entry’s ref attribute). For LDAP v3 clients, this function sends the LDAP referrals back to the client. For LDAP v2 clients, this function copies the referrals to an array of berval structures that you can pass to slapi_send_ldap_result() function at a later time.
#include "slapi-plugin.h" int slapi_send_ldap_referral( Slapi_PBlock *pb, Slapi_Entry *e, struct berval **refs, struct berval ***urls );
This function takes the following parameters:
Parameter block.
Pointer to the Slapi_Entry structure representing the entry that you are working with.
Pointer to the NULL terminated array of berval structures containing the LDAP v3 referrals (search result references) found in the entry.
Pointer to the array of berval structures used to collect LDAP referrals for LDAP v2 clients.
This function returns 0 if successful, or -1 if an error occurs.
When you call this function, the server processes the LDAP referrals specified in the refs argument. The server processes referrals in different ways, depending on the version of the LDAP protocol supported by the client:
In the LDAP v3 protocol, references to other LDAP servers (search result references) can be sent to clients as search results. (For example, a server can send a mixture of entries found by the search and references to other LDAP servers as the results of a search.)
When you call the slapi_send_ldap_referral() function for LDAP v3 clients, the server sends the referrals specified in the refs argument back to the client as search result references. (The urls argument is not used in this case.)
In the LDAP v2 protocol, servers can send the LDAP result code LDAP_PARTIAL_RESULTS to refer the client to other LDAP server.
When you call the slapi_send_ldap_referral() function for LDAP v2 clients, the server collects the referrals specified in refs in the urls argument. No data is sent to the LDAP v2 client.
To get the referrals to an LDAP v2 client, you need to pass the urls argument (along with an LDAP_PARTIAL_RESULTS result code) to the slapi_send_ldap_result() function.slapi_send_ldap_result() concatenates the referrals specified in the urls argument and sends the resulting string to the client as part of the error message.
If you want to define your own function for sending referrals, write a function that complies with the type definition send_ldap_search_entry_fn_ptr_t and set the SLAPI_PLUGIN_DB_REFERRAL_FN parameter in the parameter block to the name of your function.
slapi_send_ldap_search_entry()
Sends an LDAP result code back to the client.
#include "slapi-plugin.h" void slapi_send_ldap_result( Slapi_PBlock *pb, int err, char *matched, char *text, int nentries, struct berval **urls );
This function takes the following parameters:
Parameter block.
LDAP result code that you want sent back to the client (for example, LDAP_SUCCESS).
When sending back an LDAP_NO_SUCH_OBJECT result code, use this argument to specify the portion of the target DN that could be matched. (Pass NULL in other situations.)
Error message that you want sent back to the client. (Pass NULL if you do not want an error message sent back.)
When sending back the result code for an LDAP search operation, use this argument to specify the number of matching entries found.
When sending back an LDAP_PARTIAL_RESULTS result code to an LDAP v2 client or an LDAP_REFERRAL result code to an LDAP v3 client, use this argument to specify the array of berval structures containing the referral URLs. (Pass NULL in other situations.)
Call slapi_send_ldap_result() to send an LDAP result code (such as LDAP_SUCCESS) back to the client.
The following arguments are intended for use only in certain situations:
matched
When sending an LDAP_NO_SUCH_OBJECT result code back to a client, use matched to specify how much of the target DN could be found in the database. For example, if the client was attempting to find the DN:
cn=Babs Jensen, ou=Product Division, o=Example, c=US
and the database contains entries for c=US and o=Example, c=US, but no entry for ou=Product Division, o=Example, c=US, you should set the matched parameter to:
o=Example, c=US
urls
When sending an LDAP_PARTIAL_RESULTS result code back to an LDAP v2 client or an LDAP_REFERRAL result code back to an LDAP v3 client, use urls to specify the referral URLs.
For LDAP v3 referrals, you can call slapi_send_ldap_result() to send referrals to LDAP v3 clients and collect them for LDAP v2 clients. You can pass the array of collected referrals to the urls argument of slapi_send_ldap_result(). For example:
struct berval **urls; ... slapi_send_ldap_referral(ld, e, &refs, &urls); slapi_send_ldap_result(ld,LDAP_PARTIAL_RESULTS,NULL,NULL,0,urls);
If you want to define your own function for sending result codes, write a function that complies with the type definition send_ldap_search_entry_fn_ptr_t and set the SLAPI_PLUGIN_DB_RESULT_FN parameter in the parameter block to the name of your function.
slapi_send_ldap_search_entry()
Sends an entry found by a search back to the client.
#include "slapi-plugin.h" int slapi_send_ldap_search_entry( Slapi_PBlock *pb, Slapi_Entry *e, LDAPControl **ectrls, char **attrs, int attrsonly );
This function takes the following parameters:
Parameter block.
Pointer to the Slapi_Entry structure representing the entry that you want to send back to the client.
Pointer to the array of LDAPControl structures representing the controls associated with the search request.
Attribute types specified in the LDAP search request
Specifies whether or not the attribute values should be sent back with the result.
If 0, the values are included.
If 1, the values are not included.
This function returns 0 if successful, 1 if the entry is not sent (for example, if access control did not allow it to be sent), or -1 if an error occurs.
Call slapi_send_ldap_search_entry() to send an entry found by a search back to the client.
attrs is the array of attribute types that you want to send from the entry. This value is equivalent to the SLAPI_SEARCH_ATTRS parameter in the parameter block.
attrsonly specifies whether you want to send only the attribute types or the attribute types and their values:
Pass 0 for this parameter if you want to send both the attribute types and values to the client.
Pass 1 for this parameter if you want to send only the attribute types (not the attribute values) to the client.
This value is equivalent to the SLAPI_SEARCH_ATTRSONLY parameter in the parameter block.
If you want to define your own function for sending entries, write a function complies with the type definition send_ldap_search_entry_fn_ptr_t and set the SLAPI_PLUGIN_DB_ENTRY_FN parameter in the parameter block to the name of your function.
Modify an object extension.
#include "slapi-plugin.h" void slapi_set_object_extension(int objecttype, void *object, int extensionhandle, void *extension);
This function takes the following parameters:
Set by the server and used to retrieve the extension
Extended object
Set by the server and used to retrieve the extension
New extension to attach to the object
This function modifies an extension to an object.
slapi_register_object_extension()
Converts an LDIF description of a directory entry (a string value) into an entry of the Slapi_Entry type.
#include "slapi-plugin.h" Slapi_Entry *slapi_str2entry( char *s, int flags );
This function takes the following parameters:
Description of an entry that you want to convert to Slapi_Entry.
One or more flags specifying how the entry should be generated
The value of the flags argument can be one of the following values:
Removes any duplicate values in the attributes of the entry.
Adds the relative distinguished name (RDN) components (for example, uid=bjensen) as attributes of the entry.
Pointer to the Slapi_Entry structure representing the entry, or NULL if the string cannot be converted (for example, if no DN is specified in the string).
A directory entry can be described by a string in LDIF format.
Calling the slapi_str2entry() function converts a string description in this format to a Slapi_Entry structure, which you can pass to other API functions.
This function modifies the string argument s. If you must use the string value again, make a copy of this string before calling slapi_str2entry().
If an error occurred during the conversion process, the function returns NULL instead of the entry.
When you are finished working with the entry, you should call the slapi_entry_free() function.
To convert an entry to a string description, call the slapi_entry2str() function.
Do not use free() or slapi_ch_free() to free the entry. Always use slapi_entry_free() instead.
Converts a string description of a search filter into a filter of the Slapi_Filter type.
#include "slapi-plugin.h" Slapi_Filter *slapi_str2filter( char *str );
This function takes the following parameter:
String description of a search filter.
Do not pass a static string to this function. Instead, create a duplicate using slapi_ch_strdup(). When you are finished working with this filter, you should free the Slapi_Filter structure by calling slapi_filter_free().
Pointer to the Slapi_Filter structure representing the search filter, or NULL if the string cannot be converted (for example, if an empty string is specified or if the filter syntax is incorrect).
Unlocks the specified mutex.
#include "slapi-plugin.h" int slapi_unlock_mutex( Slapi_Mutex *mutex );
This function takes the following parameters:
Pointer to an Slapi_Mutex structure representing the mutex that you want to unlock.
One of the following values:
A non-zero value if the mutex was successfully unlocked.
0 if the mutex was NULL or was not locked by the calling thread.
This function unlocks the mutex specified by the Slapi_Mutex structure.
Compares two UTF-8 strings.
#include "slapi-plugin.h" int slapi_UTF-8CASECMP(char *s0, char *s1);
This function takes the following parameters:
A NULL terminated UTF-8 string.
A NULL terminated UTF-8 string.
This function returns one of the following values:
positive number if s0 is after s1.
0 if the two string are identical, ignoring case.
negative number if s1 is after s0.
This function has the following rules:
If both UTF-8 strings are NULL or 0-length, 0 is returned.
If one of the strings is NULL or 0-length, the NULL or 0-length string is smaller.
If one or both of the strings are not UTF-8, system provided strcasecmp is used.
If one of the two strings contains no 8-bit characters, strcasecmp is used.
The strings are compared after they are converted to lowercase UTF-8.
Each character is compared from the beginning.
Evaluation occurs in this order:
If the length of one character is shorter then the other, the difference of the two lengths is returned.
If the length of the corresponding characters is the same, each byte in the characters is compared.
If there is a difference between two bytes, the difference is returned.
If one string is shorter then the other, the difference is returned.
Compares a specified number of UTF-8 characters.
#include "slapi-plugin.h" int slapi_UTF-8NCASECMP(char *s0, char *s1, int n);
This function takes the following parameters:
A NULL terminated UTF-8 string.
A NULL terminated UTF-8 string.
The number of UTF-8 characters (not bytes) from s0 and s1 to compare.
This function returns one of the following values:
positive number if s0 is after s1.
0 if the two string are identical, ignoring case.
negative number if s1 is after s0.
This function has the following rules:
If both UTF-8 strings are NULL or 0-length, 0 is returned.
If one of the strings is NULL or 0-length, the NULL or 0-length string is smaller.
If one or both of the strings are not UTF-8, system provided strcasecmp is used.
If one of the two strings contains no 8-bit characters, strcasecmp is used.
The strings are compared after they are converted to lower-case UTF-8.
Each character is compared from the beginning.
Evaluation occurs in this order:
If the length of one character is shorter then the other, the difference of the two lengths is returned.
If the length of the corresponding characters is the same, each byte in the characters is compared.
If there is a difference between two bytes, the difference is returned.
If one string is shorter then the other, the difference is returned.
Verifies if a UTF-8 character is lower case.
#include "slapi-plugin.h" int slapi_UTF-8ISLOWER(char *s);
This function takes the following parameter:
Pointer to a single UTF-8 character (could be multiple bytes).
This function returns 1 if the character is a lower case letter, or 0 if it is not.
Verifies if a single UTF-8 character is upper case.
#include "slapi-plugin.h" int slapi_UTF-8ISUPPER(char *s);
This function takes the following parameter:
Pointer to a single UTF-8 character (could be multiple bytes).
This function returns 1 if the character is an upper case letter, or 0 if it is not.
Converts a UTF-8 string to lower case.
#include "slapi-plugin.h" unsigned char *slapi_UTF-8STRTOLOWER(char *s);
This function takes the following parameter:
A NULL terminated UTF-8 string to be converted to lower case.
This function returns a pointer to a NULL terminated UTF-8 string whose characters are converted to lower case. Characters which are not upper case are copied as is. If the string is not found to be a UTF-8 string, this function returns NULL.
This function converts a string of multiple UTF-8 characters, and not a single character, as in slapi_UTF-8TOLOWER().
The output string is allocated, and needs to be released when it is no longer needed.
Converts a string made up of UTF-8 characters and converts it to upper case.
#include "slapi-plugin.h" unsigned char *slapi_UTF-8STRTOUPPER(char *s);
This function takes the following parameter:
A NULL terminated UTF-8 string to be converted to upper case.
This function returns a NULL terminated UTF-8 string whose characters are converted to upper case. Character which are not lower case are copied as is. If the string is not considered to be a UTF-8 string, this function returns NULL.
The output string is allocated in this function, and needs to be released when it is no longer used.
Converts a UTF-8 character to lower case.
#include "slapi-plugin.h" void slapi_UTF-8TOLOWER(char *s, char *d, int *ssz, int *dsz);
This function takes the following parameters:
A single UTF-8 character (could be multiple bytes).
Pointer to the lower case form of s. The memory for this must be allocated by the caller before calling the function.
Returns the length in bytes of the input character.
Returns the length in bytes of the output character.
Converts a lower case UTF-8 character to an upper case character.
#include "slapi-plugin.h" void slapi_UTF-8TOUPPER(char *s, char *d, int *ssz, int *dsz);
This function takes the following parameters:
Pointer to a single UTF-8 character (could be multiple bytes).
Pointer to the upper case version of s. The memory for this must be allocated by the caller before calling the function.
Returns the length in bytes of the input character.
Returns the length in bytes of the output character.
Compares two values for a given attribute to determine if they are equals.
#include "slapi-plugin.h" int slapi_value_compare(const Slapi_Attr *a, const Slapi_Value *v1, const Slapi_Value *v2);
This function takes the following parameters:
A pointer to an attribute used to determine how the two values will be compared.
Pointer to the Slapi_ValueSet structure containing the first value to compare.
Pointer to the Slapi_Value structure containing the second value to compare.
This function returns one of the following values:
0 if the two values are equal.
-1 if v1 is smaller than v2.
1 if v1 is greater than v2.
This function compares two Slapi_Values using the matching rule associated to the attribute a.
This function replaces the deprecated slapi_attr_value_cmp() function used in previous releases, and uses the Slapi_Value attribute values instead of the berval attribute values.
Frees internals of a Slapi_Value structure.
#include "slapi-plugin.h" void slapi_value_done(Slapi_Value *v);
This function takes the following parameter:
Pointer to the Slapi_Value structure whose internals you want to free.
slapi_value_init(), slapi_value_init_berval(), slapi_value_init_string()
Duplicates a value.
#include "slapi-plugin.h" Slapi_Value * slapi_value_dup(const Slapi_Value *v);
This function takes the following parameter:
Pointer to the Slapi_Value structure you wish to duplicate.
This function returns a pointer to a newly allocated Slapi_Value.
The new Slapi_Value is allocated and needs to be freed by the caller, using slapi_value_free().
Frees the specified Slapi_Value structure and its members from memory.
#include "slapi-plugin.h" void slapi_value_free(Slapi_Value **value);
This function takes the following parameter:
Address of the pointer to the Slapi_Value you wish to free.
This function frees the Slapi_Value structure and its members (if it is not NULL), and sets the pointer to NULL.
Call this function when you are finished working with the structure.
Frees the specified array of Slapi_Value structures and their members from memory.
#include "slapi-plugin.h" void slapi_valuearray_free(Slapi_Value ***value);
This function takes the following parameter:
Array of Slapi_Value structures to free.
This function frees each Slapi_Value structure and its members, and sets the pointer to NULL.
Call this function when you are finished working with the array of values.
Gets the berval structure of the value.
#include "slapi-plugin.h" const struct berval * slapi_value_get_berval( const Slapi_Value *value);
This function takes the following parameter:
Pointer to the Slapi_Value of which you wish to get the berval.
Returns a pointer to the berval structure contained in the Slapi_Value. This function returns a pointer to the actual berval structure, and not a copy of it.
You should not free the berval structure unless you plan to replace it by calling slapi_value_set_berval() .
Converts the value to an integer.
#include "slapi-plugin.h" int slapi_value_get_int(const Slapi_Value *value);
This function takes the following parameter:
Pointer to the Slapi_Value of which you wish to get as an integer.
This function returns an integer that corresponds to the value stored in the Slapi_Value structure, or 0 if there is no value.
Converts the value in the Slapi_Value to an integer.
Gets the actual length of the value.
#include "slapi-plugin.h" size_t slapi_value_get_length(const Slapi_Value *value);
This function takes the following parameter:
Pointer to the Slapi_Value of which you wish to get the length.
This function returns the length of the value contained in Slapi_Value, or 0 if there is no value.
This function returns the actual length of a value contained in the Slapi_Value structure.
Converts the value into a long integer.
#include "slapi-plugin.h" long slapi_value_get_long(const Slapi_Value *value);
This function takes the following parameter:
Pointer to the Slapi_Value of which you wish to get as a long integer.
This function returns a long integer that corresponds to the value stored in the Slapi_Value structure, or 0 if there is no value.
This function converts the value contained in the Slapi_Value structure into a long integer.
Returns the value as a string.
#include "slapi-plugin.h" const char * slapi_value_get_string(const Slapi_Value *value);
This function takes the following parameter:
Pointer to the Slapi_Value of which you wish to get as a string.
This function returns a string containing the value, or NULL if there is no value.
This function returns a pointer to the actual string value in Slapi_Value, not a copy of it.
You should not free the string unless to plan to replace it by calling slapi_value_set_string().
Converts the value to an unsigned integer.
#include "slapi-plugin.h" unsigned int slapi_value_get_uint(const Slapi_Value *value);
This function takes the following parameter:
Pointer to the Slapi_Value of which you wish to get as an unsigned integer.
This function returns an unsigned integer that corresponds to the value stored in the Slapi_Value structure, or 0 if there is no value.
Converts the value contained in Slapi_Value into an unsigned integer.
Converts the value into an unsigned long.
#include "slapi-plugin.h" unsigned long slapi_value_get_ulong(const Slapi_Value *value);
This function takes the following parameter:
Pointer to the Slapi_Value of which you wish to get as an unsigned long integer.
This function returns an unsigned long integer that corresponds to the value stored in the Slapi_Value structure, or 0 if there is no value.
Converts the value contained in the Slapi_Value structure into an unsigned long integer.
Initializes a Slapi_Value structure with no value.
#include "slapi-plugin.h" Slapi_Value * slapi_value_init(Slapi_Value *v);
This function takes the following parameter:
Pointer to the value to be initialized. The pointer must not be NULL.
This function returns a pointer to the initialized Slapi_Value structure (itself).
This function initializes the Slapi_Value structure, resetting all of its fields to zero. The value passed as the parameter must be a valid Slapi_Value.
When finished using the Slapi_Value structure, free its internal structures by using slapi_value_done().
Initializes a Slapi_Value structure from the berval structure.
#include "slapi-plugin.h" Slapi_Value * slapi_value_init_berval(Slapi_Value *v, struct berval *bval);
This function takes the following parameters:
Pointer to the value to initialize. The pointer must not be NULL.
Pointer to the berval structure to be used to initialize the value.
This function returns a pointer to the initialized Slapi_Value structure (itself).
This function initializes the Slapi_Value structure with the value contained in the berval structure. The content of the berval structure is duplicated.
When finished using the Slapi_Value structure, free its internal structures by using slapi_value_done().
Initializes a Slapi_Value structure from a string.
#include "slapi-plugin.h" Slapi_Value * slapi_value_init_string(Slapi_Value *v,const char *s);
This function takes the following parameters:
Pointer to the value to be initialized. The pointer must not be NULL.
NULL terminated string used to initialize the value.
This function returns a pointer to the initialized Slapi_Value structure (itself).
This function initializes the Slapi_Value structure with the value contained in the string. The string is duplicated.
When finished using the Slapi_Value structure, free its internal structures by using slapi_value_done().
Initializes a Slapi_Value structure with value contained in the string.
#include "slapi-plugin.h" Slapi_Value * slapi_value_init_string_passin (Slapi_value *v, char *s);
This function takes the following parameters:
Pointer to the value to be initialized. The pointer must not be NULL.
NULL terminated string used to initialize the value.
This function returns a pointer to the initialized Slapi_Value structure (itself).
This function initializes a Slapi_Value structure with the value contained in the string. The string is not duplicated and must be freed.
The string will be freed when the Slapi_Value structure is freed from memory by calling slapi_value_free().
slapi_value_new_string_passin()
slapi_value_set_string_passin()
Allocates a new Slapi_Value structure.
#include "slapi-plugin.h" Slapi_Value * slapi_value_new();
This function does not take any parameters.
This function returns a pointer to the newly allocated Slapi_Value structure. If space cannot be allocated (for example, if no more virtual memory exists), the slapd program terminates.
This function returns an empty Slapi_Value structure. You can call other functions of the API to set the value.
When you are no longer using the value, free it from memory by calling slapi_value_free().
Allocates a new Slapi_Value structure and initializes it from a berval structure.
#include "slapi-plugin.h" Slapi_Value * slapi_value_new_berval(const struct berval *bval);
This function takes the following parameter:
Pointer to the berval structure used to initialize the newly allocated Slapi_Value.
This function returns a pointer to the newly allocated Slapi_Value. If space cannot be allocated (for example, if no more virtual memory exists), the slapd program will terminate.
This function returns a Slapi_Value structure containing a value duplicated from the berval structure passed as the parameter.
When you are no longer using the value, you should free it from memory by calling slapi_value_free().
Allocates a new Slapi_Value structure and initializes it from a string.
#include "slapi-plugin.h" Slapi_Value * slapi_value_new_string(const char *s);
This function takes the following parameter:
NULL terminated string used to initialize the newly allocated Slapi_Value.
This function returns a pointer to the newly allocated Slapi_Value. If space cannot be allocated (for example, if no more virtual memory exists), the slapd program will terminate.
This function returns a Slapi_Value structure containing a value duplicated from the string passed as the parameter.
When you are no longer using the value, you should free it from memory by calling slapi_value_free().
Allocates a new Slapi_Value structure and initializes it from a string.
#include "slapi-plugin.h" Slapi_Value * slapi_value_new_string_passin ( char *s );
This function takes the following parameter:
NULL terminated string used to initialize the newly allocated Slapi_Value structure.
This function returns a pointer to a newly allocated Slapi_Value structure. If space cannot be allocated (for example, if no virtual memory exists), the slapd program terminates.
This function returns a Slapi_Value structure containing the string passed as the parameter. The string passed in must not be freed from memory.
The value should be freed by the caller, using slapi_value_free() .
Allocates a new Slapi_Value structure and initializes it from another Slapi_Value structure.
#include "slapi-plugin.h" Slapi_Value * slapi_value_new_value(const Slapi_Value *v);
This function takes the following parameter:
Pointer to the Slapi_Value structure used to initialize the newly allocated Slapi_Value.
This function returns a pointer to the newly allocated Slapi_Value. If space cannot be allocated (for example, if no more virtual memory exists), the slapd program will terminated.
This function returns a Slapi_Value structure containing a value duplicated from the Slapi_Value structure passed as the parameter. This function is identical to slapi_value_dup() .
When you are no longer using the value, you should free it from memory by calling the slapi_value_free() function/
Sets the value in a Slapi_Value structure.
#include "slapi-plugin.h" Slapi_Value * slapi_value_set(Slapi_Value *value, void *val, unsigned long len);
This function takes the following parameters:
Pointer to the Slapi_Value in which to set the value.
Pointer to the value.
Length of the value.
This function returns a pointer to the Slapi_Value with the value set.
This function sets the value in the Slapi_Value structure. The value is a duplicate of the data pointed to by val and of length len.
If the pointer to the Slapi_Value structure is NULL, then nothing is done and the function returns NULL. If the Slapi_Value structure already contains a value, it is freed from memory before the new one is set.
When you are no longer using the Slapi_Value structure, you should free it from memory by calling slapi_value_free() .
Copies the value from a berval structure into a Slapi_Value structure.
#include "slapi-plugin.h" Slapi_Value * slapi_value_set_berval(Slapi_Value *value, const struct berval *bval );
This function takes the following parameters:
Pointer to the Slapi_Value structure in which to set the value.
Pointer to the berval value to be copied.
This function returns the pointer to the Slapi_Value structure passed as the parameter, or NULL if it was NULL.
This function sets the value of Slapi_Value structure. The value is duplicated from the berval structure bval.
If the pointer to the Slapi_Value structure is NULL, nothing is done and the function returns NULL . If the Slapi_Value already contains a value, it is freed from memory before the new one is set.
When you are no longer using the Slapi_Value structure, you should free it from memory by calling slapi_value_free() .
Sets the integer value of a Slapi_Value structure.
#include "slapi-plugin.h" int slapi_value_set_int(Slapi_Value *value, int intVal);
This function takes the following parameters:
Pointer to the Slapi_Value structure in which to set the integer value.
The integer containing the value to set.
This function returns one of the following values:
0 if the value is set.
-1 if the pointer to the Slapi_Value is NULL.
This function sets the value of the Slapi_Value structure from the integer intVal.
If the pointer to the Slapi_Value structure is NULL, nothing is done and the function returns -1. If the Slapi_Value already contains a value, it is freed from memory before the new one is set.
When you are no longer using the Slapi_Value structure, you should free it from memory by calling slapi_value_free() .
Copies a string in the value of a Slapi_Value structure.
#include "slapi-plugin.h" int slapi_value_set_string(Slapi_Value *value, const char *strVal);
This function takes the following parameters:
Pointer to the Slapi_Value structure in which to set the value.
The string containing the value to set.
This function returns one of the following:
0 if value is set.
-1 if the pointer to the Slapi_Value is NULL.
This function sets the value of the Slapi_Value structure by duplicating the string strVal.
If the pointer to the Slapi_Value is NULL, nothing is done and the function returns -1. If the Slapi_Value already contains a value, it is freed from memory before the new one is set.
When you are no longer using the Slapi_Value structure, you should free it from memory by calling slapi_value_free() .
Sets the value of a Slapi_Value structure from a string.
#include "slapi-plugin.h" int slapi_value_set_string_passin(Slapi_Value *value, char *strVal);
This function takes the following parameters:
Pointer to the Slapi_Value structure in which to set the value.
The string containing the value to set.
This function returns 0 if the value is set, or -1 if the pointer to the Slapi_Value structure is NULL.
This function sets the value of Slapi_Value structure with the string strVal. If the Slapi_Value structure already contains a value, it is freed from memory before the new one is set. The string strVal must not be freed from memory.
Use slapi_value_free() when you are finished working with the structure to free it from memory.
Copies the value of a Slapi_Value structure into a Slapi_Value structure.
#include "slapi-plugin.h" Slapi_Value * slapi_value_set_value(Slapi_Value *value, const Slapi_Value *vfrom);
This function takes the following parameters:
Pointer to the Slapi_Value in which to set the value.
Pointer to the Slapi_Value from which to get the value.
This function returns the pointer to the Slapi_Value structure passed as the parameter, or NULL if it was NULL.
This function sets the value of the Slapi_Value structure. This value is duplicated from the Slapi_Value structure vfrom. vfrom must not be NULL.
If the pointer to the Slapi_Value is NULL, nothing is done and the function returns NULL. If the Slapi_Value already contains a value, it is freed from before the new one is set.
When you are no longer using the Slapi_Value structure, you should free it from memory by calling slapi_value_free() .
Adds a Slapi_Value in the Slapi_ValueSet structure.
#include "slapi-plugin.h" void slapi_valueset_add_value_optimised(Slapi_ValueSet *vs, const Slapi_Value *addval, void *syntax_plugin);
This function takes the following parameters:
Pointer to the Slapi_ValueSet structure to which to add the value.
Pointer to the Slapi_Value to add to the Slapi_ValueSet.
Pointer to the plug-in for this attribute type, obtained using slapi_attr_get_plugin().
This function adds a value in the form of a Slapi_Value structure in a Slapi_ValueSet structure.
The value is duplicated from the Slapi_Value structure, which can be freed from memory after using it without altering the Slapi_ValueSet structure.
This function does not verify if the value is already present in the Slapi_ValueSet structure. You can manually check this using slapi_valueset_first_value_const() and slapi_valueset_next_value_const() .
slapi_valueset_first_value_const()
slapi_valueset_next_value_const()
Returns the number of values contained in a Slapi_ValueSet structure.
#include "slapi-plugin.h" int slapi_valueset_count(const Slapi_ValueSet *vs);
This function takes the following parameter:
Pointer to the Slapi_ValueSet structure of which you wish to get the count.
This function returns the number of values contained in the Slapi_ValueSet structure.
Frees the values contained in the Slapi_ValueSet structure.
#include "slapi-plugin.h" void slapi_valueset_done(Slapi_ValueSet *vs);
This function takes the following parameter:
Pointer to the Slapi_ValueSet structure from which you wish to free its values.
Use this function when you are no longer using the values, but you want to reuse the Slapi_ValueSet structure for a new set of values.
Finds the value in a value set using the syntax of an attribute.
#include "slapi-plugin.h" const Slapi_Value *slapi_valueset_find(const Slapi_Attr *a, const Slapi_ValueSet *vs, const Slapi_Value *v);
This function takes the following parameters:
Pointer to the attribute. This is used to determine the syntax of the values and how to match them.
Pointer to the Slapi_ValueSet structure from which you wish to get the value.
Address of the pointer to the Slapi_Value structure for the returned value.
This function returns a pointer to the value in the value set if the value was found. Otherwise, it returns NULL.
Use this function to check for duplicate values in an attribute.
Gets the first value of a Slapi_ValueSet structure.
#include "slapi-plugin.h" int slapi_valueset_first_value_const(const Slapi_ValueSet *vs, const Slapi_Value **v);
This function takes the following parameters:
Pointer to the Slapi_ValueSet structure from which you wish to get the value.
Address of the pointer to the Slapi_Value structure for the returned value.
This function returns the index of the value in the Slapi_ValueSet, or -1 if there was no value.
Call this function when you wish to get the first value of a Slapi_ValueSet, or you wish to iterate through all of the values. The returned value is the index of the value in the Slapi_ValueSet structure and must be passed to call slapi_valueset_next_value_const() to get the next value.
This function gives a pointer to the actual value within the Slapi_ValueSet. You should not free it from memory.
slapi_valueset_next_value_const()
Frees the specified Slapi_ValueSet structure and its members from memory.
#include "slapi-plugin.h" void slapi_valueset_free(Slapi_ValueSet *vs)
This function takes the following parameter:
Pointer to the Slapi_ValueSet to free.
This function frees the Slapi_ValueSet structure and its members if it is not NULL. Call this function when you are finished working with the structure.
Resets a Slapi_ValueSet structure to no values.
#include "slapi-plugin.h" void slapi_valueset_init(Slapi_ValueSet *vs);
This function takes the following parameter:
Pointer to the Slapi_ValueSet to reset.
This function initializes the values contained in the Slapi_ValueSet structure (sets them to 0). This does not free the values contained in the structure. To free the values, use slapi_valueset_done() .
When you are no longer using the Slapi_ValueSet structure, you should free it from memory by using slapi_valueset_free() .
Allocates a new Slapi_ValueSet structure.
#include "slapi-plugin.h" Slapi_ValueSet *slapi_valueset_new( void );
This function takes no parameters.
This function returns a a pointer to the newly allocated Slapi_ValueSet structure. If no space could be allocated (for example, if no more virtual memory exists), the slapd program terminates.
This function returns an empty Slapi_ValueSet structure. You can call other slapi_valueset functions of the API to set the values in the Slapi_ValueSet structure.
When you are no longer using the value, you should free it from memory by calling slapi_valueset_free().
Gets the next value from a Slapi_ValueSet structure.
#include "slapi-plugin.h" int slapi_valueset_next_value_const(const Slapi_ValueSet *vs, int index, const Slapi_Value **v);
This function takes the following parameters:
Pointer to the Slapi_ValueSet structure from which you wish to get the value.
Value returned by the previous call to slapi_valueset_next_value_const() or slapi_valueset_first_value_const().
Address to the pointer to the Slapi_Value structure for the returned value.
This function returns the index of the value in the Slapi_ValueSet, or -1 if there was no more value or the input index is incorrect.
Call this function when you wish to get the next value of a Slapi_ValueSet, after having first called slapi_valueset_first_value_const(). The returned value is the index of the value in the Slapi_ValueSet structure and must be passed to slapi_valueset_next_value_const().
This function gives a pointer to the actual value within the Slapi_ValueSet and you should not free it from memory.
slapi_valueset_first_value_const()
Copies the values of Slapi_Mod structure into a Slapi_ValueSet structure.
#include "slapi-plugin.h" void slapi_valueset_set_from_smod(Slapi_ValueSet *vs, Slapi_Mod *smod);
This function takes the following parameters:
Pointer to the Slapi_ValueSet structure into which you wish to copy the values.
Pointer to the Slapi_Mod structure from which you wish to copy the values.
This function copies all of the values contained in a Slapi_Mod structure into a Slapi_ValueSet structure.
This function does not verify that the Slapi_ValueSet structure already contains values, so it is your responsibility to verify that there are no values prior to calling this function. If you do not verify this, the allocated memory space will leak. You can free existing values by calling slapi_valueset_done().
Initializes a Slapi_ValueSet structure from another Slapi_ValueSet structure.
#include "slapi-plugin.h" void slapi_valueset_set_valueset_optimised(Slapi_ValueSet *vs1, const Slapi_ValueSet *vs2, void *syntax_plugin);
This function takes the following parameters:
Pointer to the Slapi_ValueSet structure to which you wish to set the values.
Pointer to the Slapi_ValueSet structure from which you wish to copy the values.
Pointer to the plug-in for this attribute type, obtained using slapi_attr_type2plugin().
This function initializes a Slapi_ValueSet structure by copying the values contained in another Slapi_ValueSet structure.
The function does not verify that the Slapi_ValueSet structure contains values, so it is your responsibility to verify that there are no values prior to calling this function. If you do not verify this, the allocated memory space will leak. You can free existing values by calling slapi_valueset_done().
Free a virtual attribute.
#include "slapi-plugin.h" void slapi_vattr_attr_free(Slapi_Attr **a, int buffer_flags);
This function takes the following parameters:
Attribute to free
Bitmask of SLAPI_VIRTUALATTRS_RETURNED_POINTERS, SLAPI_VIRTUALATTRS_RETURNED_COPIES, SLAPI_VIRTUALATTRS_REALATTRS_ONLY , SLAPI_VIRTUALATTRS_RETURNED_TYPENAME_ONLY
Use this function to frees a virtual attribute when finished with it.
Free a list of virtual attributes.
#include "slapi-plugin.h" void slapi_vattr_attrs_free(vattr_type_thang **types, int flags);
This function takes the following parameters:
List of attributes to free
Bitmask of SLAPI_REALATTRS_ONLY, SLAPI_VIRTUALATTRS_ONLY , SLAPI_VIRTUALATTRS_REQUEST_POINTERS, SLAPI_VIRTUALATTRS_LIST_OPERATIONAL_ATTRS passed as flags to slapi_vattr_list_attrs()
Use this function to frees a list of virtual attributes obtained using slapi_vattr_list_attrs().
Test a filter against an entry that may contain virtual attributes.
#include "slapi-plugin.h" int slapi_vattr_filter_test( Slapi_PBlock *pb, Slapi_Entry *e, struct slapi_filter *f, int verify_access);
This function takes the following parameters:
Parameter block containing the search request
Candidate entry
Filter to check
1 to verify access to the entry before checking, 0 otherwise
This function checks whether the candidate entry e matches the filter f. It does not support LDAP v3 extensible match filters.
This functions returns 0 if the filter matches, or if the filter is NULL. Otherwise, it returns -1.
Check whether an attribute may be virtual.
#include "slapi-plugin.h" int slapi_vattr_is_registered(const char *attrtype, const char *scopendn);
This function takes the following parameters:
Attribute type to check
Base of the scope to check
This function checks whether a virtual attribute service is registered for the attribute type in the scope specified.
The fact that a virtual attribute service is registered for an attribute type does not guarantee that the service can currently provide a value.
This functions returns 1 if the attribute may be virtual in the scope specified. Otherwise, it returns 0.
Check whether an attribute is virtually generated.
#include "slapi-plugin.h" int slapi_vattr_is_virtual( Slapi_Entry *e, const char *attrtype, Slapi_Value *v);
This function takes the following parameters:
Entry to check.
Attribute type to check.
Not currently used.
This functions returns 1 if the attribute value is virtually generated. Otherwise, it returns 0.
Get a list of the real and virtual attributes for an entry.
#include "slapi-plugin.h" int slapi_vattr_list_attrs(Slapi_Entry *e, vattr_type_thang **types, int flags, int *buffer_flags);
This function takes the following parameters:
Get attributes for this entry
List of attributes set by the server
Bitmask of SLAPI_REALATTRS_ONLY, SLAPI_VIRTUALATTRS_ONLY , SLAPI_VIRTUALATTRS_REQUEST_POINTERS, SLAPI_VIRTUALATTRS_LIST_OPERATIONAL_ATTRS determining what to set in the list
Bitmask of SLAPI_VIRTUALATTRS_RETURNED_POINTERS, SLAPI_VIRTUALATTRS_RETURNED_COPIES, SLAPI_VIRTUALATTRS_REALATTRS_ONLY , SLAPI_VIRTUALATTRS_RETURNED_TYPENAME_ONLY determining how the virtual attributes should be handled
This function sets types to point to a full list of attributes for the entry e depending on the flags parameter. Use the buffer_flags parameter when freeing the list.
Use slapi_vattr_values_type_thang_get() to access the attributes.
This functions returns 1 if the attribute may be virtual in the scope specified. Otherwise, it returns 0.
When finished with the types list, free it using slapi_vattr_attrs_free().
slapi_vattr_values_type_thang_get()
Compares attribute type and name in a given entry.
#include "slapi-plugin.h" int slapi_vattr_value_compare( Slapi_Entry *e, char *type, Slapi_Value *test_this, int *result, int flags);
This function takes the following parameters:
Entry to be compared.
Attribute type name.
Value to be tested.
0 if the compare is true, 1 if the compare is false.
Not used. You should pass 0 for this parameter.
This function returns 0 for success, in which case result contains the result of the comparison.
Otherwise, this function returns the following:
SLAPI_VIRTUALATTRS_LOOP_DETECTED (failed to evaluate a virtual attribute).
SLAPI_VIRTUAL_NOT_FOUND (type not recognized by any virtual attribute and not a real attr in entry).
ENOMEM (memory error).
There is no need to call slapi_vattr_values_free() after calling this function.
Frees the value set and type names.
#include "slapi-plugin.h" void slapi_vattr_values_free(Slapi_ValueSet **value, char **actual_type_name, int flags);
This function takes the following parameters:
Value set to be freed.
List of type names.
The buffer flags returned from slapi_vattr_values_get_ex() . This contains information that this function needs to determine which objects need to be freed.
This function should be used to free the value set and type names returned from slapi_vattr_values_get_ex().
Returns the values for an attribute type from an entry.
#include "slapi-plugin.h" int slapi_vattr_values_get_ex(Slapi_Entry *e, char *type, Slapi_ValueSet*** results, int **type_name_disposition, char ***actual_type_name, int flags, int *buffer_flags, int *subtype_count);
This function takes the following parameters:
Entry from which to get the values.
Attribute type name.
Pointer to result set.
Matching result.
Type name as found.
Bit mask of options. Valid values are as follows:
SLAPI_REALATTRS_ONLY
SLAPI_VIRTUALATTRS_ONLY
SLAPI_VIRTUALATTRS_REQUEST_POINTERS
SLAPI_VIRTUALATTRS_LIST_OPERATIONAL_ATTRS
Bit mask to be used as input flags for slapi_vattr_values_free() .
Number of subtypes matched.
This function returns 0 for success, in which case:
results contains the current values for type all of the subtypes in e.
type_name_disposition contains information on how each type was matched. Valid values are:
SLAPI_VIRTUALATTRS_TYPE_NAME_MATCHED_EXACTLY_OR_ALIAS
SLAPI_VIRTUALATTRS_TYPE_NAME_MATCHED_SUBTYPE
actual_type_name contains the type name as found.
buffer_flags contains the bit mask to be used as input flags for slapi_vattr_values_free().
subtype_count contains the number of subtypes matched.
Otherwise, this function returns the following
SLAPI_VIRTUALATTRS_LOOP_DETECTED (failed to evaluate a virtual attribute).
SLAPI_VIRTUAL_NOT_FOUND (type not recognized by any virtual attribute and no real attribute in entry).
ENOMEM (memory error).
This function returns the values for an attribute type from an entry, including the values for any subtypes of the specified attribute type. The routine will return the values of virtual attributes in that entry if requested to do so.
slapi_vattr_values_free() should be used to free the returned result set and type names, passing the buffer_flags value returned from this routine.
Get values from a list of the real and virtual attributes for an entry.
#include "slapi-plugin.h" int slapi_vattr_values_type_thang_get(Slapi_Entry *e, vattr_type_thang *type_thang, Slapi_ValueSet** results, int *type_name_disposition, char **actual_type_name, int flags, int *buffer_flags);
This function takes the following parameters:
Entry the attributes belong to
Real or virtual attribute type
Values for the attribute, set by the server
Set by the server to reflect how type name matched; one of SLAPI_VIRTUALATTRS_TYPE_NAME_MATCHED_EXACTLY_OR_ALIAS, SLAPI_VIRTUALATTRS_TYPE_NAME_MATCHED_SUBTYPE , SLAPI_VIRTUALATTRS_NOT_FOUND (type matched no real or virtual attribute on the entry), or SLAPI_VIRTUALATTRS_LOOP_DETECTED (could not evaluate the virtual attribute)
Set by the server to the actual type name found
Bitmask of SLAPI_REALATTRS_ONLY, SLAPI_VIRTUALATTRS_ONLY , SLAPI_VIRTUALATTRS_REQUEST_POINTERS, SLAPI_VIRTUALATTRS_LIST_OPERATIONAL_ATTRS applied when obtaining the list using slapi_vattr_list_attrs()
Set by the server to a bitmask of SLAPI_VIRTUALATTRS_RETURNED_POINTERS , SLAPI_VIRTUALATTRS_RETURNED_COPIES, SLAPI_VIRTUALATTRS_REALATTRS_ONLY , SLAPI_VIRTUALATTRS_RETURNED_TYPENAME_ONLY, useful for freeing the list
This function offers optimized access to values of attributes in a list set by slapi_vattr_list_attrs().
This function returns 0 for success, in which case:
results contains the current values for type all of the subtypes in e.
type_name_disposition contains information on how each type was matched. Valid values are
SLAPI_VIRTUALATTRS_TYPE_NAME_MATCHED_EXACTLY_OR_ALIAS
SLAPI_VIRTUALATTRS_TYPE_NAME_MATCHED_SUBTYPE
actual_type_name contains the type name as found.
buffer_flags contains the bit mask to be used as input flags for slapi_vattr_values_free().
subtype_count contains the number of subtypes matched.
Otherwise, this function returns the following
SLAPI_VIRTUALATTRS_LOOP_DETECTED (failed to evaluate a virtual attribute).
SLAPI_VIRTUAL_NOT_FOUND (type not recognized by any virtual attribute and not a real attr in entry).
ENOMEM (memory error).
Wait for a change in a condition variable.
#include "slapi-plugin.h" int slapi_wait_condvar(Slapi_CondVar *cvar,struct timeval *timeout);
This function takes the following parameter:
Condition variable on which to wait
NULL means block until notified. Otherwise, block until the time is up, then try again to acquire the lock.
This function enables thread synchronization using a wait/notify mechanism.
This function returns 1 if successful. Otherwise, it returns NULL.
Call slapi_notify_condvar() to notify other threads of a change to the condition variable.