]> git.sur5r.net Git - openldap/blob - servers/slapd/operation.c
Add link to FAQ entry on BDB tuning
[openldap] / servers / slapd / operation.c
1 /* operation.c - routines to deal with pending ldap operations */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2006 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
31 #include <ac/string.h>
32 #include <ac/socket.h>
33
34 #include "slap.h"
35
36 #ifdef LDAP_SLAPI
37 #include "slapi/slapi.h"
38 #endif
39
40 static ldap_pvt_thread_mutex_t  slap_op_mutex;
41 static LDAP_STAILQ_HEAD(s_o, slap_op)   slap_free_ops;
42 static time_t last_time;
43 static int last_incr;
44
45 void slap_op_init(void)
46 {
47         ldap_pvt_thread_mutex_init( &slap_op_mutex );
48         LDAP_STAILQ_INIT(&slap_free_ops);
49 }
50
51 void slap_op_destroy(void)
52 {
53         Operation *o;
54
55         while ( (o = LDAP_STAILQ_FIRST( &slap_free_ops )) != NULL) {
56                 LDAP_STAILQ_REMOVE_HEAD( &slap_free_ops, o_next );
57                 LDAP_STAILQ_NEXT(o, o_next) = NULL;
58                 ch_free( o );
59         }
60         ldap_pvt_thread_mutex_destroy( &slap_op_mutex );
61 }
62
63 void
64 slap_op_free( Operation *op )
65 {
66         assert( LDAP_STAILQ_NEXT(op, o_next) == NULL );
67
68         if ( op->o_ber != NULL ) {
69                 ber_free( op->o_ber, 1 );
70         }
71         if ( !BER_BVISNULL( &op->o_dn ) ) {
72                 ch_free( op->o_dn.bv_val );
73         }
74         if ( !BER_BVISNULL( &op->o_ndn ) ) {
75                 ch_free( op->o_ndn.bv_val );
76         }
77         if ( !BER_BVISNULL( &op->o_authmech ) ) {
78                 ch_free( op->o_authmech.bv_val );
79         }
80         if ( op->o_ctrls != NULL ) {
81                 slap_free_ctrls( op, op->o_ctrls );
82         }
83
84 #ifdef LDAP_CONNECTIONLESS
85         if ( op->o_res_ber != NULL ) {
86                 ber_free( op->o_res_ber, 1 );
87         }
88 #endif
89
90         {
91                 GroupAssertion *g, *n;
92                 for ( g = op->o_groups; g; g = n ) {
93                         n = g->ga_next;
94                         slap_sl_free( g, op->o_tmpmemctx );
95                 }
96                 op->o_groups = NULL;
97         }
98
99 #if defined( LDAP_SLAPI )
100         if ( slapi_plugins_used ) {
101                 slapi_int_free_object_extensions( SLAPI_X_EXT_OPERATION, op );
102         }
103 #endif /* defined( LDAP_SLAPI ) */
104
105
106         memset( op, 0, sizeof(Operation) + sizeof(Opheader) + SLAP_MAX_CIDS * sizeof(void *) );
107         op->o_hdr = (Opheader *)(op+1);
108         op->o_controls = (void **)(op->o_hdr+1);
109
110         ldap_pvt_thread_mutex_lock( &slap_op_mutex );
111         LDAP_STAILQ_INSERT_HEAD( &slap_free_ops, op, o_next );
112         ldap_pvt_thread_mutex_unlock( &slap_op_mutex );
113 }
114
115 void
116 slap_op_time(time_t *t, int *nop)
117 {
118         *t = slap_get_time();
119         ldap_pvt_thread_mutex_lock( &slap_op_mutex );
120         if ( *t == last_time ) {
121                 *nop = ++last_incr;
122         } else {
123                 last_time = *t;
124                 last_incr = 0;
125                 *nop = 0;
126         }
127         ldap_pvt_thread_mutex_unlock( &slap_op_mutex );
128 }
129
130 Operation *
131 slap_op_alloc(
132     BerElement          *ber,
133     ber_int_t   msgid,
134     ber_tag_t   tag,
135     ber_int_t   id )
136 {
137         Operation       *op;
138
139         ldap_pvt_thread_mutex_lock( &slap_op_mutex );
140         if ((op = LDAP_STAILQ_FIRST( &slap_free_ops ))) {
141                 LDAP_STAILQ_REMOVE_HEAD( &slap_free_ops, o_next );
142         }
143         ldap_pvt_thread_mutex_unlock( &slap_op_mutex );
144
145         if (!op) {
146                 op = (Operation *) ch_calloc( 1, sizeof(Operation)
147                         + sizeof(Opheader) + SLAP_MAX_CIDS * sizeof(void *) );
148                 op->o_hdr = (Opheader *)(op + 1);
149                 op->o_controls = (void **)(op->o_hdr+1);
150         }
151
152         op->o_ber = ber;
153         op->o_msgid = msgid;
154         op->o_tag = tag;
155
156         slap_op_time( &op->o_time, &op->o_tincr );
157         op->o_opid = id;
158         op->o_res_ber = NULL;
159
160 #if defined( LDAP_SLAPI )
161         if ( slapi_plugins_used ) {
162                 slapi_int_create_object_extensions( SLAPI_X_EXT_OPERATION, op );
163         }
164 #endif /* defined( LDAP_SLAPI ) */
165
166         return( op );
167 }