2 Unix SMB/CIFS implementation.
4 Wrapper around winbindd_ads.c to centralize retry logic.
5 Copyright (C) Christof Schmitt 2016
7 Based on winbindd_reconnect.c
8 Copyright (C) Volker Lendecke 2005
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/>.
30 #define DBGC_CLASS DBGC_WINBIND
32 extern struct winbindd_methods ads_methods
;
35 static NTSTATUS
query_user_list(struct winbindd_domain
*domain
,
37 uint32_t *num_entries
,
38 struct wbint_userinfo
**info
)
42 result
= ads_methods
.query_user_list(domain
, mem_ctx
,
45 if (reconnect_need_retry(result
, domain
)) {
46 result
= ads_methods
.query_user_list(domain
, mem_ctx
,
53 /* list all domain groups */
54 static NTSTATUS
enum_dom_groups(struct winbindd_domain
*domain
,
56 uint32_t *num_entries
,
57 struct wb_acct_info
**info
)
61 result
= ads_methods
.enum_dom_groups(domain
, mem_ctx
,
64 if (reconnect_need_retry(result
, domain
)) {
65 result
= ads_methods
.enum_dom_groups(domain
, mem_ctx
,
72 /* List all domain groups */
73 static NTSTATUS
enum_local_groups(struct winbindd_domain
*domain
,
75 uint32_t *num_entries
,
76 struct wb_acct_info
**info
)
80 result
= ads_methods
.enum_local_groups(domain
, mem_ctx
,
83 if (reconnect_need_retry(result
, domain
)) {
84 result
= ads_methods
.enum_local_groups(domain
, mem_ctx
,
91 /* convert a single name to a sid in a domain */
92 static NTSTATUS
name_to_sid(struct winbindd_domain
*domain
,
94 const char *domain_name
,
98 enum lsa_SidType
*type
)
102 result
= ads_methods
.name_to_sid(domain
, mem_ctx
, domain_name
, name
,
105 if (reconnect_need_retry(result
, domain
)) {
106 result
= ads_methods
.name_to_sid(domain
, mem_ctx
,
107 domain_name
, name
, flags
,
115 convert a domain SID to a user or group name
117 static NTSTATUS
sid_to_name(struct winbindd_domain
*domain
,
119 const struct dom_sid
*sid
,
122 enum lsa_SidType
*type
)
126 result
= ads_methods
.sid_to_name(domain
, mem_ctx
, sid
,
127 domain_name
, name
, type
);
129 if (reconnect_need_retry(result
, domain
))
130 result
= ads_methods
.sid_to_name(domain
, mem_ctx
, sid
,
131 domain_name
, name
, type
);
136 static NTSTATUS
rids_to_names(struct winbindd_domain
*domain
,
138 const struct dom_sid
*sid
,
143 enum lsa_SidType
**types
)
147 result
= ads_methods
.rids_to_names(domain
, mem_ctx
, sid
,
149 domain_name
, names
, types
);
150 if (reconnect_need_retry(result
, domain
)) {
151 result
= ads_methods
.rids_to_names(domain
, mem_ctx
, sid
,
152 rids
, num_rids
, domain_name
,
159 /* Lookup user information from a rid or username. */
160 static NTSTATUS
query_user(struct winbindd_domain
*domain
,
162 const struct dom_sid
*user_sid
,
163 struct wbint_userinfo
*user_info
)
167 result
= ads_methods
.query_user(domain
, mem_ctx
, user_sid
, user_info
);
169 if (reconnect_need_retry(result
, domain
)) {
170 result
= ads_methods
.query_user(domain
, mem_ctx
, user_sid
,
177 /* Lookup groups a user is a member of. I wish Unix had a call like this! */
178 static NTSTATUS
lookup_usergroups(struct winbindd_domain
*domain
,
180 const struct dom_sid
*user_sid
,
181 uint32_t *num_groups
,
182 struct dom_sid
**user_gids
)
186 result
= ads_methods
.lookup_usergroups(domain
, mem_ctx
, user_sid
,
187 num_groups
, user_gids
);
189 if (reconnect_need_retry(result
, domain
)) {
190 result
= ads_methods
.lookup_usergroups(domain
, mem_ctx
,
191 user_sid
, num_groups
,
198 static NTSTATUS
lookup_useraliases(struct winbindd_domain
*domain
,
201 const struct dom_sid
*sids
,
202 uint32_t *num_aliases
, uint32_t **alias_rids
)
206 result
= ads_methods
.lookup_useraliases(domain
, mem_ctx
, num_sids
, sids
,
207 num_aliases
, alias_rids
);
209 if (reconnect_need_retry(result
, domain
)) {
210 result
= ads_methods
.lookup_useraliases(domain
, mem_ctx
,
219 /* Lookup group membership given a rid. */
220 static NTSTATUS
lookup_groupmem(struct winbindd_domain
*domain
,
222 const struct dom_sid
*group_sid
,
223 enum lsa_SidType type
,
225 struct dom_sid
**sid_mem
, char ***names
,
226 uint32_t **name_types
)
230 result
= ads_methods
.lookup_groupmem(domain
, mem_ctx
, group_sid
, type
,
231 num_names
, sid_mem
, names
,
234 if (reconnect_need_retry(result
, domain
)) {
235 result
= ads_methods
.lookup_groupmem(domain
, mem_ctx
, group_sid
,
236 type
, num_names
, sid_mem
,
243 /* find the sequence number for a domain */
244 static NTSTATUS
sequence_number(struct winbindd_domain
*domain
, uint32_t *seq
)
248 result
= ads_methods
.sequence_number(domain
, seq
);
250 if (reconnect_need_retry(result
, domain
)) {
251 result
= ads_methods
.sequence_number(domain
, seq
);
257 /* find the lockout policy of a domain */
258 static NTSTATUS
lockout_policy(struct winbindd_domain
*domain
,
260 struct samr_DomInfo12
*policy
)
264 result
= ads_methods
.lockout_policy(domain
, mem_ctx
, policy
);
266 if (reconnect_need_retry(result
, domain
)) {
267 result
= ads_methods
.lockout_policy(domain
, mem_ctx
, policy
);
273 /* find the password policy of a domain */
274 static NTSTATUS
password_policy(struct winbindd_domain
*domain
,
276 struct samr_DomInfo1
*policy
)
280 result
= ads_methods
.password_policy(domain
, mem_ctx
, policy
);
282 if (reconnect_need_retry(result
, domain
)) {
283 result
= ads_methods
.password_policy(domain
, mem_ctx
, policy
);
289 /* get a list of trusted domains */
290 static NTSTATUS
trusted_domains(struct winbindd_domain
*domain
,
292 struct netr_DomainTrustList
*trusts
)
296 result
= ads_methods
.trusted_domains(domain
, mem_ctx
, trusts
);
298 if (reconnect_need_retry(result
, domain
)) {
299 result
= ads_methods
.trusted_domains(domain
, mem_ctx
, trusts
);
305 /* the rpc backend methods are exposed via this structure */
306 struct winbindd_methods reconnect_ads_methods
= {