1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/* $OpenLDAP: pkg/ldap/servers/slapd/cancel.c,v 1.5.2.5 2004/06/06 04:35:59 hyc Exp $ */
/* cancel.c - LDAP cancel extended operation */
/*
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include "portable.h"
#include <stdio.h>
#include <ac/krb.h>
#include <ac/socket.h>
#include <ac/string.h>
#include <ac/unistd.h>
#include "slap.h"
#ifdef LDAP_EXOP_X_CANCEL
#include <lber_pvt.h>
#include <lutil.h>
int cancel_extop(
Connection *conn,
Operation *op,
const char *reqoid,
struct berval *reqdata,
char **rspoid,
struct berval **rspdata,
LDAPControl ***rspctrls,
const char **text,
BerVarray *refs )
{
Backend *be;
int rc;
int found = 0;
int opid;
BerElement *ber;
int i;
assert( reqoid != NULL );
assert( strcmp( LDAP_EXOP_X_CANCEL, reqoid ) == 0 );
if ( reqdata == NULL ) {
*text = "no message ID supplied";
return LDAP_PROTOCOL_ERROR;
}
ber = ber_init( reqdata );
if ( ber == NULL ) {
*text = "internal error";
return LDAP_OTHER;
}
if ( ber_scanf( ber, "{i}", &opid ) == LBER_ERROR ) {
*text = "message ID parse failed";
return LDAP_PROTOCOL_ERROR;
}
(void) ber_free( ber, 1 );
if ( opid < 0 ) {
*text = "message ID invalid";
return LDAP_PROTOCOL_ERROR;
}
ldap_pvt_thread_mutex_lock( &conn->c_mutex );
LDAP_STAILQ_FOREACH( op, &conn->c_pending_ops, o_next ) {
if ( op->o_msgid == opid ) {
LDAP_STAILQ_REMOVE( &conn->c_pending_ops, op, slap_op, o_next );
conn->c_n_ops_pending--;
slap_op_free( op );
found = 1;
break;
}
}
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
if ( found ) return LDAP_SUCCESS;
found = 0;
ldap_pvt_thread_mutex_lock( &conn->c_mutex );
LDAP_STAILQ_FOREACH( op, &conn->c_ops, o_next ) {
if ( op->o_msgid == opid ) {
found = 1;
break;
}
}
if ( !found ) {
#ifdef LDAP_SYNC
for ( i = 0; i < nbackends; i++ ) {
Backend *be = &backends[i];
if( !be->be_cancel ) continue;
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
if ( be->be_cancel( be, conn, op, opid ) == LDAP_SUCCESS ) {
return LDAP_SUCCESS;
} else {
*text = "message ID not found";
return LDAP_NO_SUCH_OPERATION;
}
}
#else
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
*text = "message ID not found";
return LDAP_NO_SUCH_OPERATION;
#endif
}
if ( op->o_cancel != SLAP_CANCEL_NONE ) {
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
*text = "message ID already being cancelled";
return LDAP_PROTOCOL_ERROR;
}
op->o_cancel = SLAP_CANCEL_REQ;
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
while ( op->o_cancel == SLAP_CANCEL_REQ ) {
ldap_pvt_thread_yield();
}
if ( op->o_cancel == SLAP_CANCEL_ACK ) {
rc = LDAP_SUCCESS;
} else {
rc = op->o_cancel;
}
op->o_cancel = SLAP_CANCEL_DONE;
return rc;
}
#endif /* LDAP_EXOP_X_CANCEL */
|