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