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