2 Unix SMB/CIFS implementation.
4 Winbind ADS backend functions
6 Copyright (C) Andrew Tridgell 2001
7 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2003
8 Copyright (C) Gerald (Jerry) Carter 2004
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 2 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, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 #define DBGC_CLASS DBGC_WINBIND
34 return our ads connections structure for a domain. We keep the connection
35 open to make things faster
37 static ADS_STRUCT
*ads_cached_connection(struct winbindd_domain
*domain
)
42 if (domain
->private) {
43 ads
= (ADS_STRUCT
*)domain
->private;
45 /* check for a valid structure */
47 DEBUG(7, ("Current tickets expire at %d\n, time is now %d\n",
48 (uint32
) ads
->auth
.expire
, (uint32
) time(NULL
)));
49 if ( ads
->config
.realm
&& (ads
->auth
.expire
> time(NULL
))) {
53 /* we own this ADS_STRUCT so make sure it goes away */
56 ads_kdestroy("MEMORY:winbind_ccache");
57 domain
->private = NULL
;
61 /* we don't want this to affect the users ccache */
62 setenv("KRB5CCNAME", "MEMORY:winbind_ccache", 1);
64 ads
= ads_init(domain
->alt_name
, domain
->name
, NULL
);
66 DEBUG(1,("ads_init for domain %s failed\n", domain
->name
));
70 /* the machine acct password might have change - fetch it every time */
71 SAFE_FREE(ads
->auth
.password
);
72 ads
->auth
.password
= secrets_fetch_machine_password(lp_workgroup(), NULL
, NULL
);
74 SAFE_FREE(ads
->auth
.realm
);
75 ads
->auth
.realm
= strdup(lp_realm());
77 status
= ads_connect(ads
);
78 if (!ADS_ERR_OK(status
) || !ads
->config
.realm
) {
79 extern struct winbindd_methods msrpc_methods
, cache_methods
;
80 DEBUG(1,("ads_connect for domain %s failed: %s\n",
81 domain
->name
, ads_errstr(status
)));
84 /* if we get ECONNREFUSED then it might be a NT4
85 server, fall back to MSRPC */
86 if (status
.error_type
== ENUM_ADS_ERROR_SYSTEM
&&
87 status
.err
.rc
== ECONNREFUSED
) {
88 DEBUG(1,("Trying MSRPC methods\n"));
89 if (domain
->methods
== &cache_methods
) {
90 domain
->backend
= &msrpc_methods
;
92 domain
->methods
= &msrpc_methods
;
98 /* set the flag that says we don't own the memory even
99 though we do so that ads_destroy() won't destroy the
100 structure we pass back by reference */
102 ads
->is_mine
= False
;
104 domain
->private = (void *)ads
;
109 /* Query display info for a realm. This is the basic user list fn */
110 static NTSTATUS
query_user_list(struct winbindd_domain
*domain
,
113 WINBIND_USERINFO
**info
)
115 ADS_STRUCT
*ads
= NULL
;
116 const char *attrs
[] = {"userPrincipalName",
118 "name", "objectSid", "primaryGroupID",
119 "sAMAccountType", NULL
};
124 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
128 DEBUG(3,("ads: query_user_list\n"));
130 ads
= ads_cached_connection(domain
);
133 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
137 rc
= ads_search_retry(ads
, &res
, "(objectClass=user)", attrs
);
138 if (!ADS_ERR_OK(rc
) || !res
) {
139 DEBUG(1,("query_user_list ads_search: %s\n", ads_errstr(rc
)));
143 count
= ads_count_replies(ads
, res
);
145 DEBUG(1,("query_user_list: No users found\n"));
149 (*info
) = talloc_zero(mem_ctx
, count
* sizeof(**info
));
151 status
= NT_STATUS_NO_MEMORY
;
157 for (msg
= ads_first_entry(ads
, res
); msg
; msg
= ads_next_entry(ads
, msg
)) {
165 if (!ads_pull_uint32(ads
, msg
, "sAMAccountType", &atype
) ||
166 ads_atype_map(atype
) != SID_NAME_USER
) {
167 DEBUG(1,("Not a user account? atype=0x%x\n", atype
));
171 name
= ads_pull_username(ads
, mem_ctx
, msg
);
172 gecos
= ads_pull_string(ads
, mem_ctx
, msg
, "name");
173 if (!ads_pull_sid(ads
, msg
, "objectSid", &sid
)) {
174 DEBUG(1,("No sid for %s !?\n", name
));
177 if (!ads_pull_uint32(ads
, msg
, "primaryGroupID", &group
)) {
178 DEBUG(1,("No primary group for %s !?\n", name
));
182 sid2
= talloc(mem_ctx
, sizeof(*sid2
));
184 status
= NT_STATUS_NO_MEMORY
;
188 sid_copy(sid2
, &sid
);
190 group_sid
= rid_to_talloced_sid(domain
, mem_ctx
, group
);
192 (*info
)[i
].acct_name
= name
;
193 (*info
)[i
].full_name
= gecos
;
194 (*info
)[i
].user_sid
= sid2
;
195 (*info
)[i
].group_sid
= group_sid
;
200 status
= NT_STATUS_OK
;
202 DEBUG(3,("ads query_user_list gave %d entries\n", (*num_entries
)));
206 ads_msgfree(ads
, res
);
211 /* list all domain groups */
212 static NTSTATUS
enum_dom_groups(struct winbindd_domain
*domain
,
215 struct acct_info
**info
)
217 ADS_STRUCT
*ads
= NULL
;
218 const char *attrs
[] = {"userPrincipalName", "sAMAccountName",
220 "sAMAccountType", NULL
};
225 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
230 DEBUG(3,("ads: enum_dom_groups\n"));
232 ads
= ads_cached_connection(domain
);
235 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
239 rc
= ads_search_retry(ads
, &res
, "(objectCategory=group)", attrs
);
240 if (!ADS_ERR_OK(rc
) || !res
) {
241 DEBUG(1,("enum_dom_groups ads_search: %s\n", ads_errstr(rc
)));
245 count
= ads_count_replies(ads
, res
);
247 DEBUG(1,("enum_dom_groups: No groups found\n"));
251 (*info
) = talloc_zero(mem_ctx
, count
* sizeof(**info
));
253 status
= NT_STATUS_NO_MEMORY
;
259 group_flags
= ATYPE_GLOBAL_GROUP
;
261 /* only grab domain local groups for our domain */
262 if ( domain
->native_mode
&& strequal(lp_realm(), domain
->alt_name
) )
263 group_flags
|= ATYPE_LOCAL_GROUP
;
265 for (msg
= ads_first_entry(ads
, res
); msg
; msg
= ads_next_entry(ads
, msg
)) {
271 if (!ads_pull_uint32(ads
, msg
, "sAMAccountType", &account_type
) || !(account_type
& group_flags
) )
274 name
= ads_pull_username(ads
, mem_ctx
, msg
);
275 gecos
= ads_pull_string(ads
, mem_ctx
, msg
, "name");
276 if (!ads_pull_sid(ads
, msg
, "objectSid", &sid
)) {
277 DEBUG(1,("No sid for %s !?\n", name
));
281 if (!sid_peek_check_rid(&domain
->sid
, &sid
, &rid
)) {
282 DEBUG(1,("No rid for %s !?\n", name
));
286 fstrcpy((*info
)[i
].acct_name
, name
);
287 fstrcpy((*info
)[i
].acct_desc
, gecos
);
288 (*info
)[i
].rid
= rid
;
294 status
= NT_STATUS_OK
;
296 DEBUG(3,("ads enum_dom_groups gave %d entries\n", (*num_entries
)));
300 ads_msgfree(ads
, res
);
305 /* list all domain local groups */
306 static NTSTATUS
enum_local_groups(struct winbindd_domain
*domain
,
309 struct acct_info
**info
)
312 * This is a stub function only as we returned the domain
313 * local groups in enum_dom_groups() if the domain->native field
314 * was true. This is a simple performance optimization when
317 * if we ever need to enumerate domain local groups separately,
318 * then this the optimization in enum_dom_groups() will need
326 /* convert a single name to a sid in a domain */
327 static NTSTATUS
name_to_sid(struct winbindd_domain
*domain
,
331 enum SID_NAME_USE
*type
)
335 DEBUG(3,("ads: name_to_sid\n"));
337 ads
= ads_cached_connection(domain
);
340 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
341 return NT_STATUS_UNSUCCESSFUL
;
344 return ads_name_to_sid(ads
, name
, sid
, type
);
347 /* convert a sid to a user or group name */
348 static NTSTATUS
sid_to_name(struct winbindd_domain
*domain
,
352 enum SID_NAME_USE
*type
)
354 ADS_STRUCT
*ads
= NULL
;
355 DEBUG(3,("ads: sid_to_name\n"));
357 ads
= ads_cached_connection(domain
);
360 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
361 return NT_STATUS_UNSUCCESSFUL
;
364 return ads_sid_to_name(ads
, mem_ctx
, sid
, name
, type
);
368 /* convert a DN to a name, SID and name type
369 this might become a major speed bottleneck if groups have
370 lots of users, in which case we could cache the results
372 static BOOL
dn_lookup(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
374 char **name
, uint32
*name_type
, DOM_SID
*sid
)
377 const char *attrs
[] = {"userPrincipalName", "sAMAccountName",
378 "objectSid", "sAMAccountType", NULL
};
381 DEBUG(3,("ads: dn_lookup\n"));
383 rc
= ads_search_retry_dn(ads
, &res
, dn
, attrs
);
385 if (!ADS_ERR_OK(rc
) || !res
) {
389 (*name
) = ads_pull_username(ads
, mem_ctx
, res
);
391 if (!ads_pull_uint32(ads
, res
, "sAMAccountType", &atype
)) {
394 (*name_type
) = ads_atype_map(atype
);
396 if (!ads_pull_sid(ads
, res
, "objectSid", sid
)) {
401 ads_msgfree(ads
, res
);
407 ads_msgfree(ads
, res
);
412 /* Lookup user information from a rid */
413 static NTSTATUS
query_user(struct winbindd_domain
*domain
,
416 WINBIND_USERINFO
*info
)
418 ADS_STRUCT
*ads
= NULL
;
419 const char *attrs
[] = {"userPrincipalName",
422 "primaryGroupID", NULL
};
429 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
433 DEBUG(3,("ads: query_user\n"));
435 ads
= ads_cached_connection(domain
);
438 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
442 sidstr
= sid_binstring(sid
);
443 asprintf(&ldap_exp
, "(objectSid=%s)", sidstr
);
444 rc
= ads_search_retry(ads
, &msg
, ldap_exp
, attrs
);
447 if (!ADS_ERR_OK(rc
) || !msg
) {
448 DEBUG(1,("query_user(sid=%s) ads_search: %s\n", sid_to_string(sid_string
, sid
), ads_errstr(rc
)));
452 count
= ads_count_replies(ads
, msg
);
454 DEBUG(1,("query_user(sid=%s): Not found\n", sid_to_string(sid_string
, sid
)));
458 info
->acct_name
= ads_pull_username(ads
, mem_ctx
, msg
);
459 info
->full_name
= ads_pull_string(ads
, mem_ctx
, msg
, "name");
461 if (!ads_pull_uint32(ads
, msg
, "primaryGroupID", &group_rid
)) {
462 DEBUG(1,("No primary group for %s !?\n", sid_to_string(sid_string
, sid
)));
466 sid2
= talloc(mem_ctx
, sizeof(*sid2
));
468 status
= NT_STATUS_NO_MEMORY
;
473 info
->user_sid
= sid2
;
475 info
->group_sid
= rid_to_talloced_sid(domain
, mem_ctx
, group_rid
);
477 status
= NT_STATUS_OK
;
479 DEBUG(3,("ads query_user gave %s\n", info
->acct_name
));
482 ads_msgfree(ads
, msg
);
487 /* Lookup groups a user is a member of - alternate method, for when
488 tokenGroups are not available. */
489 static NTSTATUS
lookup_usergroups_alt(struct winbindd_domain
*domain
,
492 DOM_SID
*primary_group
,
493 uint32
*num_groups
, DOM_SID
***user_gids
)
496 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
502 const char *group_attrs
[] = {"objectSid", NULL
};
505 DEBUG(3,("ads: lookup_usergroups_alt\n"));
507 ads
= ads_cached_connection(domain
);
510 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
514 if (!(escaped_dn
= escape_ldap_string_alloc(user_dn
))) {
515 status
= NT_STATUS_NO_MEMORY
;
519 /* buggy server, no tokenGroups. Instead lookup what groups this user
520 is a member of by DN search on member*/
522 if (!(ldap_exp
= talloc_asprintf(mem_ctx
, "(&(member=%s)(objectClass=group))", escaped_dn
))) {
523 DEBUG(1,("lookup_usergroups(dn=%s) asprintf failed!\n", user_dn
));
524 SAFE_FREE(escaped_dn
);
525 status
= NT_STATUS_NO_MEMORY
;
529 SAFE_FREE(escaped_dn
);
531 rc
= ads_search_retry(ads
, &res
, ldap_exp
, group_attrs
);
533 if (!ADS_ERR_OK(rc
) || !res
) {
534 DEBUG(1,("lookup_usergroups ads_search member=%s: %s\n", user_dn
, ads_errstr(rc
)));
535 return ads_ntstatus(rc
);
538 count
= ads_count_replies(ads
, res
);
540 DEBUG(5,("lookup_usergroups: No supp groups found\n"));
542 status
= ads_ntstatus(rc
);
546 (*user_gids
) = talloc_zero(mem_ctx
, sizeof(**user_gids
) * (count
+ 1));
547 (*user_gids
)[0] = primary_group
;
551 for (msg
= ads_first_entry(ads
, res
); msg
; msg
= ads_next_entry(ads
, msg
)) {
554 if (!ads_pull_sid(ads
, msg
, "objectSid", &group_sid
)) {
555 DEBUG(1,("No sid for this group ?!?\n"));
559 if (sid_equal(&group_sid
, primary_group
)) continue;
561 (*user_gids
)[*num_groups
] = talloc(mem_ctx
, sizeof(***user_gids
));
562 if (!(*user_gids
)[*num_groups
]) {
563 status
= NT_STATUS_NO_MEMORY
;
567 sid_copy((*user_gids
)[*num_groups
], &group_sid
);
573 status
= NT_STATUS_OK
;
575 DEBUG(3,("ads lookup_usergroups (alt) for dn=%s\n", user_dn
));
578 ads_msgfree(ads
, res
);
583 /* Lookup groups a user is a member of. */
584 static NTSTATUS
lookup_usergroups(struct winbindd_domain
*domain
,
587 uint32
*num_groups
, DOM_SID
***user_gids
)
589 ADS_STRUCT
*ads
= NULL
;
590 const char *attrs
[] = {"tokenGroups", "primaryGroupID", NULL
};
593 LDAPMessage
*msg
= NULL
;
597 DOM_SID
*primary_group
;
598 uint32 primary_group_rid
;
600 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
602 DEBUG(3,("ads: lookup_usergroups\n"));
605 ads
= ads_cached_connection(domain
);
608 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
609 status
= NT_STATUS_SERVER_DISABLED
;
613 rc
= ads_sid_to_dn(ads
, mem_ctx
, sid
, &user_dn
);
614 if (!ADS_ERR_OK(rc
)) {
615 status
= ads_ntstatus(rc
);
619 rc
= ads_search_retry_dn(ads
, (void**)&msg
, user_dn
, attrs
);
620 if (!ADS_ERR_OK(rc
)) {
621 status
= ads_ntstatus(rc
);
622 DEBUG(1,("lookup_usergroups(sid=%s) ads_search tokenGroups: %s\n",
623 sid_to_string(sid_string
, sid
), ads_errstr(rc
)));
628 DEBUG(1,("lookup_usergroups(sid=%s) ads_search tokenGroups: NULL msg\n",
629 sid_to_string(sid_string
, sid
)));
630 status
= NT_STATUS_UNSUCCESSFUL
;
634 if (!ads_pull_uint32(ads
, msg
, "primaryGroupID", &primary_group_rid
)) {
635 DEBUG(1,("%s: No primary group for sid=%s !?\n",
636 domain
->name
, sid_to_string(sid_string
, sid
)));
640 primary_group
= rid_to_talloced_sid(domain
, mem_ctx
, primary_group_rid
);
642 count
= ads_pull_sids(ads
, mem_ctx
, msg
, "tokenGroups", &sids
);
645 ads_msgfree(ads
, msg
);
647 /* there must always be at least one group in the token,
648 unless we are talking to a buggy Win2k server */
650 return lookup_usergroups_alt(domain
, mem_ctx
, user_dn
,
652 num_groups
, user_gids
);
655 (*user_gids
) = talloc_zero(mem_ctx
, sizeof(**user_gids
) * (count
+ 1));
656 (*user_gids
)[0] = primary_group
;
660 for (i
=0;i
<count
;i
++) {
661 if (sid_equal(&sids
[i
], primary_group
)) continue;
663 (*user_gids
)[*num_groups
] = talloc(mem_ctx
, sizeof(***user_gids
));
664 if (!(*user_gids
)[*num_groups
]) {
665 status
= NT_STATUS_NO_MEMORY
;
669 sid_copy((*user_gids
)[*num_groups
], &sids
[i
]);
673 status
= NT_STATUS_OK
;
674 DEBUG(3,("ads lookup_usergroups for sid=%s\n", sid_to_string(sid_string
, sid
)));
680 find the members of a group, given a group rid and domain
682 static NTSTATUS
lookup_groupmem(struct winbindd_domain
*domain
,
684 DOM_SID
*group_sid
, uint32
*num_names
,
685 DOM_SID
***sid_mem
, char ***names
,
691 ADS_STRUCT
*ads
= NULL
;
693 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
704 DEBUG(10,("ads: lookup_groupmem %s sid=%s\n", domain
->name
,
705 sid_string_static(group_sid
)));
709 ads
= ads_cached_connection(domain
);
712 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
716 sidstr
= sid_binstring(group_sid
);
718 /* search for all members of the group */
719 if (!(ldap_exp
= talloc_asprintf(mem_ctx
, "(objectSid=%s)",sidstr
))) {
721 DEBUG(1, ("ads: lookup_groupmem: tallloc_asprintf for ldap_exp failed!\n"));
722 status
= NT_STATUS_NO_MEMORY
;
730 attrs
= talloc(mem_ctx
, 3 * sizeof(*attrs
));
731 attrs
[1] = talloc_strdup(mem_ctx
, "usnChanged");
735 if (num_members
== 0)
736 attrs
[0] = talloc_strdup(mem_ctx
, "member");
738 DEBUG(10, ("Searching for attrs[0] = %s, attrs[1] = %s\n", attrs
[0], attrs
[1]));
740 rc
= ads_search_retry(ads
, &res
, ldap_exp
, attrs
);
742 if (!ADS_ERR_OK(rc
) || !res
) {
743 DEBUG(1,("ads: lookup_groupmem ads_search: %s\n",
745 status
= ads_ntstatus(rc
);
749 count
= ads_count_replies(ads
, res
);
753 if (num_members
== 0) {
754 if (!ads_pull_uint32(ads
, res
, "usnChanged", &first_usn
)) {
755 DEBUG(1, ("ads: lookup_groupmem could not pull usnChanged!\n"));
760 if (!ads_pull_uint32(ads
, res
, "usnChanged", ¤t_usn
)) {
761 DEBUG(1, ("ads: lookup_groupmem could not pull usnChanged!\n"));
765 if (first_usn
!= current_usn
) {
766 DEBUG(5, ("ads: lookup_groupmem USN on this record changed"
767 " - restarting search\n"));
768 if (num_retries
< 5) {
773 DEBUG(5, ("ads: lookup_groupmem USN on this record changed"
774 " - restarted search too many times, aborting!\n"));
775 status
= NT_STATUS_UNSUCCESSFUL
;
780 members
= ads_pull_strings_range(ads
, mem_ctx
, res
,
787 if ((members
== NULL
) || (num_members
== 0))
790 } while (more_values
);
792 /* now we need to turn a list of members into rids, names and name types
793 the problem is that the members are in the form of distinguised names
796 (*sid_mem
) = talloc_zero(mem_ctx
, sizeof(**sid_mem
) * num_members
);
797 (*name_types
) = talloc_zero(mem_ctx
, sizeof(**name_types
) * num_members
);
798 (*names
) = talloc_zero(mem_ctx
, sizeof(**names
) * num_members
);
800 for (i
=0;i
<num_members
;i
++) {
805 if (dn_lookup(ads
, mem_ctx
, members
[i
], &name
, &name_type
, &sid
)) {
806 (*names
)[*num_names
] = name
;
807 (*name_types
)[*num_names
] = name_type
;
808 (*sid_mem
)[*num_names
] = talloc(mem_ctx
, sizeof(***sid_mem
));
809 if (!(*sid_mem
)[*num_names
]) {
810 status
= NT_STATUS_NO_MEMORY
;
813 sid_copy((*sid_mem
)[*num_names
], &sid
);
818 status
= NT_STATUS_OK
;
819 DEBUG(3,("ads lookup_groupmem for sid=%s\n", sid_to_string(sid_string
, group_sid
)));
823 ads_msgfree(ads
, res
);
828 /* find the sequence number for a domain */
829 static NTSTATUS
sequence_number(struct winbindd_domain
*domain
, uint32
*seq
)
831 ADS_STRUCT
*ads
= NULL
;
834 DEBUG(3,("ads: fetch sequence_number for %s\n", domain
->name
));
836 *seq
= DOM_SEQUENCE_NONE
;
838 ads
= ads_cached_connection(domain
);
841 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
842 return NT_STATUS_UNSUCCESSFUL
;
845 rc
= ads_USN(ads
, seq
);
847 if (!ADS_ERR_OK(rc
)) {
849 /* its a dead connection ; don't destroy it
850 through since ads_USN() has already done
853 domain
->private = NULL
;
855 return ads_ntstatus(rc
);
858 /* get a list of trusted domains */
859 static NTSTATUS
trusted_domains(struct winbindd_domain
*domain
,
866 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
867 struct ds_domain_trust
*domains
= NULL
;
870 struct cli_state
*cli
= NULL
;
871 /* i think we only need our forest and downlevel trusted domains */
872 uint32 flags
= DS_DOMAIN_IN_FOREST
| DS_DOMAIN_DIRECT_OUTBOUND
;
874 DEBUG(3,("ads: trusted_domains\n"));
881 if ( !NT_STATUS_IS_OK(result
= cm_fresh_connection(domain
, PI_NETLOGON
, &cli
)) ) {
882 DEBUG(5, ("trusted_domains: Could not open a connection to %s for PIPE_NETLOGON (%s)\n",
883 domain
->name
, nt_errstr(result
)));
884 return NT_STATUS_UNSUCCESSFUL
;
887 if ( NT_STATUS_IS_OK(result
) )
888 result
= cli_ds_enum_domain_trusts( cli
, mem_ctx
, cli
->desthost
,
889 flags
, &domains
, (unsigned int *)&count
);
891 if ( NT_STATUS_IS_OK(result
) && count
) {
893 /* Allocate memory for trusted domain names and sids */
895 if ( !(*names
= (char **)talloc(mem_ctx
, sizeof(char *) * count
)) ) {
896 DEBUG(0, ("trusted_domains: out of memory\n"));
897 result
= NT_STATUS_NO_MEMORY
;
901 if ( !(*alt_names
= (char **)talloc(mem_ctx
, sizeof(char *) * count
)) ) {
902 DEBUG(0, ("trusted_domains: out of memory\n"));
903 result
= NT_STATUS_NO_MEMORY
;
907 if ( !(*dom_sids
= (DOM_SID
*)talloc(mem_ctx
, sizeof(DOM_SID
) * count
)) ) {
908 DEBUG(0, ("trusted_domains: out of memory\n"));
909 result
= NT_STATUS_NO_MEMORY
;
913 /* Copy across names and sids */
915 for (i
= 0; i
< count
; i
++) {
916 (*names
)[i
] = domains
[i
].netbios_domain
;
917 (*alt_names
)[i
] = domains
[i
].dns_domain
;
919 sid_copy(&(*dom_sids
)[i
], &domains
[i
].sid
);
922 *num_domains
= count
;
927 /* remove connection; This is a special case to the \NETLOGON pipe */
935 /* find the domain sid for a domain */
936 static NTSTATUS
domain_sid(struct winbindd_domain
*domain
, DOM_SID
*sid
)
941 DEBUG(3,("ads: domain_sid\n"));
943 ads
= ads_cached_connection(domain
);
946 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
947 return NT_STATUS_UNSUCCESSFUL
;
950 rc
= ads_domain_sid(ads
, sid
);
952 if (!ADS_ERR_OK(rc
)) {
954 /* its a dead connection; don't destroy it though
955 since that has already been done indirectly
956 by ads_domain_sid() */
958 domain
->private = NULL
;
961 return ads_ntstatus(rc
);
965 /* find alternate names list for the domain - for ADS this is the
967 static NTSTATUS
alternate_name(struct winbindd_domain
*domain
)
972 const char *workgroup
;
974 DEBUG(3,("ads: alternate_name\n"));
976 ads
= ads_cached_connection(domain
);
979 domain
->last_status
= NT_STATUS_SERVER_DISABLED
;
980 return NT_STATUS_UNSUCCESSFUL
;
983 if (!(ctx
= talloc_init("alternate_name"))) {
984 return NT_STATUS_NO_MEMORY
;
987 rc
= ads_workgroup_name(ads
, ctx
, &workgroup
);
989 if (ADS_ERR_OK(rc
)) {
990 fstrcpy(domain
->name
, workgroup
);
991 fstrcpy(domain
->alt_name
, ads
->config
.realm
);
992 strupper_m(domain
->alt_name
);
993 strupper_m(domain
->name
);
998 return ads_ntstatus(rc
);
1001 /* the ADS backend methods are exposed via this structure */
1002 struct winbindd_methods ads_methods
= {