s3: Remove unused winbindd_update_creds_by_sid
[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 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 struct ads_struct;
159 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain, 
160                               const struct dom_sid *user_sid,
161                               TALLOC_CTX *ctx,
162                               struct ads_struct *ads, LDAPMessage *msg,
163                               const char **homedir, const char **shell,
164                               const char **gecos, gid_t *p_gid);
165 bool wcache_store_seqnum(const char *domain_name, uint32_t seqnum,
166                          time_t last_seq_check);
167 bool wcache_fetch_ndr(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
168                       uint32_t opnum, const DATA_BLOB *req, DATA_BLOB *resp);
169 void wcache_store_ndr(struct winbindd_domain *domain, uint32_t opnum,
170                       const DATA_BLOB *req, const DATA_BLOB *resp);
171
172 /* The following definitions come from winbindd/winbindd_ccache_access.c  */
173
174 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
175 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
176                                                 struct winbindd_cli_state *state);
177 void winbindd_ccache_save(struct winbindd_cli_state *state);
178 enum winbindd_result winbindd_dual_ccache_save(
179         struct winbindd_domain *domain, struct winbindd_cli_state *state);
180
181 /* The following definitions come from winbindd/winbindd_cm.c  */
182
183 void set_domain_offline(struct winbindd_domain *domain);
184 void set_domain_online_request(struct winbindd_domain *domain);
185 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
186 void close_conns_after_fork(void);
187 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
188 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
189                         struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
190 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
191                         struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
192 NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
193                             TALLOC_CTX *mem_ctx,
194                             struct rpc_pipe_client **cli);
195 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
196                              struct rpc_pipe_client **cli);
197
198 /* The following definitions come from winbindd/winbindd_cred_cache.c  */
199
200 bool ccache_entry_exists(const char *username);
201 bool ccache_entry_identical(const char *username,
202                             uid_t uid,
203                             const char *ccname);
204 void ccache_remove_all_after_fork(void);
205 void ccache_regain_all_now(void);
206 NTSTATUS add_ccache_to_list(const char *princ_name,
207                             const char *ccname,
208                             const char *service,
209                             const char *username,
210                             const char *realm,
211                             uid_t uid,
212                             time_t create_time,
213                             time_t ticket_end,
214                             time_t renew_until,
215                             bool postponed_request);
216 NTSTATUS remove_ccache(const char *username);
217 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
218 NTSTATUS winbindd_add_memory_creds(const char *username,
219                                    uid_t uid,
220                                    const char *pass);
221 NTSTATUS winbindd_delete_memory_creds(const char *username);
222 NTSTATUS winbindd_replace_memory_creds(const char *username,
223                                        const char *pass);
224
225 /* The following definitions come from winbindd/winbindd_creds.c  */
226
227 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
228                             TALLOC_CTX *mem_ctx,
229                             const struct dom_sid *sid,
230                             struct netr_SamInfo3 **info3,
231                             const uint8 *cached_nt_pass[NT_HASH_LEN],
232                             const uint8 *cred_salt[NT_HASH_LEN]);
233 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
234                               TALLOC_CTX *mem_ctx, 
235                               const char *user, 
236                               const char *pass, 
237                               struct netr_SamInfo3 *info3,
238                               const struct dom_sid *user_sid);
239 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
240                                         TALLOC_CTX *mem_ctx,
241                                         const char *user,
242                                         const char *pass,
243                                         struct netr_SamInfo3 *info3);
244 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
245                                        TALLOC_CTX *mem_ctx,
246                                        const char *user,
247                                        const char *pass);
248
249 /* The following definitions come from winbindd/winbindd_domain.c  */
250
251 void setup_domain_child(struct winbindd_domain *domain);
252
253 /* The following definitions come from winbindd/winbindd_dual.c  */
254
255 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
256                                          struct tevent_context *ev,
257                                          struct winbindd_child *child,
258                                          struct winbindd_request *request);
259 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
260                           struct winbindd_response **presponse, int *err);
261 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
262                                           struct tevent_context *ev,
263                                           struct winbindd_domain *domain,
264                                           struct winbindd_request *request);
265 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
266                            struct winbindd_response **presponse, int *err);
267
268 void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
269                  const struct winbindd_child_dispatch_table *table,
270                  const char *logprefix,
271                  const char *logname);
272 void winbind_child_died(pid_t pid);
273 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
274 void winbind_msg_debug(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_offline(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_online(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_onlinestatus(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_event_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 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
300                                   void *private_data,
301                                   uint32_t msg_type,
302                                   struct server_id server_id,
303                                   DATA_BLOB *data);
304 bool winbindd_reinit_after_fork(const char *logfilename);
305 struct winbindd_domain *wb_child_domain(void);
306
307 /* The following definitions come from winbindd/winbindd_group.c  */
308
309 void winbindd_getgrnam(struct winbindd_cli_state *state);
310 void winbindd_getgrgid(struct winbindd_cli_state *state);
311 void winbindd_setgrent(struct winbindd_cli_state *state);
312 void winbindd_endgrent(struct winbindd_cli_state *state);
313 void winbindd_getgrent(struct winbindd_cli_state *state);
314 void winbindd_list_groups(struct winbindd_cli_state *state);
315 void winbindd_getgroups(struct winbindd_cli_state *state);
316 void winbindd_getusersids(struct winbindd_cli_state *state);
317 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
318 void winbindd_getsidaliases(struct winbindd_cli_state *state);
319 bool fill_grent(TALLOC_CTX *mem_ctx, struct winbindd_gr *gr,
320                 const char *dom_name, const char *gr_name, gid_t unix_gid);
321 NTSTATUS winbindd_print_groupmembers(struct talloc_dict *members,
322                                      TALLOC_CTX *mem_ctx,
323                                      int *num_members, char **result);
324
325
326 /* The following definitions come from winbindd/winbindd_idmap.c  */
327
328 void init_idmap_child(void);
329 struct winbindd_child *idmap_child(void);
330
331 /* The following definitions come from winbindd/winbindd_locator.c  */
332
333 void init_locator_child(void);
334 struct winbindd_child *locator_child(void);
335
336 /* The following definitions come from winbindd/winbindd_misc.c  */
337
338 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
339 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
340                                                         struct winbindd_cli_state *state);
341 void winbindd_show_sequence(struct winbindd_cli_state *state);
342 void winbindd_domain_info(struct winbindd_cli_state *state);
343 void winbindd_ping(struct winbindd_cli_state *state);
344 void winbindd_info(struct winbindd_cli_state *state);
345 void winbindd_interface_version(struct winbindd_cli_state *state);
346 void winbindd_domain_name(struct winbindd_cli_state *state);
347 void winbindd_netbios_name(struct winbindd_cli_state *state);
348 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
349
350 /* The following definitions come from winbindd/winbindd_ndr.c  */
351
352 void ndr_print_winbindd_child(struct ndr_print *ndr,
353                               const char *name,
354                               const struct winbindd_child *r);
355 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
356                                 const char *name,
357                                 const struct winbindd_cm_conn *r);
358 void ndr_print_winbindd_methods(struct ndr_print *ndr,
359                                 const char *name,
360                                 const struct winbindd_methods *r);
361 void ndr_print_winbindd_domain(struct ndr_print *ndr,
362                                const char *name,
363                                const struct winbindd_domain *r);
364
365 /* The following definitions come from winbindd/winbindd_pam.c  */
366
367 bool check_request_flags(uint32_t flags);
368 uid_t get_uid_from_request(struct winbindd_request *request);
369 struct winbindd_domain *find_auth_domain(uint8_t flags,
370                                          const char *domain_name);
371 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
372                                             struct winbindd_cli_state *state) ;
373 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
374                                                  struct winbindd_cli_state *state) ;
375 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
376                                                  struct winbindd_cli_state *state);
377 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
378                                               struct winbindd_cli_state *state) ;
379 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
380
381 /* The following definitions come from winbindd/winbindd_util.c  */
382
383 struct winbindd_domain *domain_list(void);
384 bool domain_is_forest_root(const struct winbindd_domain *domain);
385 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
386                             struct timeval now, void *private_data);
387 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
388                                                    struct winbindd_cli_state *state);
389 bool init_domain_list(void);
390 void check_domain_trusted( const char *name, const struct dom_sid *user_sid );
391 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
392 struct winbindd_domain *find_domain_from_name(const char *domain_name);
393 struct winbindd_domain *find_domain_from_sid_noinit(const struct dom_sid *sid);
394 struct winbindd_domain *find_domain_from_sid(const struct dom_sid *sid);
395 struct winbindd_domain *find_our_domain(void);
396 struct winbindd_domain *find_root_domain(void);
397 struct winbindd_domain *find_builtin_domain(void);
398 struct winbindd_domain *find_lookup_domain_from_sid(const struct dom_sid *sid);
399 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
400 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
401 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
402                               char **domain, char **user);
403 void parse_add_domuser(void *buf, char *domuser, int *len);
404 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
405 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
406 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
407                                   const char *domain,
408                                   const char *user,
409                                   bool can_assume);
410 struct winbindd_cli_state *winbindd_client_list(void);
411 void winbindd_add_client(struct winbindd_cli_state *cli);
412 void winbindd_remove_client(struct winbindd_cli_state *cli);
413 int winbindd_num_clients(void);
414 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
415                                   TALLOC_CTX *mem_ctx,
416                                   const struct dom_sid *user_sid,
417                                   uint32 *p_num_groups, struct dom_sid **user_sids);
418
419 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
420                              struct winbindd_domain *domain,
421                              const char *name,
422                              char **normalized);
423 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
424                               char *name,
425                               char **normalized);
426
427 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
428                                    struct winbindd_domain *domain,
429                                    const char *name, char **alias);
430 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
431                                    struct winbindd_domain *domain,
432                                    const char *alias, char **name);
433
434 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
435 bool winbindd_internal_child(struct winbindd_child *child);
436 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
437 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
438 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
439 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
440 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
441 bool is_domain_offline(const struct winbindd_domain *domain);
442
443 /* The following definitions come from winbindd/winbindd_wins.c  */
444
445 void winbindd_wins_byip(struct winbindd_cli_state *state);
446 void winbindd_wins_byname(struct winbindd_cli_state *state);
447
448 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
449                                 struct winbindd_cli_state *cli,
450                                 struct winbindd_request *request);
451 NTSTATUS wb_ping_recv(struct tevent_req *req,
452                       struct winbindd_response *resp);
453
454 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
455                                         struct winbindd_cli_state *state);
456
457 struct dcerpc_binding_handle *wbint_binding_handle(TALLOC_CTX *mem_ctx,
458                                                 struct winbindd_domain *domain,
459                                                 struct winbindd_child *child);
460 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
461                                           struct winbindd_cli_state *state);
462
463 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
464                                      struct tevent_context *ev,
465                                      const struct dom_sid *sid);
466 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
467                            enum lsa_SidType *type, const char **domain,
468                            const char **name);
469
470 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
471                                            struct tevent_context *ev,
472                                            struct winbindd_cli_state *cli,
473                                            struct winbindd_request *request);
474 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
475                                  struct winbindd_response *response);
476
477 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
478                                       struct tevent_context *ev,
479                                       const char *dom_name, const char *name,
480                                       uint32_t flags);
481 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
482                             enum lsa_SidType *type);
483
484 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
485                                             struct tevent_context *ev,
486                                             struct winbindd_cli_state *cli,
487                                             struct winbindd_request *request);
488 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
489                                   struct winbindd_response *response);
490
491 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
492                                    struct tevent_context *ev,
493                                    const struct dom_sid *sid);
494 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
495
496 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
497                                             struct tevent_context *ev,
498                                             struct winbindd_cli_state *cli,
499                                             struct winbindd_request *request);
500 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
501                                   struct winbindd_response *response);
502
503 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
504                                    struct tevent_context *ev,
505                                    const struct dom_sid *sid);
506 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
507
508 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
509                                             struct tevent_context *ev,
510                                             struct winbindd_cli_state *cli,
511                                             struct winbindd_request *request);
512 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
513                                   struct winbindd_response *response);
514
515 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
516                                    struct tevent_context *ev,
517                                    uid_t uid);
518 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
519
520 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
521                                             struct tevent_context *ev,
522                                             struct winbindd_cli_state *cli,
523                                             struct winbindd_request *request);
524 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
525                                   struct winbindd_response *response);
526
527 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
528                                    struct tevent_context *ev,
529                                    gid_t gid);
530 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
531
532 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
533                                             struct tevent_context *ev,
534                                             struct winbindd_cli_state *cli,
535                                             struct winbindd_request *request);
536 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
537                                   struct winbindd_response *response);
538
539 struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
540                                               struct tevent_context *ev,
541                                               struct winbindd_cli_state *cli,
542                                               struct winbindd_request *request);
543 NTSTATUS winbindd_allocate_uid_recv(struct tevent_req *req,
544                                     struct winbindd_response *response);
545
546 struct tevent_req *winbindd_allocate_gid_send(TALLOC_CTX *mem_ctx,
547                                               struct tevent_context *ev,
548                                               struct winbindd_cli_state *cli,
549                                               struct winbindd_request *request);
550 NTSTATUS winbindd_allocate_gid_recv(struct tevent_req *req,
551                                     struct winbindd_response *response);
552
553 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
554                                      struct tevent_context *ev,
555                                      const struct dom_sid *user_sid);
556 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
557                            struct wbint_userinfo **pinfo);
558
559 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
560                                     struct tevent_context *ev,
561                                     const struct dom_sid *user_sid,
562                                     struct winbindd_pw *pw);
563 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
564
565 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
566                                           struct tevent_context *ev,
567                                           struct winbindd_cli_state *cli,
568                                           struct winbindd_request *request);
569 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
570                                 struct winbindd_response *response);
571
572 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
573                                           struct tevent_context *ev,
574                                           struct winbindd_cli_state *cli,
575                                           struct winbindd_request *request);
576 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
577                                 struct winbindd_response *response);
578
579 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
580                                           struct tevent_context *ev,
581                                           struct winbindd_cli_state *cli,
582                                           struct winbindd_request *request);
583 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
584                                 struct winbindd_response *response);
585 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
586                                              struct tevent_context *ev,
587                                              struct winbindd_domain *domain,
588                                              int num_sids,
589                                              const struct dom_sid *sids);
590 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
591                                    uint32_t *num_aliases, uint32_t **aliases);
592 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
593                                                struct tevent_context *ev,
594                                                struct winbindd_cli_state *cli,
595                                                struct winbindd_request *request);
596 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
597                                      struct winbindd_response *response);
598 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
599                                             struct tevent_context *ev,
600                                             struct winbindd_domain *domain,
601                                             const struct dom_sid *sid);
602 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
603                                   int *num_sids, struct dom_sid **sids);
604
605 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
606                                                   struct tevent_context *ev,
607                                                   struct winbindd_cli_state *cli,
608                                                   struct winbindd_request *request);
609 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
610                                         struct winbindd_response *response);
611 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
612                                     struct tevent_context *ev,
613                                     const struct dom_sid *sid);
614 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
615                           int *num_sids, struct dom_sid **sids);
616 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
617                                            struct tevent_context *ev,
618                                            struct winbindd_cli_state *cli,
619                                            struct winbindd_request *request);
620 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
621                                  struct winbindd_response *response);
622
623 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
624                                   struct tevent_context *ev,
625                                   struct winbindd_domain *domain);
626 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
627
628 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
629                                    struct tevent_context *ev);
630 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
631                          int *num_domains, struct winbindd_domain ***domains,
632                          NTSTATUS **stati, uint32_t **seqnums);
633
634 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
635                                                struct tevent_context *ev,
636                                                struct winbindd_cli_state *cli,
637                                                struct winbindd_request *request);
638 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
639                                      struct winbindd_response *response);
640
641 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
642                                          struct tevent_context *ev,
643                                          const struct dom_sid *sid,
644                                          enum lsa_SidType type,
645                                          int max_depth);
646 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
647                                struct talloc_dict **members);
648
649 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
650                                     struct tevent_context *ev,
651                                     const struct dom_sid *group_sid,
652                                     int max_nesting);
653 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
654                           const char **domname, const char **name, gid_t *gid,
655                           struct talloc_dict **members);
656
657 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
658                                           struct tevent_context *ev,
659                                           struct winbindd_cli_state *cli,
660                                           struct winbindd_request *request);
661 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
662                                 struct winbindd_response *response);
663
664 struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
665                                           struct tevent_context *ev,
666                                           struct winbindd_cli_state *cli,
667                                           struct winbindd_request *request);
668 NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
669                                 struct winbindd_response *response);
670
671 struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx,
672                                              struct tevent_context *ev,
673                                              struct winbindd_cli_state *cli,
674                                              struct winbindd_request *request);
675 NTSTATUS winbindd_getusersids_recv(struct tevent_req *req,
676                                    struct winbindd_response *response);
677
678 struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx,
679                                             struct tevent_context *ev,
680                                             struct winbindd_cli_state *cli,
681                                             struct winbindd_request *request);
682 NTSTATUS winbindd_lookuprids_recv(struct tevent_req *req,
683                                   struct winbindd_response *response);
684
685 struct tevent_req *wb_query_user_list_send(TALLOC_CTX *mem_ctx,
686                                            struct tevent_context *ev,
687                                            struct winbindd_domain *domain);
688 NTSTATUS wb_query_user_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
689                                  int *num_users,
690                                  struct wbint_userinfo **users);
691
692 struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
693                                       struct tevent_context *ev,
694                                       struct wbint_userinfo *info,
695                                       struct winbindd_pw *pw);
696 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
697
698 struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
699                                       struct tevent_context *ev,
700                                       struct getpwent_state *gstate,
701                                       struct winbindd_pw *pw);
702 NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
703
704 struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
705                                           struct tevent_context *ev,
706                                           struct winbindd_cli_state *cli,
707                                           struct winbindd_request *request);
708 NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
709                                 struct winbindd_response *presp);
710
711 struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
712                                           struct tevent_context *ev,
713                                           struct winbindd_cli_state *cli,
714                                           struct winbindd_request *request);
715 NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
716                                 struct winbindd_response *response);
717
718 struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
719                                           struct tevent_context *ev,
720                                           struct winbindd_cli_state *cli,
721                                           struct winbindd_request *request);
722 NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
723                                 struct winbindd_response *response);
724
725 struct tevent_req *winbindd_dsgetdcname_send(TALLOC_CTX *mem_ctx,
726                                              struct tevent_context *ev,
727                                              struct winbindd_cli_state *cli,
728                                              struct winbindd_request *request);
729 NTSTATUS winbindd_dsgetdcname_recv(struct tevent_req *req,
730                                    struct winbindd_response *response);
731
732 struct tevent_req *wb_dsgetdcname_send(TALLOC_CTX *mem_ctx,
733                                        struct tevent_context *ev,
734                                        const char *domain_name,
735                                        const struct GUID *domain_guid,
736                                        const char *site_name,
737                                        uint32_t flags);
738 NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
739                              struct netr_DsRGetDCNameInfo **pdcinfo);
740
741 struct tevent_req *winbindd_getdcname_send(TALLOC_CTX *mem_ctx,
742                                            struct tevent_context *ev,
743                                            struct winbindd_cli_state *cli,
744                                            struct winbindd_request *request);
745 NTSTATUS winbindd_getdcname_recv(struct tevent_req *req,
746                                  struct winbindd_response *response);
747
748 struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx,
749                                       struct tevent_context *ev,
750                                       int max_nesting,
751                                       struct getgrent_state *gstate,
752                                       struct winbindd_gr *gr);
753 NTSTATUS wb_next_grent_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
754                             struct talloc_dict **members);
755
756 struct tevent_req *winbindd_setgrent_send(TALLOC_CTX *mem_ctx,
757                                           struct tevent_context *ev,
758                                           struct winbindd_cli_state *cli,
759                                           struct winbindd_request *request);
760 NTSTATUS winbindd_setgrent_recv(struct tevent_req *req,
761                                 struct winbindd_response *response);
762 struct tevent_req *winbindd_getgrent_send(TALLOC_CTX *mem_ctx,
763                                           struct tevent_context *ev,
764                                           struct winbindd_cli_state *cli,
765                                           struct winbindd_request *request);
766 NTSTATUS winbindd_getgrent_recv(struct tevent_req *req,
767                                 struct winbindd_response *response);
768 struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx,
769                                           struct tevent_context *ev,
770                                           struct winbindd_cli_state *cli,
771                                           struct winbindd_request *request);
772 NTSTATUS winbindd_endgrent_recv(struct tevent_req *req,
773                                 struct winbindd_response *response);
774
775 struct tevent_req *winbindd_list_users_send(TALLOC_CTX *mem_ctx,
776                                             struct tevent_context *ev,
777                                             struct winbindd_cli_state *cli,
778                                             struct winbindd_request *request);
779 NTSTATUS winbindd_list_users_recv(struct tevent_req *req,
780                                   struct winbindd_response *response);
781
782 struct tevent_req *winbindd_list_groups_send(TALLOC_CTX *mem_ctx,
783                                              struct tevent_context *ev,
784                                              struct winbindd_cli_state *cli,
785                                              struct winbindd_request *request);
786 NTSTATUS winbindd_list_groups_recv(struct tevent_req *req,
787                                    struct winbindd_response *response);
788
789 struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx,
790                                                     struct tevent_context *ev,
791                                                     struct winbindd_cli_state *cli,
792                                                     struct winbindd_request *request);
793 NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req,
794                                           struct winbindd_response *presp);
795
796 struct tevent_req *winbindd_ping_dc_send(TALLOC_CTX *mem_ctx,
797                                          struct tevent_context *ev,
798                                          struct winbindd_cli_state *cli,
799                                          struct winbindd_request *request);
800 NTSTATUS winbindd_ping_dc_recv(struct tevent_req *req,
801                                struct winbindd_response *presp);
802
803 struct tevent_req *winbindd_change_machine_acct_send(TALLOC_CTX *mem_ctx,
804                                                      struct tevent_context *ev,
805                                                      struct winbindd_cli_state *cli,
806                                                      struct winbindd_request *request);
807 NTSTATUS winbindd_change_machine_acct_recv(struct tevent_req *req,
808                                            struct winbindd_response *presp);
809
810 struct tevent_req *winbindd_pam_auth_send(TALLOC_CTX *mem_ctx,
811                                           struct tevent_context *ev,
812                                           struct winbindd_cli_state *cli,
813                                           struct winbindd_request *request);
814 NTSTATUS winbindd_pam_auth_recv(struct tevent_req *req,
815                                 struct winbindd_response *response);
816
817 struct tevent_req *winbindd_pam_auth_crap_send(
818         TALLOC_CTX *mem_ctx,
819         struct tevent_context *ev,
820         struct winbindd_cli_state *cli,
821         struct winbindd_request *request);
822 NTSTATUS winbindd_pam_auth_crap_recv(struct tevent_req *req,
823                                      struct winbindd_response *response);
824
825 struct tevent_req *winbindd_pam_chauthtok_send(
826         TALLOC_CTX *mem_ctx,
827         struct tevent_context *ev,
828         struct winbindd_cli_state *cli,
829         struct winbindd_request *request);
830 NTSTATUS winbindd_pam_chauthtok_recv(struct tevent_req *req,
831                                      struct winbindd_response *response);
832
833 struct tevent_req *winbindd_pam_logoff_send(TALLOC_CTX *mem_ctx,
834                                             struct tevent_context *ev,
835                                             struct winbindd_cli_state *cli,
836                                             struct winbindd_request *request);
837 NTSTATUS winbindd_pam_logoff_recv(struct tevent_req *req,
838                                   struct winbindd_response *response);
839
840 struct tevent_req *winbindd_pam_chng_pswd_auth_crap_send(
841         TALLOC_CTX *mem_ctx,
842         struct tevent_context *ev,
843         struct winbindd_cli_state *cli,
844         struct winbindd_request *request);
845 NTSTATUS winbindd_pam_chng_pswd_auth_crap_recv(
846         struct tevent_req *req,
847         struct winbindd_response *response);
848
849 /* The following definitions come from winbindd/winbindd_samr.c  */
850
851 NTSTATUS open_internal_samr_conn(TALLOC_CTX *mem_ctx,
852                                  struct winbindd_domain *domain,
853                                  struct rpc_pipe_client **samr_pipe,
854                                  struct policy_handle *samr_domain_hnd);
855
856 #endif /*  _WINBINDD_PROTO_H_  */