2 Unix SMB/CIFS implementation.
4 Some Helpful wrappers on LDAP
6 Copyright (C) Andrew Tridgell 2001
7 Copyright (C) Guenther Deschner 2006,2007
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "lib/param/loadparm.h"
29 static ADS_STATUS
ads_ranged_search_internal(ADS_STRUCT
*ads
,
36 const char *range_attr
,
44 a wrapper around ldap_search_s that retries depending on the error code
45 this is supposed to catch dropped connections and auto-reconnect
47 static ADS_STATUS
ads_do_search_retry_internal(ADS_STRUCT
*ads
, const char *bind_path
, int scope
,
49 const char **attrs
, void *args
,
52 ADS_STATUS status
= ADS_SUCCESS
;
59 time_mono(NULL
) - ads
->ldap
.last_attempt
< ADS_RECONNECT_TIME
) {
60 return ADS_ERROR(LDAP_SERVER_DOWN
);
63 bp
= SMB_STRDUP(bind_path
);
66 return ADS_ERROR(LDAP_NO_MEMORY
);
71 /* when binding anonymously, we cannot use the paged search LDAP
72 * control - Guenther */
74 if (ads
->auth
.flags
& ADS_AUTH_ANON_BIND
) {
75 status
= ads_do_search(ads
, bp
, scope
, expr
, attrs
, res
);
77 status
= ads_do_search_all_args(ads
, bp
, scope
, expr
, attrs
, args
, res
);
79 if (ADS_ERR_OK(status
)) {
80 DEBUG(5,("Search for %s in <%s> gave %d replies\n",
81 expr
, bp
, ads_count_replies(ads
, *res
)));
88 if (NT_STATUS_EQUAL(ads_ntstatus(status
), NT_STATUS_IO_TIMEOUT
) && ads
->config
.ldap_page_size
>= 250) {
89 int new_page_size
= (ads
->config
.ldap_page_size
/ 2);
90 DEBUG(1, ("Reducing LDAP page size from %d to %d due to IO_TIMEOUT\n",
91 ads
->config
.ldap_page_size
, new_page_size
));
92 ads
->config
.ldap_page_size
= new_page_size
;
96 ads_msgfree(ads
, *res
);
99 DEBUG(3,("Reopening ads connection to realm '%s' after error %s\n",
100 ads
->config
.realm
, ads_errstr(status
)));
103 status
= ads_connect(ads
);
105 if (!ADS_ERR_OK(status
)) {
106 DEBUG(1,("ads_search_retry: failed to reconnect (%s)\n",
107 ads_errstr(status
)));
115 /* when binding anonymously, we cannot use the paged search LDAP
116 * control - Guenther */
118 if (ads
->auth
.flags
& ADS_AUTH_ANON_BIND
) {
119 status
= ads_do_search(ads
, bp
, scope
, expr
, attrs
, res
);
121 status
= ads_do_search_all_args(ads
, bp
, scope
, expr
, attrs
, args
, res
);
124 if (ADS_ERR_OK(status
)) {
125 DEBUG(5,("Search for filter: %s, base: %s gave %d replies\n",
126 expr
, bp
, ads_count_replies(ads
, *res
)));
133 if (!ADS_ERR_OK(status
)) {
134 DEBUG(1,("ads reopen failed after error %s\n",
135 ads_errstr(status
)));
140 ADS_STATUS
ads_do_search_retry(ADS_STRUCT
*ads
, const char *bind_path
,
141 int scope
, const char *expr
,
142 const char **attrs
, LDAPMessage
**res
)
144 return ads_do_search_retry_internal(ads
, bind_path
, scope
, expr
, attrs
, NULL
, res
);
147 static ADS_STATUS
ads_do_search_retry_args(ADS_STRUCT
*ads
, const char *bind_path
,
148 int scope
, const char *expr
,
149 const char **attrs
, void *args
,
152 return ads_do_search_retry_internal(ads
, bind_path
, scope
, expr
, attrs
, args
, res
);
156 ADS_STATUS
ads_search_retry(ADS_STRUCT
*ads
, LDAPMessage
**res
,
157 const char *expr
, const char **attrs
)
159 return ads_do_search_retry(ads
, ads
->config
.bind_path
, LDAP_SCOPE_SUBTREE
,
163 ADS_STATUS
ads_search_retry_dn(ADS_STRUCT
*ads
, LDAPMessage
**res
,
167 return ads_do_search_retry(ads
, dn
, LDAP_SCOPE_BASE
,
168 "(objectclass=*)", attrs
, res
);
171 ADS_STATUS
ads_search_retry_dn_sd_flags(ADS_STRUCT
*ads
, LDAPMessage
**res
,
178 args
.control
= ADS_SD_FLAGS_OID
;
180 args
.critical
= True
;
182 return ads_do_search_retry_args(ads
, dn
, LDAP_SCOPE_BASE
,
183 "(objectclass=*)", attrs
, &args
, res
);
186 ADS_STATUS
ads_search_retry_extended_dn_ranged(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
189 enum ads_extended_dn_flags flags
,
195 args
.control
= ADS_EXTENDED_DN_OID
;
197 args
.critical
= True
;
199 /* we can only range process one attribute */
200 if (!attrs
|| !attrs
[0] || attrs
[1]) {
201 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
204 return ads_ranged_search(ads
, mem_ctx
, LDAP_SCOPE_BASE
, dn
,
205 "(objectclass=*)", &args
, attrs
[0],
206 strings
, num_strings
);
210 ADS_STATUS
ads_search_retry_sid(ADS_STRUCT
*ads
, LDAPMessage
**res
,
211 const struct dom_sid
*sid
,
214 char *dn
, *sid_string
;
217 sid_string
= sid_binstring_hex(sid
);
218 if (sid_string
== NULL
) {
219 return ADS_ERROR(LDAP_NO_MEMORY
);
222 if (!asprintf(&dn
, "<SID=%s>", sid_string
)) {
223 SAFE_FREE(sid_string
);
224 return ADS_ERROR(LDAP_NO_MEMORY
);
227 status
= ads_do_search_retry(ads
, dn
, LDAP_SCOPE_BASE
,
228 "(objectclass=*)", attrs
, res
);
230 SAFE_FREE(sid_string
);
234 ADS_STATUS
ads_ranged_search(ADS_STRUCT
*ads
,
240 const char *range_attr
,
248 bool more_values
= False
;
253 attrs
= talloc_array(mem_ctx
, const char *, 3);
254 ADS_ERROR_HAVE_NO_MEMORY(attrs
);
256 attrs
[0] = talloc_strdup(mem_ctx
, range_attr
);
257 attrs
[1] = talloc_strdup(mem_ctx
, "usnChanged");
260 ADS_ERROR_HAVE_NO_MEMORY(attrs
[0]);
261 ADS_ERROR_HAVE_NO_MEMORY(attrs
[1]);
264 status
= ads_ranged_search_internal(ads
, mem_ctx
,
266 attrs
, args
, range_attr
,
267 strings
, num_strings
,
268 &first_usn
, &num_retries
,
271 if (NT_STATUS_EQUAL(STATUS_MORE_ENTRIES
, ads_ntstatus(status
))) {
275 if (!ADS_ERR_OK(status
)) {
281 } while (more_values
);
284 DEBUG(10,("returning with %d strings\n", (int)*num_strings
));
289 static ADS_STATUS
ads_ranged_search_internal(ADS_STRUCT
*ads
,
296 const char *range_attr
,
303 LDAPMessage
*res
= NULL
;
308 DEBUG(10, ("Searching for attrs[0] = %s, attrs[1] = %s\n", attrs
[0], attrs
[1]));
310 *more_values
= False
;
312 status
= ads_do_search_retry_internal(ads
, base
, scope
, filter
, attrs
, args
, &res
);
314 if (!ADS_ERR_OK(status
)) {
315 DEBUG(1,("ads_search: %s\n",
316 ads_errstr(status
)));
321 return ADS_ERROR(LDAP_NO_MEMORY
);
324 count
= ads_count_replies(ads
, res
);
326 ads_msgfree(ads
, res
);
327 return ADS_ERROR(LDAP_SUCCESS
);
330 if (*num_strings
== 0) {
331 if (!ads_pull_uint32(ads
, res
, "usnChanged", first_usn
)) {
332 DEBUG(1, ("could not pull first usnChanged!\n"));
333 ads_msgfree(ads
, res
);
334 return ADS_ERROR(LDAP_NO_MEMORY
);
338 if (!ads_pull_uint32(ads
, res
, "usnChanged", ¤t_usn
)) {
339 DEBUG(1, ("could not pull current usnChanged!\n"));
340 ads_msgfree(ads
, res
);
341 return ADS_ERROR(LDAP_NO_MEMORY
);
344 if (*first_usn
!= current_usn
) {
345 DEBUG(5, ("USN on this record changed"
346 " - restarting search\n"));
347 if (*num_retries
< 5) {
350 ads_msgfree(ads
, res
);
351 return ADS_ERROR_NT(STATUS_MORE_ENTRIES
);
353 DEBUG(5, ("USN on this record changed"
354 " - restarted search too many times, aborting!\n"));
355 ads_msgfree(ads
, res
);
356 return ADS_ERROR(LDAP_NO_MEMORY
);
360 *strings
= ads_pull_strings_range(ads
, mem_ctx
, res
,
367 ads_msgfree(ads
, res
);
369 /* paranoia checks */
370 if (*strings
== NULL
&& *more_values
) {
371 DEBUG(0,("no strings found but more values???\n"));
372 return ADS_ERROR(LDAP_NO_MEMORY
);
374 if (*num_strings
== 0 && *more_values
) {
375 DEBUG(0,("no strings found but more values???\n"));
376 return ADS_ERROR(LDAP_NO_MEMORY
);
379 return (*more_values
) ? ADS_ERROR_NT(STATUS_MORE_ENTRIES
) : ADS_ERROR(LDAP_SUCCESS
);