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