1 /* operation.c - routines to deal with pending ldap operations */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2015 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>.
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17 * All rights reserved.
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.
31 #include <ac/string.h>
32 #include <ac/socket.h>
37 #include "slapi/slapi.h"
40 static ldap_pvt_thread_mutex_t slap_op_mutex;
41 static time_t last_time;
44 void slap_op_init(void)
46 ldap_pvt_thread_mutex_init( &slap_op_mutex );
49 void slap_op_destroy(void)
51 ldap_pvt_thread_mutex_destroy( &slap_op_mutex );
55 slap_op_q_destroy( void *key, void *data )
58 for ( op = data; op; op = op2 ) {
59 op2 = LDAP_STAILQ_NEXT( op, o_next );
60 ber_memfree_x( op, NULL );
65 slap_op_groups_free( Operation *op )
67 GroupAssertion *g, *n;
68 for ( g = op->o_groups; g; g = n ) {
70 slap_sl_free( g, op->o_tmpmemctx );
76 slap_op_free( Operation *op, void *ctx )
78 OperationBuffer *opbuf;
80 assert( LDAP_STAILQ_NEXT(op, o_next) == NULL );
85 if ( op->o_ber != NULL ) {
86 ber_free( op->o_ber, 1 );
88 if ( !BER_BVISNULL( &op->o_dn ) ) {
89 ch_free( op->o_dn.bv_val );
91 if ( !BER_BVISNULL( &op->o_ndn ) ) {
92 ch_free( op->o_ndn.bv_val );
94 if ( !BER_BVISNULL( &op->o_authmech ) ) {
95 ch_free( op->o_authmech.bv_val );
97 if ( op->o_ctrls != NULL ) {
98 slap_free_ctrls( op, op->o_ctrls );
101 #ifdef LDAP_CONNECTIONLESS
102 if ( op->o_res_ber != NULL ) {
103 ber_free( op->o_res_ber, 1 );
107 if ( op->o_groups ) {
108 slap_op_groups_free( op );
111 #if defined( LDAP_SLAPI )
112 if ( slapi_plugins_used ) {
113 slapi_int_free_object_extensions( SLAPI_X_EXT_OPERATION, op );
115 #endif /* defined( LDAP_SLAPI ) */
117 if ( !BER_BVISNULL( &op->o_csn ) ) {
118 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
121 if ( op->o_pagedresults_state != NULL ) {
122 op->o_tmpfree( op->o_pagedresults_state, op->o_tmpmemctx );
125 /* Selectively zero out the struct. Ignore fields that will
126 * get explicitly initialized later anyway. Keep o_abandon intact.
128 opbuf = (OperationBuffer *) op;
130 BER_BVZERO( &op->o_req_dn );
131 BER_BVZERO( &op->o_req_ndn );
132 memset( op->o_hdr, 0, sizeof( *op->o_hdr ));
133 memset( &op->o_request, 0, sizeof( op->o_request ));
134 memset( &op->o_do_not_cache, 0, sizeof( Operation ) - offsetof( Operation, o_do_not_cache ));
135 memset( opbuf->ob_controls, 0, sizeof( opbuf->ob_controls ));
136 op->o_controls = opbuf->ob_controls;
139 Operation *op2 = NULL;
140 ldap_pvt_thread_pool_setkey( ctx, (void *)slap_op_free,
141 op, slap_op_q_destroy, (void **)&op2, NULL );
142 LDAP_STAILQ_NEXT( op, o_next ) = op2;
144 op->o_tincr = op2->o_tincr + 1;
145 /* No more than 10 ops on per-thread free list */
146 if ( op->o_tincr > 10 ) {
147 ldap_pvt_thread_pool_setkey( ctx, (void *)slap_op_free,
148 op2, slap_op_q_destroy, NULL, NULL );
149 ber_memfree_x( op, NULL );
155 ber_memfree_x( op, NULL );
160 slap_op_time(time_t *t, int *nop)
162 ldap_pvt_thread_mutex_lock( &slap_op_mutex );
163 *t = slap_get_time();
164 if ( *t == last_time ) {
171 ldap_pvt_thread_mutex_unlock( &slap_op_mutex );
182 Operation *op = NULL;
186 ldap_pvt_thread_pool_getkey( ctx, (void *)slap_op_free, &otmp, NULL );
189 otmp = LDAP_STAILQ_NEXT( op, o_next );
190 ldap_pvt_thread_pool_setkey( ctx, (void *)slap_op_free,
191 otmp, slap_op_q_destroy, NULL, NULL );
197 op = (Operation *) ch_calloc( 1, sizeof(OperationBuffer) );
198 op->o_hdr = &((OperationBuffer *) op)->ob_hdr;
199 op->o_controls = ((OperationBuffer *) op)->ob_controls;
206 slap_op_time( &op->o_time, &op->o_tincr );
209 #if defined( LDAP_SLAPI )
210 if ( slapi_plugins_used ) {
211 slapi_int_create_object_extensions( SLAPI_X_EXT_OPERATION, op );
213 #endif /* defined( LDAP_SLAPI ) */
219 slap_req2op( ber_tag_t tag )
224 case LDAP_REQ_UNBIND:
225 return SLAP_OP_UNBIND;
228 case LDAP_REQ_DELETE:
229 return SLAP_OP_DELETE;
230 case LDAP_REQ_MODRDN:
231 return SLAP_OP_MODRDN;
232 case LDAP_REQ_MODIFY:
233 return SLAP_OP_MODIFY;
234 case LDAP_REQ_COMPARE:
235 return SLAP_OP_COMPARE;
236 case LDAP_REQ_SEARCH:
237 return SLAP_OP_SEARCH;
238 case LDAP_REQ_ABANDON:
239 return SLAP_OP_ABANDON;
240 case LDAP_REQ_EXTENDED:
241 return SLAP_OP_EXTENDED;