]> git.sur5r.net Git - openldap/blob - servers/slapd/abandon.c
Sync with HEAD
[openldap] / servers / slapd / abandon.c
1 /* abandon.c - decode and handle an ldap abandon operation */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2005 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
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>.
15  */
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * provided that this notice is preserved and that due credit is given
21  * to the University of Michigan at Ann Arbor. The name of the University
22  * may not be used to endorse or promote products derived from this
23  * software without specific prior written permission. This software
24  * is provided ``as is'' without express or implied warranty.
25  */
26
27 #include "portable.h"
28
29 #include <stdio.h>
30 #include <ac/socket.h>
31
32 #include "slap.h"
33
34 int
35 do_abandon( Operation *op, SlapReply *rs )
36 {
37         ber_int_t       id;
38         Operation       *o;
39         int             i;
40
41         Debug( LDAP_DEBUG_TRACE, "do_abandon\n", 0, 0, 0 );
42
43         /*
44          * Parse the abandon request.  It looks like this:
45          *
46          *      AbandonRequest := MessageID
47          */
48
49         if ( ber_scanf( op->o_ber, "i", &id ) == LBER_ERROR ) {
50                 Debug( LDAP_DEBUG_ANY, "do_abandon: ber_scanf failed\n", 0, 0 ,0 );
51                 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
52                 return SLAPD_DISCONNECT;
53         }
54
55         if( get_ctrls( op, rs, 0 ) != LDAP_SUCCESS ) {
56                 Debug( LDAP_DEBUG_ANY, "do_abandon: get_ctrls failed\n", 0, 0 ,0 );
57                 return rs->sr_err;
58         } 
59
60         Debug( LDAP_DEBUG_ARGS, "do_abandon: id=%ld\n", (long) id, 0 ,0 );
61
62         if( id <= 0 ) {
63                 Debug( LDAP_DEBUG_ANY,
64                         "do_abandon: bad msgid %ld\n", (long) id, 0, 0 );
65                 return LDAP_SUCCESS;
66         }
67
68         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
69         /*
70          * find the operation being abandoned and set the o_abandon
71          * flag.  It's up to the backend to periodically check this
72          * flag and abort the operation at a convenient time.
73          */
74
75         LDAP_STAILQ_FOREACH( o, &op->o_conn->c_ops, o_next ) {
76                 if ( o->o_msgid == id ) {
77                         o->o_abandon = 1;
78                         break;
79                 }
80         }
81
82         if ( o ) {
83                 op->orn_msgid = id;
84
85                 op->o_bd = frontendDB;
86                 rs->sr_err = frontendDB->be_abandon( op, rs );
87
88         } else {
89                 LDAP_STAILQ_FOREACH( o, &op->o_conn->c_pending_ops, o_next ) {
90                         if ( o->o_msgid == id ) {
91                                 LDAP_STAILQ_REMOVE( &op->o_conn->c_pending_ops,
92                                         o, slap_op, o_next );
93                                 LDAP_STAILQ_NEXT(o, o_next) = NULL;
94                                 op->o_conn->c_n_ops_pending--;
95                                 slap_op_free( o );
96                                 break;
97                         }
98                 }
99         }
100
101         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
102
103         Debug( LDAP_DEBUG_TRACE, "do_abandon: op=%ld %sfound\n",
104                 (long) id, o ? "" : "not ", 0 );
105         return rs->sr_err;
106 }
107
108 int
109 fe_op_abandon( Operation *op, SlapReply *rs )
110 {
111         int i;
112
113         for ( i = 0; i < nbackends; i++ ) {
114                 op->o_bd = &backends[i];
115                 if ( op->o_bd->be_abandon ) {
116                         (void)op->o_bd->be_abandon( op, rs );
117                 }
118         }
119
120         return LDAP_SUCCESS;
121 }