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