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