1 #ifndef _INCLUDE_ADS_H_
2 #define _INCLUDE_ADS_H_
4 header for ads (active directory) library routines
6 basically this is a wrapper around ldap
9 #include "libads/ads_status.h"
14 struct ads_saslwrap_ops
{
16 ADS_STATUS (*wrap
)(struct ads_struct
*, uint8
*buf
, uint32 len
);
17 ADS_STATUS (*unwrap
)(struct ads_struct
*);
18 void (*disconnect
)(struct ads_struct
*);
21 enum ads_saslwrap_type
{
22 ADS_SASLWRAP_TYPE_PLAIN
= 1,
23 ADS_SASLWRAP_TYPE_SIGN
= 2,
24 ADS_SASLWRAP_TYPE_SEAL
= 4
27 typedef struct ads_struct
{
28 int is_mine
; /* do I own this structure's memory? */
30 /* info needed to find the server */
35 int foreign
; /* set to 1 if connecting to a foreign
37 bool gc
; /* Is this a global catalog server? */
40 /* info needed to authenticate */
53 /* info derived from the servers config */
55 uint32 flags
; /* cldap flags identifying the services. */
58 char *ldap_server_name
;
59 char *server_site_name
;
60 char *client_site_name
;
67 /* info about the current LDAP connection */
71 struct sockaddr_storage ss
; /* the ip of the active connection, if any */
72 time_t last_attempt
; /* last attempt to reconnect, monotonic clock */
75 enum ads_saslwrap_type wrap_type
;
77 #ifdef HAVE_LDAP_SASL_WRAPPING
78 Sockbuf_IO_Desc
*sbiod
; /* lowlevel state for LDAP wrapping */
79 #endif /* HAVE_LDAP_SASL_WRAPPING */
81 const struct ads_saslwrap_ops
*wrap_ops
;
82 void *wrap_private_data
;
87 #define ADS_SASL_WRAPPING_IN_MAX_WRAPPED 0x0FFFFFFF
96 #define ADS_SASL_WRAPPING_OUT_MAX_WRAPPED 0x00A00000
103 #endif /* HAVE_LDAP */
107 typedef LDAPMod
**ADS_MODLIST
;
109 typedef void **ADS_MODLIST
;
112 /* time between reconnect attempts */
113 #define ADS_RECONNECT_TIME 5
115 /* ldap control oids */
116 #define ADS_PAGE_CTL_OID "1.2.840.113556.1.4.319"
117 #define ADS_NO_REFERRALS_OID "1.2.840.113556.1.4.1339"
118 #define ADS_SERVER_SORT_OID "1.2.840.113556.1.4.473"
119 #define ADS_PERMIT_MODIFY_OID "1.2.840.113556.1.4.1413"
120 #define ADS_ASQ_OID "1.2.840.113556.1.4.1504"
121 #define ADS_EXTENDED_DN_OID "1.2.840.113556.1.4.529"
122 #define ADS_SD_FLAGS_OID "1.2.840.113556.1.4.801"
124 /* ldap bitwise searches */
125 #define ADS_LDAP_MATCHING_RULE_BIT_AND "1.2.840.113556.1.4.803"
126 #define ADS_LDAP_MATCHING_RULE_BIT_OR "1.2.840.113556.1.4.804"
128 #define ADS_PINGS 0x0000FFFF /* Ping response */
130 enum ads_extended_dn_flags
{
131 ADS_EXTENDED_DN_HEX_STRING
= 0,
132 ADS_EXTENDED_DN_STRING
= 1 /* not supported on win2k */
135 /* this is probably not very well suited to pass other controls generically but
136 * is good enough for the extended dn control where it is only used for atm */
144 #include "libads/ads_proto.h"
147 #include "libads/ads_ldap_protos.h"
150 #include "libads/kerberos_proto.h"
152 #endif /* _INCLUDE_ADS_H_ */