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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
|
/** 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
/* bin.c - bin syntax routines */
/*
* This file actually implements four syntax plugins: OctetString, JPEG,
* Fax, and Binary.
*/
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include "syntax.h"
#define CERTIFICATE_SYNTAX_OID "1.3.6.1.4.1.1466.115.121.1.8"
#define CERTIFICATELIST_SYNTAX_OID "1.3.6.1.4.1.1466.115.121.1.9"
#define CERTIFICATEPAIR_SYNTAX_OID "1.3.6.1.4.1.1466.115.121.1.10"
#define SUPPORTEDALGORITHM_SYNTAX_OID "1.3.6.1.4.1.1466.115.121.1.49"
static int bin_filter_ava(Slapi_PBlock *pb, struct berval *bvfilter, Slapi_Value **bvals, int ftype, Slapi_Value **retVal);
static int bin_values2keys(Slapi_PBlock *pb, Slapi_Value **bvals, Slapi_Value ***ivals, int ftype);
static int bin_assertion2keys_ava(Slapi_PBlock *pb, Slapi_Value *bval, Slapi_Value ***ivals, int ftype);
static int bin_compare(struct berval *v1, struct berval *v2);
/*
* Attribute syntaxes. We treat all of these the same since the
* LDAP-specific encoding for all of them are simply strings of octets
* with no real content restrictions (even though the content is supposed
* to represent something specific). For this reason, we do no
* validation of the values for these syntaxes.
*/
static char *bin_names[] = {"Binary", "bin", BINARY_SYNTAX_OID, 0};
static char *octetstring_names[] = {"OctetString", OCTETSTRING_SYNTAX_OID, 0};
static char *jpeg_names[] = {"JPEG", JPEG_SYNTAX_OID, 0};
static char *fax_names[] = {"FAX", FAX_SYNTAX_OID, 0};
/* This syntax has "gone away" in RFC 4517, however we still use it for
* a number of attributes in our default schema. We should try to eliminate
* it's use and remove support for it. */
static Slapi_PluginDesc bin_pdesc = {
"bin-syntax", VENDOR, DS_PACKAGE_VERSION,
"binary attribute syntax plugin"};
static Slapi_PluginDesc octetstring_pdesc = {
"octetstring-syntax", VENDOR, DS_PACKAGE_VERSION,
"octet string attribute syntax plugin"};
static Slapi_PluginDesc jpeg_pdesc = {
"jpeg-syntax", VENDOR, DS_PACKAGE_VERSION,
"JPEG attribute syntax plugin"};
static Slapi_PluginDesc fax_pdesc = {
"fax-syntax", VENDOR, DS_PACKAGE_VERSION,
"Fax attribute syntax plugin"};
static const char *octetStringMatch_names[] = {"octetStringMatch", "2.5.13.17", NULL};
static const char *octetStringOrderingMatch_names[] = {"octetStringOrderingMatch", "2.5.13.18", NULL};
static char *octetStringCompat_syntaxes[] = {BINARY_SYNTAX_OID, JPEG_SYNTAX_OID, FAX_SYNTAX_OID, CERTIFICATE_SYNTAX_OID, CERTIFICATELIST_SYNTAX_OID, CERTIFICATEPAIR_SYNTAX_OID, SUPPORTEDALGORITHM_SYNTAX_OID, NULL};
static struct mr_plugin_def mr_plugin_table[] = {
{
{"2.5.13.17",
NULL,
"octetStringMatch",
"The octetStringMatch rule compares an assertion value of the Octet "
"String syntax to an attribute value of a syntax (e.g., the Octet "
"String or JPEG syntax) whose corresponding ASN.1 type is the OCTET "
"STRING ASN.1 type. "
"The rule evaluates to TRUE if and only if the attribute value and the "
"assertion value are the same length and corresponding octets (by "
"position) are the same.",
OCTETSTRING_SYNTAX_OID,
0,
octetStringCompat_syntaxes}, /* matching rule desc */
{
"octetStringMatch-mr",
VENDOR,
DS_PACKAGE_VERSION,
"octetStringMatch matching rule plugin"}, /* plugin desc */
octetStringMatch_names, /* matching rule name/oid/aliases */
NULL,
NULL,
bin_filter_ava,
NULL,
bin_values2keys,
bin_assertion2keys_ava,
NULL,
bin_compare,
NULL /* mr_normalize */
},
{
{"2.5.13.18",
NULL,
"octetStringOrderingMatch",
"The octetStringOrderingMatch rule compares an assertion value of the "
"Octet String syntax to an attribute value of a syntax (e.g., the "
"Octet String or JPEG syntax) whose corresponding ASN.1 type is the "
"OCTET STRING ASN.1 type. "
"The rule evaluates to TRUE if and only if the attribute value appears "
"earlier in the collation order than the assertion value. The rule "
"compares octet strings from the first octet to the last octet, and "
"from the most significant bit to the least significant bit within the "
"octet. The first occurrence of a different bit determines the "
"ordering of the strings. A zero bit precedes a one bit. If the "
"strings contain different numbers of octets but the longer string is "
"identical to the shorter string up to the length of the shorter "
"string, then the shorter string precedes the longer string.",
OCTETSTRING_SYNTAX_OID,
0,
octetStringCompat_syntaxes}, /* matching rule desc */
{
"octetStringOrderingMatch-mr",
VENDOR,
DS_PACKAGE_VERSION,
"octetStringOrderingMatch matching rule plugin"}, /* plugin desc */
octetStringOrderingMatch_names, /* matching rule name/oid/aliases */
NULL,
NULL,
bin_filter_ava,
NULL,
bin_values2keys,
bin_assertion2keys_ava,
NULL,
bin_compare,
NULL /* mr_normalize */
}};
/*
certificateExactMatch
certificateListExactMatch
certificatePairExactMatch
algorithmIdentifierMatch
certificateMatch
certificatePairMatch
certificateListMatch
*/
static size_t mr_plugin_table_size = sizeof(mr_plugin_table) / sizeof(mr_plugin_table[0]);
static int
matching_rule_plugin_init(Slapi_PBlock *pb)
{
return syntax_matching_rule_plugin_init(pb, mr_plugin_table, mr_plugin_table_size);
}
static int
register_matching_rule_plugins(void)
{
return syntax_register_matching_rule_plugins(mr_plugin_table, mr_plugin_table_size, matching_rule_plugin_init);
}
/*
* register_bin_like_plugin(): register all items for a bin-like plugin.
*/
static int
register_bin_like_plugin(Slapi_PBlock *pb, Slapi_PluginDesc *pdescp, char **names, char *oid)
{
int rc;
rc = slapi_pblock_set(pb, SLAPI_PLUGIN_VERSION,
(void *)SLAPI_PLUGIN_VERSION_01);
rc |= slapi_pblock_set(pb, SLAPI_PLUGIN_DESCRIPTION,
(void *)pdescp);
rc |= slapi_pblock_set(pb, SLAPI_PLUGIN_SYNTAX_FILTER_AVA,
(void *)bin_filter_ava);
rc |= slapi_pblock_set(pb, SLAPI_PLUGIN_SYNTAX_VALUES2KEYS,
(void *)bin_values2keys);
rc |= slapi_pblock_set(pb, SLAPI_PLUGIN_SYNTAX_ASSERTION2KEYS_AVA,
(void *)bin_assertion2keys_ava);
rc |= slapi_pblock_set(pb, SLAPI_PLUGIN_SYNTAX_NAMES,
(void *)names);
rc |= slapi_pblock_set(pb, SLAPI_PLUGIN_SYNTAX_OID,
(void *)oid);
return (rc);
}
int
bin_init(Slapi_PBlock *pb)
{
int rc;
slapi_log_err(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, "=> bin_init\n");
rc = register_bin_like_plugin(pb, &bin_pdesc, bin_names,
BINARY_SYNTAX_OID);
rc |= register_matching_rule_plugins();
slapi_log_err(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, "<= bin_init %d\n", rc);
return (rc);
}
int
octetstring_init(Slapi_PBlock *pb)
{
int rc;
slapi_log_err(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, "=> octetstring_init\n");
rc = register_bin_like_plugin(pb, &octetstring_pdesc, octetstring_names,
OCTETSTRING_SYNTAX_OID);
slapi_log_err(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, "<= octetstring_init %d\n", rc);
return (rc);
}
int
jpeg_init(Slapi_PBlock *pb)
{
int rc;
slapi_log_err(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, "=> jpeg_init\n");
rc = register_bin_like_plugin(pb, &jpeg_pdesc, jpeg_names,
JPEG_SYNTAX_OID);
slapi_log_err(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, "<= jpeg_init %d\n", rc);
return (rc);
}
int
fax_init(Slapi_PBlock *pb)
{
int rc;
slapi_log_err(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, "=> fax_init\n");
rc = register_bin_like_plugin(pb, &fax_pdesc, fax_names,
FAX_SYNTAX_OID);
slapi_log_err(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, "<= fax_init %d\n", rc);
return (rc);
}
static int
bin_filter_ava(Slapi_PBlock *pb __attribute__((unused)), struct berval *bvfilter, Slapi_Value **bvals, int ftype, Slapi_Value **retVal)
{
int i;
for (i = 0; (bvals != NULL) && (bvals[i] != NULL); i++) {
const struct berval *bv = slapi_value_get_berval(bvals[i]);
int rc = slapi_berval_cmp(bv, bvfilter);
switch (ftype) {
case LDAP_FILTER_GE:
if (rc >= 0) {
if (retVal) {
*retVal = bvals[i];
}
return (0);
}
break;
case LDAP_FILTER_LE:
if (rc <= 0) {
if (retVal) {
*retVal = bvals[i];
}
return (0);
}
break;
case LDAP_FILTER_EQUALITY:
if (rc == 0) {
if (retVal) {
*retVal = bvals[i];
}
return (0);
}
break;
}
}
if (retVal != NULL) {
*retVal = NULL;
}
return (-1);
}
static int
bin_values2keys(Slapi_PBlock *pb __attribute__((unused)), Slapi_Value **bvals, Slapi_Value ***ivals, int ftype)
{
int i;
if (NULL == ivals) {
return 1;
}
*ivals = NULL;
if (NULL == bvals) {
return 1;
}
if (ftype != LDAP_FILTER_EQUALITY) {
return (LDAP_PROTOCOL_ERROR);
}
for (i = 0; bvals[i] != NULL; i++) {
/* NULL */
}
(*ivals) = (Slapi_Value **)slapi_ch_malloc((i + 1) *
sizeof(Slapi_Value *));
for (i = 0; bvals[i] != NULL; i++) {
(*ivals)[i] = slapi_value_dup(bvals[i]);
}
(*ivals)[i] = NULL;
return (0);
}
static int
bin_assertion2keys_ava(Slapi_PBlock *pb __attribute__((unused)), Slapi_Value *bval, Slapi_Value ***ivals, int ftype)
{
Slapi_Value *tmpval = NULL;
size_t len;
if ((ftype != LDAP_FILTER_EQUALITY) &&
(ftype != LDAP_FILTER_EQUALITY_FAST)) {
return (LDAP_PROTOCOL_ERROR);
}
if (ftype == LDAP_FILTER_EQUALITY_FAST) {
/* With the fast option, we are trying to avoid creating and freeing
* a bunch of structures - we just do one malloc here - see
* ava_candidates in filterentry.c
*/
len = slapi_value_get_length(bval);
tmpval = (*ivals)[0];
if (len > tmpval->bv.bv_len) {
tmpval->bv.bv_val = (char *)slapi_ch_malloc(len);
}
tmpval->bv.bv_len = len;
memcpy(tmpval->bv.bv_val, slapi_value_get_string(bval), len);
} else {
(*ivals) = (Slapi_Value **)slapi_ch_malloc(2 * sizeof(Slapi_Value *));
(*ivals)[0] = slapi_value_dup(bval);
(*ivals)[1] = NULL;
}
return (0);
}
#define BV_EMPTY(bv) ((!bv || !bv->bv_len || !bv->bv_val))
static int
bin_compare(
struct berval *v1,
struct berval *v2)
{
int rc = 0;
if (BV_EMPTY(v1) && BV_EMPTY(v2)) {
rc = 0; /* empty == empty */
} else if (BV_EMPTY(v1) && !BV_EMPTY(v2)) {
rc = 1; /* something in v2 always greater than empty v1 */
} else if (!BV_EMPTY(v1) && BV_EMPTY(v2)) {
rc = -1; /* something in v1 always greater than empty v2 */
} else { /* both have actual data */
rc = slapi_berval_cmp(v1, v2);
}
return rc;
}
|