s4:upgradeprovision Rework script, and reset machine account pw
[Samba/cd1.git] / source3 / winbindd / winbindd_proto.h
blob6e232c9db81aa62a3f0ab5618b019ffdde3e12d2
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_lsa_tcp(struct winbindd_domain *domain,
251 TALLOC_CTX *mem_ctx,
252 struct rpc_pipe_client **cli);
253 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
254 struct rpc_pipe_client **cli);
256 /* The following definitions come from winbindd/winbindd_cred_cache.c */
258 bool ccache_entry_exists(const char *username);
259 bool ccache_entry_identical(const char *username,
260 uid_t uid,
261 const char *ccname);
262 void ccache_remove_all_after_fork(void);
263 void ccache_regain_all_now(void);
264 NTSTATUS add_ccache_to_list(const char *princ_name,
265 const char *ccname,
266 const char *service,
267 const char *username,
268 const char *realm,
269 uid_t uid,
270 time_t create_time,
271 time_t ticket_end,
272 time_t renew_until,
273 bool postponed_request);
274 NTSTATUS remove_ccache(const char *username);
275 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
276 NTSTATUS winbindd_add_memory_creds(const char *username,
277 uid_t uid,
278 const char *pass);
279 NTSTATUS winbindd_delete_memory_creds(const char *username);
280 NTSTATUS winbindd_replace_memory_creds(const char *username,
281 const char *pass);
283 /* The following definitions come from winbindd/winbindd_creds.c */
285 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
286 TALLOC_CTX *mem_ctx,
287 const DOM_SID *sid,
288 struct netr_SamInfo3 **info3,
289 const uint8 *cached_nt_pass[NT_HASH_LEN],
290 const uint8 *cred_salt[NT_HASH_LEN]);
291 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
292 TALLOC_CTX *mem_ctx,
293 const char *user,
294 const char *pass,
295 struct netr_SamInfo3 *info3,
296 const DOM_SID *user_sid);
297 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
298 TALLOC_CTX *mem_ctx,
299 const char *user,
300 const char *pass,
301 struct netr_SamInfo3 *info3);
302 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
303 TALLOC_CTX *mem_ctx,
304 const DOM_SID *sid,
305 const char *pass);
306 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
307 TALLOC_CTX *mem_ctx,
308 const char *user,
309 const char *pass);
311 /* The following definitions come from winbindd/winbindd_domain.c */
313 void setup_domain_child(struct winbindd_domain *domain,
314 struct winbindd_child *child);
316 /* The following definitions come from winbindd/winbindd_dual.c */
318 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
319 struct tevent_context *ev,
320 struct winbindd_child *child,
321 struct winbindd_request *request);
322 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
323 struct winbindd_response **presponse, int *err);
324 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
325 struct tevent_context *ev,
326 struct winbindd_domain *domain,
327 struct winbindd_request *request);
328 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
329 struct winbindd_response **presponse, int *err);
331 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
332 struct winbindd_request *request,
333 struct winbindd_response *response,
334 void (*continuation)(void *private_data, bool success),
335 void *private_data);
336 void async_domain_request(TALLOC_CTX *mem_ctx,
337 struct winbindd_domain *domain,
338 struct winbindd_request *request,
339 struct winbindd_response *response,
340 void (*continuation)(void *private_data_data, bool success),
341 void *private_data_data);
342 void sendto_child(struct winbindd_cli_state *state,
343 struct winbindd_child *child);
344 void sendto_domain(struct winbindd_cli_state *state,
345 struct winbindd_domain *domain);
346 void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
347 const struct winbindd_child_dispatch_table *table,
348 const char *logprefix,
349 const char *logname);
350 void winbind_child_died(pid_t pid);
351 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
352 void winbind_msg_debug(struct messaging_context *msg_ctx,
353 void *private_data,
354 uint32_t msg_type,
355 struct server_id server_id,
356 DATA_BLOB *data);
357 void winbind_msg_offline(struct messaging_context *msg_ctx,
358 void *private_data,
359 uint32_t msg_type,
360 struct server_id server_id,
361 DATA_BLOB *data);
362 void winbind_msg_online(struct messaging_context *msg_ctx,
363 void *private_data,
364 uint32_t msg_type,
365 struct server_id server_id,
366 DATA_BLOB *data);
367 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
368 void *private_data,
369 uint32_t msg_type,
370 struct server_id server_id,
371 DATA_BLOB *data);
372 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
373 void *private_data,
374 uint32_t msg_type,
375 struct server_id server_id,
376 DATA_BLOB *data);
377 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
378 void *private_data,
379 uint32_t msg_type,
380 struct server_id server_id,
381 DATA_BLOB *data);
382 bool winbindd_reinit_after_fork(const char *logfilename);
383 struct winbindd_domain *wb_child_domain(void);
385 /* The following definitions come from winbindd/winbindd_group.c */
387 void winbindd_getgrnam(struct winbindd_cli_state *state);
388 void winbindd_getgrgid(struct winbindd_cli_state *state);
389 void winbindd_setgrent(struct winbindd_cli_state *state);
390 void winbindd_endgrent(struct winbindd_cli_state *state);
391 void winbindd_getgrent(struct winbindd_cli_state *state);
392 void winbindd_list_groups(struct winbindd_cli_state *state);
393 void winbindd_getgroups(struct winbindd_cli_state *state);
394 void winbindd_getusersids(struct winbindd_cli_state *state);
395 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
396 void winbindd_getsidaliases(struct winbindd_cli_state *state);
397 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
398 struct winbindd_cli_state *state);
399 bool get_sam_group_entries(struct getent_state *ent);
400 bool fill_grent(TALLOC_CTX *mem_ctx, struct winbindd_gr *gr,
401 const char *dom_name, const char *gr_name, gid_t unix_gid);
402 NTSTATUS winbindd_print_groupmembers(struct talloc_dict *members,
403 TALLOC_CTX *mem_ctx,
404 int *num_members, char **result);
407 /* The following definitions come from winbindd/winbindd_idmap.c */
409 void init_idmap_child(void);
410 struct winbindd_child *idmap_child(void);
411 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
412 void (*cont)(void *private_data, bool success),
413 void *private_data);
414 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
415 struct winbindd_cli_state *state);
416 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
417 void (*cont)(void *private_data, bool success),
418 void *private_data);
419 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
420 struct winbindd_cli_state *state);
421 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
422 void (*cont)(void *private_data, bool success),
423 void *private_data);
424 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
425 struct winbindd_cli_state *state);
426 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
427 void (*cont)(void *private_data, bool success, void *data, int len),
428 void *private_data);
429 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
430 struct winbindd_cli_state *state);
431 void winbindd_sid2uid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
432 void (*cont)(void *private_data, bool success, uid_t uid),
433 void *private_data);
434 enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
435 struct winbindd_cli_state *state);
436 void winbindd_sid2gid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
437 void (*cont)(void *private_data, bool success, gid_t gid),
438 void *private_data);
439 enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
440 struct winbindd_cli_state *state);
441 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
442 void (*cont)(void *private_data, bool success, const char *sid),
443 void *private_data);
444 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
445 struct winbindd_cli_state *state);
446 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
447 void (*cont)(void *private_data, bool success, const char *sid),
448 void *private_data);
449 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
450 struct winbindd_cli_state *state);
452 /* The following definitions come from winbindd/winbindd_locator.c */
454 void init_locator_child(void);
455 struct winbindd_child *locator_child(void);
456 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
458 /* The following definitions come from winbindd/winbindd_misc.c */
460 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
461 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
462 struct winbindd_cli_state *state);
463 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
464 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
465 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
466 struct winbindd_cli_state *state);
467 enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
468 struct winbindd_cli_state *state);
469 void winbindd_show_sequence(struct winbindd_cli_state *state);
470 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
471 struct winbindd_cli_state *state);
472 void winbindd_domain_info(struct winbindd_cli_state *state);
473 void winbindd_ping(struct winbindd_cli_state *state);
474 void winbindd_info(struct winbindd_cli_state *state);
475 void winbindd_interface_version(struct winbindd_cli_state *state);
476 void winbindd_domain_name(struct winbindd_cli_state *state);
477 void winbindd_netbios_name(struct winbindd_cli_state *state);
478 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
480 /* The following definitions come from winbindd/winbindd_ndr.c */
482 void ndr_print_winbindd_child(struct ndr_print *ndr,
483 const char *name,
484 const struct winbindd_child *r);
485 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
486 const char *name,
487 const struct winbindd_cm_conn *r);
488 void ndr_print_winbindd_methods(struct ndr_print *ndr,
489 const char *name,
490 const struct winbindd_methods *r);
491 void ndr_print_winbindd_domain(struct ndr_print *ndr,
492 const char *name,
493 const struct winbindd_domain *r);
495 /* The following definitions come from winbindd/winbindd_pam.c */
497 bool check_request_flags(uint32_t flags);
498 struct winbindd_domain *find_auth_domain(uint8_t flags,
499 const char *domain_name);
500 NTSTATUS check_info3_in_group(struct netr_SamInfo3 *info3,
501 const char *group_sid);
502 NTSTATUS append_auth_data(struct winbindd_cli_state *state,
503 struct netr_SamInfo3 *info3,
504 const char *name_domain,
505 const char *name_user);
506 void winbindd_pam_auth(struct winbindd_cli_state *state);
507 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
508 struct winbindd_cli_state *state) ;
509 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
510 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
511 struct winbindd_cli_state *state) ;
512 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
513 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
514 struct winbindd_cli_state *state);
515 void winbindd_pam_logoff(struct winbindd_cli_state *state);
516 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
517 struct winbindd_cli_state *state) ;
518 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
519 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
521 /* The following definitions come from winbindd/winbindd_passdb.c */
524 /* The following definitions come from winbindd/winbindd_reconnect.c */
527 /* The following definitions come from winbindd/winbindd_sid.c */
529 void winbindd_lookupsid(struct winbindd_cli_state *state);
530 void winbindd_lookupname(struct winbindd_cli_state *state);
531 void winbindd_lookuprids(struct winbindd_cli_state *state);
532 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
533 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
534 void winbindd_set_mapping(struct winbindd_cli_state *state);
535 void winbindd_remove_mapping(struct winbindd_cli_state *state);
536 void winbindd_set_hwm(struct winbindd_cli_state *state);
537 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
538 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
539 void winbindd_allocate_uid(struct winbindd_cli_state *state);
540 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
541 struct winbindd_cli_state *state);
542 void winbindd_allocate_gid(struct winbindd_cli_state *state);
543 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
544 struct winbindd_cli_state *state);
546 /* The following definitions come from winbindd/winbindd_user.c */
548 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
549 struct winbindd_cli_state *state);
550 void winbindd_getpwnam(struct winbindd_cli_state *state);
551 void winbindd_getpwuid(struct winbindd_cli_state *state);
552 void winbindd_getpwsid(struct winbindd_cli_state *state);
553 void winbindd_setpwent(struct winbindd_cli_state *state);
554 void winbindd_endpwent(struct winbindd_cli_state *state);
555 void winbindd_getpwent(struct winbindd_cli_state *state);
556 void winbindd_list_users(struct winbindd_cli_state *state);
558 /* The following definitions come from winbindd/winbindd_util.c */
560 struct winbindd_domain *domain_list(void);
561 void free_domain_list(void);
562 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
563 struct timeval now, void *private_data);
564 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
565 struct winbindd_cli_state *state);
566 bool init_domain_list(void);
567 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
568 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
569 struct winbindd_domain *find_domain_from_name(const char *domain_name);
570 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
571 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
572 struct winbindd_domain *find_our_domain(void);
573 struct winbindd_domain *find_root_domain(void);
574 struct winbindd_domain *find_builtin_domain(void);
575 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
576 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
577 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
578 enum winbindd_cmd orig_cmd,
579 struct winbindd_domain *domain,
580 const char *domain_name,
581 const char *name, DOM_SID *sid,
582 enum lsa_SidType *type);
583 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
584 struct winbindd_domain *domain,
585 DOM_SID *sid,
586 char **dom_name,
587 char **name,
588 enum lsa_SidType *type);
589 void free_getent_state(struct getent_state *state);
590 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
591 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
592 char **domain, char **user);
593 void parse_add_domuser(void *buf, char *domuser, int *len);
594 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
595 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
596 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
597 const char *domain,
598 const char *user,
599 bool can_assume);
600 const char *get_winbind_pipe_dir(void) ;
601 char *get_winbind_priv_pipe_dir(void) ;
602 int open_winbindd_socket(void);
603 int open_winbindd_priv_socket(void);
604 struct winbindd_cli_state *winbindd_client_list(void);
605 void winbindd_add_client(struct winbindd_cli_state *cli);
606 void winbindd_remove_client(struct winbindd_cli_state *cli);
607 void winbindd_kill_all_clients(void);
608 int winbindd_num_clients(void);
609 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
610 TALLOC_CTX *mem_ctx,
611 const DOM_SID *user_sid,
612 uint32 *p_num_groups, DOM_SID **user_sids);
614 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
615 struct winbindd_domain *domain,
616 const char *name,
617 char **normalized);
618 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
619 char *name,
620 char **normalized);
622 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
623 struct winbindd_domain *domain,
624 const char *name, char **alias);
625 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
626 struct winbindd_domain *domain,
627 const char *alias, char **name);
629 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
630 bool winbindd_internal_child(struct winbindd_child *child);
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 winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
634 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
635 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
637 /* The following definitions come from winbindd/winbindd_wins.c */
639 void winbindd_wins_byip(struct winbindd_cli_state *state);
640 void winbindd_wins_byname(struct winbindd_cli_state *state);
642 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
643 struct winbindd_cli_state *cli,
644 struct winbindd_request *request);
645 NTSTATUS wb_ping_recv(struct tevent_req *req,
646 struct winbindd_response *resp);
648 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
649 struct winbindd_cli_state *state);
651 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
652 struct winbindd_domain *domain,
653 struct winbindd_child *child);
654 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
655 struct winbindd_cli_state *state);
657 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
658 struct tevent_context *ev,
659 const struct dom_sid *sid);
660 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
661 enum lsa_SidType *type, const char **domain,
662 const char **name);
664 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
665 struct tevent_context *ev,
666 struct winbindd_cli_state *cli,
667 struct winbindd_request *request);
668 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
669 struct winbindd_response *response);
671 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
672 struct tevent_context *ev,
673 const char *dom_name, const char *name,
674 uint32_t flags);
675 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
676 enum lsa_SidType *type);
678 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
679 struct tevent_context *ev,
680 struct winbindd_cli_state *cli,
681 struct winbindd_request *request);
682 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
683 struct winbindd_response *response);
685 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
686 struct tevent_context *ev,
687 const struct dom_sid *sid);
688 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
690 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
691 struct tevent_context *ev,
692 struct winbindd_cli_state *cli,
693 struct winbindd_request *request);
694 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
695 struct winbindd_response *response);
697 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
698 struct tevent_context *ev,
699 const struct dom_sid *sid);
700 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
702 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
703 struct tevent_context *ev,
704 struct winbindd_cli_state *cli,
705 struct winbindd_request *request);
706 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
707 struct winbindd_response *response);
709 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
710 struct tevent_context *ev,
711 uid_t uid);
712 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
714 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
715 struct tevent_context *ev,
716 struct winbindd_cli_state *cli,
717 struct winbindd_request *request);
718 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
719 struct winbindd_response *response);
721 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
722 struct tevent_context *ev,
723 gid_t gid);
724 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
726 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
727 struct tevent_context *ev,
728 struct winbindd_cli_state *cli,
729 struct winbindd_request *request);
730 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
731 struct winbindd_response *response);
733 struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
734 struct tevent_context *ev,
735 struct winbindd_cli_state *cli,
736 struct winbindd_request *request);
737 NTSTATUS winbindd_allocate_uid_recv(struct tevent_req *req,
738 struct winbindd_response *response);
740 struct tevent_req *winbindd_allocate_gid_send(TALLOC_CTX *mem_ctx,
741 struct tevent_context *ev,
742 struct winbindd_cli_state *cli,
743 struct winbindd_request *request);
744 NTSTATUS winbindd_allocate_gid_recv(struct tevent_req *req,
745 struct winbindd_response *response);
747 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
748 struct tevent_context *ev,
749 const struct dom_sid *user_sid);
750 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
751 struct wbint_userinfo **pinfo);
753 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
754 struct tevent_context *ev,
755 const struct dom_sid *user_sid,
756 struct winbindd_pw *pw);
757 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
759 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
760 struct tevent_context *ev,
761 struct winbindd_cli_state *cli,
762 struct winbindd_request *request);
763 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
764 struct winbindd_response *response);
766 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
767 struct tevent_context *ev,
768 struct winbindd_cli_state *cli,
769 struct winbindd_request *request);
770 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
771 struct winbindd_response *response);
773 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
774 struct tevent_context *ev,
775 struct winbindd_cli_state *cli,
776 struct winbindd_request *request);
777 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
778 struct winbindd_response *response);
779 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
780 struct tevent_context *ev,
781 struct winbindd_domain *domain,
782 int num_sids,
783 const struct dom_sid *sids);
784 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
785 uint32_t *num_aliases, uint32_t **aliases);
786 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
787 struct tevent_context *ev,
788 struct winbindd_cli_state *cli,
789 struct winbindd_request *request);
790 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
791 struct winbindd_response *response);
792 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
793 struct tevent_context *ev,
794 struct winbindd_domain *domain,
795 const struct dom_sid *sid);
796 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
797 int *num_sids, struct dom_sid **sids);
799 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
800 struct tevent_context *ev,
801 struct winbindd_cli_state *cli,
802 struct winbindd_request *request);
803 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
804 struct winbindd_response *response);
805 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
806 struct tevent_context *ev,
807 const struct dom_sid *sid);
808 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
809 int *num_sids, struct dom_sid **sids);
810 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
811 struct tevent_context *ev,
812 struct winbindd_cli_state *cli,
813 struct winbindd_request *request);
814 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
815 struct winbindd_response *response);
817 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
818 struct tevent_context *ev,
819 struct winbindd_domain *domain);
820 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
822 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
823 struct tevent_context *ev);
824 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
825 int *num_domains, struct winbindd_domain ***domains,
826 NTSTATUS **stati, uint32_t **seqnums);
828 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
829 struct tevent_context *ev,
830 struct winbindd_cli_state *cli,
831 struct winbindd_request *request);
832 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
833 struct winbindd_response *response);
835 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
836 struct tevent_context *ev,
837 const struct dom_sid *sid,
838 enum lsa_SidType type,
839 int max_depth);
840 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
841 struct talloc_dict **members);
843 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
844 struct tevent_context *ev,
845 const struct dom_sid *group_sid,
846 int max_nesting);
847 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
848 const char **domname, const char **name, gid_t *gid,
849 struct talloc_dict **members);
851 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
852 struct tevent_context *ev,
853 struct winbindd_cli_state *cli,
854 struct winbindd_request *request);
855 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
856 struct winbindd_response *response);
858 struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
859 struct tevent_context *ev,
860 struct winbindd_cli_state *cli,
861 struct winbindd_request *request);
862 NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
863 struct winbindd_response *response);
865 struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx,
866 struct tevent_context *ev,
867 struct winbindd_cli_state *cli,
868 struct winbindd_request *request);
869 NTSTATUS winbindd_getusersids_recv(struct tevent_req *req,
870 struct winbindd_response *response);
872 struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx,
873 struct tevent_context *ev,
874 struct winbindd_cli_state *cli,
875 struct winbindd_request *request);
876 NTSTATUS winbindd_lookuprids_recv(struct tevent_req *req,
877 struct winbindd_response *response);
879 struct tevent_req *wb_query_user_list_send(TALLOC_CTX *mem_ctx,
880 struct tevent_context *ev,
881 struct winbindd_domain *domain);
882 NTSTATUS wb_query_user_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
883 int *num_users,
884 struct wbint_userinfo **users);
886 struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
887 struct tevent_context *ev,
888 struct wbint_userinfo *info,
889 struct winbindd_pw *pw);
890 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
892 struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
893 struct tevent_context *ev,
894 struct getpwent_state *gstate,
895 struct winbindd_pw *pw);
896 NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
898 struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
899 struct tevent_context *ev,
900 struct winbindd_cli_state *cli,
901 struct winbindd_request *request);
902 NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
903 struct winbindd_response *presp);
905 struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
906 struct tevent_context *ev,
907 struct winbindd_cli_state *cli,
908 struct winbindd_request *request);
909 NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
910 struct winbindd_response *response);
912 struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
913 struct tevent_context *ev,
914 struct winbindd_cli_state *cli,
915 struct winbindd_request *request);
916 NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
917 struct winbindd_response *response);
919 struct tevent_req *winbindd_dsgetdcname_send(TALLOC_CTX *mem_ctx,
920 struct tevent_context *ev,
921 struct winbindd_cli_state *cli,
922 struct winbindd_request *request);
923 NTSTATUS winbindd_dsgetdcname_recv(struct tevent_req *req,
924 struct winbindd_response *response);
926 struct tevent_req *wb_dsgetdcname_send(TALLOC_CTX *mem_ctx,
927 struct tevent_context *ev,
928 const char *domain_name,
929 const struct GUID *domain_guid,
930 const char *site_name,
931 uint32_t flags);
932 NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
933 struct netr_DsRGetDCNameInfo **pdcinfo);
935 struct tevent_req *winbindd_getdcname_send(TALLOC_CTX *mem_ctx,
936 struct tevent_context *ev,
937 struct winbindd_cli_state *cli,
938 struct winbindd_request *request);
939 NTSTATUS winbindd_getdcname_recv(struct tevent_req *req,
940 struct winbindd_response *response);
942 struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx,
943 struct tevent_context *ev,
944 int max_nesting,
945 struct getgrent_state *gstate,
946 struct winbindd_gr *gr);
947 NTSTATUS wb_next_grent_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
948 struct talloc_dict **members);
950 struct tevent_req *winbindd_setgrent_send(TALLOC_CTX *mem_ctx,
951 struct tevent_context *ev,
952 struct winbindd_cli_state *cli,
953 struct winbindd_request *request);
954 NTSTATUS winbindd_setgrent_recv(struct tevent_req *req,
955 struct winbindd_response *response);
956 struct tevent_req *winbindd_getgrent_send(TALLOC_CTX *mem_ctx,
957 struct tevent_context *ev,
958 struct winbindd_cli_state *cli,
959 struct winbindd_request *request);
960 NTSTATUS winbindd_getgrent_recv(struct tevent_req *req,
961 struct winbindd_response *response);
962 struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx,
963 struct tevent_context *ev,
964 struct winbindd_cli_state *cli,
965 struct winbindd_request *request);
966 NTSTATUS winbindd_endgrent_recv(struct tevent_req *req,
967 struct winbindd_response *response);
969 struct tevent_req *winbindd_list_users_send(TALLOC_CTX *mem_ctx,
970 struct tevent_context *ev,
971 struct winbindd_cli_state *cli,
972 struct winbindd_request *request);
973 NTSTATUS winbindd_list_users_recv(struct tevent_req *req,
974 struct winbindd_response *response);
976 struct tevent_req *winbindd_list_groups_send(TALLOC_CTX *mem_ctx,
977 struct tevent_context *ev,
978 struct winbindd_cli_state *cli,
979 struct winbindd_request *request);
980 NTSTATUS winbindd_list_groups_recv(struct tevent_req *req,
981 struct winbindd_response *response);
983 struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx,
984 struct tevent_context *ev,
985 struct winbindd_cli_state *cli,
986 struct winbindd_request *request);
987 NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req,
988 struct winbindd_response *presp);
990 struct tevent_req *winbindd_change_machine_acct_send(TALLOC_CTX *mem_ctx,
991 struct tevent_context *ev,
992 struct winbindd_cli_state *cli,
993 struct winbindd_request *request);
994 NTSTATUS winbindd_change_machine_acct_recv(struct tevent_req *req,
995 struct winbindd_response *presp);
997 struct tevent_req *winbindd_set_mapping_send(TALLOC_CTX *mem_ctx,
998 struct tevent_context *ev,
999 struct winbindd_cli_state *cli,
1000 struct winbindd_request *request);
1001 NTSTATUS winbindd_set_mapping_recv(struct tevent_req *req,
1002 struct winbindd_response *response);
1004 struct tevent_req *winbindd_remove_mapping_send(TALLOC_CTX *mem_ctx,
1005 struct tevent_context *ev,
1006 struct winbindd_cli_state *cli,
1007 struct winbindd_request *request);
1008 NTSTATUS winbindd_remove_mapping_recv(struct tevent_req *req,
1009 struct winbindd_response *response);
1011 struct tevent_req *winbindd_set_hwm_send(TALLOC_CTX *mem_ctx,
1012 struct tevent_context *ev,
1013 struct winbindd_cli_state *cli,
1014 struct winbindd_request *request);
1015 NTSTATUS winbindd_set_hwm_recv(struct tevent_req *req,
1016 struct winbindd_response *response);
1018 #endif /* _WINBINDD_PROTO_H_ */