1 /* cancel.c - LDAP cancel extended operation */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2014 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
21 #include <ac/socket.h>
22 #include <ac/string.h>
23 #include <ac/unistd.h>
30 const struct berval slap_EXOP_CANCEL = BER_BVC(LDAP_EXOP_CANCEL);
32 int cancel_extop( Operation *op, SlapReply *rs )
39 assert( ber_bvcmp( &slap_EXOP_CANCEL, &op->ore_reqoid ) == 0 );
41 if ( op->ore_reqdata == NULL ) {
42 rs->sr_text = "no message ID supplied";
43 return LDAP_PROTOCOL_ERROR;
46 ber = ber_init( op->ore_reqdata );
48 rs->sr_text = "internal error";
52 if ( ber_scanf( ber, "{i}", &opid ) == LBER_ERROR ) {
53 rs->sr_text = "message ID parse failed";
54 return LDAP_PROTOCOL_ERROR;
57 (void) ber_free( ber, 1 );
59 Statslog( LDAP_DEBUG_STATS, "%s CANCEL msg=%d\n",
60 op->o_log_prefix, opid, 0, 0, 0 );
63 rs->sr_text = "message ID invalid";
64 return LDAP_PROTOCOL_ERROR;
67 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
69 if ( op->o_abandon ) {
70 /* FIXME: Should instead reject the cancel/abandon of this op, but
71 * it seems unsafe to reset op->o_abandon once it is set. ITS#6138.
73 rc = LDAP_OPERATIONS_ERROR;
74 rs->sr_text = "tried to abandon or cancel this operation";
78 LDAP_STAILQ_FOREACH( o, &op->o_conn->c_pending_ops, o_next ) {
79 if ( o->o_msgid == opid ) {
80 /* TODO: We could instead remove the cancelled operation
81 * from c_pending_ops like Abandon does, and send its
82 * response here. Not if it is pending because of a
83 * congested connection though.
85 rc = LDAP_CANNOT_CANCEL;
86 rs->sr_text = "too busy for Cancel, try Abandon instead";
91 LDAP_STAILQ_FOREACH( o, &op->o_conn->c_ops, o_next ) {
92 if ( o->o_msgid == opid ) {
98 rc = LDAP_NO_SUCH_OPERATION;
99 rs->sr_text = "message ID not found";
101 } else if ( o->o_tag == LDAP_REQ_BIND
102 || o->o_tag == LDAP_REQ_UNBIND
103 || o->o_tag == LDAP_REQ_ABANDON ) {
104 rc = LDAP_CANNOT_CANCEL;
106 } else if ( o->o_cancel != SLAP_CANCEL_NONE ) {
107 rc = LDAP_OPERATIONS_ERROR;
108 rs->sr_text = "message ID already being cancelled";
111 } else if ( o->o_abandon ) {
112 /* TODO: Would this break something when
113 * o_abandon="suppress response"? (ITS#6138)
120 o->o_cancel = SLAP_CANCEL_REQ;
125 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
127 if ( rc == LDAP_SUCCESS ) {
128 LDAP_STAILQ_FOREACH( op->o_bd, &backendDB, be_next ) {
129 if( !op->o_bd->be_cancel ) continue;
131 op->oq_cancel.rs_msgid = opid;
132 if ( op->o_bd->be_cancel( op, rs ) == LDAP_SUCCESS ) {
138 /* Fake a cond_wait with thread_yield, then
139 * verify the result properly mutex-protected.
141 while ( o->o_cancel == SLAP_CANCEL_REQ )
142 ldap_pvt_thread_yield();
143 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
145 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
146 } while ( rc == SLAP_CANCEL_REQ );
148 if ( rc == SLAP_CANCEL_ACK ) {
152 o->o_cancel = SLAP_CANCEL_DONE;