]> git.sur5r.net Git - openldap/blob - servers/slapd/operation.c
ITS#1716 is_entry_subentr/ies/y/
[openldap] / servers / slapd / operation.c
1 /* operation.c - routines to deal with pending ldap operations */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/string.h>
13 #include <ac/socket.h>
14
15 #include "slap.h"
16
17
18 void
19 slap_op_free( Operation *op )
20 {
21         assert( LDAP_STAILQ_NEXT(op, o_next) == NULL );
22
23         if ( op->o_ber != NULL ) {
24                 ber_free( op->o_ber, 1 );
25         }
26         if ( op->o_dn.bv_val != NULL ) {
27                 free( op->o_dn.bv_val );
28         }
29         if ( op->o_ndn.bv_val != NULL ) {
30                 free( op->o_ndn.bv_val );
31         }
32         if ( op->o_authmech.bv_val != NULL ) {
33                 free( op->o_authmech.bv_val );
34         }
35         if ( op->o_ctrls != NULL ) {
36                 ldap_controls_free( op->o_ctrls );
37         }
38
39         ldap_pvt_thread_mutex_destroy( &op->o_abandonmutex );
40
41         free( (char *) op );
42 }
43
44 Operation *
45 slap_op_alloc(
46     BerElement          *ber,
47     ber_int_t   msgid,
48     ber_tag_t   tag,
49     ber_int_t   id
50 )
51 {
52         Operation       *op;
53
54         op = (Operation *) ch_calloc( 1, sizeof(Operation) );
55
56         ldap_pvt_thread_mutex_init( &op->o_abandonmutex );
57
58         op->o_ber = ber;
59         op->o_msgid = msgid;
60         op->o_tag = tag;
61
62         op->o_time = slap_get_time();
63         op->o_opid = id;
64
65         return( op );
66 }