s3: async_domain_request is no longer used
[samba.git] / source3 / winbindd / winbindd_proto.h
1 /*
2  * Unix SMB/CIFS implementation.
3  * collected prototypes header
4  *
5  * frozen from "make proto" in May 2008
6  *
7  * Copyright (C) Michael Adam 2008
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #ifndef _WINBINDD_PROTO_H_
24 #define _WINBINDD_PROTO_H_
25
26
27 /* The following definitions come from auth/token_util.c  */
28
29 bool nt_token_check_sid ( const DOM_SID *sid, const NT_USER_TOKEN *token );
30 bool nt_token_check_domain_rid( NT_USER_TOKEN *token, uint32 rid );
31 NT_USER_TOKEN *get_root_nt_token( void );
32 NTSTATUS add_aliases(const DOM_SID *domain_sid,
33                      struct nt_user_token *token);
34 struct nt_user_token *create_local_nt_token(TALLOC_CTX *mem_ctx,
35                                             const DOM_SID *user_sid,
36                                             bool is_guest,
37                                             int num_groupsids,
38                                             const DOM_SID *groupsids);
39 void debug_nt_user_token(int dbg_class, int dbg_lev, NT_USER_TOKEN *token);
40 void debug_unix_user_token(int dbg_class, int dbg_lev, uid_t uid, gid_t gid,
41                            int n_groups, gid_t *groups);
42
43 /* The following definitions come from winbindd/winbindd.c  */
44
45 struct event_context *winbind_event_context(void);
46 struct messaging_context *winbind_messaging_context(void);
47 void request_error(struct winbindd_cli_state *state);
48 void request_ok(struct winbindd_cli_state *state);
49 bool winbindd_setup_sig_term_handler(bool parent);
50 bool winbindd_setup_sig_hup_handler(const char *lfile);
51 bool winbindd_use_idmap_cache(void);
52 bool winbindd_use_cache(void);
53 int main(int argc, char **argv, char **envp);
54
55 /* The following definitions come from winbindd/winbindd_ads.c  */
56
57 /* The following definitions come from winbindd/winbindd_rpc.c  */
58
59 NTSTATUS winbindd_lookup_sids(TALLOC_CTX *mem_ctx,
60                               struct winbindd_domain *domain,
61                               uint32_t num_sids,
62                               const struct dom_sid *sids,
63                               char ***domains,
64                               char ***names,
65                               enum lsa_SidType **types);
66 NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
67                                struct winbindd_domain *domain,
68                                uint32_t num_names,
69                                const char **names,
70                                const char ***domains,
71                                struct dom_sid **sids,
72                                enum lsa_SidType **types);
73
74 /* The following definitions come from winbindd/winbindd_async.c  */
75
76 bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
77                    size_t num_sids, char **result, ssize_t *len);
78 bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
79                    DOM_SID **sids, size_t *num_sids);
80
81 /* The following definitions come from winbindd/winbindd_cache.c  */
82
83 void winbindd_check_cache_size(time_t t);
84 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
85 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const DOM_SID *sid);
86 NTSTATUS wcache_get_creds(struct winbindd_domain *domain, 
87                           TALLOC_CTX *mem_ctx, 
88                           const DOM_SID *sid,
89                           const uint8 **cached_nt_pass,
90                           const uint8 **cached_salt);
91 NTSTATUS wcache_save_creds(struct winbindd_domain *domain, 
92                            TALLOC_CTX *mem_ctx, 
93                            const DOM_SID *sid, 
94                            const uint8 nt_pass[NT_HASH_LEN]);
95 void wcache_invalidate_samlogon(struct winbindd_domain *domain, 
96                                 struct netr_SamInfo3 *info3);
97 bool wcache_invalidate_cache(void);
98 bool wcache_invalidate_cache_noinit(void);
99 bool init_wcache(void);
100 bool initialize_winbindd_cache(void);
101 void close_winbindd_cache(void);
102 NTSTATUS wcache_sid_to_name(struct winbindd_domain *domain,
103                             const struct dom_sid *sid,
104                             TALLOC_CTX *mem_ctx,
105                             char **domain_name,
106                             char **name,
107                             enum lsa_SidType *type);
108 NTSTATUS wcache_lookup_groupmem(struct winbindd_domain *domain,
109                                 TALLOC_CTX *mem_ctx,
110                                 const struct dom_sid *group_sid,
111                                 uint32_t *num_names,
112                                 struct dom_sid **sid_mem, char ***names,
113                                 uint32_t **name_types);
114 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
115                        char **domain_name, char **name,
116                        enum lsa_SidType *type);
117 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
118                         const char *domain_name,
119                         const char *name,
120                         DOM_SID *sid,
121                         enum lsa_SidType *type);
122 void cache_name2sid(struct winbindd_domain *domain, 
123                     const char *domain_name, const char *name,
124                     enum lsa_SidType type, const DOM_SID *sid);
125 NTSTATUS wcache_name_to_sid(struct winbindd_domain *domain,
126                             const char *domain_name,
127                             const char *name,
128                             struct dom_sid *sid,
129                             enum lsa_SidType *type);
130 NTSTATUS wcache_query_user(struct winbindd_domain *domain,
131                            TALLOC_CTX *mem_ctx,
132                            const struct dom_sid *user_sid,
133                            struct wbint_userinfo *info);
134 NTSTATUS wcache_lookup_useraliases(struct winbindd_domain *domain,
135                                    TALLOC_CTX *mem_ctx,
136                                    uint32 num_sids, const DOM_SID *sids,
137                                    uint32 *pnum_aliases, uint32 **paliases);
138 NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain,
139                                   TALLOC_CTX *mem_ctx,
140                                   const struct dom_sid *user_sid,
141                                   uint32_t *pnum_sids,
142                                   struct dom_sid **psids);
143
144 void wcache_flush_cache(void);
145 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
146 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
147 bool set_global_winbindd_state_offline(void);
148 void set_global_winbindd_state_online(void);
149 bool get_global_winbindd_state_offline(void);
150 int winbindd_validate_cache(void);
151 int winbindd_validate_cache_nobackup(void);
152 bool winbindd_cache_validate_and_initialize(void);
153 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
154 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
155 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
156 void wcache_tdc_clear( void );
157 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain, 
158                               const DOM_SID *user_sid,
159                               TALLOC_CTX *ctx,
160                               ADS_STRUCT *ads, LDAPMessage *msg,
161                               const char **homedir, const char **shell,
162                               const char **gecos, gid_t *p_gid);
163 bool wcache_store_seqnum(const char *domain_name, uint32_t seqnum,
164                          time_t last_seq_check);
165 bool wcache_fetch_ndr(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
166                       uint32_t opnum, const DATA_BLOB *req, DATA_BLOB *resp);
167 void wcache_store_ndr(struct winbindd_domain *domain, uint32_t opnum,
168                       const DATA_BLOB *req, const DATA_BLOB *resp);
169
170 /* The following definitions come from winbindd/winbindd_ccache_access.c  */
171
172 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
173 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
174                                                 struct winbindd_cli_state *state);
175 void winbindd_ccache_save(struct winbindd_cli_state *state);
176 enum winbindd_result winbindd_dual_ccache_save(
177         struct winbindd_domain *domain, struct winbindd_cli_state *state);
178
179 /* The following definitions come from winbindd/winbindd_cm.c  */
180
181 void set_domain_offline(struct winbindd_domain *domain);
182 void set_domain_online_request(struct winbindd_domain *domain);
183 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
184                                         const char *server,
185                                         NTSTATUS result);
186 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
187 void close_conns_after_fork(void);
188 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
189 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
190                         struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
191 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
192                         struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
193 NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
194                             TALLOC_CTX *mem_ctx,
195                             struct rpc_pipe_client **cli);
196 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
197                              struct rpc_pipe_client **cli);
198
199 /* The following definitions come from winbindd/winbindd_cred_cache.c  */
200
201 bool ccache_entry_exists(const char *username);
202 bool ccache_entry_identical(const char *username,
203                             uid_t uid,
204                             const char *ccname);
205 void ccache_remove_all_after_fork(void);
206 void ccache_regain_all_now(void);
207 NTSTATUS add_ccache_to_list(const char *princ_name,
208                             const char *ccname,
209                             const char *service,
210                             const char *username,
211                             const char *realm,
212                             uid_t uid,
213                             time_t create_time,
214                             time_t ticket_end,
215                             time_t renew_until,
216                             bool postponed_request);
217 NTSTATUS remove_ccache(const char *username);
218 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
219 NTSTATUS winbindd_add_memory_creds(const char *username,
220                                    uid_t uid,
221                                    const char *pass);
222 NTSTATUS winbindd_delete_memory_creds(const char *username);
223 NTSTATUS winbindd_replace_memory_creds(const char *username,
224                                        const char *pass);
225
226 /* The following definitions come from winbindd/winbindd_creds.c  */
227
228 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
229                             TALLOC_CTX *mem_ctx,
230                             const DOM_SID *sid,
231                             struct netr_SamInfo3 **info3,
232                             const uint8 *cached_nt_pass[NT_HASH_LEN],
233                             const uint8 *cred_salt[NT_HASH_LEN]);
234 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
235                               TALLOC_CTX *mem_ctx, 
236                               const char *user, 
237                               const char *pass, 
238                               struct netr_SamInfo3 *info3,
239                               const DOM_SID *user_sid);
240 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
241                                         TALLOC_CTX *mem_ctx,
242                                         const char *user,
243                                         const char *pass,
244                                         struct netr_SamInfo3 *info3);
245 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
246                                       TALLOC_CTX *mem_ctx,
247                                       const DOM_SID *sid,
248                                       const char *pass);
249 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
250                                        TALLOC_CTX *mem_ctx,
251                                        const char *user,
252                                        const char *pass);
253
254 /* The following definitions come from winbindd/winbindd_domain.c  */
255
256 void setup_domain_child(struct winbindd_domain *domain);
257
258 /* The following definitions come from winbindd/winbindd_dual.c  */
259
260 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
261                                          struct tevent_context *ev,
262                                          struct winbindd_child *child,
263                                          struct winbindd_request *request);
264 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
265                           struct winbindd_response **presponse, int *err);
266 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
267                                           struct tevent_context *ev,
268                                           struct winbindd_domain *domain,
269                                           struct winbindd_request *request);
270 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
271                            struct winbindd_response **presponse, int *err);
272
273 void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
274                  const struct winbindd_child_dispatch_table *table,
275                  const char *logprefix,
276                  const char *logname);
277 void winbind_child_died(pid_t pid);
278 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
279 void winbind_msg_debug(struct messaging_context *msg_ctx,
280                          void *private_data,
281                          uint32_t msg_type,
282                          struct server_id server_id,
283                          DATA_BLOB *data);
284 void winbind_msg_offline(struct messaging_context *msg_ctx,
285                          void *private_data,
286                          uint32_t msg_type,
287                          struct server_id server_id,
288                          DATA_BLOB *data);
289 void winbind_msg_online(struct messaging_context *msg_ctx,
290                         void *private_data,
291                         uint32_t msg_type,
292                         struct server_id server_id,
293                         DATA_BLOB *data);
294 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
295                               void *private_data,
296                               uint32_t msg_type,
297                               struct server_id server_id,
298                               DATA_BLOB *data);
299 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
300                                  void *private_data,
301                                  uint32_t msg_type,
302                                  struct server_id server_id,
303                                  DATA_BLOB *data);
304 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
305                                   void *private_data,
306                                   uint32_t msg_type,
307                                   struct server_id server_id,
308                                   DATA_BLOB *data);
309 bool winbindd_reinit_after_fork(const char *logfilename);
310 struct winbindd_domain *wb_child_domain(void);
311
312 /* The following definitions come from winbindd/winbindd_group.c  */
313
314 void winbindd_getgrnam(struct winbindd_cli_state *state);
315 void winbindd_getgrgid(struct winbindd_cli_state *state);
316 void winbindd_setgrent(struct winbindd_cli_state *state);
317 void winbindd_endgrent(struct winbindd_cli_state *state);
318 void winbindd_getgrent(struct winbindd_cli_state *state);
319 void winbindd_list_groups(struct winbindd_cli_state *state);
320 void winbindd_getgroups(struct winbindd_cli_state *state);
321 void winbindd_getusersids(struct winbindd_cli_state *state);
322 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
323 void winbindd_getsidaliases(struct winbindd_cli_state *state);
324 bool fill_grent(TALLOC_CTX *mem_ctx, struct winbindd_gr *gr,
325                 const char *dom_name, const char *gr_name, gid_t unix_gid);
326 NTSTATUS winbindd_print_groupmembers(struct talloc_dict *members,
327                                      TALLOC_CTX *mem_ctx,
328                                      int *num_members, char **result);
329
330
331 /* The following definitions come from winbindd/winbindd_idmap.c  */
332
333 void init_idmap_child(void);
334 struct winbindd_child *idmap_child(void);
335
336 /* The following definitions come from winbindd/winbindd_locator.c  */
337
338 void init_locator_child(void);
339 struct winbindd_child *locator_child(void);
340
341 /* The following definitions come from winbindd/winbindd_misc.c  */
342
343 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
344 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
345                                                         struct winbindd_cli_state *state);
346 void winbindd_show_sequence(struct winbindd_cli_state *state);
347 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
348                                                  struct winbindd_cli_state *state);
349 void winbindd_domain_info(struct winbindd_cli_state *state);
350 void winbindd_ping(struct winbindd_cli_state *state);
351 void winbindd_info(struct winbindd_cli_state *state);
352 void winbindd_interface_version(struct winbindd_cli_state *state);
353 void winbindd_domain_name(struct winbindd_cli_state *state);
354 void winbindd_netbios_name(struct winbindd_cli_state *state);
355 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
356
357 /* The following definitions come from winbindd/winbindd_ndr.c  */
358
359 void ndr_print_winbindd_child(struct ndr_print *ndr,
360                               const char *name,
361                               const struct winbindd_child *r);
362 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
363                                 const char *name,
364                                 const struct winbindd_cm_conn *r);
365 void ndr_print_winbindd_methods(struct ndr_print *ndr,
366                                 const char *name,
367                                 const struct winbindd_methods *r);
368 void ndr_print_winbindd_domain(struct ndr_print *ndr,
369                                const char *name,
370                                const struct winbindd_domain *r);
371
372 /* The following definitions come from winbindd/winbindd_pam.c  */
373
374 bool check_request_flags(uint32_t flags);
375 uid_t get_uid_from_request(struct winbindd_request *request);
376 struct winbindd_domain *find_auth_domain(uint8_t flags,
377                                          const char *domain_name);
378 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
379                                             struct winbindd_cli_state *state) ;
380 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
381                                                  struct winbindd_cli_state *state) ;
382 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
383                                                  struct winbindd_cli_state *state);
384 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
385                                               struct winbindd_cli_state *state) ;
386 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
387
388 /* The following definitions come from winbindd/winbindd_util.c  */
389
390 struct winbindd_domain *domain_list(void);
391 bool domain_is_forest_root(const struct winbindd_domain *domain);
392 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
393                             struct timeval now, void *private_data);
394 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
395                                                    struct winbindd_cli_state *state);
396 bool init_domain_list(void);
397 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
398 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
399 struct winbindd_domain *find_domain_from_name(const char *domain_name);
400 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
401 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
402 struct winbindd_domain *find_our_domain(void);
403 struct winbindd_domain *find_root_domain(void);
404 struct winbindd_domain *find_builtin_domain(void);
405 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
406 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
407 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
408 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
409                               char **domain, char **user);
410 void parse_add_domuser(void *buf, char *domuser, int *len);
411 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
412 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
413 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
414                                   const char *domain,
415                                   const char *user,
416                                   bool can_assume);
417 const char *get_winbind_pipe_dir(void) ;
418 char *get_winbind_priv_pipe_dir(void) ;
419 int open_winbindd_socket(void);
420 int open_winbindd_priv_socket(void);
421 struct winbindd_cli_state *winbindd_client_list(void);
422 void winbindd_add_client(struct winbindd_cli_state *cli);
423 void winbindd_remove_client(struct winbindd_cli_state *cli);
424 void winbindd_kill_all_clients(void);
425 int winbindd_num_clients(void);
426 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
427                                   TALLOC_CTX *mem_ctx,
428                                   const DOM_SID *user_sid,
429                                   uint32 *p_num_groups, DOM_SID **user_sids);
430
431 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
432                              struct winbindd_domain *domain,
433                              const char *name,
434                              char **normalized);
435 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
436                               char *name,
437                               char **normalized);
438
439 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
440                                    struct winbindd_domain *domain,
441                                    const char *name, char **alias);
442 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
443                                    struct winbindd_domain *domain,
444                                    const char *alias, char **name);
445
446 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
447 bool winbindd_internal_child(struct winbindd_child *child);
448 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
449 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
450 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
451 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
452 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
453 bool is_domain_offline(const struct winbindd_domain *domain);
454
455 /* The following definitions come from winbindd/winbindd_wins.c  */
456
457 void winbindd_wins_byip(struct winbindd_cli_state *state);
458 void winbindd_wins_byname(struct winbindd_cli_state *state);
459
460 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
461                                 struct winbindd_cli_state *cli,
462                                 struct winbindd_request *request);
463 NTSTATUS wb_ping_recv(struct tevent_req *req,
464                       struct winbindd_response *resp);
465
466 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
467                                         struct winbindd_cli_state *state);
468
469 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
470                                             struct winbindd_domain *domain,
471                                             struct winbindd_child *child);
472 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
473                                           struct winbindd_cli_state *state);
474
475 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
476                                      struct tevent_context *ev,
477                                      const struct dom_sid *sid);
478 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
479                            enum lsa_SidType *type, const char **domain,
480                            const char **name);
481
482 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
483                                            struct tevent_context *ev,
484                                            struct winbindd_cli_state *cli,
485                                            struct winbindd_request *request);
486 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
487                                  struct winbindd_response *response);
488
489 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
490                                       struct tevent_context *ev,
491                                       const char *dom_name, const char *name,
492                                       uint32_t flags);
493 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
494                             enum lsa_SidType *type);
495
496 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
497                                             struct tevent_context *ev,
498                                             struct winbindd_cli_state *cli,
499                                             struct winbindd_request *request);
500 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
501                                   struct winbindd_response *response);
502
503 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
504                                    struct tevent_context *ev,
505                                    const struct dom_sid *sid);
506 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
507
508 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
509                                             struct tevent_context *ev,
510                                             struct winbindd_cli_state *cli,
511                                             struct winbindd_request *request);
512 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
513                                   struct winbindd_response *response);
514
515 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
516                                    struct tevent_context *ev,
517                                    const struct dom_sid *sid);
518 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
519
520 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
521                                             struct tevent_context *ev,
522                                             struct winbindd_cli_state *cli,
523                                             struct winbindd_request *request);
524 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
525                                   struct winbindd_response *response);
526
527 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
528                                    struct tevent_context *ev,
529                                    uid_t uid);
530 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
531
532 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
533                                             struct tevent_context *ev,
534                                             struct winbindd_cli_state *cli,
535                                             struct winbindd_request *request);
536 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
537                                   struct winbindd_response *response);
538
539 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
540                                    struct tevent_context *ev,
541                                    gid_t gid);
542 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
543
544 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
545                                             struct tevent_context *ev,
546                                             struct winbindd_cli_state *cli,
547                                             struct winbindd_request *request);
548 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
549                                   struct winbindd_response *response);
550
551 struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
552                                               struct tevent_context *ev,
553                                               struct winbindd_cli_state *cli,
554                                               struct winbindd_request *request);
555 NTSTATUS winbindd_allocate_uid_recv(struct tevent_req *req,
556                                     struct winbindd_response *response);
557
558 struct tevent_req *winbindd_allocate_gid_send(TALLOC_CTX *mem_ctx,
559                                               struct tevent_context *ev,
560                                               struct winbindd_cli_state *cli,
561                                               struct winbindd_request *request);
562 NTSTATUS winbindd_allocate_gid_recv(struct tevent_req *req,
563                                     struct winbindd_response *response);
564
565 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
566                                      struct tevent_context *ev,
567                                      const struct dom_sid *user_sid);
568 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
569                            struct wbint_userinfo **pinfo);
570
571 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
572                                     struct tevent_context *ev,
573                                     const struct dom_sid *user_sid,
574                                     struct winbindd_pw *pw);
575 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
576
577 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
578                                           struct tevent_context *ev,
579                                           struct winbindd_cli_state *cli,
580                                           struct winbindd_request *request);
581 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
582                                 struct winbindd_response *response);
583
584 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
585                                           struct tevent_context *ev,
586                                           struct winbindd_cli_state *cli,
587                                           struct winbindd_request *request);
588 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
589                                 struct winbindd_response *response);
590
591 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
592                                           struct tevent_context *ev,
593                                           struct winbindd_cli_state *cli,
594                                           struct winbindd_request *request);
595 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
596                                 struct winbindd_response *response);
597 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
598                                              struct tevent_context *ev,
599                                              struct winbindd_domain *domain,
600                                              int num_sids,
601                                              const struct dom_sid *sids);
602 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
603                                    uint32_t *num_aliases, uint32_t **aliases);
604 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
605                                                struct tevent_context *ev,
606                                                struct winbindd_cli_state *cli,
607                                                struct winbindd_request *request);
608 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
609                                      struct winbindd_response *response);
610 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
611                                             struct tevent_context *ev,
612                                             struct winbindd_domain *domain,
613                                             const struct dom_sid *sid);
614 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
615                                   int *num_sids, struct dom_sid **sids);
616
617 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
618                                                   struct tevent_context *ev,
619                                                   struct winbindd_cli_state *cli,
620                                                   struct winbindd_request *request);
621 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
622                                         struct winbindd_response *response);
623 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
624                                     struct tevent_context *ev,
625                                     const struct dom_sid *sid);
626 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
627                           int *num_sids, struct dom_sid **sids);
628 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
629                                            struct tevent_context *ev,
630                                            struct winbindd_cli_state *cli,
631                                            struct winbindd_request *request);
632 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
633                                  struct winbindd_response *response);
634
635 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
636                                   struct tevent_context *ev,
637                                   struct winbindd_domain *domain);
638 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
639
640 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
641                                    struct tevent_context *ev);
642 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
643                          int *num_domains, struct winbindd_domain ***domains,
644                          NTSTATUS **stati, uint32_t **seqnums);
645
646 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
647                                                struct tevent_context *ev,
648                                                struct winbindd_cli_state *cli,
649                                                struct winbindd_request *request);
650 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
651                                      struct winbindd_response *response);
652
653 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
654                                          struct tevent_context *ev,
655                                          const struct dom_sid *sid,
656                                          enum lsa_SidType type,
657                                          int max_depth);
658 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
659                                struct talloc_dict **members);
660
661 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
662                                     struct tevent_context *ev,
663                                     const struct dom_sid *group_sid,
664                                     int max_nesting);
665 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
666                           const char **domname, const char **name, gid_t *gid,
667                           struct talloc_dict **members);
668
669 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
670                                           struct tevent_context *ev,
671                                           struct winbindd_cli_state *cli,
672                                           struct winbindd_request *request);
673 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
674                                 struct winbindd_response *response);
675
676 struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
677                                           struct tevent_context *ev,
678                                           struct winbindd_cli_state *cli,
679                                           struct winbindd_request *request);
680 NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
681                                 struct winbindd_response *response);
682
683 struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx,
684                                              struct tevent_context *ev,
685                                              struct winbindd_cli_state *cli,
686                                              struct winbindd_request *request);
687 NTSTATUS winbindd_getusersids_recv(struct tevent_req *req,
688                                    struct winbindd_response *response);
689
690 struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx,
691                                             struct tevent_context *ev,
692                                             struct winbindd_cli_state *cli,
693                                             struct winbindd_request *request);
694 NTSTATUS winbindd_lookuprids_recv(struct tevent_req *req,
695                                   struct winbindd_response *response);
696
697 struct tevent_req *wb_query_user_list_send(TALLOC_CTX *mem_ctx,
698                                            struct tevent_context *ev,
699                                            struct winbindd_domain *domain);
700 NTSTATUS wb_query_user_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
701                                  int *num_users,
702                                  struct wbint_userinfo **users);
703
704 struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
705                                       struct tevent_context *ev,
706                                       struct wbint_userinfo *info,
707                                       struct winbindd_pw *pw);
708 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
709
710 struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
711                                       struct tevent_context *ev,
712                                       struct getpwent_state *gstate,
713                                       struct winbindd_pw *pw);
714 NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
715
716 struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
717                                           struct tevent_context *ev,
718                                           struct winbindd_cli_state *cli,
719                                           struct winbindd_request *request);
720 NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
721                                 struct winbindd_response *presp);
722
723 struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
724                                           struct tevent_context *ev,
725                                           struct winbindd_cli_state *cli,
726                                           struct winbindd_request *request);
727 NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
728                                 struct winbindd_response *response);
729
730 struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
731                                           struct tevent_context *ev,
732                                           struct winbindd_cli_state *cli,
733                                           struct winbindd_request *request);
734 NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
735                                 struct winbindd_response *response);
736
737 struct tevent_req *winbindd_dsgetdcname_send(TALLOC_CTX *mem_ctx,
738                                              struct tevent_context *ev,
739                                              struct winbindd_cli_state *cli,
740                                              struct winbindd_request *request);
741 NTSTATUS winbindd_dsgetdcname_recv(struct tevent_req *req,
742                                    struct winbindd_response *response);
743
744 struct tevent_req *wb_dsgetdcname_send(TALLOC_CTX *mem_ctx,
745                                        struct tevent_context *ev,
746                                        const char *domain_name,
747                                        const struct GUID *domain_guid,
748                                        const char *site_name,
749                                        uint32_t flags);
750 NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
751                              struct netr_DsRGetDCNameInfo **pdcinfo);
752
753 struct tevent_req *winbindd_getdcname_send(TALLOC_CTX *mem_ctx,
754                                            struct tevent_context *ev,
755                                            struct winbindd_cli_state *cli,
756                                            struct winbindd_request *request);
757 NTSTATUS winbindd_getdcname_recv(struct tevent_req *req,
758                                  struct winbindd_response *response);
759
760 struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx,
761                                       struct tevent_context *ev,
762                                       int max_nesting,
763                                       struct getgrent_state *gstate,
764                                       struct winbindd_gr *gr);
765 NTSTATUS wb_next_grent_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
766                             struct talloc_dict **members);
767
768 struct tevent_req *winbindd_setgrent_send(TALLOC_CTX *mem_ctx,
769                                           struct tevent_context *ev,
770                                           struct winbindd_cli_state *cli,
771                                           struct winbindd_request *request);
772 NTSTATUS winbindd_setgrent_recv(struct tevent_req *req,
773                                 struct winbindd_response *response);
774 struct tevent_req *winbindd_getgrent_send(TALLOC_CTX *mem_ctx,
775                                           struct tevent_context *ev,
776                                           struct winbindd_cli_state *cli,
777                                           struct winbindd_request *request);
778 NTSTATUS winbindd_getgrent_recv(struct tevent_req *req,
779                                 struct winbindd_response *response);
780 struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx,
781                                           struct tevent_context *ev,
782                                           struct winbindd_cli_state *cli,
783                                           struct winbindd_request *request);
784 NTSTATUS winbindd_endgrent_recv(struct tevent_req *req,
785                                 struct winbindd_response *response);
786
787 struct tevent_req *winbindd_list_users_send(TALLOC_CTX *mem_ctx,
788                                             struct tevent_context *ev,
789                                             struct winbindd_cli_state *cli,
790                                             struct winbindd_request *request);
791 NTSTATUS winbindd_list_users_recv(struct tevent_req *req,
792                                   struct winbindd_response *response);
793
794 struct tevent_req *winbindd_list_groups_send(TALLOC_CTX *mem_ctx,
795                                              struct tevent_context *ev,
796                                              struct winbindd_cli_state *cli,
797                                              struct winbindd_request *request);
798 NTSTATUS winbindd_list_groups_recv(struct tevent_req *req,
799                                    struct winbindd_response *response);
800
801 struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx,
802                                                     struct tevent_context *ev,
803                                                     struct winbindd_cli_state *cli,
804                                                     struct winbindd_request *request);
805 NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req,
806                                           struct winbindd_response *presp);
807
808 struct tevent_req *winbindd_ping_dc_send(TALLOC_CTX *mem_ctx,
809                                          struct tevent_context *ev,
810                                          struct winbindd_cli_state *cli,
811                                          struct winbindd_request *request);
812 NTSTATUS winbindd_ping_dc_recv(struct tevent_req *req,
813                                struct winbindd_response *presp);
814
815 struct tevent_req *winbindd_change_machine_acct_send(TALLOC_CTX *mem_ctx,
816                                                      struct tevent_context *ev,
817                                                      struct winbindd_cli_state *cli,
818                                                      struct winbindd_request *request);
819 NTSTATUS winbindd_change_machine_acct_recv(struct tevent_req *req,
820                                            struct winbindd_response *presp);
821
822 struct tevent_req *winbindd_set_mapping_send(TALLOC_CTX *mem_ctx,
823                                              struct tevent_context *ev,
824                                              struct winbindd_cli_state *cli,
825                                              struct winbindd_request *request);
826 NTSTATUS winbindd_set_mapping_recv(struct tevent_req *req,
827                                    struct winbindd_response *response);
828
829 struct tevent_req *winbindd_remove_mapping_send(TALLOC_CTX *mem_ctx,
830                                                 struct tevent_context *ev,
831                                                 struct winbindd_cli_state *cli,
832                                                 struct winbindd_request *request);
833 NTSTATUS winbindd_remove_mapping_recv(struct tevent_req *req,
834                                       struct winbindd_response *response);
835
836 struct tevent_req *winbindd_set_hwm_send(TALLOC_CTX *mem_ctx,
837                                          struct tevent_context *ev,
838                                          struct winbindd_cli_state *cli,
839                                          struct winbindd_request *request);
840 NTSTATUS winbindd_set_hwm_recv(struct tevent_req *req,
841                                struct winbindd_response *response);
842
843 struct tevent_req *winbindd_pam_auth_send(TALLOC_CTX *mem_ctx,
844                                           struct tevent_context *ev,
845                                           struct winbindd_cli_state *cli,
846                                           struct winbindd_request *request);
847 NTSTATUS winbindd_pam_auth_recv(struct tevent_req *req,
848                                 struct winbindd_response *response);
849
850 struct tevent_req *winbindd_pam_auth_crap_send(
851         TALLOC_CTX *mem_ctx,
852         struct tevent_context *ev,
853         struct winbindd_cli_state *cli,
854         struct winbindd_request *request);
855 NTSTATUS winbindd_pam_auth_crap_recv(struct tevent_req *req,
856                                      struct winbindd_response *response);
857
858 struct tevent_req *winbindd_pam_chauthtok_send(
859         TALLOC_CTX *mem_ctx,
860         struct tevent_context *ev,
861         struct winbindd_cli_state *cli,
862         struct winbindd_request *request);
863 NTSTATUS winbindd_pam_chauthtok_recv(struct tevent_req *req,
864                                      struct winbindd_response *response);
865
866 struct tevent_req *winbindd_pam_logoff_send(TALLOC_CTX *mem_ctx,
867                                             struct tevent_context *ev,
868                                             struct winbindd_cli_state *cli,
869                                             struct winbindd_request *request);
870 NTSTATUS winbindd_pam_logoff_recv(struct tevent_req *req,
871                                   struct winbindd_response *response);
872
873 struct tevent_req *winbindd_pam_chng_pswd_auth_crap_send(
874         TALLOC_CTX *mem_ctx,
875         struct tevent_context *ev,
876         struct winbindd_cli_state *cli,
877         struct winbindd_request *request);
878 NTSTATUS winbindd_pam_chng_pswd_auth_crap_recv(
879         struct tevent_req *req,
880         struct winbindd_response *response);
881
882 #endif /*  _WINBINDD_PROTO_H_  */