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