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