2 Unix SMB/CIFS implementation.
4 Wrapper around winbindd_rpc.c to centralize retry logic.
6 Copyright (C) Volker Lendecke 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #define DBGC_CLASS DBGC_WINBIND
28 extern struct winbindd_methods msrpc_methods
;
30 bool reconnect_need_retry(NTSTATUS status
, struct winbindd_domain
*domain
)
32 if (NT_STATUS_IS_OK(status
)) {
36 if (!NT_STATUS_IS_ERR(status
)) {
40 if (NT_STATUS_EQUAL(status
, NT_STATUS_NONE_MAPPED
)) {
44 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_USER
)) {
48 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_GROUP
)) {
52 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_ALIAS
)) {
56 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_MEMBER
)) {
60 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_DOMAIN
)) {
64 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_PRIVILEGE
)) {
68 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_MEMORY
)) {
72 reset_cm_connection_on_error(domain
, NULL
, status
);
78 static NTSTATUS
query_user_list(struct winbindd_domain
*domain
,
84 result
= msrpc_methods
.query_user_list(domain
, mem_ctx
, rids
);
86 if (reconnect_need_retry(result
, domain
))
87 result
= msrpc_methods
.query_user_list(domain
, mem_ctx
, rids
);
92 /* list all domain groups */
93 static NTSTATUS
enum_dom_groups(struct winbindd_domain
*domain
,
95 uint32_t *num_entries
,
96 struct wb_acct_info
**info
)
100 result
= msrpc_methods
.enum_dom_groups(domain
, mem_ctx
,
103 if (reconnect_need_retry(result
, domain
))
104 result
= msrpc_methods
.enum_dom_groups(domain
, mem_ctx
,
109 /* List all domain groups */
111 static NTSTATUS
enum_local_groups(struct winbindd_domain
*domain
,
113 uint32_t *num_entries
,
114 struct wb_acct_info
**info
)
118 result
= msrpc_methods
.enum_local_groups(domain
, mem_ctx
,
121 if (reconnect_need_retry(result
, domain
))
122 result
= msrpc_methods
.enum_local_groups(domain
, mem_ctx
,
128 /* convert a single name to a sid in a domain */
129 static NTSTATUS
name_to_sid(struct winbindd_domain
*domain
,
131 const char *domain_name
,
134 const char **pdom_name
,
136 enum lsa_SidType
*type
)
140 result
= msrpc_methods
.name_to_sid(domain
, mem_ctx
, domain_name
, name
,
141 flags
, pdom_name
, sid
, type
);
143 if (reconnect_need_retry(result
, domain
))
144 result
= msrpc_methods
.name_to_sid(domain
, mem_ctx
,
145 domain_name
, name
, flags
,
146 pdom_name
, sid
, type
);
152 convert a domain SID to a user or group name
154 static NTSTATUS
sid_to_name(struct winbindd_domain
*domain
,
156 const struct dom_sid
*sid
,
159 enum lsa_SidType
*type
)
163 result
= msrpc_methods
.sid_to_name(domain
, mem_ctx
, sid
,
164 domain_name
, name
, type
);
166 if (reconnect_need_retry(result
, domain
))
167 result
= msrpc_methods
.sid_to_name(domain
, mem_ctx
, sid
,
168 domain_name
, name
, type
);
173 static NTSTATUS
rids_to_names(struct winbindd_domain
*domain
,
175 const struct dom_sid
*sid
,
180 enum lsa_SidType
**types
)
184 result
= msrpc_methods
.rids_to_names(domain
, mem_ctx
, sid
,
186 domain_name
, names
, types
);
187 if (reconnect_need_retry(result
, domain
)) {
188 result
= msrpc_methods
.rids_to_names(domain
, mem_ctx
, sid
,
197 /* Lookup groups a user is a member of. I wish Unix had a call like this! */
198 static NTSTATUS
lookup_usergroups(struct winbindd_domain
*domain
,
200 const struct dom_sid
*user_sid
,
201 uint32_t *num_groups
, struct dom_sid
**user_gids
)
205 result
= msrpc_methods
.lookup_usergroups(domain
, mem_ctx
,
206 user_sid
, num_groups
,
209 if (reconnect_need_retry(result
, domain
))
210 result
= msrpc_methods
.lookup_usergroups(domain
, mem_ctx
,
211 user_sid
, num_groups
,
217 static NTSTATUS
lookup_useraliases(struct winbindd_domain
*domain
,
219 uint32_t num_sids
, const struct dom_sid
*sids
,
220 uint32_t *num_aliases
, uint32_t **alias_rids
)
224 result
= msrpc_methods
.lookup_useraliases(domain
, mem_ctx
,
229 if (reconnect_need_retry(result
, domain
))
230 result
= msrpc_methods
.lookup_useraliases(domain
, mem_ctx
,
238 /* Lookup alias membership given */
239 static NTSTATUS
lookup_aliasmem(struct winbindd_domain
*domain
,
241 const struct dom_sid
*sid
,
242 enum lsa_SidType type
,
244 struct dom_sid
**sids
)
248 result
= msrpc_methods
.lookup_aliasmem(domain
,
255 if (reconnect_need_retry(result
, domain
))
256 result
= msrpc_methods
.lookup_aliasmem(domain
,
266 /* Lookup group membership given a rid. */
267 static NTSTATUS
lookup_groupmem(struct winbindd_domain
*domain
,
269 const struct dom_sid
*group_sid
,
270 enum lsa_SidType type
,
272 struct dom_sid
**sid_mem
, char ***names
,
273 uint32_t **name_types
)
277 result
= msrpc_methods
.lookup_groupmem(domain
, mem_ctx
,
278 group_sid
, type
, num_names
,
282 if (reconnect_need_retry(result
, domain
))
283 result
= msrpc_methods
.lookup_groupmem(domain
, mem_ctx
,
292 /* find the lockout policy of a domain */
293 static NTSTATUS
lockout_policy(struct winbindd_domain
*domain
,
295 struct samr_DomInfo12
*policy
)
299 result
= msrpc_methods
.lockout_policy(domain
, mem_ctx
, policy
);
301 if (reconnect_need_retry(result
, domain
))
302 result
= msrpc_methods
.lockout_policy(domain
, mem_ctx
, policy
);
307 /* find the password policy of a domain */
308 static NTSTATUS
password_policy(struct winbindd_domain
*domain
,
310 struct samr_DomInfo1
*policy
)
314 result
= msrpc_methods
.password_policy(domain
, mem_ctx
, policy
);
316 if (reconnect_need_retry(result
, domain
))
317 result
= msrpc_methods
.password_policy(domain
, mem_ctx
, policy
);
322 /* get a list of trusted domains */
323 static NTSTATUS
trusted_domains(struct winbindd_domain
*domain
,
325 struct netr_DomainTrustList
*trusts
)
329 result
= msrpc_methods
.trusted_domains(domain
, mem_ctx
, trusts
);
331 if (reconnect_need_retry(result
, domain
))
332 result
= msrpc_methods
.trusted_domains(domain
, mem_ctx
,
338 /* the rpc backend methods are exposed via this structure */
339 struct winbindd_methods reconnect_methods
= {