idl: rebuild drsuapi.idl
[Samba/aatanasov.git] / source3 / winbindd / winbindd_proto.h
blob427579faf15cba162c753e0dfa972cc9b30dd6d0
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 smbd/connection.c */
45 bool yield_connection(connection_struct *conn, const char *name);
46 int count_current_connections( const char *sharename, bool clear );
47 int count_all_current_connections(void);
48 bool claim_connection(connection_struct *conn, const char *name,
49 uint32 msg_flags);
50 bool register_message_flags(bool doreg, uint32 msg_flags);
52 /* The following definitions come from winbindd/winbindd.c */
54 struct event_context *winbind_event_context(void);
55 struct messaging_context *winbind_messaging_context(void);
56 void request_error(struct winbindd_cli_state *state);
57 void request_ok(struct winbindd_cli_state *state);
58 bool winbindd_setup_sig_term_handler(bool parent);
59 bool winbindd_setup_sig_hup_handler(const char *lfile);
60 bool winbindd_use_idmap_cache(void);
61 bool winbindd_use_cache(void);
62 int main(int argc, char **argv, char **envp);
64 /* The following definitions come from winbindd/winbindd_ads.c */
66 /* The following definitions come from winbindd/winbindd_rpc.c */
68 NTSTATUS winbindd_lookup_sids(TALLOC_CTX *mem_ctx,
69 struct winbindd_domain *domain,
70 uint32_t num_sids,
71 const struct dom_sid *sids,
72 char ***domains,
73 char ***names,
74 enum lsa_SidType **types);
75 NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
76 struct winbindd_domain *domain,
77 uint32_t num_names,
78 const char **names,
79 const char ***domains,
80 struct dom_sid **sids,
81 enum lsa_SidType **types);
83 /* The following definitions come from winbindd/winbindd_async.c */
85 void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
86 const struct winbindd_request *request,
87 void (*cont)(TALLOC_CTX *mem_ctx, bool success,
88 struct winbindd_response *response,
89 void *c, void *private_data),
90 void *c, void *private_data);
91 void winbindd_lookupsid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
92 void (*cont)(void *private_data, bool success,
93 const char *dom_name,
94 const char *name,
95 enum lsa_SidType type),
96 void *private_data);
97 enum winbindd_result winbindd_dual_lookupsid(struct winbindd_domain *domain,
98 struct winbindd_cli_state *state);
99 void winbindd_lookupname_async(TALLOC_CTX *mem_ctx,
100 const char *dom_name, const char *name,
101 void (*cont)(void *private_data, bool success,
102 const DOM_SID *sid,
103 enum lsa_SidType type),
104 enum winbindd_cmd orig_cmd,
105 void *private_data);
106 enum winbindd_result winbindd_dual_lookupname(struct winbindd_domain *domain,
107 struct winbindd_cli_state *state);
108 void winbindd_listent_async(TALLOC_CTX *mem_ctx,
109 struct winbindd_domain *domain,
110 void (*cont)(void *private_data, bool success,
111 fstring dom_name, char* extra_data),
112 void *private_data, enum ent_type type);
113 enum winbindd_result winbindd_dual_list_users(struct winbindd_domain *domain,
114 struct winbindd_cli_state *state);
115 enum winbindd_result winbindd_dual_list_groups(struct winbindd_domain *domain,
116 struct winbindd_cli_state *state);
117 bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
118 size_t num_sids, char **result, ssize_t *len);
119 bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
120 DOM_SID **sids, size_t *num_sids);
121 void winbindd_getsidaliases_async(struct winbindd_domain *domain,
122 TALLOC_CTX *mem_ctx,
123 const DOM_SID *sids, size_t num_sids,
124 void (*cont)(void *private_data,
125 bool success,
126 const DOM_SID *aliases,
127 size_t num_aliases),
128 void *private_data);
129 enum winbindd_result winbindd_dual_getsidaliases(struct winbindd_domain *domain,
130 struct winbindd_cli_state *state);
131 void query_user_async(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
132 const DOM_SID *sid,
133 void (*cont)(void *private_data, bool success,
134 const char *acct_name,
135 const char *full_name,
136 const char *homedir,
137 const char *shell,
138 gid_t gid,
139 uint32 group_rid),
140 void *private_data);
142 /* The following definitions come from winbindd/winbindd_cache.c */
144 void winbindd_check_cache_size(time_t t);
145 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
146 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const DOM_SID *sid);
147 NTSTATUS wcache_get_creds(struct winbindd_domain *domain,
148 TALLOC_CTX *mem_ctx,
149 const DOM_SID *sid,
150 const uint8 **cached_nt_pass,
151 const uint8 **cached_salt);
152 NTSTATUS wcache_save_creds(struct winbindd_domain *domain,
153 TALLOC_CTX *mem_ctx,
154 const DOM_SID *sid,
155 const uint8 nt_pass[NT_HASH_LEN]);
156 void wcache_invalidate_samlogon(struct winbindd_domain *domain,
157 struct netr_SamInfo3 *info3);
158 bool wcache_invalidate_cache(void);
159 bool init_wcache(void);
160 bool initialize_winbindd_cache(void);
161 void close_winbindd_cache(void);
162 NTSTATUS wcache_sid_to_name(struct winbindd_domain *domain,
163 const struct dom_sid *sid,
164 TALLOC_CTX *mem_ctx,
165 char **domain_name,
166 char **name,
167 enum lsa_SidType *type);
168 NTSTATUS wcache_lookup_groupmem(struct winbindd_domain *domain,
169 TALLOC_CTX *mem_ctx,
170 const struct dom_sid *group_sid,
171 uint32_t *num_names,
172 struct dom_sid **sid_mem, char ***names,
173 uint32_t **name_types);
174 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
175 char **domain_name, char **name,
176 enum lsa_SidType *type);
177 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
178 const char *domain_name,
179 const char *name,
180 DOM_SID *sid,
181 enum lsa_SidType *type);
182 void cache_name2sid(struct winbindd_domain *domain,
183 const char *domain_name, const char *name,
184 enum lsa_SidType type, const DOM_SID *sid);
185 NTSTATUS wcache_name_to_sid(struct winbindd_domain *domain,
186 const char *domain_name,
187 const char *name,
188 struct dom_sid *sid,
189 enum lsa_SidType *type);
190 NTSTATUS wcache_query_user(struct winbindd_domain *domain,
191 TALLOC_CTX *mem_ctx,
192 const struct dom_sid *user_sid,
193 struct wbint_userinfo *info);
194 NTSTATUS wcache_lookup_useraliases(struct winbindd_domain *domain,
195 TALLOC_CTX *mem_ctx,
196 uint32 num_sids, const DOM_SID *sids,
197 uint32 *pnum_aliases, uint32 **paliases);
198 NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain,
199 TALLOC_CTX *mem_ctx,
200 const struct dom_sid *user_sid,
201 uint32_t *pnum_sids,
202 struct dom_sid **psids);
204 void wcache_flush_cache(void);
205 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
206 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
207 bool set_global_winbindd_state_offline(void);
208 void set_global_winbindd_state_online(void);
209 bool get_global_winbindd_state_offline(void);
210 int winbindd_validate_cache(void);
211 int winbindd_validate_cache_nobackup(void);
212 bool winbindd_cache_validate_and_initialize(void);
213 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
214 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
215 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
216 void wcache_tdc_clear( void );
217 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain,
218 const DOM_SID *user_sid,
219 TALLOC_CTX *ctx,
220 ADS_STRUCT *ads, LDAPMessage *msg,
221 const char **homedir, const char **shell,
222 const char **gecos, gid_t *p_gid);
223 bool wcache_store_seqnum(const char *domain_name, uint32_t seqnum,
224 time_t last_seq_check);
225 bool wcache_fetch_ndr(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
226 uint32_t opnum, const DATA_BLOB *req, DATA_BLOB *resp);
227 void wcache_store_ndr(struct winbindd_domain *domain, uint32_t opnum,
228 const DATA_BLOB *req, const DATA_BLOB *resp);
230 /* The following definitions come from winbindd/winbindd_ccache_access.c */
232 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
233 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
234 struct winbindd_cli_state *state);
236 /* The following definitions come from winbindd/winbindd_cm.c */
238 void set_domain_offline(struct winbindd_domain *domain);
239 void set_domain_online_request(struct winbindd_domain *domain);
240 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
241 const char *server,
242 NTSTATUS result);
243 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
244 void close_conns_after_fork(void);
245 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
246 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
247 struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
248 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
249 struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
250 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
251 struct rpc_pipe_client **cli);
253 /* The following definitions come from winbindd/winbindd_cred_cache.c */
255 bool ccache_entry_exists(const char *username);
256 bool ccache_entry_identical(const char *username,
257 uid_t uid,
258 const char *ccname);
259 void ccache_remove_all_after_fork(void);
260 void ccache_regain_all_now(void);
261 NTSTATUS add_ccache_to_list(const char *princ_name,
262 const char *ccname,
263 const char *service,
264 const char *username,
265 const char *realm,
266 uid_t uid,
267 time_t create_time,
268 time_t ticket_end,
269 time_t renew_until,
270 bool postponed_request);
271 NTSTATUS remove_ccache(const char *username);
272 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
273 NTSTATUS winbindd_add_memory_creds(const char *username,
274 uid_t uid,
275 const char *pass);
276 NTSTATUS winbindd_delete_memory_creds(const char *username);
277 NTSTATUS winbindd_replace_memory_creds(const char *username,
278 const char *pass);
280 /* The following definitions come from winbindd/winbindd_creds.c */
282 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
283 TALLOC_CTX *mem_ctx,
284 const DOM_SID *sid,
285 struct netr_SamInfo3 **info3,
286 const uint8 *cached_nt_pass[NT_HASH_LEN],
287 const uint8 *cred_salt[NT_HASH_LEN]);
288 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
289 TALLOC_CTX *mem_ctx,
290 const char *user,
291 const char *pass,
292 struct netr_SamInfo3 *info3,
293 const DOM_SID *user_sid);
294 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
295 TALLOC_CTX *mem_ctx,
296 const char *user,
297 const char *pass,
298 struct netr_SamInfo3 *info3);
299 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
300 TALLOC_CTX *mem_ctx,
301 const DOM_SID *sid,
302 const char *pass);
303 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
304 TALLOC_CTX *mem_ctx,
305 const char *user,
306 const char *pass);
308 /* The following definitions come from winbindd/winbindd_domain.c */
310 void setup_domain_child(struct winbindd_domain *domain,
311 struct winbindd_child *child);
313 /* The following definitions come from winbindd/winbindd_dual.c */
315 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
316 struct tevent_context *ev,
317 struct winbindd_child *child,
318 struct winbindd_request *request);
319 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
320 struct winbindd_response **presponse, int *err);
321 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
322 struct tevent_context *ev,
323 struct winbindd_domain *domain,
324 struct winbindd_request *request);
325 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
326 struct winbindd_response **presponse, int *err);
328 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
329 struct winbindd_request *request,
330 struct winbindd_response *response,
331 void (*continuation)(void *private_data, bool success),
332 void *private_data);
333 void async_domain_request(TALLOC_CTX *mem_ctx,
334 struct winbindd_domain *domain,
335 struct winbindd_request *request,
336 struct winbindd_response *response,
337 void (*continuation)(void *private_data_data, bool success),
338 void *private_data_data);
339 void sendto_child(struct winbindd_cli_state *state,
340 struct winbindd_child *child);
341 void sendto_domain(struct winbindd_cli_state *state,
342 struct winbindd_domain *domain);
343 void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
344 const struct winbindd_child_dispatch_table *table,
345 const char *logprefix,
346 const char *logname);
347 void winbind_child_died(pid_t pid);
348 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
349 void winbind_msg_debug(struct messaging_context *msg_ctx,
350 void *private_data,
351 uint32_t msg_type,
352 struct server_id server_id,
353 DATA_BLOB *data);
354 void winbind_msg_offline(struct messaging_context *msg_ctx,
355 void *private_data,
356 uint32_t msg_type,
357 struct server_id server_id,
358 DATA_BLOB *data);
359 void winbind_msg_online(struct messaging_context *msg_ctx,
360 void *private_data,
361 uint32_t msg_type,
362 struct server_id server_id,
363 DATA_BLOB *data);
364 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
365 void *private_data,
366 uint32_t msg_type,
367 struct server_id server_id,
368 DATA_BLOB *data);
369 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
370 void *private_data,
371 uint32_t msg_type,
372 struct server_id server_id,
373 DATA_BLOB *data);
374 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
375 void *private_data,
376 uint32_t msg_type,
377 struct server_id server_id,
378 DATA_BLOB *data);
379 bool winbindd_reinit_after_fork(const char *logfilename);
380 struct winbindd_domain *wb_child_domain(void);
382 /* The following definitions come from winbindd/winbindd_group.c */
384 void winbindd_getgrnam(struct winbindd_cli_state *state);
385 void winbindd_getgrgid(struct winbindd_cli_state *state);
386 void winbindd_setgrent(struct winbindd_cli_state *state);
387 void winbindd_endgrent(struct winbindd_cli_state *state);
388 void winbindd_getgrent(struct winbindd_cli_state *state);
389 void winbindd_list_groups(struct winbindd_cli_state *state);
390 void winbindd_getgroups(struct winbindd_cli_state *state);
391 void winbindd_getusersids(struct winbindd_cli_state *state);
392 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
393 void winbindd_getsidaliases(struct winbindd_cli_state *state);
394 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
395 struct winbindd_cli_state *state);
396 bool get_sam_group_entries(struct getent_state *ent);
397 bool fill_grent(TALLOC_CTX *mem_ctx, struct winbindd_gr *gr,
398 const char *dom_name, const char *gr_name, gid_t unix_gid);
399 NTSTATUS winbindd_print_groupmembers(struct talloc_dict *members,
400 TALLOC_CTX *mem_ctx,
401 int *num_members, char **result);
404 /* The following definitions come from winbindd/winbindd_idmap.c */
406 void init_idmap_child(void);
407 struct winbindd_child *idmap_child(void);
408 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
409 void (*cont)(void *private_data, bool success),
410 void *private_data);
411 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
412 struct winbindd_cli_state *state);
413 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
414 void (*cont)(void *private_data, bool success),
415 void *private_data);
416 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
417 struct winbindd_cli_state *state);
418 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
419 void (*cont)(void *private_data, bool success),
420 void *private_data);
421 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
422 struct winbindd_cli_state *state);
423 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
424 void (*cont)(void *private_data, bool success, void *data, int len),
425 void *private_data);
426 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
427 struct winbindd_cli_state *state);
428 void winbindd_sid2uid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
429 void (*cont)(void *private_data, bool success, uid_t uid),
430 void *private_data);
431 enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
432 struct winbindd_cli_state *state);
433 void winbindd_sid2gid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
434 void (*cont)(void *private_data, bool success, gid_t gid),
435 void *private_data);
436 enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
437 struct winbindd_cli_state *state);
438 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
439 void (*cont)(void *private_data, bool success, const char *sid),
440 void *private_data);
441 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
442 struct winbindd_cli_state *state);
443 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
444 void (*cont)(void *private_data, bool success, const char *sid),
445 void *private_data);
446 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
447 struct winbindd_cli_state *state);
449 /* The following definitions come from winbindd/winbindd_locator.c */
451 void init_locator_child(void);
452 struct winbindd_child *locator_child(void);
453 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
455 /* The following definitions come from winbindd/winbindd_misc.c */
457 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
458 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
459 struct winbindd_cli_state *state);
460 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
461 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
462 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
463 struct winbindd_cli_state *state);
464 enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
465 struct winbindd_cli_state *state);
466 void winbindd_show_sequence(struct winbindd_cli_state *state);
467 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
468 struct winbindd_cli_state *state);
469 void winbindd_domain_info(struct winbindd_cli_state *state);
470 void winbindd_ping(struct winbindd_cli_state *state);
471 void winbindd_info(struct winbindd_cli_state *state);
472 void winbindd_interface_version(struct winbindd_cli_state *state);
473 void winbindd_domain_name(struct winbindd_cli_state *state);
474 void winbindd_netbios_name(struct winbindd_cli_state *state);
475 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
477 /* The following definitions come from winbindd/winbindd_ndr.c */
479 void ndr_print_winbindd_child(struct ndr_print *ndr,
480 const char *name,
481 const struct winbindd_child *r);
482 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
483 const char *name,
484 const struct winbindd_cm_conn *r);
485 void ndr_print_winbindd_methods(struct ndr_print *ndr,
486 const char *name,
487 const struct winbindd_methods *r);
488 void ndr_print_winbindd_domain(struct ndr_print *ndr,
489 const char *name,
490 const struct winbindd_domain *r);
492 /* The following definitions come from winbindd/winbindd_pam.c */
494 struct winbindd_domain *find_auth_domain(struct winbindd_cli_state *state,
495 const char *domain_name);
496 void winbindd_pam_auth(struct winbindd_cli_state *state);
497 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
498 struct winbindd_cli_state *state) ;
499 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
500 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
501 struct winbindd_cli_state *state) ;
502 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
503 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
504 struct winbindd_cli_state *state);
505 void winbindd_pam_logoff(struct winbindd_cli_state *state);
506 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
507 struct winbindd_cli_state *state) ;
508 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
509 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
511 /* The following definitions come from winbindd/winbindd_passdb.c */
514 /* The following definitions come from winbindd/winbindd_reconnect.c */
517 /* The following definitions come from winbindd/winbindd_sid.c */
519 void winbindd_lookupsid(struct winbindd_cli_state *state);
520 void winbindd_lookupname(struct winbindd_cli_state *state);
521 void winbindd_lookuprids(struct winbindd_cli_state *state);
522 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
523 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
524 void winbindd_set_mapping(struct winbindd_cli_state *state);
525 void winbindd_remove_mapping(struct winbindd_cli_state *state);
526 void winbindd_set_hwm(struct winbindd_cli_state *state);
527 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
528 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
529 void winbindd_allocate_uid(struct winbindd_cli_state *state);
530 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
531 struct winbindd_cli_state *state);
532 void winbindd_allocate_gid(struct winbindd_cli_state *state);
533 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
534 struct winbindd_cli_state *state);
536 /* The following definitions come from winbindd/winbindd_user.c */
538 bool fillup_pw_field(const char *lp_template,
539 const char *username,
540 const char *domname,
541 uid_t uid,
542 gid_t gid,
543 const char *in,
544 fstring out);
546 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
547 struct winbindd_cli_state *state);
548 void winbindd_getpwnam(struct winbindd_cli_state *state);
549 void winbindd_getpwuid(struct winbindd_cli_state *state);
550 void winbindd_getpwsid(struct winbindd_cli_state *state);
551 void winbindd_setpwent(struct winbindd_cli_state *state);
552 void winbindd_endpwent(struct winbindd_cli_state *state);
553 void winbindd_getpwent(struct winbindd_cli_state *state);
554 void winbindd_list_users(struct winbindd_cli_state *state);
556 /* The following definitions come from winbindd/winbindd_util.c */
558 struct winbindd_domain *domain_list(void);
559 void free_domain_list(void);
560 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
561 struct timeval now, void *private_data);
562 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
563 struct winbindd_cli_state *state);
564 bool init_domain_list(void);
565 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
566 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
567 struct winbindd_domain *find_domain_from_name(const char *domain_name);
568 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
569 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
570 struct winbindd_domain *find_our_domain(void);
571 struct winbindd_domain *find_root_domain(void);
572 struct winbindd_domain *find_builtin_domain(void);
573 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
574 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
575 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
576 enum winbindd_cmd orig_cmd,
577 struct winbindd_domain *domain,
578 const char *domain_name,
579 const char *name, DOM_SID *sid,
580 enum lsa_SidType *type);
581 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
582 struct winbindd_domain *domain,
583 DOM_SID *sid,
584 char **dom_name,
585 char **name,
586 enum lsa_SidType *type);
587 void free_getent_state(struct getent_state *state);
588 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
589 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
590 char **domain, char **user);
591 void parse_add_domuser(void *buf, char *domuser, int *len);
592 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
593 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
594 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
595 const char *domain,
596 const char *user,
597 bool can_assume);
598 const char *get_winbind_pipe_dir(void) ;
599 char *get_winbind_priv_pipe_dir(void) ;
600 int open_winbindd_socket(void);
601 int open_winbindd_priv_socket(void);
602 struct winbindd_cli_state *winbindd_client_list(void);
603 void winbindd_add_client(struct winbindd_cli_state *cli);
604 void winbindd_remove_client(struct winbindd_cli_state *cli);
605 void winbindd_kill_all_clients(void);
606 int winbindd_num_clients(void);
607 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
608 TALLOC_CTX *mem_ctx,
609 const DOM_SID *user_sid,
610 uint32 *p_num_groups, DOM_SID **user_sids);
612 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
613 struct winbindd_domain *domain,
614 const char *name,
615 char **normalized);
616 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
617 char *name,
618 char **normalized);
620 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
621 struct winbindd_domain *domain,
622 const char *name, char **alias);
623 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
624 struct winbindd_domain *domain,
625 const char *alias, char **name);
627 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
628 bool winbindd_internal_child(struct winbindd_child *child);
629 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
630 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
631 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
632 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
633 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
635 /* The following definitions come from winbindd/winbindd_wins.c */
637 void winbindd_wins_byip(struct winbindd_cli_state *state);
638 void winbindd_wins_byname(struct winbindd_cli_state *state);
640 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
641 struct winbindd_cli_state *cli,
642 struct winbindd_request *request);
643 NTSTATUS wb_ping_recv(struct tevent_req *req,
644 struct winbindd_response *resp);
646 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
647 struct winbindd_cli_state *state);
649 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
650 struct winbindd_domain *domain,
651 struct winbindd_child *child);
652 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
653 struct winbindd_cli_state *state);
655 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
656 struct tevent_context *ev,
657 const struct dom_sid *sid);
658 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
659 enum lsa_SidType *type, const char **domain,
660 const char **name);
662 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
663 struct tevent_context *ev,
664 struct winbindd_cli_state *cli,
665 struct winbindd_request *request);
666 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
667 struct winbindd_response *response);
669 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
670 struct tevent_context *ev,
671 const char *dom_name, const char *name,
672 uint32_t flags);
673 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
674 enum lsa_SidType *type);
676 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
677 struct tevent_context *ev,
678 struct winbindd_cli_state *cli,
679 struct winbindd_request *request);
680 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
681 struct winbindd_response *response);
683 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
684 struct tevent_context *ev,
685 const struct dom_sid *sid);
686 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
688 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
689 struct tevent_context *ev,
690 struct winbindd_cli_state *cli,
691 struct winbindd_request *request);
692 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
693 struct winbindd_response *response);
695 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
696 struct tevent_context *ev,
697 const struct dom_sid *sid);
698 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
700 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
701 struct tevent_context *ev,
702 struct winbindd_cli_state *cli,
703 struct winbindd_request *request);
704 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
705 struct winbindd_response *response);
707 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
708 struct tevent_context *ev,
709 uid_t uid);
710 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
712 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
713 struct tevent_context *ev,
714 struct winbindd_cli_state *cli,
715 struct winbindd_request *request);
716 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
717 struct winbindd_response *response);
719 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
720 struct tevent_context *ev,
721 gid_t gid);
722 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
724 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
725 struct tevent_context *ev,
726 struct winbindd_cli_state *cli,
727 struct winbindd_request *request);
728 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
729 struct winbindd_response *response);
731 struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
732 struct tevent_context *ev,
733 struct winbindd_cli_state *cli,
734 struct winbindd_request *request);
735 NTSTATUS winbindd_allocate_uid_recv(struct tevent_req *req,
736 struct winbindd_response *response);
738 struct tevent_req *winbindd_allocate_gid_send(TALLOC_CTX *mem_ctx,
739 struct tevent_context *ev,
740 struct winbindd_cli_state *cli,
741 struct winbindd_request *request);
742 NTSTATUS winbindd_allocate_gid_recv(struct tevent_req *req,
743 struct winbindd_response *response);
745 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
746 struct tevent_context *ev,
747 const struct dom_sid *user_sid);
748 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
749 struct wbint_userinfo **pinfo);
751 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
752 struct tevent_context *ev,
753 const struct dom_sid *user_sid,
754 struct winbindd_pw *pw);
755 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
757 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
758 struct tevent_context *ev,
759 struct winbindd_cli_state *cli,
760 struct winbindd_request *request);
761 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
762 struct winbindd_response *response);
764 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
765 struct tevent_context *ev,
766 struct winbindd_cli_state *cli,
767 struct winbindd_request *request);
768 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
769 struct winbindd_response *response);
771 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
772 struct tevent_context *ev,
773 struct winbindd_cli_state *cli,
774 struct winbindd_request *request);
775 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
776 struct winbindd_response *response);
777 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
778 struct tevent_context *ev,
779 struct winbindd_domain *domain,
780 int num_sids,
781 const struct dom_sid *sids);
782 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
783 uint32_t *num_aliases, uint32_t **aliases);
784 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
785 struct tevent_context *ev,
786 struct winbindd_cli_state *cli,
787 struct winbindd_request *request);
788 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
789 struct winbindd_response *response);
790 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
791 struct tevent_context *ev,
792 struct winbindd_domain *domain,
793 const struct dom_sid *sid);
794 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
795 int *num_sids, struct dom_sid **sids);
797 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
798 struct tevent_context *ev,
799 struct winbindd_cli_state *cli,
800 struct winbindd_request *request);
801 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
802 struct winbindd_response *response);
803 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
804 struct tevent_context *ev,
805 const struct dom_sid *sid);
806 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
807 int *num_sids, struct dom_sid **sids);
808 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
809 struct tevent_context *ev,
810 struct winbindd_cli_state *cli,
811 struct winbindd_request *request);
812 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
813 struct winbindd_response *response);
815 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
816 struct tevent_context *ev,
817 struct winbindd_domain *domain);
818 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
820 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
821 struct tevent_context *ev);
822 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
823 int *num_domains, struct winbindd_domain ***domains,
824 NTSTATUS **stati, uint32_t **seqnums);
826 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
827 struct tevent_context *ev,
828 struct winbindd_cli_state *cli,
829 struct winbindd_request *request);
830 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
831 struct winbindd_response *response);
833 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
834 struct tevent_context *ev,
835 const struct dom_sid *sid,
836 enum lsa_SidType type,
837 int max_depth);
838 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
839 struct talloc_dict **members);
841 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
842 struct tevent_context *ev,
843 const struct dom_sid *group_sid,
844 int max_nesting);
845 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
846 const char **domname, const char **name, gid_t *gid,
847 struct talloc_dict **members);
849 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
850 struct tevent_context *ev,
851 struct winbindd_cli_state *cli,
852 struct winbindd_request *request);
853 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
854 struct winbindd_response *response);
856 struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
857 struct tevent_context *ev,
858 struct winbindd_cli_state *cli,
859 struct winbindd_request *request);
860 NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
861 struct winbindd_response *response);
863 struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx,
864 struct tevent_context *ev,
865 struct winbindd_cli_state *cli,
866 struct winbindd_request *request);
867 NTSTATUS winbindd_getusersids_recv(struct tevent_req *req,
868 struct winbindd_response *response);
870 struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx,
871 struct tevent_context *ev,
872 struct winbindd_cli_state *cli,
873 struct winbindd_request *request);
874 NTSTATUS winbindd_lookuprids_recv(struct tevent_req *req,
875 struct winbindd_response *response);
877 struct tevent_req *wb_query_user_list_send(TALLOC_CTX *mem_ctx,
878 struct tevent_context *ev,
879 struct winbindd_domain *domain);
880 NTSTATUS wb_query_user_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
881 int *num_users,
882 struct wbint_userinfo **users);
884 struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
885 struct tevent_context *ev,
886 struct wbint_userinfo *info,
887 struct winbindd_pw *pw);
888 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
890 struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
891 struct tevent_context *ev,
892 struct getpwent_state *gstate,
893 struct winbindd_pw *pw);
894 NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
896 struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
897 struct tevent_context *ev,
898 struct winbindd_cli_state *cli,
899 struct winbindd_request *request);
900 NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
901 struct winbindd_response *presp);
903 struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
904 struct tevent_context *ev,
905 struct winbindd_cli_state *cli,
906 struct winbindd_request *request);
907 NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
908 struct winbindd_response *response);
910 struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
911 struct tevent_context *ev,
912 struct winbindd_cli_state *cli,
913 struct winbindd_request *request);
914 NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
915 struct winbindd_response *response);
917 struct tevent_req *winbindd_dsgetdcname_send(TALLOC_CTX *mem_ctx,
918 struct tevent_context *ev,
919 struct winbindd_cli_state *cli,
920 struct winbindd_request *request);
921 NTSTATUS winbindd_dsgetdcname_recv(struct tevent_req *req,
922 struct winbindd_response *response);
924 struct tevent_req *wb_dsgetdcname_send(TALLOC_CTX *mem_ctx,
925 struct tevent_context *ev,
926 const char *domain_name,
927 const struct GUID *domain_guid,
928 const char *site_name,
929 uint32_t flags);
930 NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
931 struct netr_DsRGetDCNameInfo **pdcinfo);
933 struct tevent_req *winbindd_getdcname_send(TALLOC_CTX *mem_ctx,
934 struct tevent_context *ev,
935 struct winbindd_cli_state *cli,
936 struct winbindd_request *request);
937 NTSTATUS winbindd_getdcname_recv(struct tevent_req *req,
938 struct winbindd_response *response);
940 struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx,
941 struct tevent_context *ev,
942 int max_nesting,
943 struct getgrent_state *gstate,
944 struct winbindd_gr *gr);
945 NTSTATUS wb_next_grent_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
946 struct talloc_dict **members);
948 struct tevent_req *winbindd_setgrent_send(TALLOC_CTX *mem_ctx,
949 struct tevent_context *ev,
950 struct winbindd_cli_state *cli,
951 struct winbindd_request *request);
952 NTSTATUS winbindd_setgrent_recv(struct tevent_req *req,
953 struct winbindd_response *response);
954 struct tevent_req *winbindd_getgrent_send(TALLOC_CTX *mem_ctx,
955 struct tevent_context *ev,
956 struct winbindd_cli_state *cli,
957 struct winbindd_request *request);
958 NTSTATUS winbindd_getgrent_recv(struct tevent_req *req,
959 struct winbindd_response *response);
960 struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx,
961 struct tevent_context *ev,
962 struct winbindd_cli_state *cli,
963 struct winbindd_request *request);
964 NTSTATUS winbindd_endgrent_recv(struct tevent_req *req,
965 struct winbindd_response *response);
967 struct tevent_req *winbindd_list_users_send(TALLOC_CTX *mem_ctx,
968 struct tevent_context *ev,
969 struct winbindd_cli_state *cli,
970 struct winbindd_request *request);
971 NTSTATUS winbindd_list_users_recv(struct tevent_req *req,
972 struct winbindd_response *response);
974 struct tevent_req *winbindd_list_groups_send(TALLOC_CTX *mem_ctx,
975 struct tevent_context *ev,
976 struct winbindd_cli_state *cli,
977 struct winbindd_request *request);
978 NTSTATUS winbindd_list_groups_recv(struct tevent_req *req,
979 struct winbindd_response *response);
981 struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx,
982 struct tevent_context *ev,
983 struct winbindd_cli_state *cli,
984 struct winbindd_request *request);
985 NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req,
986 struct winbindd_response *presp);
988 struct tevent_req *winbindd_set_mapping_send(TALLOC_CTX *mem_ctx,
989 struct tevent_context *ev,
990 struct winbindd_cli_state *cli,
991 struct winbindd_request *request);
992 NTSTATUS winbindd_set_mapping_recv(struct tevent_req *req,
993 struct winbindd_response *response);
995 struct tevent_req *winbindd_remove_mapping_send(TALLOC_CTX *mem_ctx,
996 struct tevent_context *ev,
997 struct winbindd_cli_state *cli,
998 struct winbindd_request *request);
999 NTSTATUS winbindd_remove_mapping_recv(struct tevent_req *req,
1000 struct winbindd_response *response);
1002 struct tevent_req *winbindd_set_hwm_send(TALLOC_CTX *mem_ctx,
1003 struct tevent_context *ev,
1004 struct winbindd_cli_state *cli,
1005 struct winbindd_request *request);
1006 NTSTATUS winbindd_set_hwm_recv(struct tevent_req *req,
1007 struct winbindd_response *response);
1009 #endif /* _WINBINDD_PROTO_H_ */