1998-08-08 20:43:13 -04:00
|
|
|
/* operation.c - routines to deal with pending ldap operations */
|
1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 20:17:14 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2005-01-01 15:49:32 -05:00
|
|
|
* Copyright 1998-2005 The OpenLDAP Foundation.
|
2003-11-26 20:17:14 -05: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>.
|
|
|
|
|
*/
|
|
|
|
|
/* Portions Copyright (c) 1995 Regents of the University of Michigan.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
|
* provided that this notice is preserved and that due credit is given
|
|
|
|
|
* to the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
|
* may not be used to endorse or promote products derived from this
|
|
|
|
|
* software without specific prior written permission. This software
|
|
|
|
|
* is provided ``as is'' without express or implied warranty.
|
1999-08-06 19:07:46 -04:00
|
|
|
*/
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include <stdio.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include "slap.h"
|
2003-02-09 21:09:00 -05:00
|
|
|
|
|
|
|
|
#ifdef LDAP_SLAPI
|
2003-12-27 23:17:48 -05:00
|
|
|
#include "slapi/slapi.h"
|
2003-02-09 21:09:00 -05:00
|
|
|
#endif
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2003-03-25 15:18:50 -05:00
|
|
|
static ldap_pvt_thread_mutex_t slap_op_mutex;
|
|
|
|
|
static LDAP_STAILQ_HEAD(s_o, slap_op) slap_free_ops;
|
2005-06-09 18:56:35 -04:00
|
|
|
static time_t last_time;
|
|
|
|
|
static int last_incr;
|
2003-03-25 15:18:50 -05:00
|
|
|
|
2003-03-29 06:46:02 -05:00
|
|
|
void slap_op_init(void)
|
2003-03-25 15:18:50 -05:00
|
|
|
{
|
|
|
|
|
ldap_pvt_thread_mutex_init( &slap_op_mutex );
|
|
|
|
|
LDAP_STAILQ_INIT(&slap_free_ops);
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-29 06:46:02 -05:00
|
|
|
void slap_op_destroy(void)
|
2003-03-25 15:18:50 -05:00
|
|
|
{
|
|
|
|
|
Operation *o;
|
|
|
|
|
|
|
|
|
|
while ( (o = LDAP_STAILQ_FIRST( &slap_free_ops )) != NULL) {
|
|
|
|
|
LDAP_STAILQ_REMOVE_HEAD( &slap_free_ops, o_next );
|
|
|
|
|
LDAP_STAILQ_NEXT(o, o_next) = NULL;
|
|
|
|
|
ch_free( o );
|
|
|
|
|
}
|
|
|
|
|
ldap_pvt_thread_mutex_destroy( &slap_op_mutex );
|
|
|
|
|
}
|
1998-08-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
void
|
1999-01-09 21:16:48 -05:00
|
|
|
slap_op_free( Operation *op )
|
1998-08-08 20:43:13 -04:00
|
|
|
{
|
2002-01-02 19:12:46 -05:00
|
|
|
assert( LDAP_STAILQ_NEXT(op, o_next) == NULL );
|
1999-03-16 18:33:30 -05:00
|
|
|
|
1999-01-29 00:46:12 -05:00
|
|
|
if ( op->o_ber != NULL ) {
|
1998-08-08 20:43:13 -04:00
|
|
|
ber_free( op->o_ber, 1 );
|
1999-01-29 00:46:12 -05:00
|
|
|
}
|
2005-04-02 20:59:03 -05:00
|
|
|
if ( !BER_BVISNULL( &op->o_dn ) ) {
|
2005-07-21 12:35:20 -04:00
|
|
|
ch_free( op->o_dn.bv_val );
|
2002-08-07 02:37:11 -04:00
|
|
|
}
|
2005-04-02 20:59:03 -05:00
|
|
|
if ( !BER_BVISNULL( &op->o_ndn ) ) {
|
2005-07-21 12:35:20 -04:00
|
|
|
ch_free( op->o_ndn.bv_val );
|
2002-08-07 02:37:11 -04:00
|
|
|
}
|
2005-04-02 20:59:03 -05:00
|
|
|
if ( !BER_BVISNULL( &op->o_authmech ) ) {
|
2005-07-21 12:35:20 -04:00
|
|
|
ch_free( op->o_authmech.bv_val );
|
2002-08-07 02:37:11 -04:00
|
|
|
}
|
1999-07-05 19:01:17 -04:00
|
|
|
if ( op->o_ctrls != NULL ) {
|
2003-04-09 12:52:03 -04:00
|
|
|
slap_free_ctrls( op, op->o_ctrls );
|
1999-07-05 19:01:17 -04:00
|
|
|
}
|
1999-01-29 00:46:12 -05:00
|
|
|
|
2003-01-23 10:12:53 -05:00
|
|
|
#ifdef LDAP_CONNECTIONLESS
|
|
|
|
|
if ( op->o_res_ber != NULL ) {
|
|
|
|
|
ber_free( op->o_res_ber, 1 );
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2003-11-09 21:44:25 -05:00
|
|
|
|
2003-10-22 21:23:45 -04:00
|
|
|
{
|
|
|
|
|
GroupAssertion *g, *n;
|
2005-04-02 20:59:03 -05:00
|
|
|
for ( g = op->o_groups; g; g = n ) {
|
2003-10-22 21:23:45 -04:00
|
|
|
n = g->ga_next;
|
2005-04-02 20:59:03 -05:00
|
|
|
slap_sl_free( g, op->o_tmpmemctx );
|
2003-10-22 21:23:45 -04:00
|
|
|
}
|
|
|
|
|
op->o_groups = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 12:19:29 -05:00
|
|
|
#if defined( LDAP_SLAPI )
|
2005-07-22 03:54:17 -04:00
|
|
|
if ( slapi_plugins_used ) {
|
2003-12-16 10:49:31 -05:00
|
|
|
slapi_int_free_object_extensions( SLAPI_X_EXT_OPERATION, op );
|
2002-12-07 12:19:29 -05:00
|
|
|
}
|
|
|
|
|
#endif /* defined( LDAP_SLAPI ) */
|
|
|
|
|
|
2003-11-09 21:44:25 -05:00
|
|
|
|
2004-11-25 17:59:00 -05:00
|
|
|
memset( op, 0, sizeof(Operation) + sizeof(Opheader) + SLAP_MAX_CIDS * sizeof(void *) );
|
|
|
|
|
op->o_hdr = (Opheader *)(op+1);
|
|
|
|
|
op->o_controls = (void **)(op->o_hdr+1);
|
2003-11-09 21:44:25 -05:00
|
|
|
|
2003-03-25 15:18:50 -05:00
|
|
|
ldap_pvt_thread_mutex_lock( &slap_op_mutex );
|
|
|
|
|
LDAP_STAILQ_INSERT_HEAD( &slap_free_ops, op, o_next );
|
|
|
|
|
ldap_pvt_thread_mutex_unlock( &slap_op_mutex );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Operation *
|
1999-03-16 18:33:30 -05:00
|
|
|
slap_op_alloc(
|
1998-08-08 20:43:13 -04:00
|
|
|
BerElement *ber,
|
1999-06-18 19:53:05 -04:00
|
|
|
ber_int_t msgid,
|
|
|
|
|
ber_tag_t tag,
|
|
|
|
|
ber_int_t id
|
1998-08-08 20:43:13 -04:00
|
|
|
)
|
|
|
|
|
{
|
1999-03-16 18:33:30 -05:00
|
|
|
Operation *op;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2003-03-25 15:18:50 -05:00
|
|
|
ldap_pvt_thread_mutex_lock( &slap_op_mutex );
|
2003-04-08 19:39:56 -04:00
|
|
|
if ((op = LDAP_STAILQ_FIRST( &slap_free_ops ))) {
|
2003-03-25 15:18:50 -05:00
|
|
|
LDAP_STAILQ_REMOVE_HEAD( &slap_free_ops, o_next );
|
|
|
|
|
}
|
|
|
|
|
ldap_pvt_thread_mutex_unlock( &slap_op_mutex );
|
|
|
|
|
|
2003-11-09 21:44:25 -05:00
|
|
|
if (!op) {
|
2004-11-25 17:59:00 -05:00
|
|
|
op = (Operation *) ch_calloc( 1, sizeof(Operation)
|
|
|
|
|
+ sizeof(Opheader) + SLAP_MAX_CIDS * sizeof(void *) );
|
|
|
|
|
op->o_hdr = (Opheader *)(op + 1);
|
|
|
|
|
op->o_controls = (void **)(op->o_hdr+1);
|
2003-11-09 21:44:25 -05:00
|
|
|
}
|
1999-01-29 00:46:12 -05:00
|
|
|
|
1999-03-16 18:33:30 -05:00
|
|
|
op->o_ber = ber;
|
|
|
|
|
op->o_msgid = msgid;
|
|
|
|
|
op->o_tag = tag;
|
1999-01-19 00:10:50 -05:00
|
|
|
|
1999-03-22 02:14:54 -05:00
|
|
|
op->o_time = slap_get_time();
|
2005-06-09 18:56:35 -04:00
|
|
|
if ( op->o_time == last_time ) {
|
|
|
|
|
op->o_tincr = ++last_incr;
|
|
|
|
|
} else {
|
|
|
|
|
last_time = op->o_time;
|
|
|
|
|
last_incr = 0; /* o_tincr is alredy zero */
|
|
|
|
|
}
|
1999-03-16 18:33:30 -05:00
|
|
|
op->o_opid = id;
|
2003-01-23 10:12:53 -05:00
|
|
|
op->o_res_ber = NULL;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2002-12-07 12:19:29 -05:00
|
|
|
#if defined( LDAP_SLAPI )
|
2004-10-06 01:51:38 -04:00
|
|
|
if ( slapi_plugins_used ) {
|
2003-12-16 10:49:31 -05:00
|
|
|
slapi_int_create_object_extensions( SLAPI_X_EXT_OPERATION, op );
|
2003-10-24 01:58:42 -04:00
|
|
|
}
|
2002-12-07 12:19:29 -05:00
|
|
|
#endif /* defined( LDAP_SLAPI ) */
|
|
|
|
|
|
1999-03-16 18:33:30 -05:00
|
|
|
return( op );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|