1998-08-09 08:43:13 +08:00
|
|
|
/* operation.c - routines to deal with pending ldap operations */
|
|
|
|
|
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/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
|
|
|
|
|
|
|
|
|
|
|
void
|
1999-01-10 10:16:48 +08:00
|
|
|
slap_op_free( Operation *op )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
1999-03-17 07:33:30 +08:00
|
|
|
assert( op->o_next == NULL );
|
|
|
|
|
1999-01-29 13:46:12 +08:00
|
|
|
if ( op->o_ber != NULL ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
ber_free( op->o_ber, 1 );
|
1999-01-29 13:46:12 +08:00
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( op->o_dn != NULL ) {
|
|
|
|
free( op->o_dn );
|
|
|
|
}
|
1999-01-19 13:10:50 +08:00
|
|
|
if ( op->o_ndn != NULL ) {
|
|
|
|
free( op->o_ndn );
|
|
|
|
}
|
1999-01-29 13:46:12 +08:00
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_destroy( &op->o_abandonmutex );
|
1999-03-22 15:14:54 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
free( (char *) op );
|
|
|
|
}
|
|
|
|
|
|
|
|
Operation *
|
1999-03-17 07:33:30 +08:00
|
|
|
slap_op_alloc(
|
1998-08-09 08:43:13 +08:00
|
|
|
BerElement *ber,
|
|
|
|
unsigned long msgid,
|
|
|
|
unsigned long tag,
|
1999-03-22 15:14:54 +08:00
|
|
|
long id
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
1999-03-17 07:33:30 +08:00
|
|
|
Operation *op;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-03-17 07:33:30 +08:00
|
|
|
op = (Operation *) ch_calloc( 1, sizeof(Operation) );
|
1999-01-29 13:46:12 +08:00
|
|
|
|
1999-03-17 07:33:30 +08:00
|
|
|
ldap_pvt_thread_mutex_init( &op->o_abandonmutex );
|
1999-03-22 15:14:54 +08:00
|
|
|
op->o_abandon = 0;
|
|
|
|
|
1999-03-17 07:33:30 +08:00
|
|
|
op->o_ber = ber;
|
|
|
|
op->o_msgid = msgid;
|
|
|
|
op->o_tag = tag;
|
1999-01-19 13:10:50 +08:00
|
|
|
|
1999-03-17 07:33:30 +08:00
|
|
|
op->o_dn = NULL;
|
|
|
|
op->o_ndn = NULL;
|
1999-01-19 13:10:50 +08:00
|
|
|
|
1999-03-22 15:14:54 +08:00
|
|
|
op->o_time = slap_get_time();
|
1999-03-17 07:33:30 +08:00
|
|
|
op->o_opid = id;
|
|
|
|
op->o_next = NULL;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-03-17 07:33:30 +08:00
|
|
|
return( op );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-03-17 07:33:30 +08: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-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
Operation **tmp;
|
|
|
|
|
|
|
|
for ( tmp = olist; *tmp != NULL && *tmp != op; tmp = &(*tmp)->o_next )
|
|
|
|
; /* NULL */
|
|
|
|
|
|
|
|
if ( *tmp == NULL ) {
|
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-16 06:40:11 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "op_delete: can't find op %ld\n",
|
1998-08-09 08:43:13 +08:00
|
|
|
op->o_msgid, 0, 0 );
|
1999-03-17 07:33:30 +08:00
|
|
|
return -1;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
*tmp = (*tmp)->o_next;
|
1999-03-17 07:33:30 +08:00
|
|
|
op->o_next = NULL;
|
|
|
|
|
|
|
|
return 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-03-17 07:33:30 +08:00
|
|
|
|
|
|
|
Operation * slap_op_pop( Operation **olist )
|
|
|
|
{
|
|
|
|
Operation *tmp = *olist;
|
|
|
|
|
|
|
|
if(tmp != NULL) {
|
|
|
|
*olist = tmp->o_next;
|
|
|
|
tmp->o_next = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|