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