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