s3-winbindd: add wbint_ChangeMachineAccount implementation.
[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 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);
141
142 /* The following definitions come from winbindd/winbindd_cache.c  */
143
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);
203
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);
229
230 /* The following definitions come from winbindd/winbindd_ccache_access.c  */
231
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);
235
236 /* The following definitions come from winbindd/winbindd_cm.c  */
237
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);
255
256 /* The following definitions come from winbindd/winbindd_cred_cache.c  */
257
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);
282
283 /* The following definitions come from winbindd/winbindd_creds.c  */
284
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);
310
311 /* The following definitions come from winbindd/winbindd_domain.c  */
312
313 void setup_domain_child(struct winbindd_domain *domain,
314                         struct winbindd_child *child);
315
316 /* The following definitions come from winbindd/winbindd_dual.c  */
317
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);
330
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);
384
385 /* The following definitions come from winbindd/winbindd_group.c  */
386
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);
405
406
407 /* The following definitions come from winbindd/winbindd_idmap.c  */
408
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);
451
452 /* The following definitions come from winbindd/winbindd_locator.c  */
453
454 void init_locator_child(void);
455 struct winbindd_child *locator_child(void);
456 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
457
458 /* The following definitions come from winbindd/winbindd_misc.c  */
459
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);
479
480 /* The following definitions come from winbindd/winbindd_ndr.c  */
481
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);
494
495 /* The following definitions come from winbindd/winbindd_pam.c  */
496
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);
520
521 /* The following definitions come from winbindd/winbindd_passdb.c  */
522
523
524 /* The following definitions come from winbindd/winbindd_reconnect.c  */
525
526
527 /* The following definitions come from winbindd/winbindd_sid.c  */
528
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);
545
546 /* The following definitions come from winbindd/winbindd_user.c  */
547
548 bool fillup_pw_field(const char *lp_template,
549                             const char *username,
550                             const char *domname,
551                             uid_t uid,
552                             gid_t gid,
553                             const char *in,
554                      fstring out);
555
556 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
557                                             struct winbindd_cli_state *state);
558 void winbindd_getpwnam(struct winbindd_cli_state *state);
559 void winbindd_getpwuid(struct winbindd_cli_state *state);
560 void winbindd_getpwsid(struct winbindd_cli_state *state);
561 void winbindd_setpwent(struct winbindd_cli_state *state);
562 void winbindd_endpwent(struct winbindd_cli_state *state);
563 void winbindd_getpwent(struct winbindd_cli_state *state);
564 void winbindd_list_users(struct winbindd_cli_state *state);
565
566 /* The following definitions come from winbindd/winbindd_util.c  */
567
568 struct winbindd_domain *domain_list(void);
569 void free_domain_list(void);
570 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
571                             struct timeval now, void *private_data);
572 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
573                                                    struct winbindd_cli_state *state);
574 bool init_domain_list(void);
575 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
576 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
577 struct winbindd_domain *find_domain_from_name(const char *domain_name);
578 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
579 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
580 struct winbindd_domain *find_our_domain(void);
581 struct winbindd_domain *find_root_domain(void);
582 struct winbindd_domain *find_builtin_domain(void);
583 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
584 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
585 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
586                                  enum winbindd_cmd orig_cmd,
587                                  struct winbindd_domain *domain, 
588                                  const char *domain_name,
589                                  const char *name, DOM_SID *sid, 
590                                  enum lsa_SidType *type);
591 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
592                                  struct winbindd_domain *domain,
593                                  DOM_SID *sid,
594                                  char **dom_name,
595                                  char **name,
596                                  enum lsa_SidType *type);
597 void free_getent_state(struct getent_state *state);
598 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
599 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
600                               char **domain, char **user);
601 void parse_add_domuser(void *buf, char *domuser, int *len);
602 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
603 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
604 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
605                                   const char *domain,
606                                   const char *user,
607                                   bool can_assume);
608 const char *get_winbind_pipe_dir(void) ;
609 char *get_winbind_priv_pipe_dir(void) ;
610 int open_winbindd_socket(void);
611 int open_winbindd_priv_socket(void);
612 struct winbindd_cli_state *winbindd_client_list(void);
613 void winbindd_add_client(struct winbindd_cli_state *cli);
614 void winbindd_remove_client(struct winbindd_cli_state *cli);
615 void winbindd_kill_all_clients(void);
616 int winbindd_num_clients(void);
617 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
618                                   TALLOC_CTX *mem_ctx,
619                                   const DOM_SID *user_sid,
620                                   uint32 *p_num_groups, DOM_SID **user_sids);
621
622 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
623                              struct winbindd_domain *domain,
624                              const char *name,
625                              char **normalized);
626 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
627                               char *name,
628                               char **normalized);
629
630 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
631                                    struct winbindd_domain *domain,
632                                    const char *name, char **alias);
633 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
634                                    struct winbindd_domain *domain,
635                                    const char *alias, char **name);
636
637 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
638 bool winbindd_internal_child(struct winbindd_child *child);
639 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
640 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
641 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
642 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
643 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
644
645 /* The following definitions come from winbindd/winbindd_wins.c  */
646
647 void winbindd_wins_byip(struct winbindd_cli_state *state);
648 void winbindd_wins_byname(struct winbindd_cli_state *state);
649
650 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
651                                 struct winbindd_cli_state *cli,
652                                 struct winbindd_request *request);
653 NTSTATUS wb_ping_recv(struct tevent_req *req,
654                       struct winbindd_response *resp);
655
656 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
657                                         struct winbindd_cli_state *state);
658
659 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
660                                             struct winbindd_domain *domain,
661                                             struct winbindd_child *child);
662 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
663                                           struct winbindd_cli_state *state);
664
665 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
666                                      struct tevent_context *ev,
667                                      const struct dom_sid *sid);
668 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
669                            enum lsa_SidType *type, const char **domain,
670                            const char **name);
671
672 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
673                                            struct tevent_context *ev,
674                                            struct winbindd_cli_state *cli,
675                                            struct winbindd_request *request);
676 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
677                                  struct winbindd_response *response);
678
679 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
680                                       struct tevent_context *ev,
681                                       const char *dom_name, const char *name,
682                                       uint32_t flags);
683 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
684                             enum lsa_SidType *type);
685
686 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
687                                             struct tevent_context *ev,
688                                             struct winbindd_cli_state *cli,
689                                             struct winbindd_request *request);
690 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
691                                   struct winbindd_response *response);
692
693 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
694                                    struct tevent_context *ev,
695                                    const struct dom_sid *sid);
696 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
697
698 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
699                                             struct tevent_context *ev,
700                                             struct winbindd_cli_state *cli,
701                                             struct winbindd_request *request);
702 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
703                                   struct winbindd_response *response);
704
705 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
706                                    struct tevent_context *ev,
707                                    const struct dom_sid *sid);
708 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
709
710 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
711                                             struct tevent_context *ev,
712                                             struct winbindd_cli_state *cli,
713                                             struct winbindd_request *request);
714 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
715                                   struct winbindd_response *response);
716
717 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
718                                    struct tevent_context *ev,
719                                    uid_t uid);
720 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
721
722 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
723                                             struct tevent_context *ev,
724                                             struct winbindd_cli_state *cli,
725                                             struct winbindd_request *request);
726 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
727                                   struct winbindd_response *response);
728
729 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
730                                    struct tevent_context *ev,
731                                    gid_t gid);
732 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
733
734 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
735                                             struct tevent_context *ev,
736                                             struct winbindd_cli_state *cli,
737                                             struct winbindd_request *request);
738 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
739                                   struct winbindd_response *response);
740
741 struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
742                                               struct tevent_context *ev,
743                                               struct winbindd_cli_state *cli,
744                                               struct winbindd_request *request);
745 NTSTATUS winbindd_allocate_uid_recv(struct tevent_req *req,
746                                     struct winbindd_response *response);
747
748 struct tevent_req *winbindd_allocate_gid_send(TALLOC_CTX *mem_ctx,
749                                               struct tevent_context *ev,
750                                               struct winbindd_cli_state *cli,
751                                               struct winbindd_request *request);
752 NTSTATUS winbindd_allocate_gid_recv(struct tevent_req *req,
753                                     struct winbindd_response *response);
754
755 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
756                                      struct tevent_context *ev,
757                                      const struct dom_sid *user_sid);
758 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
759                            struct wbint_userinfo **pinfo);
760
761 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
762                                     struct tevent_context *ev,
763                                     const struct dom_sid *user_sid,
764                                     struct winbindd_pw *pw);
765 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
766
767 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
768                                           struct tevent_context *ev,
769                                           struct winbindd_cli_state *cli,
770                                           struct winbindd_request *request);
771 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
772                                 struct winbindd_response *response);
773
774 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
775                                           struct tevent_context *ev,
776                                           struct winbindd_cli_state *cli,
777                                           struct winbindd_request *request);
778 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
779                                 struct winbindd_response *response);
780
781 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
782                                           struct tevent_context *ev,
783                                           struct winbindd_cli_state *cli,
784                                           struct winbindd_request *request);
785 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
786                                 struct winbindd_response *response);
787 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
788                                              struct tevent_context *ev,
789                                              struct winbindd_domain *domain,
790                                              int num_sids,
791                                              const struct dom_sid *sids);
792 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
793                                    uint32_t *num_aliases, uint32_t **aliases);
794 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
795                                                struct tevent_context *ev,
796                                                struct winbindd_cli_state *cli,
797                                                struct winbindd_request *request);
798 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
799                                      struct winbindd_response *response);
800 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
801                                             struct tevent_context *ev,
802                                             struct winbindd_domain *domain,
803                                             const struct dom_sid *sid);
804 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
805                                   int *num_sids, struct dom_sid **sids);
806
807 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
808                                                   struct tevent_context *ev,
809                                                   struct winbindd_cli_state *cli,
810                                                   struct winbindd_request *request);
811 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
812                                         struct winbindd_response *response);
813 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
814                                     struct tevent_context *ev,
815                                     const struct dom_sid *sid);
816 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
817                           int *num_sids, struct dom_sid **sids);
818 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
819                                            struct tevent_context *ev,
820                                            struct winbindd_cli_state *cli,
821                                            struct winbindd_request *request);
822 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
823                                  struct winbindd_response *response);
824
825 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
826                                   struct tevent_context *ev,
827                                   struct winbindd_domain *domain);
828 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
829
830 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
831                                    struct tevent_context *ev);
832 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
833                          int *num_domains, struct winbindd_domain ***domains,
834                          NTSTATUS **stati, uint32_t **seqnums);
835
836 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
837                                                struct tevent_context *ev,
838                                                struct winbindd_cli_state *cli,
839                                                struct winbindd_request *request);
840 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
841                                      struct winbindd_response *response);
842
843 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
844                                          struct tevent_context *ev,
845                                          const struct dom_sid *sid,
846                                          enum lsa_SidType type,
847                                          int max_depth);
848 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
849                                struct talloc_dict **members);
850
851 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
852                                     struct tevent_context *ev,
853                                     const struct dom_sid *group_sid,
854                                     int max_nesting);
855 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
856                           const char **domname, const char **name, gid_t *gid,
857                           struct talloc_dict **members);
858
859 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
860                                           struct tevent_context *ev,
861                                           struct winbindd_cli_state *cli,
862                                           struct winbindd_request *request);
863 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
864                                 struct winbindd_response *response);
865
866 struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
867                                           struct tevent_context *ev,
868                                           struct winbindd_cli_state *cli,
869                                           struct winbindd_request *request);
870 NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
871                                 struct winbindd_response *response);
872
873 struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx,
874                                              struct tevent_context *ev,
875                                              struct winbindd_cli_state *cli,
876                                              struct winbindd_request *request);
877 NTSTATUS winbindd_getusersids_recv(struct tevent_req *req,
878                                    struct winbindd_response *response);
879
880 struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx,
881                                             struct tevent_context *ev,
882                                             struct winbindd_cli_state *cli,
883                                             struct winbindd_request *request);
884 NTSTATUS winbindd_lookuprids_recv(struct tevent_req *req,
885                                   struct winbindd_response *response);
886
887 struct tevent_req *wb_query_user_list_send(TALLOC_CTX *mem_ctx,
888                                            struct tevent_context *ev,
889                                            struct winbindd_domain *domain);
890 NTSTATUS wb_query_user_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
891                                  int *num_users,
892                                  struct wbint_userinfo **users);
893
894 struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
895                                       struct tevent_context *ev,
896                                       struct wbint_userinfo *info,
897                                       struct winbindd_pw *pw);
898 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
899
900 struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
901                                       struct tevent_context *ev,
902                                       struct getpwent_state *gstate,
903                                       struct winbindd_pw *pw);
904 NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
905
906 struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
907                                           struct tevent_context *ev,
908                                           struct winbindd_cli_state *cli,
909                                           struct winbindd_request *request);
910 NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
911                                 struct winbindd_response *presp);
912
913 struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
914                                           struct tevent_context *ev,
915                                           struct winbindd_cli_state *cli,
916                                           struct winbindd_request *request);
917 NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
918                                 struct winbindd_response *response);
919
920 struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
921                                           struct tevent_context *ev,
922                                           struct winbindd_cli_state *cli,
923                                           struct winbindd_request *request);
924 NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
925                                 struct winbindd_response *response);
926
927 struct tevent_req *winbindd_dsgetdcname_send(TALLOC_CTX *mem_ctx,
928                                              struct tevent_context *ev,
929                                              struct winbindd_cli_state *cli,
930                                              struct winbindd_request *request);
931 NTSTATUS winbindd_dsgetdcname_recv(struct tevent_req *req,
932                                    struct winbindd_response *response);
933
934 struct tevent_req *wb_dsgetdcname_send(TALLOC_CTX *mem_ctx,
935                                        struct tevent_context *ev,
936                                        const char *domain_name,
937                                        const struct GUID *domain_guid,
938                                        const char *site_name,
939                                        uint32_t flags);
940 NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
941                              struct netr_DsRGetDCNameInfo **pdcinfo);
942
943 struct tevent_req *winbindd_getdcname_send(TALLOC_CTX *mem_ctx,
944                                            struct tevent_context *ev,
945                                            struct winbindd_cli_state *cli,
946                                            struct winbindd_request *request);
947 NTSTATUS winbindd_getdcname_recv(struct tevent_req *req,
948                                  struct winbindd_response *response);
949
950 struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx,
951                                       struct tevent_context *ev,
952                                       int max_nesting,
953                                       struct getgrent_state *gstate,
954                                       struct winbindd_gr *gr);
955 NTSTATUS wb_next_grent_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
956                             struct talloc_dict **members);
957
958 struct tevent_req *winbindd_setgrent_send(TALLOC_CTX *mem_ctx,
959                                           struct tevent_context *ev,
960                                           struct winbindd_cli_state *cli,
961                                           struct winbindd_request *request);
962 NTSTATUS winbindd_setgrent_recv(struct tevent_req *req,
963                                 struct winbindd_response *response);
964 struct tevent_req *winbindd_getgrent_send(TALLOC_CTX *mem_ctx,
965                                           struct tevent_context *ev,
966                                           struct winbindd_cli_state *cli,
967                                           struct winbindd_request *request);
968 NTSTATUS winbindd_getgrent_recv(struct tevent_req *req,
969                                 struct winbindd_response *response);
970 struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx,
971                                           struct tevent_context *ev,
972                                           struct winbindd_cli_state *cli,
973                                           struct winbindd_request *request);
974 NTSTATUS winbindd_endgrent_recv(struct tevent_req *req,
975                                 struct winbindd_response *response);
976
977 struct tevent_req *winbindd_list_users_send(TALLOC_CTX *mem_ctx,
978                                             struct tevent_context *ev,
979                                             struct winbindd_cli_state *cli,
980                                             struct winbindd_request *request);
981 NTSTATUS winbindd_list_users_recv(struct tevent_req *req,
982                                   struct winbindd_response *response);
983
984 struct tevent_req *winbindd_list_groups_send(TALLOC_CTX *mem_ctx,
985                                              struct tevent_context *ev,
986                                              struct winbindd_cli_state *cli,
987                                              struct winbindd_request *request);
988 NTSTATUS winbindd_list_groups_recv(struct tevent_req *req,
989                                    struct winbindd_response *response);
990
991 struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx,
992                                                     struct tevent_context *ev,
993                                                     struct winbindd_cli_state *cli,
994                                                     struct winbindd_request *request);
995 NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req,
996                                           struct winbindd_response *presp);
997
998 struct tevent_req *winbindd_change_machine_acct_send(TALLOC_CTX *mem_ctx,
999                                                      struct tevent_context *ev,
1000                                                      struct winbindd_cli_state *cli,
1001                                                      struct winbindd_request *request);
1002 NTSTATUS winbindd_change_machine_acct_recv(struct tevent_req *req,
1003                                            struct winbindd_response *presp);
1004
1005 struct tevent_req *winbindd_set_mapping_send(TALLOC_CTX *mem_ctx,
1006                                              struct tevent_context *ev,
1007                                              struct winbindd_cli_state *cli,
1008                                              struct winbindd_request *request);
1009 NTSTATUS winbindd_set_mapping_recv(struct tevent_req *req,
1010                                    struct winbindd_response *response);
1011
1012 struct tevent_req *winbindd_remove_mapping_send(TALLOC_CTX *mem_ctx,
1013                                                 struct tevent_context *ev,
1014                                                 struct winbindd_cli_state *cli,
1015                                                 struct winbindd_request *request);
1016 NTSTATUS winbindd_remove_mapping_recv(struct tevent_req *req,
1017                                       struct winbindd_response *response);
1018
1019 struct tevent_req *winbindd_set_hwm_send(TALLOC_CTX *mem_ctx,
1020                                          struct tevent_context *ev,
1021                                          struct winbindd_cli_state *cli,
1022                                          struct winbindd_request *request);
1023 NTSTATUS winbindd_set_hwm_recv(struct tevent_req *req,
1024                                struct winbindd_response *response);
1025
1026 #endif /*  _WINBINDD_PROTO_H_  */