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