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