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