2000-01-30 03:43:19 +08:00
|
|
|
/* schema_init.c - init builtin schema */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
2000-01-30 03:43:19 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2001-09-07 10:08:32 +08:00
|
|
|
#include <limits.h>
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
#include <ac/ctype.h>
|
2001-09-02 01:10:43 +08:00
|
|
|
#include <ac/errno.h>
|
2000-01-30 03:43:19 +08:00
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "ldap_pvt.h"
|
2002-02-15 05:10:13 +08:00
|
|
|
#include "lber_pvt.h"
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-07-22 07:13:04 +08:00
|
|
|
#include "ldap_utf8.h"
|
|
|
|
|
2000-09-23 06:19:46 +08:00
|
|
|
#include "lutil_hash.h"
|
|
|
|
#define HASH_BYTES LUTIL_HASH_BYTES
|
|
|
|
#define HASH_CONTEXT lutil_HASH_CTX
|
|
|
|
#define HASH_Init(c) lutil_HASHInit(c)
|
|
|
|
#define HASH_Update(c,buf,len) lutil_HASHUpdate(c,buf,len)
|
|
|
|
#define HASH_Final(d,c) lutil_HASHFinal(d,c)
|
2000-09-23 04:47:46 +08:00
|
|
|
|
2000-06-20 11:55:40 +08:00
|
|
|
/* recycled validatation routines */
|
2000-06-21 01:05:15 +08:00
|
|
|
#define berValidate blobValidate
|
2000-06-21 09:12:29 +08:00
|
|
|
|
|
|
|
/* unimplemented pretters */
|
2001-12-06 11:24:31 +08:00
|
|
|
#define integerPretty NULL
|
2000-06-20 11:55:40 +08:00
|
|
|
|
|
|
|
/* recycled matching routines */
|
2000-09-12 08:32:08 +08:00
|
|
|
#define bitStringMatch octetStringMatch
|
2001-01-18 05:02:11 +08:00
|
|
|
#define numericStringMatch caseIgnoreIA5Match
|
|
|
|
#define objectIdentifierMatch caseIgnoreIA5Match
|
|
|
|
#define telephoneNumberMatch caseIgnoreIA5Match
|
2000-09-08 07:46:07 +08:00
|
|
|
#define telephoneNumberSubstringsMatch caseIgnoreIA5SubstringsMatch
|
2001-01-18 05:02:11 +08:00
|
|
|
#define generalizedTimeMatch caseIgnoreIA5Match
|
|
|
|
#define generalizedTimeOrderingMatch caseIgnoreIA5Match
|
2000-09-06 06:07:08 +08:00
|
|
|
#define uniqueMemberMatch dnMatch
|
2002-03-26 01:08:38 +08:00
|
|
|
#define integerFirstComponentMatch integerMatch
|
2000-06-20 11:55:40 +08:00
|
|
|
|
2000-07-25 05:29:30 +08:00
|
|
|
/* approx matching rules */
|
|
|
|
#define directoryStringApproxMatchOID "1.3.6.1.4.1.4203.666.4.4"
|
2001-01-18 00:35:53 +08:00
|
|
|
#define directoryStringApproxMatch approxMatch
|
|
|
|
#define directoryStringApproxIndexer approxIndexer
|
|
|
|
#define directoryStringApproxFilter approxFilter
|
2000-07-25 05:29:30 +08:00
|
|
|
#define IA5StringApproxMatchOID "1.3.6.1.4.1.4203.666.4.5"
|
2001-01-18 00:35:53 +08:00
|
|
|
#define IA5StringApproxMatch approxMatch
|
2000-10-25 04:25:37 +08:00
|
|
|
#define IA5StringApproxIndexer approxIndexer
|
2001-01-18 00:35:53 +08:00
|
|
|
#define IA5StringApproxFilter approxFilter
|
2000-07-25 05:29:30 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
/* ordering matching rules */
|
2000-09-04 02:04:08 +08:00
|
|
|
#define caseIgnoreOrderingMatch caseIgnoreMatch
|
|
|
|
#define caseExactOrderingMatch caseExactMatch
|
2002-03-26 01:08:38 +08:00
|
|
|
#define integerOrderingMatch integerMatch
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2000-06-20 11:55:40 +08:00
|
|
|
/* unimplemented matching routines */
|
2000-06-21 01:05:15 +08:00
|
|
|
#define caseIgnoreListMatch NULL
|
|
|
|
#define caseIgnoreListSubstringsMatch NULL
|
|
|
|
#define protocolInformationMatch NULL
|
|
|
|
|
2002-02-19 04:06:50 +08:00
|
|
|
#ifdef SLAPD_ACI_ENABLED
|
2000-06-21 01:05:15 +08:00
|
|
|
#define OpenLDAPaciMatch NULL
|
2002-02-19 04:06:50 +08:00
|
|
|
#endif
|
|
|
|
#ifdef SLAPD_AUTHPASSWD
|
2000-06-21 01:05:15 +08:00
|
|
|
#define authPasswordMatch NULL
|
2002-02-19 04:06:50 +08:00
|
|
|
#endif
|
2000-06-20 11:55:40 +08:00
|
|
|
|
|
|
|
/* recycled indexing/filtering routines */
|
2001-07-28 06:54:43 +08:00
|
|
|
#define dnIndexer caseExactIgnoreIndexer
|
|
|
|
#define dnFilter caseExactIgnoreFilter
|
2001-11-17 02:10:37 +08:00
|
|
|
#define bitStringFilter octetStringFilter
|
|
|
|
#define bitStringIndexer octetStringIndexer
|
2000-06-21 01:05:15 +08:00
|
|
|
|
2001-05-03 08:59:47 +08:00
|
|
|
#define telephoneNumberIndexer caseIgnoreIA5Indexer
|
|
|
|
#define telephoneNumberFilter caseIgnoreIA5Filter
|
|
|
|
#define telephoneNumberSubstringsIndexer caseIgnoreIA5SubstringsIndexer
|
|
|
|
#define telephoneNumberSubstringsFilter caseIgnoreIA5SubstringsFilter
|
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
static MatchingRule *caseExactMatchingRule;
|
|
|
|
static MatchingRule *caseExactSubstringsMatchingRule;
|
|
|
|
static MatchingRule *integerFirstComponentMatchingRule;
|
|
|
|
|
|
|
|
static const struct MatchingRulePtr {
|
|
|
|
const char *oid;
|
|
|
|
MatchingRule **mr;
|
|
|
|
} mr_ptr [] = {
|
|
|
|
/* must match OIDs below */
|
|
|
|
{ "2.5.13.5", &caseExactMatchingRule },
|
|
|
|
{ "2.5.13.7", &caseExactSubstringsMatchingRule },
|
|
|
|
{ "2.5.13.29", &integerFirstComponentMatchingRule }
|
|
|
|
};
|
|
|
|
|
2001-07-28 06:54:43 +08:00
|
|
|
|
2002-04-16 04:42:42 +08:00
|
|
|
static char *bvcasechr( struct berval *bv, unsigned char c, ber_len_t *len )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
2002-01-17 08:18:57 +08:00
|
|
|
ber_len_t i;
|
2002-04-16 04:42:42 +08:00
|
|
|
char lower = TOLOWER( c );
|
|
|
|
char upper = TOUPPER( c );
|
2002-01-18 01:19:20 +08:00
|
|
|
|
|
|
|
if( c == 0 ) return NULL;
|
2002-01-17 08:18:57 +08:00
|
|
|
|
|
|
|
for( i=0; i < bv->bv_len; i++ ) {
|
|
|
|
if( upper == bv->bv_val[i] || lower == bv->bv_val[i] ) {
|
|
|
|
*len = i;
|
|
|
|
return &bv->bv_val[i];
|
|
|
|
}
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
2002-01-17 08:18:57 +08:00
|
|
|
|
|
|
|
return NULL;
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
2000-07-25 05:29:30 +08:00
|
|
|
|
2000-06-05 06:59:38 +08:00
|
|
|
static int
|
|
|
|
octetStringMatch(
|
|
|
|
int *matchp,
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t flags,
|
2000-06-05 06:59:38 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
int match = value->bv_len - ((struct berval *) assertedValue)->bv_len;
|
|
|
|
|
|
|
|
if( match == 0 ) {
|
|
|
|
match = memcmp( value->bv_val,
|
|
|
|
((struct berval *) assertedValue)->bv_val,
|
|
|
|
value->bv_len );
|
|
|
|
}
|
|
|
|
|
|
|
|
*matchp = match;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int octetStringIndexer(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-06-05 06:59:38 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2000-06-05 06:59:38 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-06-05 06:59:38 +08:00
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2000-06-05 06:59:38 +08:00
|
|
|
/* just count them */
|
|
|
|
}
|
|
|
|
|
2001-07-26 09:08:00 +08:00
|
|
|
/* we should have at least one value at this point */
|
|
|
|
assert( i > 0 );
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (i+1) );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-06-05 06:59:38 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2002-01-02 19:00:36 +08:00
|
|
|
values[i].bv_val, values[i].bv_len );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[i], &digest );
|
2000-06-05 06:59:38 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[i].bv_val = NULL;
|
2000-06-05 06:59:38 +08:00
|
|
|
|
|
|
|
*keysp = keys;
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int octetStringFilter(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-06-05 06:59:38 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2000-06-05 06:59:38 +08:00
|
|
|
{
|
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-06-05 06:59:38 +08:00
|
|
|
struct berval *value = (struct berval *) assertValue;
|
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * 2 );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-06-05 06:59:38 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
value->bv_val, value->bv_len );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( keys, &digest );
|
|
|
|
keys[1].bv_val = NULL;
|
2000-06-05 06:59:38 +08:00
|
|
|
|
|
|
|
*keysp = keys;
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-05-28 03:33:08 +08:00
|
|
|
static int
|
|
|
|
inValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *in )
|
|
|
|
{
|
|
|
|
/* any value allowed */
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
|
|
|
|
2000-01-30 03:43:19 +08:00
|
|
|
static int
|
2000-05-19 01:21:42 +08:00
|
|
|
blobValidate(
|
2000-01-30 03:43:19 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *in )
|
|
|
|
{
|
|
|
|
/* any value allowed */
|
2000-05-25 07:27:33 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-01-30 03:43:19 +08:00
|
|
|
}
|
|
|
|
|
2000-09-12 08:32:08 +08:00
|
|
|
static int
|
|
|
|
bitStringValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *in )
|
|
|
|
{
|
|
|
|
ber_len_t i;
|
|
|
|
|
|
|
|
/* very unforgiving validation, requires no normalization
|
|
|
|
* before simplistic matching
|
|
|
|
*/
|
|
|
|
if( in->bv_len < 3 ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
2001-05-30 14:06:14 +08:00
|
|
|
|
2001-11-17 02:10:37 +08:00
|
|
|
/*
|
|
|
|
* rfc 2252 section 6.3 Bit String
|
|
|
|
* bitstring = "'" *binary-digit "'"
|
|
|
|
* binary-digit = "0" / "1"
|
|
|
|
* example: '0101111101'B
|
|
|
|
*/
|
|
|
|
|
|
|
|
if( in->bv_val[0] != '\'' ||
|
|
|
|
in->bv_val[in->bv_len-2] != '\'' ||
|
|
|
|
in->bv_val[in->bv_len-1] != 'B' )
|
2000-09-12 08:32:08 +08:00
|
|
|
{
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
2001-11-17 02:10:37 +08:00
|
|
|
for( i=in->bv_len-3; i>0; i-- ) {
|
2000-09-12 08:32:08 +08:00
|
|
|
if( in->bv_val[i] != '0' && in->bv_val[i] != '1' ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-11-17 02:10:37 +08:00
|
|
|
static int
|
|
|
|
bitStringNormalize(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val,
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval *normalized )
|
2001-11-17 02:10:37 +08:00
|
|
|
{
|
|
|
|
/*
|
2001-12-29 23:01:10 +08:00
|
|
|
* A normalized bitString is has no extaneous (leading) zero bits.
|
2001-11-17 02:10:37 +08:00
|
|
|
* That is, '00010'B is normalized to '10'B
|
|
|
|
* However, as a special case, '0'B requires no normalization.
|
2001-12-29 23:01:10 +08:00
|
|
|
*/
|
2001-11-17 02:10:37 +08:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
/* start at the first bit */
|
|
|
|
p = &val->bv_val[1];
|
|
|
|
|
|
|
|
/* Find the first non-zero bit */
|
|
|
|
while ( *p == '0' ) p++;
|
|
|
|
|
|
|
|
if( *p == '\'' ) {
|
|
|
|
/* no non-zero bits */
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_str2bv( "\'0\'B", sizeof("\'0\'B") - 1, 1, normalized );
|
2001-11-17 02:10:37 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val = ch_malloc( val->bv_len + 1 );
|
2001-11-17 02:10:37 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val[0] = '\'';
|
|
|
|
normalized->bv_len = 1;
|
2001-11-17 02:10:37 +08:00
|
|
|
|
|
|
|
for( ; *p != '\0'; p++ ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val[normalized->bv_len++] = *p;
|
2001-11-17 02:10:37 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val[normalized->bv_len] = '\0';
|
2001-11-17 02:10:37 +08:00
|
|
|
|
|
|
|
done:
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2002-08-06 11:18:02 +08:00
|
|
|
static int
|
|
|
|
nameUIDValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *in )
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct berval dn;
|
|
|
|
|
|
|
|
if( in->bv_len == 0 ) return LDAP_SUCCESS;
|
|
|
|
|
|
|
|
ber_dupbv( &dn, in );
|
|
|
|
if( !dn.bv_val ) return LDAP_OTHER;
|
|
|
|
|
|
|
|
if( dn.bv_val[dn.bv_len-1] == 'B'
|
|
|
|
&& dn.bv_val[dn.bv_len-2] == '\'' )
|
|
|
|
{
|
|
|
|
/* assume presence of optional UID */
|
|
|
|
ber_len_t i;
|
|
|
|
|
|
|
|
for(i=dn.bv_len-3; i>1; i--) {
|
|
|
|
if( dn.bv_val[i] != '0' && dn.bv_val[i] != '1' ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( dn.bv_val[i] != '\'' || dn.bv_val[i-1] != '#' ) {
|
|
|
|
ber_memfree( dn.bv_val );
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* trim the UID to allow use of dnValidate */
|
|
|
|
dn.bv_val[i-1] = '\0';
|
|
|
|
dn.bv_len = i-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = dnValidate( NULL, &dn );
|
|
|
|
|
|
|
|
ber_memfree( dn.bv_val );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nameUIDNormalize(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val,
|
|
|
|
struct berval *normalized )
|
|
|
|
{
|
|
|
|
struct berval out;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
ber_dupbv( &out, val );
|
|
|
|
if( out.bv_len != 0 ) {
|
|
|
|
struct berval uidin = { 0, NULL };
|
|
|
|
struct berval uidout = { 0, NULL };
|
|
|
|
|
|
|
|
if( out.bv_val[out.bv_len-1] == 'B'
|
|
|
|
&& out.bv_val[out.bv_len-2] == '\'' )
|
|
|
|
{
|
|
|
|
/* assume presence of optional UID */
|
|
|
|
uidin.bv_val = strrchr( out.bv_val, '#' );
|
|
|
|
|
|
|
|
if( uidin.bv_val == NULL ) {
|
|
|
|
free( out.bv_val );
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
uidin.bv_len = out.bv_len - (uidin.bv_val - out.bv_val);
|
|
|
|
out.bv_len -= uidin.bv_len--;
|
|
|
|
|
|
|
|
/* temporarily trim the UID */
|
|
|
|
*(uidin.bv_val++) = '\0';
|
|
|
|
|
|
|
|
rc = bitStringNormalize( syntax, &uidin, &uidout );
|
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
free( out.bv_val );
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USE_DN_NORMALIZE
|
|
|
|
rc = dnNormalize2( NULL, &out, normalized );
|
|
|
|
#else
|
|
|
|
rc = dnPretty2( NULL, &out, normalized );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
free( out.bv_val );
|
|
|
|
free( uidout.bv_val );
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( uidout.bv_len ) {
|
|
|
|
normalized->bv_val = ch_realloc( normalized->bv_val,
|
|
|
|
normalized->bv_len + uidout.bv_len + sizeof("#") );
|
|
|
|
|
|
|
|
/* insert the separator */
|
|
|
|
normalized->bv_val[normalized->bv_len++] = '#';
|
|
|
|
|
|
|
|
/* append the UID */
|
|
|
|
AC_MEMCPY( &normalized->bv_val[normalized->bv_len],
|
|
|
|
uidout.bv_val, uidout.bv_len );
|
|
|
|
normalized->bv_len += uidout.bv_len;
|
|
|
|
|
|
|
|
/* terminate */
|
|
|
|
normalized->bv_val[normalized->bv_len] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
free( out.bv_val );
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-06-30 03:00:17 +08:00
|
|
|
/*
|
|
|
|
* Handling boolean syntax and matching is quite rigid.
|
|
|
|
* A more flexible approach would be to allow a variety
|
|
|
|
* of strings to be normalized and prettied into TRUE
|
|
|
|
* and FALSE.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
booleanValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *in )
|
|
|
|
{
|
|
|
|
/* very unforgiving validation, requires no normalization
|
|
|
|
* before simplistic matching
|
|
|
|
*/
|
|
|
|
|
|
|
|
if( in->bv_len == 4 ) {
|
|
|
|
if( !memcmp( in->bv_val, "TRUE", 4 ) ) {
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
} else if( in->bv_len == 5 ) {
|
|
|
|
if( !memcmp( in->bv_val, "FALSE", 5 ) ) {
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
booleanMatch(
|
|
|
|
int *matchp,
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t flags,
|
2000-06-30 03:00:17 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
/* simplistic matching allowed by rigid validation */
|
|
|
|
struct berval *asserted = (struct berval *) assertedValue;
|
|
|
|
*matchp = value->bv_len != asserted->bv_len;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-01-30 03:43:19 +08:00
|
|
|
static int
|
|
|
|
UTF8StringValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *in )
|
|
|
|
{
|
|
|
|
ber_len_t count;
|
|
|
|
int len;
|
|
|
|
unsigned char *u = in->bv_val;
|
|
|
|
|
2000-06-24 07:57:53 +08:00
|
|
|
if( !in->bv_len ) return LDAP_INVALID_SYNTAX;
|
|
|
|
|
2000-05-23 10:33:56 +08:00
|
|
|
for( count = in->bv_len; count > 0; count-=len, u+=len ) {
|
2000-01-30 03:43:19 +08:00
|
|
|
/* get the length indicated by the first byte */
|
2002-01-15 16:27:19 +08:00
|
|
|
len = LDAP_UTF8_CHARLEN2( u, len );
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2002-01-15 12:38:05 +08:00
|
|
|
/* very basic checks */
|
|
|
|
switch( len ) {
|
|
|
|
case 6:
|
2002-01-15 16:27:19 +08:00
|
|
|
if( (u[5] & 0xC0) != 0x80 ) {
|
2002-01-15 12:38:05 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
case 5:
|
2002-01-15 16:27:19 +08:00
|
|
|
if( (u[4] & 0xC0) != 0x80 ) {
|
2002-01-15 12:38:05 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
case 4:
|
2002-01-15 16:27:19 +08:00
|
|
|
if( (u[3] & 0xC0) != 0x80 ) {
|
2002-01-15 12:38:05 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
case 3:
|
2002-01-15 16:27:19 +08:00
|
|
|
if( (u[2] & 0xC0 )!= 0x80 ) {
|
2002-01-15 12:38:05 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
case 2:
|
2002-01-15 16:27:19 +08:00
|
|
|
if( (u[1] & 0xC0) != 0x80 ) {
|
2002-01-15 12:38:05 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
case 1:
|
2002-01-18 12:49:55 +08:00
|
|
|
/* CHARLEN already validated it */
|
2002-01-15 12:38:05 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
/* make sure len corresponds with the offset
|
|
|
|
to the next character */
|
2000-05-25 07:27:33 +08:00
|
|
|
if( LDAP_UTF8_OFFSET( u ) != len ) return LDAP_INVALID_SYNTAX;
|
2000-01-30 03:43:19 +08:00
|
|
|
}
|
|
|
|
|
2000-05-25 07:27:33 +08:00
|
|
|
if( count != 0 ) return LDAP_INVALID_SYNTAX;
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-05-25 07:27:33 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-01-30 03:43:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
UTF8StringNormalize(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val,
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval *normalized )
|
2000-01-30 03:43:19 +08:00
|
|
|
{
|
2002-02-14 05:25:57 +08:00
|
|
|
char *p, *q, *s, *e;
|
2002-01-01 12:43:03 +08:00
|
|
|
int len = 0;
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-09-08 07:46:07 +08:00
|
|
|
p = val->bv_val;
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-09-08 07:46:07 +08:00
|
|
|
/* Ignore initial whitespace */
|
2002-01-01 12:43:03 +08:00
|
|
|
/* All space is ASCII. All ASCII is 1 byte */
|
2002-02-15 02:55:38 +08:00
|
|
|
for ( ; p < val->bv_val + val->bv_len && ASCII_SPACE( p[ 0 ] ); p++ );
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2002-08-06 10:35:24 +08:00
|
|
|
normalized->bv_len = val->bv_len - (p - val->bv_val);
|
|
|
|
ber_mem2bv( p, normalized->bv_len, 1, normalized );
|
|
|
|
e = normalized->bv_val + normalized->bv_len;
|
2001-12-29 23:01:10 +08:00
|
|
|
|
|
|
|
assert( normalized->bv_val );
|
|
|
|
|
|
|
|
p = q = normalized->bv_val;
|
2000-09-08 07:46:07 +08:00
|
|
|
s = NULL;
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2002-02-14 05:25:57 +08:00
|
|
|
while ( p < e ) {
|
2002-01-01 12:43:03 +08:00
|
|
|
q += len;
|
|
|
|
if ( ASCII_SPACE( *p ) ) {
|
|
|
|
s = q - len;
|
|
|
|
len = 1;
|
|
|
|
*q = *p++;
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-09-08 07:46:07 +08:00
|
|
|
/* Ignore the extra whitespace */
|
2002-01-01 12:43:03 +08:00
|
|
|
while ( ASCII_SPACE( *p ) ) {
|
|
|
|
p++;
|
2000-09-08 07:46:07 +08:00
|
|
|
}
|
2000-09-08 07:19:10 +08:00
|
|
|
} else {
|
2000-09-08 07:46:07 +08:00
|
|
|
len = LDAP_UTF8_COPY(q,p);
|
|
|
|
s=NULL;
|
|
|
|
p+=len;
|
2000-09-08 07:19:10 +08:00
|
|
|
}
|
2000-09-08 07:46:07 +08:00
|
|
|
}
|
|
|
|
|
2002-08-06 10:35:24 +08:00
|
|
|
assert( normalized->bv_val <= p );
|
2002-01-01 12:43:03 +08:00
|
|
|
assert( q+len <= p );
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-09-08 07:46:07 +08:00
|
|
|
/* cannot start with a space */
|
2002-01-01 12:43:03 +08:00
|
|
|
assert( !ASCII_SPACE(normalized->bv_val[0]) );
|
2000-09-08 07:46:07 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If the string ended in space, backup the pointer one
|
|
|
|
* position. One is enough because the above loop collapsed
|
|
|
|
* all whitespace to a single space.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( s != NULL ) {
|
2002-01-01 12:44:59 +08:00
|
|
|
len = q - s;
|
2000-09-08 07:46:07 +08:00
|
|
|
q = s;
|
2000-09-08 07:19:10 +08:00
|
|
|
}
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-09-08 07:46:07 +08:00
|
|
|
/* cannot end with a space */
|
2002-01-01 12:43:03 +08:00
|
|
|
assert( !ASCII_SPACE( *q ) );
|
|
|
|
|
|
|
|
q += len;
|
2000-09-08 07:46:07 +08:00
|
|
|
|
|
|
|
/* null terminate */
|
|
|
|
*q = '\0';
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_len = q - normalized->bv_val;
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-05-25 07:27:33 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-01-30 03:43:19 +08:00
|
|
|
}
|
|
|
|
|
2002-01-01 12:43:03 +08:00
|
|
|
/* Returns Unicode canonically normalized copy of a substring assertion
|
2001-07-17 06:48:52 +08:00
|
|
|
* Skipping attribute description */
|
2001-12-23 09:19:46 +08:00
|
|
|
static SubstringsAssertion *
|
2001-07-17 06:48:52 +08:00
|
|
|
UTF8SubstringsassertionNormalize(
|
|
|
|
SubstringsAssertion *sa,
|
2002-01-03 01:06:56 +08:00
|
|
|
unsigned casefold )
|
2001-07-17 06:48:52 +08:00
|
|
|
{
|
|
|
|
SubstringsAssertion *nsa;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nsa = (SubstringsAssertion *)ch_calloc( 1, sizeof(SubstringsAssertion) );
|
|
|
|
if( nsa == NULL ) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sa->sa_initial.bv_val != NULL ) {
|
2002-02-15 00:01:48 +08:00
|
|
|
UTF8bvnormalize( &sa->sa_initial, &nsa->sa_initial, casefold );
|
2001-12-29 23:01:10 +08:00
|
|
|
if( nsa->sa_initial.bv_val == NULL ) {
|
2001-07-17 06:48:52 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( sa->sa_any != NULL ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
for( i=0; sa->sa_any[i].bv_val != NULL; i++ ) {
|
2001-07-17 06:48:52 +08:00
|
|
|
/* empty */
|
|
|
|
}
|
2001-12-29 23:01:10 +08:00
|
|
|
nsa->sa_any = (struct berval *)ch_malloc( (i + 1) * sizeof(struct berval) );
|
|
|
|
for( i=0; sa->sa_any[i].bv_val != NULL; i++ ) {
|
2002-02-15 00:01:48 +08:00
|
|
|
UTF8bvnormalize( &sa->sa_any[i], &nsa->sa_any[i],
|
|
|
|
casefold );
|
2001-12-29 23:01:10 +08:00
|
|
|
if( nsa->sa_any[i].bv_val == NULL ) {
|
2001-07-17 06:48:52 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
2001-12-29 23:01:10 +08:00
|
|
|
nsa->sa_any[i].bv_val = NULL;
|
2001-07-17 06:48:52 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sa->sa_final.bv_val != NULL ) {
|
2002-02-15 00:01:48 +08:00
|
|
|
UTF8bvnormalize( &sa->sa_final, &nsa->sa_final, casefold );
|
2001-12-29 23:01:10 +08:00
|
|
|
if( nsa->sa_final.bv_val == NULL ) {
|
2001-07-17 06:48:52 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsa;
|
|
|
|
|
|
|
|
err:
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( nsa->sa_final.bv_val ) free( nsa->sa_final.bv_val );
|
2002-01-14 09:43:17 +08:00
|
|
|
if ( nsa->sa_any )ber_bvarray_free( nsa->sa_any );
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( nsa->sa_initial.bv_val ) free( nsa->sa_initial.bv_val );
|
2001-07-17 06:48:52 +08:00
|
|
|
ch_free( nsa );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-07-27 06:33:28 +08:00
|
|
|
#ifndef SLAPD_APPROX_OLDSINGLESTRING
|
2000-10-25 04:25:37 +08:00
|
|
|
|
|
|
|
#if defined(SLAPD_APPROX_INITIALS)
|
|
|
|
#define SLAPD_APPROX_DELIMITER "._ "
|
|
|
|
#define SLAPD_APPROX_WORDLEN 2
|
|
|
|
#else
|
|
|
|
#define SLAPD_APPROX_DELIMITER " "
|
|
|
|
#define SLAPD_APPROX_WORDLEN 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int
|
|
|
|
approxMatch(
|
|
|
|
int *matchp,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
2002-02-27 02:38:40 +08:00
|
|
|
struct berval *nval, *assertv;
|
|
|
|
char *val, **values, **words, *c;
|
2000-10-25 04:25:37 +08:00
|
|
|
int i, count, len, nextchunk=0, nextavail=0;
|
|
|
|
|
2001-07-26 05:22:55 +08:00
|
|
|
/* Yes, this is necessary */
|
2002-02-27 02:38:40 +08:00
|
|
|
nval = UTF8bvnormalize( value, NULL, LDAP_UTF8_APPROX );
|
2001-11-07 03:07:15 +08:00
|
|
|
if( nval == NULL ) {
|
2001-07-26 05:22:55 +08:00
|
|
|
*matchp = 1;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Yes, this is necessary */
|
2002-02-27 02:38:40 +08:00
|
|
|
assertv = UTF8bvnormalize( ((struct berval *)assertedValue), NULL, LDAP_UTF8_APPROX );
|
2001-07-26 05:22:55 +08:00
|
|
|
if( assertv == NULL ) {
|
2002-02-27 02:38:40 +08:00
|
|
|
ber_bvfree( nval );
|
2001-07-26 05:22:55 +08:00
|
|
|
*matchp = 1;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2000-10-25 04:25:37 +08:00
|
|
|
|
|
|
|
/* Isolate how many words there are */
|
2002-02-27 02:38:40 +08:00
|
|
|
for ( c = nval->bv_val, count = 1; *c; c++ ) {
|
2000-10-25 04:25:37 +08:00
|
|
|
c = strpbrk( c, SLAPD_APPROX_DELIMITER );
|
|
|
|
if ( c == NULL ) break;
|
|
|
|
*c = '\0';
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get a phonetic copy of each word */
|
|
|
|
words = (char **)ch_malloc( count * sizeof(char *) );
|
|
|
|
values = (char **)ch_malloc( count * sizeof(char *) );
|
2002-02-27 02:38:40 +08:00
|
|
|
for ( c = nval->bv_val, i = 0; i < count; i++, c += strlen(c) + 1 ) {
|
2000-10-25 04:25:37 +08:00
|
|
|
words[i] = c;
|
|
|
|
values[i] = phonetic(c);
|
|
|
|
}
|
|
|
|
|
2001-07-26 05:22:55 +08:00
|
|
|
/* Work through the asserted value's words, to see if at least some
|
2000-10-25 04:25:37 +08:00
|
|
|
of the words are there, in the same order. */
|
|
|
|
len = 0;
|
2002-02-27 02:38:40 +08:00
|
|
|
while ( (ber_len_t) nextchunk < assertv->bv_len ) {
|
|
|
|
len = strcspn( assertv->bv_val + nextchunk, SLAPD_APPROX_DELIMITER);
|
2000-11-04 00:16:27 +08:00
|
|
|
if( len == 0 ) {
|
|
|
|
nextchunk++;
|
|
|
|
continue;
|
|
|
|
}
|
2000-10-25 04:25:37 +08:00
|
|
|
#if defined(SLAPD_APPROX_INITIALS)
|
2000-11-04 00:16:27 +08:00
|
|
|
else if( len == 1 ) {
|
2000-10-25 04:25:37 +08:00
|
|
|
/* Single letter words need to at least match one word's initial */
|
|
|
|
for( i=nextavail; i<count; i++ )
|
2002-02-27 02:38:40 +08:00
|
|
|
if( !strncasecmp( assertv->bv_val + nextchunk, words[i], 1 )) {
|
2000-11-04 00:16:27 +08:00
|
|
|
nextavail=i+1;
|
2000-10-25 04:25:37 +08:00
|
|
|
break;
|
2000-11-04 00:16:27 +08:00
|
|
|
}
|
2000-10-25 04:25:37 +08:00
|
|
|
}
|
|
|
|
#endif
|
2000-11-04 00:16:27 +08:00
|
|
|
else {
|
2000-10-25 04:25:37 +08:00
|
|
|
/* Isolate the next word in the asserted value and phonetic it */
|
2002-02-27 02:38:40 +08:00
|
|
|
assertv->bv_val[nextchunk+len] = '\0';
|
|
|
|
val = phonetic( assertv->bv_val + nextchunk );
|
2000-10-25 04:25:37 +08:00
|
|
|
|
|
|
|
/* See if this phonetic chunk is in the remaining words of *value */
|
|
|
|
for( i=nextavail; i<count; i++ ){
|
|
|
|
if( !strcmp( val, values[i] ) ){
|
|
|
|
nextavail = i+1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-11-07 03:07:15 +08:00
|
|
|
ch_free( val );
|
2000-10-25 04:25:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This chunk in the asserted value was NOT within the *value. */
|
|
|
|
if( i >= count ) {
|
|
|
|
nextavail=-1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Go on to the next word in the asserted value */
|
|
|
|
nextchunk += len+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If some of the words were seen, call it a match */
|
|
|
|
if( nextavail > 0 ) {
|
|
|
|
*matchp = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*matchp = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cleanup allocs */
|
2002-02-27 02:38:40 +08:00
|
|
|
ber_bvfree( assertv );
|
2000-10-25 04:25:37 +08:00
|
|
|
for( i=0; i<count; i++ ) {
|
|
|
|
ch_free( values[i] );
|
|
|
|
}
|
|
|
|
ch_free( values );
|
|
|
|
ch_free( words );
|
2002-02-27 02:38:40 +08:00
|
|
|
ber_bvfree( nval );
|
2000-10-25 04:25:37 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-12-23 09:19:46 +08:00
|
|
|
static int
|
2000-10-25 04:25:37 +08:00
|
|
|
approxIndexer(
|
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2000-10-25 04:25:37 +08:00
|
|
|
{
|
2002-02-27 02:38:40 +08:00
|
|
|
char *c;
|
2000-10-25 04:25:37 +08:00
|
|
|
int i,j, len, wordcount, keycount=0;
|
2002-02-28 00:11:24 +08:00
|
|
|
struct berval *newkeys;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys=NULL;
|
2000-10-25 04:25:37 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( j=0; values[j].bv_val != NULL; j++ ) {
|
2002-02-28 00:11:24 +08:00
|
|
|
struct berval val = { 0, NULL };
|
2001-07-26 05:22:55 +08:00
|
|
|
/* Yes, this is necessary */
|
2002-02-28 00:11:24 +08:00
|
|
|
UTF8bvnormalize( &values[j], &val, LDAP_UTF8_APPROX );
|
|
|
|
assert( val.bv_val != NULL );
|
2001-07-26 05:22:55 +08:00
|
|
|
|
2000-10-25 04:25:37 +08:00
|
|
|
/* Isolate how many words there are. There will be a key for each */
|
2002-02-28 00:11:24 +08:00
|
|
|
for( wordcount = 0, c = val.bv_val; *c; c++) {
|
2000-10-25 04:25:37 +08:00
|
|
|
len = strcspn(c, SLAPD_APPROX_DELIMITER);
|
|
|
|
if( len >= SLAPD_APPROX_WORDLEN ) wordcount++;
|
|
|
|
c+= len;
|
|
|
|
if (*c == '\0') break;
|
|
|
|
*c = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate/increase storage to account for new keys */
|
2001-12-29 23:01:10 +08:00
|
|
|
newkeys = (struct berval *)ch_malloc( (keycount + wordcount + 1)
|
|
|
|
* sizeof(struct berval) );
|
2002-01-03 01:06:56 +08:00
|
|
|
AC_MEMCPY( newkeys, keys, keycount * sizeof(struct berval) );
|
2000-10-25 04:25:37 +08:00
|
|
|
if( keys ) ch_free( keys );
|
|
|
|
keys = newkeys;
|
|
|
|
|
|
|
|
/* Get a phonetic copy of each word */
|
2002-02-28 00:11:24 +08:00
|
|
|
for( c = val.bv_val, i = 0; i < wordcount; c += len + 1 ) {
|
2000-10-25 04:25:37 +08:00
|
|
|
len = strlen( c );
|
|
|
|
if( len < SLAPD_APPROX_WORDLEN ) continue;
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_str2bv( phonetic( c ), 0, 0, &keys[keycount] );
|
2000-10-25 04:25:37 +08:00
|
|
|
keycount++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2002-02-28 00:11:24 +08:00
|
|
|
ber_memfree( val.bv_val );
|
2000-10-25 04:25:37 +08:00
|
|
|
}
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[keycount].bv_val = NULL;
|
2000-10-25 04:25:37 +08:00
|
|
|
*keysp = keys;
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-12-23 09:19:46 +08:00
|
|
|
static int
|
2000-10-25 04:25:37 +08:00
|
|
|
approxFilter(
|
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2000-10-25 04:25:37 +08:00
|
|
|
{
|
2002-02-27 02:38:40 +08:00
|
|
|
char *c;
|
2000-10-25 04:25:37 +08:00
|
|
|
int i, count, len;
|
2002-02-27 02:38:40 +08:00
|
|
|
struct berval *val;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-10-25 04:25:37 +08:00
|
|
|
|
2001-07-26 05:22:55 +08:00
|
|
|
/* Yes, this is necessary */
|
2002-02-27 02:38:40 +08:00
|
|
|
val = UTF8bvnormalize( ((struct berval *)assertValue), NULL, LDAP_UTF8_APPROX );
|
|
|
|
if( val == NULL || val->bv_val == NULL ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = (struct berval *)ch_malloc( sizeof(struct berval) );
|
|
|
|
keys[0].bv_val = NULL;
|
2001-07-26 05:22:55 +08:00
|
|
|
*keysp = keys;
|
2002-02-27 02:38:40 +08:00
|
|
|
ber_bvfree( val );
|
2001-07-26 05:22:55 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-10-25 04:25:37 +08:00
|
|
|
/* Isolate how many words there are. There will be a key for each */
|
2002-02-27 02:38:40 +08:00
|
|
|
for( count = 0,c = val->bv_val; *c; c++) {
|
2000-10-25 04:25:37 +08:00
|
|
|
len = strcspn(c, SLAPD_APPROX_DELIMITER);
|
|
|
|
if( len >= SLAPD_APPROX_WORDLEN ) count++;
|
|
|
|
c+= len;
|
|
|
|
if (*c == '\0') break;
|
|
|
|
*c = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate storage for new keys */
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = (struct berval *)ch_malloc( (count + 1) * sizeof(struct berval) );
|
2000-10-25 04:25:37 +08:00
|
|
|
|
|
|
|
/* Get a phonetic copy of each word */
|
2002-02-27 02:38:40 +08:00
|
|
|
for( c = val->bv_val, i = 0; i < count; c += len + 1 ) {
|
2000-10-25 04:25:37 +08:00
|
|
|
len = strlen(c);
|
|
|
|
if( len < SLAPD_APPROX_WORDLEN ) continue;
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_str2bv( phonetic( c ), 0, 0, &keys[i] );
|
2000-10-25 04:25:37 +08:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2002-02-27 02:38:40 +08:00
|
|
|
ber_bvfree( val );
|
2000-10-25 04:25:37 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[count].bv_val = NULL;
|
2000-10-25 04:25:37 +08:00
|
|
|
*keysp = keys;
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* No other form of Approximate Matching is defined */
|
|
|
|
|
|
|
|
static int
|
|
|
|
approxMatch(
|
|
|
|
int *matchp,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
char *vapprox, *avapprox;
|
2001-07-26 05:22:55 +08:00
|
|
|
char *s, *t;
|
2000-10-25 04:25:37 +08:00
|
|
|
|
2001-07-26 05:22:55 +08:00
|
|
|
/* Yes, this is necessary */
|
2001-11-10 03:01:23 +08:00
|
|
|
s = UTF8normalize( value, UTF8_NOCASEFOLD );
|
2001-07-26 05:22:55 +08:00
|
|
|
if( s == NULL ) {
|
|
|
|
*matchp = 1;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Yes, this is necessary */
|
2001-11-10 03:01:23 +08:00
|
|
|
t = UTF8normalize( ((struct berval *)assertedValue),
|
2001-07-26 05:22:55 +08:00
|
|
|
UTF8_NOCASEFOLD );
|
|
|
|
if( t == NULL ) {
|
|
|
|
free( s );
|
|
|
|
*matchp = -1;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
vapprox = phonetic( strip8bitChars( s ) );
|
|
|
|
avapprox = phonetic( strip8bitChars( t ) );
|
|
|
|
|
|
|
|
free( s );
|
|
|
|
free( t );
|
2000-10-25 04:25:37 +08:00
|
|
|
|
|
|
|
*matchp = strcmp( vapprox, avapprox );
|
|
|
|
|
|
|
|
ch_free( vapprox );
|
|
|
|
ch_free( avapprox );
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-12-23 09:19:46 +08:00
|
|
|
static int
|
2000-10-25 04:25:37 +08:00
|
|
|
approxIndexer(
|
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2000-10-25 04:25:37 +08:00
|
|
|
{
|
|
|
|
int i;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keys;
|
2001-07-26 05:22:55 +08:00
|
|
|
char *s;
|
2000-10-25 04:25:37 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2001-07-26 09:08:00 +08:00
|
|
|
/* empty - just count them */
|
2000-10-25 04:25:37 +08:00
|
|
|
}
|
2001-07-26 09:08:00 +08:00
|
|
|
|
|
|
|
/* we should have at least one value at this point */
|
2000-10-25 04:25:37 +08:00
|
|
|
assert( i > 0 );
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = (struct berval *)ch_malloc( sizeof( struct berval ) * (i+1) );
|
2000-10-25 04:25:37 +08:00
|
|
|
|
|
|
|
/* Copy each value and run it through phonetic() */
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2001-07-26 05:22:55 +08:00
|
|
|
/* Yes, this is necessary */
|
2002-01-02 19:00:36 +08:00
|
|
|
s = UTF8normalize( &values[i], UTF8_NOCASEFOLD );
|
2001-07-26 05:22:55 +08:00
|
|
|
|
|
|
|
/* strip 8-bit chars and run through phonetic() */
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_str2bv( phonetic( strip8bitChars( s ) ), 0, 0, &keys[i] );
|
2001-07-26 05:22:55 +08:00
|
|
|
free( s );
|
2000-10-25 04:25:37 +08:00
|
|
|
}
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[i].bv_val = NULL;
|
2000-10-25 04:25:37 +08:00
|
|
|
|
|
|
|
*keysp = keys;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-12-23 09:19:46 +08:00
|
|
|
static int
|
2000-10-25 04:25:37 +08:00
|
|
|
approxFilter(
|
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2000-10-25 04:25:37 +08:00
|
|
|
{
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2001-07-26 05:22:55 +08:00
|
|
|
char *s;
|
2000-10-25 04:25:37 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = (struct berval *)ch_malloc( sizeof( struct berval * ) * 2 );
|
2000-10-25 04:25:37 +08:00
|
|
|
|
2001-07-26 05:22:55 +08:00
|
|
|
/* Yes, this is necessary */
|
2001-11-10 03:01:23 +08:00
|
|
|
s = UTF8normalize( ((struct berval *)assertValue),
|
2001-07-26 05:22:55 +08:00
|
|
|
UTF8_NOCASEFOLD );
|
|
|
|
if( s == NULL ) {
|
|
|
|
keys[0] = NULL;
|
|
|
|
} else {
|
|
|
|
/* strip 8-bit chars and run through phonetic() */
|
|
|
|
keys[0] = ber_bvstr( phonetic( strip8bitChars( s ) ) );
|
|
|
|
free( s );
|
|
|
|
keys[1] = NULL;
|
|
|
|
}
|
2000-10-25 04:25:37 +08:00
|
|
|
|
|
|
|
*keysp = keys;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-05-23 10:33:56 +08:00
|
|
|
static int
|
2000-09-04 02:04:08 +08:00
|
|
|
caseExactMatch(
|
2000-06-20 11:55:40 +08:00
|
|
|
int *matchp,
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t flags,
|
2000-01-30 03:43:19 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
2000-02-15 04:57:34 +08:00
|
|
|
void *assertedValue )
|
2000-01-30 03:43:19 +08:00
|
|
|
{
|
2002-03-11 09:48:37 +08:00
|
|
|
*matchp = UTF8bvnormcmp( value,
|
|
|
|
(struct berval *) assertedValue,
|
|
|
|
LDAP_UTF8_NOCASEFOLD );
|
2000-05-25 02:49:30 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-01-30 03:43:19 +08:00
|
|
|
}
|
|
|
|
|
2000-05-28 07:08:28 +08:00
|
|
|
static int
|
2001-07-28 06:54:43 +08:00
|
|
|
caseExactIgnoreSubstringsMatch(
|
2000-05-28 07:08:28 +08:00
|
|
|
int *matchp,
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t flags,
|
2000-05-28 07:08:28 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
int match = 0;
|
2001-11-18 00:18:07 +08:00
|
|
|
SubstringsAssertion *sub = NULL;
|
2002-02-15 00:01:48 +08:00
|
|
|
struct berval left = { 0, NULL };
|
2000-05-28 07:08:28 +08:00
|
|
|
int i;
|
|
|
|
ber_len_t inlen=0;
|
2002-02-15 02:55:38 +08:00
|
|
|
char *nav = NULL;
|
2002-01-03 01:06:56 +08:00
|
|
|
unsigned casefold;
|
2001-07-28 06:54:43 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
casefold = ( mr != caseExactSubstringsMatchingRule )
|
2002-01-03 01:06:56 +08:00
|
|
|
? LDAP_UTF8_CASEFOLD : LDAP_UTF8_NOCASEFOLD;
|
2001-07-18 03:35:23 +08:00
|
|
|
|
2002-02-15 00:01:48 +08:00
|
|
|
if ( UTF8bvnormalize( value, &left, casefold ) == NULL ) {
|
2001-07-18 03:35:23 +08:00
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
2002-02-15 00:01:48 +08:00
|
|
|
nav = left.bv_val;
|
2001-07-22 07:02:06 +08:00
|
|
|
|
2001-07-28 06:54:43 +08:00
|
|
|
sub = UTF8SubstringsassertionNormalize( assertedValue, casefold );
|
2001-07-18 03:35:23 +08:00
|
|
|
if( sub == NULL ) {
|
|
|
|
match = -1;
|
|
|
|
goto done;
|
|
|
|
}
|
2000-05-28 07:08:28 +08:00
|
|
|
|
2000-06-16 03:32:24 +08:00
|
|
|
/* Add up asserted input length */
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_initial.bv_val ) {
|
|
|
|
inlen += sub->sa_initial.bv_len;
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
if( sub->sa_any ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
for(i=0; sub->sa_any[i].bv_val != NULL; i++) {
|
|
|
|
inlen += sub->sa_any[i].bv_len;
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
}
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_final.bv_val ) {
|
|
|
|
inlen += sub->sa_final.bv_len;
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_initial.bv_val ) {
|
2000-06-16 03:56:51 +08:00
|
|
|
if( inlen > left.bv_len ) {
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2002-02-15 02:55:38 +08:00
|
|
|
match = memcmp( sub->sa_initial.bv_val, left.bv_val,
|
2001-12-29 23:01:10 +08:00
|
|
|
sub->sa_initial.bv_len );
|
2000-05-28 07:08:28 +08:00
|
|
|
|
|
|
|
if( match != 0 ) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
left.bv_val += sub->sa_initial.bv_len;
|
|
|
|
left.bv_len -= sub->sa_initial.bv_len;
|
|
|
|
inlen -= sub->sa_initial.bv_len;
|
2000-06-16 03:56:51 +08:00
|
|
|
}
|
2000-06-16 03:32:24 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_final.bv_val ) {
|
2000-06-16 03:32:24 +08:00
|
|
|
if( inlen > left.bv_len ) {
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
2000-05-28 07:08:28 +08:00
|
|
|
|
2002-02-15 02:55:38 +08:00
|
|
|
match = memcmp( sub->sa_final.bv_val,
|
2001-12-29 23:01:10 +08:00
|
|
|
&left.bv_val[left.bv_len - sub->sa_final.bv_len],
|
|
|
|
sub->sa_final.bv_len );
|
2000-05-28 07:08:28 +08:00
|
|
|
|
|
|
|
if( match != 0 ) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
left.bv_len -= sub->sa_final.bv_len;
|
|
|
|
inlen -= sub->sa_final.bv_len;
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( sub->sa_any ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
for(i=0; sub->sa_any[i].bv_val; i++) {
|
2000-05-28 09:18:53 +08:00
|
|
|
ber_len_t idx;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
retry:
|
2000-06-16 03:56:51 +08:00
|
|
|
if( inlen > left.bv_len ) {
|
|
|
|
/* not enough length */
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_any[i].bv_len == 0 ) {
|
2000-05-28 09:18:53 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-02-15 02:55:38 +08:00
|
|
|
p = ber_bvchr( &left, *sub->sa_any[i].bv_val );
|
|
|
|
if ( p == NULL ) {
|
2000-05-28 09:18:53 +08:00
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
idx = p - left.bv_val;
|
|
|
|
|
|
|
|
if( idx >= left.bv_len ) {
|
|
|
|
/* this shouldn't happen */
|
2001-11-07 06:36:28 +08:00
|
|
|
free( nav );
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( sub->sa_final.bv_val )
|
|
|
|
ch_free( sub->sa_final.bv_val );
|
|
|
|
if ( sub->sa_any )
|
2002-01-14 09:43:17 +08:00
|
|
|
ber_bvarray_free( sub->sa_any );
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( sub->sa_initial.bv_val )
|
|
|
|
ch_free( sub->sa_initial.bv_val );
|
2001-11-07 06:36:28 +08:00
|
|
|
ch_free( sub );
|
2000-05-28 09:18:53 +08:00
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
|
|
|
|
|
|
|
left.bv_val = p;
|
|
|
|
left.bv_len -= idx;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_any[i].bv_len > left.bv_len ) {
|
2000-05-28 09:18:53 +08:00
|
|
|
/* not enough left */
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2002-02-15 02:55:38 +08:00
|
|
|
match = memcmp( left.bv_val,
|
2001-12-29 23:01:10 +08:00
|
|
|
sub->sa_any[i].bv_val,
|
|
|
|
sub->sa_any[i].bv_len );
|
2000-05-28 09:18:53 +08:00
|
|
|
|
|
|
|
if( match != 0 ) {
|
2000-09-08 07:46:07 +08:00
|
|
|
left.bv_val++;
|
|
|
|
left.bv_len--;
|
2000-05-28 09:18:53 +08:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
left.bv_val += sub->sa_any[i].bv_len;
|
|
|
|
left.bv_len -= sub->sa_any[i].bv_len;
|
|
|
|
inlen -= sub->sa_any[i].bv_len;
|
2000-05-28 09:18:53 +08:00
|
|
|
}
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
2001-07-18 03:35:23 +08:00
|
|
|
free( nav );
|
|
|
|
if( sub != NULL ) {
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( sub->sa_final.bv_val ) free( sub->sa_final.bv_val );
|
2002-01-14 09:43:17 +08:00
|
|
|
if ( sub->sa_any ) ber_bvarray_free( sub->sa_any );
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( sub->sa_initial.bv_val ) free( sub->sa_initial.bv_val );
|
2001-07-18 03:35:23 +08:00
|
|
|
ch_free( sub );
|
|
|
|
}
|
2000-05-28 07:08:28 +08:00
|
|
|
*matchp = match;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-06-21 09:12:29 +08:00
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseExactIgnoreIndexer(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-06-21 09:12:29 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2000-06-21 09:12:29 +08:00
|
|
|
{
|
|
|
|
int i;
|
2002-01-03 01:06:56 +08:00
|
|
|
unsigned casefold;
|
2000-06-21 09:12:29 +08:00
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-06-21 09:12:29 +08:00
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2001-07-26 09:08:00 +08:00
|
|
|
/* empty - just count them */
|
2000-06-21 09:12:29 +08:00
|
|
|
}
|
|
|
|
|
2001-07-26 09:08:00 +08:00
|
|
|
/* we should have at least one value at this point */
|
|
|
|
assert( i > 0 );
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (i+1) );
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
casefold = ( mr != caseExactMatchingRule )
|
2002-01-03 01:06:56 +08:00
|
|
|
? LDAP_UTF8_CASEFOLD : LDAP_UTF8_NOCASEFOLD;
|
2001-07-28 06:54:43 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval value;
|
2002-02-28 00:11:24 +08:00
|
|
|
UTF8bvnormalize( &values[i], &value, casefold );
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-06-21 09:12:29 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-21 09:12:29 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-21 09:12:29 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-21 09:12:29 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
value.bv_val, value.bv_len );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
free( value.bv_val );
|
2001-01-26 23:56:29 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[i], &digest );
|
2000-06-21 09:12:29 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[i].bv_val = NULL;
|
2000-06-21 09:12:29 +08:00
|
|
|
*keysp = keys;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseExactIgnoreFilter(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-06-21 09:12:29 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2000-06-21 09:12:29 +08:00
|
|
|
{
|
2002-01-03 01:06:56 +08:00
|
|
|
unsigned casefold;
|
2000-06-21 09:12:29 +08:00
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2002-02-28 00:11:24 +08:00
|
|
|
struct berval value = { 0, NULL };
|
2000-06-21 09:12:29 +08:00
|
|
|
struct berval digest;
|
2002-02-28 00:11:24 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
casefold = ( mr != caseExactMatchingRule )
|
2002-01-03 01:06:56 +08:00
|
|
|
? LDAP_UTF8_CASEFOLD : LDAP_UTF8_NOCASEFOLD;
|
2001-07-28 06:54:43 +08:00
|
|
|
|
2002-02-28 00:11:24 +08:00
|
|
|
UTF8bvnormalize( (struct berval *) assertValue, &value, casefold );
|
2001-07-16 01:25:49 +08:00
|
|
|
/* This usually happens if filter contains bad UTF8 */
|
2001-12-29 23:01:10 +08:00
|
|
|
if( value.bv_val == NULL ) {
|
|
|
|
keys = ch_malloc( sizeof( struct berval ) );
|
|
|
|
keys[0].bv_val = NULL;
|
2001-07-16 01:25:49 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * 2 );
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-06-21 09:12:29 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-21 09:12:29 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-21 09:12:29 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-21 09:12:29 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
value.bv_val, value.bv_len );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( keys, &digest );
|
|
|
|
keys[1].bv_val = NULL;
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
free( value.bv_val );
|
2001-01-26 23:56:29 +08:00
|
|
|
|
2000-06-21 09:12:29 +08:00
|
|
|
*keysp = keys;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2000-07-19 01:46:34 +08:00
|
|
|
/* Substrings Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseExactIgnoreSubstringsIndexer(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-07-19 01:46:34 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
2002-01-03 01:06:56 +08:00
|
|
|
unsigned casefold;
|
2000-08-22 10:23:52 +08:00
|
|
|
ber_len_t i, nkeys;
|
2000-07-19 01:46:34 +08:00
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
|
|
|
BerVarray nvalues;
|
2001-07-16 05:28:07 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-07-19 01:46:34 +08:00
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-07-19 01:46:34 +08:00
|
|
|
|
|
|
|
nkeys=0;
|
2001-07-16 05:28:07 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2001-07-26 09:08:00 +08:00
|
|
|
/* empty - just count them */
|
2001-07-22 07:02:06 +08:00
|
|
|
}
|
2001-07-26 09:08:00 +08:00
|
|
|
|
|
|
|
/* we should have at least one value at this point */
|
|
|
|
assert( i > 0 );
|
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
casefold = ( mr != caseExactSubstringsMatchingRule )
|
2002-01-03 01:06:56 +08:00
|
|
|
? LDAP_UTF8_CASEFOLD : LDAP_UTF8_NOCASEFOLD;
|
2001-07-28 06:54:43 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
nvalues = ch_malloc( sizeof( struct berval ) * (i+1) );
|
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2002-02-28 00:11:24 +08:00
|
|
|
UTF8bvnormalize( &values[i], &nvalues[i], casefold );
|
2001-07-22 07:02:06 +08:00
|
|
|
}
|
2002-01-02 19:00:36 +08:00
|
|
|
nvalues[i].bv_val = NULL;
|
2001-07-22 07:02:06 +08:00
|
|
|
values = nvalues;
|
2001-07-16 05:28:07 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
/* count number of indices to generate */
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len < SLAP_INDEX_SUBSTR_MINLEN ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
nkeys += SLAP_INDEX_SUBSTR_MAXLEN -
|
2000-09-08 07:46:07 +08:00
|
|
|
( SLAP_INDEX_SUBSTR_MINLEN - 1);
|
2000-08-22 10:23:52 +08:00
|
|
|
} else {
|
2002-01-02 19:00:36 +08:00
|
|
|
nkeys += values[i].bv_len - ( SLAP_INDEX_SUBSTR_MINLEN - 1 );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_ANY ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
|
|
|
nkeys += values[i].bv_len - ( SLAP_INDEX_SUBSTR_MAXLEN - 1 );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
nkeys += SLAP_INDEX_SUBSTR_MAXLEN -
|
2000-09-08 07:46:07 +08:00
|
|
|
( SLAP_INDEX_SUBSTR_MINLEN - 1);
|
2000-08-22 10:23:52 +08:00
|
|
|
} else {
|
2002-01-02 19:00:36 +08:00
|
|
|
nkeys += values[i].bv_len - ( SLAP_INDEX_SUBSTR_MINLEN - 1 );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nkeys == 0 ) {
|
|
|
|
/* no keys to generate */
|
|
|
|
*keysp = NULL;
|
2002-01-14 09:43:17 +08:00
|
|
|
ber_bvarray_free( nvalues );
|
2000-07-19 01:46:34 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (nkeys+1) );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
|
|
|
nkeys=0;
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
ber_len_t j,max;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len < SLAP_INDEX_SUBSTR_MINLEN ) continue;
|
2001-01-26 23:56:29 +08:00
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( ( flags & SLAP_INDEX_SUBSTR_ANY ) &&
|
2002-01-02 19:00:36 +08:00
|
|
|
( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) )
|
2000-08-22 10:23:52 +08:00
|
|
|
{
|
|
|
|
char pre = SLAP_INDEX_SUBSTR_PREFIX;
|
2002-01-02 19:00:36 +08:00
|
|
|
max = values[i].bv_len - ( SLAP_INDEX_SUBSTR_MAXLEN - 1);
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2000-09-08 07:46:07 +08:00
|
|
|
for( j=0; j<max; j++ ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-08-22 10:23:52 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-08 07:46:07 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2002-01-02 19:00:36 +08:00
|
|
|
&values[i].bv_val[j],
|
2000-09-08 07:46:07 +08:00
|
|
|
SLAP_INDEX_SUBSTR_MAXLEN );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
max = SLAP_INDEX_SUBSTR_MAXLEN < values[i].bv_len
|
|
|
|
? SLAP_INDEX_SUBSTR_MAXLEN : values[i].bv_len;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2000-09-08 07:46:07 +08:00
|
|
|
for( j=SLAP_INDEX_SUBSTR_MINLEN; j<=max; j++ ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
char pre;
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
pre = SLAP_INDEX_SUBSTR_INITIAL_PREFIX;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2002-01-02 19:00:36 +08:00
|
|
|
values[i].bv_val, j );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
pre = SLAP_INDEX_SUBSTR_FINAL_PREFIX;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2002-01-02 19:00:36 +08:00
|
|
|
&values[i].bv_val[values[i].bv_len-j], j );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2001-01-26 23:56:29 +08:00
|
|
|
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( nkeys > 0 ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[nkeys].bv_val = NULL;
|
2000-08-23 05:26:25 +08:00
|
|
|
*keysp = keys;
|
|
|
|
} else {
|
|
|
|
ch_free( keys );
|
|
|
|
*keysp = NULL;
|
|
|
|
}
|
|
|
|
|
2002-01-14 09:43:17 +08:00
|
|
|
ber_bvarray_free( nvalues );
|
2001-07-16 05:28:07 +08:00
|
|
|
|
2000-07-19 01:46:34 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2000-06-21 09:12:29 +08:00
|
|
|
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseExactIgnoreSubstringsFilter(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-07-19 01:46:34 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
2001-07-17 06:48:52 +08:00
|
|
|
SubstringsAssertion *sa;
|
2002-01-03 01:06:56 +08:00
|
|
|
char pre;
|
|
|
|
unsigned casefold;
|
2000-08-22 10:23:52 +08:00
|
|
|
ber_len_t nkeys = 0;
|
2000-07-19 01:46:34 +08:00
|
|
|
size_t slen, mlen, klen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-07-19 01:46:34 +08:00
|
|
|
struct berval *value;
|
|
|
|
struct berval digest;
|
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
casefold = ( mr != caseExactSubstringsMatchingRule )
|
2002-01-03 01:06:56 +08:00
|
|
|
? LDAP_UTF8_CASEFOLD : LDAP_UTF8_NOCASEFOLD;
|
2001-07-28 06:54:43 +08:00
|
|
|
|
|
|
|
sa = UTF8SubstringsassertionNormalize( assertValue, casefold );
|
2001-07-17 06:48:52 +08:00
|
|
|
if( sa == NULL ) {
|
2001-07-22 07:02:06 +08:00
|
|
|
*keysp = NULL;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2001-07-17 06:48:52 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL && sa->sa_initial.bv_val != NULL &&
|
|
|
|
sa->sa_initial.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
|
|
|
nkeys++;
|
|
|
|
}
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_ANY && sa->sa_any != NULL ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
ber_len_t i;
|
2001-12-29 23:01:10 +08:00
|
|
|
for( i=0; sa->sa_any[i].bv_val != NULL; i++ ) {
|
|
|
|
if( sa->sa_any[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
/* don't bother accounting for stepping */
|
2001-12-29 23:01:10 +08:00
|
|
|
nkeys += sa->sa_any[i].bv_len -
|
2000-08-22 10:23:52 +08:00
|
|
|
( SLAP_INDEX_SUBSTR_MAXLEN - 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL && sa->sa_final.bv_val != NULL &&
|
|
|
|
sa->sa_final.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
|
|
|
nkeys++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nkeys == 0 ) {
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( sa->sa_final.bv_val ) free( sa->sa_final.bv_val );
|
2002-01-14 09:43:17 +08:00
|
|
|
if ( sa->sa_any ) ber_bvarray_free( sa->sa_any );
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( sa->sa_initial.bv_val ) free( sa->sa_initial.bv_val );
|
2001-11-06 07:14:42 +08:00
|
|
|
ch_free( sa );
|
2000-07-19 01:46:34 +08:00
|
|
|
*keysp = NULL;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (nkeys+1) );
|
2000-07-19 01:46:34 +08:00
|
|
|
nkeys = 0;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL && sa->sa_initial.bv_val != NULL &&
|
|
|
|
sa->sa_initial.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
|
|
|
pre = SLAP_INDEX_SUBSTR_INITIAL_PREFIX;
|
2001-12-29 23:01:10 +08:00
|
|
|
value = &sa->sa_initial;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2000-09-08 07:46:07 +08:00
|
|
|
klen = SLAP_INDEX_SUBSTR_MAXLEN < value->bv_len
|
|
|
|
? SLAP_INDEX_SUBSTR_MAXLEN : value->bv_len;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
value->bv_val, klen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_ANY && sa->sa_any != NULL ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
ber_len_t i, j;
|
|
|
|
pre = SLAP_INDEX_SUBSTR_PREFIX;
|
2000-09-08 07:46:07 +08:00
|
|
|
klen = SLAP_INDEX_SUBSTR_MAXLEN;
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
for( i=0; sa->sa_any[i].bv_val != NULL; i++ ) {
|
|
|
|
if( sa->sa_any[i].bv_len < SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
value = &sa->sa_any[i];
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2000-08-23 06:34:37 +08:00
|
|
|
for(j=0;
|
2000-09-08 07:46:07 +08:00
|
|
|
j <= value->bv_len - SLAP_INDEX_SUBSTR_MAXLEN;
|
|
|
|
j += SLAP_INDEX_SUBSTR_STEP )
|
2000-08-23 06:34:37 +08:00
|
|
|
{
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-08-22 10:23:52 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-08 07:46:07 +08:00
|
|
|
&value->bv_val[j], klen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
2001-01-26 23:56:29 +08:00
|
|
|
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL && sa->sa_final.bv_val != NULL &&
|
|
|
|
sa->sa_final.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
|
|
|
pre = SLAP_INDEX_SUBSTR_FINAL_PREFIX;
|
2001-12-29 23:01:10 +08:00
|
|
|
value = &sa->sa_final;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2000-09-08 07:46:07 +08:00
|
|
|
klen = SLAP_INDEX_SUBSTR_MAXLEN < value->bv_len
|
|
|
|
? SLAP_INDEX_SUBSTR_MAXLEN : value->bv_len;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
&value->bv_val[value->bv_len-klen], klen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( nkeys > 0 ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[nkeys].bv_val = NULL;
|
2000-08-23 05:26:25 +08:00
|
|
|
*keysp = keys;
|
|
|
|
} else {
|
|
|
|
ch_free( keys );
|
|
|
|
*keysp = NULL;
|
|
|
|
}
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( sa->sa_final.bv_val ) free( sa->sa_final.bv_val );
|
2002-01-14 09:43:17 +08:00
|
|
|
if ( sa->sa_any ) ber_bvarray_free( sa->sa_any );
|
2001-12-30 08:14:45 +08:00
|
|
|
if ( sa->sa_initial.bv_val ) free( sa->sa_initial.bv_val );
|
2001-07-17 06:48:52 +08:00
|
|
|
ch_free( sa );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2001-07-28 06:54:43 +08:00
|
|
|
|
2000-01-30 03:43:19 +08:00
|
|
|
static int
|
2000-09-04 02:04:08 +08:00
|
|
|
caseIgnoreMatch(
|
2000-06-20 11:55:40 +08:00
|
|
|
int *matchp,
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t flags,
|
2000-01-30 03:43:19 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
2000-02-15 04:57:34 +08:00
|
|
|
void *assertedValue )
|
2000-01-30 03:43:19 +08:00
|
|
|
{
|
2002-03-11 09:48:37 +08:00
|
|
|
*matchp = UTF8bvnormcmp( value,
|
|
|
|
(struct berval *) assertedValue,
|
|
|
|
LDAP_UTF8_CASEFOLD );
|
2000-05-25 02:49:30 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-01-30 03:43:19 +08:00
|
|
|
}
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
/* Remove all spaces and '-' characters */
|
|
|
|
static int
|
|
|
|
telephoneNumberNormalize(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val,
|
|
|
|
struct berval *normalized )
|
|
|
|
{
|
|
|
|
char *p, *q;
|
|
|
|
|
|
|
|
q = normalized->bv_val = ch_malloc( val->bv_len + 1 );
|
|
|
|
|
|
|
|
for( p = val->bv_val; *p; p++ )
|
|
|
|
if ( ! ( ASCII_SPACE( *p ) || *p == '-' ))
|
|
|
|
*q++ = *p;
|
|
|
|
*q = '\0';
|
|
|
|
|
|
|
|
normalized->bv_len = q - normalized->bv_val;
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-09-04 02:04:08 +08:00
|
|
|
static int
|
|
|
|
oidValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val )
|
|
|
|
{
|
|
|
|
ber_len_t i;
|
|
|
|
|
2000-11-11 07:07:20 +08:00
|
|
|
if( val->bv_len == 0 ) {
|
|
|
|
/* disallow empty strings */
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
if( OID_LEADCHAR(val->bv_val[0]) ) {
|
|
|
|
int dot = 0;
|
|
|
|
for(i=1; i < val->bv_len; i++) {
|
|
|
|
if( OID_SEPARATOR( val->bv_val[i] ) ) {
|
|
|
|
if( dot++ ) return 1;
|
|
|
|
} else if ( OID_CHAR( val->bv_val[i] ) ) {
|
|
|
|
dot = 0;
|
|
|
|
} else {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return !dot ? LDAP_SUCCESS : LDAP_INVALID_SYNTAX;
|
|
|
|
|
|
|
|
} else if( DESC_LEADCHAR(val->bv_val[0]) ) {
|
|
|
|
for(i=1; i < val->bv_len; i++) {
|
|
|
|
if( !DESC_CHAR(val->bv_val[i] ) ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
2001-09-20 23:50:49 +08:00
|
|
|
static int
|
|
|
|
integerMatch(
|
|
|
|
int *matchp,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
char *v, *av;
|
2002-03-26 01:08:38 +08:00
|
|
|
int vsign = 1, avsign = 1; /* default sign = '+' */
|
2001-09-20 23:50:49 +08:00
|
|
|
struct berval *asserted;
|
|
|
|
ber_len_t vlen, avlen;
|
2002-03-26 01:08:38 +08:00
|
|
|
int match;
|
2001-09-20 23:50:49 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
/* Skip leading space/sign/zeroes, and get the sign of the *value number */
|
2001-09-20 23:50:49 +08:00
|
|
|
v = value->bv_val;
|
|
|
|
vlen = value->bv_len;
|
2002-03-26 01:08:38 +08:00
|
|
|
if( mr == integerFirstComponentMatchingRule ) {
|
|
|
|
char *tmp = memchr( v, '$', vlen );
|
|
|
|
if( tmp )
|
|
|
|
vlen = tmp - v;
|
|
|
|
while( vlen && ASCII_SPACE( v[vlen-1] ))
|
|
|
|
vlen--;
|
|
|
|
}
|
|
|
|
for( ; vlen && ( *v < '1' || '9' < *v ); v++, vlen-- ) /* ANSI 2.2.1 */
|
|
|
|
if( *v == '-' )
|
2001-09-20 23:50:49 +08:00
|
|
|
vsign = -1;
|
2002-03-26 01:08:38 +08:00
|
|
|
if( vlen == 0 )
|
|
|
|
vsign = 0;
|
2001-09-20 23:50:49 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
/* Do the same with the *assertedValue number */
|
2001-09-20 23:50:49 +08:00
|
|
|
asserted = (struct berval *) assertedValue;
|
|
|
|
av = asserted->bv_val;
|
|
|
|
avlen = asserted->bv_len;
|
2002-03-26 01:08:38 +08:00
|
|
|
for( ; avlen && ( *av < '1' || '9' < *av ); av++, avlen-- )
|
|
|
|
if( *av == '-' )
|
2001-09-20 23:50:49 +08:00
|
|
|
avsign = -1;
|
2002-03-26 01:08:38 +08:00
|
|
|
if( avlen == 0 )
|
|
|
|
avsign = 0;
|
2001-09-20 23:50:49 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
match = vsign - avsign;
|
|
|
|
if( match == 0 ) {
|
|
|
|
match = (vlen != avlen
|
|
|
|
? ( vlen < avlen ? -1 : 1 )
|
|
|
|
: memcmp( v, av, vlen ));
|
|
|
|
if( vsign < 0 )
|
|
|
|
match = -match;
|
2001-09-20 23:50:49 +08:00
|
|
|
}
|
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
*matchp = match;
|
2001-09-20 23:50:49 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-09-04 02:04:08 +08:00
|
|
|
static int
|
|
|
|
integerValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val )
|
|
|
|
{
|
|
|
|
ber_len_t i;
|
|
|
|
|
|
|
|
if( !val->bv_len ) return LDAP_INVALID_SYNTAX;
|
|
|
|
|
2001-09-20 23:50:49 +08:00
|
|
|
if(( val->bv_val[0] == '+' ) || ( val->bv_val[0] == '-' )) {
|
2000-09-12 08:00:25 +08:00
|
|
|
if( val->bv_len < 2 ) return LDAP_INVALID_SYNTAX;
|
|
|
|
} else if( !ASCII_DIGIT(val->bv_val[0]) ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
2001-09-20 23:50:49 +08:00
|
|
|
for( i=1; i < val->bv_len; i++ ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
if( !ASCII_DIGIT(val->bv_val[i]) ) return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-09-12 02:34:14 +08:00
|
|
|
static int
|
2000-09-12 08:00:25 +08:00
|
|
|
integerNormalize(
|
2000-09-12 02:34:14 +08:00
|
|
|
Syntax *syntax,
|
2000-09-12 08:00:25 +08:00
|
|
|
struct berval *val,
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval *normalized )
|
2000-09-12 02:34:14 +08:00
|
|
|
{
|
2000-09-12 08:38:47 +08:00
|
|
|
char *p;
|
2001-09-20 23:50:49 +08:00
|
|
|
int negative=0;
|
|
|
|
ber_len_t len;
|
|
|
|
|
2000-09-12 02:34:14 +08:00
|
|
|
|
2000-09-12 08:00:25 +08:00
|
|
|
p = val->bv_val;
|
2001-09-20 23:50:49 +08:00
|
|
|
len = val->bv_len;
|
|
|
|
|
|
|
|
/* Ignore leading spaces */
|
|
|
|
while ( len && ( *p == ' ' )) {
|
|
|
|
p++;
|
|
|
|
len--;
|
|
|
|
}
|
2000-09-12 02:34:14 +08:00
|
|
|
|
2000-09-12 08:00:25 +08:00
|
|
|
/* save sign */
|
2001-09-20 23:50:49 +08:00
|
|
|
if( len ) {
|
|
|
|
negative = ( *p == '-' );
|
|
|
|
if(( *p == '-' ) || ( *p == '+' )) {
|
|
|
|
p++;
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
}
|
2000-09-12 02:34:14 +08:00
|
|
|
|
2000-09-12 08:00:25 +08:00
|
|
|
/* Ignore leading zeros */
|
2001-09-20 23:50:49 +08:00
|
|
|
while ( len && ( *p == '0' )) {
|
|
|
|
p++;
|
|
|
|
len--;
|
|
|
|
}
|
2000-09-12 02:34:14 +08:00
|
|
|
|
2001-09-20 23:50:49 +08:00
|
|
|
/* If there are no non-zero digits left, the number is zero, otherwise
|
|
|
|
allocate space for the number and copy it into the buffer */
|
|
|
|
if( len == 0 ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val = ch_strdup("0");
|
|
|
|
normalized->bv_len = 1;
|
2001-09-20 23:50:49 +08:00
|
|
|
}
|
|
|
|
else {
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_len = len+negative;
|
2002-04-08 17:43:22 +08:00
|
|
|
normalized->bv_val = ch_malloc( normalized->bv_len + 1 );
|
2001-09-20 23:50:49 +08:00
|
|
|
if( negative ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val[0] = '-';
|
2001-09-20 23:50:49 +08:00
|
|
|
}
|
2002-01-03 01:06:56 +08:00
|
|
|
AC_MEMCPY( normalized->bv_val + negative, p, len );
|
2002-04-08 17:43:22 +08:00
|
|
|
normalized->bv_val[len+negative] = '\0';
|
2000-09-12 02:34:14 +08:00
|
|
|
}
|
|
|
|
|
2001-09-20 23:50:49 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2000-09-12 02:34:14 +08:00
|
|
|
|
2001-09-20 23:50:49 +08:00
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int integerIndexer(
|
2001-09-20 23:50:49 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2001-09-20 23:50:49 +08:00
|
|
|
{
|
|
|
|
int i;
|
2002-04-08 17:43:22 +08:00
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2002-04-08 17:43:22 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
|
|
|
struct berval digest;
|
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2001-09-20 23:50:49 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2002-04-08 17:43:22 +08:00
|
|
|
/* empty - just count them */
|
2000-09-12 02:34:14 +08:00
|
|
|
}
|
|
|
|
|
2002-04-08 17:43:22 +08:00
|
|
|
/* we should have at least one value at this point */
|
|
|
|
assert( i > 0 );
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (i+1) );
|
2001-09-20 23:50:49 +08:00
|
|
|
|
2002-04-08 17:43:22 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2002-04-08 17:43:22 +08:00
|
|
|
struct berval norm;
|
|
|
|
integerNormalize( syntax, &values[i], &norm );
|
|
|
|
|
|
|
|
HASH_Init( &HASHcontext );
|
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
|
|
|
HASH_Update( &HASHcontext,
|
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
|
|
|
HASH_Update( &HASHcontext,
|
|
|
|
syntax->ssyn_oid, slen );
|
|
|
|
HASH_Update( &HASHcontext,
|
|
|
|
mr->smr_oid, mlen );
|
|
|
|
HASH_Update( &HASHcontext,
|
|
|
|
norm.bv_val, norm.bv_len );
|
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
|
|
|
|
|
|
|
ber_dupbv( &keys[i], &digest );
|
|
|
|
ch_free( norm.bv_val );
|
2000-09-12 02:34:14 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[i].bv_val = NULL;
|
2001-09-20 23:50:49 +08:00
|
|
|
*keysp = keys;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int integerFilter(
|
2001-09-20 23:50:49 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2001-09-20 23:50:49 +08:00
|
|
|
{
|
2002-04-08 17:43:22 +08:00
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2002-04-08 17:43:22 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
|
|
|
struct berval norm;
|
|
|
|
struct berval digest;
|
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
|
|
|
|
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
|
|
|
|
|
|
|
integerNormalize( syntax, assertValue, &norm );
|
2001-09-20 23:50:49 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * 2 );
|
2002-04-08 17:43:22 +08:00
|
|
|
|
|
|
|
HASH_Init( &HASHcontext );
|
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
|
|
|
HASH_Update( &HASHcontext,
|
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
|
|
|
HASH_Update( &HASHcontext,
|
|
|
|
syntax->ssyn_oid, slen );
|
|
|
|
HASH_Update( &HASHcontext,
|
|
|
|
mr->smr_oid, mlen );
|
|
|
|
HASH_Update( &HASHcontext,
|
|
|
|
norm.bv_val, norm.bv_len );
|
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
|
|
|
|
|
|
|
ber_dupbv( &keys[0], &digest );
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[1].bv_val = NULL;
|
2002-04-08 17:43:22 +08:00
|
|
|
ch_free( norm.bv_val );
|
2001-09-20 23:50:49 +08:00
|
|
|
|
2002-04-08 17:43:22 +08:00
|
|
|
*keysp = keys;
|
2000-09-12 02:34:14 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-09-20 23:50:49 +08:00
|
|
|
|
2000-11-05 05:09:23 +08:00
|
|
|
static int
|
|
|
|
countryStringValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val )
|
|
|
|
{
|
|
|
|
if( val->bv_len != 2 ) return LDAP_INVALID_SYNTAX;
|
|
|
|
|
|
|
|
if( !SLAP_PRINTABLE(val->bv_val[0]) ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
if( !SLAP_PRINTABLE(val->bv_val[1]) ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-09-04 02:04:08 +08:00
|
|
|
static int
|
|
|
|
printableStringValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val )
|
|
|
|
{
|
|
|
|
ber_len_t i;
|
|
|
|
|
|
|
|
for(i=0; i < val->bv_len; i++) {
|
2000-11-05 04:31:50 +08:00
|
|
|
if( !SLAP_PRINTABLE(val->bv_val[i]) ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-11-05 05:09:23 +08:00
|
|
|
static int
|
|
|
|
printablesStringValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val )
|
|
|
|
{
|
|
|
|
ber_len_t i;
|
|
|
|
|
|
|
|
for(i=0; i < val->bv_len; i++) {
|
|
|
|
if( !SLAP_PRINTABLES(val->bv_val[i]) ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-09-04 02:04:08 +08:00
|
|
|
static int
|
|
|
|
IA5StringValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val )
|
|
|
|
{
|
|
|
|
ber_len_t i;
|
|
|
|
|
|
|
|
for(i=0; i < val->bv_len; i++) {
|
2002-01-04 04:03:27 +08:00
|
|
|
if( !LDAP_ASCII(val->bv_val[i]) ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
IA5StringNormalize(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val,
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval *normalized )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
|
|
|
char *p, *q;
|
|
|
|
|
|
|
|
p = val->bv_val;
|
|
|
|
|
|
|
|
/* Ignore initial whitespace */
|
|
|
|
while ( ASCII_SPACE( *p ) ) {
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val = ch_strdup( p );
|
|
|
|
p = q = normalized->bv_val;
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
while ( *p ) {
|
|
|
|
if ( ASCII_SPACE( *p ) ) {
|
|
|
|
*q++ = *p++;
|
|
|
|
|
|
|
|
/* Ignore the extra whitespace */
|
|
|
|
while ( ASCII_SPACE( *p ) ) {
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*q++ = *p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-04 04:03:27 +08:00
|
|
|
assert( normalized->bv_val <= p );
|
2000-09-13 09:23:39 +08:00
|
|
|
assert( q <= p );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If the string ended in space, backup the pointer one
|
|
|
|
* position. One is enough because the above loop collapsed
|
|
|
|
* all whitespace to a single space.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ASCII_SPACE( q[-1] ) ) {
|
|
|
|
--q;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* null terminate */
|
|
|
|
*q = '\0';
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_len = q - normalized->bv_val;
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
caseExactIA5Match(
|
|
|
|
int *matchp,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
int match = value->bv_len - ((struct berval *) assertedValue)->bv_len;
|
|
|
|
|
|
|
|
if( match == 0 ) {
|
|
|
|
match = strncmp( value->bv_val,
|
|
|
|
((struct berval *) assertedValue)->bv_val,
|
|
|
|
value->bv_len );
|
|
|
|
}
|
|
|
|
|
|
|
|
*matchp = match;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
caseExactIA5SubstringsMatch(
|
|
|
|
int *matchp,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
int match = 0;
|
|
|
|
SubstringsAssertion *sub = assertedValue;
|
|
|
|
struct berval left = *value;
|
|
|
|
int i;
|
|
|
|
ber_len_t inlen=0;
|
|
|
|
|
|
|
|
/* Add up asserted input length */
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_initial.bv_val ) {
|
|
|
|
inlen += sub->sa_initial.bv_len;
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
if( sub->sa_any ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
for(i=0; sub->sa_any[i].bv_val != NULL; i++) {
|
|
|
|
inlen += sub->sa_any[i].bv_len;
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
}
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_final.bv_val ) {
|
|
|
|
inlen += sub->sa_final.bv_len;
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_initial.bv_val ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
if( inlen > left.bv_len ) {
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
match = strncmp( sub->sa_initial.bv_val, left.bv_val,
|
|
|
|
sub->sa_initial.bv_len );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
if( match != 0 ) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
left.bv_val += sub->sa_initial.bv_len;
|
|
|
|
left.bv_len -= sub->sa_initial.bv_len;
|
|
|
|
inlen -= sub->sa_initial.bv_len;
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_final.bv_val ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
if( inlen > left.bv_len ) {
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
match = strncmp( sub->sa_final.bv_val,
|
|
|
|
&left.bv_val[left.bv_len - sub->sa_final.bv_len],
|
|
|
|
sub->sa_final.bv_len );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
if( match != 0 ) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
left.bv_len -= sub->sa_final.bv_len;
|
|
|
|
inlen -= sub->sa_final.bv_len;
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( sub->sa_any ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
for(i=0; sub->sa_any[i].bv_val; i++) {
|
2000-09-04 02:04:08 +08:00
|
|
|
ber_len_t idx;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
retry:
|
|
|
|
if( inlen > left.bv_len ) {
|
|
|
|
/* not enough length */
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_any[i].bv_len == 0 ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
p = strchr( left.bv_val, *sub->sa_any[i].bv_val );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
if( p == NULL ) {
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
idx = p - left.bv_val;
|
|
|
|
|
|
|
|
if( idx >= left.bv_len ) {
|
|
|
|
/* this shouldn't happen */
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
|
|
|
|
|
|
|
left.bv_val = p;
|
|
|
|
left.bv_len -= idx;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_any[i].bv_len > left.bv_len ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
/* not enough left */
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
match = strncmp( left.bv_val,
|
2001-12-29 23:01:10 +08:00
|
|
|
sub->sa_any[i].bv_val,
|
|
|
|
sub->sa_any[i].bv_len );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
if( match != 0 ) {
|
|
|
|
left.bv_val++;
|
|
|
|
left.bv_len--;
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
left.bv_val += sub->sa_any[i].bv_len;
|
|
|
|
left.bv_len -= sub->sa_any[i].bv_len;
|
|
|
|
inlen -= sub->sa_any[i].bv_len;
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
*matchp = match;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseExactIA5Indexer(
|
2000-09-04 02:04:08 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-09-04 02:04:08 +08:00
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2001-07-26 09:08:00 +08:00
|
|
|
/* empty - just count them */
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
2001-07-26 09:08:00 +08:00
|
|
|
/* we should have at least one value at this point */
|
|
|
|
assert( i > 0 );
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (i+1) );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
|
|
|
struct berval *value = &values[i];
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
value->bv_val, value->bv_len );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[i], &digest );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[i].bv_val = NULL;
|
2000-09-04 02:04:08 +08:00
|
|
|
*keysp = keys;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseExactIA5Filter(
|
2000-09-04 02:04:08 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-09-04 02:04:08 +08:00
|
|
|
struct berval *value;
|
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
value = (struct berval *) assertValue;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * 2 );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
value->bv_val, value->bv_len );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[0], &digest );
|
|
|
|
keys[1].bv_val = NULL;
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
*keysp = keys;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Substrings Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseExactIA5SubstringsIndexer(
|
2000-09-04 02:04:08 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
|
|
|
ber_len_t i, nkeys;
|
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-09-04 02:04:08 +08:00
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2000-09-15 11:26:22 +08:00
|
|
|
/* we should have at least one value at this point */
|
2002-01-02 19:00:36 +08:00
|
|
|
assert( values != NULL && values[0].bv_val != NULL );
|
2000-09-15 11:26:22 +08:00
|
|
|
|
2000-09-04 02:04:08 +08:00
|
|
|
nkeys=0;
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
/* count number of indices to generate */
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len < SLAP_INDEX_SUBSTR_MINLEN ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
nkeys += SLAP_INDEX_SUBSTR_MAXLEN -
|
|
|
|
( SLAP_INDEX_SUBSTR_MINLEN - 1);
|
|
|
|
} else {
|
2002-01-02 19:00:36 +08:00
|
|
|
nkeys += values[i].bv_len - ( SLAP_INDEX_SUBSTR_MINLEN - 1 );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( flags & SLAP_INDEX_SUBSTR_ANY ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
|
|
|
nkeys += values[i].bv_len - ( SLAP_INDEX_SUBSTR_MAXLEN - 1 );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
nkeys += SLAP_INDEX_SUBSTR_MAXLEN -
|
|
|
|
( SLAP_INDEX_SUBSTR_MINLEN - 1);
|
|
|
|
} else {
|
2002-01-02 19:00:36 +08:00
|
|
|
nkeys += values[i].bv_len - ( SLAP_INDEX_SUBSTR_MINLEN - 1 );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nkeys == 0 ) {
|
|
|
|
/* no keys to generate */
|
|
|
|
*keysp = NULL;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (nkeys+1) );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
nkeys=0;
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
ber_len_t j,max;
|
|
|
|
struct berval *value;
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
value = &values[i];
|
2000-09-04 02:04:08 +08:00
|
|
|
if( value->bv_len < SLAP_INDEX_SUBSTR_MINLEN ) continue;
|
|
|
|
|
|
|
|
if( ( flags & SLAP_INDEX_SUBSTR_ANY ) &&
|
|
|
|
( value->bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) )
|
|
|
|
{
|
|
|
|
char pre = SLAP_INDEX_SUBSTR_PREFIX;
|
|
|
|
max = value->bv_len - ( SLAP_INDEX_SUBSTR_MAXLEN - 1);
|
|
|
|
|
|
|
|
for( j=0; j<max; j++ ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-08 07:46:07 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&value->bv_val[j],
|
|
|
|
SLAP_INDEX_SUBSTR_MAXLEN );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
max = SLAP_INDEX_SUBSTR_MAXLEN < value->bv_len
|
|
|
|
? SLAP_INDEX_SUBSTR_MAXLEN : value->bv_len;
|
|
|
|
|
|
|
|
for( j=SLAP_INDEX_SUBSTR_MINLEN; j<=max; j++ ) {
|
|
|
|
char pre;
|
|
|
|
|
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL ) {
|
|
|
|
pre = SLAP_INDEX_SUBSTR_INITIAL_PREFIX;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
value->bv_val, j );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL ) {
|
|
|
|
pre = SLAP_INDEX_SUBSTR_FINAL_PREFIX;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&value->bv_val[value->bv_len-j], j );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nkeys > 0 ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[nkeys].bv_val = NULL;
|
2000-09-04 02:04:08 +08:00
|
|
|
*keysp = keys;
|
|
|
|
} else {
|
|
|
|
ch_free( keys );
|
|
|
|
*keysp = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseExactIA5SubstringsFilter(
|
2000-09-04 02:04:08 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
|
|
|
SubstringsAssertion *sa = assertValue;
|
|
|
|
char pre;
|
|
|
|
ber_len_t nkeys = 0;
|
|
|
|
size_t slen, mlen, klen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-09-04 02:04:08 +08:00
|
|
|
struct berval *value;
|
|
|
|
struct berval digest;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL && sa->sa_initial.bv_val != NULL &&
|
|
|
|
sa->sa_initial.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
|
|
|
nkeys++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( flags & SLAP_INDEX_SUBSTR_ANY && sa->sa_any != NULL ) {
|
|
|
|
ber_len_t i;
|
2001-12-29 23:01:10 +08:00
|
|
|
for( i=0; sa->sa_any[i].bv_val != NULL; i++ ) {
|
|
|
|
if( sa->sa_any[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
/* don't bother accounting for stepping */
|
2001-12-29 23:01:10 +08:00
|
|
|
nkeys += sa->sa_any[i].bv_len -
|
2000-09-04 02:04:08 +08:00
|
|
|
( SLAP_INDEX_SUBSTR_MAXLEN - 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL && sa->sa_final.bv_val != NULL &&
|
|
|
|
sa->sa_final.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
|
|
|
nkeys++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nkeys == 0 ) {
|
|
|
|
*keysp = NULL;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (nkeys+1) );
|
2000-09-04 02:04:08 +08:00
|
|
|
nkeys = 0;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL && sa->sa_initial.bv_val != NULL &&
|
|
|
|
sa->sa_initial.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
|
|
|
pre = SLAP_INDEX_SUBSTR_INITIAL_PREFIX;
|
2001-12-29 23:01:10 +08:00
|
|
|
value = &sa->sa_initial;
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
klen = SLAP_INDEX_SUBSTR_MAXLEN < value->bv_len
|
|
|
|
? SLAP_INDEX_SUBSTR_MAXLEN : value->bv_len;
|
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
value->bv_val, klen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( flags & SLAP_INDEX_SUBSTR_ANY && sa->sa_any != NULL ) {
|
|
|
|
ber_len_t i, j;
|
|
|
|
pre = SLAP_INDEX_SUBSTR_PREFIX;
|
|
|
|
klen = SLAP_INDEX_SUBSTR_MAXLEN;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
for( i=0; sa->sa_any[i].bv_val != NULL; i++ ) {
|
|
|
|
if( sa->sa_any[i].bv_len < SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
value = &sa->sa_any[i];
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
for(j=0;
|
|
|
|
j <= value->bv_len - SLAP_INDEX_SUBSTR_MAXLEN;
|
|
|
|
j += SLAP_INDEX_SUBSTR_STEP )
|
|
|
|
{
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&value->bv_val[j], klen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL && sa->sa_final.bv_val != NULL &&
|
|
|
|
sa->sa_final.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-09-04 02:04:08 +08:00
|
|
|
{
|
|
|
|
pre = SLAP_INDEX_SUBSTR_FINAL_PREFIX;
|
2001-12-29 23:01:10 +08:00
|
|
|
value = &sa->sa_final;
|
2000-09-04 02:04:08 +08:00
|
|
|
|
|
|
|
klen = SLAP_INDEX_SUBSTR_MAXLEN < value->bv_len
|
|
|
|
? SLAP_INDEX_SUBSTR_MAXLEN : value->bv_len;
|
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-09-04 02:04:08 +08:00
|
|
|
&value->bv_val[value->bv_len-klen], klen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-09-04 02:04:08 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-09-04 02:04:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( nkeys > 0 ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[nkeys].bv_val = NULL;
|
2000-09-04 02:04:08 +08:00
|
|
|
*keysp = keys;
|
|
|
|
} else {
|
|
|
|
ch_free( keys );
|
|
|
|
*keysp = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
caseIgnoreIA5Match(
|
|
|
|
int *matchp,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
int match = value->bv_len - ((struct berval *) assertedValue)->bv_len;
|
|
|
|
|
2001-01-18 05:02:11 +08:00
|
|
|
if( match == 0 && value->bv_len ) {
|
2000-09-04 02:04:08 +08:00
|
|
|
match = strncasecmp( value->bv_val,
|
|
|
|
((struct berval *) assertedValue)->bv_val,
|
|
|
|
value->bv_len );
|
|
|
|
}
|
|
|
|
|
|
|
|
*matchp = match;
|
|
|
|
return LDAP_SUCCESS;
|
2000-05-28 09:18:53 +08:00
|
|
|
}
|
|
|
|
|
2000-05-28 07:08:28 +08:00
|
|
|
static int
|
|
|
|
caseIgnoreIA5SubstringsMatch(
|
|
|
|
int *matchp,
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t flags,
|
2000-05-28 07:08:28 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
int match = 0;
|
|
|
|
SubstringsAssertion *sub = assertedValue;
|
|
|
|
struct berval left = *value;
|
|
|
|
int i;
|
|
|
|
ber_len_t inlen=0;
|
|
|
|
|
2000-06-16 03:32:24 +08:00
|
|
|
/* Add up asserted input length */
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_initial.bv_val ) {
|
|
|
|
inlen += sub->sa_initial.bv_len;
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
if( sub->sa_any ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
for(i=0; sub->sa_any[i].bv_val != NULL; i++) {
|
|
|
|
inlen += sub->sa_any[i].bv_len;
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
}
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_final.bv_val ) {
|
|
|
|
inlen += sub->sa_final.bv_len;
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_initial.bv_val ) {
|
2000-06-16 03:56:51 +08:00
|
|
|
if( inlen > left.bv_len ) {
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
match = strncasecmp( sub->sa_initial.bv_val, left.bv_val,
|
|
|
|
sub->sa_initial.bv_len );
|
2000-05-28 07:08:28 +08:00
|
|
|
|
|
|
|
if( match != 0 ) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
left.bv_val += sub->sa_initial.bv_len;
|
|
|
|
left.bv_len -= sub->sa_initial.bv_len;
|
|
|
|
inlen -= sub->sa_initial.bv_len;
|
2000-06-16 03:56:51 +08:00
|
|
|
}
|
2000-06-16 03:32:24 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_final.bv_val ) {
|
2000-06-16 03:32:24 +08:00
|
|
|
if( inlen > left.bv_len ) {
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
2000-05-28 07:08:28 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
match = strncasecmp( sub->sa_final.bv_val,
|
|
|
|
&left.bv_val[left.bv_len - sub->sa_final.bv_len],
|
|
|
|
sub->sa_final.bv_len );
|
2000-05-28 07:08:28 +08:00
|
|
|
|
|
|
|
if( match != 0 ) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
left.bv_len -= sub->sa_final.bv_len;
|
|
|
|
inlen -= sub->sa_final.bv_len;
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( sub->sa_any ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
for(i=0; sub->sa_any[i].bv_val; i++) {
|
2000-05-28 09:18:53 +08:00
|
|
|
ber_len_t idx;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
retry:
|
2000-06-16 03:56:51 +08:00
|
|
|
if( inlen > left.bv_len ) {
|
|
|
|
/* not enough length */
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_any[i].bv_len == 0 ) {
|
2000-05-28 09:18:53 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-01-17 08:18:57 +08:00
|
|
|
p = bvcasechr( &left, *sub->sa_any[i].bv_val, &idx );
|
2000-05-28 09:18:53 +08:00
|
|
|
|
|
|
|
if( p == NULL ) {
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2002-01-17 08:18:57 +08:00
|
|
|
assert( idx < left.bv_len );
|
2000-05-28 09:18:53 +08:00
|
|
|
if( idx >= left.bv_len ) {
|
|
|
|
/* this shouldn't happen */
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
|
|
|
|
|
|
|
left.bv_val = p;
|
|
|
|
left.bv_len -= idx;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if( sub->sa_any[i].bv_len > left.bv_len ) {
|
2000-05-28 09:18:53 +08:00
|
|
|
/* not enough left */
|
|
|
|
match = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
match = strncasecmp( left.bv_val,
|
2001-12-29 23:01:10 +08:00
|
|
|
sub->sa_any[i].bv_val,
|
|
|
|
sub->sa_any[i].bv_len );
|
2000-05-28 09:18:53 +08:00
|
|
|
|
|
|
|
if( match != 0 ) {
|
2000-06-16 03:56:51 +08:00
|
|
|
left.bv_val++;
|
|
|
|
left.bv_len--;
|
|
|
|
|
2000-05-28 09:18:53 +08:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
left.bv_val += sub->sa_any[i].bv_len;
|
|
|
|
left.bv_len -= sub->sa_any[i].bv_len;
|
|
|
|
inlen -= sub->sa_any[i].bv_len;
|
2000-05-28 09:18:53 +08:00
|
|
|
}
|
2000-05-28 07:08:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
*matchp = match;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2000-05-29 12:58:40 +08:00
|
|
|
|
2000-06-05 06:59:38 +08:00
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseIgnoreIA5Indexer(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-06-05 06:59:38 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2000-06-05 06:59:38 +08:00
|
|
|
{
|
|
|
|
int i;
|
2002-07-07 21:22:45 +08:00
|
|
|
int rc = LDAP_SUCCESS;
|
2000-06-05 06:59:38 +08:00
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-06-05 06:59:38 +08:00
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2000-09-15 11:26:22 +08:00
|
|
|
/* we should have at least one value at this point */
|
2002-01-02 19:00:36 +08:00
|
|
|
assert( values != NULL && values[0].bv_val != NULL );
|
2000-09-15 11:26:22 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2000-06-05 06:59:38 +08:00
|
|
|
/* just count them */
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (i+1) );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval value;
|
2002-07-07 21:22:45 +08:00
|
|
|
|
|
|
|
if( mr->smr_normalize ) {
|
|
|
|
rc = (mr->smr_normalize)( use, syntax, mr, &values[i], &value );
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if ( mr->smr_syntax->ssyn_normalize ) {
|
|
|
|
rc = (mr->smr_syntax->ssyn_normalize)( syntax, &values[i], &value );
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ber_dupbv( &value, &values[i] );
|
|
|
|
}
|
|
|
|
|
2002-04-04 20:50:46 +08:00
|
|
|
ldap_pvt_str2lower( value.bv_val );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-06-05 06:59:38 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
value.bv_val, value.bv_len );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
free( value.bv_val );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[i], &digest );
|
2000-06-05 06:59:38 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[i].bv_val = NULL;
|
2002-07-07 21:22:45 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
ber_bvarray_free( keys );
|
|
|
|
keys = NULL;
|
|
|
|
}
|
2000-06-05 06:59:38 +08:00
|
|
|
*keysp = keys;
|
2002-07-07 21:22:45 +08:00
|
|
|
return rc;
|
2000-06-05 06:59:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseIgnoreIA5Filter(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-06-05 06:59:38 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2000-06-05 06:59:38 +08:00
|
|
|
{
|
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval value;
|
2000-06-05 06:59:38 +08:00
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &value, (struct berval *) assertValue );
|
2002-04-04 20:50:46 +08:00
|
|
|
ldap_pvt_str2lower( value.bv_val );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * 2 );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-06-05 06:59:38 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-06-05 06:59:38 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
value.bv_val, value.bv_len );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[0], &digest );
|
|
|
|
keys[1].bv_val = NULL;
|
2000-06-05 06:59:38 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
free( value.bv_val );
|
2000-06-05 06:59:38 +08:00
|
|
|
|
|
|
|
*keysp = keys;
|
2000-08-23 05:26:25 +08:00
|
|
|
|
2000-06-05 06:59:38 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-07-19 01:46:34 +08:00
|
|
|
/* Substrings Index generation function */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseIgnoreIA5SubstringsIndexer(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-07-19 01:46:34 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
2000-08-22 10:23:52 +08:00
|
|
|
ber_len_t i, nkeys;
|
2000-07-19 01:46:34 +08:00
|
|
|
size_t slen, mlen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2000-07-19 01:46:34 +08:00
|
|
|
struct berval digest;
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2000-09-15 11:26:22 +08:00
|
|
|
/* we should have at least one value at this point */
|
2002-01-02 19:00:36 +08:00
|
|
|
assert( values != NULL && values[0].bv_val != NULL );
|
2000-09-15 11:26:22 +08:00
|
|
|
|
2000-07-19 01:46:34 +08:00
|
|
|
nkeys=0;
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
/* count number of indices to generate */
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len < SLAP_INDEX_SUBSTR_MINLEN ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
nkeys += SLAP_INDEX_SUBSTR_MAXLEN -
|
|
|
|
( SLAP_INDEX_SUBSTR_MINLEN - 1);
|
|
|
|
} else {
|
2002-01-02 19:00:36 +08:00
|
|
|
nkeys += values[i].bv_len - ( SLAP_INDEX_SUBSTR_MINLEN - 1 );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_ANY ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
|
|
|
nkeys += values[i].bv_len - ( SLAP_INDEX_SUBSTR_MAXLEN - 1 );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
nkeys += SLAP_INDEX_SUBSTR_MAXLEN -
|
|
|
|
( SLAP_INDEX_SUBSTR_MINLEN - 1);
|
|
|
|
} else {
|
2002-01-02 19:00:36 +08:00
|
|
|
nkeys += values[i].bv_len - ( SLAP_INDEX_SUBSTR_MINLEN - 1 );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nkeys == 0 ) {
|
|
|
|
/* no keys to generate */
|
|
|
|
*keysp = NULL;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (nkeys+1) );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
|
|
|
nkeys=0;
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
int j,max;
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval value;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
if( values[i].bv_len < SLAP_INDEX_SUBSTR_MINLEN ) continue;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
ber_dupbv( &value, &values[i] );
|
2002-04-04 20:50:46 +08:00
|
|
|
ldap_pvt_str2lower( value.bv_val );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( ( flags & SLAP_INDEX_SUBSTR_ANY ) &&
|
2001-12-29 23:01:10 +08:00
|
|
|
( value.bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) )
|
2000-08-22 10:23:52 +08:00
|
|
|
{
|
|
|
|
char pre = SLAP_INDEX_SUBSTR_PREFIX;
|
2001-12-29 23:01:10 +08:00
|
|
|
max = value.bv_len - ( SLAP_INDEX_SUBSTR_MAXLEN - 1);
|
2000-08-22 10:23:52 +08:00
|
|
|
|
|
|
|
for( j=0; j<max; j++ ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-08-22 10:23:52 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-08 07:46:07 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
&value.bv_val[j],
|
2000-08-22 10:23:52 +08:00
|
|
|
SLAP_INDEX_SUBSTR_MAXLEN );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
max = SLAP_INDEX_SUBSTR_MAXLEN < value.bv_len
|
|
|
|
? SLAP_INDEX_SUBSTR_MAXLEN : value.bv_len;
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2000-07-19 01:46:34 +08:00
|
|
|
for( j=SLAP_INDEX_SUBSTR_MINLEN; j<=max; j++ ) {
|
|
|
|
char pre;
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_INITIAL ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
pre = SLAP_INDEX_SUBSTR_INITIAL_PREFIX;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
value.bv_val, j );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( flags & SLAP_INDEX_SUBSTR_FINAL ) {
|
2000-07-19 01:46:34 +08:00
|
|
|
pre = SLAP_INDEX_SUBSTR_FINAL_PREFIX;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
&value.bv_val[value.bv_len-j], j );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
free( value.bv_val );
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( nkeys > 0 ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[nkeys].bv_val = NULL;
|
2000-08-23 05:26:25 +08:00
|
|
|
*keysp = keys;
|
|
|
|
} else {
|
|
|
|
ch_free( keys );
|
|
|
|
*keysp = NULL;
|
|
|
|
}
|
|
|
|
|
2000-07-19 01:46:34 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-12-23 09:19:46 +08:00
|
|
|
static int caseIgnoreIA5SubstringsFilter(
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
2000-07-19 01:46:34 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
|
|
|
SubstringsAssertion *sa = assertValue;
|
|
|
|
char pre;
|
2000-08-22 10:23:52 +08:00
|
|
|
ber_len_t nkeys = 0;
|
2000-07-19 01:46:34 +08:00
|
|
|
size_t slen, mlen, klen;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_CONTEXT HASHcontext;
|
2001-01-18 00:35:53 +08:00
|
|
|
unsigned char HASHdigest[HASH_BYTES];
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval value;
|
2000-07-19 01:46:34 +08:00
|
|
|
struct berval digest;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if((flags & SLAP_INDEX_SUBSTR_INITIAL) && sa->sa_initial.bv_val != NULL &&
|
|
|
|
sa->sa_initial.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
|
|
|
nkeys++;
|
|
|
|
}
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if((flags & SLAP_INDEX_SUBSTR_ANY) && sa->sa_any != NULL ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
ber_len_t i;
|
2001-12-29 23:01:10 +08:00
|
|
|
for( i=0; sa->sa_any[i].bv_val != NULL; i++ ) {
|
|
|
|
if( sa->sa_any[i].bv_len >= SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
/* don't bother accounting for stepping */
|
2001-12-29 23:01:10 +08:00
|
|
|
nkeys += sa->sa_any[i].bv_len -
|
2000-08-22 10:23:52 +08:00
|
|
|
( SLAP_INDEX_SUBSTR_MAXLEN - 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if((flags & SLAP_INDEX_SUBSTR_FINAL) && sa->sa_final.bv_val != NULL &&
|
|
|
|
sa->sa_final.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
|
|
|
nkeys++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nkeys == 0 ) {
|
|
|
|
*keysp = NULL;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
digest.bv_val = HASHdigest;
|
|
|
|
digest.bv_len = sizeof(HASHdigest);
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-26 22:36:02 +08:00
|
|
|
slen = syntax->ssyn_oidlen;
|
|
|
|
mlen = mr->smr_oidlen;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (nkeys+1) );
|
2000-07-19 01:46:34 +08:00
|
|
|
nkeys = 0;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if((flags & SLAP_INDEX_SUBSTR_INITIAL) && sa->sa_initial.bv_val != NULL &&
|
|
|
|
sa->sa_initial.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
|
|
|
pre = SLAP_INDEX_SUBSTR_INITIAL_PREFIX;
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &value, &sa->sa_initial );
|
2002-04-04 20:50:46 +08:00
|
|
|
ldap_pvt_str2lower( value.bv_val );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
klen = SLAP_INDEX_SUBSTR_MAXLEN < value.bv_len
|
|
|
|
? SLAP_INDEX_SUBSTR_MAXLEN : value.bv_len;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
value.bv_val, klen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
free( value.bv_val );
|
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if((flags & SLAP_INDEX_SUBSTR_ANY) && sa->sa_any != NULL ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
ber_len_t i, j;
|
|
|
|
pre = SLAP_INDEX_SUBSTR_PREFIX;
|
|
|
|
klen = SLAP_INDEX_SUBSTR_MAXLEN;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
for( i=0; sa->sa_any[i].bv_val != NULL; i++ ) {
|
|
|
|
if( sa->sa_any[i].bv_len < SLAP_INDEX_SUBSTR_MAXLEN ) {
|
2000-08-22 10:23:52 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &value, &sa->sa_any[i] );
|
2002-04-04 20:50:46 +08:00
|
|
|
ldap_pvt_str2lower( value.bv_val );
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2000-08-23 06:34:37 +08:00
|
|
|
for(j=0;
|
2001-12-29 23:01:10 +08:00
|
|
|
j <= value.bv_len - SLAP_INDEX_SUBSTR_MAXLEN;
|
2000-08-23 06:34:37 +08:00
|
|
|
j += SLAP_INDEX_SUBSTR_STEP )
|
|
|
|
{
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-08-22 10:23:52 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-08-22 10:23:52 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
&value.bv_val[j], klen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-08-22 10:23:52 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
free( value.bv_val );
|
2000-08-22 10:23:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
if((flags & SLAP_INDEX_SUBSTR_FINAL) && sa->sa_final.bv_val != NULL &&
|
|
|
|
sa->sa_final.bv_len >= SLAP_INDEX_SUBSTR_MINLEN )
|
2000-07-19 01:46:34 +08:00
|
|
|
{
|
|
|
|
pre = SLAP_INDEX_SUBSTR_FINAL_PREFIX;
|
2001-12-29 23:01:10 +08:00
|
|
|
ber_dupbv( &value, &sa->sa_final );
|
2002-04-04 20:50:46 +08:00
|
|
|
ldap_pvt_str2lower( value.bv_val );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
klen = SLAP_INDEX_SUBSTR_MAXLEN < value.bv_len
|
|
|
|
? SLAP_INDEX_SUBSTR_MAXLEN : value.bv_len;
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Init( &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
if( prefix != NULL && prefix->bv_len > 0 ) {
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
prefix->bv_val, prefix->bv_len );
|
|
|
|
}
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
&pre, sizeof( pre ) );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
syntax->ssyn_oid, slen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2000-07-19 01:46:34 +08:00
|
|
|
mr->smr_oid, mlen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Update( &HASHcontext,
|
2001-12-29 23:01:10 +08:00
|
|
|
&value.bv_val[value.bv_len-klen], klen );
|
2000-09-23 04:47:46 +08:00
|
|
|
HASH_Final( HASHdigest, &HASHcontext );
|
2000-07-19 01:46:34 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
free( value.bv_val );
|
|
|
|
ber_dupbv( &keys[nkeys++], &digest );
|
2000-07-19 01:46:34 +08:00
|
|
|
}
|
|
|
|
|
2000-08-23 05:26:25 +08:00
|
|
|
if( nkeys > 0 ) {
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[nkeys].bv_val = NULL;
|
2000-08-23 05:26:25 +08:00
|
|
|
*keysp = keys;
|
|
|
|
} else {
|
|
|
|
ch_free( keys );
|
|
|
|
*keysp = NULL;
|
|
|
|
}
|
2000-07-19 01:46:34 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-01-18 05:02:11 +08:00
|
|
|
static int
|
|
|
|
numericStringValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *in )
|
|
|
|
{
|
|
|
|
ber_len_t i;
|
|
|
|
|
|
|
|
for(i=0; i < in->bv_len; i++) {
|
|
|
|
if( !SLAP_NUMERIC(in->bv_val[i]) ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-05-29 12:58:40 +08:00
|
|
|
static int
|
2000-06-16 04:33:56 +08:00
|
|
|
numericStringNormalize(
|
2000-05-29 12:58:40 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val,
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval *normalized )
|
2000-05-29 12:58:40 +08:00
|
|
|
{
|
2001-01-18 05:02:11 +08:00
|
|
|
/* removal all spaces */
|
2000-05-29 12:58:40 +08:00
|
|
|
char *p, *q;
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val = ch_malloc( val->bv_len + 1 );
|
2000-05-29 12:58:40 +08:00
|
|
|
|
|
|
|
p = val->bv_val;
|
2001-12-29 23:01:10 +08:00
|
|
|
q = normalized->bv_val;
|
2000-05-29 12:58:40 +08:00
|
|
|
|
|
|
|
while ( *p ) {
|
2000-06-21 01:05:15 +08:00
|
|
|
if ( ASCII_SPACE( *p ) ) {
|
2000-05-29 12:58:40 +08:00
|
|
|
/* Ignore whitespace */
|
|
|
|
p++;
|
|
|
|
} else {
|
|
|
|
*q++ = *p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-25 03:54:04 +08:00
|
|
|
/* we should have copied no more then is in val */
|
2001-12-29 23:01:10 +08:00
|
|
|
assert( (q - normalized->bv_val) <= (p - val->bv_val) );
|
2000-05-29 12:58:40 +08:00
|
|
|
|
|
|
|
/* null terminate */
|
|
|
|
*q = '\0';
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_len = q - normalized->bv_val;
|
2000-05-29 12:58:40 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-06-20 11:55:40 +08:00
|
|
|
static int
|
|
|
|
objectIdentifierFirstComponentMatch(
|
|
|
|
int *matchp,
|
2000-08-23 05:26:25 +08:00
|
|
|
slap_mask_t flags,
|
2000-06-20 11:55:40 +08:00
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
int rc = LDAP_SUCCESS;
|
|
|
|
int match;
|
|
|
|
struct berval *asserted = (struct berval *) assertedValue;
|
|
|
|
ber_len_t i;
|
|
|
|
struct berval oid;
|
|
|
|
|
|
|
|
if( value->bv_len == 0 || value->bv_val[0] != '(' /*')'*/ ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* trim leading white space */
|
2000-06-21 01:05:15 +08:00
|
|
|
for( i=1; ASCII_SPACE(value->bv_val[i]) && i < value->bv_len; i++ ) {
|
2000-06-20 11:55:40 +08:00
|
|
|
/* empty */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* grab next word */
|
|
|
|
oid.bv_val = &value->bv_val[i];
|
|
|
|
oid.bv_len = value->bv_len - i;
|
2000-06-21 01:05:15 +08:00
|
|
|
for( i=1; ASCII_SPACE(value->bv_val[i]) && i < oid.bv_len; i++ ) {
|
2000-06-20 11:55:40 +08:00
|
|
|
/* empty */
|
|
|
|
}
|
|
|
|
oid.bv_len = i;
|
|
|
|
|
|
|
|
/* insert attributeTypes, objectclass check here */
|
2000-06-21 01:05:15 +08:00
|
|
|
if( OID_LEADCHAR(asserted->bv_val[0]) ) {
|
2000-06-26 13:13:41 +08:00
|
|
|
rc = objectIdentifierMatch( &match, flags, syntax, mr, &oid, asserted );
|
2000-06-20 11:55:40 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
if ( !strcmp( syntax->ssyn_oid, SLAP_SYNTAX_MATCHINGRULES_OID ) ) {
|
2001-12-28 19:45:25 +08:00
|
|
|
MatchingRule *asserted_mr = mr_bvfind( asserted );
|
|
|
|
MatchingRule *stored_mr = mr_bvfind( &oid );
|
2000-06-20 11:55:40 +08:00
|
|
|
|
|
|
|
if( asserted_mr == NULL ) {
|
|
|
|
rc = SLAPD_COMPARE_UNDEFINED;
|
|
|
|
} else {
|
|
|
|
match = asserted_mr != stored_mr;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if ( !strcmp( syntax->ssyn_oid,
|
|
|
|
SLAP_SYNTAX_ATTRIBUTETYPES_OID ) )
|
|
|
|
{
|
2001-12-28 19:45:25 +08:00
|
|
|
AttributeType *asserted_at = at_bvfind( asserted );
|
|
|
|
AttributeType *stored_at = at_bvfind( &oid );
|
2000-06-20 11:55:40 +08:00
|
|
|
|
|
|
|
if( asserted_at == NULL ) {
|
|
|
|
rc = SLAPD_COMPARE_UNDEFINED;
|
|
|
|
} else {
|
|
|
|
match = asserted_at != stored_at;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if ( !strcmp( syntax->ssyn_oid,
|
|
|
|
SLAP_SYNTAX_OBJECTCLASSES_OID ) )
|
|
|
|
{
|
2001-12-28 19:45:25 +08:00
|
|
|
ObjectClass *asserted_oc = oc_bvfind( asserted );
|
|
|
|
ObjectClass *stored_oc = oc_bvfind( &oid );
|
2000-06-20 11:55:40 +08:00
|
|
|
|
|
|
|
if( asserted_oc == NULL ) {
|
|
|
|
rc = SLAPD_COMPARE_UNDEFINED;
|
|
|
|
} else {
|
|
|
|
match = asserted_oc != stored_oc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, ENTRY,
|
|
|
|
"objectIdentifierFirstComponentMatch: %d\n %s\n %s\n",
|
|
|
|
match, value->bv_val, asserted->bv_val );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
2000-06-20 11:55:40 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "objectIdentifierFirstComponentMatch "
|
|
|
|
"%d\n\t\"%s\"\n\t\"%s\"\n",
|
2001-07-22 07:02:06 +08:00
|
|
|
match, value->bv_val, asserted->bv_val );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
2000-06-20 11:55:40 +08:00
|
|
|
|
|
|
|
if( rc == LDAP_SUCCESS ) *matchp = match;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2001-09-02 01:10:43 +08:00
|
|
|
static int
|
|
|
|
integerBitAndMatch(
|
|
|
|
int *matchp,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
long lValue, lAssertedValue;
|
|
|
|
|
|
|
|
/* safe to assume integers are NUL terminated? */
|
|
|
|
lValue = strtoul(value->bv_val, NULL, 10);
|
|
|
|
if(( lValue == LONG_MIN || lValue == LONG_MAX) && errno == ERANGE )
|
|
|
|
return LDAP_CONSTRAINT_VIOLATION;
|
|
|
|
|
|
|
|
lAssertedValue = strtol(((struct berval *)assertedValue)->bv_val, NULL, 10);
|
|
|
|
if(( lAssertedValue == LONG_MIN || lAssertedValue == LONG_MAX) && errno == ERANGE )
|
|
|
|
return LDAP_CONSTRAINT_VIOLATION;
|
|
|
|
|
|
|
|
*matchp = (lValue & lAssertedValue);
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
integerBitOrMatch(
|
|
|
|
int *matchp,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
long lValue, lAssertedValue;
|
|
|
|
|
|
|
|
/* safe to assume integers are NUL terminated? */
|
|
|
|
lValue = strtoul(value->bv_val, NULL, 10);
|
|
|
|
if(( lValue == LONG_MIN || lValue == LONG_MAX) && errno == ERANGE )
|
|
|
|
return LDAP_CONSTRAINT_VIOLATION;
|
|
|
|
|
|
|
|
lAssertedValue = strtol(((struct berval *)assertedValue)->bv_val, NULL, 10);
|
|
|
|
if(( lAssertedValue == LONG_MIN || lAssertedValue == LONG_MAX) && errno == ERANGE )
|
|
|
|
return LDAP_CONSTRAINT_VIOLATION;
|
|
|
|
|
|
|
|
*matchp = (lValue | lAssertedValue);
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-10-20 18:15:09 +08:00
|
|
|
#ifdef HAVE_TLS
|
|
|
|
#include <openssl/x509.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
char digit[] = "0123456789";
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Next function returns a string representation of a ASN1_INTEGER.
|
|
|
|
* It works for unlimited lengths.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static struct berval *
|
2002-04-16 16:46:25 +08:00
|
|
|
asn1_integer2str(ASN1_INTEGER *a, struct berval *bv)
|
2001-10-20 18:15:09 +08:00
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
/* We work backwards, make it fill from the end of buf */
|
|
|
|
p = buf + sizeof(buf) - 1;
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
if ( a == NULL || a->length == 0 ) {
|
|
|
|
*--p = '0';
|
|
|
|
} else {
|
|
|
|
int i;
|
|
|
|
int n = a->length;
|
|
|
|
int base = 0;
|
|
|
|
unsigned int *copy;
|
|
|
|
|
|
|
|
/* We want to preserve the original */
|
|
|
|
copy = ch_malloc(n*sizeof(unsigned int));
|
|
|
|
for (i = 0; i<n; i++) {
|
|
|
|
copy[i] = a->data[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* base indicates the index of the most significant
|
|
|
|
* byte that might be nonzero. When it goes off the
|
|
|
|
* end, we now there is nothing left to do.
|
|
|
|
*/
|
|
|
|
while (base < n) {
|
|
|
|
unsigned int carry;
|
|
|
|
|
|
|
|
carry = 0;
|
|
|
|
for (i = base; i<n; i++ ) {
|
|
|
|
copy[i] += carry*256;
|
|
|
|
carry = copy[i] % 10;
|
|
|
|
copy[i] /= 10;
|
|
|
|
}
|
|
|
|
if (p <= buf+1) {
|
|
|
|
/*
|
|
|
|
* Way too large, we need to leave
|
|
|
|
* room for sign if negative
|
|
|
|
*/
|
2001-11-07 06:36:28 +08:00
|
|
|
free(copy);
|
|
|
|
return NULL;
|
2001-10-20 18:15:09 +08:00
|
|
|
}
|
|
|
|
*--p = digit[carry];
|
|
|
|
if (copy[base] == 0)
|
|
|
|
base++;
|
|
|
|
}
|
|
|
|
free(copy);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( a->type == V_ASN1_NEG_INTEGER ) {
|
|
|
|
*--p = '-';
|
|
|
|
}
|
|
|
|
|
2002-04-16 16:46:25 +08:00
|
|
|
return ber_str2bv( p, 0, 1, bv );
|
2001-10-20 18:15:09 +08:00
|
|
|
}
|
|
|
|
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
/*
|
|
|
|
* Given a certificate in DER format, extract the corresponding
|
|
|
|
* assertion value for certificateExactMatch
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
certificateExactConvert(
|
|
|
|
struct berval * in,
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval * out )
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
{
|
|
|
|
X509 *xcert;
|
|
|
|
unsigned char *p = in->bv_val;
|
2002-04-16 16:46:25 +08:00
|
|
|
struct berval serial;
|
|
|
|
struct berval issuer_dn;
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
|
|
|
|
xcert = d2i_X509(NULL, &p, in->bv_len);
|
|
|
|
if ( !xcert ) {
|
2001-10-23 03:55:21 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, ENTRY,
|
|
|
|
"certificateExactConvert: error parsing cert: %s\n",
|
|
|
|
ERR_error_string(ERR_get_error(),NULL), 0, 0 );
|
2001-10-23 03:55:21 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ARGS, "certificateExactConvert: "
|
|
|
|
"error parsing cert: %s\n",
|
|
|
|
ERR_error_string(ERR_get_error(),NULL), NULL, NULL );
|
|
|
|
#endif
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
2002-04-16 16:46:25 +08:00
|
|
|
if ( !asn1_integer2str(xcert->cert_info->serialNumber, &serial) ) {
|
2001-10-23 17:05:04 +08:00
|
|
|
X509_free(xcert);
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
2002-04-18 20:26:36 +08:00
|
|
|
if ( dnX509normalize(X509_get_issuer_name(xcert), &issuer_dn ) != LDAP_SUCCESS ) {
|
2001-10-23 17:05:04 +08:00
|
|
|
X509_free(xcert);
|
2002-04-16 16:46:25 +08:00
|
|
|
ber_memfree(serial.bv_val);
|
2001-10-23 17:05:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
|
|
|
|
X509_free(xcert);
|
|
|
|
|
2002-04-16 16:46:25 +08:00
|
|
|
out->bv_len = serial.bv_len + issuer_dn.bv_len + sizeof(" $ ");
|
2001-12-29 23:01:10 +08:00
|
|
|
out->bv_val = ch_malloc(out->bv_len);
|
|
|
|
p = out->bv_val;
|
2002-04-16 16:46:25 +08:00
|
|
|
AC_MEMCPY(p, serial.bv_val, serial.bv_len);
|
|
|
|
p += serial.bv_len;
|
2002-01-03 01:06:56 +08:00
|
|
|
AC_MEMCPY(p, " $ ", sizeof(" $ ")-1);
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
p += 3;
|
2002-04-16 16:46:25 +08:00
|
|
|
AC_MEMCPY(p, issuer_dn.bv_val, issuer_dn.bv_len);
|
|
|
|
p += issuer_dn.bv_len;
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
*p++ = '\0';
|
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, ARGS,
|
|
|
|
"certificateExactConvert: \n %s\n", out->bv_val, 0, 0 );
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ARGS, "certificateExactConvert "
|
|
|
|
"\n\t\"%s\"\n",
|
2001-12-29 23:01:10 +08:00
|
|
|
out->bv_val, NULL, NULL );
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
#endif
|
|
|
|
|
2002-04-16 16:46:25 +08:00
|
|
|
ber_memfree(serial.bv_val);
|
|
|
|
ber_memfree(issuer_dn.bv_val);
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-10-20 18:15:09 +08:00
|
|
|
static int
|
|
|
|
serial_and_issuer_parse(
|
|
|
|
struct berval *assertion,
|
2002-04-16 16:46:25 +08:00
|
|
|
struct berval *serial,
|
|
|
|
struct berval *issuer_dn
|
2001-10-20 18:15:09 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
char *begin;
|
|
|
|
char *end;
|
|
|
|
char *p;
|
2001-12-26 14:21:23 +08:00
|
|
|
struct berval bv;
|
2001-10-20 18:15:09 +08:00
|
|
|
|
|
|
|
begin = assertion->bv_val;
|
|
|
|
end = assertion->bv_val+assertion->bv_len-1;
|
|
|
|
for (p=begin; p<=end && *p != '$'; p++)
|
|
|
|
;
|
|
|
|
if ( p > end )
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
|
|
|
|
/* p now points at the $ sign, now use begin and end to delimit the
|
|
|
|
serial number */
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
while (ASCII_SPACE(*begin))
|
|
|
|
begin++;
|
|
|
|
end = p-1;
|
|
|
|
while (ASCII_SPACE(*end))
|
|
|
|
end--;
|
2001-10-20 18:15:09 +08:00
|
|
|
|
2001-12-26 14:21:23 +08:00
|
|
|
bv.bv_len = end-begin+1;
|
|
|
|
bv.bv_val = begin;
|
2002-04-16 16:46:25 +08:00
|
|
|
ber_dupbv(serial, &bv);
|
2001-10-20 18:15:09 +08:00
|
|
|
|
|
|
|
/* now extract the issuer, remember p was at the dollar sign */
|
2002-04-16 16:46:25 +08:00
|
|
|
if ( issuer_dn ) {
|
|
|
|
begin = p+1;
|
|
|
|
end = assertion->bv_val+assertion->bv_len-1;
|
|
|
|
while (ASCII_SPACE(*begin))
|
|
|
|
begin++;
|
|
|
|
/* should we trim spaces at the end too? is it safe always? */
|
2001-10-20 18:15:09 +08:00
|
|
|
|
2002-04-16 16:46:25 +08:00
|
|
|
bv.bv_len = end-begin+1;
|
|
|
|
bv.bv_val = begin;
|
|
|
|
dnNormalize2( NULL, &bv, issuer_dn );
|
|
|
|
}
|
2001-10-20 18:15:09 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
certificateExactMatch(
|
|
|
|
int *matchp,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *value,
|
|
|
|
void *assertedValue )
|
|
|
|
{
|
|
|
|
X509 *xcert;
|
|
|
|
unsigned char *p = value->bv_val;
|
2002-04-16 16:46:25 +08:00
|
|
|
struct berval serial;
|
|
|
|
struct berval issuer_dn;
|
|
|
|
struct berval asserted_serial;
|
|
|
|
struct berval asserted_issuer_dn;
|
2001-10-20 18:15:09 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
xcert = d2i_X509(NULL, &p, value->bv_len);
|
|
|
|
if ( !xcert ) {
|
2001-10-23 03:55:21 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, ENTRY,
|
|
|
|
"certificateExactMatch: error parsing cert: %s\n",
|
|
|
|
ERR_error_string(ERR_get_error(),NULL), 0, 0 );
|
2001-10-23 03:55:21 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ARGS, "certificateExactMatch: "
|
|
|
|
"error parsing cert: %s\n",
|
|
|
|
ERR_error_string(ERR_get_error(),NULL), NULL, NULL );
|
|
|
|
#endif
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2001-10-20 18:15:09 +08:00
|
|
|
}
|
|
|
|
|
2002-04-16 16:46:25 +08:00
|
|
|
asn1_integer2str(xcert->cert_info->serialNumber, &serial);
|
2002-04-18 20:26:36 +08:00
|
|
|
dnX509normalize(X509_get_issuer_name(xcert), &issuer_dn);
|
2001-10-20 18:15:09 +08:00
|
|
|
|
|
|
|
X509_free(xcert);
|
|
|
|
|
|
|
|
serial_and_issuer_parse(assertedValue,
|
|
|
|
&asserted_serial,
|
|
|
|
&asserted_issuer_dn);
|
|
|
|
|
|
|
|
ret = integerMatch(
|
|
|
|
matchp,
|
|
|
|
flags,
|
|
|
|
slap_schema.si_syn_integer,
|
|
|
|
slap_schema.si_mr_integerMatch,
|
2002-04-16 16:46:25 +08:00
|
|
|
&serial,
|
|
|
|
&asserted_serial);
|
2001-10-20 18:15:09 +08:00
|
|
|
if ( ret == LDAP_SUCCESS ) {
|
|
|
|
if ( *matchp == 0 ) {
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
/* We need to normalize everything for dnMatch */
|
2001-10-20 18:15:09 +08:00
|
|
|
ret = dnMatch(
|
|
|
|
matchp,
|
|
|
|
flags,
|
|
|
|
slap_schema.si_syn_distinguishedName,
|
|
|
|
slap_schema.si_mr_distinguishedNameMatch,
|
2002-04-16 16:46:25 +08:00
|
|
|
&issuer_dn,
|
|
|
|
&asserted_issuer_dn);
|
2001-10-20 18:15:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, ARGS, "certificateExactMatch "
|
|
|
|
"%d\n\t\"%s $ %s\"\n",
|
|
|
|
*matchp, serial.bv_val, issuer_dn.bv_val );
|
|
|
|
LDAP_LOG( CONFIG, ARGS, "\t\"%s $ %s\"\n",
|
|
|
|
asserted_serial.bv_val, asserted_issuer_dn.bv_val,
|
|
|
|
0 );
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ARGS, "certificateExactMatch "
|
|
|
|
"%d\n\t\"%s $ %s\"\n",
|
2002-04-16 16:46:25 +08:00
|
|
|
*matchp, serial.bv_val, issuer_dn.bv_val );
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "\t\"%s $ %s\"\n",
|
2002-04-16 16:46:25 +08:00
|
|
|
asserted_serial.bv_val, asserted_issuer_dn.bv_val,
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
NULL );
|
|
|
|
#endif
|
|
|
|
|
2002-04-16 16:46:25 +08:00
|
|
|
ber_memfree(serial.bv_val);
|
|
|
|
ber_memfree(issuer_dn.bv_val);
|
|
|
|
ber_memfree(asserted_serial.bv_val);
|
|
|
|
ber_memfree(asserted_issuer_dn.bv_val);
|
2001-10-20 18:15:09 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2001-10-23 21:39:07 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Index generation function
|
|
|
|
* We just index the serials, in most scenarios the issuer DN is one of
|
|
|
|
* a very small set of values.
|
|
|
|
*/
|
2001-12-23 09:19:46 +08:00
|
|
|
static int certificateExactIndexer(
|
2001-10-23 21:39:07 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray values,
|
|
|
|
BerVarray *keysp )
|
2001-10-23 21:39:07 +08:00
|
|
|
{
|
|
|
|
int i;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2001-10-23 21:39:07 +08:00
|
|
|
X509 *xcert;
|
|
|
|
unsigned char *p;
|
2002-04-16 16:46:25 +08:00
|
|
|
struct berval serial;
|
2001-10-23 21:39:07 +08:00
|
|
|
|
|
|
|
/* we should have at least one value at this point */
|
2002-01-02 19:00:36 +08:00
|
|
|
assert( values != NULL && values[0].bv_val != NULL );
|
2001-10-23 21:39:07 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
2001-10-23 21:39:07 +08:00
|
|
|
/* empty -- just count them */
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * (i+1) );
|
2001-10-23 21:39:07 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; values[i].bv_val != NULL; i++ ) {
|
|
|
|
p = values[i].bv_val;
|
|
|
|
xcert = d2i_X509(NULL, &p, values[i].bv_len);
|
2001-10-23 21:39:07 +08:00
|
|
|
if ( !xcert ) {
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, ENTRY,
|
|
|
|
"certificateExactIndexer: error parsing cert: %s\n",
|
|
|
|
ERR_error_string(ERR_get_error(),NULL), 0, 0);
|
2001-10-23 21:39:07 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ARGS, "certificateExactIndexer: "
|
|
|
|
"error parsing cert: %s\n",
|
|
|
|
ERR_error_string(ERR_get_error(),NULL),
|
|
|
|
NULL, NULL );
|
|
|
|
#endif
|
|
|
|
/* Do we leak keys on error? */
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
2002-04-16 16:46:25 +08:00
|
|
|
asn1_integer2str(xcert->cert_info->serialNumber, &serial);
|
2001-10-23 21:39:07 +08:00
|
|
|
X509_free(xcert);
|
|
|
|
integerNormalize( slap_schema.si_syn_integer,
|
2002-04-16 16:46:25 +08:00
|
|
|
&serial,
|
2001-10-23 21:39:07 +08:00
|
|
|
&keys[i] );
|
2002-04-16 16:46:25 +08:00
|
|
|
ber_memfree(serial.bv_val);
|
2001-10-23 21:39:07 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, ENTRY,
|
|
|
|
"certificateExactIndexer: returning: %s\n", keys[i].bv_val, 0, 0);
|
2001-10-23 21:39:07 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ARGS, "certificateExactIndexer: "
|
|
|
|
"returning: %s\n",
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[i].bv_val,
|
2001-10-23 21:39:07 +08:00
|
|
|
NULL, NULL );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[i].bv_val = NULL;
|
2001-10-23 21:39:07 +08:00
|
|
|
*keysp = keys;
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Index generation function */
|
|
|
|
/* We think this is always called with a value in matching rule syntax */
|
2001-12-23 09:19:46 +08:00
|
|
|
static int certificateExactFilter(
|
2001-10-23 21:39:07 +08:00
|
|
|
slap_mask_t use,
|
|
|
|
slap_mask_t flags,
|
|
|
|
Syntax *syntax,
|
|
|
|
MatchingRule *mr,
|
|
|
|
struct berval *prefix,
|
|
|
|
void * assertValue,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *keysp )
|
2001-10-23 21:39:07 +08:00
|
|
|
{
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray keys;
|
2002-04-16 16:46:25 +08:00
|
|
|
struct berval asserted_serial;
|
2001-10-23 21:39:07 +08:00
|
|
|
|
|
|
|
serial_and_issuer_parse(assertValue,
|
|
|
|
&asserted_serial,
|
2002-04-16 16:46:25 +08:00
|
|
|
NULL);
|
2001-10-23 21:39:07 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
keys = ch_malloc( sizeof( struct berval ) * 2 );
|
2002-04-16 16:46:25 +08:00
|
|
|
integerNormalize( syntax, &asserted_serial, &keys[0] );
|
2001-12-29 23:01:10 +08:00
|
|
|
keys[1].bv_val = NULL;
|
2001-10-23 21:39:07 +08:00
|
|
|
*keysp = keys;
|
|
|
|
|
2002-04-16 16:46:25 +08:00
|
|
|
ber_memfree(asserted_serial.bv_val);
|
2001-10-23 21:39:07 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2001-10-20 18:15:09 +08:00
|
|
|
#endif
|
|
|
|
|
2000-06-15 15:58:04 +08:00
|
|
|
static int
|
|
|
|
check_time_syntax (struct berval *val,
|
|
|
|
int start,
|
|
|
|
int *parts)
|
|
|
|
{
|
|
|
|
static int ceiling[9] = { 99, 99, 11, 30, 23, 59, 59, 12, 59 };
|
2000-09-07 03:17:33 +08:00
|
|
|
static int mdays[2][12] = {
|
|
|
|
/* non-leap years */
|
|
|
|
{ 30, 27, 30, 29, 30, 29, 30, 30, 29, 30, 29, 30 },
|
|
|
|
/* leap years */
|
|
|
|
{ 30, 28, 30, 29, 30, 29, 30, 30, 29, 30, 29, 30 }
|
|
|
|
};
|
2000-06-15 15:58:04 +08:00
|
|
|
char *p, *e;
|
2000-09-07 03:17:33 +08:00
|
|
|
int part, c, tzoffset, leapyear = 0 ;
|
2000-06-15 15:58:04 +08:00
|
|
|
|
2000-09-07 03:17:33 +08:00
|
|
|
if( val->bv_len == 0 ) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
|
|
|
|
p = (char *)val->bv_val;
|
|
|
|
e = p + val->bv_len;
|
|
|
|
|
|
|
|
/* Ignore initial whitespace */
|
2000-06-21 01:05:15 +08:00
|
|
|
while ( ( p < e ) && ASCII_SPACE( *p ) ) {
|
2000-06-15 15:58:04 +08:00
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
2000-09-07 03:17:33 +08:00
|
|
|
if (e - p < 13 - (2 * start)) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
|
2000-09-07 03:17:33 +08:00
|
|
|
for (part = 0; part < 9; part++) {
|
2000-06-15 15:58:04 +08:00
|
|
|
parts[part] = 0;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
|
|
|
|
for (part = start; part < 7; part++) {
|
|
|
|
c = *p;
|
2000-09-07 03:17:33 +08:00
|
|
|
if ((part == 6) && (c == 'Z' || c == '+' || c == '-')) {
|
2000-06-15 15:58:04 +08:00
|
|
|
part++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
c -= '0';
|
2000-09-07 03:17:33 +08:00
|
|
|
if (p == e) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
|
|
|
if (c < 0 || c > 9) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
parts[part] = c;
|
|
|
|
|
|
|
|
c = *p++ - '0';
|
2000-09-07 03:17:33 +08:00
|
|
|
if (p == e) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
|
|
|
if (c < 0 || c > 9) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
parts[part] *= 10;
|
|
|
|
parts[part] += c;
|
|
|
|
|
2000-09-07 03:17:33 +08:00
|
|
|
if (part == 2 || part == 3) {
|
2000-06-15 15:58:04 +08:00
|
|
|
parts[part]--;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
|
|
|
if (parts[part] < 0) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
|
|
|
if (parts[part] > ceiling[part]) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
2000-09-07 03:17:33 +08:00
|
|
|
|
|
|
|
/* leapyear check for the Gregorian calendar (year>1581) */
|
|
|
|
if (((parts[1] % 4 == 0) && (parts[1] != 0)) ||
|
|
|
|
((parts[0] % 4 == 0) && (parts[1] == 0)))
|
|
|
|
{
|
|
|
|
leapyear = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parts[3] > mdays[leapyear][parts[2]]) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
2000-06-15 15:58:04 +08:00
|
|
|
c = *p++;
|
|
|
|
if (c == 'Z') {
|
2000-09-07 03:17:33 +08:00
|
|
|
tzoffset = 0; /* UTC */
|
2000-06-15 15:58:04 +08:00
|
|
|
} else if (c != '+' && c != '-') {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
} else {
|
2000-09-07 03:17:33 +08:00
|
|
|
if (c == '-') {
|
|
|
|
tzoffset = -1;
|
|
|
|
} else /* c == '+' */ {
|
|
|
|
tzoffset = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p > e - 4) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
|
|
|
|
2000-06-15 15:58:04 +08:00
|
|
|
for (part = 7; part < 9; part++) {
|
|
|
|
c = *p++ - '0';
|
2000-09-07 03:17:33 +08:00
|
|
|
if (c < 0 || c > 9) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
parts[part] = c;
|
|
|
|
|
|
|
|
c = *p++ - '0';
|
2000-09-07 03:17:33 +08:00
|
|
|
if (c < 0 || c > 9) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
parts[part] *= 10;
|
|
|
|
parts[part] += c;
|
2000-09-07 03:17:33 +08:00
|
|
|
if (parts[part] < 0 || parts[part] > ceiling[part]) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ignore trailing whitespace */
|
2000-06-21 01:05:15 +08:00
|
|
|
while ( ( p < e ) && ASCII_SPACE( *p ) ) {
|
2000-06-15 15:58:04 +08:00
|
|
|
p++;
|
|
|
|
}
|
2000-09-07 03:17:33 +08:00
|
|
|
if (p != e) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
|
2000-09-07 03:17:33 +08:00
|
|
|
switch ( tzoffset ) {
|
2001-01-18 00:35:53 +08:00
|
|
|
case -1: /* negativ offset to UTC, ie west of Greenwich */
|
2000-06-15 15:58:04 +08:00
|
|
|
parts[4] += parts[7];
|
|
|
|
parts[5] += parts[8];
|
2000-09-07 03:17:33 +08:00
|
|
|
for (part = 6; --part > 0; ) { /* offset is just hhmm, no seconds */
|
|
|
|
if (part != 3) {
|
2000-06-15 15:58:04 +08:00
|
|
|
c = ceiling[part];
|
2000-09-07 03:17:33 +08:00
|
|
|
} else {
|
|
|
|
c = mdays[leapyear][parts[2]];
|
2000-06-15 15:58:04 +08:00
|
|
|
}
|
|
|
|
if (parts[part] > c) {
|
|
|
|
parts[part] -= c + 1;
|
|
|
|
parts[part - 1]++;
|
|
|
|
}
|
|
|
|
}
|
2000-09-07 03:17:33 +08:00
|
|
|
break;
|
|
|
|
case 1: /* positive offset to UTC, ie east of Greenwich */
|
2000-06-15 15:58:04 +08:00
|
|
|
parts[4] -= parts[7];
|
|
|
|
parts[5] -= parts[8];
|
2000-09-07 03:17:33 +08:00
|
|
|
for (part = 6; --part > 0; ) {
|
|
|
|
if (part != 3) {
|
2000-06-15 15:58:04 +08:00
|
|
|
c = ceiling[part];
|
2000-09-07 03:17:33 +08:00
|
|
|
} else {
|
|
|
|
/* first arg to % needs to be non negativ */
|
|
|
|
c = mdays[leapyear][(parts[2] - 1 + 12) % 12];
|
2000-06-15 15:58:04 +08:00
|
|
|
}
|
|
|
|
if (parts[part] < 0) {
|
|
|
|
parts[part] += c + 1;
|
|
|
|
parts[part - 1]--;
|
|
|
|
}
|
|
|
|
}
|
2000-09-07 03:17:33 +08:00
|
|
|
break;
|
|
|
|
case 0: /* already UTC */
|
|
|
|
break;
|
2000-06-15 15:58:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2002-03-24 10:17:21 +08:00
|
|
|
#ifdef SUPPORT_OBSOLETE_UTC_SYNTAX
|
2000-06-15 15:58:04 +08:00
|
|
|
static int
|
|
|
|
utcTimeNormalize(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val,
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval *normalized )
|
2000-06-15 15:58:04 +08:00
|
|
|
{
|
|
|
|
int parts[9], rc;
|
|
|
|
|
|
|
|
rc = check_time_syntax(val, 1, parts);
|
|
|
|
if (rc != LDAP_SUCCESS) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val = ch_malloc( 14 );
|
|
|
|
if ( normalized->bv_val == NULL ) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LBER_ERROR_MEMORY;
|
2000-09-07 03:17:33 +08:00
|
|
|
}
|
2000-06-15 15:58:04 +08:00
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
sprintf( normalized->bv_val, "%02d%02d%02d%02d%02d%02dZ",
|
2000-09-07 03:17:33 +08:00
|
|
|
parts[1], parts[2] + 1, parts[3] + 1,
|
|
|
|
parts[4], parts[5], parts[6] );
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_len = 13;
|
2000-06-15 15:58:04 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2002-03-24 10:17:21 +08:00
|
|
|
#endif
|
2000-06-15 15:58:04 +08:00
|
|
|
|
2002-03-24 10:17:21 +08:00
|
|
|
#ifdef SUPPORT_OBSOLETE_UTC_SYNTAX
|
2000-06-15 15:58:04 +08:00
|
|
|
static int
|
|
|
|
utcTimeValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *in )
|
|
|
|
{
|
|
|
|
int parts[9];
|
|
|
|
|
|
|
|
return check_time_syntax(in, 1, parts);
|
|
|
|
}
|
2002-03-24 10:17:21 +08:00
|
|
|
#endif
|
2000-06-15 15:58:04 +08:00
|
|
|
|
2000-06-30 10:18:58 +08:00
|
|
|
static int
|
|
|
|
generalizedTimeValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *in )
|
|
|
|
{
|
|
|
|
int parts[9];
|
|
|
|
|
|
|
|
return check_time_syntax(in, 0, parts);
|
|
|
|
}
|
|
|
|
|
2000-06-15 15:58:04 +08:00
|
|
|
static int
|
|
|
|
generalizedTimeNormalize(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val,
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval *normalized )
|
2000-06-15 15:58:04 +08:00
|
|
|
{
|
|
|
|
int parts[9], rc;
|
|
|
|
|
|
|
|
rc = check_time_syntax(val, 0, parts);
|
|
|
|
if (rc != LDAP_SUCCESS) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_val = ch_malloc( 16 );
|
|
|
|
if ( normalized->bv_val == NULL ) {
|
2000-06-15 15:58:04 +08:00
|
|
|
return LBER_ERROR_MEMORY;
|
|
|
|
}
|
|
|
|
|
2001-12-29 23:01:10 +08:00
|
|
|
sprintf( normalized->bv_val, "%02d%02d%02d%02d%02d%02d%02dZ",
|
2000-09-07 03:17:33 +08:00
|
|
|
parts[0], parts[1], parts[2] + 1, parts[3] + 1,
|
|
|
|
parts[4], parts[5], parts[6] );
|
2001-12-29 23:01:10 +08:00
|
|
|
normalized->bv_len = 15;
|
2000-06-15 15:58:04 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-09-04 01:35:39 +08:00
|
|
|
static int
|
|
|
|
nisNetgroupTripleValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val )
|
|
|
|
{
|
|
|
|
char *p, *e;
|
|
|
|
int commas = 0;
|
|
|
|
|
|
|
|
if ( val->bv_len == 0 ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = (char *)val->bv_val;
|
|
|
|
e = p + val->bv_len;
|
|
|
|
|
|
|
|
if ( *p != '(' /*')'*/ ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
2002-01-03 01:06:56 +08:00
|
|
|
for ( p++; ( p < e ) && ( *p != /*'('*/ ')' ); p++ ) {
|
2000-09-04 01:35:39 +08:00
|
|
|
if ( *p == ',' ) {
|
|
|
|
commas++;
|
|
|
|
if ( commas > 2 ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
2002-07-24 23:19:40 +08:00
|
|
|
} else if ( !AD_CHAR( *p ) ) {
|
2000-09-04 01:35:39 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ( commas != 2 ) || ( *p != /*'('*/ ')' ) ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
p++;
|
|
|
|
|
|
|
|
if (p != e) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bootParameterValidate(
|
|
|
|
Syntax *syntax,
|
|
|
|
struct berval *val )
|
|
|
|
{
|
|
|
|
char *p, *e;
|
|
|
|
|
|
|
|
if ( val->bv_len == 0 ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = (char *)val->bv_val;
|
|
|
|
e = p + val->bv_len;
|
|
|
|
|
|
|
|
/* key */
|
|
|
|
for (; ( p < e ) && ( *p != '=' ); p++ ) {
|
2002-07-24 23:19:40 +08:00
|
|
|
if ( !AD_CHAR( *p ) ) {
|
2000-09-04 01:35:39 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( *p != '=' ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* server */
|
|
|
|
for ( p++; ( p < e ) && ( *p != ':' ); p++ ) {
|
2002-07-24 23:19:40 +08:00
|
|
|
if ( !AD_CHAR( *p ) ) {
|
2000-09-04 01:35:39 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( *p != ':' ) {
|
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* path */
|
|
|
|
for ( p++; p < e; p++ ) {
|
2002-07-24 23:29:22 +08:00
|
|
|
if ( !SLAP_PRINTABLE( *p ) ) {
|
2000-09-04 01:35:39 +08:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-12-23 09:19:46 +08:00
|
|
|
static struct syntax_defs_rec {
|
2000-01-30 03:43:19 +08:00
|
|
|
char *sd_desc;
|
2001-12-23 09:19:46 +08:00
|
|
|
#define X_BINARY "X-BINARY-TRANSFER-REQUIRED 'TRUE' "
|
|
|
|
#define X_NOT_H_R "X-NOT-HUMAN-READABLE 'TRUE' "
|
2000-01-31 09:49:44 +08:00
|
|
|
int sd_flags;
|
2000-01-30 03:43:19 +08:00
|
|
|
slap_syntax_validate_func *sd_validate;
|
2000-05-25 06:20:03 +08:00
|
|
|
slap_syntax_transform_func *sd_normalize;
|
|
|
|
slap_syntax_transform_func *sd_pretty;
|
|
|
|
#ifdef SLAPD_BINARY_CONVERSION
|
2000-01-30 03:43:19 +08:00
|
|
|
slap_syntax_transform_func *sd_ber2str;
|
|
|
|
slap_syntax_transform_func *sd_str2ber;
|
2000-05-25 06:20:03 +08:00
|
|
|
#endif
|
2001-12-23 09:19:46 +08:00
|
|
|
} syntax_defs[] = {
|
2002-01-06 12:59:26 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.1 DESC 'ACI Item' "
|
|
|
|
X_BINARY X_NOT_H_R ")",
|
2000-05-19 01:21:42 +08:00
|
|
|
SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, NULL, NULL, NULL},
|
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.2 DESC 'Access Point' " X_NOT_H_R ")",
|
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.3 DESC 'Attribute Type Description' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2002-01-06 12:59:26 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.4 DESC 'Audio' "
|
|
|
|
X_NOT_H_R ")",
|
2000-05-19 01:21:42 +08:00
|
|
|
SLAP_SYNTAX_BLOB, blobValidate, NULL, NULL},
|
2002-01-06 12:59:26 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.5 DESC 'Binary' "
|
|
|
|
X_NOT_H_R ")",
|
2000-10-14 09:37:48 +08:00
|
|
|
SLAP_SYNTAX_BER, berValidate, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.6 DESC 'Bit String' )",
|
2001-11-17 02:10:37 +08:00
|
|
|
0, bitStringValidate, bitStringNormalize, NULL },
|
2000-01-30 03:43:19 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.7 DESC 'Boolean' )",
|
2000-06-30 03:00:17 +08:00
|
|
|
0, booleanValidate, NULL, NULL},
|
2000-05-19 01:21:42 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.8 DESC 'Certificate' "
|
|
|
|
X_BINARY X_NOT_H_R ")",
|
|
|
|
SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
|
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.9 DESC 'Certificate List' "
|
|
|
|
X_BINARY X_NOT_H_R ")",
|
|
|
|
SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
|
2000-05-19 08:33:09 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.10 DESC 'Certificate Pair' "
|
|
|
|
X_BINARY X_NOT_H_R ")",
|
2000-05-19 01:21:42 +08:00
|
|
|
SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.11 DESC 'Country String' )",
|
2000-11-05 05:09:23 +08:00
|
|
|
0, countryStringValidate, IA5StringNormalize, NULL},
|
2000-05-29 08:27:49 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.12 DESC 'Distinguished Name' )",
|
2001-12-29 23:01:10 +08:00
|
|
|
0, dnValidate, dnNormalize2, dnPretty2},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.13 DESC 'Data Quality' )",
|
2000-05-18 01:25:48 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.14 DESC 'Delivery Method' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.15 DESC 'Directory String' )",
|
2000-05-25 06:20:03 +08:00
|
|
|
0, UTF8StringValidate, UTF8StringNormalize, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.16 DESC 'DIT Content Rule Description' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.17 DESC 'DIT Structure Rule Description' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.19 DESC 'DSA Quality' )",
|
2000-05-18 01:25:48 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.20 DESC 'DSE Type' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.21 DESC 'Enhanced Guide' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.22 DESC 'Facsimile Telephone Number' )",
|
2002-03-26 01:08:38 +08:00
|
|
|
0, printablesStringValidate, telephoneNumberNormalize, NULL},
|
2000-05-19 01:21:42 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.23 DESC 'Fax' " X_NOT_H_R ")",
|
|
|
|
SLAP_SYNTAX_BLOB, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.24 DESC 'Generalized Time' )",
|
2000-06-15 15:58:04 +08:00
|
|
|
0, generalizedTimeValidate, generalizedTimeNormalize, NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.25 DESC 'Guide' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.26 DESC 'IA5 String' )",
|
2000-05-25 06:20:03 +08:00
|
|
|
0, IA5StringValidate, IA5StringNormalize, NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.27 DESC 'Integer' )",
|
2001-11-04 06:03:20 +08:00
|
|
|
0, integerValidate, integerNormalize, NULL},
|
2000-05-19 01:21:42 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.28 DESC 'JPEG' " X_NOT_H_R ")",
|
2000-08-18 01:55:33 +08:00
|
|
|
SLAP_SYNTAX_BLOB, blobValidate, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.29 DESC 'Master And Shadow Access Points' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.30 DESC 'Matching Rule Description' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.31 DESC 'Matching Rule Use Description' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.32 DESC 'Mail Preference' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.33 DESC 'MHS OR Address' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.34 DESC 'Name And Optional UID' )",
|
2000-09-12 08:32:08 +08:00
|
|
|
0, nameUIDValidate, nameUIDNormalize, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.35 DESC 'Name Form Description' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.36 DESC 'Numeric String' )",
|
2001-01-18 05:02:11 +08:00
|
|
|
0, numericStringValidate, numericStringNormalize, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.37 DESC 'Object Class Description' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.38 DESC 'OID' )",
|
2000-05-23 10:33:56 +08:00
|
|
|
0, oidValidate, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.39 DESC 'Other Mailbox' )",
|
2000-11-05 05:09:23 +08:00
|
|
|
0, IA5StringValidate, IA5StringNormalize, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.40 DESC 'Octet String' )",
|
2000-05-19 08:33:09 +08:00
|
|
|
0, blobValidate, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.41 DESC 'Postal Address' )",
|
2000-11-05 05:11:52 +08:00
|
|
|
0, UTF8StringValidate, UTF8StringNormalize, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.42 DESC 'Protocol Information' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.43 DESC 'Presentation Address' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.44 DESC 'Printable String' )",
|
2000-11-05 05:09:23 +08:00
|
|
|
0, printableStringValidate, IA5StringNormalize, NULL},
|
2002-01-06 12:59:26 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.45 DESC 'SubtreeSpecification' "
|
|
|
|
X_BINARY X_NOT_H_R ")",
|
|
|
|
SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, NULL, NULL, NULL},
|
2000-05-19 01:21:42 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.49 DESC 'Supported Algorithm' "
|
|
|
|
X_BINARY X_NOT_H_R ")",
|
|
|
|
SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.50 DESC 'Telephone Number' )",
|
2002-03-26 01:08:38 +08:00
|
|
|
0, printableStringValidate, telephoneNumberNormalize, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.51 DESC 'Teletex Terminal Identifier' )",
|
|
|
|
0, NULL, NULL, NULL},
|
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.52 DESC 'Telex Number' )",
|
2001-11-04 06:03:20 +08:00
|
|
|
0, printablesStringValidate, IA5StringNormalize, NULL},
|
2002-03-24 10:17:21 +08:00
|
|
|
#ifdef SUPPORT_OBSOLETE_UTC_SYNTAX
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.53 DESC 'UTC Time' )",
|
2000-06-15 15:58:04 +08:00
|
|
|
0, utcTimeValidate, utcTimeNormalize, NULL},
|
2002-03-24 10:17:21 +08:00
|
|
|
#endif
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.54 DESC 'LDAP Syntax Description' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.55 DESC 'Modify Rights' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.56 DESC 'LDAP Schema Definition' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.57 DESC 'LDAP Schema Description' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-05-18 02:10:38 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.115.121.1.58 DESC 'Substring Assertion' )",
|
2000-01-31 09:49:44 +08:00
|
|
|
0, NULL, NULL, NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-08-25 03:54:16 +08:00
|
|
|
/* RFC 2307 NIS Syntaxes */
|
2000-09-12 08:32:08 +08:00
|
|
|
{"( 1.3.6.1.1.1.0.0 DESC 'RFC2307 NIS Netgroup Triple' )",
|
2000-08-25 03:54:16 +08:00
|
|
|
0, nisNetgroupTripleValidate, NULL, NULL},
|
|
|
|
{"( 1.3.6.1.1.1.0.1 DESC 'RFC2307 Boot Parameter' )",
|
|
|
|
0, bootParameterValidate, NULL, NULL},
|
|
|
|
|
2001-10-20 18:15:09 +08:00
|
|
|
#ifdef HAVE_TLS
|
|
|
|
/* From PKIX */
|
2001-10-21 01:31:52 +08:00
|
|
|
/* These OIDs are not published yet, but will be in the next
|
|
|
|
* I-D for PKIX LDAPv3 schema as have been advanced by David
|
|
|
|
* Chadwick in private mail.
|
|
|
|
*/
|
|
|
|
{"( 1.2.826.0.1.3344810.7.1 DESC 'Serial Number and Issuer' )",
|
2001-10-20 18:15:09 +08:00
|
|
|
0, NULL, NULL, NULL},
|
|
|
|
#endif
|
|
|
|
|
2000-02-02 02:05:49 +08:00
|
|
|
/* OpenLDAP Experimental Syntaxes */
|
2002-02-19 04:06:50 +08:00
|
|
|
#ifdef SLAPD_ACI_ENABLED
|
2000-05-28 03:33:08 +08:00
|
|
|
{"( 1.3.6.1.4.1.4203.666.2.1 DESC 'OpenLDAP Experimental ACI' )",
|
2001-12-02 12:48:06 +08:00
|
|
|
SLAP_SYNTAX_HIDE,
|
|
|
|
UTF8StringValidate /* THIS WILL CHANGE FOR NEW ACI SYNTAX */,
|
2000-08-27 03:55:08 +08:00
|
|
|
NULL, NULL},
|
2002-02-19 04:06:50 +08:00
|
|
|
#endif
|
2001-12-02 12:48:06 +08:00
|
|
|
|
2002-01-10 08:17:21 +08:00
|
|
|
#ifdef SLAPD_AUTHPASSWD
|
2001-12-02 12:48:06 +08:00
|
|
|
/* needs updating */
|
2000-05-31 05:34:55 +08:00
|
|
|
{"( 1.3.6.1.4.1.4203.666.2.2 DESC 'OpenLDAP authPassword' )",
|
2001-12-02 12:48:06 +08:00
|
|
|
SLAP_SYNTAX_HIDE, NULL, NULL, NULL},
|
2002-01-10 08:17:21 +08:00
|
|
|
#endif
|
2000-02-02 02:05:49 +08:00
|
|
|
|
2000-08-27 03:52:21 +08:00
|
|
|
/* OpenLDAP Void Syntax */
|
2000-10-17 07:47:46 +08:00
|
|
|
{"( 1.3.6.1.4.1.4203.1.1.1 DESC 'OpenLDAP void' )" ,
|
2000-08-27 03:52:21 +08:00
|
|
|
SLAP_SYNTAX_HIDE, inValidate, NULL, NULL},
|
2000-01-31 09:49:44 +08:00
|
|
|
{NULL, 0, NULL, NULL, NULL}
|
2000-01-30 03:43:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2000-07-03 00:36:21 +08:00
|
|
|
* Other matching rules in X.520 that we do not use (yet):
|
2000-01-30 03:43:19 +08:00
|
|
|
*
|
|
|
|
* 2.5.13.9 numericStringOrderingMatch
|
|
|
|
* 2.5.13.18 octetStringOrderingMatch
|
|
|
|
* 2.5.13.19 octetStringSubstringsMatch
|
|
|
|
* 2.5.13.25 uTCTimeMatch
|
|
|
|
* 2.5.13.26 uTCTimeOrderingMatch
|
|
|
|
* 2.5.13.31 directoryStringFirstComponentMatch
|
|
|
|
* 2.5.13.32 wordMatch
|
|
|
|
* 2.5.13.33 keywordMatch
|
|
|
|
* 2.5.13.35 certificateMatch
|
|
|
|
* 2.5.13.36 certificatePairExactMatch
|
|
|
|
* 2.5.13.37 certificatePairMatch
|
|
|
|
* 2.5.13.38 certificateListExactMatch
|
|
|
|
* 2.5.13.39 certificateListMatch
|
|
|
|
* 2.5.13.40 algorithmIdentifierMatch
|
|
|
|
* 2.5.13.41 storedPrefixMatch
|
|
|
|
* 2.5.13.42 attributeCertificateMatch
|
|
|
|
* 2.5.13.43 readerAndKeyIDMatch
|
|
|
|
* 2.5.13.44 attributeIntegrityMatch
|
|
|
|
*/
|
2001-12-23 09:19:46 +08:00
|
|
|
static struct mrule_defs_rec {
|
|
|
|
char * mrd_desc;
|
|
|
|
slap_mask_t mrd_usage;
|
|
|
|
slap_mr_convert_func * mrd_convert;
|
|
|
|
slap_mr_normalize_func * mrd_normalize;
|
|
|
|
slap_mr_match_func * mrd_match;
|
|
|
|
slap_mr_indexer_func * mrd_indexer;
|
|
|
|
slap_mr_filter_func * mrd_filter;
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2001-12-23 09:19:46 +08:00
|
|
|
char * mrd_associated;
|
|
|
|
} mrule_defs[] = {
|
2000-07-25 05:29:30 +08:00
|
|
|
/*
|
|
|
|
* EQUALITY matching rules must be listed after associated APPROX
|
|
|
|
* matching rules. So, we list all APPROX matching rules first.
|
|
|
|
*/
|
|
|
|
{"( " directoryStringApproxMatchOID " NAME 'directoryStringApproxMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
|
2002-01-06 13:29:04 +08:00
|
|
|
SLAP_MR_HIDE | SLAP_MR_EQUALITY_APPROX | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-01-18 05:02:11 +08:00
|
|
|
directoryStringApproxMatch,
|
|
|
|
directoryStringApproxIndexer,
|
2000-10-25 04:25:37 +08:00
|
|
|
directoryStringApproxFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
|
|
|
|
|
|
|
{"( " IA5StringApproxMatchOID " NAME 'IA5StringApproxMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
|
2002-01-06 13:29:04 +08:00
|
|
|
SLAP_MR_HIDE | SLAP_MR_EQUALITY_APPROX | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-01-18 05:02:11 +08:00
|
|
|
IA5StringApproxMatch,
|
|
|
|
IA5StringApproxIndexer,
|
2000-10-25 04:25:37 +08:00
|
|
|
IA5StringApproxFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Other matching rules
|
|
|
|
*/
|
|
|
|
|
2000-01-30 03:43:19 +08:00
|
|
|
{"( 2.5.13.0 NAME 'objectIdentifierMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
objectIdentifierMatch, caseIgnoreIA5Indexer, caseIgnoreIA5Filter,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.1 NAME 'distinguishedNameMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
dnMatch, dnIndexer, dnFilter,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.2 NAME 'caseIgnoreMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
|
2001-12-06 11:24:31 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT | SLAP_MR_DN_FOLD,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-07-28 06:54:43 +08:00
|
|
|
caseIgnoreMatch, caseExactIgnoreIndexer, caseExactIgnoreFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
directoryStringApproxMatchOID },
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.3 NAME 'caseIgnoreOrderingMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_ORDERING,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
caseIgnoreOrderingMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.4 NAME 'caseIgnoreSubstringsMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_SUBSTR | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-07-28 06:54:43 +08:00
|
|
|
caseExactIgnoreSubstringsMatch,
|
|
|
|
caseExactIgnoreSubstringsIndexer,
|
|
|
|
caseExactIgnoreSubstringsFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.5 NAME 'caseExactMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-07-28 06:54:43 +08:00
|
|
|
caseExactMatch, caseExactIgnoreIndexer, caseExactIgnoreFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
directoryStringApproxMatchOID },
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.6 NAME 'caseExactOrderingMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_ORDERING,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
caseExactOrderingMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.7 NAME 'caseExactSubstringsMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_SUBSTR | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-07-28 06:54:43 +08:00
|
|
|
caseExactIgnoreSubstringsMatch,
|
|
|
|
caseExactIgnoreSubstringsIndexer,
|
|
|
|
caseExactIgnoreSubstringsFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.8 NAME 'numericStringMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 )",
|
2001-12-06 11:24:31 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT | SLAP_MR_DN_FOLD,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2000-10-04 10:23:42 +08:00
|
|
|
caseIgnoreIA5Match,
|
|
|
|
caseIgnoreIA5Indexer,
|
|
|
|
caseIgnoreIA5Filter,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.10 NAME 'numericStringSubstringsMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_SUBSTR | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
caseIgnoreIA5SubstringsMatch,
|
|
|
|
caseIgnoreIA5SubstringsIndexer,
|
|
|
|
caseIgnoreIA5SubstringsFilter,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.11 NAME 'caseIgnoreListMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 )",
|
2001-12-06 11:24:31 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT | SLAP_MR_DN_FOLD,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
caseIgnoreListMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-05-17 02:11:50 +08:00
|
|
|
{"( 2.5.13.12 NAME 'caseIgnoreListSubstringsMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
|
|
|
|
SLAP_MR_SUBSTR | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
caseIgnoreListSubstringsMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-05-17 02:11:50 +08:00
|
|
|
|
2000-06-30 03:00:17 +08:00
|
|
|
{"( 2.5.13.13 NAME 'booleanMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 )",
|
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
booleanMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-06-30 03:00:17 +08:00
|
|
|
|
2000-01-30 03:43:19 +08:00
|
|
|
{"( 2.5.13.14 NAME 'integerMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )",
|
2000-06-27 01:54:45 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2000-09-12 02:34:14 +08:00
|
|
|
integerMatch, integerIndexer, integerFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
{"( 2.5.13.15 NAME 'integerOrderingMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )",
|
|
|
|
SLAP_MR_ORDERING,
|
|
|
|
NULL, NULL,
|
|
|
|
integerOrderingMatch, NULL, NULL,
|
|
|
|
NULL},
|
|
|
|
|
2000-01-30 03:43:19 +08:00
|
|
|
{"( 2.5.13.16 NAME 'bitStringMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.6 )",
|
2000-06-27 01:54:45 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-11-17 02:10:37 +08:00
|
|
|
bitStringMatch, bitStringIndexer, bitStringFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.17 NAME 'octetStringMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
octetStringMatch, octetStringIndexer, octetStringFilter,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.20 NAME 'telephoneNumberMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.50 )",
|
2001-12-06 11:24:31 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT | SLAP_MR_DN_FOLD,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-05-03 08:59:47 +08:00
|
|
|
telephoneNumberMatch,
|
|
|
|
telephoneNumberIndexer,
|
|
|
|
telephoneNumberFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.21 NAME 'telephoneNumberSubstringsMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_SUBSTR | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-05-03 08:59:47 +08:00
|
|
|
telephoneNumberSubstringsMatch,
|
|
|
|
telephoneNumberSubstringsIndexer,
|
|
|
|
telephoneNumberSubstringsFilter,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.22 NAME 'presentationAddressMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.43 )",
|
2000-06-27 01:54:45 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
2001-05-10 07:43:06 +08:00
|
|
|
NULL, NULL, NULL,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.23 NAME 'uniqueMemberMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 )",
|
2000-06-27 01:54:45 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
uniqueMemberMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.24 NAME 'protocolInformationMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.42 )",
|
2000-06-27 01:54:45 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
protocolInformationMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.27 NAME 'generalizedTimeMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
generalizedTimeMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.28 NAME 'generalizedTimeOrderingMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_ORDERING,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
generalizedTimeOrderingMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.29 NAME 'integerFirstComponentMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
integerFirstComponentMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 2.5.13.30 NAME 'objectIdentifierFirstComponentMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
objectIdentifierFirstComponentMatch, NULL, NULL,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2001-10-20 18:15:09 +08:00
|
|
|
#ifdef HAVE_TLS
|
|
|
|
{"( 2.5.13.34 NAME 'certificateExactMatch' "
|
2001-10-21 01:31:52 +08:00
|
|
|
"SYNTAX 1.2.826.0.1.3344810.7.1 )",
|
2001-10-20 18:15:09 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
It now sort of works, but needs some normalization work and proper
error reporting to client and syslog. And indexing, of course.
Now, the problem is that matching rules get called from different
places that are inconsistent in what an assertedValue is. When doing
a modify, a full certificate value is passed (to verify it isn't
already there). When doing a search or compare, the passed value is
in the syntax of the matching rule.
Consistency would require that the caller extracts an asserted value
from the full value before calling smr_match. It can do this by
calling smr_convert (it was unused, was it meant to be used for
this?).
Unfortunately, the caller is typically value_find, value_match, etc.
that have themselves little knowledge of what they are dealing with,
so their interface needs to be extended, new flag values or new
arguments, so that they know if they have a value in attribute type
syntax or in matching rule syntax.
2001-10-22 14:54:30 +08:00
|
|
|
certificateExactConvert, NULL,
|
2001-10-23 21:39:07 +08:00
|
|
|
certificateExactMatch,
|
|
|
|
certificateExactIndexer, certificateExactFilter,
|
2001-10-20 18:15:09 +08:00
|
|
|
NULL},
|
|
|
|
#endif
|
|
|
|
|
2000-01-30 03:43:19 +08:00
|
|
|
{"( 1.3.6.1.4.1.1466.109.114.1 NAME 'caseExactIA5Match' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT,
|
2000-07-03 00:36:21 +08:00
|
|
|
NULL, NULL,
|
2000-07-25 05:29:30 +08:00
|
|
|
caseExactIA5Match, caseExactIA5Indexer, caseExactIA5Filter,
|
|
|
|
IA5StringApproxMatchOID },
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 1.3.6.1.4.1.1466.109.114.2 NAME 'caseIgnoreIA5Match' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
|
2001-12-06 11:24:31 +08:00
|
|
|
SLAP_MR_EQUALITY | SLAP_MR_EXT | SLAP_MR_DN_FOLD,
|
2000-07-03 00:36:21 +08:00
|
|
|
NULL, NULL,
|
2000-09-29 08:24:43 +08:00
|
|
|
caseIgnoreIA5Match, caseIgnoreIA5Indexer, caseIgnoreIA5Filter,
|
2000-07-25 05:29:30 +08:00
|
|
|
IA5StringApproxMatchOID },
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
{"( 1.3.6.1.4.1.1466.109.114.3 NAME 'caseIgnoreIA5SubstringsMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
|
2000-02-15 04:57:34 +08:00
|
|
|
SLAP_MR_SUBSTR,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
caseIgnoreIA5SubstringsMatch,
|
|
|
|
caseIgnoreIA5SubstringsIndexer,
|
|
|
|
caseIgnoreIA5SubstringsFilter,
|
|
|
|
NULL},
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-08-27 02:49:50 +08:00
|
|
|
{"( 1.3.6.1.4.1.4203.1.2.1 NAME 'caseExactIA5SubstringsMatch' "
|
2000-07-03 00:36:21 +08:00
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
|
|
|
|
SLAP_MR_SUBSTR,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
caseExactIA5SubstringsMatch,
|
|
|
|
caseExactIA5SubstringsIndexer,
|
|
|
|
caseExactIA5SubstringsFilter,
|
|
|
|
NULL},
|
2000-07-03 00:36:21 +08:00
|
|
|
|
2002-01-10 08:17:21 +08:00
|
|
|
#ifdef SLAPD_AUTHPASSWD
|
2001-12-02 12:48:06 +08:00
|
|
|
/* needs updating */
|
2000-05-31 05:34:55 +08:00
|
|
|
{"( 1.3.6.1.4.1.4203.666.4.1 NAME 'authPasswordMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )",
|
|
|
|
SLAP_MR_EQUALITY,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
authPasswordMatch, NULL, NULL,
|
|
|
|
NULL},
|
2002-01-10 08:17:21 +08:00
|
|
|
#endif
|
2000-05-31 05:34:55 +08:00
|
|
|
|
2002-02-19 04:06:50 +08:00
|
|
|
#ifdef SLAPD_ACI_ENABLED
|
2000-05-31 05:34:55 +08:00
|
|
|
{"( 1.3.6.1.4.1.4203.666.4.2 NAME 'OpenLDAPaciMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.4203.666.2.1 )",
|
|
|
|
SLAP_MR_EQUALITY,
|
2000-07-25 05:29:30 +08:00
|
|
|
NULL, NULL,
|
|
|
|
OpenLDAPaciMatch, NULL, NULL,
|
|
|
|
NULL},
|
2002-02-19 04:06:50 +08:00
|
|
|
#endif
|
2000-05-31 05:34:55 +08:00
|
|
|
|
2001-09-02 01:10:43 +08:00
|
|
|
{"( 1.2.840.113556.1.4.803 NAME 'integerBitAndMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )",
|
|
|
|
SLAP_MR_EXT,
|
|
|
|
NULL, NULL,
|
|
|
|
integerBitAndMatch, NULL, NULL,
|
|
|
|
NULL},
|
|
|
|
|
|
|
|
{"( 1.2.840.113556.1.4.804 NAME 'integerBitOrMatch' "
|
|
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )",
|
|
|
|
SLAP_MR_EXT,
|
|
|
|
NULL, NULL,
|
|
|
|
integerBitOrMatch, NULL, NULL,
|
|
|
|
NULL},
|
|
|
|
|
2000-07-25 05:29:30 +08:00
|
|
|
{NULL, SLAP_MR_NONE, NULL, NULL, NULL, NULL}
|
2000-01-30 03:43:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int
|
2002-01-10 08:17:21 +08:00
|
|
|
slap_schema_init( void )
|
2000-01-30 03:43:19 +08:00
|
|
|
{
|
|
|
|
int res;
|
2002-07-12 04:33:24 +08:00
|
|
|
int i = 0;
|
2000-01-30 03:43:19 +08:00
|
|
|
|
2000-05-16 04:04:36 +08:00
|
|
|
/* we should only be called once (from main) */
|
|
|
|
assert( schema_init_done == 0 );
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
for ( i=0; syntax_defs[i].sd_desc != NULL; i++ ) {
|
|
|
|
res = register_syntax( syntax_defs[i].sd_desc,
|
2001-07-22 07:02:06 +08:00
|
|
|
syntax_defs[i].sd_flags,
|
|
|
|
syntax_defs[i].sd_validate,
|
|
|
|
syntax_defs[i].sd_normalize,
|
2000-05-25 06:20:03 +08:00
|
|
|
syntax_defs[i].sd_pretty
|
|
|
|
#ifdef SLAPD_BINARY_CONVERSION
|
|
|
|
,
|
2001-07-22 07:02:06 +08:00
|
|
|
syntax_defs[i].sd_ber2str,
|
2000-05-25 06:20:03 +08:00
|
|
|
syntax_defs[i].sd_str2ber
|
|
|
|
#endif
|
|
|
|
);
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
if ( res ) {
|
2002-01-10 08:17:21 +08:00
|
|
|
fprintf( stderr, "slap_schema_init: Error registering syntax %s\n",
|
2000-01-30 03:43:19 +08:00
|
|
|
syntax_defs[i].sd_desc );
|
2000-05-25 07:27:33 +08:00
|
|
|
return LDAP_OTHER;
|
2000-01-30 03:43:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( i=0; mrule_defs[i].mrd_desc != NULL; i++ ) {
|
2000-02-15 04:57:34 +08:00
|
|
|
if( mrule_defs[i].mrd_usage == SLAP_MR_NONE ) {
|
|
|
|
fprintf( stderr,
|
2002-01-10 08:17:21 +08:00
|
|
|
"slap_schema_init: Ingoring unusable matching rule %s\n",
|
2000-02-15 04:57:34 +08:00
|
|
|
mrule_defs[i].mrd_desc );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2000-01-30 03:43:19 +08:00
|
|
|
res = register_matching_rule(
|
|
|
|
mrule_defs[i].mrd_desc,
|
2000-02-15 04:57:34 +08:00
|
|
|
mrule_defs[i].mrd_usage,
|
2000-01-30 03:43:19 +08:00
|
|
|
mrule_defs[i].mrd_convert,
|
|
|
|
mrule_defs[i].mrd_normalize,
|
2001-07-22 07:02:06 +08:00
|
|
|
mrule_defs[i].mrd_match,
|
2000-01-31 09:49:44 +08:00
|
|
|
mrule_defs[i].mrd_indexer,
|
2000-07-25 05:29:30 +08:00
|
|
|
mrule_defs[i].mrd_filter,
|
|
|
|
mrule_defs[i].mrd_associated );
|
2000-01-30 03:43:19 +08:00
|
|
|
|
|
|
|
if ( res ) {
|
|
|
|
fprintf( stderr,
|
2002-01-10 08:17:21 +08:00
|
|
|
"slap_schema_init: Error registering matching rule %s\n",
|
2000-01-30 03:43:19 +08:00
|
|
|
mrule_defs[i].mrd_desc );
|
2000-05-25 07:27:33 +08:00
|
|
|
return LDAP_OTHER;
|
2000-01-30 03:43:19 +08:00
|
|
|
}
|
|
|
|
}
|
2002-01-10 08:17:21 +08:00
|
|
|
|
2002-03-26 01:08:38 +08:00
|
|
|
for ( i=0; i < (int)(sizeof(mr_ptr)/sizeof(mr_ptr[0])); i++ )
|
|
|
|
*mr_ptr[i].mr = mr_find( mr_ptr[i].oid );
|
|
|
|
|
2002-01-10 08:17:21 +08:00
|
|
|
res = slap_schema_load();
|
2000-01-30 03:43:19 +08:00
|
|
|
schema_init_done = 1;
|
2002-01-10 08:17:21 +08:00
|
|
|
return res;
|
2000-01-30 03:43:19 +08:00
|
|
|
}
|
2001-11-07 09:03:49 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
schema_destroy( void )
|
|
|
|
{
|
2002-03-26 01:08:38 +08:00
|
|
|
int i;
|
2001-12-31 12:35:02 +08:00
|
|
|
oidm_destroy();
|
2001-11-07 09:03:49 +08:00
|
|
|
oc_destroy();
|
|
|
|
at_destroy();
|
2002-03-26 01:08:38 +08:00
|
|
|
for ( i=0; i < (int)(sizeof(mr_ptr)/sizeof(mr_ptr[0])); i++ )
|
|
|
|
*mr_ptr[i].mr = NULL;
|
2001-11-07 09:03:49 +08:00
|
|
|
mr_destroy();
|
|
|
|
syn_destroy();
|
|
|
|
}
|