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