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