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