]> git.sur5r.net Git - openldap/blob - include/ldap.h
Added lber_get/set_option. Removed lber_debug/ldap_debug.
[openldap] / include / ldap.h
1 /*
2  * Copyright (c) 1990 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 #ifndef _LDAP_H
14 #define _LDAP_H
15
16 #include <ldap_cdefs.h>
17
18 LDAP_BEGIN_DECL
19
20 #define LDAP_VERSION1   1
21 #define LDAP_VERSION2   2
22 #define LDAP_VERSION3   3
23
24 #define LDAP_VERSION            LDAP_VERSION2
25 #define LDAP_VERSION_MIN        LDAP_VERSION2
26 #define LDAP_VERSION_MAX        LDAP_VERSION2
27
28 /*
29  * We'll use 2000+draft revision for our API version number
30  * As such, the number will be above the old RFC but below 
31  * whatever number does finally get assigned
32  */
33 #define LDAP_API_VERSION        2001
34 #define LDAP_VENDOR_NAME        "OpenLDAP"
35 /* We'll eventually release as 200 */
36 #define LDAP_VENDOR_VERSION     190
37
38 /* include LDAP_API_FEATURE defines */
39 #include <ldap_features.h>
40
41 #if defined( LDAP_API_FEATURE_X_OPENLDAP_REENTRANT ) || \
42         ( defined( LDAP_THREAD_SAFE ) && \
43                 defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE ) )
44         /* -lldap may or may not be thread safe */
45         /* -lldap_r, if available, is always thread safe */
46 #       define  LDAP_API_FEATURE_THREAD_SAFE 1
47 #endif
48 #if defined( LDAP_THREAD_SAFE ) && \
49         defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE )
50 /* #define LDAP_API_FEATURE_SESSION_SAFE        1       */
51 /* #define LDAP_API_OPERATION_SESSION_SAFE      1       */
52 #endif
53
54 #define LDAP_PORT               389
55
56 #define LDAP_ROOT_DSE                           ""
57 #define LDAP_NO_ATTRS                           "1.1"
58 #define LDAP_ALL_USER_ATTRIBUTES        "*"
59
60 #define LDAP_COMPAT20
61 #define LDAP_COMPAT30
62 #if defined(LDAP_COMPAT20) || defined(LDAP_COMPAT30)
63 #define LDAP_COMPAT
64 #endif
65
66 /* LDAP_OPTions defined by draft-ldapext-ldap-c-api-01 */
67 #define LDAP_OPT_API_INFO                       0x0000
68 #define LDAP_OPT_DESC                           0x0001
69 #define LDAP_OPT_DEREF                          0x0002
70 #define LDAP_OPT_SIZELIMIT                      0x0003
71 #define LDAP_OPT_TIMELIMIT                      0x0004
72 /* 0x05 - 0x07 not defined by current draft */
73 #define LDAP_OPT_REFERRALS                      0x0008
74 #define LDAP_OPT_RESTART                        0x0009
75 /* 0x0a - 0x10 not defined by current draft */
76 #define LDAP_OPT_PROTOCOL_VERSION       0x0011
77 #define LDAP_OPT_SERVER_CONTROLS        0x0012
78 #define LDAP_OPT_CLIENT_CONTROLS        0x0013
79 /* 0x14 - 0x2f not defined by current draft */
80 #define LDAP_OPT_HOST_NAME                      0x0030
81 #define LDAP_OPT_ERROR_NUMBER           0x0031
82 #define LDAP_OPT_ERROR_STRING           0x0032
83
84 /* not defined by current draft */
85 /*      for LDAPv2 compatibility */
86 #define LDAP_OPT_DNS                            0x1001  /* use DN & DNS */
87
88 /* OpenLDAP specific options */
89 #define LDAP_OPT_DEBUG_LEVEL            0x4001  /* OpenLDAP - debug level */
90
91 /* on/off values */
92 #define LDAP_OPT_ON             ((void *) 1)
93 #define LDAP_OPT_OFF    ((void *) 0)
94
95 #define LDAP_OPT_SUCCESS        0
96 #define LDAP_OPT_ERROR          (-1)
97
98 #define LDAP_API_INFO_VERSION   1
99 typedef struct ldapapiinfo {
100         int             ldapai_info_version;            /* version of LDAPAPIInfo (1) */
101         int             ldapai_api_version;                     /* revision of API supported */
102         int             ldapai_protocol_version;        /* highest LDAP version supported */
103         char    **ldapai_extensions;            /* names of API extensions */
104         char    *ldapai_vendor_name;            /* name of supplier */
105         int             ldapai_vendor_version;          /* supplier-specific version * 100 */
106 } LDAPAPIInfo;
107
108 typedef struct ldapcontrol {
109         char                    *ldctl_oid;
110         struct berval   ldctl_value;
111         char                    ldctl_iscritical;
112 } LDAPControl, *PLDAPControl;
113
114 #define LDAP_MAX_ATTR_LEN       100
115
116 /* 
117  * specific LDAP instantiations of BER types we know about
118  */
119
120 /* general stuff */
121 #define LDAP_TAG_MESSAGE        0x30L   /* tag is 16 + constructed bit */
122 #define OLD_LDAP_TAG_MESSAGE    0x10L   /* forgot the constructed bit  */
123 #define LDAP_TAG_MSGID          0x02L
124 /* need to add other LDAP_TAGs here */
125
126 /* possible operations a client can invoke */
127 #define LDAP_REQ_BIND                   0x60L   /* application + constructed */
128 #define LDAP_REQ_UNBIND                 0x42L   /* application + primitive   */
129 #define LDAP_REQ_SEARCH                 0x63L   /* application + constructed */
130 #define LDAP_REQ_MODIFY                 0x66L   /* application + constructed */
131 #define LDAP_REQ_ADD                    0x68L   /* application + constructed */
132 #define LDAP_REQ_DELETE                 0x4aL   /* application + primitive   */
133 #define LDAP_REQ_MODRDN                 0x6cL   /* application + constructed */
134 #define LDAP_REQ_MODDN                  LDAP_REQ_MODRDN 
135 #define LDAP_REQ_RENAME                 LDAP_REQ_MODRDN 
136 #define LDAP_REQ_COMPARE                0x6eL   /* application + constructed */
137 #define LDAP_REQ_ABANDON                0x50L   /* application + primitive   */
138 #define LDAP_REQ_EXTENDED               0x77L   /* application + constructed */
139
140 /* U-Mich version 3.0 compatibility stuff */
141 #define LDAP_REQ_UNBIND_30              0x62L
142 #define LDAP_REQ_DELETE_30              0x6aL
143 #define LDAP_REQ_ABANDON_30             0x70L
144
145 /* 
146  * old broken stuff for backwards compatibility - forgot application tag
147  * and constructed/primitive bit
148  */
149 #define OLD_LDAP_REQ_BIND               0x00L
150 #define OLD_LDAP_REQ_UNBIND             0x02L
151 #define OLD_LDAP_REQ_SEARCH             0x03L
152 #define OLD_LDAP_REQ_MODIFY             0x06L
153 #define OLD_LDAP_REQ_ADD                0x08L
154 #define OLD_LDAP_REQ_DELETE             0x0aL
155 #define OLD_LDAP_REQ_MODRDN             0x0cL
156 #define OLD_LDAP_REQ_COMPARE            0x0eL
157 #define OLD_LDAP_REQ_ABANDON            0x10L
158
159 /* possible result types a server can return */
160 #define LDAP_RES_BIND                   0x61L   /* application + constructed */
161 #define LDAP_RES_SEARCH_ENTRY           0x64L   /* application + constructed */
162 #define LDAP_RES_SEARCH_REFERENCE       0x73L   /* V3: application + constructed */
163 #define LDAP_RES_SEARCH_RESULT          0x65L   /* application + constructed */
164 #define LDAP_RES_MODIFY                 0x67L   /* application + constructed */
165 #define LDAP_RES_ADD                    0x69L   /* application + constructed */
166 #define LDAP_RES_DELETE                 0x6bL   /* application + constructed */
167 #define LDAP_RES_MODRDN                 0x6dL   /* application + constructed */
168 #define LDAP_RES_MODDN                  LDAP_RES_MODRDN /* application + constructed */
169 #define LDAP_RES_RENAME                 LDAP_RES_MODRDN /* application + constructed */
170 #define LDAP_RES_COMPARE                0x6fL   /* application + constructed */
171 #define LDAP_RES_EXTENDED               0x78L   /* V3: application + constructed */
172 #define LDAP_RES_ANY                    (-1L)
173
174 /* old broken stuff for backwards compatibility */
175 #define OLD_LDAP_RES_BIND               0x01L
176 #define OLD_LDAP_RES_SEARCH_ENTRY       0x04L
177 #define OLD_LDAP_RES_SEARCH_RESULT      0x05L
178 #define OLD_LDAP_RES_MODIFY             0x07L
179 #define OLD_LDAP_RES_ADD                0x09L
180 #define OLD_LDAP_RES_DELETE             0x0bL
181 #define OLD_LDAP_RES_MODRDN             0x0dL
182 #define OLD_LDAP_RES_MODDN              OLD_LDAP_RES_MODRDN
183 #define OLD_LDAP_RES_COMPARE            0x0fL
184
185 /* authentication methods available */
186 #define LDAP_AUTH_NONE          0x00L   /* no authentication              */
187 #define LDAP_AUTH_SIMPLE        0x80L   /* context specific + primitive   */
188 #define LDAP_AUTH_SASL          0xa3L   /* context specific + primitive   */
189 #define LDAP_AUTH_KRBV4         0xffL   /* means do both of the following */
190 #define LDAP_AUTH_KRBV41        0x81L   /* context specific + primitive   */
191 #define LDAP_AUTH_KRBV42        0x82L   /* context specific + primitive   */
192
193 /* U-Mich version 3.0 compatibility auth methods */
194 #define LDAP_AUTH_SIMPLE_30     0xa0L   /* context specific + constructed */
195 #define LDAP_AUTH_KRBV41_30     0xa1L   /* context specific + constructed */
196 #define LDAP_AUTH_KRBV42_30     0xa2L   /* context specific + constructed */
197
198 /* old broken stuff */
199 #define OLD_LDAP_AUTH_SIMPLE    0x00L
200 #define OLD_LDAP_AUTH_KRBV4     0x01L
201 #define OLD_LDAP_AUTH_KRBV42    0x02L
202
203 /* filter types */
204 #define LDAP_FILTER_AND         0xa0L   /* context specific + constructed */
205 #define LDAP_FILTER_OR          0xa1L   /* context specific + constructed */
206 #define LDAP_FILTER_NOT         0xa2L   /* context specific + constructed */
207 #define LDAP_FILTER_EQUALITY    0xa3L   /* context specific + constructed */
208 #define LDAP_FILTER_SUBSTRINGS  0xa4L   /* context specific + constructed */
209 #define LDAP_FILTER_GE          0xa5L   /* context specific + constructed */
210 #define LDAP_FILTER_LE          0xa6L   /* context specific + constructed */
211 #define LDAP_FILTER_PRESENT     0x87L   /* context specific + primitive   */
212 #define LDAP_FILTER_APPROX      0xa8L   /* context specific + constructed */
213 #define LDAP_FILTER_EXTENDED    0xa9L   /* context specific + constructed */
214
215 /* U-Mich version 3.0 compatibility filter types */
216 #define LDAP_FILTER_PRESENT_30  0xa7L   /* context specific + constructed */
217
218 /* old broken stuff */
219 #define OLD_LDAP_FILTER_AND             0x00L
220 #define OLD_LDAP_FILTER_OR              0x01L
221 #define OLD_LDAP_FILTER_NOT             0x02L
222 #define OLD_LDAP_FILTER_EQUALITY        0x03L
223 #define OLD_LDAP_FILTER_SUBSTRINGS      0x04L
224 #define OLD_LDAP_FILTER_GE              0x05L
225 #define OLD_LDAP_FILTER_LE              0x06L
226 #define OLD_LDAP_FILTER_PRESENT         0x07L
227 #define OLD_LDAP_FILTER_APPROX          0x08L
228
229 /* extended filter component types */
230 #define LDAP_FILTER_EXTENDED_OID        0x81L   /* context specific */
231 #define LDAP_FILTER_EXTENDED_TYPE       0x82L   /* context specific */
232 #define LDAP_FILTER_EXTENDED_VALUE      0x83L   /* context specific */
233 #define LDAP_FILTER_EXTENDED_DNATTRS    0x84L   /* context specific */
234
235 /* substring filter component types */
236 #define LDAP_SUBSTRING_INITIAL  0x80L   /* context specific */
237 #define LDAP_SUBSTRING_ANY      0x81L   /* context specific */
238 #define LDAP_SUBSTRING_FINAL    0x82L   /* context specific */
239
240 /* U-Mich version 3.0 compatibility substring filter component types */
241 #define LDAP_SUBSTRING_INITIAL_30       0xa0L   /* context specific */
242 #define LDAP_SUBSTRING_ANY_30           0xa1L   /* context specific */
243 #define LDAP_SUBSTRING_FINAL_30         0xa2L   /* context specific */
244
245 /* old broken stuff */
246 #define OLD_LDAP_SUBSTRING_INITIAL      0x00L
247 #define OLD_LDAP_SUBSTRING_ANY          0x01L
248 #define OLD_LDAP_SUBSTRING_FINAL        0x02L
249
250 /* search scopes */
251 #define LDAP_SCOPE_BASE         0x00
252 #define LDAP_SCOPE_ONELEVEL     0x01
253 #define LDAP_SCOPE_SUBTREE      0x02
254
255 /* for modifications */
256 typedef struct ldapmod {
257         int             mod_op;
258 #define LDAP_MOD_ADD            0x00
259 #define LDAP_MOD_DELETE         0x01
260 #define LDAP_MOD_REPLACE        0x02
261 #define LDAP_MOD_BVALUES        0x80
262         char            *mod_type;
263         union {
264                 char            **modv_strvals;
265                 struct berval   **modv_bvals;
266         } mod_vals;
267 #define mod_values      mod_vals.modv_strvals
268 #define mod_bvalues     mod_vals.modv_bvals
269 } LDAPMod;
270
271 /* 
272  * possible error codes we can return
273  */
274
275 #define LDAP_SUCCESS                    0x00
276 #define LDAP_OPERATIONS_ERROR           0x01
277 #define LDAP_PROTOCOL_ERROR             0x02
278 #define LDAP_TIMELIMIT_EXCEEDED         0x03
279 #define LDAP_SIZELIMIT_EXCEEDED         0x04
280 #define LDAP_COMPARE_FALSE              0x05
281 #define LDAP_COMPARE_TRUE               0x06
282 #define LDAP_STRONG_AUTH_NOT_SUPPORTED  0x07
283 #define LDAP_AUTH_METHOD_NOT_SUPPORTED LDAP_STRONG_AUTH_NOT_SUPPORTED
284 #define LDAP_STRONG_AUTH_REQUIRED       0x08
285 #define LDAP_PARTIAL_RESULTS            0x09    /* not listed in v3 */
286
287 #define LDAP_REFERRAL                           0x0a /* LDAPv3 */
288 #define LDAP_ADMINLIMIT_EXCEEDED        0x0b /* LDAPv3 */
289 #define LDAP_UNAVAILABLE_CRITICIAL_EXTENSION    0x0c /* LDAPv3 */
290 #define LDAP_CONFIDENTIALITY_REQUIRED   0x0d /* LDAPv3 */
291 #define LDAP_SASL_BIND_IN_PROGRESS      0x0e /* LDAPv3 */       
292
293 #define LDAP_NO_SUCH_ATTRIBUTE          0x10
294 #define LDAP_UNDEFINED_TYPE             0x11
295 #define LDAP_INAPPROPRIATE_MATCHING     0x12
296 #define LDAP_CONSTRAINT_VIOLATION       0x13
297 #define LDAP_TYPE_OR_VALUE_EXISTS       0x14
298 #define LDAP_INVALID_SYNTAX             0x15
299
300 #define LDAP_NO_SUCH_OBJECT             0x20
301 #define LDAP_ALIAS_PROBLEM              0x21
302 #define LDAP_INVALID_DN_SYNTAX          0x22
303 #define LDAP_IS_LEAF                    0x23 /* not LDAPv3 */
304 #define LDAP_ALIAS_DEREF_PROBLEM        0x24
305
306 #define LDAP_NAME_ERROR(n)      ((n & 0xf0) == 0x20)
307 #define NAME_ERROR(n)   LDAP_NAME_ERROR(n)      /* depreciated */
308
309 #define LDAP_INAPPROPRIATE_AUTH         0x30
310 #define LDAP_INVALID_CREDENTIALS        0x31
311 #define LDAP_INSUFFICIENT_ACCESS        0x32
312 #define LDAP_BUSY                       0x33
313 #define LDAP_UNAVAILABLE                0x34
314 #define LDAP_UNWILLING_TO_PERFORM       0x35
315 #define LDAP_LOOP_DETECT                0x36
316
317 #define LDAP_NAMING_VIOLATION           0x40
318 #define LDAP_OBJECT_CLASS_VIOLATION     0x41
319 #define LDAP_NOT_ALLOWED_ON_NONLEAF     0x42
320 #define LDAP_NOT_ALLOWED_ON_RDN         0x43
321 #define LDAP_ALREADY_EXISTS             0x44
322 #define LDAP_NO_OBJECT_CLASS_MODS       0x45
323 #define LDAP_RESULTS_TOO_LARGE          0x46 /* CLDAP */
324 #define LDAP_AFFECTS_MULTIPLE_DSAS      0x47 /* LDAPv3 */
325
326 #define LDAP_OTHER                      0x50
327 #define LDAP_SERVER_DOWN                0x51
328 #define LDAP_LOCAL_ERROR                0x52
329 #define LDAP_ENCODING_ERROR             0x53
330 #define LDAP_DECODING_ERROR             0x54
331 #define LDAP_TIMEOUT                    0x55
332 #define LDAP_AUTH_UNKNOWN               0x56
333 #define LDAP_FILTER_ERROR               0x57
334 #define LDAP_USER_CANCELLED             0x58
335 #define LDAP_PARAM_ERROR                0x59
336 #define LDAP_NO_MEMORY                  0x5a
337
338 #define LDAP_CONNECT_ERROR                              0x5b    /* new */
339 #define LDAP_NOT_SUPPORTED                              0x5c    /* new */
340 #define LDAP_CONTROL_NOT_FOUND                  0x5d    /* new */
341 #define LDAP_NO_RESULTS_RETURNED                0x5e    /* new */
342 #define LDAP_MORE_RESULTS_TO_RETURN             0x5f    /* new */
343 #define LDAP_CLIENT_LOOP                                0x60    /* new */
344 #define LDAP_REFERRAL_LIMIT_EXCEEDED    0x61    /* new */
345
346 /* default limit on nesting of referrals */
347 #define LDAP_DEFAULT_REFHOPLIMIT        5
348
349 /*
350  * This structure represents both ldap messages and ldap responses.
351  * These are really the same, except in the case of search responses,
352  * where a response has multiple messages.
353  */
354
355 typedef struct ldapmsg LDAPMessage;
356 #define NULLMSG ((LDAPMessage *) NULL)
357
358
359 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
360 /*
361  * structure for tracking LDAP server host, ports, DNs, etc.
362  */
363 typedef struct ldap_server {
364         char                    *lsrv_host;
365         char                    *lsrv_dn;       /* if NULL, use default */
366         int                     lsrv_port;
367         struct ldap_server      *lsrv_next;
368 } LDAPServer;
369
370
371 /*
372  * structure for representing an LDAP server connection
373  */
374 typedef struct ldap_conn {
375         Sockbuf                 *lconn_sb;
376         int                     lconn_refcnt;
377         time_t          lconn_lastused; /* time */
378         int                     lconn_status;
379 #define LDAP_CONNST_NEEDSOCKET          1
380 #define LDAP_CONNST_CONNECTING          2
381 #define LDAP_CONNST_CONNECTED           3
382         LDAPServer              *lconn_server;
383         char                    *lconn_krbinstance;
384         struct ldap_conn        *lconn_next;
385 } LDAPConn;
386
387
388 /*
389  * structure used to track outstanding requests
390  */
391 typedef struct ldapreq {
392         int             lr_msgid;       /* the message id */
393         int             lr_status;      /* status of request */
394 #define LDAP_REQST_INPROGRESS   1
395 #define LDAP_REQST_CHASINGREFS  2
396 #define LDAP_REQST_NOTCONNECTED 3
397 #define LDAP_REQST_WRITING      4
398         int             lr_outrefcnt;   /* count of outstanding referrals */
399         int             lr_origid;      /* original request's message id */
400         int             lr_parentcnt;   /* count of parent requests */
401         int             lr_res_msgtype; /* result message type */
402         int             lr_res_errno;   /* result LDAP errno */
403         char            *lr_res_error;  /* result error string */
404         char            *lr_res_matched;/* result matched DN string */
405         BerElement      *lr_ber;        /* ber encoded request contents */
406         LDAPConn        *lr_conn;       /* connection used to send request */
407         struct ldapreq  *lr_parent;     /* request that spawned this referral */
408         struct ldapreq  *lr_refnext;    /* next referral spawned */
409         struct ldapreq  *lr_prev;       /* previous request */
410         struct ldapreq  *lr_next;       /* next request */
411 } LDAPRequest;
412 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */
413
414
415 /*
416  * structure for client cache
417  */
418 #define LDAP_CACHE_BUCKETS      31      /* cache hash table size */
419 typedef struct ldapcache {
420         LDAPMessage     *lc_buckets[LDAP_CACHE_BUCKETS];/* hash table */
421         LDAPMessage     *lc_requests;                   /* unfulfilled reqs */
422         long            lc_timeout;                     /* request timeout */
423         long            lc_maxmem;                      /* memory to use */
424         long            lc_memused;                     /* memory in use */
425         int             lc_enabled;                     /* enabled? */
426         unsigned long   lc_options;                     /* options */
427 #define LDAP_CACHE_OPT_CACHENOERRS      0x00000001
428 #define LDAP_CACHE_OPT_CACHEALLERRS     0x00000002
429 }  LDAPCache;
430 #define NULLLDCACHE ((LDAPCache *)NULL)
431
432 /*
433  * structures for ldap getfilter routines
434  */
435
436 typedef struct ldap_filt_info {
437         char                    *lfi_filter;
438         char                    *lfi_desc;
439         int                     lfi_scope;      /* LDAP_SCOPE_BASE, etc */
440         int                     lfi_isexact;    /* exact match filter? */
441         struct ldap_filt_info   *lfi_next;
442 } LDAPFiltInfo;
443
444 typedef struct ldap_filt_list {
445     char                        *lfl_tag;
446     char                        *lfl_pattern;
447     char                        *lfl_delims;
448     LDAPFiltInfo                *lfl_ilist;
449     struct ldap_filt_list       *lfl_next;
450 } LDAPFiltList;
451
452
453 #define LDAP_FILT_MAXSIZ        1024
454
455 typedef struct ldap_filt_desc {
456         LDAPFiltList            *lfd_filtlist;
457         LDAPFiltInfo            *lfd_curfip;
458         LDAPFiltInfo            lfd_retfi;
459         char                    lfd_filter[ LDAP_FILT_MAXSIZ ];
460         char                    *lfd_curval;
461         char                    *lfd_curvalcopy;
462         char                    **lfd_curvalwords;
463         char                    *lfd_filtprefix;
464         char                    *lfd_filtsuffix;
465 } LDAPFiltDesc;
466
467
468 /*
469  * structure representing an ldap connection
470  */
471
472 typedef struct ldap LDAP;
473
474 #define LDAP_DEREF_NEVER        0x00
475 #define LDAP_DEREF_SEARCHING    0x01
476 #define LDAP_DEREF_FINDING      0x02
477 #define LDAP_DEREF_ALWAYS       0x03
478
479 #define LDAP_NO_LIMIT           0
480
481 /* how many messages to retrieve results for */
482 #define LDAP_MSG_ONE            0x00
483 #define LDAP_MSG_ALL            0x01
484 #define LDAP_MSG_RECEIVED       0x02
485
486 /*
487  * structure for ldap friendly mapping routines
488  */
489
490 typedef struct ldap_friendly {
491         char    *lf_unfriendly;
492         char    *lf_friendly;
493 } LDAPFriendlyMap;
494
495
496 /*
497  * handy macro to check whether LDAP struct is set up for CLDAP or not
498  */
499 #define LDAP_IS_CLDAP( ld )     ( (ld)->ld_sb.sb_naddr > 0 )
500
501
502 /*
503  * types for ldap URL handling
504  */
505 typedef struct ldap_url_desc {
506     char        *lud_host;
507     int         lud_port;
508     char        *lud_dn;
509     char        **lud_attrs;
510     int         lud_scope;
511     char        *lud_filter;
512     char        *lud_string;    /* for internal use only */
513 } LDAPURLDesc;
514 #define NULLLDAPURLDESC ((LDAPURLDesc *)NULL)
515
516 #define LDAP_URL_ERR_NOTLDAP    1       /* URL doesn't begin with "ldap://" */
517 #define LDAP_URL_ERR_NODN       2       /* URL has no DN (required) */
518 #define LDAP_URL_ERR_BADSCOPE   3       /* URL scope string is invalid */
519 #define LDAP_URL_ERR_MEM        4       /* can't allocate memory space */
520
521 /* avoid pulling in headers */
522 struct timeval;
523
524 /*
525  * in options.c:
526  */
527 LDAP_F int ldap_get_option LDAP_P((LDAP *ld, int option, void *outvalue));
528 LDAP_F int ldap_set_option LDAP_P((LDAP *ld, int option, void *invalue));
529
530 /* Not yet */
531 LDAP_F void ldap_control_free LDAP_P(( LDAPControl *ctrl ));
532 LDAP_F void ldap_controls_free LDAP_P(( LDAPControl **ctrls ));
533   
534 /*
535  * in abandon.c:
536  */
537 LDAP_F int ldap_abandon LDAP_P(( LDAP *ld, int msgid ));
538
539 /*
540  * in add.c:
541  */
542 LDAP_F int ldap_add LDAP_P(( LDAP *ld, char *dn, LDAPMod **attrs ));
543 LDAP_F int ldap_add_s LDAP_P(( LDAP *ld, char *dn, LDAPMod **attrs ));
544
545 /*
546  * in bind.c:
547  */
548 LDAP_F int ldap_bind LDAP_P(( LDAP *ld, char *who, char *passwd, int authmethod ));
549 LDAP_F int ldap_bind_s LDAP_P(( LDAP *ld, char *who, char *cred, int method ));
550 LDAP_F void ldap_set_rebind_proc LDAP_P(( LDAP *ld,
551         int (*rebindproc) LDAP_P(( LDAP *ld, char **dnp, char **passwdp, int *authmethodp, int freeit ))
552 ));
553
554 /*
555  * in sbind.c:
556  */
557 LDAP_F int ldap_simple_bind LDAP_P(( LDAP *ld, char *who, char *passwd ));
558 LDAP_F int ldap_simple_bind_s LDAP_P(( LDAP *ld, char *who, char *passwd ));
559
560 /*
561  * in kbind.c:
562  */
563 LDAP_F int ldap_kerberos_bind_s LDAP_P(( LDAP *ld, char *who ));
564 LDAP_F int ldap_kerberos_bind1 LDAP_P(( LDAP *ld, char *who ));
565 LDAP_F int ldap_kerberos_bind1_s LDAP_P(( LDAP *ld, char *who ));
566 LDAP_F int ldap_kerberos_bind2 LDAP_P(( LDAP *ld, char *who ));
567 LDAP_F int ldap_kerberos_bind2_s LDAP_P(( LDAP *ld, char *who ));
568  
569
570 /*
571  * in cache.c
572  */
573 LDAP_F int ldap_enable_cache LDAP_P(( LDAP *ld, long timeout, long maxmem ));
574 LDAP_F void ldap_disable_cache LDAP_P(( LDAP *ld ));
575 LDAP_F void ldap_set_cache_options LDAP_P(( LDAP *ld, unsigned long opts ));
576 LDAP_F void ldap_destroy_cache LDAP_P(( LDAP *ld ));
577 LDAP_F void ldap_flush_cache LDAP_P(( LDAP *ld ));
578 LDAP_F void ldap_uncache_entry LDAP_P(( LDAP *ld, char *dn ));
579 LDAP_F void ldap_uncache_request LDAP_P(( LDAP *ld, int msgid ));
580
581 /*
582  * in compare.c:
583  */
584 LDAP_F int ldap_compare LDAP_P(( LDAP *ld, char *dn, char *attr, char *value ));
585 LDAP_F int ldap_compare_s LDAP_P(( LDAP *ld, char *dn, char *attr, char *value ));
586
587 /*
588  * in delete.c:
589  */
590 LDAP_F int ldap_delete LDAP_P(( LDAP *ld, char *dn ));
591 LDAP_F int ldap_delete_s LDAP_P(( LDAP *ld, char *dn ));
592
593 /*
594  * in error.c:
595  */
596 LDAP_F int ldap_result2error LDAP_P(( LDAP *ld, LDAPMessage *r, int freeit ));
597 LDAP_F char *ldap_err2string LDAP_P(( int err ));
598 LDAP_F void ldap_perror LDAP_P(( LDAP *ld, char *s ));
599 LDAP_F int ldap_get_lderrno LDAP_P((LDAP *ld, char **matched, char **msg));
600
601 /*
602  * in modify.c:
603  */
604 LDAP_F int ldap_modify LDAP_P(( LDAP *ld, char *dn, LDAPMod **mods ));
605 LDAP_F int ldap_modify_s LDAP_P(( LDAP *ld, char *dn, LDAPMod **mods ));
606
607 /*
608  * in modrdn.c:
609  */
610 LDAP_F int ldap_modrdn LDAP_P(( LDAP *ld, char *dn, char *newrdn ));
611 LDAP_F int ldap_modrdn_s LDAP_P(( LDAP *ld, char *dn, char *newrdn ));
612 LDAP_F int ldap_modrdn2 LDAP_P(( LDAP *ld, char *dn, char *newrdn,
613         int deleteoldrdn ));
614 LDAP_F int ldap_modrdn2_s LDAP_P(( LDAP *ld, char *dn, char *newrdn,
615         int deleteoldrdn));
616
617 /*
618  * in open.c:
619  */
620 LDAP_F LDAP *ldap_open LDAP_P(( char *host, int port ));
621 LDAP_F LDAP *ldap_init LDAP_P(( char *defhost, int defport ));
622
623 /*
624  * in getentry.c:
625  */
626 LDAP_F LDAPMessage *ldap_first_entry LDAP_P(( LDAP *ld, LDAPMessage *chain ));
627 LDAP_F LDAPMessage *ldap_next_entry LDAP_P(( LDAP *ld, LDAPMessage *entry ));
628 LDAP_F int ldap_count_entries LDAP_P(( LDAP *ld, LDAPMessage *chain ));
629
630 /*
631  * in addentry.c
632  */
633 LDAP_F LDAPMessage *ldap_delete_result_entry LDAP_P(( LDAPMessage **list,
634         LDAPMessage *e ));
635 LDAP_F void ldap_add_result_entry LDAP_P(( LDAPMessage **list, LDAPMessage *e ));
636
637 /*
638  * in getdn.c
639  */
640 LDAP_F char *ldap_get_dn LDAP_P(( LDAP *ld, LDAPMessage *entry ));
641 LDAP_F char *ldap_dn2ufn LDAP_P(( char *dn ));
642 LDAP_F char **ldap_explode_dn LDAP_P(( char *dn, int notypes ));
643 LDAP_F char **ldap_explode_rdn LDAP_P(( char *rdn, int notypes ));
644 LDAP_F char **ldap_explode_dns LDAP_P(( char *dn ));
645 LDAP_F int ldap_is_dns_dn LDAP_P(( char *dn ));
646
647 /*
648  * in getattr.c
649  */
650 LDAP_F char *ldap_first_attribute LDAP_P(( LDAP *ld, LDAPMessage *entry,
651         BerElement **ber ));
652 LDAP_F char *ldap_next_attribute LDAP_P(( LDAP *ld, LDAPMessage *entry,
653         BerElement *ber ));
654
655 /*
656  * in getvalues.c
657  */
658 LDAP_F char **ldap_get_values LDAP_P(( LDAP *ld, LDAPMessage *entry, char *target ));
659 LDAP_F struct berval **ldap_get_values_len LDAP_P(( LDAP *ld, LDAPMessage *entry,
660         char *target ));
661 LDAP_F int ldap_count_values LDAP_P(( char **vals ));
662 LDAP_F int ldap_count_values_len LDAP_P(( struct berval **vals ));
663 LDAP_F void ldap_value_free LDAP_P(( char **vals ));
664 LDAP_F void ldap_value_free_len LDAP_P(( struct berval **vals ));
665
666 /*
667  * in result.c:
668  */
669 LDAP_F int ldap_result LDAP_P(( LDAP *ld, int msgid, int all,
670         struct timeval *timeout, LDAPMessage **result ));
671 LDAP_F int ldap_msgtype LDAP_P(( LDAPMessage *lm ));
672 LDAP_F int ldap_msgid   LDAP_P(( LDAPMessage *lm ));
673 LDAP_F int ldap_msgfree LDAP_P(( LDAPMessage *lm ));
674 LDAP_F int ldap_msgdelete LDAP_P(( LDAP *ld, int msgid ));
675
676 /*
677  * in search.c:
678  */
679 LDAP_F int ldap_search LDAP_P(( LDAP *ld, char *base, int scope, char *filter,
680         char **attrs, int attrsonly ));
681 LDAP_F int ldap_search_s LDAP_P(( LDAP *ld, char *base, int scope, char *filter,
682         char **attrs, int attrsonly, LDAPMessage **res ));
683 LDAP_F int ldap_search_st LDAP_P(( LDAP *ld, char *base, int scope, char *filter,
684     char **attrs, int attrsonly, struct timeval *timeout, LDAPMessage **res ));
685
686 /*
687  * in ufn.c
688  */
689 LDAP_F int ldap_ufn_search_c LDAP_P(( LDAP *ld, char *ufn, char **attrs,
690         int attrsonly, LDAPMessage **res, int (*cancelproc)( void *cl ),
691         void *cancelparm ));
692 LDAP_F int ldap_ufn_search_ct LDAP_P(( LDAP *ld, char *ufn, char **attrs,
693         int attrsonly, LDAPMessage **res, int (*cancelproc)( void *cl ),
694         void *cancelparm, char *tag1, char *tag2, char *tag3 ));
695 LDAP_F int ldap_ufn_search_s LDAP_P(( LDAP *ld, char *ufn, char **attrs,
696         int attrsonly, LDAPMessage **res ));
697 LDAP_F LDAPFiltDesc *ldap_ufn_setfilter LDAP_P(( LDAP *ld, char *fname ));
698 LDAP_F void ldap_ufn_setprefix LDAP_P(( LDAP *ld, char *prefix ));
699 LDAP_F int ldap_ufn_timeout LDAP_P(( void *tvparam ));
700
701
702 /*
703  * in unbind.c
704  */
705 LDAP_F int ldap_unbind LDAP_P(( LDAP *ld ));
706 LDAP_F int ldap_unbind_s LDAP_P(( LDAP *ld ));
707
708
709 /*
710  * in getfilter.c
711  */
712 LDAP_F LDAPFiltDesc *ldap_init_getfilter LDAP_P(( char *fname ));
713 LDAP_F LDAPFiltDesc *ldap_init_getfilter_buf LDAP_P(( char *buf, long buflen ));
714 LDAP_F LDAPFiltInfo *ldap_getfirstfilter LDAP_P(( LDAPFiltDesc *lfdp, char *tagpat,
715         char *value ));
716 LDAP_F LDAPFiltInfo *ldap_getnextfilter LDAP_P(( LDAPFiltDesc *lfdp ));
717 LDAP_F void ldap_setfilteraffixes LDAP_P(( LDAPFiltDesc *lfdp, char *prefix, char *suffix ));
718 LDAP_F void ldap_build_filter LDAP_P(( char *buf, unsigned long buflen,
719         char *pattern, char *prefix, char *suffix, char *attr,
720         char *value, char **valwords ));
721
722 /*
723  * in free.c
724  */
725 LDAP_F void ldap_getfilter_free LDAP_P(( LDAPFiltDesc *lfdp ));
726 LDAP_F void ldap_mods_free LDAP_P(( LDAPMod **mods, int freemods ));
727
728 /*
729  * in friendly.c
730  */
731 LDAP_F char *ldap_friendly_name LDAP_P(( char *filename, char *uname,
732         LDAPFriendlyMap **map ));
733 LDAP_F void ldap_free_friendlymap LDAP_P(( LDAPFriendlyMap **map ));
734
735
736 /*
737  * in cldap.c
738  */
739 LDAP_F LDAP *cldap_open LDAP_P(( char *host, int port ));
740 LDAP_F void cldap_close LDAP_P(( LDAP *ld ));
741 LDAP_F int cldap_search_s LDAP_P(( LDAP *ld, char *base, int scope, char *filter,
742         char **attrs, int attrsonly, LDAPMessage **res, char *logdn ));
743 LDAP_F void cldap_setretryinfo LDAP_P(( LDAP *ld, int tries, int timeout ));
744
745
746 /*
747  * in sort.c
748  */
749 LDAP_F int ldap_sort_entries LDAP_P(( LDAP *ld,
750         LDAPMessage **chain, char *attr,
751         int (*cmp) (const char *, const char *) ));
752 LDAP_F int ldap_sort_values LDAP_P(( LDAP *ld,
753         char **vals, int (*cmp) (const void *, const void *) ));
754 LDAP_F int ldap_sort_strcasecmp LDAP_P(( const void *a, const void *b ));
755
756
757 /*
758  * in url.c
759  */
760 LDAP_F int ldap_is_ldap_url LDAP_P(( char *url ));
761 LDAP_F int ldap_url_parse LDAP_P(( char *url, LDAPURLDesc **ludpp ));
762 LDAP_F void ldap_free_urldesc LDAP_P(( LDAPURLDesc *ludp ));
763 LDAP_F int ldap_url_search LDAP_P(( LDAP *ld, char *url, int attrsonly ));
764 LDAP_F int ldap_url_search_s LDAP_P(( LDAP *ld, char *url, int attrsonly,
765         LDAPMessage **res ));
766 LDAP_F int ldap_url_search_st LDAP_P(( LDAP *ld, char *url, int attrsonly,
767         struct timeval *timeout, LDAPMessage **res ));
768
769
770 /*
771  * in charset.c
772  */
773 LDAP_F void ldap_set_string_translators LDAP_P(( LDAP *ld,
774         BERTranslateProc encode_proc, BERTranslateProc decode_proc ));
775 LDAP_F int ldap_translate_from_t61 LDAP_P(( LDAP *ld, char **bufp,
776         unsigned long *lenp, int free_input ));
777 LDAP_F int ldap_translate_to_t61 LDAP_P(( LDAP *ld, char **bufp,
778         unsigned long *lenp, int free_input ));
779 LDAP_F void ldap_enable_translation LDAP_P(( LDAP *ld, LDAPMessage *entry,
780         int enable ));
781
782 LDAP_F int ldap_t61_to_8859 LDAP_P(( char **bufp, unsigned long *buflenp,
783         int free_input ));
784 LDAP_F int ldap_8859_to_t61 LDAP_P(( char **bufp, unsigned long *buflenp,
785         int free_input ));
786
787
788 /*
789  * in msdos/winsock/wsa.c
790  */
791 LDAP_F void ldap_memfree LDAP_P(( void *p ));
792
793 LDAP_END_DECL
794
795 #endif /* _LDAP_H */