2000-06-26 09:26:53 +08:00
|
|
|
/* ldap-int.h - defines & prototypes internal to the LDAP library */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1998-08-09 08:43:13 +08:00
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
1998-12-29 04:53:15 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
/* Portions
|
1998-08-09 08:43:13 +08:00
|
|
|
* Copyright (c) 1995 Regents of the University of Michigan.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
1998-10-26 09:49:56 +08:00
|
|
|
#ifndef _LDAP_INT_H
|
|
|
|
#define _LDAP_INT_H 1
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-02-21 02:33:24 +08:00
|
|
|
#ifdef LDAP_R_COMPILE
|
1998-12-20 08:58:55 +08:00
|
|
|
#define LDAP_THREAD_SAFE 1
|
|
|
|
#endif
|
|
|
|
|
1998-10-26 09:18:41 +08:00
|
|
|
#include "../liblber/lber-int.h"
|
1998-12-22 09:34:01 +08:00
|
|
|
|
2001-12-18 06:42:55 +08:00
|
|
|
#ifdef LDAP_R_COMPILE
|
|
|
|
#include <ldap_pvt_thread.h>
|
|
|
|
#endif
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
/* the need for this should be removed */
|
2002-02-11 17:39:15 +08:00
|
|
|
#ifdef HAVE_SASL_SASL_H
|
2002-02-11 16:28:51 +08:00
|
|
|
#include <sasl/sasl.h>
|
|
|
|
#else
|
2000-07-14 06:54:38 +08:00
|
|
|
#include <sasl.h>
|
2002-02-11 16:28:51 +08:00
|
|
|
#endif
|
2001-01-19 06:18:41 +08:00
|
|
|
|
|
|
|
#define SASL_MAX_BUFF_SIZE 65536
|
|
|
|
#define SASL_MIN_BUFF_SIZE 4096
|
2000-07-14 06:54:38 +08:00
|
|
|
#endif
|
|
|
|
|
2000-06-09 01:11:57 +08:00
|
|
|
/*
|
|
|
|
* Support needed if the library is running in the kernel
|
|
|
|
*/
|
|
|
|
#if LDAP_INT_IN_KERNEL
|
|
|
|
/*
|
|
|
|
* Platform specific function to return a pointer to the
|
|
|
|
* process-specific global options.
|
|
|
|
*
|
|
|
|
* This function should perform the following functions:
|
|
|
|
* Allocate and initialize a global options struct on a per process basis
|
|
|
|
* Use callers process identifier to return its global options struct
|
|
|
|
* Note: Deallocate structure when the process exits
|
|
|
|
*/
|
|
|
|
# define LDAP_INT_GLOBAL_OPT() ldap_int_global_opt()
|
|
|
|
struct ldapoptions *ldap_int_global_opt(void);
|
|
|
|
#else
|
|
|
|
# define LDAP_INT_GLOBAL_OPT() (&ldap_int_global_options)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ldap_debug ((LDAP_INT_GLOBAL_OPT())->ldo_debug)
|
2000-06-02 04:59:21 +08:00
|
|
|
|
|
|
|
#include "ldap_log.h"
|
|
|
|
|
1999-01-26 08:27:51 +08:00
|
|
|
#undef Debug
|
|
|
|
#define Debug( level, fmt, arg1, arg2, arg3 ) \
|
2001-12-30 17:42:58 +08:00
|
|
|
do { if ( ldap_debug & level ) \
|
|
|
|
ldap_log_printf( NULL, (level), (fmt), (arg1), (arg2), (arg3) ); \
|
|
|
|
} while ( 0 )
|
1998-12-22 09:34:01 +08:00
|
|
|
|
2000-10-13 05:16:18 +08:00
|
|
|
#define LDAP_Debug( subsystem, level, fmt, arg1, arg2, arg3 )\
|
|
|
|
ldap_log_printf( NULL, (level), (fmt), (arg1), (arg2), (arg3) )
|
|
|
|
|
1998-10-26 09:18:41 +08:00
|
|
|
#include "ldap.h"
|
|
|
|
|
1999-01-15 22:49:03 +08:00
|
|
|
#include "ldap_pvt.h"
|
|
|
|
|
1998-10-26 09:18:41 +08:00
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#define LDAP_URL_PREFIX "ldap://"
|
1999-06-02 03:08:27 +08:00
|
|
|
#define LDAP_URL_PREFIX_LEN (sizeof(LDAP_URL_PREFIX)-1)
|
|
|
|
#define LDAPS_URL_PREFIX "ldaps://"
|
|
|
|
#define LDAPS_URL_PREFIX_LEN (sizeof(LDAPS_URL_PREFIX)-1)
|
2000-01-02 09:21:25 +08:00
|
|
|
#define LDAPI_URL_PREFIX "ldapi://"
|
|
|
|
#define LDAPI_URL_PREFIX_LEN (sizeof(LDAPI_URL_PREFIX)-1)
|
2001-09-28 08:18:40 +08:00
|
|
|
#ifdef LDAP_CONNECTIONLESS
|
|
|
|
#define LDAPC_URL_PREFIX "cldap://"
|
|
|
|
#define LDAPC_URL_PREFIX_LEN (sizeof(LDAPC_URL_PREFIX)-1)
|
|
|
|
#endif
|
1999-06-02 03:08:27 +08:00
|
|
|
#define LDAP_URL_URLCOLON "URL:"
|
|
|
|
#define LDAP_URL_URLCOLON_LEN (sizeof(LDAP_URL_URLCOLON)-1)
|
2000-06-26 09:26:53 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#define LDAP_REF_STR "Referral:\n"
|
1999-06-02 03:08:27 +08:00
|
|
|
#define LDAP_REF_STR_LEN (sizeof(LDAP_REF_STR)-1)
|
1998-08-09 08:43:13 +08:00
|
|
|
#define LDAP_LDAP_REF_STR LDAP_URL_PREFIX
|
2000-06-26 09:26:53 +08:00
|
|
|
#define LDAP_LDAP_REF_STR_LEN LDAP_URL_PREFIX_LEN
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-06-02 03:08:27 +08:00
|
|
|
#define LDAP_DEFAULT_REFHOPLIMIT 5
|
|
|
|
|
1998-11-04 09:41:00 +08:00
|
|
|
#define LDAP_BOOL_REFERRALS 0
|
|
|
|
#define LDAP_BOOL_RESTART 1
|
1999-07-14 03:29:19 +08:00
|
|
|
#define LDAP_BOOL_TLS 3
|
1998-11-04 09:41:00 +08:00
|
|
|
|
1998-11-10 02:40:37 +08:00
|
|
|
#define LDAP_BOOLEANS unsigned long
|
1998-11-04 09:41:00 +08:00
|
|
|
#define LDAP_BOOL(n) (1 << (n))
|
2000-06-26 09:26:53 +08:00
|
|
|
#define LDAP_BOOL_GET(lo, bool) \
|
|
|
|
((lo)->ldo_booleans & LDAP_BOOL(bool) ? -1 : 0)
|
1998-11-10 02:40:37 +08:00
|
|
|
#define LDAP_BOOL_SET(lo, bool) ((lo)->ldo_booleans |= LDAP_BOOL(bool))
|
|
|
|
#define LDAP_BOOL_CLR(lo, bool) ((lo)->ldo_booleans &= ~LDAP_BOOL(bool))
|
|
|
|
#define LDAP_BOOL_ZERO(lo) ((lo)->ldo_booleans = 0)
|
1998-11-04 09:41:00 +08:00
|
|
|
|
1998-10-26 09:18:41 +08:00
|
|
|
/*
|
|
|
|
* This structure represents both ldap messages and ldap responses.
|
|
|
|
* These are really the same, except in the case of search responses,
|
|
|
|
* where a response has multiple messages.
|
|
|
|
*/
|
|
|
|
|
1998-10-26 09:49:56 +08:00
|
|
|
struct ldapmsg {
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_int_t lm_msgid; /* the message id */
|
|
|
|
ber_tag_t lm_msgtype; /* the message type */
|
1998-10-26 09:18:41 +08:00
|
|
|
BerElement *lm_ber; /* the ber encoded message contents */
|
|
|
|
struct ldapmsg *lm_chain; /* for search - next msg in the resp */
|
|
|
|
struct ldapmsg *lm_next; /* next response */
|
1999-05-28 06:48:14 +08:00
|
|
|
time_t lm_time; /* used to maintain cache */
|
1998-10-26 09:49:56 +08:00
|
|
|
};
|
1999-06-19 07:53:05 +08:00
|
|
|
|
1998-11-10 02:40:37 +08:00
|
|
|
/*
|
|
|
|
* structure representing get/set'able options
|
|
|
|
* which have global defaults.
|
|
|
|
*/
|
|
|
|
struct ldapoptions {
|
1999-05-29 03:33:05 +08:00
|
|
|
short ldo_valid;
|
|
|
|
#define LDAP_UNINITIALIZED 0x0
|
|
|
|
#define LDAP_INITIALIZED 0x1
|
|
|
|
#define LDAP_VALID_SESSION 0x2
|
2002-04-08 17:43:22 +08:00
|
|
|
int ldo_debug;
|
2001-09-28 08:18:40 +08:00
|
|
|
#ifdef LDAP_CONNECTIONLESS
|
2001-09-29 06:19:51 +08:00
|
|
|
#define LDAP_IS_UDP(ld) ((ld)->ld_options.ldo_is_udp)
|
2001-09-28 08:18:40 +08:00
|
|
|
void* ldo_peer; /* struct sockaddr* */
|
|
|
|
char* ldo_cldapdn;
|
2001-09-29 06:19:51 +08:00
|
|
|
int ldo_is_udp;
|
2001-09-28 08:18:40 +08:00
|
|
|
#endif
|
1999-05-29 03:33:05 +08:00
|
|
|
|
1999-08-04 03:27:22 +08:00
|
|
|
/* per API call timeout */
|
|
|
|
struct timeval *ldo_tm_api;
|
|
|
|
struct timeval *ldo_tm_net;
|
1999-01-26 08:27:51 +08:00
|
|
|
|
2000-02-19 03:57:38 +08:00
|
|
|
ber_int_t ldo_version;
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_int_t ldo_deref;
|
|
|
|
ber_int_t ldo_timelimit;
|
|
|
|
ber_int_t ldo_sizelimit;
|
1998-11-10 02:40:37 +08:00
|
|
|
|
2001-06-25 15:33:42 +08:00
|
|
|
#ifdef HAVE_TLS
|
|
|
|
int ldo_tls_mode;
|
|
|
|
#endif
|
|
|
|
|
1999-12-08 02:42:25 +08:00
|
|
|
LDAPURLDesc *ldo_defludp;
|
1998-12-23 10:30:44 +08:00
|
|
|
int ldo_defport;
|
1998-11-11 07:37:30 +08:00
|
|
|
char* ldo_defbase;
|
2000-07-17 08:56:29 +08:00
|
|
|
char* ldo_defbinddn; /* bind dn */
|
|
|
|
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
char* ldo_def_sasl_mech; /* SASL Mechanism(s) */
|
|
|
|
char* ldo_def_sasl_realm; /* SASL realm */
|
|
|
|
char* ldo_def_sasl_authcid; /* SASL authentication identity */
|
|
|
|
char* ldo_def_sasl_authzid; /* SASL authorization identity */
|
|
|
|
|
|
|
|
/* SASL Security Properties */
|
|
|
|
struct sasl_security_properties ldo_sasl_secprops;
|
|
|
|
#endif
|
1998-11-10 07:02:27 +08:00
|
|
|
|
1998-11-10 02:40:37 +08:00
|
|
|
int ldo_refhoplimit; /* limit on referral nesting */
|
|
|
|
|
1998-12-23 10:30:44 +08:00
|
|
|
/* LDAPv3 server and client controls */
|
1999-05-19 09:12:33 +08:00
|
|
|
LDAPControl **ldo_sctrls;
|
|
|
|
LDAPControl **ldo_cctrls;
|
2000-06-26 09:26:53 +08:00
|
|
|
|
|
|
|
/* LDAP rebind callback function */
|
2001-06-15 08:14:56 +08:00
|
|
|
LDAP_REBIND_PROC *ldo_rebind_proc;
|
|
|
|
void *ldo_rebind_params;
|
1999-07-14 03:29:19 +08:00
|
|
|
|
1998-11-10 02:40:37 +08:00
|
|
|
LDAP_BOOLEANS ldo_booleans; /* boolean options */
|
|
|
|
};
|
|
|
|
|
1999-08-04 03:27:22 +08:00
|
|
|
|
1998-12-22 10:39:24 +08:00
|
|
|
/*
|
|
|
|
* structure for representing an LDAP server connection
|
|
|
|
*/
|
|
|
|
typedef struct ldap_conn {
|
2000-07-14 06:54:38 +08:00
|
|
|
Sockbuf *lconn_sb;
|
2001-06-25 15:33:42 +08:00
|
|
|
#ifdef HAVE_TLS
|
|
|
|
/* tls context */
|
|
|
|
void *lconn_tls_ctx;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
2000-07-14 06:54:38 +08:00
|
|
|
void *lconn_sasl_ctx;
|
2001-06-25 15:33:42 +08:00
|
|
|
#endif
|
1998-12-22 10:39:24 +08:00
|
|
|
int lconn_refcnt;
|
|
|
|
time_t lconn_lastused; /* time */
|
2000-06-01 01:34:43 +08:00
|
|
|
int lconn_rebind_inprogress; /* set if rebind in progress */
|
|
|
|
char ***lconn_rebind_queue; /* used if rebind in progress */
|
1998-12-22 10:39:24 +08:00
|
|
|
int lconn_status;
|
|
|
|
#define LDAP_CONNST_NEEDSOCKET 1
|
|
|
|
#define LDAP_CONNST_CONNECTING 2
|
|
|
|
#define LDAP_CONNST_CONNECTED 3
|
1999-12-08 02:42:25 +08:00
|
|
|
LDAPURLDesc *lconn_server;
|
2000-09-07 05:32:45 +08:00
|
|
|
#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
|
1998-12-22 10:39:24 +08:00
|
|
|
char *lconn_krbinstance;
|
2000-09-07 05:32:45 +08:00
|
|
|
#endif
|
2001-06-25 15:33:42 +08:00
|
|
|
BerElement *lconn_ber; /* ber receiving on this conn. */
|
|
|
|
|
2001-12-09 10:34:45 +08:00
|
|
|
struct ldap_conn *lconn_next;
|
1998-12-22 10:39:24 +08:00
|
|
|
} LDAPConn;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* structure used to track outstanding requests
|
|
|
|
*/
|
|
|
|
typedef struct ldapreq {
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_int_t lr_msgid; /* the message id */
|
1998-12-22 10:39:24 +08:00
|
|
|
int lr_status; /* status of request */
|
2000-06-01 01:34:43 +08:00
|
|
|
#define LDAP_REQST_COMPLETED 0
|
1998-12-22 10:39:24 +08:00
|
|
|
#define LDAP_REQST_INPROGRESS 1
|
|
|
|
#define LDAP_REQST_CHASINGREFS 2
|
|
|
|
#define LDAP_REQST_NOTCONNECTED 3
|
|
|
|
#define LDAP_REQST_WRITING 4
|
|
|
|
int lr_outrefcnt; /* count of outstanding referrals */
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_int_t lr_origid; /* original request's message id */
|
1998-12-22 10:39:24 +08:00
|
|
|
int lr_parentcnt; /* count of parent requests */
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_tag_t lr_res_msgtype; /* result message type */
|
|
|
|
ber_int_t lr_res_errno; /* result LDAP errno */
|
1998-12-22 10:39:24 +08:00
|
|
|
char *lr_res_error; /* result error string */
|
|
|
|
char *lr_res_matched;/* result matched DN string */
|
|
|
|
BerElement *lr_ber; /* ber encoded request contents */
|
|
|
|
LDAPConn *lr_conn; /* connection used to send request */
|
|
|
|
struct ldapreq *lr_parent; /* request that spawned this referral */
|
2001-09-25 02:50:44 +08:00
|
|
|
struct ldapreq *lr_child; /* first child request */
|
1998-12-22 10:39:24 +08:00
|
|
|
struct ldapreq *lr_refnext; /* next referral spawned */
|
|
|
|
struct ldapreq *lr_prev; /* previous request */
|
|
|
|
struct ldapreq *lr_next; /* next request */
|
|
|
|
} LDAPRequest;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* structure for client cache
|
|
|
|
*/
|
|
|
|
#define LDAP_CACHE_BUCKETS 31 /* cache hash table size */
|
|
|
|
typedef struct ldapcache {
|
|
|
|
LDAPMessage *lc_buckets[LDAP_CACHE_BUCKETS];/* hash table */
|
|
|
|
LDAPMessage *lc_requests; /* unfulfilled reqs */
|
|
|
|
long lc_timeout; /* request timeout */
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_len_t lc_maxmem; /* memory to use */
|
|
|
|
ber_len_t lc_memused; /* memory in use */
|
1998-12-22 10:39:24 +08:00
|
|
|
int lc_enabled; /* enabled? */
|
|
|
|
unsigned long lc_options; /* options */
|
|
|
|
#define LDAP_CACHE_OPT_CACHENOERRS 0x00000001
|
|
|
|
#define LDAP_CACHE_OPT_CACHEALLERRS 0x00000002
|
|
|
|
} LDAPCache;
|
|
|
|
|
2000-06-01 01:34:43 +08:00
|
|
|
/*
|
|
|
|
* structure containing referral request info for rebind procedure
|
|
|
|
*/
|
|
|
|
typedef struct ldapreqinfo {
|
|
|
|
ber_len_t ri_msgid;
|
|
|
|
int ri_request;
|
|
|
|
char *ri_url;
|
|
|
|
} LDAPreqinfo;
|
|
|
|
|
1998-10-26 09:18:41 +08:00
|
|
|
/*
|
|
|
|
* structure representing an ldap connection
|
|
|
|
*/
|
|
|
|
|
1998-10-26 09:49:56 +08:00
|
|
|
struct ldap {
|
2000-06-02 04:59:21 +08:00
|
|
|
Sockbuf *ld_sb; /* socket descriptor & buffer */
|
1998-11-10 02:40:37 +08:00
|
|
|
|
|
|
|
struct ldapoptions ld_options;
|
|
|
|
|
1999-05-29 03:33:05 +08:00
|
|
|
#define ld_valid ld_options.ldo_valid
|
|
|
|
#define ld_debug ld_options.ldo_debug
|
|
|
|
|
1998-11-10 02:40:37 +08:00
|
|
|
#define ld_deref ld_options.ldo_deref
|
|
|
|
#define ld_timelimit ld_options.ldo_timelimit
|
|
|
|
#define ld_sizelimit ld_options.ldo_sizelimit
|
|
|
|
|
1999-12-17 11:27:16 +08:00
|
|
|
#define ld_defbinddn ld_options.ldo_defbinddn
|
1998-11-11 07:37:30 +08:00
|
|
|
#define ld_defbase ld_options.ldo_defbase
|
|
|
|
#define ld_defhost ld_options.ldo_defhost
|
|
|
|
#define ld_defport ld_options.ldo_defport
|
|
|
|
|
1998-11-10 02:40:37 +08:00
|
|
|
#define ld_refhoplimit ld_options.ldo_refhoplimit
|
|
|
|
|
1999-05-19 09:12:33 +08:00
|
|
|
#define ld_sctrls ld_options.ldo_sctrls
|
|
|
|
#define ld_cctrls ld_options.ldo_cctrls
|
2001-06-15 08:14:56 +08:00
|
|
|
#define ld_rebind_proc ld_options.ldo_rebind_proc
|
|
|
|
#define ld_rebind_params ld_options.ldo_rebind_params
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
#define ld_version ld_options.ldo_version
|
|
|
|
|
1999-07-18 09:20:45 +08:00
|
|
|
unsigned short ld_lberoptions;
|
1998-10-26 09:18:41 +08:00
|
|
|
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_int_t ld_errno;
|
1998-11-10 02:40:37 +08:00
|
|
|
char *ld_error;
|
|
|
|
char *ld_matched;
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_len_t ld_msgid;
|
1998-10-26 09:18:41 +08:00
|
|
|
|
|
|
|
/* do not mess with these */
|
|
|
|
LDAPRequest *ld_requests; /* list of outstanding requests */
|
|
|
|
LDAPMessage *ld_responses; /* list of outstanding responses */
|
1999-05-22 14:11:48 +08:00
|
|
|
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_int_t *ld_abandoned; /* array of abandoned requests */
|
1999-05-22 14:11:48 +08:00
|
|
|
|
1998-10-26 09:18:41 +08:00
|
|
|
LDAPCache *ld_cache; /* non-null if cache is initialized */
|
1999-05-22 14:11:48 +08:00
|
|
|
|
1998-10-26 09:18:41 +08:00
|
|
|
/* do not mess with the rest though */
|
1998-11-10 02:40:37 +08:00
|
|
|
|
1998-10-26 09:18:41 +08:00
|
|
|
LDAPConn *ld_defconn; /* default connection */
|
|
|
|
LDAPConn *ld_conns; /* list of server connections */
|
|
|
|
void *ld_selectinfo; /* platform specifics for select */
|
1998-10-26 09:49:56 +08:00
|
|
|
};
|
2001-09-29 06:19:51 +08:00
|
|
|
#define LDAP_VALID(ld) ( (ld)->ld_valid == LDAP_VALID_SESSION )
|
1998-10-26 09:18:41 +08:00
|
|
|
|
2001-06-15 08:14:56 +08:00
|
|
|
#ifdef LDAP_R_COMPILE
|
|
|
|
#ifdef HAVE_RES_QUERY
|
2000-07-14 06:54:38 +08:00
|
|
|
LDAP_V ( ldap_pvt_thread_mutex_t ) ldap_int_resolv_mutex;
|
2001-06-23 09:25:21 +08:00
|
|
|
#endif
|
2001-06-15 08:14:56 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
LDAP_V( ldap_pvt_thread_mutex_t ) ldap_int_sasl_mutex;
|
|
|
|
#endif
|
|
|
|
#endif
|
2000-01-03 10:33:22 +08:00
|
|
|
|
1998-11-04 09:41:00 +08:00
|
|
|
/*
|
|
|
|
* in init.c
|
|
|
|
*/
|
1999-05-29 03:33:05 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
LDAP_V ( struct ldapoptions ) ldap_int_global_options;
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F ( void ) ldap_int_initialize LDAP_P((struct ldapoptions *, int *));
|
|
|
|
LDAP_F ( void ) ldap_int_initialize_global_options LDAP_P((
|
2000-06-09 01:11:57 +08:00
|
|
|
struct ldapoptions *, int *));
|
1999-05-28 06:25:55 +08:00
|
|
|
|
1999-05-29 09:19:14 +08:00
|
|
|
/* memory.c */
|
|
|
|
/* simple macros to realloc for now */
|
|
|
|
#define LDAP_MALLOC(s) (LBER_MALLOC((s)))
|
|
|
|
#define LDAP_CALLOC(n,s) (LBER_CALLOC((n),(s)))
|
|
|
|
#define LDAP_REALLOC(p,s) (LBER_REALLOC((p),(s)))
|
|
|
|
#define LDAP_FREE(p) (LBER_FREE((p)))
|
1999-06-02 03:25:17 +08:00
|
|
|
#define LDAP_VFREE(v) (LBER_VFREE((void **)(v)))
|
1999-06-03 06:28:22 +08:00
|
|
|
#define LDAP_STRDUP(s) (LBER_STRDUP((s)))
|
2001-10-19 03:00:07 +08:00
|
|
|
#define LDAP_STRNDUP(s,l) (LBER_STRNDUP((s),(l)))
|
1999-05-29 09:19:14 +08:00
|
|
|
|
2001-10-05 02:06:08 +08:00
|
|
|
/*
|
|
|
|
* in error.c
|
|
|
|
*/
|
2001-12-07 12:03:25 +08:00
|
|
|
LDAP_F (void) ldap_int_error_init( void );
|
2001-10-05 02:06:08 +08:00
|
|
|
|
1999-05-28 06:25:55 +08:00
|
|
|
/*
|
|
|
|
* in unit-int.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (void) ldap_int_utils_init LDAP_P(( void ));
|
1999-05-28 06:25:55 +08:00
|
|
|
|
|
|
|
|
1999-01-26 08:27:51 +08:00
|
|
|
/*
|
|
|
|
* in print.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_log_printf LDAP_P((LDAP *ld, int level, const char *fmt, ...)) LDAP_GCCATTR((format(printf, 3, 4)));
|
1998-11-04 09:41:00 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/*
|
|
|
|
* in cache.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (void) ldap_add_request_to_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype,
|
1998-10-25 09:41:42 +08:00
|
|
|
BerElement *request ));
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (void) ldap_add_result_to_cache LDAP_P(( LDAP *ld, LDAPMessage *result ));
|
|
|
|
LDAP_F (int) ldap_check_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype, BerElement *request ));
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-12-23 10:30:44 +08:00
|
|
|
/*
|
|
|
|
* in controls.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_int_get_controls LDAP_P((
|
1999-05-19 09:12:33 +08:00
|
|
|
BerElement *be,
|
1999-05-19 14:13:44 +08:00
|
|
|
LDAPControl ***ctrlsp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_int_put_controls LDAP_P((
|
1999-05-19 09:12:33 +08:00
|
|
|
LDAP *ld,
|
1999-07-13 13:13:33 +08:00
|
|
|
LDAPControl *const *ctrls,
|
1999-05-19 09:12:33 +08:00
|
|
|
BerElement *ber ));
|
1998-12-23 10:30:44 +08:00
|
|
|
|
2001-07-06 11:13:42 +08:00
|
|
|
LDAP_F (int) ldap_int_client_controls LDAP_P((
|
|
|
|
LDAP *ld,
|
|
|
|
LDAPControl **ctrlp ));
|
2000-06-08 03:39:49 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/*
|
2001-12-20 05:55:52 +08:00
|
|
|
* in dsparse.c
|
1998-08-09 08:43:13 +08:00
|
|
|
*/
|
2001-12-20 05:55:52 +08:00
|
|
|
LDAP_F (int) ldap_int_next_line_tokens LDAP_P(( char **bufp, ber_len_t *blenp, char ***toksp ));
|
|
|
|
|
2001-12-20 05:46:34 +08:00
|
|
|
#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
|
2001-12-20 05:55:52 +08:00
|
|
|
/*
|
|
|
|
* in kerberos.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (char *) ldap_get_kerberosv4_credentials LDAP_P((
|
1999-05-19 09:53:09 +08:00
|
|
|
LDAP *ld,
|
|
|
|
LDAP_CONST char *who,
|
|
|
|
LDAP_CONST char *service,
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_len_t *len ));
|
2001-12-20 05:55:52 +08:00
|
|
|
|
2000-01-09 02:42:11 +08:00
|
|
|
#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* in open.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_open_defconn( LDAP *ld );
|
2000-07-14 06:54:38 +08:00
|
|
|
LDAP_F (int) ldap_int_open_connection( LDAP *ld,
|
|
|
|
LDAPConn *conn, LDAPURLDesc *srvlist, int async );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* in os-ip.c
|
|
|
|
*/
|
2001-12-07 12:03:25 +08:00
|
|
|
LDAP_V (int) ldap_int_tblsize;
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_int_timeval_dup( struct timeval **dest, const struct timeval *tm );
|
2000-07-14 06:54:38 +08:00
|
|
|
LDAP_F (int) ldap_connect_to_host( LDAP *ld, Sockbuf *sb,
|
|
|
|
int proto, const char *host, unsigned long address, int port,
|
|
|
|
int async );
|
1999-07-13 14:27:47 +08:00
|
|
|
|
2001-06-25 15:33:42 +08:00
|
|
|
#if defined(LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND) || \
|
|
|
|
defined(HAVE_TLS) || defined(HAVE_CYRUS_SASL)
|
2000-07-14 06:54:38 +08:00
|
|
|
LDAP_V (char *) ldap_int_hostname;
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (char *) ldap_host_connected_to( Sockbuf *sb );
|
2001-06-25 15:33:42 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (void) ldap_int_ip_init( void );
|
2001-12-24 14:36:44 +08:00
|
|
|
LDAP_F (int) ldap_int_select( LDAP *ld, struct timeval *timeout );
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (void *) ldap_new_select_info( void );
|
|
|
|
LDAP_F (void) ldap_free_select_info( void *sip );
|
|
|
|
LDAP_F (void) ldap_mark_select_write( LDAP *ld, Sockbuf *sb );
|
|
|
|
LDAP_F (void) ldap_mark_select_read( LDAP *ld, Sockbuf *sb );
|
|
|
|
LDAP_F (void) ldap_mark_select_clear( LDAP *ld, Sockbuf *sb );
|
|
|
|
LDAP_F (int) ldap_is_read_ready( LDAP *ld, Sockbuf *sb );
|
|
|
|
LDAP_F (int) ldap_is_write_ready( LDAP *ld, Sockbuf *sb );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2000-01-02 09:21:25 +08:00
|
|
|
/*
|
|
|
|
* in os-local.c
|
|
|
|
*/
|
2000-09-15 10:55:54 +08:00
|
|
|
#ifdef LDAP_PF_LOCAL
|
|
|
|
LDAP_F (int) ldap_connect_to_path( LDAP *ld, Sockbuf *sb,
|
2000-07-14 06:54:38 +08:00
|
|
|
const char *path, int async );
|
2000-09-15 10:55:54 +08:00
|
|
|
#endif /* LDAP_PF_LOCAL */
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* in request.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (ber_int_t) ldap_send_initial_request( LDAP *ld, ber_tag_t msgtype,
|
1999-05-19 09:12:33 +08:00
|
|
|
const char *dn, BerElement *ber );
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (BerElement *) ldap_alloc_ber_with_options( LDAP *ld );
|
|
|
|
LDAP_F (void) ldap_set_ber_options( LDAP *ld, BerElement *ber );
|
|
|
|
|
|
|
|
LDAP_F (int) ldap_send_server_request( LDAP *ld, BerElement *ber, ber_int_t msgid, LDAPRequest *parentreq, LDAPURLDesc *srvlist, LDAPConn *lc, LDAPreqinfo *bind );
|
|
|
|
LDAP_F (LDAPConn *) ldap_new_connection( LDAP *ld, LDAPURLDesc *srvlist, int use_ldsb, int connect, LDAPreqinfo *bind );
|
|
|
|
LDAP_F (LDAPRequest *) ldap_find_request_by_msgid( LDAP *ld, ber_int_t msgid );
|
|
|
|
LDAP_F (void) ldap_free_request( LDAP *ld, LDAPRequest *lr );
|
|
|
|
LDAP_F (void) ldap_free_connection( LDAP *ld, LDAPConn *lc, int force, int unbind );
|
|
|
|
LDAP_F (void) ldap_dump_connection( LDAP *ld, LDAPConn *lconns, int all );
|
|
|
|
LDAP_F (void) ldap_dump_requests_and_responses( LDAP *ld );
|
2001-01-11 07:48:24 +08:00
|
|
|
LDAP_F (int) ldap_chase_referrals( LDAP *ld, LDAPRequest *lr,
|
|
|
|
char **errstrp, int sref, int *hadrefp );
|
|
|
|
LDAP_F (int) ldap_chase_v3referrals( LDAP *ld, LDAPRequest *lr,
|
|
|
|
char **refs, int sref, char **referralsp, int *hadrefp );
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_append_referral( LDAP *ld, char **referralsp, char *s );
|
2002-08-29 20:12:36 +08:00
|
|
|
LDAP_F (int) ldap_int_flush_request( LDAP *ld, LDAPRequest *lr );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
/*
|
|
|
|
* in result.c:
|
|
|
|
*/
|
2000-06-24 09:40:39 +08:00
|
|
|
LDAP_F (char *) ldap_int_msgtype2str( ber_tag_t tag );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* in search.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (BerElement *) ldap_build_search_req LDAP_P((
|
1999-05-22 03:20:25 +08:00
|
|
|
LDAP *ld,
|
1999-06-19 07:53:05 +08:00
|
|
|
const char *base,
|
|
|
|
ber_int_t scope,
|
|
|
|
const char *filter,
|
|
|
|
char **attrs,
|
|
|
|
ber_int_t attrsonly,
|
1999-05-22 03:20:25 +08:00
|
|
|
LDAPControl **sctrls,
|
|
|
|
LDAPControl **cctrls,
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_int_t timelimit,
|
|
|
|
ber_int_t sizelimit ));
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* in unbind.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_ld_free LDAP_P((
|
1999-05-19 09:12:33 +08:00
|
|
|
LDAP *ld,
|
|
|
|
int close,
|
|
|
|
LDAPControl **sctrls,
|
|
|
|
LDAPControl **cctrls ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_send_unbind LDAP_P((
|
1999-05-19 09:12:33 +08:00
|
|
|
LDAP *ld,
|
|
|
|
Sockbuf *sb,
|
|
|
|
LDAPControl **sctrls,
|
|
|
|
LDAPControl **cctrls ));
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-12-08 02:42:25 +08:00
|
|
|
/*
|
|
|
|
* in url.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (LDAPURLDesc *) ldap_url_dup LDAP_P((
|
1999-12-08 02:42:25 +08:00
|
|
|
LDAPURLDesc *ludp ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (LDAPURLDesc *) ldap_url_duplist LDAP_P((
|
1999-12-08 02:42:25 +08:00
|
|
|
LDAPURLDesc *ludlist ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_url_parselist LDAP_P((
|
1999-12-08 02:42:25 +08:00
|
|
|
LDAPURLDesc **ludlist,
|
|
|
|
const char *url ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (int) ldap_url_parsehosts LDAP_P((
|
1999-12-08 02:42:25 +08:00
|
|
|
LDAPURLDesc **ludlist,
|
2000-09-02 07:03:17 +08:00
|
|
|
const char *hosts,
|
|
|
|
int port ));
|
1999-12-08 02:42:25 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (char *) ldap_url_list2hosts LDAP_P((
|
1999-12-08 02:42:25 +08:00
|
|
|
LDAPURLDesc *ludlist ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (char *) ldap_url_list2urls LDAP_P((
|
1999-12-08 02:42:25 +08:00
|
|
|
LDAPURLDesc *ludlist ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F (void) ldap_free_urllist LDAP_P((
|
1999-12-08 02:42:25 +08:00
|
|
|
LDAPURLDesc *ludlist ));
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
/*
|
|
|
|
* in cyrus.c
|
|
|
|
*/
|
2001-06-15 08:14:56 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
LDAP_F (int) ldap_int_sasl_init LDAP_P(( void ));
|
|
|
|
|
|
|
|
LDAP_F (int) ldap_int_sasl_open LDAP_P((
|
|
|
|
LDAP *ld, LDAPConn *conn,
|
|
|
|
const char* host, ber_len_t ssf ));
|
|
|
|
LDAP_F (int) ldap_int_sasl_close LDAP_P(( LDAP *ld, LDAPConn *conn ));
|
|
|
|
|
2000-11-01 07:00:35 +08:00
|
|
|
LDAP_F (int) ldap_int_sasl_external LDAP_P((
|
2001-09-09 11:42:26 +08:00
|
|
|
LDAP *ld, LDAPConn *conn,
|
|
|
|
const char* authid, ber_len_t ssf ));
|
2000-11-01 07:00:35 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
LDAP_F (int) ldap_int_sasl_get_option LDAP_P(( LDAP *ld,
|
|
|
|
int option, void *arg ));
|
|
|
|
LDAP_F (int) ldap_int_sasl_set_option LDAP_P(( LDAP *ld,
|
|
|
|
int option, void *arg ));
|
|
|
|
LDAP_F (int) ldap_int_sasl_config LDAP_P(( struct ldapoptions *lo,
|
|
|
|
int option, const char *arg ));
|
|
|
|
|
|
|
|
LDAP_F (int) ldap_int_sasl_bind LDAP_P((
|
2001-06-25 15:33:42 +08:00
|
|
|
LDAP *ld,
|
2000-07-17 08:56:29 +08:00
|
|
|
const char *,
|
|
|
|
const char *,
|
|
|
|
LDAPControl **, LDAPControl **,
|
2000-07-18 05:23:59 +08:00
|
|
|
|
|
|
|
/* should be passed in client controls */
|
|
|
|
unsigned flags,
|
2000-07-17 08:56:29 +08:00
|
|
|
LDAP_SASL_INTERACT_PROC *interact,
|
2000-07-18 05:23:59 +08:00
|
|
|
void *defaults ));
|
2000-07-14 06:54:38 +08:00
|
|
|
|
2002-01-03 05:59:26 +08:00
|
|
|
/* in schema.c */
|
|
|
|
LDAP_F (char *) ldap_int_parse_numericoid LDAP_P((
|
|
|
|
const char **sp,
|
|
|
|
int *code,
|
|
|
|
const int flags ));
|
2001-06-15 08:14:56 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
/*
|
|
|
|
* in tls.c
|
|
|
|
*/
|
2001-06-25 15:33:42 +08:00
|
|
|
LDAP_F (int) ldap_int_tls_config LDAP_P(( LDAP *ld,
|
|
|
|
int option, const char *arg ));
|
1999-12-08 02:42:25 +08:00
|
|
|
|
2001-06-26 03:17:42 +08:00
|
|
|
LDAP_F (int) ldap_int_tls_start LDAP_P(( LDAP *ld,
|
2001-08-28 04:22:28 +08:00
|
|
|
LDAPConn *conn, LDAPURLDesc *srv ));
|
2001-06-26 03:17:42 +08:00
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
LDAP_END_DECL
|
1998-10-26 09:49:56 +08:00
|
|
|
|
|
|
|
#endif /* _LDAP_INT_H */
|