]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/slap.h
Fix lint in previous commit
[openldap] / servers / slapd / slap.h
index ef156cbf332dc5e690d13932ee35c2b728dc0878..ba66ff390330a781c6b9bfb38bf24e88c78d1dff 100644 (file)
@@ -1,7 +1,7 @@
 /* slap.h - stand alone ldap server include file */
 /* $OpenLDAP$ */
 /*
- * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
 #define ldap_debug slap_debug
 #endif
 
-
 #include "ldap_log.h"
 
 #include <ldap.h>
 #include <ldap_schema.h>
 
 #include "ldap_pvt_thread.h"
+#include "ldap_queue.h"
 
 LDAP_BEGIN_DECL
-
-#define SERVICE_NAME  OPENLDAP_PACKAGE "-slapd"
-#define SLAPD_ANONYMOUS "cn=anonymous"
+/*
+ * SLAPD Memory allocation macros
+ *
+ * Unlike ch_*() routines, these routines do not assert() upon
+ * allocation error.  They are intended to be used instead of
+ * ch_*() routines where the caller has implemented proper
+ * checking for and handling of allocation errors.
+ *
+ * Patches to convert ch_*() calls to SLAP_*() calls welcomed.
+ */
+#define SLAP_MALLOC(s)      ber_memalloc((s))
+#define SLAP_CALLOC(n,s)    ber_memcalloc((n),(s))
+#define SLAP_REALLOC(p,s)   ber_memrealloc((p),(s))
+#define SLAP_FREE(p)        ber_memfree((p))
+#define SLAP_VFREE(v)       ber_memvfree((void**)(v))
+#define SLAP_STRDUP(s)      ber_strdup((s))
+#define SLAP_STRNDUP(s,l)   ber_strndup((s),(l))
 
 #ifdef f_next
 #undef f_next /* name conflict between sys/file.h on SCO and struct filter */
 #endif
 
+#define SERVICE_NAME  OPENLDAP_PACKAGE "-slapd"
+#define SLAPD_ANONYMOUS "cn=anonymous"
+
 /* LDAPMod.mod_op value ===> Must be kept in sync with ldap.h!
  *
  * This is a value used internally by the backends. It is needed to allow
@@ -114,7 +131,7 @@ LDAP_BEGIN_DECL
 
 /* must match in schema_init.c */
 #define SLAPD_DN_SYNTAX                        "1.3.6.1.4.1.1466.115.121.1.12"
-#define SLAPD_NAMEUID_SYNTAX           "1.3.6.1.4.1.1466.115.121.1.34"
+#define SLAPD_NAMEUID_SYNTAX   "1.3.6.1.4.1.1466.115.121.1.34"
 #define SLAPD_GROUP_ATTR               "member"
 #define SLAPD_GROUP_CLASS              "groupOfNames"
 #define SLAPD_ROLE_ATTR                        "roleOccupant"
@@ -217,7 +234,9 @@ typedef struct slap_ssf_set {
 #define SLAP_SCHERR_SYN_NOT_FOUND      13
 #define SLAP_SCHERR_MR_INCOMPLETE      14
 #define SLAP_SCHERR_NOT_SUPPORTED      15
-#define SLAP_SCHERR_BAD_DESCR  16
+#define SLAP_SCHERR_BAD_DESCR          16
+#define SLAP_SCHERR_OIDM                       17
+#define SLAP_SCHERR_LAST                       SLAP_SCHERR_OIDM
 
 typedef union slap_sockaddr {
        struct sockaddr sa_addr;
@@ -247,21 +266,22 @@ typedef int slap_syntax_validate_func LDAP_P((
 typedef int slap_syntax_transform_func LDAP_P((
        struct slap_syntax *syntax,
        struct berval * in,
-       struct berval ** out));
+       struct berval * out));
 
 typedef struct slap_syntax {
        LDAPSyntax                      ssyn_syn;
 #define ssyn_oid               ssyn_syn.syn_oid
 #define ssyn_desc              ssyn_syn.syn_desc
 #define ssyn_extensions                ssyn_syn.syn_extensions
+       ber_len_t       ssyn_oidlen;
 
-       unsigned        ssyn_flags;
+       unsigned int ssyn_flags;
 
-#define SLAP_SYNTAX_NONE       0x00U
-#define SLAP_SYNTAX_BLOB       0x01U /* syntax treated as blob (audio) */
-#define SLAP_SYNTAX_BINARY     0x02U /* binary transfer required (certificate) */
-#define SLAP_SYNTAX_BER                0x04U /* stored using BER encoding (binary,certificate) */
-#define SLAP_SYNTAX_HIDE       0x80U /* hide (do not publish) */
+#define SLAP_SYNTAX_NONE       0x0000U
+#define SLAP_SYNTAX_BLOB       0x0001U /* syntax treated as blob (audio) */
+#define SLAP_SYNTAX_BINARY     0x0002U /* binary transfer required (certificate) */
+#define SLAP_SYNTAX_BER                0x0004U /* stored in BER encoding (certificate) */
+#define SLAP_SYNTAX_HIDE       0x8000U /* hide (do not publish) */
 
        slap_syntax_validate_func       *ssyn_validate;
        slap_syntax_transform_func      *ssyn_normalize;
@@ -285,7 +305,7 @@ typedef struct slap_syntax {
 /* X -> Y Converter */
 typedef int slap_mr_convert_func LDAP_P((
        struct berval * in,
-       struct berval ** out ));
+       struct berval * out ));
 
 /* Normalizer */
 typedef int slap_mr_normalize_func LDAP_P((
@@ -293,7 +313,7 @@ typedef int slap_mr_normalize_func LDAP_P((
        struct slap_syntax *syntax, /* NULL if in is asserted value */
        struct slap_matching_rule *mr,
        struct berval * in,
-       struct berval ** out ));
+       struct berval * out ));
 
 /* Match (compare) function */
 typedef int slap_mr_match_func LDAP_P((
@@ -311,8 +331,8 @@ typedef int slap_mr_indexer_func LDAP_P((
        struct slap_syntax *syntax,     /* syntax of stored value */
        struct slap_matching_rule *mr,
        struct berval *prefix,
-       struct berval **values,
-       struct berval ***keys ));
+       BVarray values,
+       BVarray *keys ));
 
 /* Filter index function */
 typedef int slap_mr_filter_func LDAP_P((
@@ -322,13 +342,16 @@ typedef int slap_mr_filter_func LDAP_P((
        struct slap_matching_rule *mr,
        struct berval *prefix,
        void * assertValue,
-       struct berval ***keys ));
+       BVarray *keys ));
 
 typedef struct slap_matching_rule {
        LDAPMatchingRule                smr_mrule;
+       ber_len_t                       smr_oidlen;
        slap_mask_t                             smr_usage;
 
-#define SLAP_MR_TYPE_MASK              0xFF00U
+#define SLAP_MR_HIDE                   0x8000U
+
+#define SLAP_MR_TYPE_MASK              0x0F00U
 #define SLAP_MR_SUBTYPE_MASK   0x00F0U
 #define SLAP_MR_USAGE                  0x000FU
 
@@ -352,9 +375,9 @@ typedef struct slap_matching_rule {
  * the provided value is expected to conform to the
  * attribute's value syntax.
  */
-#define SLAP_MR_ASSERTION_SYNTAX_MATCH 0x0000U
-#define SLAP_MR_VALUE_SYNTAX_MATCH 0x0001U
-#define SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH 0x0003U
+#define SLAP_MR_ASSERTION_SYNTAX_MATCH                 0x0000U
+#define SLAP_MR_VALUE_SYNTAX_MATCH                             0x0001U
+#define SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH   0x0003U
 
 #define SLAP_IS_MR_ASSERTION_SYNTAX_MATCH( usage ) \
        (!((usage) & SLAP_MR_VALUE_SYNTAX_MATCH))
@@ -386,7 +409,14 @@ typedef struct slap_matching_rule {
 #define smr_extensions         smr_mrule.mr_extensions
 } MatchingRule;
 
-struct slap_attr_desc;
+struct slap_entry;
+struct slap_attr;
+
+typedef int (AttributeTypeSchemaCheckFN)(
+       struct slap_entry *e,
+       struct slap_attr *attr,
+       const char** text,
+       char *textbuf, size_t textlen );
 
 typedef struct slap_attribute_type {
        LDAPAttributeType               sat_atype;
@@ -398,6 +428,7 @@ typedef struct slap_attribute_type {
        MatchingRule                    *sat_ordering;
        MatchingRule                    *sat_substr;
        Syntax                          *sat_syntax;
+       AttributeTypeSchemaCheckFN      *sat_check;
        struct slap_attr_desc           *sat_ad;
        struct slap_attribute_type      *sat_next;
        ldap_pvt_thread_mutex_t         sat_ad_mutex;
@@ -423,11 +454,20 @@ typedef struct slap_attribute_type {
 #define is_at_obsolete(at)             ((at)->sat_obsolete)
 #define is_at_no_user_mod(at)  ((at)->sat_no_user_mod)
 
+struct slap_object_class;
+
+typedef int (ObjectClassSchemaCheckFN)(
+       struct slap_entry *e,
+       struct slap_object_class *oc,
+       const char** text,
+       char *textbuf, size_t textlen );
+
 typedef struct slap_object_class {
        LDAPObjectClass         soc_oclass;
        struct slap_object_class        **soc_sups;
        AttributeType                   **soc_required;
        AttributeType                   **soc_allowed;
+       ObjectClassSchemaCheckFN        *sco_check;
        struct slap_object_class        *soc_next;
 #define soc_oid                        soc_oclass.oc_oid
 #define soc_names              soc_oclass.oc_names
@@ -454,6 +494,12 @@ typedef struct slap_attr_desc {
 #define SLAP_DESC_BINARY       0x1U
 } AttributeDescription;
 
+typedef struct slap_attr_name {
+       struct berval an_name;
+       AttributeDescription *an_desc;
+       ObjectClass *an_oc;
+} AttributeName;
+
 #define slap_ad_is_lang(ad)            ( (ad)->ad_lang.bv_len != 0 )
 #define slap_ad_is_binary(ad)  ( (int)((ad)->ad_flags & SLAP_DESC_BINARY) ? 1 : 0 )
 
@@ -466,38 +512,52 @@ struct slap_internal_schema {
        ObjectClass *si_oc_extensibleObject;
        ObjectClass *si_oc_alias;
        ObjectClass *si_oc_referral;
+       ObjectClass *si_oc_rootdse;
        ObjectClass *si_oc_subentry;
        ObjectClass *si_oc_subschema;
-       ObjectClass *si_oc_rootdse;
+       ObjectClass *si_oc_collectiveAttributes;
+       ObjectClass *si_oc_dynamicObject;
 
        /* objectClass attribute descriptions */
        AttributeDescription *si_ad_objectClass;
 
        /* operational attribute descriptions */
        AttributeDescription *si_ad_structuralObjectClass;
-       AttributeDescription *si_ad_entryUUID;
-       AttributeDescription *si_ad_entryCSN;
        AttributeDescription *si_ad_creatorsName;
        AttributeDescription *si_ad_createTimestamp;
        AttributeDescription *si_ad_modifiersName;
        AttributeDescription *si_ad_modifyTimestamp;
        AttributeDescription *si_ad_hasSubordinates;
        AttributeDescription *si_ad_subschemaSubentry;
+       AttributeDescription *si_ad_collectiveSubentry;
+       AttributeDescription *si_ad_collectiveExclusions;
+       AttributeDescription *si_ad_entryUUID;
+       AttributeDescription *si_ad_entryCSN;
 
        /* root DSE attribute descriptions */
+       AttributeDescription *si_ad_altServer;
        AttributeDescription *si_ad_namingContexts;
        AttributeDescription *si_ad_supportedControl;
        AttributeDescription *si_ad_supportedExtension;
        AttributeDescription *si_ad_supportedLDAPVersion;
        AttributeDescription *si_ad_supportedSASLMechanisms;
        AttributeDescription *si_ad_supportedFeatures;
+       AttributeDescription *si_ad_vendorName;
+       AttributeDescription *si_ad_vendorVersion;
+
+       /* subentry attribute descriptions */
+       AttributeDescription *si_ad_administrativeRole;
+       AttributeDescription *si_ad_subtreeSpecification;
 
        /* subschema subentry attribute descriptions */
+       AttributeDescription *si_ad_ditStructureRules;
+       AttributeDescription *si_ad_ditContentRules;
+       AttributeDescription *si_ad_nameForms;
        AttributeDescription *si_ad_objectClasses;
        AttributeDescription *si_ad_attributeTypes;
        AttributeDescription *si_ad_ldapSyntaxes;
        AttributeDescription *si_ad_matchingRules;
-       AttributeDescription *si_ad_matchingRulesUse;
+       AttributeDescription *si_ad_matchingRuleUse;
 
        /* Aliases & Referrals */
        AttributeDescription *si_ad_aliasedObjectName;
@@ -510,9 +570,18 @@ struct slap_internal_schema {
        AttributeDescription *si_ad_aci;
 #endif
 
+       /* dynamic entries */
+       AttributeDescription *si_ad_entryTtl;
+       AttributeDescription *si_ad_dynamicSubtrees;
+
        /* Other attributes descriptions */
+       AttributeDescription *si_ad_distinguishedName;
+       AttributeDescription *si_ad_name;
+       AttributeDescription *si_ad_cn;
        AttributeDescription *si_ad_userPassword;
+#ifdef SLAPD_AUTHPASSWD
        AttributeDescription *si_ad_authPassword;
+#endif
 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
        AttributeDescription *si_ad_krbName;
 #endif
@@ -531,22 +600,22 @@ struct slap_internal_schema {
 
 typedef struct slap_attr_assertion {
        AttributeDescription    *aa_desc;
-       struct berval *aa_value;
+       struct berval aa_value;
 } AttributeAssertion;
 
 typedef struct slap_ss_assertion {
        AttributeDescription    *sa_desc;
-       struct berval                   *sa_initial;
-       struct berval                   **sa_any;
-       struct berval                   *sa_final;
+       struct berval           sa_initial;
+       struct berval           *sa_any;
+       struct berval           sa_final;
 } SubstringsAssertion;
 
 typedef struct slap_mr_assertion {
-       MatchingRule                            *ma_rule;       /* optional */
-       struct berval                           ma_rule_text;  /* optional */
+       MatchingRule            *ma_rule;       /* optional */
+       struct berval           ma_rule_text;  /* optional */
        AttributeDescription    *ma_desc;       /* optional */
        int                                             ma_dnattrs; /* boolean */
-       struct berval                   *ma_value;      /* required */
+       struct berval           ma_value;       /* required */
 } MatchingRuleAssertion;
 
 /*
@@ -563,7 +632,7 @@ typedef struct slap_filter {
                ber_int_t f_un_result;
 
                /* DN */
-               char *f_un_dn;
+               struct berval *f_un_dn;
 
                /* present */
                AttributeDescription *f_un_desc;
@@ -615,7 +684,7 @@ typedef struct slap_filter {
  */
 typedef struct slap_attr {
        AttributeDescription *a_desc;
-       struct berval   **a_vals;
+       BVarray a_vals;
        struct slap_attr        *a_next;
 } Attribute;
 
@@ -656,13 +725,15 @@ typedef struct slap_entry {
 typedef struct slap_mod {
        int sm_op;
        AttributeDescription *sm_desc;
-       struct berval **sm_bvalues;
+       struct berval sm_type;
+       BVarray sm_bvalues;
 } Modification;
 
 typedef struct slap_mod_list {
        Modification sml_mod;
 #define sml_op         sml_mod.sm_op
 #define sml_desc       sml_mod.sm_desc
+#define        sml_type        sml_mod.sm_type
 #define sml_bvalues    sml_mod.sm_bvalues
        struct slap_mod_list *sml_next;
 } Modifications;
@@ -823,7 +894,7 @@ typedef struct slap_acl {
        slap_style_t acl_dn_style;
        regex_t         acl_dn_re;
        struct berval   acl_dn_pat;
-       struct berval   **acl_attrs;
+       AttributeName   *acl_attrs;
 
        /* "by" part: list of who has what access to the entries */
        Access  *acl_access;
@@ -894,7 +965,7 @@ struct slap_limits {
         * normalized DN for EXACT, BASE, ONE, SUBTREE, CHILDREN;
         * pattern for REGEX; NULL for ANONYMOUS, USERS
         */
-       struct berval *lm_dn_pat;
+       struct berval lm_dn_pat;
 
        struct slap_limits_set  lm_limits;
 };
@@ -1001,7 +1072,7 @@ struct slap_backend_db {
        struct slap_replica_info **be_replica;  /* replicas of this backend (in master) */
        char    *be_replogfile; /* replication log file (in master)        */
        struct berval be_update_ndn;    /* allowed to make changes (in replicas) */
-       struct berval **be_update_refs; /* where to refer modifying clients to */
+       BVarray be_update_refs; /* where to refer modifying clients to */
        char    *be_realm;
        int     be_lastmod;     /* keep track of lastmodified{by,time}     */
 
@@ -1018,15 +1089,17 @@ struct slap_op;
 
 /* Backend function typedefs */
 typedef int (BI_init) LDAP_P((BackendInfo *bi));
-typedef int (BI_config) LDAP_P((BackendInfo *bi, const char *fname,
-       int lineno, int argc, char **argv));
+typedef int (BI_config) LDAP_P((BackendInfo *bi,
+       const char *fname, int lineno,
+       int argc, char **argv));
 typedef int (BI_open) LDAP_P((BackendInfo *bi));
 typedef int (BI_close) LDAP_P((BackendInfo *bi));
 typedef int (BI_destroy) LDAP_P((BackendInfo *bi));
 
 typedef int (BI_db_init) LDAP_P((Backend *bd));
-typedef int (BI_db_config) LDAP_P((Backend *bd, const char *fname,
-       int lineno, int argc, char **argv));
+typedef int (BI_db_config) LDAP_P((Backend *bd,
+       const char *fname, int lineno,
+       int argc, char **argv));
 typedef int (BI_db_open) LDAP_P((Backend *bd));
 typedef int (BI_db_close) LDAP_P((Backend *bd));
 typedef int (BI_db_destroy) LDAP_P((Backend *bd));
@@ -1039,29 +1112,31 @@ typedef int (BI_op_unbind) LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o ));
 typedef int (BI_op_search) LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o,
-               const char *base, const char *nbase,
+               struct berval *base, struct berval *nbase,
                int scope, int deref,
                int slimit, int tlimit,
-               Filter *f, const char *filterstr,
-               struct berval **attrs, int attrsonly));
+               Filter *f, struct berval *filterstr,
+               AttributeName *attrs, int attrsonly));
 typedef int (BI_op_compare)LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o,
-               const char *dn, const char *ndn,
+               struct berval *dn, struct berval *ndn,
                AttributeAssertion *ava));
 typedef int (BI_op_modify) LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o,
-               const char *dn, const char *ndn, Modifications *m));
+               struct berval *dn, struct berval *ndn,
+               Modifications *m));
 typedef int (BI_op_modrdn) LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o,
-               const char *dn, const char *ndn,
-               const char *newrdn, int deleteoldrdn,
-               const char *newSuperior));
+               struct berval *dn, struct berval *ndn,
+               struct berval *newrdn, struct berval *nnewrdn,
+               int deleteoldrdn,
+               struct berval *newSup, struct berval *nnewSup ));
 typedef int (BI_op_add)    LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o,
                Entry *e));
 typedef int (BI_op_delete) LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o,
-               const char *dn, const char *ndn));
+               struct berval *dn, struct berval *ndn));
 typedef int (BI_op_abandon) LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o,
                ber_int_t msgid));
@@ -1076,7 +1151,7 @@ typedef int (BI_op_extended) LDAP_P((
     struct berval ** rspdata,
        LDAPControl *** rspctrls,
        const char **   text,
-       struct berval *** refs ));
+       BVarray *refs ));
 
 typedef int (BI_entry_release_rw) LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o,
@@ -1084,23 +1159,26 @@ typedef int (BI_entry_release_rw) LDAP_P((BackendDB *bd,
 
 typedef int (BI_chk_referrals) LDAP_P((BackendDB *bd,
                struct slap_conn *c, struct slap_op *o,
-               const char *dn, const char *ndn,
+               struct berval *dn, struct berval *ndn,
                const char **text ));
 
 typedef int (BI_acl_group)  LDAP_P((Backend *bd,
                struct slap_conn *c, struct slap_op *o,
-               Entry *e, const char *bdn, const char *edn,
+               Entry *e,
+               struct berval *bdn,
+               struct berval *edn,
                ObjectClass *group_oc,
                AttributeDescription *group_at ));
+
 typedef int (BI_acl_attribute)  LDAP_P((Backend *bd,
                struct slap_conn *c, struct slap_op *o,
-               Entry *e, const char *edn,
+               Entry *e, struct berval *edn,
                AttributeDescription *entry_at,
-               struct berval ***vals ));
+               BVarray *vals ));
 
 typedef int (BI_operational)  LDAP_P((Backend *bd,
                struct slap_conn *c, struct slap_op *o,
-               Entry *e, struct berval **attrs, int opattrs, Attribute **a ));
+               Entry *e, AttributeName *attrs, int opattrs, Attribute **a ));
 
 typedef int (BI_connection_init) LDAP_P((BackendDB *bd,
                struct slap_conn *c));
@@ -1238,13 +1316,14 @@ struct slap_backend_info {
 struct slap_op;
 struct slap_conn;
 
-typedef void (slap_response)(struct slap_conn *, struct slap_op *, ber_tag_t,
-       ber_int_t, ber_int_t, const char *, const char *, struct berval **,
-       const char *, struct berval *, struct berval *, LDAPControl **);
+typedef void (slap_response)( struct slap_conn *, struct slap_op *,
+       ber_tag_t, ber_int_t, ber_int_t, const char *, const char *,
+       BVarray, const char *, struct berval *,
+       struct berval *, LDAPControl ** );
 
-typedef void (slap_sresult)(struct slap_conn *, struct slap_op *, ber_int_t,
-       const char *, const char *, struct berval **, LDAPControl **,
-       int nentries);
+typedef void (slap_sresult)( struct slap_conn *, struct slap_op *,
+       ber_int_t, const char *, const char *, BVarray,
+       LDAPControl **, int nentries);
 
 /*
  * represents an operation pending from an ldap client
@@ -1276,11 +1355,23 @@ typedef struct slap_op {
        slap_response   *o_response;    /* callback function */
        slap_sresult    *o_sresult;     /* search result callback */
 
-       struct slap_op  *o_next;        /* next operation in list         */
+       LDAP_STAILQ_ENTRY(slap_op)      o_next; /* next operation in list         */
        void    *o_private;     /* anything the backend needs     */
        void    *o_glue;        /* for the glue backend */
+
+#define SLAP_NO_CONTROL 0
+#define SLAP_NONCRITICAL_CONTROL 1
+#define SLAP_CRITICAL_CONTROL 2
+
+       char o_managedsait;
+       char o_subentries;
+       char o_subentries_visibility;
 } Operation;
 
+#define get_manageDSAit(op)                            ((int)(op)->o_managedsait)
+#define get_subentries(op)                             ((int)(op)->o_subentries)
+#define get_subentries_visibility(op)  ((int)(op)->o_subentries_visibility)
+
 /*
  * Caches the result of a backend_group check for ACL evaluation
  */
@@ -1317,7 +1408,7 @@ typedef struct slap_conn {
        /* only can be changed by binding thread */
        int             c_sasl_bind_in_progress;        /* multi-op bind in progress */
        char    *c_sasl_bind_mech;                      /* mech in progress */
-       char    *c_cdn;
+       struct berval   c_cdn;
 
        /* authentication backend */
        Backend *c_authc_backend;
@@ -1330,8 +1421,8 @@ typedef struct slap_conn {
 
        ber_int_t       c_protocol;     /* version of the LDAP protocol used by client */
 
-       Operation       *c_ops;                 /* list of operations being processed */
-       Operation       *c_pending_ops; /* list of pending operations */
+       LDAP_STAILQ_HEAD(c_o, slap_op) c_ops;   /* list of operations being processed */
+       LDAP_STAILQ_HEAD(c_po, slap_op) c_pending_ops;  /* list of pending operations */
 
        ldap_pvt_thread_mutex_t c_write_mutex;  /* only one pdu written at a time */
        ldap_pvt_thread_cond_t  c_write_cv;             /* used to wait for sd write-ready*/
@@ -1391,7 +1482,6 @@ typedef struct sasl_regexp {
 #define FLAG_GETDN_AUTHCID 2
 #define FLAG_GETDN_AUTHZID 4
 
-
 LDAP_END_DECL
 
 #include "proto-slap.h"