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