1998-08-08 20:43:13 -04:00
|
|
|
/* abandon.c - decode and handle an ldap abandon operation */
|
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/>.
|
|
|
|
|
*
|
2010-04-13 18:17:29 -04:00
|
|
|
* Copyright 1998-2010 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>.
|
1999-08-06 19:07:46 -04:00
|
|
|
*/
|
2003-11-26 20:17:14 -05:00
|
|
|
/* Portions Copyright (c) 1995 Regents of the University of Michigan.
|
1998-08-08 20:43:13 -04:00
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
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/socket.h>
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include "slap.h"
|
|
|
|
|
|
1999-07-01 17:20:45 -04:00
|
|
|
int
|
2003-03-30 04:03:54 -05:00
|
|
|
do_abandon( Operation *op, SlapReply *rs )
|
1998-08-08 20:43:13 -04:00
|
|
|
{
|
2002-10-25 13:51:30 -04:00
|
|
|
ber_int_t id;
|
1998-08-08 20:43:13 -04:00
|
|
|
Operation *o;
|
2009-05-21 19:22:46 -04:00
|
|
|
const char *msg;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2007-07-22 23:51:42 -04:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "%s do_abandon\n",
|
|
|
|
|
op->o_log_prefix, 0, 0 );
|
1998-08-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Parse the abandon request. It looks like this:
|
|
|
|
|
*
|
|
|
|
|
* AbandonRequest := MessageID
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if ( ber_scanf( op->o_ber, "i", &id ) == LBER_ERROR ) {
|
2007-07-22 23:51:42 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s do_abandon: ber_scanf failed\n",
|
|
|
|
|
op->o_log_prefix, 0, 0 );
|
2004-06-22 21:04:52 -04:00
|
|
|
send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
|
|
|
|
|
return SLAPD_DISCONNECT;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
2005-08-13 20:14:58 -04:00
|
|
|
Statslog( LDAP_DEBUG_STATS, "%s ABANDON msg=%ld\n",
|
|
|
|
|
op->o_log_prefix, (long) id, 0, 0, 0 );
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if( get_ctrls( op, rs, 0 ) != LDAP_SUCCESS ) {
|
2007-07-22 23:51:42 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s do_abandon: get_ctrls failed\n",
|
|
|
|
|
op->o_log_prefix, 0, 0 );
|
2003-03-30 04:03:54 -05:00
|
|
|
return rs->sr_err;
|
1999-06-30 18:43:27 -04:00
|
|
|
}
|
|
|
|
|
|
2007-07-22 23:51:42 -04:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "%s do_abandon: id=%ld\n",
|
|
|
|
|
op->o_log_prefix, (long) id, 0 );
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
if( id <= 0 ) {
|
2007-07-22 23:51:42 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s do_abandon: bad msgid %ld\n",
|
|
|
|
|
op->o_log_prefix, (long) id, 0 );
|
1999-07-15 22:45:46 -04:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2009-05-21 19:22:46 -04:00
|
|
|
/* Find the operation being abandoned. */
|
2003-03-30 04:03:54 -05:00
|
|
|
LDAP_STAILQ_FOREACH( o, &op->o_conn->c_ops, o_next ) {
|
1999-04-23 16:22:18 -04:00
|
|
|
if ( o->o_msgid == id ) {
|
2005-02-17 20:01:35 -05:00
|
|
|
break;
|
1999-04-23 16:22:18 -04:00
|
|
|
}
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
2009-05-21 19:22:46 -04:00
|
|
|
if ( o == NULL ) {
|
|
|
|
|
msg = "not found";
|
|
|
|
|
/* The operation is not active. Just discard it if found. */
|
2005-02-17 20:01:35 -05:00
|
|
|
LDAP_STAILQ_FOREACH( o, &op->o_conn->c_pending_ops, o_next ) {
|
|
|
|
|
if ( o->o_msgid == id ) {
|
2009-05-21 19:22:46 -04:00
|
|
|
msg = "discarded";
|
|
|
|
|
/* FIXME: This traverses c_pending_ops yet again. */
|
2005-02-17 20:01:35 -05:00
|
|
|
LDAP_STAILQ_REMOVE( &op->o_conn->c_pending_ops,
|
2007-03-19 21:07:10 -04:00
|
|
|
o, Operation, o_next );
|
2005-02-17 20:01:35 -05:00
|
|
|
LDAP_STAILQ_NEXT(o, o_next) = NULL;
|
|
|
|
|
op->o_conn->c_n_ops_pending--;
|
2007-10-24 22:22:40 -04:00
|
|
|
slap_op_free( o, NULL );
|
2005-02-17 20:01:35 -05:00
|
|
|
break;
|
|
|
|
|
}
|
2002-01-03 03:03:22 -05:00
|
|
|
}
|
2009-06-04 17:16:38 -04:00
|
|
|
|
|
|
|
|
} else if ( o->o_tag == LDAP_REQ_BIND
|
|
|
|
|
|| o->o_tag == LDAP_REQ_UNBIND
|
|
|
|
|
|| o->o_tag == LDAP_REQ_ABANDON ) {
|
|
|
|
|
msg = "cannot be abandoned";
|
|
|
|
|
|
|
|
|
|
#if 0 /* Would break o_abandon used as "suppress response" flag, ITS#6138 */
|
|
|
|
|
} else if ( o->o_abandon ) {
|
|
|
|
|
msg = "already being abandoned";
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-05-21 19:22:46 -04:00
|
|
|
} else {
|
|
|
|
|
msg = "found";
|
|
|
|
|
/* Set the o_abandon flag in the to-be-abandoned operation.
|
|
|
|
|
* The backend can periodically check this flag and abort the
|
|
|
|
|
* operation at a convenient time. However it should "send"
|
|
|
|
|
* the response anyway, with result code SLAPD_ABANDON.
|
|
|
|
|
* The functions in result.c will intercept the message.
|
|
|
|
|
*/
|
|
|
|
|
o->o_abandon = 1;
|
|
|
|
|
op->orn_msgid = id;
|
|
|
|
|
op->o_bd = frontendDB;
|
|
|
|
|
rs->sr_err = frontendDB->be_abandon( op, rs );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
1999-03-22 02:14:54 -05:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
|
1999-07-15 22:45:46 -04:00
|
|
|
|
2009-05-21 19:22:46 -04:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "%s do_abandon: op=%ld %s\n",
|
|
|
|
|
op->o_log_prefix, (long) id, msg );
|
2004-12-09 16:17:29 -05:00
|
|
|
return rs->sr_err;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
2004-07-26 17:26:34 -04:00
|
|
|
|
2004-12-09 16:17:29 -05:00
|
|
|
int
|
|
|
|
|
fe_op_abandon( Operation *op, SlapReply *rs )
|
|
|
|
|
{
|
2005-03-24 00:13:31 -05:00
|
|
|
LDAP_STAILQ_FOREACH( op->o_bd, &backendDB, be_next ) {
|
2004-12-11 12:48:15 -05:00
|
|
|
if ( op->o_bd->be_abandon ) {
|
|
|
|
|
(void)op->o_bd->be_abandon( op, rs );
|
|
|
|
|
}
|
2004-12-09 16:17:29 -05:00
|
|
|
}
|
2004-12-11 12:48:15 -05:00
|
|
|
|
2004-12-09 16:17:29 -05:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
|
}
|