1 /* $OpenLDAP: pkg/ldap/servers/slapd/slapi/slapi.h,v 1.56.2.3 2008/02/11 23:26:49 kurt Exp $ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 2002-2008 The OpenLDAP Foundation.
5 * Portions Copyright 1997,2002-2003 IBM Corporation.
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>.
17 * This work was initially developed by IBM Corporation for use in
18 * IBM products and subsequently ported to OpenLDAP Software by
19 * Steve Omrani. Additional significant contributors include:
23 #ifdef LDAP_SLAPI /* SLAPI is OPTIONAL */
31 * Quick 'n' dirty to make struct slapi_* in slapi-plugin.h opaque
33 #define slapi_entry Entry
34 #define slapi_attr Attribute
35 #define slapi_value berval
36 #define slapi_valueset berval *
37 #define slapi_filter Filter
41 #include <slapi-plugin.h>
45 #define SLAPI_OVERLAY_NAME "slapi"
47 #define SLAPI_OPERATION_PBLOCK(_op) ((_op)->o_callback->sc_private)
48 #define SLAPI_BACKEND_PBLOCK(_be) ((_be)->be_pb)
50 #define SLAPI_OPERATION_EXTENSIONS(_op) ((_op)->o_hdr->oh_extensions)
51 #define SLAPI_CONNECTION_EXTENSIONS(_conn) ((_conn)->c_extensions)
53 #define SLAPI_CONTROL_MANAGEDSAIT_OID LDAP_CONTROL_MANAGEDSAIT
54 #define SLAPI_CONTROL_SORTEDSEARCH_OID LDAP_CONTROL_SORTREQUEST
55 #define SLAPI_CONTROL_PAGED_RESULTS_OID LDAP_CONTROL_PAGEDRESULTS
57 typedef int (*SLAPI_FUNC
)( Slapi_PBlock
*pb
);
59 typedef struct _slapi_control
{
62 unsigned long *s_ctrl_ops
;
65 typedef struct _ExtendedOp
{
66 struct berval ext_oid
;
69 struct _ExtendedOp
*ext_next
;
72 /* Computed attribute support */
73 struct _computed_attr_context
{
79 /* for slapi_attr_type_cmp() */
80 #define SLAPI_TYPE_CMP_EXACT 0
81 #define SLAPI_TYPE_CMP_BASE 1
82 #define SLAPI_TYPE_CMP_SUBTYPE 2
84 typedef enum slapi_extension_e
{
85 SLAPI_X_EXT_CONNECTION
= 0,
86 SLAPI_X_EXT_OPERATION
= 1,
103 * Was: slapi_pblock.h
106 #ifndef NO_PBLOCK_CLASS /* where's this test from? */
108 typedef enum slapi_pblock_class_e
{
109 PBLOCK_CLASS_INVALID
= 0,
110 PBLOCK_CLASS_INTEGER
,
111 PBLOCK_CLASS_LONG_INTEGER
,
112 PBLOCK_CLASS_POINTER
,
113 PBLOCK_CLASS_FUNCTION_POINTER
114 } slapi_pblock_class_t
;
116 #define PBLOCK_SUCCESS (0)
117 #define PBLOCK_ERROR (-1)
118 #define PBLOCK_MAX_PARAMS 100
120 union slapi_pblock_value
{
122 long pv_long_integer
;
124 int (*pv_function_pointer
)();
127 struct slapi_pblock
{
128 ldap_pvt_thread_mutex_t pb_mutex
;
130 int pb_params
[PBLOCK_MAX_PARAMS
];
131 union slapi_pblock_value pb_values
[PBLOCK_MAX_PARAMS
];
137 char pb_textbuf
[ SLAP_TEXT_BUFLEN
];
140 #endif /* !NO_PBLOCK_CLASS */
146 #define SLAPI_PLUGIN_IS_POST_FN(x) ((x) >= SLAPI_PLUGIN_POST_BIND_FN && (x) <= SLAPI_PLUGIN_BE_POST_DELETE_FN)
148 #define SLAPI_IBM_PBLOCK -3
150 #define SLAPI_ENTRY_PRE_OP 52
151 #define SLAPI_ENTRY_POST_OP 53
153 /* This is the spelling in the SunOne 5.2 docs */
154 #define SLAPI_RES_CONTROLS SLAPI_RESCONTROLS
156 #define SLAPI_ABANDON_MSGID 120
158 #define SLAPI_OPERATION_PARAMETERS 138
160 #define SLAPI_SEQ_TYPE 150
161 #define SLAPI_SEQ_ATTRNAME 151
162 #define SLAPI_SEQ_VAL 152
164 #define SLAPI_MR_FILTER_ENTRY 170
165 #define SLAPI_MR_FILTER_TYPE 171
166 #define SLAPI_MR_FILTER_VALUE 172
167 #define SLAPI_MR_FILTER_OID 173
168 #define SLAPI_MR_FILTER_DNATTRS 174
170 #define SLAPI_LDIF2DB_FILE 180
171 #define SLAPI_LDIF2DB_REMOVEDUPVALS 185
173 #define SLAPI_DB2LDIF_PRINTKEY 183
175 #define SLAPI_CHANGENUMBER 197
176 #define SLAPI_LOG_OPERATION 198
178 #define SLAPI_DBSIZE 199
180 #define SLAPI_PLUGIN_DB_TEST_FN 227
181 #define SLAPI_PLUGIN_DB_NO_ACL 250
183 /* OpenLDAP private parametrs */
184 #define SLAPI_PLUGIN_COMPUTE_EVALUATOR_FN 1200
185 #define SLAPI_PLUGIN_COMPUTE_SEARCH_REWRITER_FN 1201
187 #define SLAPI_X_CONFIG_ARGV 1400
188 #define SLAPI_X_INTOP_FLAGS 1401
189 #define SLAPI_X_INTOP_RESULT_CALLBACK 1402
190 #define SLAPI_X_INTOP_SEARCH_ENTRY_CALLBACK 1403
191 #define SLAPI_X_INTOP_REFERRAL_ENTRY_CALLBACK 1404
192 #define SLAPI_X_INTOP_CALLBACK_DATA 1405
193 #define SLAPI_X_OLD_RESCONTROLS 1406
195 LDAP_SLAPI_V (ldap_pvt_thread_mutex_t
) slapi_hn_mutex
;
196 LDAP_SLAPI_V (ldap_pvt_thread_mutex_t
) slapi_time_mutex
;
197 LDAP_SLAPI_V (ldap_pvt_thread_mutex_t
) slapi_printmessage_mutex
;
198 LDAP_SLAPI_V (char *) slapi_log_file
;
199 LDAP_SLAPI_V (int) slapi_log_level
;
201 #include "proto-slapi.h"
203 #endif /* _SLAPI_H */
204 #endif /* LDAP_SLAPI */