2 Unix SMB/CIFS implementation.
3 ads (active directory) utility library
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Remus Koos 2001
6 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002
7 Copyright (C) Guenther Deschner 2005
8 Copyright (C) Gerald Carter 2006
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #ifndef _LIBADS_ADS_LDAP_PROTOS_H_
25 #define _LIBADS_ADS_LDAP_PROTOS_H_
31 void ads_msgfree(ADS_STRUCT
*ads
, LDAPMessage
*msg
);
32 char *ads_get_dn(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, LDAPMessage
*msg
);
34 char *ads_pull_string(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, LDAPMessage
*msg
,
36 char **ads_pull_strings(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
37 LDAPMessage
*msg
, const char *field
,
39 char **ads_pull_strings_range(ADS_STRUCT
*ads
,
41 LDAPMessage
*msg
, const char *field
,
42 char **current_strings
,
43 const char **next_attribute
,
46 bool ads_pull_uint32(ADS_STRUCT
*ads
, LDAPMessage
*msg
, const char *field
,
48 bool ads_pull_guid(ADS_STRUCT
*ads
, LDAPMessage
*msg
, struct GUID
*guid
);
49 bool ads_pull_sid(ADS_STRUCT
*ads
, LDAPMessage
*msg
, const char *field
,
51 int ads_pull_sids(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
52 LDAPMessage
*msg
, const char *field
, struct dom_sid
**sids
);
53 bool ads_pull_sd(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
54 LDAPMessage
*msg
, const char *field
, struct security_descriptor
**sd
);
55 char *ads_pull_username(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
57 int ads_pull_sids_from_extendeddn(ADS_STRUCT
*ads
,
61 enum ads_extended_dn_flags flags
,
62 struct dom_sid
**sids
);
64 ADS_STATUS
ads_find_machine_acct(ADS_STRUCT
*ads
, LDAPMessage
**res
,
66 ADS_STATUS
ads_find_printer_on_server(ADS_STRUCT
*ads
, LDAPMessage
**res
,
68 const char *servername
);
69 ADS_STATUS
ads_find_printers(ADS_STRUCT
*ads
, LDAPMessage
**res
);
70 ADS_STATUS
ads_find_user_acct(ADS_STRUCT
*ads
, LDAPMessage
**res
,
73 ADS_STATUS
ads_do_search(ADS_STRUCT
*ads
, const char *bind_path
, int scope
,
75 const char **attrs
, LDAPMessage
**res
);
76 ADS_STATUS
ads_search(ADS_STRUCT
*ads
, LDAPMessage
**res
,
77 const char *expr
, const char **attrs
);
78 ADS_STATUS
ads_search_dn(ADS_STRUCT
*ads
, LDAPMessage
**res
,
79 const char *dn
, const char **attrs
);
80 ADS_STATUS
ads_do_search_all_args(ADS_STRUCT
*ads
, const char *bind_path
,
81 int scope
, const char *expr
,
82 const char **attrs
, void *args
,
84 ADS_STATUS
ads_do_search_all(ADS_STRUCT
*ads
, const char *bind_path
,
85 int scope
, const char *expr
,
86 const char **attrs
, LDAPMessage
**res
);
87 ADS_STATUS
ads_do_search_retry(ADS_STRUCT
*ads
, const char *bind_path
,
90 const char **attrs
, LDAPMessage
**res
);
91 ADS_STATUS
ads_search_retry(ADS_STRUCT
*ads
, LDAPMessage
**res
,
92 const char *expr
, const char **attrs
);
93 ADS_STATUS
ads_search_retry_dn(ADS_STRUCT
*ads
, LDAPMessage
**res
,
96 ADS_STATUS
ads_search_retry_extended_dn_ranged(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
99 enum ads_extended_dn_flags flags
,
101 size_t *num_strings
);
102 ADS_STATUS
ads_search_retry_sid(ADS_STRUCT
*ads
, LDAPMessage
**res
,
103 const struct dom_sid
*sid
,
107 LDAPMessage
*ads_first_entry(ADS_STRUCT
*ads
, LDAPMessage
*res
);
108 LDAPMessage
*ads_next_entry(ADS_STRUCT
*ads
, LDAPMessage
*res
);
109 LDAPMessage
*ads_first_message(ADS_STRUCT
*ads
, LDAPMessage
*res
);
110 LDAPMessage
*ads_next_message(ADS_STRUCT
*ads
, LDAPMessage
*res
);
111 void ads_process_results(ADS_STRUCT
*ads
, LDAPMessage
*res
,
112 bool (*fn
)(ADS_STRUCT
*,char *, void **, void *),
114 void ads_dump(ADS_STRUCT
*ads
, LDAPMessage
*res
);
116 struct GROUP_POLICY_OBJECT
;
117 ADS_STATUS
ads_parse_gpo(ADS_STRUCT
*ads
,
121 struct GROUP_POLICY_OBJECT
*gpo
);
122 ADS_STATUS
ads_search_retry_dn_sd_flags(ADS_STRUCT
*ads
, LDAPMessage
**res
,
126 ADS_STATUS
ads_do_search_all_sd_flags(ADS_STRUCT
*ads
, const char *bind_path
,
127 int scope
, const char *expr
,
128 const char **attrs
, uint32 sd_flags
,
130 ADS_STATUS
ads_get_tokensids(ADS_STRUCT
*ads
,
133 struct dom_sid
*user_sid
,
134 struct dom_sid
*primary_group_sid
,
135 struct dom_sid
**sids
,
137 ADS_STATUS
ads_get_joinable_ous(ADS_STRUCT
*ads
,
142 #endif /* _LIBADS_ADS_LDAP_PROTOS_H_ */