]> git.sur5r.net Git - openldap/blob - include/slapi-plugin.h
Formating
[openldap] / include / slapi-plugin.h
1 /*
2  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5 /*
6  * (C) Copyright IBM Corp. 1997,2002
7  * Redistribution and use in source and binary forms are permitted
8  * provided that this notice is preserved and that due credit is
9  * given to IBM Corporation. This software is provided ``as is''
10  * without express or implied warranty.
11  */
12
13 #ifndef _SLAPI_PLUGIN_H
14 #define _SLAPI_PLUGIN_H
15
16 #include <ldap.h>
17
18 typedef struct slapi_pblock     Slapi_PBlock;
19 typedef struct slapi_entry      Slapi_Entry;
20 typedef struct slapi_attr       Slapi_Attr;
21 typedef struct slapi_value      Slapi_Value;
22 typedef struct slapi_valueset   Slapi_ValueSet;
23 typedef struct slapi_filter     Slapi_Filter;
24
25 /* pblock routines */
26 int slapi_pblock_get( Slapi_PBlock *pb, int arg, void *value );
27 int slapi_pblock_set( Slapi_PBlock *pb, int arg, void *value );
28 Slapi_PBlock *slapi_pblock_new();
29 void slapi_pblock_destroy( Slapi_PBlock* );
30
31 /* entry/attr/dn routines */
32 Slapi_Entry *slapi_str2entry( char *s, int flags );
33 char *slapi_entry2str( Slapi_Entry *e, int *len );
34 char *slapi_entry_get_dn( Slapi_Entry *e );
35 int slapi_x_entry_get_id( Slapi_Entry *e );
36 void slapi_entry_set_dn( Slapi_Entry *e, char *dn );
37 Slapi_Entry *slapi_entry_dup( Slapi_Entry *e );
38 int slapi_entry_attr_delete( Slapi_Entry *e, char *type );
39 Slapi_Entry *slapi_entry_alloc();
40 void slapi_entry_free( Slapi_Entry *e );
41 int slapi_entry_attr_merge( Slapi_Entry *e, char *type, struct berval **vals );
42 int slapi_entry_attr_find( Slapi_Entry *e, char *type, Slapi_Attr **attr );
43 char *slapi_entry_attr_get_charptr( const Slapi_Entry *e, const char *type );
44 int slapi_entry_attr_get_int( const Slapi_Entry *e, const char *type );
45 int slapi_entry_attr_get_long( const Slapi_Entry *e, const char *type );
46 int slapi_entry_attr_get_uint( const Slapi_Entry *e, const char *type );
47 int slapi_entry_attr_get_ulong( const Slapi_Entry *e, const char *type );
48 int slapi_attr_get_values( Slapi_Attr *attr, struct berval ***vals );
49 char *slapi_dn_normalize( char *dn );
50 char *slapi_dn_normalize_case( char *dn );
51 int slapi_dn_issuffix( char *dn, char *suffix );
52 char *slapi_dn_beparent( Slapi_PBlock *pb, const char *dn );
53 char *slapi_dn_parent( const char *dn );
54 int slapi_dn_isparent( const char *parentdn, const char *childdn );
55 char *slapi_dn_ignore_case( char *dn );
56
57 /* DS 5.x SLAPI */
58 int slapi_access_allowed( Slapi_PBlock *pb, Slapi_Entry *e, char *attr, struct berval *val, int access );
59 int slapi_acl_check_mods( Slapi_PBlock *pb, Slapi_Entry *e, LDAPMod **mods, char **errbuf );
60 Slapi_Attr *slapi_attr_new( void );
61 Slapi_Attr *slapi_attr_init( Slapi_Attr *a, const char *type );
62 void slapi_attr_free( Slapi_Attr **a );
63 Slapi_Attr *slapi_attr_dup( const Slapi_Attr *attr );
64 int slapi_attr_add_value( Slapi_Attr *a, const Slapi_Value *v );
65 int slapi_attr_type2plugin( const char *type, void **pi );
66 int slapi_attr_get_type( const Slapi_Attr *attr, char **type );
67 int slapi_attr_get_oid_copy( const Slapi_Attr *attr, char **oidp );
68 int slapi_attr_get_flags( const Slapi_Attr *attr, unsigned long *flags );
69 int slapi_attr_flag_is_set( const Slapi_Attr *attr, unsigned long flag );
70 int slapi_attr_value_cmp( const Slapi_Attr *attr, const struct berval *v1, const struct berval *v2 );
71 int slapi_attr_value_find( const Slapi_Attr *a, struct berval *v );
72 #define SLAPI_TYPE_CMP_EXACT    0
73 #define SLAPI_TYPE_CMP_BASE     1
74 #define SLAPI_TYPE_CMP_SUBTYPE  2
75 int slapi_attr_type_cmp( const char *t1, const char *t2, int opt );
76 int slapi_attr_types_equivalent( const char *t1, const char *t2 );
77 int slapi_attr_first_value( Slapi_Attr *a, Slapi_Value **v );
78 int slapi_attr_next_value( Slapi_Attr *a, int hint, Slapi_Value **v );
79 int slapi_attr_get_numvalues( const Slapi_Attr *a, int *numValues );
80 int slapi_attr_get_valueset( const Slapi_Attr *a, Slapi_ValueSet **vs );
81 int slapi_attr_get_bervals_copy( Slapi_Attr *a, struct berval ***vals );
82 int slapi_entry_attr_hasvalue( Slapi_Entry *e, const char *type, const char *value );
83 int slapi_entry_attr_merge_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals );
84 void slapi_entry_attr_set_charptr(Slapi_Entry* e, const char *type, const char *value);
85 void slapi_entry_attr_set_int( Slapi_Entry* e, const char *type, int l);
86 void slapi_entry_attr_set_uint( Slapi_Entry* e, const char *type, unsigned int l);
87 void slapi_entry_attr_set_long(Slapi_Entry* e, const char *type, long l);
88 void slapi_entry_attr_set_ulong(Slapi_Entry* e, const char *type, unsigned long l);
89 int slapi_is_rootdse( const char *dn );
90 int slapi_entry_attr_merge_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals );
91 int slapi_entry_add_values_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals );
92 int slapi_entry_add_valueset(Slapi_Entry *e, const char *type, Slapi_ValueSet *vs);
93 int slapi_entry_delete_values_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals );
94 int slapi_entry_merge_values_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals );
95 int slapi_entry_attr_replace_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals );
96 int slapi_entry_add_value(Slapi_Entry *e, const char *type, const Slapi_Value *value);
97 int slapi_entry_add_string(Slapi_Entry *e, const char *type, const char *value);
98 int slapi_entry_delete_string(Slapi_Entry *e, const char *type, const char *value);
99 int slapi_entry_first_attr( const Slapi_Entry *e, Slapi_Attr **attr );
100 int slapi_entry_next_attr( const Slapi_Entry *e, Slapi_Attr *prevattr, Slapi_Attr **attr );
101 char *slapi_attr_syntax_normalize( const char *s );
102
103 Slapi_Value *slapi_value_new( void );
104 Slapi_Value *slapi_value_new_berval(const struct berval *bval);
105 Slapi_Value *slapi_value_new_value(const Slapi_Value *v);
106 Slapi_Value *slapi_value_new_string(const char *s);
107 Slapi_Value *slapi_value_init(Slapi_Value *v);
108 Slapi_Value *slapi_value_init_berval(Slapi_Value *v, struct berval *bval);
109 Slapi_Value *slapi_value_init_string(Slapi_Value *v,const char *s);
110 Slapi_Value *slapi_value_dup(const Slapi_Value *v);
111 void slapi_value_free(Slapi_Value **value);
112 const struct berval *slapi_value_get_berval( const Slapi_Value *value );
113 Slapi_Value *slapi_value_set_berval( Slapi_Value *value, const struct berval *bval );
114 Slapi_Value *slapi_value_set_value( Slapi_Value *value, const Slapi_Value *vfrom);
115 Slapi_Value *slapi_value_set( Slapi_Value *value, void *val, unsigned long len);
116 int slapi_value_set_string(Slapi_Value *value, const char *strVal);
117 int slapi_value_set_int(Slapi_Value *value, int intVal);
118 const char*slapi_value_get_string(const Slapi_Value *value);
119 int slapi_value_get_int(const Slapi_Value *value); 
120 unsigned int slapi_value_get_uint(const Slapi_Value *value); 
121 long slapi_value_get_long(const Slapi_Value *value); 
122 unsigned long slapi_value_get_ulong(const Slapi_Value *value); 
123 size_t slapi_value_get_length(const Slapi_Value *value);
124 int slapi_value_compare(const Slapi_Attr *a,const Slapi_Value *v1,const Slapi_Value *v2);
125
126 Slapi_ValueSet *slapi_valueset_new( void );
127 void slapi_valueset_free(Slapi_ValueSet *vs);
128 void slapi_valueset_init(Slapi_ValueSet *vs);
129 void slapi_valueset_done(Slapi_ValueSet *vs);
130 void slapi_valueset_add_value(Slapi_ValueSet *vs, const Slapi_Value *addval);
131 int slapi_valueset_first_value( Slapi_ValueSet *vs, Slapi_Value **v );
132 int slapi_valueset_next_value( Slapi_ValueSet *vs, int index, Slapi_Value **v);
133 int slapi_valueset_count( const Slapi_ValueSet *vs);
134 void slapi_valueset_set_valueset(Slapi_ValueSet *vs1, const Slapi_ValueSet *vs2);
135
136 typedef struct slapi_mutex      Slapi_Mutex;
137 typedef struct slapi_condvar    Slapi_CondVar;
138 Slapi_Mutex *slapi_new_mutex( void );
139 void slapi_destroy_mutex( Slapi_Mutex *mutex );
140 void slapi_lock_mutex( Slapi_Mutex *mutex );
141 int slapi_unlock_mutex( Slapi_Mutex *mutex );
142 Slapi_CondVar *slapi_new_condvar( Slapi_Mutex *mutex );
143 void slapi_destroy_condvar( Slapi_CondVar *cvar );
144 int slapi_wait_condvar( Slapi_CondVar *cvar, struct timeval *timeout );
145 int slapi_notify_condvar( Slapi_CondVar *cvar, int notify_all );
146
147 char *slapi_ch_malloc( unsigned long size );
148 void slapi_ch_free( void **ptr );
149 void slapi_ch_free_string( char **ptr );
150 char *slapi_ch_calloc( unsigned long nelem, unsigned long size );
151 char *slapi_ch_realloc( char *block, unsigned long size );
152 char *slapi_ch_strdup( char *s );
153 void slapi_ch_array_free( char **arrayp );
154 struct berval *slapi_ch_bvdup(const struct berval *v);
155 struct berval **slapi_ch_bvecdup(const struct berval **v);
156
157 /* LDAP V3 routines */
158 int slapi_control_present( LDAPControl **controls, char *oid,
159         struct berval **val, int *iscritical);
160 void slapi_register_supported_control(char *controloid,
161         unsigned long controlops);
162 #define SLAPI_OPERATION_BIND            0x00000001L
163 #define SLAPI_OPERATION_UNBIND          0x00000002L
164 #define SLAPI_OPERATION_SEARCH          0x00000004L
165 #define SLAPI_OPERATION_MODIFY          0x00000008L
166 #define SLAPI_OPERATION_ADD             0x00000010L
167 #define SLAPI_OPERATION_DELETE          0x00000020L
168 #define SLAPI_OPERATION_MODDN           0x00000040L
169 #define SLAPI_OPERATION_MODRDN          SLAPI_OPERATION_MODDN
170 #define SLAPI_OPERATION_COMPARE         0x00000080L
171 #define SLAPI_OPERATION_ABANDON         0x00000100L
172 #define SLAPI_OPERATION_EXTENDED        0x00000200L
173 #define SLAPI_OPERATION_ANY             0xFFFFFFFFL
174 #define SLAPI_OPERATION_NONE            0x00000000L
175 int slapi_get_supported_controls(char ***ctrloidsp, unsigned long **ctrlopsp);
176 LDAPControl *slapi_dup_control(LDAPControl *ctrl);
177 void slapi_register_supported_saslmechanism(char *mechanism);
178 char **slapi_get_supported_saslmechanisms();
179 char **slapi_get_supported_extended_ops(void);
180
181
182 /* send ldap result back */
183 void slapi_send_ldap_result( Slapi_PBlock *pb, int err, char *matched,
184         char *text, int nentries, struct berval **urls );
185 int slapi_send_ldap_search_entry( Slapi_PBlock *pb, Slapi_Entry *e,
186         LDAPControl **ectrls, char **attrs, int attrsonly );
187 int slapi_send_ldap_search_reference( Slapi_PBlock *pb, Slapi_Entry *e,
188         struct berval **urls, LDAPControl **ectrls, struct berval **v2refs );
189
190 /* filter routines */
191 Slapi_Filter *slapi_str2filter( char *str );
192 Slapi_Filter *slapi_filter_dup( Slapi_Filter *f );
193 void slapi_filter_free( Slapi_Filter *f, int recurse );
194 int slapi_filter_get_choice( Slapi_Filter *f);
195 int slapi_filter_get_ava( Slapi_Filter *f, char **type, struct berval **bval );
196 Slapi_Filter *slapi_filter_list_first( Slapi_Filter *f );
197 Slapi_Filter *slapi_filter_list_next( Slapi_Filter *f, Slapi_Filter *fprev );
198 int slapi_filter_get_attribute_type( Slapi_Filter *f, char **type ); 
199 int slapi_filter_get_subfilt( Slapi_Filter *f, char **type, char **initial,
200         char ***any, char **final );
201 Slapi_Filter *slapi_filter_join( int ftype, Slapi_Filter *f1, Slapi_Filter *f2);
202 int slapi_x_filter_append( int choice, Slapi_Filter **pContainingFilter,
203         Slapi_Filter **pNextFilter, Slapi_Filter *filterToAppend );
204 int slapi_filter_test( Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Filter *f,
205         int verify_access );
206 int slapi_filter_test_simple( Slapi_Entry *e, Slapi_Filter *f );
207 typedef int (*FILTER_APPLY_FN)( Slapi_Filter *f, void *arg );
208 int slapi_filter_apply( Slapi_Filter *f, FILTER_APPLY_FN fn, void *arg, int *error_code );
209 #define SLAPI_FILTER_SCAN_STOP                  -1 /* set by callback */
210 #define SLAPI_FILTER_SCAN_ERROR                 -2 /* set by callback */
211 #define SLAPI_FILTER_SCAN_NOMORE                0 /* set by callback */
212 #define SLAPI_FILTER_SCAN_CONTINUE              1 /* set by callback */
213 #define SLAPI_FILTER_UNKNOWN_FILTER_TYPE        2 /* set by slapi_filter_apply() */
214
215 /* internal add/delete/search/modify routines */
216 Slapi_PBlock *slapi_search_internal( char *base, int scope, char *filter, 
217         LDAPControl **controls, char **attrs, int attrsonly );
218 Slapi_PBlock *slapi_modify_internal( char *dn, LDAPMod **mods,
219         LDAPControl **controls, int log_change );
220 Slapi_PBlock *slapi_add_internal( char * dn, LDAPMod **attrs,
221         LDAPControl **controls, int log_changes );
222 Slapi_PBlock *slapi_add_entry_internal( Slapi_Entry * e,
223         LDAPControl **controls, int log_change );
224 Slapi_PBlock *slapi_delete_internal( char * dn,  LDAPControl **controls,
225         int log_change );
226 Slapi_PBlock *slapi_modrdn_internal( char * olddn, char * newrdn,
227         int deloldrdn, LDAPControl **controls,
228         int log_change );
229 #if 0
230 Slapi_PBlock *slapi_modrdn_internal( char * olddn, char * newrdn,
231         char *newParent, int deloldrdn, LDAPControl **controls,
232         int log_change );
233 #endif
234 void slapi_free_search_results_internal(Slapi_PBlock *pb);
235
236 /* connection related routines */
237 int slapi_is_connection_ssl(Slapi_PBlock *pPB, int *isSSL);
238 int slapi_get_client_port(Slapi_PBlock *pPB, int *fromPort);
239
240 /* computed attributes */
241 typedef struct _computed_attr_context computed_attr_context;
242 typedef int (*slapi_compute_output_t)(computed_attr_context *c, Slapi_Attr *a, Slapi_Entry *e);
243 typedef int (*slapi_compute_callback_t)(computed_attr_context *c, char *type, Slapi_Entry *e, slapi_compute_output_t outputfn);
244 typedef int (*slapi_search_rewrite_callback_t)(Slapi_PBlock *pb);
245 int slapi_compute_add_evaluator(slapi_compute_callback_t function);
246 int slapi_compute_add_search_rewriter(slapi_search_rewrite_callback_t function);
247 int compute_rewrite_search_filter(Slapi_PBlock *pb);
248 int compute_evaluator(computed_attr_context *c, char *type, Slapi_Entry *e, slapi_compute_output_t outputfn);
249 int slapi_x_compute_get_pblock(computed_attr_context *c, Slapi_PBlock **pb);
250
251 /* ACL plugins; only SLAPI_PLUGIN_ACL_ALLOW_ACCESS supported now */
252 typedef int (*slapi_acl_callback_t)(Slapi_PBlock *pb,
253         Slapi_Entry *e,
254         const char *attr,
255         struct berval *berval,
256         int access,
257         void *state);
258
259 /* object extensions */
260 typedef void *(*slapi_extension_constructor_fnptr)(void *object, void *parent);
261
262 typedef void (*slapi_extension_destructor_fnptr)(void *extension,
263         void *object, void *parent);
264
265 int slapi_register_object_extension( const char *pluginname,
266         const char *objectname, slapi_extension_constructor_fnptr constructor,
267         slapi_extension_destructor_fnptr destructor, int *objecttype,
268         int *extensionhandle);
269
270 #define SLAPI_EXT_CONNECTION    "Connection"
271 #define SLAPI_EXT_OPERATION     "Operation"
272 #define SLAPI_EXT_ENTRY         "Entry"
273 #define SLAPI_EXT_MTNODE        "Mapping Tree Node"
274
275 void *slapi_get_object_extension(int objecttype, void *object,
276         int extensionhandle);
277 void slapi_set_object_extension(int objecttype, void *object,
278         int extensionhandle, void *extension);
279
280 /* parameters currently supported */
281
282 /*
283  * Attribute flags returned by slapi_attr_get_flags()
284  */
285 #define SLAPI_ATTR_FLAG_SINGLE          0x0001
286 #define SLAPI_ATTR_FLAG_OPATTR          0x0002
287 #define SLAPI_ATTR_FLAG_READONLY        0x0004
288 #define SLAPI_ATTR_FLAG_STD_ATTR        SLAPI_ATTR_FLAG_READONLY
289 #define SLAPI_ATTR_FLAG_OBSOLETE        0x0040
290 #define SLAPI_ATTR_FLAG_COLLECTIVE      0x0080
291 #define SLAPI_ATTR_FLAG_NOUSERMOD       0x0100
292
293 /*
294  * ACL levels
295  */
296 #define SLAPI_ACL_COMPARE       0x01
297 #define SLAPI_ACL_SEARCH        0x02
298 #define SLAPI_ACL_READ          0x04
299 #define SLAPI_ACL_WRITE         0x08
300 #define SLAPI_ACL_DELETE        0x10    
301 #define SLAPI_ACL_ADD           0x20
302 #define SLAPI_ACL_SELF          0x40
303 #define SLAPI_ACL_PROXY         0x80
304 #define SLAPI_ACL_ALL           0x7f
305
306 /* plugin types supported */
307
308 #define SLAPI_PLUGIN_DATABASE           1
309 #define SLAPI_PLUGIN_EXTENDEDOP         2
310 #define SLAPI_PLUGIN_PREOPERATION       3
311 #define SLAPI_PLUGIN_POSTOPERATION      4
312 #define SLAPI_PLUGIN_MATCHINGRULE       5
313 #define SLAPI_PLUGIN_SYNTAX             6
314 #define SLAPI_PLUGIN_AUDIT              7   
315
316 /* misc params */
317
318 #define SLAPI_BACKEND                           130
319 #define SLAPI_CONNECTION                        131
320 #define SLAPI_OPERATION                         132
321 #define SLAPI_REQUESTOR_ISROOT                  133
322 #define SLAPI_BE_MONITORDN                      134
323 #define SLAPI_BE_TYPE                           135
324 #define SLAPI_BE_READONLY                       136
325 #define SLAPI_BE_LASTMOD                        137
326 #define SLAPI_CONN_ID                           139
327
328 /* operation params */
329 #define SLAPI_OPINITIATED_TIME                  140
330 #define SLAPI_REQUESTOR_DN                      141
331 #define SLAPI_REQUESTOR_ISUPDATEDN              142
332
333 /* connection  structure params*/
334 #define SLAPI_CONN_DN                           143
335 #define SLAPI_CONN_AUTHTYPE                     144
336 #define SLAPI_CONN_CLIENTIP                     145
337 #define SLAPI_CONN_SERVERIP                     146
338 /* OpenLDAP extensions */
339 #define SLAPI_X_CONN_CLIENTPATH                 1300
340 #define SLAPI_X_CONN_SERVERPATH                 1301
341 #define SLAPI_X_CONN_IS_UDP                     1302
342 #define SLAPI_X_CONN_SSF                        1303
343 #define SLAPI_X_CONN_SASL_CONTEXT               1304
344
345 /*  Authentication types */
346 #define SLAPD_AUTH_NONE   "none"
347 #define SLAPD_AUTH_SIMPLE "simple"
348 #define SLAPD_AUTH_SSL    "SSL"
349 #define SLAPD_AUTH_SASL   "SASL " 
350
351 /* plugin configuration parmams */
352 #define SLAPI_PLUGIN                            3
353 #define SLAPI_PLUGIN_PRIVATE                    4
354 #define SLAPI_PLUGIN_TYPE                       5
355 #define SLAPI_PLUGIN_ARGV                       6
356 #define SLAPI_PLUGIN_ARGC                       7
357 #define SLAPI_PLUGIN_VERSION                    8
358 #define SLAPI_PLUGIN_OPRETURN                   9
359 #define SLAPI_PLUGIN_OBJECT                     10
360 #define SLAPI_PLUGIN_DESTROY_FN                 11
361 #define SLAPI_PLUGIN_DESCRIPTION                12
362
363 /* internal opreations params */
364 #define SLAPI_PLUGIN_INTOP_RESULT               15
365 #define SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES       16
366 #define SLAPI_PLUGIN_INTOP_SEARCH_REFERRALS     17
367
368 /* function pointer params for backends */
369 #define SLAPI_PLUGIN_DB_BIND_FN                 200
370 #define SLAPI_PLUGIN_DB_UNBIND_FN               201
371 #define SLAPI_PLUGIN_DB_SEARCH_FN               202
372 #define SLAPI_PLUGIN_DB_COMPARE_FN              203
373 #define SLAPI_PLUGIN_DB_MODIFY_FN               204
374 #define SLAPI_PLUGIN_DB_MODRDN_FN               205
375 #define SLAPI_PLUGIN_DB_ADD_FN                  206
376 #define SLAPI_PLUGIN_DB_DELETE_FN               207
377 #define SLAPI_PLUGIN_DB_ABANDON_FN              208
378 #define SLAPI_PLUGIN_DB_CONFIG_FN               209
379 #define SLAPI_PLUGIN_CLOSE_FN                   210
380 #define SLAPI_PLUGIN_DB_FLUSH_FN                211
381 #define SLAPI_PLUGIN_START_FN                   212
382 #define SLAPI_PLUGIN_DB_SEQ_FN                  213
383 #define SLAPI_PLUGIN_DB_ENTRY_FN                214
384 #define SLAPI_PLUGIN_DB_REFERRAL_FN             215
385 #define SLAPI_PLUGIN_DB_RESULT_FN               216
386 #define SLAPI_PLUGIN_DB_LDIF2DB_FN              217
387 #define SLAPI_PLUGIN_DB_DB2LDIF_FN              218
388 #define SLAPI_PLUGIN_DB_BEGIN_FN                219
389 #define SLAPI_PLUGIN_DB_COMMIT_FN               220
390 #define SLAPI_PLUGIN_DB_ABORT_FN                221
391 #define SLAPI_PLUGIN_DB_ARCHIVE2DB_FN           222
392 #define SLAPI_PLUGIN_DB_DB2ARCHIVE_FN           223
393 #define SLAPI_PLUGIN_DB_NEXT_SEARCH_ENTRY_FN    224
394 #define SLAPI_PLUGIN_DB_FREE_RESULT_SET_FN      225
395 #define SLAPI_PLUGIN_DB_SIZE_FN                 226
396 #define SLAPI_PLUGIN_DB_TEST_FN                 227
397
398
399 /*  functions pointers for LDAP V3 extended ops */
400 #define SLAPI_PLUGIN_EXT_OP_FN                  300
401 #define SLAPI_PLUGIN_EXT_OP_OIDLIST             301
402
403 /* functions for preoperation functions */
404 #define SLAPI_PLUGIN_PRE_BIND_FN                401
405 #define SLAPI_PLUGIN_PRE_UNBIND_FN              402
406 #define SLAPI_PLUGIN_PRE_SEARCH_FN              403
407 #define SLAPI_PLUGIN_PRE_COMPARE_FN             404
408 #define SLAPI_PLUGIN_PRE_MODIFY_FN              405
409 #define SLAPI_PLUGIN_PRE_MODRDN_FN              406
410 #define SLAPI_PLUGIN_PRE_ADD_FN                 407
411 #define SLAPI_PLUGIN_PRE_DELETE_FN              408
412 #define SLAPI_PLUGIN_PRE_ABANDON_FN             409
413 #define SLAPI_PLUGIN_PRE_ENTRY_FN               410
414 #define SLAPI_PLUGIN_PRE_REFERRAL_FN            411
415 #define SLAPI_PLUGIN_PRE_RESULT_FN              412
416
417 /*  functions for postoperation functions*/
418 #define SLAPI_PLUGIN_POST_BIND_FN               501
419 #define SLAPI_PLUGIN_POST_UNBIND_FN             502
420 #define SLAPI_PLUGIN_POST_SEARCH_FN             503
421 #define SLAPI_PLUGIN_POST_COMPARE_FN            504
422 #define SLAPI_PLUGIN_POST_MODIFY_FN             505
423 #define SLAPI_PLUGIN_POST_MODRDN_FN             506
424 #define SLAPI_PLUGIN_POST_ADD_FN                507
425 #define SLAPI_PLUGIN_POST_DELETE_FN             508
426 #define SLAPI_PLUGIN_POST_ABANDON_FN            509
427 #define SLAPI_PLUGIN_POST_ENTRY_FN              510
428 #define SLAPI_PLUGIN_POST_REFERRAL_FN           511
429 #define SLAPI_PLUGIN_POST_RESULT_FN             512
430
431 #define SLAPI_OPERATION_TYPE                    590
432
433 #define SLAPI_PLUGIN_MR_FILTER_CREATE_FN        600
434 #define SLAPI_PLUGIN_MR_INDEXER_CREATE_FN       601
435 #define SLAPI_PLUGIN_MR_FILTER_MATCH_FN         602
436 #define SLAPI_PLUGIN_MR_FILTER_INDEX_FN         603
437 #define SLAPI_PLUGIN_MR_FILTER_RESET_FN         604
438 #define SLAPI_PLUGIN_MR_INDEX_FN                605
439 #define SLAPI_PLUGIN_MR_OID                     610
440 #define SLAPI_PLUGIN_MR_TYPE                    611
441 #define SLAPI_PLUGIN_MR_VALUE                   612
442 #define SLAPI_PLUGIN_MR_VALUES                  613
443 #define SLAPI_PLUGIN_MR_KEYS                    614
444 #define SLAPI_PLUGIN_MR_FILTER_REUSABLE         615
445 #define SLAPI_PLUGIN_MR_QUERY_OPERATOR          616
446 #define SLAPI_PLUGIN_MR_USAGE                   617
447
448 #define SLAPI_MATCHINGRULE_NAME                 1
449 #define SLAPI_MATCHINGRULE_OID                  2
450 #define SLAPI_MATCHINGRULE_DESC                 3
451 #define SLAPI_MATCHINGRULE_SYNTAX               4
452 #define SLAPI_MATCHINGRULE_OBSOLETE             5
453
454 #define SLAPI_OP_LESS                                   1
455 #define SLAPI_OP_LESS_OR_EQUAL                          2
456 #define SLAPI_OP_EQUAL                                  3
457 #define SLAPI_OP_GREATER_OR_EQUAL                       4
458 #define SLAPI_OP_GREATER                                5
459 #define SLAPI_OP_SUBSTRING                              6
460
461 #define SLAPI_PLUGIN_MR_USAGE_INDEX             0
462 #define SLAPI_PLUGIN_MR_USAGE_SORT              1
463
464 #define SLAPI_PLUGIN_SYNTAX_FILTER_AVA          700
465 #define SLAPI_PLUGIN_SYNTAX_FILTER_SUB          701
466 #define SLAPI_PLUGIN_SYNTAX_VALUES2KEYS         702
467 #define SLAPI_PLUGIN_SYNTAX_ASSERTION2KEYS_AVA  703
468 #define SLAPI_PLUGIN_SYNTAX_ASSERTION2KEYS_SUB  704
469 #define SLAPI_PLUGIN_SYNTAX_NAMES               705
470 #define SLAPI_PLUGIN_SYNTAX_OID                 706
471 #define SLAPI_PLUGIN_SYNTAX_FLAGS               707
472 #define SLAPI_PLUGIN_SYNTAX_COMPARE             708
473
474 #define SLAPI_PLUGIN_SYNTAX_FLAG_ORKEYS                 1
475 #define SLAPI_PLUGIN_SYNTAX_FLAG_ORDERING               2
476
477 #define SLAPI_PLUGIN_ACL_INIT                   730
478 #define SLAPI_PLUGIN_ACL_SYNTAX_CHECK           731
479 #define SLAPI_PLUGIN_ACL_ALLOW_ACCESS           732
480 #define SLAPI_PLUGIN_ACL_MODS_ALLOWED           733
481 #define SLAPI_PLUGIN_ACL_MODS_UPDATE            734
482
483 #define SLAPI_OPERATION_AUTHTYPE                741
484 #define SLAPI_OPERATION_ID                      742
485 #define SLAPI_CONN_CERT                         743
486 #define SLAPI_CONN_AUTHMETHOD                   746
487
488 #define SLAPI_RESULT_CODE                       881
489 #define SLAPI_RESULT_TEXT                       882
490 #define SLAPI_RESULT_MATCHED                    883
491
492 /* audit plugin defines */
493 #define SLAPI_PLUGIN_AUDIT_DATA                1100
494 #define SLAPI_PLUGIN_AUDIT_FN                  1101
495
496 /* managedsait control */
497 #define SLAPI_MANAGEDSAIT                       1000
498
499 /* config stuff */
500 #define SLAPI_CONFIG_FILENAME                   40
501 #define SLAPI_CONFIG_LINENO                     41
502 #define SLAPI_CONFIG_ARGC                       42
503 #define SLAPI_CONFIG_ARGV                       43
504
505 /*  operational params */
506 #define SLAPI_TARGET_DN                         50
507 #define SLAPI_REQCONTROLS                       51
508
509 /* server LDAPv3 controls  */
510 #define SLAPI_RESCONTROLS                       55
511 #define SLAPI_ADD_RESCONTROL                    56      
512
513 /* add params */
514 #define SLAPI_ADD_TARGET                        SLAPI_TARGET_DN
515 #define SLAPI_ADD_ENTRY                         60
516
517 /* bind params */
518 #define SLAPI_BIND_TARGET                       SLAPI_TARGET_DN
519 #define SLAPI_BIND_METHOD                       70
520 #define SLAPI_BIND_CREDENTIALS                  71      
521 #define SLAPI_BIND_SASLMECHANISM                72      
522 #define SLAPI_BIND_RET_SASLCREDS                73      
523
524 /* compare params */
525 #define SLAPI_COMPARE_TARGET                    SLAPI_TARGET_DN
526 #define SLAPI_COMPARE_TYPE                      80
527 #define SLAPI_COMPARE_VALUE                     81
528
529 /* delete params */
530 #define SLAPI_DELETE_TARGET                     SLAPI_TARGET_DN
531
532 /* modify params */
533 #define SLAPI_MODIFY_TARGET                     SLAPI_TARGET_DN
534 #define SLAPI_MODIFY_MODS                       90
535
536 /* modrdn params */
537 #define SLAPI_MODRDN_TARGET                     SLAPI_TARGET_DN
538 #define SLAPI_MODRDN_NEWRDN                     100
539 #define SLAPI_MODRDN_DELOLDRDN                  101
540 #define SLAPI_MODRDN_NEWSUPERIOR                102     /* v3 only */
541
542 /* search params */
543 #define SLAPI_SEARCH_TARGET                     SLAPI_TARGET_DN
544 #define SLAPI_SEARCH_SCOPE                      110
545 #define SLAPI_SEARCH_DEREF                      111
546 #define SLAPI_SEARCH_SIZELIMIT                  112
547 #define SLAPI_SEARCH_TIMELIMIT                  113
548 #define SLAPI_SEARCH_FILTER                     114
549 #define SLAPI_SEARCH_STRFILTER                  115
550 #define SLAPI_SEARCH_ATTRS                      116
551 #define SLAPI_SEARCH_ATTRSONLY                  117
552
553 /* abandon params */
554 #define SLAPI_ABANDON_MSGID                     120
555
556 /* extended operation params */
557 #define SLAPI_EXT_OP_REQ_OID                    160
558 #define SLAPI_EXT_OP_REQ_VALUE          161     
559
560 /* extended operation return codes */
561 #define SLAPI_EXT_OP_RET_OID                    162     
562 #define SLAPI_EXT_OP_RET_VALUE          163     
563
564 #define SLAPI_PLUGIN_EXTENDED_SENT_RESULT       -1
565
566 #define SLAPI_BIND_SUCCESS              0
567 #define SLAPI_BIND_FAIL                 2
568 #define SLAPI_BIND_ANONYMOUS            3
569
570 /* Search result params */
571 #define SLAPI_SEARCH_RESULT_SET                 193
572 #define SLAPI_SEARCH_RESULT_ENTRY               194
573 #define SLAPI_NENTRIES                          195
574 #define SLAPI_SEARCH_REFERRALS                  196
575
576 /* filter types */
577 #ifndef LDAP_FILTER_AND
578 #define LDAP_FILTER_AND         0xa0L
579 #endif
580 #ifndef LDAP_FILTER_OR
581 #define LDAP_FILTER_OR          0xa1L
582 #endif
583 #ifndef LDAP_FILTER_NOT
584 #define LDAP_FILTER_NOT         0xa2L
585 #endif
586 #ifndef LDAP_FILTER_EQUALITY
587 #define LDAP_FILTER_EQUALITY    0xa3L
588 #endif
589 #ifndef LDAP_FILTER_SUBSTRINGS
590 #define LDAP_FILTER_SUBSTRINGS  0xa4L
591 #endif
592 #ifndef LDAP_FILTER_GE
593 #define LDAP_FILTER_GE          0xa5L
594 #endif
595 #ifndef LDAP_FILTER_LE
596 #define LDAP_FILTER_LE          0xa6L
597 #endif
598 #ifndef LDAP_FILTER_PRESENT
599 #define LDAP_FILTER_PRESENT     0x87L
600 #endif
601 #ifndef LDAP_FILTER_APPROX
602 #define LDAP_FILTER_APPROX      0xa8L
603 #endif
604 #ifndef LDAP_FILTER_EXT_MATCH
605 #define LDAP_FILTER_EXT_MATCH   0xa9L
606 #endif
607
608 int slapi_log_error( int severity, char *subsystem, char *fmt, ... );
609 #define SLAPI_LOG_FATAL                 0
610 #define SLAPI_LOG_TRACE                 1
611 #define SLAPI_LOG_PACKETS               2
612 #define SLAPI_LOG_ARGS                  3
613 #define SLAPI_LOG_CONNS                 4
614 #define SLAPI_LOG_BER                   5
615 #define SLAPI_LOG_FILTER                6
616 #define SLAPI_LOG_CONFIG                7
617 #define SLAPI_LOG_ACL                   8
618 #define SLAPI_LOG_SHELL                 9
619 #define SLAPI_LOG_PARSE                 10
620 #define SLAPI_LOG_HOUSE                 11
621 #define SLAPI_LOG_REPL                  12
622 #define SLAPI_LOG_CACHE                 13
623 #define SLAPI_LOG_PLUGIN                14
624 #define SLAPI_LOG_TIMING                15
625
626 #define SLAPI_PLUGIN_DESCRIPTION        12
627 typedef struct slapi_plugindesc {
628         char    *spd_id;
629         char    *spd_vendor;
630         char    *spd_version;
631         char    *spd_description;
632 } Slapi_PluginDesc;
633
634 #define SLAPI_PLUGIN_VERSION_01         "01"
635 #define SLAPI_PLUGIN_VERSION_02         "02"
636 #define SLAPI_PLUGIN_VERSION_03         "03"
637 #define SLAPI_PLUGIN_CURRENT_VERSION    SLAPI_PLUGIN_VERSION_03
638
639 #endif /* _SLAPI_PLUGIN_H */
640