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