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$ */
|
1999-08-06 19:07:46 -04:00
|
|
|
/*
|
2000-05-12 22:47:56 -04:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-06 19:07:46 -04:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
|
*/
|
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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
1999-01-09 21:16:48 -05:00
|
|
|
slap_op_free( Operation *op )
|
1998-08-08 20:43:13 -04:00
|
|
|
{
|
2001-12-30 23:08:29 -05:00
|
|
|
assert( 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
|
|
|
}
|
2001-12-24 10:11:01 -05:00
|
|
|
if ( op->o_dn.bv_val != NULL ) {
|
|
|
|
|
free( op->o_dn.bv_val );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
2001-12-24 10:11:01 -05:00
|
|
|
if ( op->o_ndn.bv_val != NULL ) {
|
|
|
|
|
free( op->o_ndn.bv_val );
|
1999-01-19 00:10:50 -05:00
|
|
|
}
|
1999-07-01 20:04:47 -04:00
|
|
|
if ( op->o_authmech != NULL ) {
|
|
|
|
|
free( op->o_authmech );
|
|
|
|
|
}
|
1999-07-05 19:01:17 -04:00
|
|
|
if ( op->o_ctrls != NULL ) {
|
|
|
|
|
ldap_controls_free( op->o_ctrls );
|
|
|
|
|
}
|
1999-01-29 00:46:12 -05:00
|
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_destroy( &op->o_abandonmutex );
|
1999-03-22 02:14:54 -05:00
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
free( (char *) op );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
1999-03-16 18:33:30 -05:00
|
|
|
op = (Operation *) ch_calloc( 1, sizeof(Operation) );
|
1999-01-29 00:46:12 -05:00
|
|
|
|
1999-03-16 18:33:30 -05:00
|
|
|
ldap_pvt_thread_mutex_init( &op->o_abandonmutex );
|
1999-03-22 02:14:54 -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();
|
1999-03-16 18:33:30 -05:00
|
|
|
op->o_opid = id;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1999-03-16 18:33:30 -05:00
|
|
|
return( op );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
2001-12-30 23:08:29 -05:00
|
|
|
#if 0
|
1999-03-16 18:33:30 -05:00
|
|
|
int slap_op_add(
|
|
|
|
|
Operation **olist,
|
|
|
|
|
Operation *op
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
Operation **tmp;
|
|
|
|
|
|
|
|
|
|
for ( tmp = olist; *tmp != NULL; tmp = &(*tmp)->o_next )
|
|
|
|
|
; /* NULL */
|
|
|
|
|
|
|
|
|
|
*tmp = op;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
slap_op_remove( Operation **olist, Operation *op )
|
1998-08-08 20:43:13 -04:00
|
|
|
{
|
|
|
|
|
Operation **tmp;
|
|
|
|
|
|
|
|
|
|
for ( tmp = olist; *tmp != NULL && *tmp != op; tmp = &(*tmp)->o_next )
|
|
|
|
|
; /* NULL */
|
|
|
|
|
|
|
|
|
|
if ( *tmp == NULL ) {
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
|
|
|
|
"slap_op_remove: can't find op %ld.\n",
|
|
|
|
|
(long)op->o_msgid ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-15 17:40:11 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY, "op_delete: can't find op %ld\n",
|
1999-09-02 04:11:54 -04:00
|
|
|
(long) op->o_msgid, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-03-16 18:33:30 -05:00
|
|
|
return -1;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*tmp = (*tmp)->o_next;
|
1999-03-16 18:33:30 -05:00
|
|
|
op->o_next = NULL;
|
|
|
|
|
|
|
|
|
|
return 0;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
1999-03-16 18:33:30 -05:00
|
|
|
|
|
|
|
|
Operation * slap_op_pop( Operation **olist )
|
|
|
|
|
{
|
|
|
|
|
Operation *tmp = *olist;
|
|
|
|
|
|
|
|
|
|
if(tmp != NULL) {
|
|
|
|
|
*olist = tmp->o_next;
|
|
|
|
|
tmp->o_next = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
|
}
|
2001-12-30 23:08:29 -05:00
|
|
|
#endif
|