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