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/>.
25 #include "lib/ldb/include/includes.h"
31 * @brief basic ldap client-side routines for ads server communications
33 * The routines contained here should do the necessary ldap calls for
36 * Important note: attribute names passed into ads_ routines must
37 * already be in UTF-8 format. We do not convert them because in almost
38 * all cases, they are just ascii (which is represented with the same
39 * codepoints in UTF-8). This may have to change at some point
43 #define LDAP_SERVER_TREE_DELETE_OID "1.2.840.113556.1.4.805"
45 static SIG_ATOMIC_T gotalarm
;
47 /***************************************************************
48 Signal function to tell us we timed out.
49 ****************************************************************/
51 static void gotalarm_sig(void)
56 LDAP
*ldap_open_with_timeout(const char *server
, int port
, unsigned int to
)
61 DEBUG(10, ("Opening connection to LDAP server '%s:%d', timeout "
62 "%u seconds\n", server
, port
, to
));
66 CatchSignal(SIGALRM
, SIGNAL_CAST gotalarm_sig
);
68 /* End setup timeout. */
70 ldp
= ldap_open(server
, port
);
73 DEBUG(2,("Could not open connection to LDAP server %s:%d: %s\n",
74 server
, port
, strerror(errno
)));
76 DEBUG(10, ("Connected to LDAP server '%s:%d'\n", server
, port
));
79 /* Teardown timeout. */
80 CatchSignal(SIGALRM
, SIGNAL_CAST SIG_IGN
);
86 static int ldap_search_with_timeout(LDAP
*ld
,
87 LDAP_CONST
char *base
,
89 LDAP_CONST
char *filter
,
97 struct timeval timeout
;
100 /* Setup timeout for the ldap_search_ext_s call - local and remote. */
101 timeout
.tv_sec
= lp_ldap_timeout();
104 /* Setup alarm timeout.... Do we need both of these ? JRA. */
106 CatchSignal(SIGALRM
, SIGNAL_CAST gotalarm_sig
);
107 alarm(lp_ldap_timeout());
108 /* End setup timeout. */
110 result
= ldap_search_ext_s(ld
, base
, scope
, filter
, attrs
,
111 attrsonly
, sctrls
, cctrls
, &timeout
,
114 /* Teardown timeout. */
115 CatchSignal(SIGALRM
, SIGNAL_CAST SIG_IGN
);
119 return LDAP_TIMELIMIT_EXCEEDED
;
124 /**********************************************
125 Do client and server sitename match ?
126 **********************************************/
128 bool ads_sitename_match(ADS_STRUCT
*ads
)
130 if (ads
->config
.server_site_name
== NULL
&&
131 ads
->config
.client_site_name
== NULL
) {
132 DEBUG(10,("ads_sitename_match: both null\n"));
135 if (ads
->config
.server_site_name
&&
136 ads
->config
.client_site_name
&&
137 strequal(ads
->config
.server_site_name
,
138 ads
->config
.client_site_name
)) {
139 DEBUG(10,("ads_sitename_match: name %s match\n", ads
->config
.server_site_name
));
142 DEBUG(10,("ads_sitename_match: no match between server: %s and client: %s\n",
143 ads
->config
.server_site_name
? ads
->config
.server_site_name
: "NULL",
144 ads
->config
.client_site_name
? ads
->config
.client_site_name
: "NULL"));
148 /**********************************************
149 Is this the closest DC ?
150 **********************************************/
152 bool ads_closest_dc(ADS_STRUCT
*ads
)
154 if (ads
->config
.flags
& NBT_SERVER_CLOSEST
) {
155 DEBUG(10,("ads_closest_dc: NBT_SERVER_CLOSEST flag set\n"));
159 /* not sure if this can ever happen */
160 if (ads_sitename_match(ads
)) {
161 DEBUG(10,("ads_closest_dc: NBT_SERVER_CLOSEST flag not set but sites match\n"));
165 if (ads
->config
.client_site_name
== NULL
) {
166 DEBUG(10,("ads_closest_dc: client belongs to no site\n"));
170 DEBUG(10,("ads_closest_dc: %s is not the closest DC\n",
171 ads
->config
.ldap_server_name
));
178 try a connection to a given ldap server, returning True and setting the servers IP
179 in the ads struct if successful
181 static bool ads_try_connect(ADS_STRUCT
*ads
, const char *server
, bool gc
)
184 struct NETLOGON_SAM_LOGON_RESPONSE_EX cldap_reply
;
185 TALLOC_CTX
*mem_ctx
= NULL
;
188 if (!server
|| !*server
) {
192 DEBUG(5,("ads_try_connect: sending CLDAP request to %s (realm: %s)\n",
193 server
, ads
->server
.realm
));
195 mem_ctx
= talloc_init("ads_try_connect");
197 DEBUG(0,("out of memory\n"));
201 /* this copes with inet_ntoa brokenness */
203 srv
= SMB_STRDUP(server
);
205 ZERO_STRUCT( cldap_reply
);
207 if ( !ads_cldap_netlogon_5(mem_ctx
, srv
, ads
->server
.realm
, &cldap_reply
) ) {
208 DEBUG(3,("ads_try_connect: CLDAP request %s failed.\n", srv
));
213 /* Check the CLDAP reply flags */
215 if ( !(cldap_reply
.server_type
& NBT_SERVER_LDAP
) ) {
216 DEBUG(1,("ads_try_connect: %s's CLDAP reply says it is not an LDAP server!\n",
222 /* Fill in the ads->config values */
224 SAFE_FREE(ads
->config
.realm
);
225 SAFE_FREE(ads
->config
.bind_path
);
226 SAFE_FREE(ads
->config
.ldap_server_name
);
227 SAFE_FREE(ads
->config
.server_site_name
);
228 SAFE_FREE(ads
->config
.client_site_name
);
229 SAFE_FREE(ads
->server
.workgroup
);
231 ads
->config
.flags
= cldap_reply
.server_type
;
232 ads
->config
.ldap_server_name
= SMB_STRDUP(cldap_reply
.pdc_dns_name
);
233 ads
->config
.realm
= SMB_STRDUP(cldap_reply
.dns_domain
);
234 strupper_m(ads
->config
.realm
);
235 ads
->config
.bind_path
= ads_build_dn(ads
->config
.realm
);
236 if (*cldap_reply
.server_site
) {
237 ads
->config
.server_site_name
=
238 SMB_STRDUP(cldap_reply
.server_site
);
240 if (*cldap_reply
.client_site
) {
241 ads
->config
.client_site_name
=
242 SMB_STRDUP(cldap_reply
.client_site
);
244 ads
->server
.workgroup
= SMB_STRDUP(cldap_reply
.domain
);
246 ads
->ldap
.port
= gc
? LDAP_GC_PORT
: LDAP_PORT
;
247 if (!interpret_string_addr(&ads
->ldap
.ss
, srv
, 0)) {
248 DEBUG(1,("ads_try_connect: unable to convert %s "
255 /* Store our site name. */
256 sitename_store( cldap_reply
.domain
, cldap_reply
.client_site
);
257 sitename_store( cldap_reply
.dns_domain
, cldap_reply
.client_site
);
262 TALLOC_FREE(mem_ctx
);
267 /**********************************************************************
268 Try to find an AD dc using our internal name resolution routines
269 Try the realm first and then then workgroup name if netbios is not
271 **********************************************************************/
273 static NTSTATUS
ads_find_dc(ADS_STRUCT
*ads
)
275 const char *c_domain
;
278 struct ip_service
*ip_list
;
281 bool got_realm
= False
;
282 bool use_own_domain
= False
;
284 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
286 /* if the realm and workgroup are both empty, assume they are ours */
289 c_realm
= ads
->server
.realm
;
291 if ( !c_realm
|| !*c_realm
) {
292 /* special case where no realm and no workgroup means our own */
293 if ( !ads
->server
.workgroup
|| !*ads
->server
.workgroup
) {
294 use_own_domain
= True
;
295 c_realm
= lp_realm();
299 if (c_realm
&& *c_realm
)
302 /* we need to try once with the realm name and fallback to the
303 netbios domain name if we fail (if netbios has not been disabled */
305 if ( !got_realm
&& !lp_disable_netbios() ) {
306 c_realm
= ads
->server
.workgroup
;
307 if (!c_realm
|| !*c_realm
) {
308 if ( use_own_domain
)
309 c_realm
= lp_workgroup();
313 if ( !c_realm
|| !*c_realm
) {
314 DEBUG(0,("ads_find_dc: no realm or workgroup! Don't know what to do\n"));
315 return NT_STATUS_INVALID_PARAMETER
; /* rather need MISSING_PARAMETER ... */
318 if ( use_own_domain
) {
319 c_domain
= lp_workgroup();
321 c_domain
= ads
->server
.workgroup
;
328 * In case of LDAP we use get_dc_name() as that
329 * creates the custom krb5.conf file
331 if (!(ads
->auth
.flags
& ADS_AUTH_NO_BIND
)) {
333 struct sockaddr_storage ip_out
;
335 DEBUG(6,("ads_find_dc: (ldap) looking for %s '%s'\n",
336 (got_realm
? "realm" : "domain"), realm
));
338 if (get_dc_name(domain
, realm
, srv_name
, &ip_out
)) {
340 * we call ads_try_connect() to fill in the
341 * ads->config details
343 if (ads_try_connect(ads
, srv_name
, false)) {
348 return NT_STATUS_NO_LOGON_SERVERS
;
351 sitename
= sitename_fetch(realm
);
355 DEBUG(6,("ads_find_dc: (cldap) looking for %s '%s'\n",
356 (got_realm
? "realm" : "domain"), realm
));
358 status
= get_sorted_dc_list(realm
, sitename
, &ip_list
, &count
, got_realm
);
359 if (!NT_STATUS_IS_OK(status
)) {
360 /* fall back to netbios if we can */
361 if ( got_realm
&& !lp_disable_netbios() ) {
370 /* if we fail this loop, then giveup since all the IP addresses returned were dead */
371 for ( i
=0; i
<count
; i
++ ) {
372 char server
[INET6_ADDRSTRLEN
];
374 print_sockaddr(server
, sizeof(server
), &ip_list
[i
].ss
);
376 if ( !NT_STATUS_IS_OK(check_negative_conn_cache(realm
, server
)) )
380 /* realm in this case is a workgroup name. We need
381 to ignore any IP addresses in the negative connection
382 cache that match ip addresses returned in the ad realm
383 case. It sucks that I have to reproduce the logic above... */
384 c_realm
= ads
->server
.realm
;
385 if ( !c_realm
|| !*c_realm
) {
386 if ( !ads
->server
.workgroup
|| !*ads
->server
.workgroup
) {
387 c_realm
= lp_realm();
390 if (c_realm
&& *c_realm
&&
391 !NT_STATUS_IS_OK(check_negative_conn_cache(c_realm
, server
))) {
392 /* Ensure we add the workgroup name for this
393 IP address as negative too. */
394 add_failed_connection_entry( realm
, server
, NT_STATUS_UNSUCCESSFUL
);
399 if ( ads_try_connect(ads
, server
, false) ) {
405 /* keep track of failures */
406 add_failed_connection_entry( realm
, server
, NT_STATUS_UNSUCCESSFUL
);
411 /* In case we failed to contact one of our closest DC on our site we
412 * need to try to find another DC, retry with a site-less SRV DNS query
416 DEBUG(1,("ads_find_dc: failed to find a valid DC on our site (%s), "
417 "trying to find another DC\n", sitename
));
419 namecache_delete(realm
, 0x1C);
423 return NT_STATUS_NO_LOGON_SERVERS
;
426 /*********************************************************************
427 *********************************************************************/
429 static NTSTATUS
ads_lookup_site(void)
431 ADS_STRUCT
*ads
= NULL
;
432 ADS_STATUS ads_status
;
433 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
435 ads
= ads_init(lp_realm(), NULL
, NULL
);
437 return NT_STATUS_NO_MEMORY
;
440 /* The NO_BIND here will find a DC and set the client site
441 but not establish the TCP connection */
443 ads
->auth
.flags
= ADS_AUTH_NO_BIND
;
444 ads_status
= ads_connect(ads
);
445 if (!ADS_ERR_OK(ads_status
)) {
446 DEBUG(4, ("ads_lookup_site: ads_connect to our realm failed! (%s)\n",
447 ads_errstr(ads_status
)));
449 nt_status
= ads_ntstatus(ads_status
);
458 /*********************************************************************
459 *********************************************************************/
461 static const char* host_dns_domain(const char *fqdn
)
463 const char *p
= fqdn
;
465 /* go to next char following '.' */
467 if ((p
= strchr_m(fqdn
, '.')) != NULL
) {
476 * Connect to the Global Catalog server
477 * @param ads Pointer to an existing ADS_STRUCT
478 * @return status of connection
480 * Simple wrapper around ads_connect() that fills in the
481 * GC ldap server information
484 ADS_STATUS
ads_connect_gc(ADS_STRUCT
*ads
)
486 TALLOC_CTX
*frame
= talloc_stackframe();
487 struct dns_rr_srv
*gcs_list
;
489 char *realm
= ads
->server
.realm
;
490 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
491 ADS_STATUS ads_status
= ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
494 char *sitename
= NULL
;
499 if ((sitename
= sitename_fetch(realm
)) == NULL
) {
501 sitename
= sitename_fetch(realm
);
505 /* We try once with a sitename and once without
506 (unless we don't have a sitename and then we're
509 if (sitename
== NULL
)
512 nt_status
= ads_dns_query_gcs(frame
, realm
, sitename
,
513 &gcs_list
, &num_gcs
);
517 if (!NT_STATUS_IS_OK(nt_status
)) {
518 ads_status
= ADS_ERROR_NT(nt_status
);
522 /* Loop until we get a successful connection or have gone
523 through them all. When connecting a GC server, make sure that
524 the realm is the server's DNS name and not the forest root */
526 for (i
=0; i
<num_gcs
; i
++) {
527 ads
->server
.gc
= true;
528 ads
->server
.ldap_server
= SMB_STRDUP(gcs_list
[i
].hostname
);
529 ads
->server
.realm
= SMB_STRDUP(host_dns_domain(ads
->server
.ldap_server
));
530 ads_status
= ads_connect(ads
);
531 if (ADS_ERR_OK(ads_status
)) {
532 /* Reset the bind_dn to "". A Global Catalog server
533 may host multiple domain trees in a forest.
534 Windows 2003 GC server will accept "" as the search
535 path to imply search all domain trees in the forest */
537 SAFE_FREE(ads
->config
.bind_path
);
538 ads
->config
.bind_path
= SMB_STRDUP("");
543 SAFE_FREE(ads
->server
.ldap_server
);
544 SAFE_FREE(ads
->server
.realm
);
547 TALLOC_FREE(gcs_list
);
553 talloc_destroy(frame
);
560 * Connect to the LDAP server
561 * @param ads Pointer to an existing ADS_STRUCT
562 * @return status of connection
564 ADS_STATUS
ads_connect(ADS_STRUCT
*ads
)
566 int version
= LDAP_VERSION3
;
569 char addr
[INET6_ADDRSTRLEN
];
571 ZERO_STRUCT(ads
->ldap
);
572 ads
->ldap
.last_attempt
= time(NULL
);
573 ads
->ldap
.wrap_type
= ADS_SASLWRAP_TYPE_PLAIN
;
575 /* try with a user specified server */
577 if (DEBUGLEVEL
>= 11) {
578 char *s
= NDR_PRINT_STRUCT_STRING(talloc_tos(), ads_struct
, ads
);
579 DEBUG(11,("ads_connect: entering\n"));
580 DEBUGADD(11,("%s\n", s
));
584 if (ads
->server
.ldap_server
)
586 if (ads_try_connect(ads
, ads
->server
.ldap_server
, ads
->server
.gc
)) {
590 /* The choice of which GC use is handled one level up in
591 ads_connect_gc(). If we continue on from here with
592 ads_find_dc() we will get GC searches on port 389 which
593 doesn't work. --jerry */
595 if (ads
->server
.gc
== true) {
596 return ADS_ERROR(LDAP_OPERATIONS_ERROR
);
600 ntstatus
= ads_find_dc(ads
);
601 if (NT_STATUS_IS_OK(ntstatus
)) {
605 status
= ADS_ERROR_NT(ntstatus
);
610 print_sockaddr(addr
, sizeof(addr
), &ads
->ldap
.ss
);
611 DEBUG(3,("Successfully contacted LDAP server %s\n", addr
));
613 if (!ads
->auth
.user_name
) {
614 /* Must use the userPrincipalName value here or sAMAccountName
615 and not servicePrincipalName; found by Guenther Deschner */
617 if (asprintf(&ads
->auth
.user_name
, "%s$", global_myname() ) == -1) {
618 DEBUG(0,("ads_connect: asprintf fail.\n"));
619 ads
->auth
.user_name
= NULL
;
623 if (!ads
->auth
.realm
) {
624 ads
->auth
.realm
= SMB_STRDUP(ads
->config
.realm
);
627 if (!ads
->auth
.kdc_server
) {
628 print_sockaddr(addr
, sizeof(addr
), &ads
->ldap
.ss
);
629 ads
->auth
.kdc_server
= SMB_STRDUP(addr
);
633 /* this is a really nasty hack to avoid ADS DNS problems. It needs a patch
634 to MIT kerberos to work (tridge) */
637 if (asprintf(&env
, "KRB5_KDC_ADDRESS_%s", ads
->config
.realm
) > 0) {
638 setenv(env
, ads
->auth
.kdc_server
, 1);
644 /* If the caller() requested no LDAP bind, then we are done */
646 if (ads
->auth
.flags
& ADS_AUTH_NO_BIND
) {
647 status
= ADS_SUCCESS
;
651 ads
->ldap
.mem_ctx
= talloc_init("ads LDAP connection memory");
652 if (!ads
->ldap
.mem_ctx
) {
653 status
= ADS_ERROR_NT(NT_STATUS_NO_MEMORY
);
657 /* Otherwise setup the TCP LDAP session */
659 ads
->ldap
.ld
= ldap_open_with_timeout(ads
->config
.ldap_server_name
,
660 ads
->ldap
.port
, lp_ldap_timeout());
661 if (ads
->ldap
.ld
== NULL
) {
662 status
= ADS_ERROR(LDAP_OPERATIONS_ERROR
);
665 DEBUG(3,("Connected to LDAP server %s\n", ads
->config
.ldap_server_name
));
667 /* cache the successful connection for workgroup and realm */
668 if (ads_closest_dc(ads
)) {
669 saf_store( ads
->server
.workgroup
, ads
->config
.ldap_server_name
);
670 saf_store( ads
->server
.realm
, ads
->config
.ldap_server_name
);
673 ldap_set_option(ads
->ldap
.ld
, LDAP_OPT_PROTOCOL_VERSION
, &version
);
675 status
= ADS_ERROR(smb_ldap_start_tls(ads
->ldap
.ld
, version
));
676 if (!ADS_ERR_OK(status
)) {
680 /* fill in the current time and offsets */
682 status
= ads_current_time( ads
);
683 if ( !ADS_ERR_OK(status
) ) {
687 /* Now do the bind */
689 if (ads
->auth
.flags
& ADS_AUTH_ANON_BIND
) {
690 status
= ADS_ERROR(ldap_simple_bind_s(ads
->ldap
.ld
, NULL
, NULL
));
694 if (ads
->auth
.flags
& ADS_AUTH_SIMPLE_BIND
) {
695 status
= ADS_ERROR(ldap_simple_bind_s(ads
->ldap
.ld
, ads
->auth
.user_name
, ads
->auth
.password
));
699 status
= ads_sasl_bind(ads
);
702 if (DEBUGLEVEL
>= 11) {
703 char *s
= NDR_PRINT_STRUCT_STRING(talloc_tos(), ads_struct
, ads
);
704 DEBUG(11,("ads_connect: leaving with: %s\n",
705 ads_errstr(status
)));
706 DEBUGADD(11,("%s\n", s
));
714 * Connect to the LDAP server using given credentials
715 * @param ads Pointer to an existing ADS_STRUCT
716 * @return status of connection
718 ADS_STATUS
ads_connect_user_creds(ADS_STRUCT
*ads
)
720 ads
->auth
.flags
|= ADS_AUTH_USER_CREDS
;
722 return ads_connect(ads
);
726 * Disconnect the LDAP server
727 * @param ads Pointer to an existing ADS_STRUCT
729 void ads_disconnect(ADS_STRUCT
*ads
)
732 ldap_unbind(ads
->ldap
.ld
);
735 if (ads
->ldap
.wrap_ops
&& ads
->ldap
.wrap_ops
->disconnect
) {
736 ads
->ldap
.wrap_ops
->disconnect(ads
);
738 if (ads
->ldap
.mem_ctx
) {
739 talloc_free(ads
->ldap
.mem_ctx
);
741 ZERO_STRUCT(ads
->ldap
);
745 Duplicate a struct berval into talloc'ed memory
747 static struct berval
*dup_berval(TALLOC_CTX
*ctx
, const struct berval
*in_val
)
749 struct berval
*value
;
751 if (!in_val
) return NULL
;
753 value
= TALLOC_ZERO_P(ctx
, struct berval
);
756 if (in_val
->bv_len
== 0) return value
;
758 value
->bv_len
= in_val
->bv_len
;
759 value
->bv_val
= (char *)TALLOC_MEMDUP(ctx
, in_val
->bv_val
,
765 Make a values list out of an array of (struct berval *)
767 static struct berval
**ads_dup_values(TALLOC_CTX
*ctx
,
768 const struct berval
**in_vals
)
770 struct berval
**values
;
773 if (!in_vals
) return NULL
;
774 for (i
=0; in_vals
[i
]; i
++)
776 values
= TALLOC_ZERO_ARRAY(ctx
, struct berval
*, i
+1);
777 if (!values
) return NULL
;
779 for (i
=0; in_vals
[i
]; i
++) {
780 values
[i
] = dup_berval(ctx
, in_vals
[i
]);
786 UTF8-encode a values list out of an array of (char *)
788 static char **ads_push_strvals(TALLOC_CTX
*ctx
, const char **in_vals
)
794 if (!in_vals
) return NULL
;
795 for (i
=0; in_vals
[i
]; i
++)
797 values
= TALLOC_ZERO_ARRAY(ctx
, char *, i
+1);
798 if (!values
) return NULL
;
800 for (i
=0; in_vals
[i
]; i
++) {
801 if (!push_utf8_talloc(ctx
, &values
[i
], in_vals
[i
], &size
)) {
810 Pull a (char *) array out of a UTF8-encoded values list
812 static char **ads_pull_strvals(TALLOC_CTX
*ctx
, const char **in_vals
)
816 size_t converted_size
;
818 if (!in_vals
) return NULL
;
819 for (i
=0; in_vals
[i
]; i
++)
821 values
= TALLOC_ZERO_ARRAY(ctx
, char *, i
+1);
822 if (!values
) return NULL
;
824 for (i
=0; in_vals
[i
]; i
++) {
825 if (!pull_utf8_talloc(ctx
, &values
[i
], in_vals
[i
],
827 DEBUG(0,("ads_pull_strvals: pull_utf8_talloc failed: "
828 "%s", strerror(errno
)));
835 * Do a search with paged results. cookie must be null on the first
836 * call, and then returned on each subsequent call. It will be null
837 * again when the entire search is complete
838 * @param ads connection to ads server
839 * @param bind_path Base dn for the search
840 * @param scope Scope of search (LDAP_SCOPE_BASE | LDAP_SCOPE_ONE | LDAP_SCOPE_SUBTREE)
841 * @param expr Search expression - specified in local charset
842 * @param attrs Attributes to retrieve - specified in utf8 or ascii
843 * @param res ** which will contain results - free res* with ads_msgfree()
844 * @param count Number of entries retrieved on this page
845 * @param cookie The paged results cookie to be returned on subsequent calls
846 * @return status of search
848 static ADS_STATUS
ads_do_paged_search_args(ADS_STRUCT
*ads
,
849 const char *bind_path
,
850 int scope
, const char *expr
,
851 const char **attrs
, void *args
,
853 int *count
, struct berval
**cookie
)
856 char *utf8_expr
, *utf8_path
, **search_attrs
= NULL
;
857 size_t converted_size
;
858 LDAPControl PagedResults
, NoReferrals
, ExternalCtrl
, *controls
[4], **rcontrols
;
859 BerElement
*cookie_be
= NULL
;
860 struct berval
*cookie_bv
= NULL
;
861 BerElement
*ext_be
= NULL
;
862 struct berval
*ext_bv
= NULL
;
865 ads_control
*external_control
= (ads_control
*) args
;
869 if (!(ctx
= talloc_init("ads_do_paged_search_args")))
870 return ADS_ERROR(LDAP_NO_MEMORY
);
872 /* 0 means the conversion worked but the result was empty
873 so we only fail if it's -1. In any case, it always
874 at least nulls out the dest */
875 if (!push_utf8_talloc(ctx
, &utf8_expr
, expr
, &converted_size
) ||
876 !push_utf8_talloc(ctx
, &utf8_path
, bind_path
, &converted_size
))
882 if (!attrs
|| !(*attrs
))
885 /* This would be the utf8-encoded version...*/
886 /* if (!(search_attrs = ads_push_strvals(ctx, attrs))) */
887 if (!(search_attrs
= str_list_copy(talloc_tos(), attrs
))) {
893 /* Paged results only available on ldap v3 or later */
894 ldap_get_option(ads
->ldap
.ld
, LDAP_OPT_PROTOCOL_VERSION
, &version
);
895 if (version
< LDAP_VERSION3
) {
896 rc
= LDAP_NOT_SUPPORTED
;
900 cookie_be
= ber_alloc_t(LBER_USE_DER
);
902 ber_printf(cookie_be
, "{iO}", (ber_int_t
) 1000, *cookie
);
903 ber_bvfree(*cookie
); /* don't need it from last time */
906 ber_printf(cookie_be
, "{io}", (ber_int_t
) 1000, "", 0);
908 ber_flatten(cookie_be
, &cookie_bv
);
909 PagedResults
.ldctl_oid
= CONST_DISCARD(char *, ADS_PAGE_CTL_OID
);
910 PagedResults
.ldctl_iscritical
= (char) 1;
911 PagedResults
.ldctl_value
.bv_len
= cookie_bv
->bv_len
;
912 PagedResults
.ldctl_value
.bv_val
= cookie_bv
->bv_val
;
914 NoReferrals
.ldctl_oid
= CONST_DISCARD(char *, ADS_NO_REFERRALS_OID
);
915 NoReferrals
.ldctl_iscritical
= (char) 0;
916 NoReferrals
.ldctl_value
.bv_len
= 0;
917 NoReferrals
.ldctl_value
.bv_val
= CONST_DISCARD(char *, "");
919 if (external_control
&&
920 (strequal(external_control
->control
, ADS_EXTENDED_DN_OID
) ||
921 strequal(external_control
->control
, ADS_SD_FLAGS_OID
))) {
923 ExternalCtrl
.ldctl_oid
= CONST_DISCARD(char *, external_control
->control
);
924 ExternalCtrl
.ldctl_iscritical
= (char) external_control
->critical
;
926 /* win2k does not accept a ldctl_value beeing passed in */
928 if (external_control
->val
!= 0) {
930 if ((ext_be
= ber_alloc_t(LBER_USE_DER
)) == NULL
) {
935 if ((ber_printf(ext_be
, "{i}", (ber_int_t
) external_control
->val
)) == -1) {
939 if ((ber_flatten(ext_be
, &ext_bv
)) == -1) {
944 ExternalCtrl
.ldctl_value
.bv_len
= ext_bv
->bv_len
;
945 ExternalCtrl
.ldctl_value
.bv_val
= ext_bv
->bv_val
;
948 ExternalCtrl
.ldctl_value
.bv_len
= 0;
949 ExternalCtrl
.ldctl_value
.bv_val
= NULL
;
952 controls
[0] = &NoReferrals
;
953 controls
[1] = &PagedResults
;
954 controls
[2] = &ExternalCtrl
;
958 controls
[0] = &NoReferrals
;
959 controls
[1] = &PagedResults
;
963 /* we need to disable referrals as the openldap libs don't
964 handle them and paged results at the same time. Using them
965 together results in the result record containing the server
966 page control being removed from the result list (tridge/jmcd)
968 leaving this in despite the control that says don't generate
969 referrals, in case the server doesn't support it (jmcd)
971 ldap_set_option(ads
->ldap
.ld
, LDAP_OPT_REFERRALS
, LDAP_OPT_OFF
);
973 rc
= ldap_search_with_timeout(ads
->ldap
.ld
, utf8_path
, scope
, utf8_expr
,
974 search_attrs
, 0, controls
,
976 (LDAPMessage
**)res
);
978 ber_free(cookie_be
, 1);
979 ber_bvfree(cookie_bv
);
982 DEBUG(3,("ads_do_paged_search_args: ldap_search_with_timeout(%s) -> %s\n", expr
,
983 ldap_err2string(rc
)));
987 rc
= ldap_parse_result(ads
->ldap
.ld
, *res
, NULL
, NULL
, NULL
,
988 NULL
, &rcontrols
, 0);
994 for (i
=0; rcontrols
[i
]; i
++) {
995 if (strcmp(ADS_PAGE_CTL_OID
, rcontrols
[i
]->ldctl_oid
) == 0) {
996 cookie_be
= ber_init(&rcontrols
[i
]->ldctl_value
);
997 ber_scanf(cookie_be
,"{iO}", (ber_int_t
*) count
,
999 /* the berval is the cookie, but must be freed when
1001 if (cookie_bv
->bv_len
) /* still more to do */
1002 *cookie
=ber_bvdup(cookie_bv
);
1005 ber_bvfree(cookie_bv
);
1006 ber_free(cookie_be
, 1);
1010 ldap_controls_free(rcontrols
);
1013 talloc_destroy(ctx
);
1016 ber_free(ext_be
, 1);
1023 /* if/when we decide to utf8-encode attrs, take out this next line */
1024 TALLOC_FREE(search_attrs
);
1026 return ADS_ERROR(rc
);
1029 static ADS_STATUS
ads_do_paged_search(ADS_STRUCT
*ads
, const char *bind_path
,
1030 int scope
, const char *expr
,
1031 const char **attrs
, LDAPMessage
**res
,
1032 int *count
, struct berval
**cookie
)
1034 return ads_do_paged_search_args(ads
, bind_path
, scope
, expr
, attrs
, NULL
, res
, count
, cookie
);
1039 * Get all results for a search. This uses ads_do_paged_search() to return
1040 * all entries in a large search.
1041 * @param ads connection to ads server
1042 * @param bind_path Base dn for the search
1043 * @param scope Scope of search (LDAP_SCOPE_BASE | LDAP_SCOPE_ONE | LDAP_SCOPE_SUBTREE)
1044 * @param expr Search expression
1045 * @param attrs Attributes to retrieve
1046 * @param res ** which will contain results - free res* with ads_msgfree()
1047 * @return status of search
1049 ADS_STATUS
ads_do_search_all_args(ADS_STRUCT
*ads
, const char *bind_path
,
1050 int scope
, const char *expr
,
1051 const char **attrs
, void *args
,
1054 struct berval
*cookie
= NULL
;
1059 status
= ads_do_paged_search_args(ads
, bind_path
, scope
, expr
, attrs
, args
, res
,
1062 if (!ADS_ERR_OK(status
))
1065 #ifdef HAVE_LDAP_ADD_RESULT_ENTRY
1067 LDAPMessage
*res2
= NULL
;
1069 LDAPMessage
*msg
, *next
;
1071 status2
= ads_do_paged_search_args(ads
, bind_path
, scope
, expr
,
1072 attrs
, args
, &res2
, &count
, &cookie
);
1074 if (!ADS_ERR_OK(status2
)) break;
1076 /* this relies on the way that ldap_add_result_entry() works internally. I hope
1077 that this works on all ldap libs, but I have only tested with openldap */
1078 for (msg
= ads_first_message(ads
, res2
); msg
; msg
= next
) {
1079 next
= ads_next_message(ads
, msg
);
1080 ldap_add_result_entry((LDAPMessage
**)res
, msg
);
1082 /* note that we do not free res2, as the memory is now
1083 part of the main returned list */
1086 DEBUG(0, ("no ldap_add_result_entry() support in LDAP libs!\n"));
1087 status
= ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
1093 ADS_STATUS
ads_do_search_all(ADS_STRUCT
*ads
, const char *bind_path
,
1094 int scope
, const char *expr
,
1095 const char **attrs
, LDAPMessage
**res
)
1097 return ads_do_search_all_args(ads
, bind_path
, scope
, expr
, attrs
, NULL
, res
);
1100 ADS_STATUS
ads_do_search_all_sd_flags(ADS_STRUCT
*ads
, const char *bind_path
,
1101 int scope
, const char *expr
,
1102 const char **attrs
, uint32 sd_flags
,
1107 args
.control
= ADS_SD_FLAGS_OID
;
1108 args
.val
= sd_flags
;
1109 args
.critical
= True
;
1111 return ads_do_search_all_args(ads
, bind_path
, scope
, expr
, attrs
, &args
, res
);
1116 * Run a function on all results for a search. Uses ads_do_paged_search() and
1117 * runs the function as each page is returned, using ads_process_results()
1118 * @param ads connection to ads server
1119 * @param bind_path Base dn for the search
1120 * @param scope Scope of search (LDAP_SCOPE_BASE | LDAP_SCOPE_ONE | LDAP_SCOPE_SUBTREE)
1121 * @param expr Search expression - specified in local charset
1122 * @param attrs Attributes to retrieve - specified in UTF-8 or ascii
1123 * @param fn Function which takes attr name, values list, and data_area
1124 * @param data_area Pointer which is passed to function on each call
1125 * @return status of search
1127 ADS_STATUS
ads_do_search_all_fn(ADS_STRUCT
*ads
, const char *bind_path
,
1128 int scope
, const char *expr
, const char **attrs
,
1129 bool (*fn
)(ADS_STRUCT
*, char *, void **, void *),
1132 struct berval
*cookie
= NULL
;
1137 status
= ads_do_paged_search(ads
, bind_path
, scope
, expr
, attrs
, &res
,
1140 if (!ADS_ERR_OK(status
)) return status
;
1142 ads_process_results(ads
, res
, fn
, data_area
);
1143 ads_msgfree(ads
, res
);
1146 status
= ads_do_paged_search(ads
, bind_path
, scope
, expr
, attrs
,
1147 &res
, &count
, &cookie
);
1149 if (!ADS_ERR_OK(status
)) break;
1151 ads_process_results(ads
, res
, fn
, data_area
);
1152 ads_msgfree(ads
, res
);
1159 * Do a search with a timeout.
1160 * @param ads connection to ads server
1161 * @param bind_path Base dn for the search
1162 * @param scope Scope of search (LDAP_SCOPE_BASE | LDAP_SCOPE_ONE | LDAP_SCOPE_SUBTREE)
1163 * @param expr Search expression
1164 * @param attrs Attributes to retrieve
1165 * @param res ** which will contain results - free res* with ads_msgfree()
1166 * @return status of search
1168 ADS_STATUS
ads_do_search(ADS_STRUCT
*ads
, const char *bind_path
, int scope
,
1170 const char **attrs
, LDAPMessage
**res
)
1173 char *utf8_expr
, *utf8_path
, **search_attrs
= NULL
;
1174 size_t converted_size
;
1178 if (!(ctx
= talloc_init("ads_do_search"))) {
1179 DEBUG(1,("ads_do_search: talloc_init() failed!"));
1180 return ADS_ERROR(LDAP_NO_MEMORY
);
1183 /* 0 means the conversion worked but the result was empty
1184 so we only fail if it's negative. In any case, it always
1185 at least nulls out the dest */
1186 if (!push_utf8_talloc(ctx
, &utf8_expr
, expr
, &converted_size
) ||
1187 !push_utf8_talloc(ctx
, &utf8_path
, bind_path
, &converted_size
))
1189 DEBUG(1,("ads_do_search: push_utf8_talloc() failed!"));
1190 rc
= LDAP_NO_MEMORY
;
1194 if (!attrs
|| !(*attrs
))
1195 search_attrs
= NULL
;
1197 /* This would be the utf8-encoded version...*/
1198 /* if (!(search_attrs = ads_push_strvals(ctx, attrs))) */
1199 if (!(search_attrs
= str_list_copy(talloc_tos(), attrs
)))
1201 DEBUG(1,("ads_do_search: str_list_copy() failed!"));
1202 rc
= LDAP_NO_MEMORY
;
1207 /* see the note in ads_do_paged_search - we *must* disable referrals */
1208 ldap_set_option(ads
->ldap
.ld
, LDAP_OPT_REFERRALS
, LDAP_OPT_OFF
);
1210 rc
= ldap_search_with_timeout(ads
->ldap
.ld
, utf8_path
, scope
, utf8_expr
,
1211 search_attrs
, 0, NULL
, NULL
,
1213 (LDAPMessage
**)res
);
1215 if (rc
== LDAP_SIZELIMIT_EXCEEDED
) {
1216 DEBUG(3,("Warning! sizelimit exceeded in ldap. Truncating.\n"));
1221 talloc_destroy(ctx
);
1222 /* if/when we decide to utf8-encode attrs, take out this next line */
1223 TALLOC_FREE(search_attrs
);
1224 return ADS_ERROR(rc
);
1227 * Do a general ADS search
1228 * @param ads connection to ads server
1229 * @param res ** which will contain results - free res* with ads_msgfree()
1230 * @param expr Search expression
1231 * @param attrs Attributes to retrieve
1232 * @return status of search
1234 ADS_STATUS
ads_search(ADS_STRUCT
*ads
, LDAPMessage
**res
,
1235 const char *expr
, const char **attrs
)
1237 return ads_do_search(ads
, ads
->config
.bind_path
, LDAP_SCOPE_SUBTREE
,
1242 * Do a search on a specific DistinguishedName
1243 * @param ads connection to ads server
1244 * @param res ** which will contain results - free res* with ads_msgfree()
1245 * @param dn DistinguishName to search
1246 * @param attrs Attributes to retrieve
1247 * @return status of search
1249 ADS_STATUS
ads_search_dn(ADS_STRUCT
*ads
, LDAPMessage
**res
,
1250 const char *dn
, const char **attrs
)
1252 return ads_do_search(ads
, dn
, LDAP_SCOPE_BASE
, "(objectclass=*)",
1257 * Free up memory from a ads_search
1258 * @param ads connection to ads server
1259 * @param msg Search results to free
1261 void ads_msgfree(ADS_STRUCT
*ads
, LDAPMessage
*msg
)
1268 * Free up memory from various ads requests
1269 * @param ads connection to ads server
1270 * @param mem Area to free
1272 void ads_memfree(ADS_STRUCT
*ads
, void *mem
)
1278 * Get a dn from search results
1279 * @param ads connection to ads server
1280 * @param msg Search result
1283 char *ads_get_dn(ADS_STRUCT
*ads
, LDAPMessage
*msg
)
1285 char *utf8_dn
, *unix_dn
;
1286 size_t converted_size
;
1288 utf8_dn
= ldap_get_dn(ads
->ldap
.ld
, msg
);
1291 DEBUG (5, ("ads_get_dn: ldap_get_dn failed\n"));
1295 if (!pull_utf8_allocate(&unix_dn
, utf8_dn
, &converted_size
)) {
1296 DEBUG(0,("ads_get_dn: string conversion failure utf8 [%s]\n",
1300 ldap_memfree(utf8_dn
);
1305 * Get the parent from a dn
1306 * @param dn the dn to return the parent from
1307 * @return parent dn string
1309 char *ads_parent_dn(const char *dn
)
1317 p
= strchr(dn
, ',');
1327 * Find a machine account given a hostname
1328 * @param ads connection to ads server
1329 * @param res ** which will contain results - free res* with ads_msgfree()
1330 * @param host Hostname to search for
1331 * @return status of search
1333 ADS_STATUS
ads_find_machine_acct(ADS_STRUCT
*ads
, LDAPMessage
**res
,
1334 const char *machine
)
1338 const char *attrs
[] = {"*", "nTSecurityDescriptor", NULL
};
1342 /* the easiest way to find a machine account anywhere in the tree
1343 is to look for hostname$ */
1344 if (asprintf(&expr
, "(samAccountName=%s$)", machine
) == -1) {
1345 DEBUG(1, ("asprintf failed!\n"));
1346 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY
);
1349 status
= ads_search(ads
, res
, expr
, attrs
);
1355 * Initialize a list of mods to be used in a modify request
1356 * @param ctx An initialized TALLOC_CTX
1357 * @return allocated ADS_MODLIST
1359 ADS_MODLIST
ads_init_mods(TALLOC_CTX
*ctx
)
1361 #define ADS_MODLIST_ALLOC_SIZE 10
1364 if ((mods
= TALLOC_ZERO_ARRAY(ctx
, LDAPMod
*, ADS_MODLIST_ALLOC_SIZE
+ 1)))
1365 /* -1 is safety to make sure we don't go over the end.
1366 need to reset it to NULL before doing ldap modify */
1367 mods
[ADS_MODLIST_ALLOC_SIZE
] = (LDAPMod
*) -1;
1369 return (ADS_MODLIST
)mods
;
1374 add an attribute to the list, with values list already constructed
1376 static ADS_STATUS
ads_modlist_add(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1377 int mod_op
, const char *name
,
1378 const void *_invals
)
1380 const void **invals
= (const void **)_invals
;
1382 LDAPMod
**modlist
= (LDAPMod
**) *mods
;
1383 struct berval
**ber_values
= NULL
;
1384 char **char_values
= NULL
;
1387 mod_op
= LDAP_MOD_DELETE
;
1389 if (mod_op
& LDAP_MOD_BVALUES
)
1390 ber_values
= ads_dup_values(ctx
,
1391 (const struct berval
**)invals
);
1393 char_values
= ads_push_strvals(ctx
,
1394 (const char **) invals
);
1397 /* find the first empty slot */
1398 for (curmod
=0; modlist
[curmod
] && modlist
[curmod
] != (LDAPMod
*) -1;
1400 if (modlist
[curmod
] == (LDAPMod
*) -1) {
1401 if (!(modlist
= TALLOC_REALLOC_ARRAY(ctx
, modlist
, LDAPMod
*,
1402 curmod
+ADS_MODLIST_ALLOC_SIZE
+1)))
1403 return ADS_ERROR(LDAP_NO_MEMORY
);
1404 memset(&modlist
[curmod
], 0,
1405 ADS_MODLIST_ALLOC_SIZE
*sizeof(LDAPMod
*));
1406 modlist
[curmod
+ADS_MODLIST_ALLOC_SIZE
] = (LDAPMod
*) -1;
1407 *mods
= (ADS_MODLIST
)modlist
;
1410 if (!(modlist
[curmod
] = TALLOC_ZERO_P(ctx
, LDAPMod
)))
1411 return ADS_ERROR(LDAP_NO_MEMORY
);
1412 modlist
[curmod
]->mod_type
= talloc_strdup(ctx
, name
);
1413 if (mod_op
& LDAP_MOD_BVALUES
) {
1414 modlist
[curmod
]->mod_bvalues
= ber_values
;
1415 } else if (mod_op
& LDAP_MOD_DELETE
) {
1416 modlist
[curmod
]->mod_values
= NULL
;
1418 modlist
[curmod
]->mod_values
= char_values
;
1421 modlist
[curmod
]->mod_op
= mod_op
;
1422 return ADS_ERROR(LDAP_SUCCESS
);
1426 * Add a single string value to a mod list
1427 * @param ctx An initialized TALLOC_CTX
1428 * @param mods An initialized ADS_MODLIST
1429 * @param name The attribute name to add
1430 * @param val The value to add - NULL means DELETE
1431 * @return ADS STATUS indicating success of add
1433 ADS_STATUS
ads_mod_str(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1434 const char *name
, const char *val
)
1436 const char *values
[2];
1442 return ads_modlist_add(ctx
, mods
, LDAP_MOD_DELETE
, name
, NULL
);
1443 return ads_modlist_add(ctx
, mods
, LDAP_MOD_REPLACE
, name
, values
);
1447 * Add an array of string values to a mod list
1448 * @param ctx An initialized TALLOC_CTX
1449 * @param mods An initialized ADS_MODLIST
1450 * @param name The attribute name to add
1451 * @param vals The array of string values to add - NULL means DELETE
1452 * @return ADS STATUS indicating success of add
1454 ADS_STATUS
ads_mod_strlist(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1455 const char *name
, const char **vals
)
1458 return ads_modlist_add(ctx
, mods
, LDAP_MOD_DELETE
, name
, NULL
);
1459 return ads_modlist_add(ctx
, mods
, LDAP_MOD_REPLACE
,
1460 name
, (const void **) vals
);
1465 * Add a single ber-encoded value to a mod list
1466 * @param ctx An initialized TALLOC_CTX
1467 * @param mods An initialized ADS_MODLIST
1468 * @param name The attribute name to add
1469 * @param val The value to add - NULL means DELETE
1470 * @return ADS STATUS indicating success of add
1472 static ADS_STATUS
ads_mod_ber(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1473 const char *name
, const struct berval
*val
)
1475 const struct berval
*values
[2];
1480 return ads_modlist_add(ctx
, mods
, LDAP_MOD_DELETE
, name
, NULL
);
1481 return ads_modlist_add(ctx
, mods
, LDAP_MOD_REPLACE
|LDAP_MOD_BVALUES
,
1482 name
, (const void **) values
);
1487 * Perform an ldap modify
1488 * @param ads connection to ads server
1489 * @param mod_dn DistinguishedName to modify
1490 * @param mods list of modifications to perform
1491 * @return status of modify
1493 ADS_STATUS
ads_gen_mod(ADS_STRUCT
*ads
, const char *mod_dn
, ADS_MODLIST mods
)
1496 char *utf8_dn
= NULL
;
1497 size_t converted_size
;
1499 this control is needed to modify that contains a currently
1500 non-existent attribute (but allowable for the object) to run
1502 LDAPControl PermitModify
= {
1503 CONST_DISCARD(char *, ADS_PERMIT_MODIFY_OID
),
1506 LDAPControl
*controls
[2];
1508 controls
[0] = &PermitModify
;
1511 if (!push_utf8_allocate(&utf8_dn
, mod_dn
, &converted_size
)) {
1512 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY
);
1515 /* find the end of the list, marked by NULL or -1 */
1516 for(i
=0;(mods
[i
]!=0)&&(mods
[i
]!=(LDAPMod
*) -1);i
++);
1517 /* make sure the end of the list is NULL */
1519 ret
= ldap_modify_ext_s(ads
->ldap
.ld
, utf8_dn
,
1520 (LDAPMod
**) mods
, controls
, NULL
);
1522 return ADS_ERROR(ret
);
1526 * Perform an ldap add
1527 * @param ads connection to ads server
1528 * @param new_dn DistinguishedName to add
1529 * @param mods list of attributes and values for DN
1530 * @return status of add
1532 ADS_STATUS
ads_gen_add(ADS_STRUCT
*ads
, const char *new_dn
, ADS_MODLIST mods
)
1535 char *utf8_dn
= NULL
;
1536 size_t converted_size
;
1538 if (!push_utf8_allocate(&utf8_dn
, new_dn
, &converted_size
)) {
1539 DEBUG(1, ("ads_gen_add: push_utf8_allocate failed!"));
1540 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY
);
1543 /* find the end of the list, marked by NULL or -1 */
1544 for(i
=0;(mods
[i
]!=0)&&(mods
[i
]!=(LDAPMod
*) -1);i
++);
1545 /* make sure the end of the list is NULL */
1548 ret
= ldap_add_s(ads
->ldap
.ld
, utf8_dn
, (LDAPMod
**)mods
);
1550 return ADS_ERROR(ret
);
1554 * Delete a DistinguishedName
1555 * @param ads connection to ads server
1556 * @param new_dn DistinguishedName to delete
1557 * @return status of delete
1559 ADS_STATUS
ads_del_dn(ADS_STRUCT
*ads
, char *del_dn
)
1562 char *utf8_dn
= NULL
;
1563 size_t converted_size
;
1564 if (!push_utf8_allocate(&utf8_dn
, del_dn
, &converted_size
)) {
1565 DEBUG(1, ("ads_del_dn: push_utf8_allocate failed!"));
1566 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY
);
1569 ret
= ldap_delete_s(ads
->ldap
.ld
, utf8_dn
);
1571 return ADS_ERROR(ret
);
1575 * Build an org unit string
1576 * if org unit is Computers or blank then assume a container, otherwise
1577 * assume a / separated list of organisational units.
1578 * jmcd: '\' is now used for escapes so certain chars can be in the ou (e.g. #)
1579 * @param ads connection to ads server
1580 * @param org_unit Organizational unit
1581 * @return org unit string - caller must free
1583 char *ads_ou_string(ADS_STRUCT
*ads
, const char *org_unit
)
1587 if (!org_unit
|| !*org_unit
) {
1589 ret
= ads_default_ou_string(ads
, WELL_KNOWN_GUID_COMPUTERS
);
1591 /* samba4 might not yet respond to a wellknownobject-query */
1592 return ret
? ret
: SMB_STRDUP("cn=Computers");
1595 if (strequal(org_unit
, "Computers")) {
1596 return SMB_STRDUP("cn=Computers");
1599 /* jmcd: removed "\\" from the separation chars, because it is
1600 needed as an escape for chars like '#' which are valid in an
1602 return ads_build_path(org_unit
, "/", "ou=", 1);
1606 * Get a org unit string for a well-known GUID
1607 * @param ads connection to ads server
1608 * @param wknguid Well known GUID
1609 * @return org unit string - caller must free
1611 char *ads_default_ou_string(ADS_STRUCT
*ads
, const char *wknguid
)
1614 LDAPMessage
*res
= NULL
;
1615 char *base
, *wkn_dn
= NULL
, *ret
= NULL
, **wkn_dn_exp
= NULL
,
1616 **bind_dn_exp
= NULL
;
1617 const char *attrs
[] = {"distinguishedName", NULL
};
1618 int new_ln
, wkn_ln
, bind_ln
, i
;
1620 if (wknguid
== NULL
) {
1624 if (asprintf(&base
, "<WKGUID=%s,%s>", wknguid
, ads
->config
.bind_path
) == -1) {
1625 DEBUG(1, ("asprintf failed!\n"));
1629 status
= ads_search_dn(ads
, &res
, base
, attrs
);
1630 if (!ADS_ERR_OK(status
)) {
1631 DEBUG(1,("Failed while searching for: %s\n", base
));
1635 if (ads_count_replies(ads
, res
) != 1) {
1639 /* substitute the bind-path from the well-known-guid-search result */
1640 wkn_dn
= ads_get_dn(ads
, res
);
1645 wkn_dn_exp
= ldap_explode_dn(wkn_dn
, 0);
1650 bind_dn_exp
= ldap_explode_dn(ads
->config
.bind_path
, 0);
1655 for (wkn_ln
=0; wkn_dn_exp
[wkn_ln
]; wkn_ln
++)
1657 for (bind_ln
=0; bind_dn_exp
[bind_ln
]; bind_ln
++)
1660 new_ln
= wkn_ln
- bind_ln
;
1662 ret
= SMB_STRDUP(wkn_dn_exp
[0]);
1667 for (i
=1; i
< new_ln
; i
++) {
1670 if (asprintf(&s
, "%s,%s", ret
, wkn_dn_exp
[i
]) == -1) {
1676 ret
= SMB_STRDUP(s
);
1685 ads_msgfree(ads
, res
);
1686 ads_memfree(ads
, wkn_dn
);
1688 ldap_value_free(wkn_dn_exp
);
1691 ldap_value_free(bind_dn_exp
);
1698 * Adds (appends) an item to an attribute array, rather then
1699 * replacing the whole list
1700 * @param ctx An initialized TALLOC_CTX
1701 * @param mods An initialized ADS_MODLIST
1702 * @param name name of the ldap attribute to append to
1703 * @param vals an array of values to add
1704 * @return status of addition
1707 ADS_STATUS
ads_add_strlist(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1708 const char *name
, const char **vals
)
1710 return ads_modlist_add(ctx
, mods
, LDAP_MOD_ADD
, name
,
1711 (const void *) vals
);
1715 * Determines the an account's current KVNO via an LDAP lookup
1716 * @param ads An initialized ADS_STRUCT
1717 * @param account_name the NT samaccountname.
1718 * @return the kvno for the account, or -1 in case of a failure.
1721 uint32
ads_get_kvno(ADS_STRUCT
*ads
, const char *account_name
)
1723 LDAPMessage
*res
= NULL
;
1724 uint32 kvno
= (uint32
)-1; /* -1 indicates a failure */
1726 const char *attrs
[] = {"msDS-KeyVersionNumber", NULL
};
1727 char *dn_string
= NULL
;
1728 ADS_STATUS ret
= ADS_ERROR(LDAP_SUCCESS
);
1730 DEBUG(5,("ads_get_kvno: Searching for account %s\n", account_name
));
1731 if (asprintf(&filter
, "(samAccountName=%s)", account_name
) == -1) {
1734 ret
= ads_search(ads
, &res
, filter
, attrs
);
1736 if (!ADS_ERR_OK(ret
) || (ads_count_replies(ads
, res
) != 1)) {
1737 DEBUG(1,("ads_get_kvno: Account for %s not found.\n", account_name
));
1738 ads_msgfree(ads
, res
);
1742 dn_string
= ads_get_dn(ads
, res
);
1744 DEBUG(0,("ads_get_kvno: out of memory.\n"));
1745 ads_msgfree(ads
, res
);
1748 DEBUG(5,("ads_get_kvno: Using: %s\n", dn_string
));
1749 ads_memfree(ads
, dn_string
);
1751 /* ---------------------------------------------------------
1752 * 0 is returned as a default KVNO from this point on...
1753 * This is done because Windows 2000 does not support key
1754 * version numbers. Chances are that a failure in the next
1755 * step is simply due to Windows 2000 being used for a
1756 * domain controller. */
1759 if (!ads_pull_uint32(ads
, res
, "msDS-KeyVersionNumber", &kvno
)) {
1760 DEBUG(3,("ads_get_kvno: Error Determining KVNO!\n"));
1761 DEBUG(3,("ads_get_kvno: Windows 2000 does not support KVNO's, so this may be normal.\n"));
1762 ads_msgfree(ads
, res
);
1767 DEBUG(5,("ads_get_kvno: Looked Up KVNO of: %d\n", kvno
));
1768 ads_msgfree(ads
, res
);
1773 * Determines the computer account's current KVNO via an LDAP lookup
1774 * @param ads An initialized ADS_STRUCT
1775 * @param machine_name the NetBIOS name of the computer, which is used to identify the computer account.
1776 * @return the kvno for the computer account, or -1 in case of a failure.
1779 uint32_t ads_get_machine_kvno(ADS_STRUCT
*ads
, const char *machine_name
)
1781 char *computer_account
= NULL
;
1784 if (asprintf(&computer_account
, "%s$", machine_name
) < 0) {
1788 kvno
= ads_get_kvno(ads
, computer_account
);
1789 free(computer_account
);
1795 * This clears out all registered spn's for a given hostname
1796 * @param ads An initilaized ADS_STRUCT
1797 * @param machine_name the NetBIOS name of the computer.
1798 * @return 0 upon success, non-zero otherwise.
1801 ADS_STATUS
ads_clear_service_principal_names(ADS_STRUCT
*ads
, const char *machine_name
)
1804 LDAPMessage
*res
= NULL
;
1806 const char *servicePrincipalName
[1] = {NULL
};
1807 ADS_STATUS ret
= ADS_ERROR(LDAP_SUCCESS
);
1808 char *dn_string
= NULL
;
1810 ret
= ads_find_machine_acct(ads
, &res
, machine_name
);
1811 if (!ADS_ERR_OK(ret
) || ads_count_replies(ads
, res
) != 1) {
1812 DEBUG(5,("ads_clear_service_principal_names: WARNING: Host Account for %s not found... skipping operation.\n", machine_name
));
1813 DEBUG(5,("ads_clear_service_principal_names: WARNING: Service Principals for %s have NOT been cleared.\n", machine_name
));
1814 ads_msgfree(ads
, res
);
1815 return ADS_ERROR(LDAP_NO_SUCH_OBJECT
);
1818 DEBUG(5,("ads_clear_service_principal_names: Host account for %s found\n", machine_name
));
1819 ctx
= talloc_init("ads_clear_service_principal_names");
1821 ads_msgfree(ads
, res
);
1822 return ADS_ERROR(LDAP_NO_MEMORY
);
1825 if (!(mods
= ads_init_mods(ctx
))) {
1826 talloc_destroy(ctx
);
1827 ads_msgfree(ads
, res
);
1828 return ADS_ERROR(LDAP_NO_MEMORY
);
1830 ret
= ads_mod_strlist(ctx
, &mods
, "servicePrincipalName", servicePrincipalName
);
1831 if (!ADS_ERR_OK(ret
)) {
1832 DEBUG(1,("ads_clear_service_principal_names: Error creating strlist.\n"));
1833 ads_msgfree(ads
, res
);
1834 talloc_destroy(ctx
);
1837 dn_string
= ads_get_dn(ads
, res
);
1839 talloc_destroy(ctx
);
1840 ads_msgfree(ads
, res
);
1841 return ADS_ERROR(LDAP_NO_MEMORY
);
1843 ret
= ads_gen_mod(ads
, dn_string
, mods
);
1844 ads_memfree(ads
,dn_string
);
1845 if (!ADS_ERR_OK(ret
)) {
1846 DEBUG(1,("ads_clear_service_principal_names: Error: Updating Service Principals for machine %s in LDAP\n",
1848 ads_msgfree(ads
, res
);
1849 talloc_destroy(ctx
);
1853 ads_msgfree(ads
, res
);
1854 talloc_destroy(ctx
);
1859 * This adds a service principal name to an existing computer account
1860 * (found by hostname) in AD.
1861 * @param ads An initialized ADS_STRUCT
1862 * @param machine_name the NetBIOS name of the computer, which is used to identify the computer account.
1863 * @param my_fqdn The fully qualified DNS name of the machine
1864 * @param spn A string of the service principal to add, i.e. 'host'
1865 * @return 0 upon sucess, or non-zero if a failure occurs
1868 ADS_STATUS
ads_add_service_principal_name(ADS_STRUCT
*ads
, const char *machine_name
,
1869 const char *my_fqdn
, const char *spn
)
1873 LDAPMessage
*res
= NULL
;
1876 char *dn_string
= NULL
;
1877 const char *servicePrincipalName
[3] = {NULL
, NULL
, NULL
};
1879 ret
= ads_find_machine_acct(ads
, &res
, machine_name
);
1880 if (!ADS_ERR_OK(ret
) || ads_count_replies(ads
, res
) != 1) {
1881 DEBUG(1,("ads_add_service_principal_name: WARNING: Host Account for %s not found... skipping operation.\n",
1883 DEBUG(1,("ads_add_service_principal_name: WARNING: Service Principal '%s/%s@%s' has NOT been added.\n",
1884 spn
, machine_name
, ads
->config
.realm
));
1885 ads_msgfree(ads
, res
);
1886 return ADS_ERROR(LDAP_NO_SUCH_OBJECT
);
1889 DEBUG(1,("ads_add_service_principal_name: Host account for %s found\n", machine_name
));
1890 if (!(ctx
= talloc_init("ads_add_service_principal_name"))) {
1891 ads_msgfree(ads
, res
);
1892 return ADS_ERROR(LDAP_NO_MEMORY
);
1895 /* add short name spn */
1897 if ( (psp1
= talloc_asprintf(ctx
, "%s/%s", spn
, machine_name
)) == NULL
) {
1898 talloc_destroy(ctx
);
1899 ads_msgfree(ads
, res
);
1900 return ADS_ERROR(LDAP_NO_MEMORY
);
1903 strlower_m(&psp1
[strlen(spn
)]);
1904 servicePrincipalName
[0] = psp1
;
1906 DEBUG(5,("ads_add_service_principal_name: INFO: Adding %s to host %s\n",
1907 psp1
, machine_name
));
1910 /* add fully qualified spn */
1912 if ( (psp2
= talloc_asprintf(ctx
, "%s/%s", spn
, my_fqdn
)) == NULL
) {
1913 ret
= ADS_ERROR(LDAP_NO_MEMORY
);
1917 strlower_m(&psp2
[strlen(spn
)]);
1918 servicePrincipalName
[1] = psp2
;
1920 DEBUG(5,("ads_add_service_principal_name: INFO: Adding %s to host %s\n",
1921 psp2
, machine_name
));
1923 if ( (mods
= ads_init_mods(ctx
)) == NULL
) {
1924 ret
= ADS_ERROR(LDAP_NO_MEMORY
);
1928 ret
= ads_add_strlist(ctx
, &mods
, "servicePrincipalName", servicePrincipalName
);
1929 if (!ADS_ERR_OK(ret
)) {
1930 DEBUG(1,("ads_add_service_principal_name: Error: Updating Service Principals in LDAP\n"));
1934 if ( (dn_string
= ads_get_dn(ads
, res
)) == NULL
) {
1935 ret
= ADS_ERROR(LDAP_NO_MEMORY
);
1939 ret
= ads_gen_mod(ads
, dn_string
, mods
);
1940 ads_memfree(ads
,dn_string
);
1941 if (!ADS_ERR_OK(ret
)) {
1942 DEBUG(1,("ads_add_service_principal_name: Error: Updating Service Principals in LDAP\n"));
1948 ads_msgfree(ads
, res
);
1953 * adds a machine account to the ADS server
1954 * @param ads An intialized ADS_STRUCT
1955 * @param machine_name - the NetBIOS machine name of this account.
1956 * @param account_type A number indicating the type of account to create
1957 * @param org_unit The LDAP path in which to place this account
1958 * @return 0 upon success, or non-zero otherwise
1961 ADS_STATUS
ads_create_machine_acct(ADS_STRUCT
*ads
, const char *machine_name
,
1962 const char *org_unit
)
1965 char *samAccountName
, *controlstr
;
1968 char *machine_escaped
= NULL
;
1970 const char *objectClass
[] = {"top", "person", "organizationalPerson",
1971 "user", "computer", NULL
};
1972 LDAPMessage
*res
= NULL
;
1973 uint32 acct_control
= ( UF_WORKSTATION_TRUST_ACCOUNT
|\
1974 UF_DONT_EXPIRE_PASSWD
|\
1975 UF_ACCOUNTDISABLE
);
1977 if (!(ctx
= talloc_init("ads_add_machine_acct")))
1978 return ADS_ERROR(LDAP_NO_MEMORY
);
1980 ret
= ADS_ERROR(LDAP_NO_MEMORY
);
1982 machine_escaped
= escape_rdn_val_string_alloc(machine_name
);
1983 if (!machine_escaped
) {
1987 new_dn
= talloc_asprintf(ctx
, "cn=%s,%s", machine_escaped
, org_unit
);
1988 samAccountName
= talloc_asprintf(ctx
, "%s$", machine_name
);
1990 if ( !new_dn
|| !samAccountName
) {
1994 #ifndef ENCTYPE_ARCFOUR_HMAC
1995 acct_control
|= UF_USE_DES_KEY_ONLY
;
1998 if (!(controlstr
= talloc_asprintf(ctx
, "%u", acct_control
))) {
2002 if (!(mods
= ads_init_mods(ctx
))) {
2006 ads_mod_str(ctx
, &mods
, "cn", machine_name
);
2007 ads_mod_str(ctx
, &mods
, "sAMAccountName", samAccountName
);
2008 ads_mod_strlist(ctx
, &mods
, "objectClass", objectClass
);
2009 ads_mod_str(ctx
, &mods
, "userAccountControl", controlstr
);
2011 ret
= ads_gen_add(ads
, new_dn
, mods
);
2014 SAFE_FREE(machine_escaped
);
2015 ads_msgfree(ads
, res
);
2016 talloc_destroy(ctx
);
2022 * move a machine account to another OU on the ADS server
2023 * @param ads - An intialized ADS_STRUCT
2024 * @param machine_name - the NetBIOS machine name of this account.
2025 * @param org_unit - The LDAP path in which to place this account
2026 * @param moved - whether we moved the machine account (optional)
2027 * @return 0 upon success, or non-zero otherwise
2030 ADS_STATUS
ads_move_machine_acct(ADS_STRUCT
*ads
, const char *machine_name
,
2031 const char *org_unit
, bool *moved
)
2035 LDAPMessage
*res
= NULL
;
2036 char *filter
= NULL
;
2037 char *computer_dn
= NULL
;
2039 char *computer_rdn
= NULL
;
2040 bool need_move
= False
;
2042 if (asprintf(&filter
, "(samAccountName=%s$)", machine_name
) == -1) {
2043 rc
= ADS_ERROR(LDAP_NO_MEMORY
);
2047 /* Find pre-existing machine */
2048 rc
= ads_search(ads
, &res
, filter
, NULL
);
2049 if (!ADS_ERR_OK(rc
)) {
2053 computer_dn
= ads_get_dn(ads
, res
);
2055 rc
= ADS_ERROR(LDAP_NO_MEMORY
);
2059 parent_dn
= ads_parent_dn(computer_dn
);
2060 if (strequal(parent_dn
, org_unit
)) {
2066 if (asprintf(&computer_rdn
, "CN=%s", machine_name
) == -1) {
2067 rc
= ADS_ERROR(LDAP_NO_MEMORY
);
2071 ldap_status
= ldap_rename_s(ads
->ldap
.ld
, computer_dn
, computer_rdn
,
2072 org_unit
, 1, NULL
, NULL
);
2073 rc
= ADS_ERROR(ldap_status
);
2076 ads_msgfree(ads
, res
);
2078 SAFE_FREE(computer_dn
);
2079 SAFE_FREE(computer_rdn
);
2081 if (!ADS_ERR_OK(rc
)) {
2093 dump a binary result from ldap
2095 static void dump_binary(ADS_STRUCT
*ads
, const char *field
, struct berval
**values
)
2098 for (i
=0; values
[i
]; i
++) {
2099 printf("%s: ", field
);
2100 for (j
=0; j
<values
[i
]->bv_len
; j
++) {
2101 printf("%02X", (unsigned char)values
[i
]->bv_val
[j
]);
2107 static void dump_guid(ADS_STRUCT
*ads
, const char *field
, struct berval
**values
)
2110 for (i
=0; values
[i
]; i
++) {
2115 memcpy(guid
.info
, values
[i
]->bv_val
, sizeof(guid
.info
));
2116 smb_uuid_unpack(guid
, &tmp
);
2117 printf("%s: %s\n", field
, GUID_string(talloc_tos(), &tmp
));
2122 dump a sid result from ldap
2124 static void dump_sid(ADS_STRUCT
*ads
, const char *field
, struct berval
**values
)
2127 for (i
=0; values
[i
]; i
++) {
2130 sid_parse(values
[i
]->bv_val
, values
[i
]->bv_len
, &sid
);
2131 printf("%s: %s\n", field
, sid_to_fstring(tmp
, &sid
));
2136 dump ntSecurityDescriptor
2138 static void dump_sd(ADS_STRUCT
*ads
, const char *filed
, struct berval
**values
)
2140 TALLOC_CTX
*frame
= talloc_stackframe();
2141 struct security_descriptor
*psd
;
2144 status
= unmarshall_sec_desc(talloc_tos(), (uint8
*)values
[0]->bv_val
,
2145 values
[0]->bv_len
, &psd
);
2146 if (!NT_STATUS_IS_OK(status
)) {
2147 DEBUG(0, ("unmarshall_sec_desc failed: %s\n",
2148 nt_errstr(status
)));
2154 ads_disp_sd(ads
, talloc_tos(), psd
);
2161 dump a string result from ldap
2163 static void dump_string(const char *field
, char **values
)
2166 for (i
=0; values
[i
]; i
++) {
2167 printf("%s: %s\n", field
, values
[i
]);
2172 dump a field from LDAP on stdout
2176 static bool ads_dump_field(ADS_STRUCT
*ads
, char *field
, void **values
, void *data_area
)
2181 void (*handler
)(ADS_STRUCT
*, const char *, struct berval
**);
2183 {"objectGUID", False
, dump_guid
},
2184 {"netbootGUID", False
, dump_guid
},
2185 {"nTSecurityDescriptor", False
, dump_sd
},
2186 {"dnsRecord", False
, dump_binary
},
2187 {"objectSid", False
, dump_sid
},
2188 {"tokenGroups", False
, dump_sid
},
2189 {"tokenGroupsNoGCAcceptable", False
, dump_sid
},
2190 {"tokengroupsGlobalandUniversal", False
, dump_sid
},
2191 {"mS-DS-CreatorSID", False
, dump_sid
},
2192 {"msExchMailboxGuid", False
, dump_guid
},
2197 if (!field
) { /* must be end of an entry */
2202 for (i
=0; handlers
[i
].name
; i
++) {
2203 if (StrCaseCmp(handlers
[i
].name
, field
) == 0) {
2204 if (!values
) /* first time, indicate string or not */
2205 return handlers
[i
].string
;
2206 handlers
[i
].handler(ads
, field
, (struct berval
**) values
);
2210 if (!handlers
[i
].name
) {
2211 if (!values
) /* first time, indicate string conversion */
2213 dump_string(field
, (char **)values
);
2219 * Dump a result from LDAP on stdout
2220 * used for debugging
2221 * @param ads connection to ads server
2222 * @param res Results to dump
2225 void ads_dump(ADS_STRUCT
*ads
, LDAPMessage
*res
)
2227 ads_process_results(ads
, res
, ads_dump_field
, NULL
);
2231 * Walk through results, calling a function for each entry found.
2232 * The function receives a field name, a berval * array of values,
2233 * and a data area passed through from the start. The function is
2234 * called once with null for field and values at the end of each
2236 * @param ads connection to ads server
2237 * @param res Results to process
2238 * @param fn Function for processing each result
2239 * @param data_area user-defined area to pass to function
2241 void ads_process_results(ADS_STRUCT
*ads
, LDAPMessage
*res
,
2242 bool (*fn
)(ADS_STRUCT
*, char *, void **, void *),
2247 size_t converted_size
;
2249 if (!(ctx
= talloc_init("ads_process_results")))
2252 for (msg
= ads_first_entry(ads
, res
); msg
;
2253 msg
= ads_next_entry(ads
, msg
)) {
2257 for (utf8_field
=ldap_first_attribute(ads
->ldap
.ld
,
2258 (LDAPMessage
*)msg
,&b
);
2260 utf8_field
=ldap_next_attribute(ads
->ldap
.ld
,
2261 (LDAPMessage
*)msg
,b
)) {
2262 struct berval
**ber_vals
;
2263 char **str_vals
, **utf8_vals
;
2267 if (!pull_utf8_talloc(ctx
, &field
, utf8_field
,
2270 DEBUG(0,("ads_process_results: "
2271 "pull_utf8_talloc failed: %s",
2275 string
= fn(ads
, field
, NULL
, data_area
);
2278 utf8_vals
= ldap_get_values(ads
->ldap
.ld
,
2279 (LDAPMessage
*)msg
, field
);
2280 str_vals
= ads_pull_strvals(ctx
,
2281 (const char **) utf8_vals
);
2282 fn(ads
, field
, (void **) str_vals
, data_area
);
2283 ldap_value_free(utf8_vals
);
2285 ber_vals
= ldap_get_values_len(ads
->ldap
.ld
,
2286 (LDAPMessage
*)msg
, field
);
2287 fn(ads
, field
, (void **) ber_vals
, data_area
);
2289 ldap_value_free_len(ber_vals
);
2291 ldap_memfree(utf8_field
);
2294 talloc_free_children(ctx
);
2295 fn(ads
, NULL
, NULL
, data_area
); /* completed an entry */
2298 talloc_destroy(ctx
);
2302 * count how many replies are in a LDAPMessage
2303 * @param ads connection to ads server
2304 * @param res Results to count
2305 * @return number of replies
2307 int ads_count_replies(ADS_STRUCT
*ads
, void *res
)
2309 return ldap_count_entries(ads
->ldap
.ld
, (LDAPMessage
*)res
);
2313 * pull the first entry from a ADS result
2314 * @param ads connection to ads server
2315 * @param res Results of search
2316 * @return first entry from result
2318 LDAPMessage
*ads_first_entry(ADS_STRUCT
*ads
, LDAPMessage
*res
)
2320 return ldap_first_entry(ads
->ldap
.ld
, res
);
2324 * pull the next entry from a ADS result
2325 * @param ads connection to ads server
2326 * @param res Results of search
2327 * @return next entry from result
2329 LDAPMessage
*ads_next_entry(ADS_STRUCT
*ads
, LDAPMessage
*res
)
2331 return ldap_next_entry(ads
->ldap
.ld
, res
);
2335 * pull the first message from a ADS result
2336 * @param ads connection to ads server
2337 * @param res Results of search
2338 * @return first message from result
2340 LDAPMessage
*ads_first_message(ADS_STRUCT
*ads
, LDAPMessage
*res
)
2342 return ldap_first_message(ads
->ldap
.ld
, res
);
2346 * pull the next message from a ADS result
2347 * @param ads connection to ads server
2348 * @param res Results of search
2349 * @return next message from result
2351 LDAPMessage
*ads_next_message(ADS_STRUCT
*ads
, LDAPMessage
*res
)
2353 return ldap_next_message(ads
->ldap
.ld
, res
);
2357 * pull a single string from a ADS result
2358 * @param ads connection to ads server
2359 * @param mem_ctx TALLOC_CTX to use for allocating result string
2360 * @param msg Results of search
2361 * @param field Attribute to retrieve
2362 * @return Result string in talloc context
2364 char *ads_pull_string(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, LDAPMessage
*msg
,
2370 size_t converted_size
;
2372 values
= ldap_get_values(ads
->ldap
.ld
, msg
, field
);
2376 if (values
[0] && pull_utf8_talloc(mem_ctx
, &ux_string
, values
[0],
2381 ldap_value_free(values
);
2386 * pull an array of strings from a ADS result
2387 * @param ads connection to ads server
2388 * @param mem_ctx TALLOC_CTX to use for allocating result string
2389 * @param msg Results of search
2390 * @param field Attribute to retrieve
2391 * @return Result strings in talloc context
2393 char **ads_pull_strings(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
2394 LDAPMessage
*msg
, const char *field
,
2400 size_t converted_size
;
2402 values
= ldap_get_values(ads
->ldap
.ld
, msg
, field
);
2406 *num_values
= ldap_count_values(values
);
2408 ret
= TALLOC_ARRAY(mem_ctx
, char *, *num_values
+ 1);
2410 ldap_value_free(values
);
2414 for (i
=0;i
<*num_values
;i
++) {
2415 if (!pull_utf8_talloc(mem_ctx
, &ret
[i
], values
[i
],
2418 ldap_value_free(values
);
2424 ldap_value_free(values
);
2429 * pull an array of strings from a ADS result
2430 * (handle large multivalue attributes with range retrieval)
2431 * @param ads connection to ads server
2432 * @param mem_ctx TALLOC_CTX to use for allocating result string
2433 * @param msg Results of search
2434 * @param field Attribute to retrieve
2435 * @param current_strings strings returned by a previous call to this function
2436 * @param next_attribute The next query should ask for this attribute
2437 * @param num_values How many values did we get this time?
2438 * @param more_values Are there more values to get?
2439 * @return Result strings in talloc context
2441 char **ads_pull_strings_range(ADS_STRUCT
*ads
,
2442 TALLOC_CTX
*mem_ctx
,
2443 LDAPMessage
*msg
, const char *field
,
2444 char **current_strings
,
2445 const char **next_attribute
,
2446 size_t *num_strings
,
2450 char *expected_range_attrib
, *range_attr
;
2451 BerElement
*ptr
= NULL
;
2454 size_t num_new_strings
;
2455 unsigned long int range_start
;
2456 unsigned long int range_end
;
2458 /* we might have been given the whole lot anyway */
2459 if ((strings
= ads_pull_strings(ads
, mem_ctx
, msg
, field
, num_strings
))) {
2460 *more_strings
= False
;
2464 expected_range_attrib
= talloc_asprintf(mem_ctx
, "%s;Range=", field
);
2466 /* look for Range result */
2467 for (attr
= ldap_first_attribute(ads
->ldap
.ld
, (LDAPMessage
*)msg
, &ptr
);
2469 attr
= ldap_next_attribute(ads
->ldap
.ld
, (LDAPMessage
*)msg
, ptr
)) {
2470 /* we ignore the fact that this is utf8, as all attributes are ascii... */
2471 if (strnequal(attr
, expected_range_attrib
, strlen(expected_range_attrib
))) {
2479 /* nothing here - this field is just empty */
2480 *more_strings
= False
;
2484 if (sscanf(&range_attr
[strlen(expected_range_attrib
)], "%lu-%lu",
2485 &range_start
, &range_end
) == 2) {
2486 *more_strings
= True
;
2488 if (sscanf(&range_attr
[strlen(expected_range_attrib
)], "%lu-*",
2489 &range_start
) == 1) {
2490 *more_strings
= False
;
2492 DEBUG(1, ("ads_pull_strings_range: Cannot parse Range attriubte (%s)\n",
2494 ldap_memfree(range_attr
);
2495 *more_strings
= False
;
2500 if ((*num_strings
) != range_start
) {
2501 DEBUG(1, ("ads_pull_strings_range: Range attribute (%s) doesn't start at %u, but at %lu"
2502 " - aborting range retreival\n",
2503 range_attr
, (unsigned int)(*num_strings
) + 1, range_start
));
2504 ldap_memfree(range_attr
);
2505 *more_strings
= False
;
2509 new_strings
= ads_pull_strings(ads
, mem_ctx
, msg
, range_attr
, &num_new_strings
);
2511 if (*more_strings
&& ((*num_strings
+ num_new_strings
) != (range_end
+ 1))) {
2512 DEBUG(1, ("ads_pull_strings_range: Range attribute (%s) tells us we have %lu "
2513 "strings in this bunch, but we only got %lu - aborting range retreival\n",
2514 range_attr
, (unsigned long int)range_end
- range_start
+ 1,
2515 (unsigned long int)num_new_strings
));
2516 ldap_memfree(range_attr
);
2517 *more_strings
= False
;
2521 strings
= TALLOC_REALLOC_ARRAY(mem_ctx
, current_strings
, char *,
2522 *num_strings
+ num_new_strings
);
2524 if (strings
== NULL
) {
2525 ldap_memfree(range_attr
);
2526 *more_strings
= False
;
2530 if (new_strings
&& num_new_strings
) {
2531 memcpy(&strings
[*num_strings
], new_strings
,
2532 sizeof(*new_strings
) * num_new_strings
);
2535 (*num_strings
) += num_new_strings
;
2537 if (*more_strings
) {
2538 *next_attribute
= talloc_asprintf(mem_ctx
,
2543 if (!*next_attribute
) {
2544 DEBUG(1, ("talloc_asprintf for next attribute failed!\n"));
2545 ldap_memfree(range_attr
);
2546 *more_strings
= False
;
2551 ldap_memfree(range_attr
);
2557 * pull a single uint32 from a ADS result
2558 * @param ads connection to ads server
2559 * @param msg Results of search
2560 * @param field Attribute to retrieve
2561 * @param v Pointer to int to store result
2562 * @return boolean inidicating success
2564 bool ads_pull_uint32(ADS_STRUCT
*ads
, LDAPMessage
*msg
, const char *field
,
2569 values
= ldap_get_values(ads
->ldap
.ld
, msg
, field
);
2573 ldap_value_free(values
);
2577 *v
= atoi(values
[0]);
2578 ldap_value_free(values
);
2583 * pull a single objectGUID from an ADS result
2584 * @param ads connection to ADS server
2585 * @param msg results of search
2586 * @param guid 37-byte area to receive text guid
2587 * @return boolean indicating success
2589 bool ads_pull_guid(ADS_STRUCT
*ads
, LDAPMessage
*msg
, struct GUID
*guid
)
2592 UUID_FLAT flat_guid
;
2594 values
= ldap_get_values(ads
->ldap
.ld
, msg
, "objectGUID");
2599 memcpy(&flat_guid
.info
, values
[0], sizeof(UUID_FLAT
));
2600 smb_uuid_unpack(flat_guid
, guid
);
2601 ldap_value_free(values
);
2604 ldap_value_free(values
);
2611 * pull a single DOM_SID from a ADS result
2612 * @param ads connection to ads server
2613 * @param msg Results of search
2614 * @param field Attribute to retrieve
2615 * @param sid Pointer to sid to store result
2616 * @return boolean inidicating success
2618 bool ads_pull_sid(ADS_STRUCT
*ads
, LDAPMessage
*msg
, const char *field
,
2621 struct berval
**values
;
2624 values
= ldap_get_values_len(ads
->ldap
.ld
, msg
, field
);
2630 ret
= sid_parse(values
[0]->bv_val
, values
[0]->bv_len
, sid
);
2632 ldap_value_free_len(values
);
2637 * pull an array of DOM_SIDs from a ADS result
2638 * @param ads connection to ads server
2639 * @param mem_ctx TALLOC_CTX for allocating sid array
2640 * @param msg Results of search
2641 * @param field Attribute to retrieve
2642 * @param sids pointer to sid array to allocate
2643 * @return the count of SIDs pulled
2645 int ads_pull_sids(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
2646 LDAPMessage
*msg
, const char *field
, DOM_SID
**sids
)
2648 struct berval
**values
;
2652 values
= ldap_get_values_len(ads
->ldap
.ld
, msg
, field
);
2657 for (i
=0; values
[i
]; i
++)
2661 (*sids
) = TALLOC_ARRAY(mem_ctx
, DOM_SID
, i
);
2663 ldap_value_free_len(values
);
2671 for (i
=0; values
[i
]; i
++) {
2672 ret
= sid_parse(values
[i
]->bv_val
, values
[i
]->bv_len
, &(*sids
)[count
]);
2674 DEBUG(10, ("pulling SID: %s\n",
2675 sid_string_dbg(&(*sids
)[count
])));
2680 ldap_value_free_len(values
);
2685 * pull a SEC_DESC from a ADS result
2686 * @param ads connection to ads server
2687 * @param mem_ctx TALLOC_CTX for allocating sid array
2688 * @param msg Results of search
2689 * @param field Attribute to retrieve
2690 * @param sd Pointer to *SEC_DESC to store result (talloc()ed)
2691 * @return boolean inidicating success
2693 bool ads_pull_sd(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
2694 LDAPMessage
*msg
, const char *field
, SEC_DESC
**sd
)
2696 struct berval
**values
;
2699 values
= ldap_get_values_len(ads
->ldap
.ld
, msg
, field
);
2701 if (!values
) return false;
2705 status
= unmarshall_sec_desc(mem_ctx
,
2706 (uint8
*)values
[0]->bv_val
,
2707 values
[0]->bv_len
, sd
);
2708 if (!NT_STATUS_IS_OK(status
)) {
2709 DEBUG(0, ("unmarshall_sec_desc failed: %s\n",
2710 nt_errstr(status
)));
2715 ldap_value_free_len(values
);
2720 * in order to support usernames longer than 21 characters we need to
2721 * use both the sAMAccountName and the userPrincipalName attributes
2722 * It seems that not all users have the userPrincipalName attribute set
2724 * @param ads connection to ads server
2725 * @param mem_ctx TALLOC_CTX for allocating sid array
2726 * @param msg Results of search
2727 * @return the username
2729 char *ads_pull_username(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
2735 /* lookup_name() only works on the sAMAccountName to
2736 returning the username portion of userPrincipalName
2737 breaks winbindd_getpwnam() */
2739 ret
= ads_pull_string(ads
, mem_ctx
, msg
, "userPrincipalName");
2740 if (ret
&& (p
= strchr_m(ret
, '@'))) {
2745 return ads_pull_string(ads
, mem_ctx
, msg
, "sAMAccountName");
2750 * find the update serial number - this is the core of the ldap cache
2751 * @param ads connection to ads server
2752 * @param ads connection to ADS server
2753 * @param usn Pointer to retrieved update serial number
2754 * @return status of search
2756 ADS_STATUS
ads_USN(ADS_STRUCT
*ads
, uint32
*usn
)
2758 const char *attrs
[] = {"highestCommittedUSN", NULL
};
2762 status
= ads_do_search_retry(ads
, "", LDAP_SCOPE_BASE
, "(objectclass=*)", attrs
, &res
);
2763 if (!ADS_ERR_OK(status
))
2766 if (ads_count_replies(ads
, res
) != 1) {
2767 ads_msgfree(ads
, res
);
2768 return ADS_ERROR(LDAP_NO_RESULTS_RETURNED
);
2771 if (!ads_pull_uint32(ads
, res
, "highestCommittedUSN", usn
)) {
2772 ads_msgfree(ads
, res
);
2773 return ADS_ERROR(LDAP_NO_SUCH_ATTRIBUTE
);
2776 ads_msgfree(ads
, res
);
2780 /* parse a ADS timestring - typical string is
2781 '20020917091222.0Z0' which means 09:12.22 17th September
2783 static time_t ads_parse_time(const char *str
)
2789 if (sscanf(str
, "%4d%2d%2d%2d%2d%2d",
2790 &tm
.tm_year
, &tm
.tm_mon
, &tm
.tm_mday
,
2791 &tm
.tm_hour
, &tm
.tm_min
, &tm
.tm_sec
) != 6) {
2800 /********************************************************************
2801 ********************************************************************/
2803 ADS_STATUS
ads_current_time(ADS_STRUCT
*ads
)
2805 const char *attrs
[] = {"currentTime", NULL
};
2810 ADS_STRUCT
*ads_s
= ads
;
2812 if (!(ctx
= talloc_init("ads_current_time"))) {
2813 return ADS_ERROR(LDAP_NO_MEMORY
);
2816 /* establish a new ldap tcp session if necessary */
2818 if ( !ads
->ldap
.ld
) {
2819 if ( (ads_s
= ads_init( ads
->server
.realm
, ads
->server
.workgroup
,
2820 ads
->server
.ldap_server
)) == NULL
)
2824 ads_s
->auth
.flags
= ADS_AUTH_ANON_BIND
;
2825 status
= ads_connect( ads_s
);
2826 if ( !ADS_ERR_OK(status
))
2830 status
= ads_do_search(ads_s
, "", LDAP_SCOPE_BASE
, "(objectclass=*)", attrs
, &res
);
2831 if (!ADS_ERR_OK(status
)) {
2835 timestr
= ads_pull_string(ads_s
, ctx
, res
, "currentTime");
2837 ads_msgfree(ads_s
, res
);
2838 status
= ADS_ERROR(LDAP_NO_RESULTS_RETURNED
);
2842 /* but save the time and offset in the original ADS_STRUCT */
2844 ads
->config
.current_time
= ads_parse_time(timestr
);
2846 if (ads
->config
.current_time
!= 0) {
2847 ads
->auth
.time_offset
= ads
->config
.current_time
- time(NULL
);
2848 DEBUG(4,("time offset is %d seconds\n", ads
->auth
.time_offset
));
2851 ads_msgfree(ads
, res
);
2853 status
= ADS_SUCCESS
;
2856 /* free any temporary ads connections */
2857 if ( ads_s
!= ads
) {
2858 ads_destroy( &ads_s
);
2860 talloc_destroy(ctx
);
2865 /********************************************************************
2866 ********************************************************************/
2868 ADS_STATUS
ads_domain_func_level(ADS_STRUCT
*ads
, uint32
*val
)
2870 const char *attrs
[] = {"domainFunctionality", NULL
};
2873 ADS_STRUCT
*ads_s
= ads
;
2875 *val
= DS_DOMAIN_FUNCTION_2000
;
2877 /* establish a new ldap tcp session if necessary */
2879 if ( !ads
->ldap
.ld
) {
2880 if ( (ads_s
= ads_init( ads
->server
.realm
, ads
->server
.workgroup
,
2881 ads
->server
.ldap_server
)) == NULL
)
2883 status
= ADS_ERROR_NT(NT_STATUS_NO_MEMORY
);
2886 ads_s
->auth
.flags
= ADS_AUTH_ANON_BIND
;
2887 status
= ads_connect( ads_s
);
2888 if ( !ADS_ERR_OK(status
))
2892 /* If the attribute does not exist assume it is a Windows 2000
2893 functional domain */
2895 status
= ads_do_search(ads_s
, "", LDAP_SCOPE_BASE
, "(objectclass=*)", attrs
, &res
);
2896 if (!ADS_ERR_OK(status
)) {
2897 if ( status
.err
.rc
== LDAP_NO_SUCH_ATTRIBUTE
) {
2898 status
= ADS_SUCCESS
;
2903 if ( !ads_pull_uint32(ads_s
, res
, "domainFunctionality", val
) ) {
2904 DEBUG(5,("ads_domain_func_level: Failed to pull the domainFunctionality attribute.\n"));
2906 DEBUG(3,("ads_domain_func_level: %d\n", *val
));
2909 ads_msgfree(ads
, res
);
2912 /* free any temporary ads connections */
2913 if ( ads_s
!= ads
) {
2914 ads_destroy( &ads_s
);
2921 * find the domain sid for our domain
2922 * @param ads connection to ads server
2923 * @param sid Pointer to domain sid
2924 * @return status of search
2926 ADS_STATUS
ads_domain_sid(ADS_STRUCT
*ads
, DOM_SID
*sid
)
2928 const char *attrs
[] = {"objectSid", NULL
};
2932 rc
= ads_do_search_retry(ads
, ads
->config
.bind_path
, LDAP_SCOPE_BASE
, "(objectclass=*)",
2934 if (!ADS_ERR_OK(rc
)) return rc
;
2935 if (!ads_pull_sid(ads
, res
, "objectSid", sid
)) {
2936 ads_msgfree(ads
, res
);
2937 return ADS_ERROR_SYSTEM(ENOENT
);
2939 ads_msgfree(ads
, res
);
2945 * find our site name
2946 * @param ads connection to ads server
2947 * @param mem_ctx Pointer to talloc context
2948 * @param site_name Pointer to the sitename
2949 * @return status of search
2951 ADS_STATUS
ads_site_dn(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, const char **site_name
)
2955 const char *dn
, *service_name
;
2956 const char *attrs
[] = { "dsServiceName", NULL
};
2958 status
= ads_do_search(ads
, "", LDAP_SCOPE_BASE
, "(objectclass=*)", attrs
, &res
);
2959 if (!ADS_ERR_OK(status
)) {
2963 service_name
= ads_pull_string(ads
, mem_ctx
, res
, "dsServiceName");
2964 if (service_name
== NULL
) {
2965 ads_msgfree(ads
, res
);
2966 return ADS_ERROR(LDAP_NO_RESULTS_RETURNED
);
2969 ads_msgfree(ads
, res
);
2971 /* go up three levels */
2972 dn
= ads_parent_dn(ads_parent_dn(ads_parent_dn(service_name
)));
2974 return ADS_ERROR(LDAP_NO_MEMORY
);
2977 *site_name
= talloc_strdup(mem_ctx
, dn
);
2978 if (*site_name
== NULL
) {
2979 return ADS_ERROR(LDAP_NO_MEMORY
);
2984 dsServiceName: CN=NTDS Settings,CN=W2K3DC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=ber,DC=suse,DC=de
2989 * find the site dn where a machine resides
2990 * @param ads connection to ads server
2991 * @param mem_ctx Pointer to talloc context
2992 * @param computer_name name of the machine
2993 * @param site_name Pointer to the sitename
2994 * @return status of search
2996 ADS_STATUS
ads_site_dn_for_machine(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, const char *computer_name
, const char **site_dn
)
3000 const char *parent
, *filter
;
3001 char *config_context
= NULL
;
3004 /* shortcut a query */
3005 if (strequal(computer_name
, ads
->config
.ldap_server_name
)) {
3006 return ads_site_dn(ads
, mem_ctx
, site_dn
);
3009 status
= ads_config_path(ads
, mem_ctx
, &config_context
);
3010 if (!ADS_ERR_OK(status
)) {
3014 filter
= talloc_asprintf(mem_ctx
, "(cn=%s)", computer_name
);
3015 if (filter
== NULL
) {
3016 return ADS_ERROR(LDAP_NO_MEMORY
);
3019 status
= ads_do_search(ads
, config_context
, LDAP_SCOPE_SUBTREE
,
3020 filter
, NULL
, &res
);
3021 if (!ADS_ERR_OK(status
)) {
3025 if (ads_count_replies(ads
, res
) != 1) {
3026 ads_msgfree(ads
, res
);
3027 return ADS_ERROR(LDAP_NO_SUCH_OBJECT
);
3030 dn
= ads_get_dn(ads
, res
);
3032 ads_msgfree(ads
, res
);
3033 return ADS_ERROR(LDAP_NO_MEMORY
);
3036 /* go up three levels */
3037 parent
= ads_parent_dn(ads_parent_dn(ads_parent_dn(dn
)));
3038 if (parent
== NULL
) {
3039 ads_msgfree(ads
, res
);
3040 ads_memfree(ads
, dn
);
3041 return ADS_ERROR(LDAP_NO_MEMORY
);
3044 *site_dn
= talloc_strdup(mem_ctx
, parent
);
3045 if (*site_dn
== NULL
) {
3046 ads_msgfree(ads
, res
);
3047 ads_memfree(ads
, dn
);
3048 return ADS_ERROR(LDAP_NO_MEMORY
);
3051 ads_memfree(ads
, dn
);
3052 ads_msgfree(ads
, res
);
3058 * get the upn suffixes for a domain
3059 * @param ads connection to ads server
3060 * @param mem_ctx Pointer to talloc context
3061 * @param suffixes Pointer to an array of suffixes
3062 * @param num_suffixes Pointer to the number of suffixes
3063 * @return status of search
3065 ADS_STATUS
ads_upn_suffixes(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, char ***suffixes
, size_t *num_suffixes
)
3070 char *config_context
= NULL
;
3071 const char *attrs
[] = { "uPNSuffixes", NULL
};
3073 status
= ads_config_path(ads
, mem_ctx
, &config_context
);
3074 if (!ADS_ERR_OK(status
)) {
3078 base
= talloc_asprintf(mem_ctx
, "cn=Partitions,%s", config_context
);
3080 return ADS_ERROR(LDAP_NO_MEMORY
);
3083 status
= ads_search_dn(ads
, &res
, base
, attrs
);
3084 if (!ADS_ERR_OK(status
)) {
3088 if (ads_count_replies(ads
, res
) != 1) {
3089 ads_msgfree(ads
, res
);
3090 return ADS_ERROR(LDAP_NO_SUCH_OBJECT
);
3093 (*suffixes
) = ads_pull_strings(ads
, mem_ctx
, res
, "uPNSuffixes", num_suffixes
);
3094 if ((*suffixes
) == NULL
) {
3095 ads_msgfree(ads
, res
);
3096 return ADS_ERROR(LDAP_NO_MEMORY
);
3099 ads_msgfree(ads
, res
);
3105 * get the joinable ous for a domain
3106 * @param ads connection to ads server
3107 * @param mem_ctx Pointer to talloc context
3108 * @param ous Pointer to an array of ous
3109 * @param num_ous Pointer to the number of ous
3110 * @return status of search
3112 ADS_STATUS
ads_get_joinable_ous(ADS_STRUCT
*ads
,
3113 TALLOC_CTX
*mem_ctx
,
3118 LDAPMessage
*res
= NULL
;
3119 LDAPMessage
*msg
= NULL
;
3120 const char *attrs
[] = { "dn", NULL
};
3123 status
= ads_search(ads
, &res
,
3124 "(|(objectClass=domain)(objectclass=organizationalUnit))",
3126 if (!ADS_ERR_OK(status
)) {
3130 count
= ads_count_replies(ads
, res
);
3132 ads_msgfree(ads
, res
);
3133 return ADS_ERROR(LDAP_NO_RESULTS_RETURNED
);
3136 for (msg
= ads_first_entry(ads
, res
); msg
;
3137 msg
= ads_next_entry(ads
, msg
)) {
3141 dn
= ads_get_dn(ads
, msg
);
3143 ads_msgfree(ads
, res
);
3144 return ADS_ERROR(LDAP_NO_MEMORY
);
3147 if (!add_string_to_array(mem_ctx
, dn
,
3148 (const char ***)ous
,
3150 ads_memfree(ads
, dn
);
3151 ads_msgfree(ads
, res
);
3152 return ADS_ERROR(LDAP_NO_MEMORY
);
3155 ads_memfree(ads
, dn
);
3158 ads_msgfree(ads
, res
);
3165 * pull a DOM_SID from an extended dn string
3166 * @param mem_ctx TALLOC_CTX
3167 * @param extended_dn string
3168 * @param flags string type of extended_dn
3169 * @param sid pointer to a DOM_SID
3170 * @return NT_STATUS_OK on success,
3171 * NT_INVALID_PARAMETER on error,
3172 * NT_STATUS_NOT_FOUND if no SID present
3174 ADS_STATUS
ads_get_sid_from_extended_dn(TALLOC_CTX
*mem_ctx
,
3175 const char *extended_dn
,
3176 enum ads_extended_dn_flags flags
,
3182 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
3185 /* otherwise extended_dn gets stripped off */
3186 if ((dn
= talloc_strdup(mem_ctx
, extended_dn
)) == NULL
) {
3187 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
3190 * ADS_EXTENDED_DN_HEX_STRING:
3191 * <GUID=238e1963cb390f4bb032ba0105525a29>;<SID=010500000000000515000000bb68c8fd6b61b427572eb04556040000>;CN=gd,OU=berlin,OU=suse,DC=ber,DC=suse,DC=de
3193 * ADS_EXTENDED_DN_STRING (only with w2k3):
3194 * <GUID=63198e23-39cb-4b0f-b032-ba0105525a29>;<SID=S-1-5-21-4257769659-666132843-1169174103-1110>;CN=gd,OU=berlin,OU=suse,DC=ber,DC=suse,DC=de
3196 * Object with no SID, such as an Exchange Public Folder
3197 * <GUID=28907fb4bdf6854993e7f0a10b504e7c>;CN=public,CN=Microsoft Exchange System Objects,DC=sd2k3ms,DC=west,DC=isilon,DC=com
3200 p
= strchr(dn
, ';');
3202 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
3205 if (strncmp(p
, ";<SID=", strlen(";<SID=")) != 0) {
3206 DEBUG(5,("No SID present in extended dn\n"));
3207 return ADS_ERROR_NT(NT_STATUS_NOT_FOUND
);
3210 p
+= strlen(";<SID=");
3214 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
3219 DEBUG(100,("ads_get_sid_from_extended_dn: sid string is %s\n", p
));
3223 case ADS_EXTENDED_DN_STRING
:
3224 if (!string_to_sid(sid
, p
)) {
3225 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
3228 case ADS_EXTENDED_DN_HEX_STRING
: {
3232 buf_len
= strhex_to_str(buf
, sizeof(buf
), p
, strlen(p
));
3234 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
3237 if (!sid_parse(buf
, buf_len
, sid
)) {
3238 DEBUG(10,("failed to parse sid\n"));
3239 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
3244 DEBUG(10,("unknown extended dn format\n"));
3245 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
3248 return ADS_ERROR_NT(NT_STATUS_OK
);
3252 * pull an array of DOM_SIDs from a ADS result
3253 * @param ads connection to ads server
3254 * @param mem_ctx TALLOC_CTX for allocating sid array
3255 * @param msg Results of search
3256 * @param field Attribute to retrieve
3257 * @param flags string type of extended_dn
3258 * @param sids pointer to sid array to allocate
3259 * @return the count of SIDs pulled
3261 int ads_pull_sids_from_extendeddn(ADS_STRUCT
*ads
,
3262 TALLOC_CTX
*mem_ctx
,
3265 enum ads_extended_dn_flags flags
,
3270 size_t dn_count
, ret_count
= 0;
3273 if ((dn_strings
= ads_pull_strings(ads
, mem_ctx
, msg
, field
,
3274 &dn_count
)) == NULL
) {
3278 (*sids
) = TALLOC_ZERO_ARRAY(mem_ctx
, DOM_SID
, dn_count
+ 1);
3280 TALLOC_FREE(dn_strings
);
3284 for (i
=0; i
<dn_count
; i
++) {
3285 rc
= ads_get_sid_from_extended_dn(mem_ctx
, dn_strings
[i
],
3286 flags
, &(*sids
)[i
]);
3287 if (!ADS_ERR_OK(rc
)) {
3288 if (NT_STATUS_EQUAL(ads_ntstatus(rc
),
3289 NT_STATUS_NOT_FOUND
)) {
3294 TALLOC_FREE(dn_strings
);
3301 TALLOC_FREE(dn_strings
);
3306 /********************************************************************
3307 ********************************************************************/
3309 char* ads_get_dnshostname( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
)
3311 LDAPMessage
*res
= NULL
;
3316 status
= ads_find_machine_acct(ads
, &res
, global_myname());
3317 if (!ADS_ERR_OK(status
)) {
3318 DEBUG(0,("ads_get_dnshostname: Failed to find account for %s\n",
3323 if ( (count
= ads_count_replies(ads
, res
)) != 1 ) {
3324 DEBUG(1,("ads_get_dnshostname: %d entries returned!\n", count
));
3328 if ( (name
= ads_pull_string(ads
, ctx
, res
, "dNSHostName")) == NULL
) {
3329 DEBUG(0,("ads_get_dnshostname: No dNSHostName attribute!\n"));
3333 ads_msgfree(ads
, res
);
3338 /********************************************************************
3339 ********************************************************************/
3341 char* ads_get_upn( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
)
3343 LDAPMessage
*res
= NULL
;
3348 status
= ads_find_machine_acct(ads
, &res
, machine_name
);
3349 if (!ADS_ERR_OK(status
)) {
3350 DEBUG(0,("ads_get_upn: Failed to find account for %s\n",
3355 if ( (count
= ads_count_replies(ads
, res
)) != 1 ) {
3356 DEBUG(1,("ads_get_upn: %d entries returned!\n", count
));
3360 if ( (name
= ads_pull_string(ads
, ctx
, res
, "userPrincipalName")) == NULL
) {
3361 DEBUG(2,("ads_get_upn: No userPrincipalName attribute!\n"));
3365 ads_msgfree(ads
, res
);
3370 /********************************************************************
3371 ********************************************************************/
3373 char* ads_get_samaccountname( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
)
3375 LDAPMessage
*res
= NULL
;
3380 status
= ads_find_machine_acct(ads
, &res
, global_myname());
3381 if (!ADS_ERR_OK(status
)) {
3382 DEBUG(0,("ads_get_dnshostname: Failed to find account for %s\n",
3387 if ( (count
= ads_count_replies(ads
, res
)) != 1 ) {
3388 DEBUG(1,("ads_get_dnshostname: %d entries returned!\n", count
));
3392 if ( (name
= ads_pull_string(ads
, ctx
, res
, "sAMAccountName")) == NULL
) {
3393 DEBUG(0,("ads_get_dnshostname: No sAMAccountName attribute!\n"));
3397 ads_msgfree(ads
, res
);
3404 SAVED CODE
- we used to join via ldap
- remember how we did
this. JRA
.
3407 * Join a machine to a realm
3408 * Creates the machine account and sets the machine password
3409 * @param ads connection to ads server
3410 * @param machine name of host to add
3411 * @param org_unit Organizational unit to place machine in
3412 * @return status of join
3414 ADS_STATUS
ads_join_realm(ADS_STRUCT
*ads
, const char *machine_name
,
3415 uint32 account_type
, const char *org_unit
)
3418 LDAPMessage
*res
= NULL
;
3421 /* machine name must be lowercase */
3422 machine
= SMB_STRDUP(machine_name
);
3423 strlower_m(machine
);
3426 status = ads_find_machine_acct(ads, (void **)&res, machine);
3427 if (ADS_ERR_OK(status) && ads_count_replies(ads, res) == 1) {
3428 DEBUG(0, ("Host account for %s already exists - deleting old account\n", machine));
3429 status = ads_leave_realm(ads, machine);
3430 if (!ADS_ERR_OK(status)) {
3431 DEBUG(0, ("Failed to delete host '%s' from the '%s' realm.\n",
3432 machine, ads->config.realm));
3437 status
= ads_add_machine_acct(ads
, machine
, account_type
, org_unit
);
3438 if (!ADS_ERR_OK(status
)) {
3439 DEBUG(0, ("ads_join_realm: ads_add_machine_acct failed (%s): %s\n", machine
, ads_errstr(status
)));
3444 status
= ads_find_machine_acct(ads
, (void **)(void *)&res
, machine
);
3445 if (!ADS_ERR_OK(status
)) {
3446 DEBUG(0, ("ads_join_realm: Host account test failed for machine %s\n", machine
));
3452 ads_msgfree(ads
, res
);
3459 * Delete a machine from the realm
3460 * @param ads connection to ads server
3461 * @param hostname Machine to remove
3462 * @return status of delete
3464 ADS_STATUS
ads_leave_realm(ADS_STRUCT
*ads
, const char *hostname
)
3469 char *hostnameDN
, *host
;
3471 LDAPControl ldap_control
;
3472 LDAPControl
* pldap_control
[2] = {NULL
, NULL
};
3474 pldap_control
[0] = &ldap_control
;
3475 memset(&ldap_control
, 0, sizeof(LDAPControl
));
3476 ldap_control
.ldctl_oid
= (char *)LDAP_SERVER_TREE_DELETE_OID
;
3478 /* hostname must be lowercase */
3479 host
= SMB_STRDUP(hostname
);
3482 status
= ads_find_machine_acct(ads
, &res
, host
);
3483 if (!ADS_ERR_OK(status
)) {
3484 DEBUG(0, ("Host account for %s does not exist.\n", host
));
3489 msg
= ads_first_entry(ads
, res
);
3492 return ADS_ERROR_SYSTEM(ENOENT
);
3495 hostnameDN
= ads_get_dn(ads
, (LDAPMessage
*)msg
);
3497 rc
= ldap_delete_ext_s(ads
->ldap
.ld
, hostnameDN
, pldap_control
, NULL
);
3499 DEBUG(3,("ldap_delete_ext_s failed with error code %d\n", rc
));
3501 DEBUG(3,("ldap_delete_ext_s succeeded with error code %d\n", rc
));
3504 if (rc
!= LDAP_SUCCESS
) {
3505 const char *attrs
[] = { "cn", NULL
};
3506 LDAPMessage
*msg_sub
;
3508 /* we only search with scope ONE, we do not expect any further
3509 * objects to be created deeper */
3511 status
= ads_do_search_retry(ads
, hostnameDN
,
3512 LDAP_SCOPE_ONELEVEL
,
3513 "(objectclass=*)", attrs
, &res
);
3515 if (!ADS_ERR_OK(status
)) {
3517 ads_memfree(ads
, hostnameDN
);
3521 for (msg_sub
= ads_first_entry(ads
, res
); msg_sub
;
3522 msg_sub
= ads_next_entry(ads
, msg_sub
)) {
3526 if ((dn
= ads_get_dn(ads
, msg_sub
)) == NULL
) {
3528 ads_memfree(ads
, hostnameDN
);
3529 return ADS_ERROR(LDAP_NO_MEMORY
);
3532 status
= ads_del_dn(ads
, dn
);
3533 if (!ADS_ERR_OK(status
)) {
3534 DEBUG(3,("failed to delete dn %s: %s\n", dn
, ads_errstr(status
)));
3536 ads_memfree(ads
, dn
);
3537 ads_memfree(ads
, hostnameDN
);
3541 ads_memfree(ads
, dn
);
3544 /* there should be no subordinate objects anymore */
3545 status
= ads_do_search_retry(ads
, hostnameDN
,
3546 LDAP_SCOPE_ONELEVEL
,
3547 "(objectclass=*)", attrs
, &res
);
3549 if (!ADS_ERR_OK(status
) || ( (ads_count_replies(ads
, res
)) > 0 ) ) {
3551 ads_memfree(ads
, hostnameDN
);
3555 /* delete hostnameDN now */
3556 status
= ads_del_dn(ads
, hostnameDN
);
3557 if (!ADS_ERR_OK(status
)) {
3559 DEBUG(3,("failed to delete dn %s: %s\n", hostnameDN
, ads_errstr(status
)));
3560 ads_memfree(ads
, hostnameDN
);
3565 ads_memfree(ads
, hostnameDN
);
3567 status
= ads_find_machine_acct(ads
, &res
, host
);
3568 if (ADS_ERR_OK(status
) && ads_count_replies(ads
, res
) == 1) {
3569 DEBUG(3, ("Failed to remove host account.\n"));
3579 * pull all token-sids from an LDAP dn
3580 * @param ads connection to ads server
3581 * @param mem_ctx TALLOC_CTX for allocating sid array
3582 * @param dn of LDAP object
3583 * @param user_sid pointer to DOM_SID (objectSid)
3584 * @param primary_group_sid pointer to DOM_SID (self composed)
3585 * @param sids pointer to sid array to allocate
3586 * @param num_sids counter of SIDs pulled
3587 * @return status of token query
3589 ADS_STATUS
ads_get_tokensids(ADS_STRUCT
*ads
,
3590 TALLOC_CTX
*mem_ctx
,
3593 DOM_SID
*primary_group_sid
,
3598 LDAPMessage
*res
= NULL
;
3600 size_t tmp_num_sids
;
3602 DOM_SID tmp_user_sid
;
3603 DOM_SID tmp_primary_group_sid
;
3605 const char *attrs
[] = {
3612 status
= ads_search_retry_dn(ads
, &res
, dn
, attrs
);
3613 if (!ADS_ERR_OK(status
)) {
3617 count
= ads_count_replies(ads
, res
);
3619 ads_msgfree(ads
, res
);
3620 return ADS_ERROR_LDAP(LDAP_NO_SUCH_OBJECT
);
3623 if (!ads_pull_sid(ads
, res
, "objectSid", &tmp_user_sid
)) {
3624 ads_msgfree(ads
, res
);
3625 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
3628 if (!ads_pull_uint32(ads
, res
, "primaryGroupID", &pgid
)) {
3629 ads_msgfree(ads
, res
);
3630 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
3634 /* hack to compose the primary group sid without knowing the
3640 sid_copy(&domsid
, &tmp_user_sid
);
3642 if (!sid_split_rid(&domsid
, &dummy_rid
)) {
3643 ads_msgfree(ads
, res
);
3644 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
3647 if (!sid_compose(&tmp_primary_group_sid
, &domsid
, pgid
)) {
3648 ads_msgfree(ads
, res
);
3649 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
3653 tmp_num_sids
= ads_pull_sids(ads
, mem_ctx
, res
, "tokenGroups", &tmp_sids
);
3655 if (tmp_num_sids
== 0 || !tmp_sids
) {
3656 ads_msgfree(ads
, res
);
3657 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
3661 *num_sids
= tmp_num_sids
;
3669 *user_sid
= tmp_user_sid
;
3672 if (primary_group_sid
) {
3673 *primary_group_sid
= tmp_primary_group_sid
;
3676 DEBUG(10,("ads_get_tokensids: returned %d sids\n", (int)tmp_num_sids
+ 2));
3678 ads_msgfree(ads
, res
);
3679 return ADS_ERROR_LDAP(LDAP_SUCCESS
);
3683 * Find a sAMAccoutName in LDAP
3684 * @param ads connection to ads server
3685 * @param mem_ctx TALLOC_CTX for allocating sid array
3686 * @param samaccountname to search
3687 * @param uac_ret uint32 pointer userAccountControl attribute value
3688 * @param dn_ret pointer to dn
3689 * @return status of token query
3691 ADS_STATUS
ads_find_samaccount(ADS_STRUCT
*ads
,
3692 TALLOC_CTX
*mem_ctx
,
3693 const char *samaccountname
,
3695 const char **dn_ret
)
3698 const char *attrs
[] = { "userAccountControl", NULL
};
3700 LDAPMessage
*res
= NULL
;
3704 filter
= talloc_asprintf(mem_ctx
, "(&(objectclass=user)(sAMAccountName=%s))",
3706 if (filter
== NULL
) {
3707 status
= ADS_ERROR_NT(NT_STATUS_NO_MEMORY
);
3711 status
= ads_do_search_all(ads
, ads
->config
.bind_path
,
3713 filter
, attrs
, &res
);
3715 if (!ADS_ERR_OK(status
)) {
3719 if (ads_count_replies(ads
, res
) != 1) {
3720 status
= ADS_ERROR(LDAP_NO_RESULTS_RETURNED
);
3724 dn
= ads_get_dn(ads
, res
);
3726 status
= ADS_ERROR(LDAP_NO_MEMORY
);
3730 if (!ads_pull_uint32(ads
, res
, "userAccountControl", &uac
)) {
3731 status
= ADS_ERROR(LDAP_NO_SUCH_ATTRIBUTE
);
3740 *dn_ret
= talloc_strdup(mem_ctx
, dn
);
3742 status
= ADS_ERROR(LDAP_NO_MEMORY
);
3747 ads_memfree(ads
, dn
);
3748 ads_msgfree(ads
, res
);
3754 * find our configuration path
3755 * @param ads connection to ads server
3756 * @param mem_ctx Pointer to talloc context
3757 * @param config_path Pointer to the config path
3758 * @return status of search
3760 ADS_STATUS
ads_config_path(ADS_STRUCT
*ads
,
3761 TALLOC_CTX
*mem_ctx
,
3765 LDAPMessage
*res
= NULL
;
3766 const char *config_context
= NULL
;
3767 const char *attrs
[] = { "configurationNamingContext", NULL
};
3769 status
= ads_do_search(ads
, "", LDAP_SCOPE_BASE
,
3770 "(objectclass=*)", attrs
, &res
);
3771 if (!ADS_ERR_OK(status
)) {
3775 config_context
= ads_pull_string(ads
, mem_ctx
, res
,
3776 "configurationNamingContext");
3777 ads_msgfree(ads
, res
);
3778 if (!config_context
) {
3779 return ADS_ERROR(LDAP_NO_MEMORY
);
3783 *config_path
= talloc_strdup(mem_ctx
, config_context
);
3784 if (!*config_path
) {
3785 return ADS_ERROR(LDAP_NO_MEMORY
);
3789 return ADS_ERROR(LDAP_SUCCESS
);
3793 * find the displayName of an extended right
3794 * @param ads connection to ads server
3795 * @param config_path The config path
3796 * @param mem_ctx Pointer to talloc context
3797 * @param GUID struct of the rightsGUID
3798 * @return status of search
3800 const char *ads_get_extended_right_name_by_guid(ADS_STRUCT
*ads
,
3801 const char *config_path
,
3802 TALLOC_CTX
*mem_ctx
,
3803 const struct GUID
*rights_guid
)
3806 LDAPMessage
*res
= NULL
;
3808 const char *attrs
[] = { "displayName", NULL
};
3809 const char *result
= NULL
;
3812 if (!ads
|| !mem_ctx
|| !rights_guid
) {
3816 expr
= talloc_asprintf(mem_ctx
, "(rightsGuid=%s)",
3817 GUID_string(mem_ctx
, rights_guid
));
3822 path
= talloc_asprintf(mem_ctx
, "cn=Extended-Rights,%s", config_path
);
3827 rc
= ads_do_search_retry(ads
, path
, LDAP_SCOPE_SUBTREE
,
3829 if (!ADS_ERR_OK(rc
)) {
3833 if (ads_count_replies(ads
, res
) != 1) {
3837 result
= ads_pull_string(ads
, mem_ctx
, res
, "displayName");
3840 ads_msgfree(ads
, res
);
3846 * verify or build and verify an account ou
3847 * @param mem_ctx Pointer to talloc context
3848 * @param ads connection to ads server
3850 * @return status of search
3853 ADS_STATUS
ads_check_ou_dn(TALLOC_CTX
*mem_ctx
,
3855 const char **account_ou
)
3857 struct ldb_dn
*name_dn
= NULL
;
3858 const char *name
= NULL
;
3859 char *ou_string
= NULL
;
3861 name_dn
= ldb_dn_explode(mem_ctx
, *account_ou
);
3866 ou_string
= ads_ou_string(ads
, *account_ou
);
3868 return ADS_ERROR_LDAP(LDAP_INVALID_DN_SYNTAX
);
3871 name
= talloc_asprintf(mem_ctx
, "%s,%s", ou_string
,
3872 ads
->config
.bind_path
);
3873 SAFE_FREE(ou_string
);
3875 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
3878 name_dn
= ldb_dn_explode(mem_ctx
, name
);
3880 return ADS_ERROR_LDAP(LDAP_INVALID_DN_SYNTAX
);
3883 *account_ou
= talloc_strdup(mem_ctx
, name
);
3885 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);