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