openldap/servers/slapd/back-ldbm/id2entry.c

235 lines
5.0 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* id2entry.c - routines to deal with the id2entry index */
/* $OpenLDAP$ */
2003-11-29 05:08:20 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2006-01-04 07:11:52 +08:00
* Copyright 1998-2006 The OpenLDAP Foundation.
2003-11-29 05:08:20 +08:00
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* 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>.
1999-08-07 07:07:46 +08:00
*/
1998-08-09 08:43:13 +08:00
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
1998-10-25 09:41:42 +08:00
#include <ac/socket.h>
1998-08-09 08:43:13 +08:00
#include "slap.h"
#include "back-ldbm.h"
/*
* This routine adds (or updates) an entry on disk.
* The cache should already be updated.
*/
1998-08-09 08:43:13 +08:00
int
id2entry_add( Backend *be, Entry *e )
{
DBCache *db;
1998-08-09 08:43:13 +08:00
Datum key, data;
int len, rc, flags;
#ifndef WORDS_BIGENDIAN
ID id;
#endif
1998-08-09 08:43:13 +08:00
ldbm_datum_init( key );
ldbm_datum_init( data );
Debug( LDAP_DEBUG_TRACE, "=> id2entry_add( %ld, \"%s\" )\n", e->e_id,
1998-08-09 08:43:13 +08:00
e->e_dn, 0 );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
if ( (db = ldbm_cache_open( be, "id2entry", LDBM_SUFFIX, LDBM_WRCREAT ))
== NULL ) {
Debug( LDAP_DEBUG_ANY, "Could not open/create id2entry%s\n",
LDBM_SUFFIX, 0, 0 );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
return( -1 );
}
#ifdef WORDS_BIGENDIAN
1998-08-09 08:43:13 +08:00
key.dptr = (char *) &e->e_id;
#else
id = htonl(e->e_id);
key.dptr = (char *) &id;
#endif
1998-08-09 08:43:13 +08:00
key.dsize = sizeof(ID);
ldap_pvt_thread_mutex_lock( &entry2str_mutex );
data.dptr = entry2str( e, &len );
1998-08-09 08:43:13 +08:00
data.dsize = len + 1;
/* store it */
flags = LDBM_REPLACE;
rc = ldbm_cache_store( db, key, data, flags );
1998-08-09 08:43:13 +08:00
ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
1998-08-09 08:43:13 +08:00
ldbm_cache_close( be, db );
1998-08-09 08:43:13 +08:00
Debug( LDAP_DEBUG_TRACE, "<= id2entry_add %d\n", rc, 0, 0 );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
return( rc );
}
int
id2entry_delete( Backend *be, Entry *e )
{
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
DBCache *db;
1998-08-09 08:43:13 +08:00
Datum key;
int rc;
#ifndef WORDS_BIGENDIAN
ID id;
#endif
1998-08-09 08:43:13 +08:00
Debug(LDAP_DEBUG_TRACE, "=> id2entry_delete( %ld, \"%s\" )\n", e->e_id,
e->e_dn, 0 );
2001-01-18 01:01:19 +08:00
#ifdef notdef
#ifdef LDAP_RDWR_DEBUG
/* check for writer lock */
assert(ldap_pvt_thread_rdwr_writers(&e->e_rdwr) == 1);
#endif
#endif
ldbm_datum_init( key );
1998-08-09 08:43:13 +08:00
if ( (db = ldbm_cache_open( be, "id2entry", LDBM_SUFFIX, LDBM_WRCREAT ))
== NULL ) {
1998-08-09 08:43:13 +08:00
Debug( LDAP_DEBUG_ANY, "Could not open/create id2entry%s\n",
LDBM_SUFFIX, 0, 0 );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
return( -1 );
}
if ( cache_delete_entry( &li->li_cache, e ) != 0 ) {
Debug(LDAP_DEBUG_ANY, "could not delete %ld (%s) from cache\n",
1998-08-09 08:43:13 +08:00
e->e_id, e->e_dn, 0 );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
}
#ifdef WORDS_BIGENDIAN
1998-08-09 08:43:13 +08:00
key.dptr = (char *) &e->e_id;
#else
id = htonl(e->e_id);
key.dptr = (char *) &id;
#endif
1998-08-09 08:43:13 +08:00
key.dsize = sizeof(ID);
rc = ldbm_cache_delete( db, key );
ldbm_cache_close( be, db );
Debug( LDAP_DEBUG_TRACE, "<= id2entry_delete %d\n", rc, 0, 0 );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
return( rc );
}
/* returns entry with reader/writer lock */
1998-08-09 08:43:13 +08:00
Entry *
id2entry_rw( Backend *be, ID id, int rw )
1998-08-09 08:43:13 +08:00
{
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
DBCache *db;
1998-08-09 08:43:13 +08:00
Datum key, data;
Entry *e;
#ifndef WORDS_BIGENDIAN
ID id2;
#endif
1998-08-09 08:43:13 +08:00
ldbm_datum_init( key );
ldbm_datum_init( data );
Debug( LDAP_DEBUG_TRACE, "=> id2entry_%s( %ld )\n",
rw ? "w" : "r", id, 0 );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
if ( (e = cache_find_entry_id( &li->li_cache, id, rw )) != NULL ) {
Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) 0x%lx (cache)\n",
rw ? "w" : "r", id, (unsigned long) e );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
return( e );
}
if ( (db = ldbm_cache_open( be, "id2entry", LDBM_SUFFIX, LDBM_WRCREAT ))
== NULL ) {
1998-08-09 08:43:13 +08:00
Debug( LDAP_DEBUG_ANY, "Could not open id2entry%s\n",
LDBM_SUFFIX, 0, 0 );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
return( NULL );
}
#ifdef WORDS_BIGENDIAN
1998-08-09 08:43:13 +08:00
key.dptr = (char *) &id;
#else
id2 = htonl(id);
key.dptr = (char *) &id2;
#endif
1998-08-09 08:43:13 +08:00
key.dsize = sizeof(ID);
data = ldbm_cache_fetch( db, key );
if ( data.dptr == NULL ) {
Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) not found\n",
rw ? "w" : "r", id, 0 );
2001-01-18 01:01:19 +08:00
1998-08-09 08:43:13 +08:00
ldbm_cache_close( be, db );
return( NULL );
}
2005-01-24 11:42:56 +08:00
e = str2entry2( data.dptr, 0 );
1998-08-09 08:43:13 +08:00
ldbm_datum_free( db->dbc_db, data );
ldbm_cache_close( be, db );
if ( e == NULL ) {
Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) (failed)\n",
rw ? "w" : "r", id, 0 );
2001-01-18 01:01:19 +08:00
return( NULL );
}
e->e_id = id;
if ( slapMode == SLAP_SERVER_MODE
&& cache_add_entry_rw( &li->li_cache, e, rw ) != 0 )
{
entry_free( e );
/* XXX this is a kludge.
* maybe the entry got added underneath us
* There are many underlying race condtions in the cache/disk code.
*/
if ( (e = cache_find_entry_id( &li->li_cache, id, rw )) != NULL ) {
Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) 0x%lx (cache)\n",
rw ? "w" : "r", id, (unsigned long) e );
2001-01-18 01:01:19 +08:00
return( e );
}
Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) (cache add failed)\n",
rw ? "w" : "r", id, 0 );
2001-01-18 01:01:19 +08:00
return NULL;
}
Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) 0x%lx (disk)\n",
rw ? "w" : "r", id, (unsigned long) e );
2001-01-18 01:01:19 +08:00
if ( slapMode == SLAP_SERVER_MODE ) {
/* marks the entry as committed, so it will get added to the cache
* when the lock is released */
cache_entry_commit( e );
}
return( e );
}