1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
*
* License: GPL (version 3 or any later version).
* See LICENSE for details.
* END COPYRIGHT BLOCK **/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/***********************************************************************
** NAME
** utils.c
**
** DESCRIPTION
**
**
** AUTHOR
** <rweltman@netscape.com>
**
***********************************************************************/
/***********************************************************************
** Includes
***********************************************************************/
#include "plugin-utils.h"
#include "nspr.h"
static char *plugin_name = "utils";
/* ------------------------------------------------------------ */
/*
* op_error - Record (and report) an operational error.
*/
int
op_error(int internal_error)
{
slapi_log_err(SLAPI_LOG_PLUGIN, plugin_name,
"Internal error: %d\n", internal_error);
return LDAP_OPERATIONS_ERROR;
}
/* ------------------------------------------------------------ */
/*
* readPblockAndEntry - search for and read an entry
* Return:
* A pblock containing the entry, or NULL
*/
Slapi_PBlock *
readPblockAndEntry(Slapi_DN *baseDN, const char *filter, char *attrs[])
{
Slapi_PBlock *spb = NULL;
BEGIN
int sres;
/* Perform the search - the new pblock needs to be freed */
spb = slapi_search_internal(slapi_sdn_get_dn(baseDN), LDAP_SCOPE_BASE,
(char *)filter, NULL, attrs, 0);
if (!spb) {
op_error(20);
break;
}
if (slapi_pblock_get(spb, SLAPI_PLUGIN_INTOP_RESULT, &sres)) {
op_error(21);
break;
} else if (sres) {
op_error(22);
break;
}
END
return spb;
}
/* ------------------------------------------------------------ */
/*
* hasObjectClass - read an entry and check if it has a
* particular object class value
* Return:
* 1 - the entry contains the object class value
* 0 - the entry doesn't contain the object class value
*/
int
entryHasObjectClass(Slapi_PBlock *pb __attribute__((unused)), Slapi_Entry *e, const char *objectClass)
{
Slapi_Attr *attr;
Slapi_Value *v;
const struct berval *bv;
int vhint;
if (slapi_entry_attr_find(e, "objectclass", &attr)) {
return 0; /* no objectclass values! */
}
/*
* Check each of the object class values in turn.
*/
for (vhint = slapi_attr_first_value(attr, &v);
vhint != -1;
vhint = slapi_attr_next_value(attr, vhint, &v)) {
bv = slapi_value_get_berval(v);
if (NULL != bv && NULL != bv->bv_val &&
!strcasecmp(bv->bv_val, objectClass)) {
return 1;
}
}
return 0;
}
/* ------------------------------------------------------------ */
/*
* dnHasObjectClass - read an entry if it has a particular object class
* Return:
* A pblock containing the entry, or NULL
*/
Slapi_PBlock *
dnHasObjectClass(Slapi_DN *baseDN, const char *objectClass)
{
char *filter = NULL;
Slapi_PBlock *spb = NULL;
BEGIN
Slapi_Entry **entries;
char *attrs[2];
/* Perform the search - the new pblock needs to be freed */
attrs[0] = "objectclass";
attrs[1] = NULL;
filter = PR_smprintf("objectclass=%s", objectClass);
if (!(spb = readPblockAndEntry(baseDN, filter, attrs))) {
break;
}
if (slapi_pblock_get(spb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES,
&entries)) {
op_error(23);
break;
}
/*
* Can only be one entry returned on a base search; just check
* the first one
*/
if (!*entries) {
/* Clean up */
slapi_free_search_results_internal(spb);
slapi_pblock_destroy(spb);
spb = NULL;
}
END
if (filter)
{
PR_smprintf_free(filter);
}
return spb;
}
/* ------------------------------------------------------------ */
/*
* dnHasAttribute - read an entry if it has a particular attribute
* Return:
* The entry, or NULL
*/
Slapi_PBlock *
dnHasAttribute(const char *baseDN, const char *attrName)
{
Slapi_PBlock *spb = NULL;
char *filter = NULL;
BEGIN
int sres;
Slapi_Entry **entries;
char *attrs[2];
/* Perform the search - the new pblock needs to be freed */
attrs[0] = (char *)attrName;
attrs[1] = NULL;
filter = PR_smprintf("%s=*", attrName);
spb = slapi_search_internal((char *)baseDN, LDAP_SCOPE_BASE,
filter, NULL, attrs, 0);
if (!spb) {
op_error(20);
break;
}
if (slapi_pblock_get(spb, SLAPI_PLUGIN_INTOP_RESULT, &sres)) {
op_error(21);
break;
} else if (sres) {
op_error(22);
break;
}
if (slapi_pblock_get(spb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES,
&entries)) {
op_error(23);
break;
}
/*
* Can only be one entry returned on a base search; just check
* the first one
*/
if (!*entries) {
/* Clean up */
slapi_free_search_results_internal(spb);
slapi_pblock_destroy(spb);
spb = NULL;
}
END
if (filter)
{
PR_smprintf_free(filter);
}
return spb;
}
|