s3: Add wbint_LookupSids
[Samba.git] / source3 / winbindd / winbindd_proto.h
blobd1007f420b48672010e0d68eb947935c3fff9115
1 /*
2 * Unix SMB/CIFS implementation.
3 * collected prototypes header
5 * frozen from "make proto" in May 2008
7 * Copyright (C) Michael Adam 2008
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, see <http://www.gnu.org/licenses/>.
23 #ifndef _WINBINDD_PROTO_H_
24 #define _WINBINDD_PROTO_H_
26 /* The following definitions come from winbindd/winbindd.c */
27 struct messaging_context *winbind_messaging_context(void);
28 void request_error(struct winbindd_cli_state *state);
29 void request_ok(struct winbindd_cli_state *state);
30 bool winbindd_setup_sig_term_handler(bool parent);
31 bool winbindd_setup_sig_hup_handler(const char *lfile);
32 bool winbindd_use_idmap_cache(void);
33 bool winbindd_use_cache(void);
34 void winbindd_register_handlers(void);
35 const char *get_winbind_pipe_dir(void);
36 char *get_winbind_priv_pipe_dir(void);
37 int main(int argc, char **argv, char **envp);
39 /* The following definitions come from winbindd/winbindd_ads.c */
41 /* The following definitions come from winbindd/winbindd_rpc.c */
43 NTSTATUS winbindd_lookup_sids(TALLOC_CTX *mem_ctx,
44 struct winbindd_domain *domain,
45 uint32_t num_sids,
46 const struct dom_sid *sids,
47 char ***domains,
48 char ***names,
49 enum lsa_SidType **types);
50 NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
51 struct winbindd_domain *domain,
52 uint32_t num_names,
53 const char **names,
54 const char ***domains,
55 struct dom_sid **sids,
56 enum lsa_SidType **types);
57 NTSTATUS rpc_lookup_sids(TALLOC_CTX *mem_ctx,
58 struct winbindd_domain *domain,
59 struct lsa_SidArray *sids,
60 struct lsa_RefDomainList **pdomains,
61 struct lsa_TransNameArray **pnames);
63 /* The following definitions come from winbindd/winbindd_cache.c */
65 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
66 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const struct dom_sid *sid);
67 NTSTATUS wcache_get_creds(struct winbindd_domain *domain,
68 TALLOC_CTX *mem_ctx,
69 const struct dom_sid *sid,
70 const uint8 **cached_nt_pass,
71 const uint8 **cached_salt);
72 NTSTATUS wcache_save_creds(struct winbindd_domain *domain,
73 const struct dom_sid *sid,
74 const uint8 nt_pass[NT_HASH_LEN]);
75 void wcache_invalidate_samlogon(struct winbindd_domain *domain,
76 const struct dom_sid *user_sid);
77 bool wcache_invalidate_cache(void);
78 bool wcache_invalidate_cache_noinit(void);
79 bool init_wcache(void);
80 bool initialize_winbindd_cache(void);
81 void close_winbindd_cache(void);
82 NTSTATUS wcache_sid_to_name(struct winbindd_domain *domain,
83 const struct dom_sid *sid,
84 TALLOC_CTX *mem_ctx,
85 char **domain_name,
86 char **name,
87 enum lsa_SidType *type);
88 NTSTATUS wcache_lookup_groupmem(struct winbindd_domain *domain,
89 TALLOC_CTX *mem_ctx,
90 const struct dom_sid *group_sid,
91 uint32_t *num_names,
92 struct dom_sid **sid_mem, char ***names,
93 uint32_t **name_types);
94 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const struct dom_sid *sid,
95 char **domain_name, char **name,
96 enum lsa_SidType *type);
97 bool lookup_cached_name(const char *domain_name,
98 const char *name,
99 struct dom_sid *sid,
100 enum lsa_SidType *type);
101 void cache_name2sid(struct winbindd_domain *domain,
102 const char *domain_name, const char *name,
103 enum lsa_SidType type, const struct dom_sid *sid);
104 NTSTATUS wcache_name_to_sid(struct winbindd_domain *domain,
105 const char *domain_name,
106 const char *name,
107 struct dom_sid *sid,
108 enum lsa_SidType *type);
109 NTSTATUS wcache_query_user(struct winbindd_domain *domain,
110 TALLOC_CTX *mem_ctx,
111 const struct dom_sid *user_sid,
112 struct wbint_userinfo *info);
113 NTSTATUS wcache_lookup_useraliases(struct winbindd_domain *domain,
114 TALLOC_CTX *mem_ctx,
115 uint32 num_sids, const struct dom_sid *sids,
116 uint32 *pnum_aliases, uint32 **paliases);
117 NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain,
118 TALLOC_CTX *mem_ctx,
119 const struct dom_sid *user_sid,
120 uint32_t *pnum_sids,
121 struct dom_sid **psids);
123 void wcache_flush_cache(void);
124 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
125 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const struct dom_sid *sid) ;
126 bool set_global_winbindd_state_offline(void);
127 void set_global_winbindd_state_online(void);
128 bool get_global_winbindd_state_offline(void);
129 int winbindd_validate_cache(void);
130 int winbindd_validate_cache_nobackup(void);
131 bool winbindd_cache_validate_and_initialize(void);
132 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
133 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
134 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
135 struct winbindd_tdc_domain* wcache_tdc_fetch_domainbysid(TALLOC_CTX *ctx, const struct dom_sid *sid);
136 void wcache_tdc_clear( void );
137 #ifdef HAVE_ADS
138 struct ads_struct;
139 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain,
140 const struct dom_sid *user_sid,
141 TALLOC_CTX *ctx,
142 const char **homedir, const char **shell,
143 const char **gecos, gid_t *p_gid);
144 #endif
145 bool wcache_store_seqnum(const char *domain_name, uint32_t seqnum,
146 time_t last_seq_check);
147 bool wcache_fetch_ndr(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
148 uint32_t opnum, const DATA_BLOB *req, DATA_BLOB *resp);
149 void wcache_store_ndr(struct winbindd_domain *domain, uint32_t opnum,
150 const DATA_BLOB *req, const DATA_BLOB *resp);
152 /* The following definitions come from winbindd/winbindd_ccache_access.c */
154 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
155 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
156 struct winbindd_cli_state *state);
157 void winbindd_ccache_save(struct winbindd_cli_state *state);
159 /* The following definitions come from winbindd/winbindd_cm.c */
161 void set_domain_offline(struct winbindd_domain *domain);
162 void set_domain_online_request(struct winbindd_domain *domain);
163 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
164 void close_conns_after_fork(void);
165 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
166 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
167 struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
168 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
169 struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
170 NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
171 TALLOC_CTX *mem_ctx,
172 struct rpc_pipe_client **cli);
173 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
174 struct rpc_pipe_client **cli);
175 bool fetch_current_dc_from_gencache(TALLOC_CTX *mem_ctx,
176 const char *domain_name,
177 char **p_dc_name, char **p_dc_ip);
179 /* The following definitions come from winbindd/winbindd_cred_cache.c */
181 bool ccache_entry_exists(const char *username);
182 bool ccache_entry_identical(const char *username,
183 uid_t uid,
184 const char *ccname);
185 void ccache_remove_all_after_fork(void);
186 void ccache_regain_all_now(void);
187 NTSTATUS add_ccache_to_list(const char *princ_name,
188 const char *ccname,
189 const char *service,
190 const char *username,
191 const char *realm,
192 uid_t uid,
193 time_t create_time,
194 time_t ticket_end,
195 time_t renew_until,
196 bool postponed_request);
197 NTSTATUS remove_ccache(const char *username);
198 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
199 NTSTATUS winbindd_add_memory_creds(const char *username,
200 uid_t uid,
201 const char *pass);
202 NTSTATUS winbindd_delete_memory_creds(const char *username);
203 NTSTATUS winbindd_replace_memory_creds(const char *username,
204 const char *pass);
206 /* The following definitions come from winbindd/winbindd_creds.c */
208 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
209 TALLOC_CTX *mem_ctx,
210 const struct dom_sid *sid,
211 struct netr_SamInfo3 **info3,
212 const uint8 *cached_nt_pass[NT_HASH_LEN],
213 const uint8 *cred_salt[NT_HASH_LEN]);
214 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
215 const char *user,
216 const char *pass,
217 struct netr_SamInfo3 *info3);
218 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
219 const char *user,
220 const char *pass,
221 struct netr_SamInfo3 *info3);
222 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
223 const char *user,
224 const char *pass);
226 /* The following definitions come from winbindd/winbindd_domain.c */
228 void setup_domain_child(struct winbindd_domain *domain);
230 /* The following definitions come from winbindd/winbindd_dual.c */
232 struct dcerpc_binding_handle *dom_child_handle(struct winbindd_domain *domain);
233 struct winbindd_child *choose_domain_child(struct winbindd_domain *domain);
235 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
236 struct tevent_context *ev,
237 struct winbindd_child *child,
238 struct winbindd_request *request);
239 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
240 struct winbindd_response **presponse, int *err);
241 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
242 struct tevent_context *ev,
243 struct winbindd_domain *domain,
244 struct winbindd_request *request);
245 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
246 struct winbindd_response **presponse, int *err);
248 void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
249 const struct winbindd_child_dispatch_table *table,
250 const char *logprefix,
251 const char *logname);
252 void winbind_child_died(pid_t pid);
253 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
254 void winbind_msg_debug(struct messaging_context *msg_ctx,
255 void *private_data,
256 uint32_t msg_type,
257 struct server_id server_id,
258 DATA_BLOB *data);
259 void winbind_msg_offline(struct messaging_context *msg_ctx,
260 void *private_data,
261 uint32_t msg_type,
262 struct server_id server_id,
263 DATA_BLOB *data);
264 void winbind_msg_online(struct messaging_context *msg_ctx,
265 void *private_data,
266 uint32_t msg_type,
267 struct server_id server_id,
268 DATA_BLOB *data);
269 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
270 void *private_data,
271 uint32_t msg_type,
272 struct server_id server_id,
273 DATA_BLOB *data);
274 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
275 void *private_data,
276 uint32_t msg_type,
277 struct server_id server_id,
278 DATA_BLOB *data);
279 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
280 void *private_data,
281 uint32_t msg_type,
282 struct server_id server_id,
283 DATA_BLOB *data);
284 void winbind_msg_ip_dropped(struct messaging_context *msg_ctx,
285 void *private_data,
286 uint32_t msg_type,
287 struct server_id server_id,
288 DATA_BLOB *data);
289 void winbind_msg_ip_dropped_parent(struct messaging_context *msg_ctx,
290 void *private_data,
291 uint32_t msg_type,
292 struct server_id server_id,
293 DATA_BLOB *data);
294 bool winbindd_reinit_after_fork(const char *logfilename);
295 struct winbindd_domain *wb_child_domain(void);
297 /* The following definitions come from winbindd/winbindd_group.c */
299 void winbindd_getgrnam(struct winbindd_cli_state *state);
300 void winbindd_getgrgid(struct winbindd_cli_state *state);
301 void winbindd_setgrent(struct winbindd_cli_state *state);
302 void winbindd_endgrent(struct winbindd_cli_state *state);
303 void winbindd_getgrent(struct winbindd_cli_state *state);
304 void winbindd_list_groups(struct winbindd_cli_state *state);
305 void winbindd_getgroups(struct winbindd_cli_state *state);
306 void winbindd_getusersids(struct winbindd_cli_state *state);
307 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
308 void winbindd_getsidaliases(struct winbindd_cli_state *state);
309 bool fill_grent(TALLOC_CTX *mem_ctx, struct winbindd_gr *gr,
310 const char *dom_name, const char *gr_name, gid_t unix_gid);
311 NTSTATUS winbindd_print_groupmembers(struct talloc_dict *members,
312 TALLOC_CTX *mem_ctx,
313 int *num_members, char **result);
316 /* The following definitions come from winbindd/winbindd_idmap.c */
318 void init_idmap_child(void);
319 struct winbindd_child *idmap_child(void);
321 /* The following definitions come from winbindd/winbindd_locator.c */
323 void init_locator_child(void);
324 struct winbindd_child *locator_child(void);
326 /* The following definitions come from winbindd/winbindd_misc.c */
328 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
329 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
330 struct winbindd_cli_state *state);
331 void winbindd_show_sequence(struct winbindd_cli_state *state);
332 void winbindd_domain_info(struct winbindd_cli_state *state);
333 void winbindd_dc_info(struct winbindd_cli_state *state);
334 void winbindd_ping(struct winbindd_cli_state *state);
335 void winbindd_info(struct winbindd_cli_state *state);
336 void winbindd_interface_version(struct winbindd_cli_state *state);
337 void winbindd_domain_name(struct winbindd_cli_state *state);
338 void winbindd_netbios_name(struct winbindd_cli_state *state);
339 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
341 /* The following definitions come from winbindd/winbindd_ndr.c */
342 struct ndr_print;
343 void ndr_print_winbindd_child(struct ndr_print *ndr,
344 const char *name,
345 const struct winbindd_child *r);
346 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
347 const char *name,
348 const struct winbindd_cm_conn *r);
349 void ndr_print_winbindd_methods(struct ndr_print *ndr,
350 const char *name,
351 const struct winbindd_methods *r);
352 void ndr_print_winbindd_domain(struct ndr_print *ndr,
353 const char *name,
354 const struct winbindd_domain *r);
356 /* The following definitions come from winbindd/winbindd_pam.c */
358 bool check_request_flags(uint32_t flags);
359 uid_t get_uid_from_request(struct winbindd_request *request);
360 struct winbindd_domain *find_auth_domain(uint8_t flags,
361 const char *domain_name);
362 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
363 struct winbindd_cli_state *state) ;
364 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
365 struct winbindd_cli_state *state) ;
366 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
367 struct winbindd_cli_state *state);
368 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
369 struct winbindd_cli_state *state) ;
370 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
372 /* The following definitions come from winbindd/winbindd_util.c */
374 struct winbindd_domain *domain_list(void);
375 bool domain_is_forest_root(const struct winbindd_domain *domain);
376 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
377 struct timeval now, void *private_data);
378 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
379 struct winbindd_cli_state *state);
380 bool init_domain_list(void);
381 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
382 struct winbindd_domain *find_domain_from_name(const char *domain_name);
383 struct winbindd_domain *find_domain_from_sid_noinit(const struct dom_sid *sid);
384 struct winbindd_domain *find_domain_from_sid(const struct dom_sid *sid);
385 struct winbindd_domain *find_our_domain(void);
386 struct winbindd_domain *find_root_domain(void);
387 struct winbindd_domain *find_builtin_domain(void);
388 struct winbindd_domain *find_lookup_domain_from_sid(const struct dom_sid *sid);
389 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
390 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
391 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
392 char **domain, char **user);
393 void parse_add_domuser(void *buf, char *domuser, int *len);
394 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
395 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
396 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
397 const char *domain,
398 const char *user,
399 bool can_assume);
400 struct winbindd_cli_state *winbindd_client_list(void);
401 void winbindd_add_client(struct winbindd_cli_state *cli);
402 void winbindd_remove_client(struct winbindd_cli_state *cli);
403 int winbindd_num_clients(void);
404 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
405 TALLOC_CTX *mem_ctx,
406 const struct dom_sid *user_sid,
407 uint32 *p_num_groups, struct dom_sid **user_sids);
409 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
410 struct winbindd_domain *domain,
411 const char *name,
412 char **normalized);
413 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
414 char *name,
415 char **normalized);
417 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
418 struct winbindd_domain *domain,
419 const char *name, char **alias);
420 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
421 struct winbindd_domain *domain,
422 const char *alias, char **name);
424 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
425 bool winbindd_internal_child(struct winbindd_child *child);
426 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
427 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
428 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
429 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
430 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
431 bool is_domain_offline(const struct winbindd_domain *domain);
432 bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
433 struct dom_sid **sids, uint32_t *num_sids);
435 /* The following definitions come from winbindd/winbindd_wins.c */
437 void winbindd_wins_byip(struct winbindd_cli_state *state);
438 void winbindd_wins_byname(struct winbindd_cli_state *state);
440 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
441 struct winbindd_cli_state *cli,
442 struct winbindd_request *request);
443 NTSTATUS wb_ping_recv(struct tevent_req *req,
444 struct winbindd_response *resp);
446 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
447 struct winbindd_cli_state *state);
449 struct dcerpc_binding_handle *wbint_binding_handle(TALLOC_CTX *mem_ctx,
450 struct winbindd_domain *domain,
451 struct winbindd_child *child);
452 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
453 struct winbindd_cli_state *state);
455 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
456 struct tevent_context *ev,
457 const struct dom_sid *sid);
458 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
459 enum lsa_SidType *type, const char **domain,
460 const char **name);
462 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
463 struct tevent_context *ev,
464 struct winbindd_cli_state *cli,
465 struct winbindd_request *request);
466 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
467 struct winbindd_response *response);
469 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
470 struct tevent_context *ev,
471 const char *dom_name, const char *name,
472 uint32_t flags);
473 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
474 enum lsa_SidType *type);
476 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
477 struct tevent_context *ev,
478 struct winbindd_cli_state *cli,
479 struct winbindd_request *request);
480 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
481 struct winbindd_response *response);
483 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
484 struct tevent_context *ev,
485 const struct dom_sid *sid);
486 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
488 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
489 struct tevent_context *ev,
490 struct winbindd_cli_state *cli,
491 struct winbindd_request *request);
492 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
493 struct winbindd_response *response);
495 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
496 struct tevent_context *ev,
497 const struct dom_sid *sid);
498 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
500 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
501 struct tevent_context *ev,
502 struct winbindd_cli_state *cli,
503 struct winbindd_request *request);
504 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
505 struct winbindd_response *response);
507 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
508 struct tevent_context *ev,
509 uid_t uid);
510 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
512 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
513 struct tevent_context *ev,
514 struct winbindd_cli_state *cli,
515 struct winbindd_request *request);
516 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
517 struct winbindd_response *response);
519 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
520 struct tevent_context *ev,
521 gid_t gid);
522 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
524 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
525 struct tevent_context *ev,
526 struct winbindd_cli_state *cli,
527 struct winbindd_request *request);
528 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
529 struct winbindd_response *response);
531 struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
532 struct tevent_context *ev,
533 struct winbindd_cli_state *cli,
534 struct winbindd_request *request);
535 NTSTATUS winbindd_allocate_uid_recv(struct tevent_req *req,
536 struct winbindd_response *response);
538 struct tevent_req *winbindd_allocate_gid_send(TALLOC_CTX *mem_ctx,
539 struct tevent_context *ev,
540 struct winbindd_cli_state *cli,
541 struct winbindd_request *request);
542 NTSTATUS winbindd_allocate_gid_recv(struct tevent_req *req,
543 struct winbindd_response *response);
545 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
546 struct tevent_context *ev,
547 const struct dom_sid *user_sid);
548 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
549 struct wbint_userinfo **pinfo);
551 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
552 struct tevent_context *ev,
553 const struct dom_sid *user_sid,
554 struct winbindd_pw *pw);
555 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
557 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
558 struct tevent_context *ev,
559 struct winbindd_cli_state *cli,
560 struct winbindd_request *request);
561 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
562 struct winbindd_response *response);
564 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
565 struct tevent_context *ev,
566 struct winbindd_cli_state *cli,
567 struct winbindd_request *request);
568 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
569 struct winbindd_response *response);
571 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
572 struct tevent_context *ev,
573 struct winbindd_cli_state *cli,
574 struct winbindd_request *request);
575 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
576 struct winbindd_response *response);
577 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
578 struct tevent_context *ev,
579 struct winbindd_domain *domain,
580 int num_sids,
581 const struct dom_sid *sids);
582 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
583 uint32_t *num_aliases, uint32_t **aliases);
584 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
585 struct tevent_context *ev,
586 struct winbindd_cli_state *cli,
587 struct winbindd_request *request);
588 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
589 struct winbindd_response *response);
590 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
591 struct tevent_context *ev,
592 struct winbindd_domain *domain,
593 const struct dom_sid *sid);
594 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
595 int *num_sids, struct dom_sid **sids);
597 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
598 struct tevent_context *ev,
599 struct winbindd_cli_state *cli,
600 struct winbindd_request *request);
601 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
602 struct winbindd_response *response);
603 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
604 struct tevent_context *ev,
605 const struct dom_sid *sid);
606 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
607 int *num_sids, struct dom_sid **sids);
608 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
609 struct tevent_context *ev,
610 struct winbindd_cli_state *cli,
611 struct winbindd_request *request);
612 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
613 struct winbindd_response *response);
615 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
616 struct tevent_context *ev,
617 struct winbindd_domain *domain);
618 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
620 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
621 struct tevent_context *ev);
622 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
623 int *num_domains, struct winbindd_domain ***domains,
624 NTSTATUS **stati, uint32_t **seqnums);
626 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
627 struct tevent_context *ev,
628 struct winbindd_cli_state *cli,
629 struct winbindd_request *request);
630 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
631 struct winbindd_response *response);
633 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
634 struct tevent_context *ev,
635 const struct dom_sid *sid,
636 enum lsa_SidType type,
637 int max_depth);
638 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
639 struct talloc_dict **members);
641 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
642 struct tevent_context *ev,
643 const struct dom_sid *group_sid,
644 int max_nesting);
645 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
646 const char **domname, const char **name, gid_t *gid,
647 struct talloc_dict **members);
649 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
650 struct tevent_context *ev,
651 struct winbindd_cli_state *cli,
652 struct winbindd_request *request);
653 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
654 struct winbindd_response *response);
656 struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
657 struct tevent_context *ev,
658 struct winbindd_cli_state *cli,
659 struct winbindd_request *request);
660 NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
661 struct winbindd_response *response);
663 struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx,
664 struct tevent_context *ev,
665 struct winbindd_cli_state *cli,
666 struct winbindd_request *request);
667 NTSTATUS winbindd_getusersids_recv(struct tevent_req *req,
668 struct winbindd_response *response);
670 struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx,
671 struct tevent_context *ev,
672 struct winbindd_cli_state *cli,
673 struct winbindd_request *request);
674 NTSTATUS winbindd_lookuprids_recv(struct tevent_req *req,
675 struct winbindd_response *response);
677 struct tevent_req *wb_query_user_list_send(TALLOC_CTX *mem_ctx,
678 struct tevent_context *ev,
679 struct winbindd_domain *domain);
680 NTSTATUS wb_query_user_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
681 int *num_users,
682 struct wbint_userinfo **users);
684 struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
685 struct tevent_context *ev,
686 struct wbint_userinfo *info,
687 struct winbindd_pw *pw);
688 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
690 struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
691 struct tevent_context *ev,
692 struct getpwent_state *gstate,
693 struct winbindd_pw *pw);
694 NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
696 struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
697 struct tevent_context *ev,
698 struct winbindd_cli_state *cli,
699 struct winbindd_request *request);
700 NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
701 struct winbindd_response *presp);
703 struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
704 struct tevent_context *ev,
705 struct winbindd_cli_state *cli,
706 struct winbindd_request *request);
707 NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
708 struct winbindd_response *response);
710 struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
711 struct tevent_context *ev,
712 struct winbindd_cli_state *cli,
713 struct winbindd_request *request);
714 NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
715 struct winbindd_response *response);
717 struct tevent_req *winbindd_dsgetdcname_send(TALLOC_CTX *mem_ctx,
718 struct tevent_context *ev,
719 struct winbindd_cli_state *cli,
720 struct winbindd_request *request);
721 NTSTATUS winbindd_dsgetdcname_recv(struct tevent_req *req,
722 struct winbindd_response *response);
724 struct tevent_req *wb_dsgetdcname_send(TALLOC_CTX *mem_ctx,
725 struct tevent_context *ev,
726 const char *domain_name,
727 const struct GUID *domain_guid,
728 const char *site_name,
729 uint32_t flags);
730 NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
731 struct netr_DsRGetDCNameInfo **pdcinfo);
733 struct tevent_req *winbindd_getdcname_send(TALLOC_CTX *mem_ctx,
734 struct tevent_context *ev,
735 struct winbindd_cli_state *cli,
736 struct winbindd_request *request);
737 NTSTATUS winbindd_getdcname_recv(struct tevent_req *req,
738 struct winbindd_response *response);
740 struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx,
741 struct tevent_context *ev,
742 int max_nesting,
743 struct getgrent_state *gstate,
744 struct winbindd_gr *gr);
745 NTSTATUS wb_next_grent_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
746 struct talloc_dict **members);
748 struct tevent_req *winbindd_setgrent_send(TALLOC_CTX *mem_ctx,
749 struct tevent_context *ev,
750 struct winbindd_cli_state *cli,
751 struct winbindd_request *request);
752 NTSTATUS winbindd_setgrent_recv(struct tevent_req *req,
753 struct winbindd_response *response);
754 struct tevent_req *winbindd_getgrent_send(TALLOC_CTX *mem_ctx,
755 struct tevent_context *ev,
756 struct winbindd_cli_state *cli,
757 struct winbindd_request *request);
758 NTSTATUS winbindd_getgrent_recv(struct tevent_req *req,
759 struct winbindd_response *response);
760 struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx,
761 struct tevent_context *ev,
762 struct winbindd_cli_state *cli,
763 struct winbindd_request *request);
764 NTSTATUS winbindd_endgrent_recv(struct tevent_req *req,
765 struct winbindd_response *response);
767 struct tevent_req *winbindd_list_users_send(TALLOC_CTX *mem_ctx,
768 struct tevent_context *ev,
769 struct winbindd_cli_state *cli,
770 struct winbindd_request *request);
771 NTSTATUS winbindd_list_users_recv(struct tevent_req *req,
772 struct winbindd_response *response);
774 struct tevent_req *winbindd_list_groups_send(TALLOC_CTX *mem_ctx,
775 struct tevent_context *ev,
776 struct winbindd_cli_state *cli,
777 struct winbindd_request *request);
778 NTSTATUS winbindd_list_groups_recv(struct tevent_req *req,
779 struct winbindd_response *response);
781 struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx,
782 struct tevent_context *ev,
783 struct winbindd_cli_state *cli,
784 struct winbindd_request *request);
785 NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req,
786 struct winbindd_response *presp);
788 struct tevent_req *winbindd_ping_dc_send(TALLOC_CTX *mem_ctx,
789 struct tevent_context *ev,
790 struct winbindd_cli_state *cli,
791 struct winbindd_request *request);
792 NTSTATUS winbindd_ping_dc_recv(struct tevent_req *req,
793 struct winbindd_response *presp);
795 struct tevent_req *winbindd_change_machine_acct_send(TALLOC_CTX *mem_ctx,
796 struct tevent_context *ev,
797 struct winbindd_cli_state *cli,
798 struct winbindd_request *request);
799 NTSTATUS winbindd_change_machine_acct_recv(struct tevent_req *req,
800 struct winbindd_response *presp);
802 struct tevent_req *winbindd_pam_auth_send(TALLOC_CTX *mem_ctx,
803 struct tevent_context *ev,
804 struct winbindd_cli_state *cli,
805 struct winbindd_request *request);
806 NTSTATUS winbindd_pam_auth_recv(struct tevent_req *req,
807 struct winbindd_response *response);
809 struct tevent_req *winbindd_pam_auth_crap_send(
810 TALLOC_CTX *mem_ctx,
811 struct tevent_context *ev,
812 struct winbindd_cli_state *cli,
813 struct winbindd_request *request);
814 NTSTATUS winbindd_pam_auth_crap_recv(struct tevent_req *req,
815 struct winbindd_response *response);
817 struct tevent_req *winbindd_pam_chauthtok_send(
818 TALLOC_CTX *mem_ctx,
819 struct tevent_context *ev,
820 struct winbindd_cli_state *cli,
821 struct winbindd_request *request);
822 NTSTATUS winbindd_pam_chauthtok_recv(struct tevent_req *req,
823 struct winbindd_response *response);
825 struct tevent_req *winbindd_pam_logoff_send(TALLOC_CTX *mem_ctx,
826 struct tevent_context *ev,
827 struct winbindd_cli_state *cli,
828 struct winbindd_request *request);
829 NTSTATUS winbindd_pam_logoff_recv(struct tevent_req *req,
830 struct winbindd_response *response);
832 struct tevent_req *winbindd_pam_chng_pswd_auth_crap_send(
833 TALLOC_CTX *mem_ctx,
834 struct tevent_context *ev,
835 struct winbindd_cli_state *cli,
836 struct winbindd_request *request);
837 NTSTATUS winbindd_pam_chng_pswd_auth_crap_recv(
838 struct tevent_req *req,
839 struct winbindd_response *response);
841 /* The following definitions come from winbindd/winbindd_samr.c */
843 NTSTATUS open_internal_samr_conn(TALLOC_CTX *mem_ctx,
844 struct winbindd_domain *domain,
845 struct rpc_pipe_client **samr_pipe,
846 struct policy_handle *samr_domain_hnd);
848 #endif /* _WINBINDD_PROTO_H_ */