s3-winbind: Make append_auth_data() static
[Samba/ekacnet.git] / source3 / winbindd / winbindd_proto.h
blob2481bc69b9c80d66251fb74835e47e143a3e434f
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_
27 /* The following definitions come from auth/token_util.c */
29 bool nt_token_check_sid ( const DOM_SID *sid, const NT_USER_TOKEN *token );
30 bool nt_token_check_domain_rid( NT_USER_TOKEN *token, uint32 rid );
31 NT_USER_TOKEN *get_root_nt_token( void );
32 NTSTATUS add_aliases(const DOM_SID *domain_sid,
33 struct nt_user_token *token);
34 struct nt_user_token *create_local_nt_token(TALLOC_CTX *mem_ctx,
35 const DOM_SID *user_sid,
36 bool is_guest,
37 int num_groupsids,
38 const DOM_SID *groupsids);
39 void debug_nt_user_token(int dbg_class, int dbg_lev, NT_USER_TOKEN *token);
40 void debug_unix_user_token(int dbg_class, int dbg_lev, uid_t uid, gid_t gid,
41 int n_groups, gid_t *groups);
43 /* The following definitions come from winbindd/winbindd.c */
45 struct event_context *winbind_event_context(void);
46 struct messaging_context *winbind_messaging_context(void);
47 void request_error(struct winbindd_cli_state *state);
48 void request_ok(struct winbindd_cli_state *state);
49 bool winbindd_setup_sig_term_handler(bool parent);
50 bool winbindd_setup_sig_hup_handler(const char *lfile);
51 bool winbindd_use_idmap_cache(void);
52 bool winbindd_use_cache(void);
53 int main(int argc, char **argv, char **envp);
55 /* The following definitions come from winbindd/winbindd_ads.c */
57 /* The following definitions come from winbindd/winbindd_rpc.c */
59 NTSTATUS winbindd_lookup_sids(TALLOC_CTX *mem_ctx,
60 struct winbindd_domain *domain,
61 uint32_t num_sids,
62 const struct dom_sid *sids,
63 char ***domains,
64 char ***names,
65 enum lsa_SidType **types);
66 NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
67 struct winbindd_domain *domain,
68 uint32_t num_names,
69 const char **names,
70 const char ***domains,
71 struct dom_sid **sids,
72 enum lsa_SidType **types);
74 /* The following definitions come from winbindd/winbindd_async.c */
76 bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
77 size_t num_sids, char **result, ssize_t *len);
78 bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
79 DOM_SID **sids, size_t *num_sids);
81 /* The following definitions come from winbindd/winbindd_cache.c */
83 void winbindd_check_cache_size(time_t t);
84 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
85 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const DOM_SID *sid);
86 NTSTATUS wcache_get_creds(struct winbindd_domain *domain,
87 TALLOC_CTX *mem_ctx,
88 const DOM_SID *sid,
89 const uint8 **cached_nt_pass,
90 const uint8 **cached_salt);
91 NTSTATUS wcache_save_creds(struct winbindd_domain *domain,
92 TALLOC_CTX *mem_ctx,
93 const DOM_SID *sid,
94 const uint8 nt_pass[NT_HASH_LEN]);
95 void wcache_invalidate_samlogon(struct winbindd_domain *domain,
96 struct netr_SamInfo3 *info3);
97 bool wcache_invalidate_cache(void);
98 bool wcache_invalidate_cache_noinit(void);
99 bool init_wcache(void);
100 bool initialize_winbindd_cache(void);
101 void close_winbindd_cache(void);
102 NTSTATUS wcache_sid_to_name(struct winbindd_domain *domain,
103 const struct dom_sid *sid,
104 TALLOC_CTX *mem_ctx,
105 char **domain_name,
106 char **name,
107 enum lsa_SidType *type);
108 NTSTATUS wcache_lookup_groupmem(struct winbindd_domain *domain,
109 TALLOC_CTX *mem_ctx,
110 const struct dom_sid *group_sid,
111 uint32_t *num_names,
112 struct dom_sid **sid_mem, char ***names,
113 uint32_t **name_types);
114 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
115 char **domain_name, char **name,
116 enum lsa_SidType *type);
117 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
118 const char *domain_name,
119 const char *name,
120 DOM_SID *sid,
121 enum lsa_SidType *type);
122 void cache_name2sid(struct winbindd_domain *domain,
123 const char *domain_name, const char *name,
124 enum lsa_SidType type, const DOM_SID *sid);
125 NTSTATUS wcache_name_to_sid(struct winbindd_domain *domain,
126 const char *domain_name,
127 const char *name,
128 struct dom_sid *sid,
129 enum lsa_SidType *type);
130 NTSTATUS wcache_query_user(struct winbindd_domain *domain,
131 TALLOC_CTX *mem_ctx,
132 const struct dom_sid *user_sid,
133 struct wbint_userinfo *info);
134 NTSTATUS wcache_lookup_useraliases(struct winbindd_domain *domain,
135 TALLOC_CTX *mem_ctx,
136 uint32 num_sids, const DOM_SID *sids,
137 uint32 *pnum_aliases, uint32 **paliases);
138 NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain,
139 TALLOC_CTX *mem_ctx,
140 const struct dom_sid *user_sid,
141 uint32_t *pnum_sids,
142 struct dom_sid **psids);
144 void wcache_flush_cache(void);
145 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
146 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
147 bool set_global_winbindd_state_offline(void);
148 void set_global_winbindd_state_online(void);
149 bool get_global_winbindd_state_offline(void);
150 int winbindd_validate_cache(void);
151 int winbindd_validate_cache_nobackup(void);
152 bool winbindd_cache_validate_and_initialize(void);
153 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
154 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
155 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
156 void wcache_tdc_clear( void );
157 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain,
158 const DOM_SID *user_sid,
159 TALLOC_CTX *ctx,
160 ADS_STRUCT *ads, LDAPMessage *msg,
161 const char **homedir, const char **shell,
162 const char **gecos, gid_t *p_gid);
163 bool wcache_store_seqnum(const char *domain_name, uint32_t seqnum,
164 time_t last_seq_check);
165 bool wcache_fetch_ndr(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
166 uint32_t opnum, const DATA_BLOB *req, DATA_BLOB *resp);
167 void wcache_store_ndr(struct winbindd_domain *domain, uint32_t opnum,
168 const DATA_BLOB *req, const DATA_BLOB *resp);
170 /* The following definitions come from winbindd/winbindd_ccache_access.c */
172 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
173 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
174 struct winbindd_cli_state *state);
175 void winbindd_ccache_save(struct winbindd_cli_state *state);
176 enum winbindd_result winbindd_dual_ccache_save(
177 struct winbindd_domain *domain, struct winbindd_cli_state *state);
179 /* The following definitions come from winbindd/winbindd_cm.c */
181 void set_domain_offline(struct winbindd_domain *domain);
182 void set_domain_online_request(struct winbindd_domain *domain);
183 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
184 const char *server,
185 NTSTATUS result);
186 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
187 void close_conns_after_fork(void);
188 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
189 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
190 struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
191 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
192 struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
193 NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
194 TALLOC_CTX *mem_ctx,
195 struct rpc_pipe_client **cli);
196 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
197 struct rpc_pipe_client **cli);
199 /* The following definitions come from winbindd/winbindd_cred_cache.c */
201 bool ccache_entry_exists(const char *username);
202 bool ccache_entry_identical(const char *username,
203 uid_t uid,
204 const char *ccname);
205 void ccache_remove_all_after_fork(void);
206 void ccache_regain_all_now(void);
207 NTSTATUS add_ccache_to_list(const char *princ_name,
208 const char *ccname,
209 const char *service,
210 const char *username,
211 const char *realm,
212 uid_t uid,
213 time_t create_time,
214 time_t ticket_end,
215 time_t renew_until,
216 bool postponed_request);
217 NTSTATUS remove_ccache(const char *username);
218 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
219 NTSTATUS winbindd_add_memory_creds(const char *username,
220 uid_t uid,
221 const char *pass);
222 NTSTATUS winbindd_delete_memory_creds(const char *username);
223 NTSTATUS winbindd_replace_memory_creds(const char *username,
224 const char *pass);
226 /* The following definitions come from winbindd/winbindd_creds.c */
228 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
229 TALLOC_CTX *mem_ctx,
230 const DOM_SID *sid,
231 struct netr_SamInfo3 **info3,
232 const uint8 *cached_nt_pass[NT_HASH_LEN],
233 const uint8 *cred_salt[NT_HASH_LEN]);
234 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
235 TALLOC_CTX *mem_ctx,
236 const char *user,
237 const char *pass,
238 struct netr_SamInfo3 *info3,
239 const DOM_SID *user_sid);
240 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
241 TALLOC_CTX *mem_ctx,
242 const char *user,
243 const char *pass,
244 struct netr_SamInfo3 *info3);
245 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
246 TALLOC_CTX *mem_ctx,
247 const DOM_SID *sid,
248 const char *pass);
249 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
250 TALLOC_CTX *mem_ctx,
251 const char *user,
252 const char *pass);
254 /* The following definitions come from winbindd/winbindd_domain.c */
256 void setup_domain_child(struct winbindd_domain *domain,
257 struct winbindd_child *child);
259 /* The following definitions come from winbindd/winbindd_dual.c */
261 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
262 struct tevent_context *ev,
263 struct winbindd_child *child,
264 struct winbindd_request *request);
265 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
266 struct winbindd_response **presponse, int *err);
267 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
268 struct tevent_context *ev,
269 struct winbindd_domain *domain,
270 struct winbindd_request *request);
271 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
272 struct winbindd_response **presponse, int *err);
274 void async_domain_request(TALLOC_CTX *mem_ctx,
275 struct winbindd_domain *domain,
276 struct winbindd_request *request,
277 struct winbindd_response *response,
278 void (*continuation)(void *private_data_data, bool success),
279 void *private_data_data);
280 void sendto_domain(struct winbindd_cli_state *state,
281 struct winbindd_domain *domain);
282 void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
283 const struct winbindd_child_dispatch_table *table,
284 const char *logprefix,
285 const char *logname);
286 void winbind_child_died(pid_t pid);
287 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
288 void winbind_msg_debug(struct messaging_context *msg_ctx,
289 void *private_data,
290 uint32_t msg_type,
291 struct server_id server_id,
292 DATA_BLOB *data);
293 void winbind_msg_offline(struct messaging_context *msg_ctx,
294 void *private_data,
295 uint32_t msg_type,
296 struct server_id server_id,
297 DATA_BLOB *data);
298 void winbind_msg_online(struct messaging_context *msg_ctx,
299 void *private_data,
300 uint32_t msg_type,
301 struct server_id server_id,
302 DATA_BLOB *data);
303 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
304 void *private_data,
305 uint32_t msg_type,
306 struct server_id server_id,
307 DATA_BLOB *data);
308 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
309 void *private_data,
310 uint32_t msg_type,
311 struct server_id server_id,
312 DATA_BLOB *data);
313 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
314 void *private_data,
315 uint32_t msg_type,
316 struct server_id server_id,
317 DATA_BLOB *data);
318 bool winbindd_reinit_after_fork(const char *logfilename);
319 struct winbindd_domain *wb_child_domain(void);
321 /* The following definitions come from winbindd/winbindd_group.c */
323 void winbindd_getgrnam(struct winbindd_cli_state *state);
324 void winbindd_getgrgid(struct winbindd_cli_state *state);
325 void winbindd_setgrent(struct winbindd_cli_state *state);
326 void winbindd_endgrent(struct winbindd_cli_state *state);
327 void winbindd_getgrent(struct winbindd_cli_state *state);
328 void winbindd_list_groups(struct winbindd_cli_state *state);
329 void winbindd_getgroups(struct winbindd_cli_state *state);
330 void winbindd_getusersids(struct winbindd_cli_state *state);
331 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
332 void winbindd_getsidaliases(struct winbindd_cli_state *state);
333 bool fill_grent(TALLOC_CTX *mem_ctx, struct winbindd_gr *gr,
334 const char *dom_name, const char *gr_name, gid_t unix_gid);
335 NTSTATUS winbindd_print_groupmembers(struct talloc_dict *members,
336 TALLOC_CTX *mem_ctx,
337 int *num_members, char **result);
340 /* The following definitions come from winbindd/winbindd_idmap.c */
342 void init_idmap_child(void);
343 struct winbindd_child *idmap_child(void);
345 /* The following definitions come from winbindd/winbindd_locator.c */
347 void init_locator_child(void);
348 struct winbindd_child *locator_child(void);
350 /* The following definitions come from winbindd/winbindd_misc.c */
352 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
353 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
354 struct winbindd_cli_state *state);
355 void winbindd_show_sequence(struct winbindd_cli_state *state);
356 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
357 struct winbindd_cli_state *state);
358 void winbindd_domain_info(struct winbindd_cli_state *state);
359 void winbindd_ping(struct winbindd_cli_state *state);
360 void winbindd_info(struct winbindd_cli_state *state);
361 void winbindd_interface_version(struct winbindd_cli_state *state);
362 void winbindd_domain_name(struct winbindd_cli_state *state);
363 void winbindd_netbios_name(struct winbindd_cli_state *state);
364 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
366 /* The following definitions come from winbindd/winbindd_ndr.c */
368 void ndr_print_winbindd_child(struct ndr_print *ndr,
369 const char *name,
370 const struct winbindd_child *r);
371 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
372 const char *name,
373 const struct winbindd_cm_conn *r);
374 void ndr_print_winbindd_methods(struct ndr_print *ndr,
375 const char *name,
376 const struct winbindd_methods *r);
377 void ndr_print_winbindd_domain(struct ndr_print *ndr,
378 const char *name,
379 const struct winbindd_domain *r);
381 /* The following definitions come from winbindd/winbindd_pam.c */
383 bool check_request_flags(uint32_t flags);
384 struct winbindd_domain *find_auth_domain(uint8_t flags,
385 const char *domain_name);
386 NTSTATUS check_info3_in_group(struct netr_SamInfo3 *info3,
387 const char *group_sid);
388 void winbindd_pam_auth(struct winbindd_cli_state *state);
389 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
390 struct winbindd_cli_state *state) ;
391 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
392 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
393 struct winbindd_cli_state *state) ;
394 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
395 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
396 struct winbindd_cli_state *state);
397 void winbindd_pam_logoff(struct winbindd_cli_state *state);
398 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
399 struct winbindd_cli_state *state) ;
400 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
401 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
403 /* The following definitions come from winbindd/winbindd_util.c */
405 struct winbindd_domain *domain_list(void);
406 bool domain_is_forest_root(const struct winbindd_domain *domain);
407 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
408 struct timeval now, void *private_data);
409 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
410 struct winbindd_cli_state *state);
411 bool init_domain_list(void);
412 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
413 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
414 struct winbindd_domain *find_domain_from_name(const char *domain_name);
415 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
416 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
417 struct winbindd_domain *find_our_domain(void);
418 struct winbindd_domain *find_root_domain(void);
419 struct winbindd_domain *find_builtin_domain(void);
420 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
421 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
422 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
423 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
424 char **domain, char **user);
425 void parse_add_domuser(void *buf, char *domuser, int *len);
426 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
427 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
428 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
429 const char *domain,
430 const char *user,
431 bool can_assume);
432 const char *get_winbind_pipe_dir(void) ;
433 char *get_winbind_priv_pipe_dir(void) ;
434 int open_winbindd_socket(void);
435 int open_winbindd_priv_socket(void);
436 struct winbindd_cli_state *winbindd_client_list(void);
437 void winbindd_add_client(struct winbindd_cli_state *cli);
438 void winbindd_remove_client(struct winbindd_cli_state *cli);
439 void winbindd_kill_all_clients(void);
440 int winbindd_num_clients(void);
441 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
442 TALLOC_CTX *mem_ctx,
443 const DOM_SID *user_sid,
444 uint32 *p_num_groups, DOM_SID **user_sids);
446 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
447 struct winbindd_domain *domain,
448 const char *name,
449 char **normalized);
450 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
451 char *name,
452 char **normalized);
454 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
455 struct winbindd_domain *domain,
456 const char *name, char **alias);
457 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
458 struct winbindd_domain *domain,
459 const char *alias, char **name);
461 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
462 bool winbindd_internal_child(struct winbindd_child *child);
463 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
464 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
465 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
466 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
467 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
468 bool is_domain_offline(const struct winbindd_domain *domain);
470 /* The following definitions come from winbindd/winbindd_wins.c */
472 void winbindd_wins_byip(struct winbindd_cli_state *state);
473 void winbindd_wins_byname(struct winbindd_cli_state *state);
475 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
476 struct winbindd_cli_state *cli,
477 struct winbindd_request *request);
478 NTSTATUS wb_ping_recv(struct tevent_req *req,
479 struct winbindd_response *resp);
481 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
482 struct winbindd_cli_state *state);
484 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
485 struct winbindd_domain *domain,
486 struct winbindd_child *child);
487 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
488 struct winbindd_cli_state *state);
490 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
491 struct tevent_context *ev,
492 const struct dom_sid *sid);
493 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
494 enum lsa_SidType *type, const char **domain,
495 const char **name);
497 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
498 struct tevent_context *ev,
499 struct winbindd_cli_state *cli,
500 struct winbindd_request *request);
501 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
502 struct winbindd_response *response);
504 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
505 struct tevent_context *ev,
506 const char *dom_name, const char *name,
507 uint32_t flags);
508 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
509 enum lsa_SidType *type);
511 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
512 struct tevent_context *ev,
513 struct winbindd_cli_state *cli,
514 struct winbindd_request *request);
515 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
516 struct winbindd_response *response);
518 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
519 struct tevent_context *ev,
520 const struct dom_sid *sid);
521 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
523 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
524 struct tevent_context *ev,
525 struct winbindd_cli_state *cli,
526 struct winbindd_request *request);
527 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
528 struct winbindd_response *response);
530 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
531 struct tevent_context *ev,
532 const struct dom_sid *sid);
533 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
535 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
536 struct tevent_context *ev,
537 struct winbindd_cli_state *cli,
538 struct winbindd_request *request);
539 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
540 struct winbindd_response *response);
542 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
543 struct tevent_context *ev,
544 uid_t uid);
545 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
547 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
548 struct tevent_context *ev,
549 struct winbindd_cli_state *cli,
550 struct winbindd_request *request);
551 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
552 struct winbindd_response *response);
554 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
555 struct tevent_context *ev,
556 gid_t gid);
557 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
559 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
560 struct tevent_context *ev,
561 struct winbindd_cli_state *cli,
562 struct winbindd_request *request);
563 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
564 struct winbindd_response *response);
566 struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
567 struct tevent_context *ev,
568 struct winbindd_cli_state *cli,
569 struct winbindd_request *request);
570 NTSTATUS winbindd_allocate_uid_recv(struct tevent_req *req,
571 struct winbindd_response *response);
573 struct tevent_req *winbindd_allocate_gid_send(TALLOC_CTX *mem_ctx,
574 struct tevent_context *ev,
575 struct winbindd_cli_state *cli,
576 struct winbindd_request *request);
577 NTSTATUS winbindd_allocate_gid_recv(struct tevent_req *req,
578 struct winbindd_response *response);
580 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
581 struct tevent_context *ev,
582 const struct dom_sid *user_sid);
583 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
584 struct wbint_userinfo **pinfo);
586 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
587 struct tevent_context *ev,
588 const struct dom_sid *user_sid,
589 struct winbindd_pw *pw);
590 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
592 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
593 struct tevent_context *ev,
594 struct winbindd_cli_state *cli,
595 struct winbindd_request *request);
596 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
597 struct winbindd_response *response);
599 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
600 struct tevent_context *ev,
601 struct winbindd_cli_state *cli,
602 struct winbindd_request *request);
603 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
604 struct winbindd_response *response);
606 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
607 struct tevent_context *ev,
608 struct winbindd_cli_state *cli,
609 struct winbindd_request *request);
610 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
611 struct winbindd_response *response);
612 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
613 struct tevent_context *ev,
614 struct winbindd_domain *domain,
615 int num_sids,
616 const struct dom_sid *sids);
617 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
618 uint32_t *num_aliases, uint32_t **aliases);
619 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
620 struct tevent_context *ev,
621 struct winbindd_cli_state *cli,
622 struct winbindd_request *request);
623 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
624 struct winbindd_response *response);
625 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
626 struct tevent_context *ev,
627 struct winbindd_domain *domain,
628 const struct dom_sid *sid);
629 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
630 int *num_sids, struct dom_sid **sids);
632 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
633 struct tevent_context *ev,
634 struct winbindd_cli_state *cli,
635 struct winbindd_request *request);
636 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
637 struct winbindd_response *response);
638 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
639 struct tevent_context *ev,
640 const struct dom_sid *sid);
641 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
642 int *num_sids, struct dom_sid **sids);
643 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
644 struct tevent_context *ev,
645 struct winbindd_cli_state *cli,
646 struct winbindd_request *request);
647 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
648 struct winbindd_response *response);
650 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
651 struct tevent_context *ev,
652 struct winbindd_domain *domain);
653 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
655 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
656 struct tevent_context *ev);
657 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
658 int *num_domains, struct winbindd_domain ***domains,
659 NTSTATUS **stati, uint32_t **seqnums);
661 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
662 struct tevent_context *ev,
663 struct winbindd_cli_state *cli,
664 struct winbindd_request *request);
665 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
666 struct winbindd_response *response);
668 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
669 struct tevent_context *ev,
670 const struct dom_sid *sid,
671 enum lsa_SidType type,
672 int max_depth);
673 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
674 struct talloc_dict **members);
676 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
677 struct tevent_context *ev,
678 const struct dom_sid *group_sid,
679 int max_nesting);
680 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
681 const char **domname, const char **name, gid_t *gid,
682 struct talloc_dict **members);
684 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
685 struct tevent_context *ev,
686 struct winbindd_cli_state *cli,
687 struct winbindd_request *request);
688 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
689 struct winbindd_response *response);
691 struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
692 struct tevent_context *ev,
693 struct winbindd_cli_state *cli,
694 struct winbindd_request *request);
695 NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
696 struct winbindd_response *response);
698 struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx,
699 struct tevent_context *ev,
700 struct winbindd_cli_state *cli,
701 struct winbindd_request *request);
702 NTSTATUS winbindd_getusersids_recv(struct tevent_req *req,
703 struct winbindd_response *response);
705 struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx,
706 struct tevent_context *ev,
707 struct winbindd_cli_state *cli,
708 struct winbindd_request *request);
709 NTSTATUS winbindd_lookuprids_recv(struct tevent_req *req,
710 struct winbindd_response *response);
712 struct tevent_req *wb_query_user_list_send(TALLOC_CTX *mem_ctx,
713 struct tevent_context *ev,
714 struct winbindd_domain *domain);
715 NTSTATUS wb_query_user_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
716 int *num_users,
717 struct wbint_userinfo **users);
719 struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
720 struct tevent_context *ev,
721 struct wbint_userinfo *info,
722 struct winbindd_pw *pw);
723 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
725 struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
726 struct tevent_context *ev,
727 struct getpwent_state *gstate,
728 struct winbindd_pw *pw);
729 NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
731 struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
732 struct tevent_context *ev,
733 struct winbindd_cli_state *cli,
734 struct winbindd_request *request);
735 NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
736 struct winbindd_response *presp);
738 struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
739 struct tevent_context *ev,
740 struct winbindd_cli_state *cli,
741 struct winbindd_request *request);
742 NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
743 struct winbindd_response *response);
745 struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
746 struct tevent_context *ev,
747 struct winbindd_cli_state *cli,
748 struct winbindd_request *request);
749 NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
750 struct winbindd_response *response);
752 struct tevent_req *winbindd_dsgetdcname_send(TALLOC_CTX *mem_ctx,
753 struct tevent_context *ev,
754 struct winbindd_cli_state *cli,
755 struct winbindd_request *request);
756 NTSTATUS winbindd_dsgetdcname_recv(struct tevent_req *req,
757 struct winbindd_response *response);
759 struct tevent_req *wb_dsgetdcname_send(TALLOC_CTX *mem_ctx,
760 struct tevent_context *ev,
761 const char *domain_name,
762 const struct GUID *domain_guid,
763 const char *site_name,
764 uint32_t flags);
765 NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
766 struct netr_DsRGetDCNameInfo **pdcinfo);
768 struct tevent_req *winbindd_getdcname_send(TALLOC_CTX *mem_ctx,
769 struct tevent_context *ev,
770 struct winbindd_cli_state *cli,
771 struct winbindd_request *request);
772 NTSTATUS winbindd_getdcname_recv(struct tevent_req *req,
773 struct winbindd_response *response);
775 struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx,
776 struct tevent_context *ev,
777 int max_nesting,
778 struct getgrent_state *gstate,
779 struct winbindd_gr *gr);
780 NTSTATUS wb_next_grent_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
781 struct talloc_dict **members);
783 struct tevent_req *winbindd_setgrent_send(TALLOC_CTX *mem_ctx,
784 struct tevent_context *ev,
785 struct winbindd_cli_state *cli,
786 struct winbindd_request *request);
787 NTSTATUS winbindd_setgrent_recv(struct tevent_req *req,
788 struct winbindd_response *response);
789 struct tevent_req *winbindd_getgrent_send(TALLOC_CTX *mem_ctx,
790 struct tevent_context *ev,
791 struct winbindd_cli_state *cli,
792 struct winbindd_request *request);
793 NTSTATUS winbindd_getgrent_recv(struct tevent_req *req,
794 struct winbindd_response *response);
795 struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx,
796 struct tevent_context *ev,
797 struct winbindd_cli_state *cli,
798 struct winbindd_request *request);
799 NTSTATUS winbindd_endgrent_recv(struct tevent_req *req,
800 struct winbindd_response *response);
802 struct tevent_req *winbindd_list_users_send(TALLOC_CTX *mem_ctx,
803 struct tevent_context *ev,
804 struct winbindd_cli_state *cli,
805 struct winbindd_request *request);
806 NTSTATUS winbindd_list_users_recv(struct tevent_req *req,
807 struct winbindd_response *response);
809 struct tevent_req *winbindd_list_groups_send(TALLOC_CTX *mem_ctx,
810 struct tevent_context *ev,
811 struct winbindd_cli_state *cli,
812 struct winbindd_request *request);
813 NTSTATUS winbindd_list_groups_recv(struct tevent_req *req,
814 struct winbindd_response *response);
816 struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx,
817 struct tevent_context *ev,
818 struct winbindd_cli_state *cli,
819 struct winbindd_request *request);
820 NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req,
821 struct winbindd_response *presp);
823 struct tevent_req *winbindd_ping_dc_send(TALLOC_CTX *mem_ctx,
824 struct tevent_context *ev,
825 struct winbindd_cli_state *cli,
826 struct winbindd_request *request);
827 NTSTATUS winbindd_ping_dc_recv(struct tevent_req *req,
828 struct winbindd_response *presp);
830 struct tevent_req *winbindd_change_machine_acct_send(TALLOC_CTX *mem_ctx,
831 struct tevent_context *ev,
832 struct winbindd_cli_state *cli,
833 struct winbindd_request *request);
834 NTSTATUS winbindd_change_machine_acct_recv(struct tevent_req *req,
835 struct winbindd_response *presp);
837 struct tevent_req *winbindd_set_mapping_send(TALLOC_CTX *mem_ctx,
838 struct tevent_context *ev,
839 struct winbindd_cli_state *cli,
840 struct winbindd_request *request);
841 NTSTATUS winbindd_set_mapping_recv(struct tevent_req *req,
842 struct winbindd_response *response);
844 struct tevent_req *winbindd_remove_mapping_send(TALLOC_CTX *mem_ctx,
845 struct tevent_context *ev,
846 struct winbindd_cli_state *cli,
847 struct winbindd_request *request);
848 NTSTATUS winbindd_remove_mapping_recv(struct tevent_req *req,
849 struct winbindd_response *response);
851 struct tevent_req *winbindd_set_hwm_send(TALLOC_CTX *mem_ctx,
852 struct tevent_context *ev,
853 struct winbindd_cli_state *cli,
854 struct winbindd_request *request);
855 NTSTATUS winbindd_set_hwm_recv(struct tevent_req *req,
856 struct winbindd_response *response);
858 #endif /* _WINBINDD_PROTO_H_ */