2003-11-27 09:17:14 +08:00
|
|
|
/* ldapsync.c -- LDAP Content Sync Routines */
|
2003-11-10 10:44:25 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 2003-2004 The OpenLDAP Foundation.
|
2003-11-27 09:17:14 +08:00
|
|
|
* Portions Copyright 2003 IBM Corporation.
|
|
|
|
* All rights reserved.
|
2003-11-10 10:44:25 +08:00
|
|
|
*
|
2003-11-27 09:17:14 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
2003-11-10 10:44:25 +08:00
|
|
|
*
|
2003-11-27 09:17:14 +08:00
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
2003-11-10 10:44:25 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "lutil.h"
|
|
|
|
#include "slap.h"
|
2003-11-29 06:05:38 +08:00
|
|
|
#include "../../libraries/liblber/lber-int.h" /* get ber_strndup() */
|
2003-11-10 10:44:25 +08:00
|
|
|
#include "lutil_ldap.h"
|
|
|
|
|
2003-11-30 09:09:12 +08:00
|
|
|
#if 0
|
|
|
|
struct sync_cookie *slap_sync_cookie = NULL;
|
|
|
|
#else
|
|
|
|
struct slap_sync_cookie_s slap_sync_cookie =
|
|
|
|
LDAP_STAILQ_HEAD_INITIALIZER( slap_sync_cookie );
|
|
|
|
#endif
|
|
|
|
|
2003-11-10 10:44:25 +08:00
|
|
|
void
|
|
|
|
slap_compose_sync_cookie(
|
|
|
|
Operation *op,
|
|
|
|
struct berval *cookie,
|
|
|
|
struct berval *csn,
|
2003-11-27 03:49:47 +08:00
|
|
|
int sid,
|
|
|
|
int rid )
|
2003-11-10 10:44:25 +08:00
|
|
|
{
|
2003-11-27 03:49:47 +08:00
|
|
|
char cookiestr[ LDAP_LUTIL_CSNSTR_BUFSIZE + 20 ];
|
2003-11-10 10:44:25 +08:00
|
|
|
|
|
|
|
if ( csn->bv_val == NULL ) {
|
|
|
|
if ( sid == -1 ) {
|
2003-11-27 03:49:47 +08:00
|
|
|
if ( rid == -1 ) {
|
|
|
|
cookiestr[0] = '\0';
|
|
|
|
} else {
|
|
|
|
snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
|
|
|
|
"rid=%03d", rid );
|
|
|
|
}
|
2003-11-10 10:44:25 +08:00
|
|
|
} else {
|
2003-11-27 03:49:47 +08:00
|
|
|
if ( rid == -1 ) {
|
|
|
|
snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
|
2003-11-10 10:44:25 +08:00
|
|
|
"sid=%03d", sid );
|
2003-11-27 03:49:47 +08:00
|
|
|
} else {
|
|
|
|
snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
|
|
|
|
"sid=%03d,rid=%03d", sid, rid );
|
|
|
|
}
|
2003-11-10 10:44:25 +08:00
|
|
|
}
|
|
|
|
} else {
|
2003-11-27 03:49:47 +08:00
|
|
|
if ( sid == -1 ) {
|
|
|
|
if ( rid == -1 ) {
|
|
|
|
snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
|
|
|
|
"csn=%s", csn->bv_val );
|
|
|
|
} else {
|
|
|
|
snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
|
|
|
|
"csn=%s,rid=%03d", csn->bv_val, rid );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ( rid == -1 ) {
|
|
|
|
snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
|
2003-11-10 10:44:25 +08:00
|
|
|
"csn=%s,sid=%03d", csn->bv_val, sid );
|
2003-11-27 03:49:47 +08:00
|
|
|
} else {
|
|
|
|
snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
|
|
|
|
"csn=%s,sid=%03d,rid=%03d", csn->bv_val, sid, rid );
|
|
|
|
}
|
|
|
|
}
|
2003-11-10 10:44:25 +08:00
|
|
|
}
|
|
|
|
ber_str2bv( cookiestr, strlen(cookiestr), 1, cookie );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
slap_sync_cookie_free(
|
|
|
|
struct sync_cookie *cookie,
|
|
|
|
int free_cookie
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if ( cookie == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( cookie->ctxcsn ) {
|
|
|
|
ber_bvarray_free( cookie->ctxcsn );
|
|
|
|
cookie->ctxcsn = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( cookie->octet_str ) {
|
|
|
|
ber_bvarray_free( cookie->octet_str );
|
|
|
|
cookie->octet_str = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( free_cookie ) {
|
|
|
|
ch_free( cookie );
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
slap_parse_sync_cookie(
|
|
|
|
struct sync_cookie *cookie
|
|
|
|
)
|
|
|
|
{
|
|
|
|
char *csn_ptr;
|
|
|
|
char *csn_str;
|
2003-11-19 06:42:13 +08:00
|
|
|
int csn_str_len;
|
2003-11-10 10:44:25 +08:00
|
|
|
char *sid_ptr;
|
|
|
|
char *sid_str;
|
2003-11-27 03:49:47 +08:00
|
|
|
char *rid_ptr;
|
|
|
|
char *rid_str;
|
2003-11-10 10:44:25 +08:00
|
|
|
char *cval;
|
|
|
|
struct berval *ctxcsn;
|
|
|
|
|
|
|
|
if ( cookie == NULL )
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (( csn_ptr = strstr( cookie->octet_str[0].bv_val, "csn=" )) != NULL ) {
|
2003-11-29 06:05:38 +08:00
|
|
|
csn_str = SLAP_STRNDUP( csn_ptr, LDAP_LUTIL_CSNSTR_BUFSIZE );
|
2003-11-30 01:27:44 +08:00
|
|
|
if ( (cval = strchr( csn_str, ',' )) != NULL ) {
|
2003-11-10 10:44:25 +08:00
|
|
|
*cval = '\0';
|
2003-11-19 06:42:13 +08:00
|
|
|
csn_str_len = cval - csn_str - (sizeof("csn=") - 1);
|
|
|
|
} else {
|
|
|
|
csn_str_len = cookie->octet_str[0].bv_len -
|
|
|
|
(csn_ptr - cookie->octet_str[0].bv_val) -
|
|
|
|
(sizeof("csn=") - 1);
|
2003-11-10 10:44:25 +08:00
|
|
|
}
|
2003-11-19 06:42:13 +08:00
|
|
|
ctxcsn = ber_str2bv( csn_str + (sizeof("csn=")-1),
|
|
|
|
csn_str_len, 1, NULL );
|
2003-11-10 10:44:25 +08:00
|
|
|
ch_free( csn_str );
|
|
|
|
ber_bvarray_add( &cookie->ctxcsn, ctxcsn );
|
|
|
|
ch_free( ctxcsn );
|
|
|
|
} else {
|
|
|
|
cookie->ctxcsn = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (( sid_ptr = strstr( cookie->octet_str->bv_val, "sid=" )) != NULL ) {
|
2003-11-29 06:05:38 +08:00
|
|
|
sid_str = SLAP_STRNDUP( sid_ptr,
|
2003-11-19 03:08:33 +08:00
|
|
|
SLAP_SYNC_SID_SIZE + sizeof("sid=") - 1 );
|
2003-11-30 01:27:44 +08:00
|
|
|
if ( (cval = strchr( sid_str, ',' )) != NULL ) {
|
2003-11-10 10:44:25 +08:00
|
|
|
*cval = '\0';
|
|
|
|
}
|
2003-11-19 06:42:13 +08:00
|
|
|
cookie->sid = atoi( sid_str + sizeof("sid=") - 1 );
|
2003-11-10 10:44:25 +08:00
|
|
|
ch_free( sid_str );
|
|
|
|
} else {
|
|
|
|
cookie->sid = -1;
|
|
|
|
}
|
2003-11-27 03:49:47 +08:00
|
|
|
|
|
|
|
if (( rid_ptr = strstr( cookie->octet_str->bv_val, "rid=" )) != NULL ) {
|
2003-11-29 06:05:38 +08:00
|
|
|
rid_str = SLAP_STRNDUP( rid_ptr,
|
2003-11-27 03:49:47 +08:00
|
|
|
SLAP_SYNC_RID_SIZE + sizeof("rid=") - 1 );
|
2003-11-30 01:27:44 +08:00
|
|
|
if ( (cval = strchr( rid_str, ',' )) != NULL ) {
|
2003-11-27 03:49:47 +08:00
|
|
|
*cval = '\0';
|
|
|
|
}
|
|
|
|
cookie->rid = atoi( rid_str + sizeof("rid=") - 1 );
|
|
|
|
ch_free( rid_str );
|
|
|
|
} else {
|
|
|
|
cookie->rid = -1;
|
|
|
|
}
|
2003-12-18 04:55:46 +08:00
|
|
|
return 0;
|
2003-11-10 10:44:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
slap_init_sync_cookie_ctxcsn(
|
|
|
|
struct sync_cookie *cookie
|
|
|
|
)
|
|
|
|
{
|
|
|
|
char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE + 4 ];
|
2004-04-07 12:11:43 +08:00
|
|
|
struct berval octet_str = BER_BVNULL;
|
|
|
|
struct berval ctxcsn = BER_BVNULL;
|
|
|
|
struct berval ctxcsn_dup = BER_BVNULL;
|
2003-11-10 10:44:25 +08:00
|
|
|
struct berval slap_syncCookie;
|
|
|
|
|
|
|
|
if ( cookie == NULL )
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
octet_str.bv_len = snprintf( csnbuf, LDAP_LUTIL_CSNSTR_BUFSIZE + 4,
|
2003-11-19 06:42:13 +08:00
|
|
|
"csn=%4d%02d%02d%02d%02d%02dZ#%06x#%02x#%06x",
|
2003-11-10 10:44:25 +08:00
|
|
|
1900, 1, 1, 0, 0, 0, 0, 0, 0 );
|
|
|
|
octet_str.bv_val = csnbuf;
|
|
|
|
build_new_dn( &slap_syncCookie, &cookie->octet_str[0], &octet_str, NULL );
|
|
|
|
ber_bvarray_free( cookie->octet_str );
|
|
|
|
cookie->octet_str = NULL;
|
|
|
|
ber_bvarray_add( &cookie->octet_str, &slap_syncCookie );
|
|
|
|
|
2004-11-26 02:31:31 +08:00
|
|
|
ctxcsn.bv_val = octet_str.bv_val + 4;
|
|
|
|
ctxcsn.bv_len = octet_str.bv_len - 4;
|
2003-11-10 10:44:25 +08:00
|
|
|
ber_dupbv( &ctxcsn_dup, &ctxcsn );
|
|
|
|
ber_bvarray_add( &cookie->ctxcsn, &ctxcsn_dup );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sync_cookie *
|
|
|
|
slap_dup_sync_cookie(
|
|
|
|
struct sync_cookie *dst,
|
|
|
|
struct sync_cookie *src
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct sync_cookie *new;
|
|
|
|
struct berval tmp_bv;
|
|
|
|
|
|
|
|
if ( src == NULL )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if ( dst ) {
|
|
|
|
ber_bvarray_free( dst->ctxcsn );
|
|
|
|
ber_bvarray_free( dst->octet_str );
|
|
|
|
new = dst;
|
|
|
|
} else {
|
|
|
|
new = ( struct sync_cookie * )
|
|
|
|
ch_calloc( 1, sizeof( struct sync_cookie ));
|
|
|
|
}
|
|
|
|
|
|
|
|
new->sid = src->sid;
|
2003-11-27 03:49:47 +08:00
|
|
|
new->rid = src->rid;
|
2003-11-10 10:44:25 +08:00
|
|
|
|
|
|
|
if ( src->ctxcsn ) {
|
|
|
|
for ( i=0; src->ctxcsn[i].bv_val; i++ ) {
|
|
|
|
ber_dupbv( &tmp_bv, &src->ctxcsn[i] );
|
|
|
|
ber_bvarray_add( &new->ctxcsn, &tmp_bv );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( src->octet_str ) {
|
|
|
|
for ( i=0; src->octet_str[i].bv_val; i++ ) {
|
|
|
|
ber_dupbv( &tmp_bv, &src->octet_str[i] );
|
|
|
|
ber_bvarray_add( &new->octet_str, &tmp_bv );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
2003-11-20 10:14:47 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
slap_build_syncUUID_set(
|
|
|
|
Operation *op,
|
|
|
|
BerVarray *set,
|
|
|
|
Entry *e
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
Attribute* a;
|
|
|
|
|
2004-04-07 12:11:43 +08:00
|
|
|
struct berval entryuuid_bv = BER_BVNULL;
|
2003-11-20 10:14:47 +08:00
|
|
|
|
|
|
|
for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
|
|
|
|
AttributeDescription *desc = a->a_desc;
|
|
|
|
if ( desc == slap_schema.si_ad_entryUUID ) {
|
|
|
|
ber_dupbv_x( &entryuuid_bv, &a->a_nvals[0], op->o_tmpmemctx );
|
2004-11-26 02:31:31 +08:00
|
|
|
break;
|
2003-11-20 10:14:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ber_bvarray_add_x( set, &entryuuid_bv, op->o_tmpmemctx );
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|