s3:winbind: Add const to normalize_name_map
[amitay/samba.git] / source3 / winbindd / winbindd_proto.h
1 /*
2  * Unix SMB/CIFS implementation.
3  * collected prototypes header
4  *
5  * frozen from "make proto" in May 2008
6  *
7  * Copyright (C) Michael Adam 2008
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #ifndef _WINBINDD_PROTO_H_
24 #define _WINBINDD_PROTO_H_
25
26
27 /* The following definitions come from auth/token_util.c  */
28
29 bool nt_token_check_sid ( const DOM_SID *sid, const NT_USER_TOKEN *token );
30 bool nt_token_check_domain_rid( NT_USER_TOKEN *token, uint32 rid );
31 NT_USER_TOKEN *get_root_nt_token( void );
32 NTSTATUS add_aliases(const DOM_SID *domain_sid,
33                      struct nt_user_token *token);
34 struct nt_user_token *create_local_nt_token(TALLOC_CTX *mem_ctx,
35                                             const DOM_SID *user_sid,
36                                             bool is_guest,
37                                             int num_groupsids,
38                                             const DOM_SID *groupsids);
39 void debug_nt_user_token(int dbg_class, int dbg_lev, NT_USER_TOKEN *token);
40 void debug_unix_user_token(int dbg_class, int dbg_lev, uid_t uid, gid_t gid,
41                            int n_groups, gid_t *groups);
42
43 /* The following definitions come from 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 winbindd_gettoken_async(TALLOC_CTX *mem_ctx, const DOM_SID *user_sid,
118                              void (*cont)(void *private_data, bool success,
119                                           DOM_SID *sids, size_t num_sids),
120                              void *private_data);
121 void query_user_async(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
122                       const DOM_SID *sid,
123                       void (*cont)(void *private_data, bool success,
124                                    const char *acct_name,
125                                    const char *full_name,
126                                    const char *homedir,
127                                    const char *shell,
128                                    gid_t gid,
129                                    uint32 group_rid),
130                       void *private_data);
131
132 /* The following definitions come from winbindd/winbindd_cache.c  */
133
134 void winbindd_check_cache_size(time_t t);
135 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
136 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const DOM_SID *sid);
137 NTSTATUS wcache_get_creds(struct winbindd_domain *domain, 
138                           TALLOC_CTX *mem_ctx, 
139                           const DOM_SID *sid,
140                           const uint8 **cached_nt_pass,
141                           const uint8 **cached_salt);
142 NTSTATUS wcache_save_creds(struct winbindd_domain *domain, 
143                            TALLOC_CTX *mem_ctx, 
144                            const DOM_SID *sid, 
145                            const uint8 nt_pass[NT_HASH_LEN]);
146 void wcache_invalidate_samlogon(struct winbindd_domain *domain, 
147                                 struct netr_SamInfo3 *info3);
148 bool wcache_invalidate_cache(void);
149 bool init_wcache(void);
150 bool initialize_winbindd_cache(void);
151 void close_winbindd_cache(void);
152 NTSTATUS wcache_sid_to_name(struct winbindd_domain *domain,
153                             const struct dom_sid *sid,
154                             TALLOC_CTX *mem_ctx,
155                             char **domain_name,
156                             char **name,
157                             enum lsa_SidType *type);
158 NTSTATUS wcache_lookup_groupmem(struct winbindd_domain *domain,
159                                 TALLOC_CTX *mem_ctx,
160                                 const struct dom_sid *group_sid,
161                                 uint32_t *num_names,
162                                 struct dom_sid **sid_mem, char ***names,
163                                 uint32_t **name_types);
164 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
165                        char **domain_name, char **name,
166                        enum lsa_SidType *type);
167 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
168                         const char *domain_name,
169                         const char *name,
170                         DOM_SID *sid,
171                         enum lsa_SidType *type);
172 void cache_name2sid(struct winbindd_domain *domain, 
173                     const char *domain_name, const char *name,
174                     enum lsa_SidType type, const DOM_SID *sid);
175 NTSTATUS wcache_name_to_sid(struct winbindd_domain *domain,
176                             const char *domain_name,
177                             const char *name,
178                             struct dom_sid *sid,
179                             enum lsa_SidType *type);
180 NTSTATUS wcache_query_user(struct winbindd_domain *domain,
181                            TALLOC_CTX *mem_ctx,
182                            const struct dom_sid *user_sid,
183                            struct wbint_userinfo *info);
184 NTSTATUS wcache_lookup_useraliases(struct winbindd_domain *domain,
185                                    TALLOC_CTX *mem_ctx,
186                                    uint32 num_sids, const DOM_SID *sids,
187                                    uint32 *pnum_aliases, uint32 **paliases);
188 NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain,
189                                   TALLOC_CTX *mem_ctx,
190                                   const struct dom_sid *user_sid,
191                                   uint32_t *pnum_sids,
192                                   struct dom_sid **psids);
193
194 void wcache_flush_cache(void);
195 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
196 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
197 bool set_global_winbindd_state_offline(void);
198 void set_global_winbindd_state_online(void);
199 bool get_global_winbindd_state_offline(void);
200 int winbindd_validate_cache(void);
201 int winbindd_validate_cache_nobackup(void);
202 bool winbindd_cache_validate_and_initialize(void);
203 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
204 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
205 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
206 void wcache_tdc_clear( void );
207 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain, 
208                               const DOM_SID *user_sid,
209                               TALLOC_CTX *ctx,
210                               ADS_STRUCT *ads, LDAPMessage *msg,
211                               const char **homedir, const char **shell,
212                               const char **gecos, gid_t *p_gid);
213
214 /* The following definitions come from winbindd/winbindd_ccache_access.c  */
215
216 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
217 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
218                                                 struct winbindd_cli_state *state);
219
220 /* The following definitions come from winbindd/winbindd_cm.c  */
221
222 void set_domain_offline(struct winbindd_domain *domain);
223 void set_domain_online_request(struct winbindd_domain *domain);
224 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
225                                         const char *server,
226                                         NTSTATUS result);
227 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
228 void close_conns_after_fork(void);
229 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
230 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
231                         struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
232 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
233                         struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
234 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
235                              struct rpc_pipe_client **cli);
236
237 /* The following definitions come from winbindd/winbindd_cred_cache.c  */
238
239 bool ccache_entry_exists(const char *username);
240 bool ccache_entry_identical(const char *username,
241                             uid_t uid,
242                             const char *ccname);
243 void ccache_remove_all_after_fork(void);
244 void ccache_regain_all_now(void);
245 NTSTATUS add_ccache_to_list(const char *princ_name,
246                             const char *ccname,
247                             const char *service,
248                             const char *username,
249                             const char *realm,
250                             uid_t uid,
251                             time_t create_time,
252                             time_t ticket_end,
253                             time_t renew_until,
254                             bool postponed_request);
255 NTSTATUS remove_ccache(const char *username);
256 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
257 NTSTATUS winbindd_add_memory_creds(const char *username,
258                                    uid_t uid,
259                                    const char *pass);
260 NTSTATUS winbindd_delete_memory_creds(const char *username);
261 NTSTATUS winbindd_replace_memory_creds(const char *username,
262                                        const char *pass);
263
264 /* The following definitions come from winbindd/winbindd_creds.c  */
265
266 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
267                             TALLOC_CTX *mem_ctx,
268                             const DOM_SID *sid,
269                             struct netr_SamInfo3 **info3,
270                             const uint8 *cached_nt_pass[NT_HASH_LEN],
271                             const uint8 *cred_salt[NT_HASH_LEN]);
272 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
273                               TALLOC_CTX *mem_ctx, 
274                               const char *user, 
275                               const char *pass, 
276                               struct netr_SamInfo3 *info3,
277                               const DOM_SID *user_sid);
278 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
279                                         TALLOC_CTX *mem_ctx,
280                                         const char *user,
281                                         const char *pass,
282                                         struct netr_SamInfo3 *info3);
283 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
284                                       TALLOC_CTX *mem_ctx,
285                                       const DOM_SID *sid,
286                                       const char *pass);
287 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
288                                        TALLOC_CTX *mem_ctx,
289                                        const char *user,
290                                        const char *pass);
291
292 /* The following definitions come from winbindd/winbindd_domain.c  */
293
294 void setup_domain_child(struct winbindd_domain *domain,
295                         struct winbindd_child *child);
296
297 /* The following definitions come from winbindd/winbindd_dual.c  */
298
299 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
300                                          struct tevent_context *ev,
301                                          struct winbindd_child *child,
302                                          struct winbindd_request *request);
303 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
304                           struct winbindd_response **presponse, int *err);
305 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
306                                           struct tevent_context *ev,
307                                           struct winbindd_domain *domain,
308                                           struct winbindd_request *request);
309 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
310                            struct winbindd_response **presponse, int *err);
311
312 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
313                    struct winbindd_request *request,
314                    struct winbindd_response *response,
315                    void (*continuation)(void *private_data, bool success),
316                    void *private_data);
317 void async_domain_request(TALLOC_CTX *mem_ctx,
318                           struct winbindd_domain *domain,
319                           struct winbindd_request *request,
320                           struct winbindd_response *response,
321                           void (*continuation)(void *private_data_data, bool success),
322                           void *private_data_data);
323 void sendto_child(struct winbindd_cli_state *state,
324                   struct winbindd_child *child);
325 void sendto_domain(struct winbindd_cli_state *state,
326                    struct winbindd_domain *domain);
327 void setup_child(struct winbindd_child *child,
328                  const struct winbindd_child_dispatch_table *table,
329                  const char *logprefix,
330                  const char *logname);
331 void winbind_child_died(pid_t pid);
332 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
333 void winbind_msg_debug(struct messaging_context *msg_ctx,
334                          void *private_data,
335                          uint32_t msg_type,
336                          struct server_id server_id,
337                          DATA_BLOB *data);
338 void winbind_msg_offline(struct messaging_context *msg_ctx,
339                          void *private_data,
340                          uint32_t msg_type,
341                          struct server_id server_id,
342                          DATA_BLOB *data);
343 void winbind_msg_online(struct messaging_context *msg_ctx,
344                         void *private_data,
345                         uint32_t msg_type,
346                         struct server_id server_id,
347                         DATA_BLOB *data);
348 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
349                               void *private_data,
350                               uint32_t msg_type,
351                               struct server_id server_id,
352                               DATA_BLOB *data);
353 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
354                                  void *private_data,
355                                  uint32_t msg_type,
356                                  struct server_id server_id,
357                                  DATA_BLOB *data);
358 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
359                                   void *private_data,
360                                   uint32_t msg_type,
361                                   struct server_id server_id,
362                                   DATA_BLOB *data);
363 bool winbindd_reinit_after_fork(const char *logfilename);
364 struct winbindd_domain *wb_child_domain(void);
365
366 /* The following definitions come from winbindd/winbindd_group.c  */
367
368 void winbindd_getgrnam(struct winbindd_cli_state *state);
369 void winbindd_getgrgid(struct winbindd_cli_state *state);
370 void winbindd_setgrent(struct winbindd_cli_state *state);
371 void winbindd_endgrent(struct winbindd_cli_state *state);
372 void winbindd_getgrent(struct winbindd_cli_state *state);
373 void winbindd_list_groups(struct winbindd_cli_state *state);
374 void winbindd_getgroups(struct winbindd_cli_state *state);
375 void winbindd_getusersids(struct winbindd_cli_state *state);
376 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
377 void winbindd_getsidaliases(struct winbindd_cli_state *state);
378 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
379                                                     struct winbindd_cli_state *state);
380 bool get_sam_group_entries(struct getent_state *ent);
381
382
383 /* The following definitions come from winbindd/winbindd_idmap.c  */
384
385 void init_idmap_child(void);
386 struct winbindd_child *idmap_child(void);
387 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
388                              void (*cont)(void *private_data, bool success),
389                              void *private_data);
390 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
391                                             struct winbindd_cli_state *state);
392 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
393                              void (*cont)(void *private_data, bool success),
394                              void *private_data);
395 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
396                                             struct winbindd_cli_state *state);
397 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
398                              void (*cont)(void *private_data, bool success),
399                              void *private_data);
400 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
401                                             struct winbindd_cli_state *state);
402 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
403                          void (*cont)(void *private_data, bool success, void *data, int len),
404                          void *private_data);
405 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
406                                            struct winbindd_cli_state *state);
407 void winbindd_sid2uid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
408                          void (*cont)(void *private_data, bool success, uid_t uid),
409                          void *private_data);
410 enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
411                                            struct winbindd_cli_state *state);
412 void winbindd_sid2gid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
413                          void (*cont)(void *private_data, bool success, gid_t gid),
414                          void *private_data);
415 enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
416                                            struct winbindd_cli_state *state);
417 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
418                             void (*cont)(void *private_data, bool success, const char *sid),
419                             void *private_data);
420 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
421                                            struct winbindd_cli_state *state);
422 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
423                             void (*cont)(void *private_data, bool success, const char *sid),
424                             void *private_data);
425 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
426                                            struct winbindd_cli_state *state);
427
428 /* The following definitions come from winbindd/winbindd_locator.c  */
429
430 void init_locator_child(void);
431 struct winbindd_child *locator_child(void);
432 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
433
434 /* The following definitions come from winbindd/winbindd_misc.c  */
435
436 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
437 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
438                                                       struct winbindd_cli_state *state);
439 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
440 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
441 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
442                                                         struct winbindd_cli_state *state);
443 void winbindd_getdcname(struct winbindd_cli_state *state);
444 enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
445                                              struct winbindd_cli_state *state);
446 void winbindd_show_sequence(struct winbindd_cli_state *state);
447 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
448                                                  struct winbindd_cli_state *state);
449 void winbindd_domain_info(struct winbindd_cli_state *state);
450 void winbindd_ping(struct winbindd_cli_state *state);
451 void winbindd_info(struct winbindd_cli_state *state);
452 void winbindd_interface_version(struct winbindd_cli_state *state);
453 void winbindd_domain_name(struct winbindd_cli_state *state);
454 void winbindd_netbios_name(struct winbindd_cli_state *state);
455 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
456
457 /* The following definitions come from winbindd/winbindd_ndr.c  */
458
459 void ndr_print_winbindd_child(struct ndr_print *ndr,
460                               const char *name,
461                               const struct winbindd_child *r);
462 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
463                                 const char *name,
464                                 const struct winbindd_cm_conn *r);
465 void ndr_print_winbindd_methods(struct ndr_print *ndr,
466                                 const char *name,
467                                 const struct winbindd_methods *r);
468 void ndr_print_winbindd_domain(struct ndr_print *ndr,
469                                const char *name,
470                                const struct winbindd_domain *r);
471
472 /* The following definitions come from winbindd/winbindd_pam.c  */
473
474 struct winbindd_domain *find_auth_domain(struct winbindd_cli_state *state, 
475                                         const char *domain_name);
476 void winbindd_pam_auth(struct winbindd_cli_state *state);
477 NTSTATUS winbindd_dual_pam_auth_cached(struct winbindd_domain *domain,
478                                        struct winbindd_cli_state *state,
479                                        struct netr_SamInfo3 **info3);
480 NTSTATUS winbindd_dual_pam_auth_kerberos(struct winbindd_domain *domain,
481                                          struct winbindd_cli_state *state, 
482                                          struct netr_SamInfo3 **info3);
483 NTSTATUS winbindd_dual_pam_auth_samlogon(struct winbindd_domain *domain,
484                                          struct winbindd_cli_state *state,
485                                          struct netr_SamInfo3 **info3);
486 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
487                                             struct winbindd_cli_state *state) ;
488 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
489 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
490                                                  struct winbindd_cli_state *state) ;
491 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
492 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
493                                                  struct winbindd_cli_state *state);
494 void winbindd_pam_logoff(struct winbindd_cli_state *state);
495 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
496                                               struct winbindd_cli_state *state) ;
497 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
498 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
499
500 /* The following definitions come from winbindd/winbindd_passdb.c  */
501
502
503 /* The following definitions come from winbindd/winbindd_reconnect.c  */
504
505
506 /* The following definitions come from winbindd/winbindd_sid.c  */
507
508 void winbindd_lookupsid(struct winbindd_cli_state *state);
509 void winbindd_lookupname(struct winbindd_cli_state *state);
510 void winbindd_lookuprids(struct winbindd_cli_state *state);
511 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
512 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
513 void winbindd_set_mapping(struct winbindd_cli_state *state);
514 void winbindd_remove_mapping(struct winbindd_cli_state *state);
515 void winbindd_set_hwm(struct winbindd_cli_state *state);
516 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
517 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
518 void winbindd_allocate_uid(struct winbindd_cli_state *state);
519 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
520                                                 struct winbindd_cli_state *state);
521 void winbindd_allocate_gid(struct winbindd_cli_state *state);
522 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
523                                                 struct winbindd_cli_state *state);
524
525 /* The following definitions come from winbindd/winbindd_user.c  */
526
527 bool fillup_pw_field(const char *lp_template,
528                             const char *username,
529                             const char *domname,
530                             uid_t uid,
531                             gid_t gid,
532                             const char *in,
533                      fstring out);
534
535 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
536                                             struct winbindd_cli_state *state);
537 void winbindd_getpwnam(struct winbindd_cli_state *state);
538 void winbindd_getpwuid(struct winbindd_cli_state *state);
539 void winbindd_getpwsid(struct winbindd_cli_state *state);
540 void winbindd_setpwent(struct winbindd_cli_state *state);
541 void winbindd_endpwent(struct winbindd_cli_state *state);
542 void winbindd_getpwent(struct winbindd_cli_state *state);
543 void winbindd_list_users(struct winbindd_cli_state *state);
544
545 /* The following definitions come from winbindd/winbindd_util.c  */
546
547 struct winbindd_domain *domain_list(void);
548 void free_domain_list(void);
549 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
550                             struct timeval now, void *private_data);
551 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
552                                                    struct winbindd_cli_state *state);
553 bool init_domain_list(void);
554 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
555 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
556 struct winbindd_domain *find_domain_from_name(const char *domain_name);
557 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
558 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
559 struct winbindd_domain *find_our_domain(void);
560 struct winbindd_domain *find_root_domain(void);
561 struct winbindd_domain *find_builtin_domain(void);
562 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
563 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
564 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
565                                  enum winbindd_cmd orig_cmd,
566                                  struct winbindd_domain *domain, 
567                                  const char *domain_name,
568                                  const char *name, DOM_SID *sid, 
569                                  enum lsa_SidType *type);
570 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
571                                  struct winbindd_domain *domain,
572                                  DOM_SID *sid,
573                                  char **dom_name,
574                                  char **name,
575                                  enum lsa_SidType *type);
576 void free_getent_state(struct getent_state *state);
577 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
578 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
579                               char **domain, char **user);
580 void parse_add_domuser(void *buf, char *domuser, int *len);
581 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
582 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
583 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
584                                   const char *domain,
585                                   const char *user,
586                                   bool can_assume);
587 const char *get_winbind_pipe_dir(void) ;
588 char *get_winbind_priv_pipe_dir(void) ;
589 int open_winbindd_socket(void);
590 int open_winbindd_priv_socket(void);
591 struct winbindd_cli_state *winbindd_client_list(void);
592 void winbindd_add_client(struct winbindd_cli_state *cli);
593 void winbindd_remove_client(struct winbindd_cli_state *cli);
594 void winbindd_kill_all_clients(void);
595 int winbindd_num_clients(void);
596 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
597                                   TALLOC_CTX *mem_ctx,
598                                   const DOM_SID *user_sid,
599                                   uint32 *p_num_groups, DOM_SID **user_sids);
600
601 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
602                              struct winbindd_domain *domain,
603                              const char *name,
604                              char **normalized);
605 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
606                               char *name,
607                               char **normalized);
608
609 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
610                                    struct winbindd_domain *domain,
611                                    const char *name, char **alias);
612 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
613                                    struct winbindd_domain *domain,
614                                    const char *alias, char **name);
615
616 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
617 bool winbindd_internal_child(struct winbindd_child *child);
618 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
619 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
620 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
621 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
622 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
623
624 /* The following definitions come from winbindd/winbindd_wins.c  */
625
626 void winbindd_wins_byip(struct winbindd_cli_state *state);
627 void winbindd_wins_byname(struct winbindd_cli_state *state);
628
629 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
630                                 struct winbindd_request *request);
631 NTSTATUS wb_ping_recv(struct tevent_req *req,
632                       struct winbindd_response *resp);
633
634 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
635                                         struct winbindd_cli_state *state);
636
637 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
638                                             struct winbindd_child *child);
639 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
640                                           struct winbindd_cli_state *state);
641
642 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
643                                      struct tevent_context *ev,
644                                      const struct dom_sid *sid);
645 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
646                            enum lsa_SidType *type, const char **domain,
647                            const char **name);
648
649 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
650                                           struct tevent_context *ev,
651                                            struct winbindd_request *request);
652 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
653                                  struct winbindd_response *response);
654
655 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
656                                       struct tevent_context *ev,
657                                       const char *dom_name, const char *name,
658                                       uint32_t flags);
659 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
660                             enum lsa_SidType *type);
661
662 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
663                                             struct tevent_context *ev,
664                                             struct winbindd_request *request);
665 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
666                                   struct winbindd_response *response);
667
668 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
669                                    struct tevent_context *ev,
670                                    const struct dom_sid *sid);
671 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
672
673 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
674                                             struct tevent_context *ev,
675                                             struct winbindd_request *request);
676 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
677                                   struct winbindd_response *response);
678
679 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
680                                    struct tevent_context *ev,
681                                    const struct dom_sid *sid);
682 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
683
684 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
685                                             struct tevent_context *ev,
686                                             struct winbindd_request *request);
687 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
688                                   struct winbindd_response *response);
689
690 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
691                                    struct tevent_context *ev,
692                                    uid_t uid);
693 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
694
695 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
696                                             struct tevent_context *ev,
697                                             struct winbindd_request *request);
698 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
699                                   struct winbindd_response *response);
700
701 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
702                                    struct tevent_context *ev,
703                                    gid_t gid);
704 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
705
706 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
707                                             struct tevent_context *ev,
708                                             struct winbindd_request *request);
709 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
710                                   struct winbindd_response *response);
711
712 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
713                                      struct tevent_context *ev,
714                                      const struct dom_sid *user_sid);
715 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
716                            struct wbint_userinfo **pinfo);
717
718 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
719                                     struct tevent_context *ev,
720                                     const struct dom_sid *user_sid,
721                                     struct winbindd_pw *pw);
722 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
723
724 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
725                                           struct tevent_context *ev,
726                                           struct winbindd_request *request);
727 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
728                                 struct winbindd_response *response);
729
730 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
731                                           struct tevent_context *ev,
732                                           struct winbindd_request *request);
733 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
734                                 struct winbindd_response *response);
735
736 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
737                                           struct tevent_context *ev,
738                                           struct winbindd_request *request);
739 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
740                                 struct winbindd_response *response);
741 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
742                                              struct tevent_context *ev,
743                                              struct winbindd_domain *domain,
744                                              int num_sids,
745                                              const struct dom_sid *sids);
746 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
747                                    uint32_t *num_aliases, uint32_t **aliases);
748 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
749                                                struct tevent_context *ev,
750                                                struct winbindd_request *request);
751 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
752                                      struct winbindd_response *response);
753 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
754                                             struct tevent_context *ev,
755                                             struct winbindd_domain *domain,
756                                             const struct dom_sid *sid);
757 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
758                                   int *num_sids, struct dom_sid **sids);
759
760 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
761                                                   struct tevent_context *ev,
762                                                   struct winbindd_request *request);
763 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
764                                         struct winbindd_response *response);
765 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
766                                     struct tevent_context *ev,
767                                     const struct dom_sid *sid);
768 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
769                           int *num_sids, struct dom_sid **sids);
770 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
771                                            struct tevent_context *ev,
772                                            struct winbindd_request *request);
773 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
774                                  struct winbindd_response *response);
775
776 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
777                                   struct tevent_context *ev,
778                                   struct winbindd_domain *domain);
779 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
780
781 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
782                                    struct tevent_context *ev);
783 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
784                          int *num_domains, struct winbindd_domain ***domains,
785                          NTSTATUS **stati, uint32_t **seqnums);
786
787 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
788                                                struct tevent_context *ev,
789                                                struct winbindd_request *request);
790 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
791                                      struct winbindd_response *response);
792
793 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
794                                          struct tevent_context *ev,
795                                          const struct dom_sid *sid,
796                                          enum lsa_SidType type,
797                                          int max_depth);
798 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
799                                struct talloc_dict **members);
800
801 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
802                                     struct tevent_context *ev,
803                                     const struct dom_sid *group_sid,
804                                     int max_nesting);
805 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
806                           const char **domname, const char **name, gid_t *gid,
807                           struct talloc_dict **members);
808
809 #endif /*  _WINBINDD_PROTO_H_  */