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