Add wb_trans_send/revc
[abartlet/samba.git/.git] / source3 / winbindd / winbindd_proto.h
1 /*
2  * Unix SMB/CIFS implementation.
3  * collected prototypes header
4  *
5  * frozen from "make proto" in May 2008
6  *
7  * Copyright (C) Michael Adam 2008
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #ifndef _WINBINDD_PROTO_H_
24 #define _WINBINDD_PROTO_H_
25
26
27 /* The following definitions come from auth/token_util.c  */
28
29 bool nt_token_check_sid ( const 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 add_fd_event(struct fd_event *ev);
57 void remove_fd_event(struct fd_event *ev);
58 void setup_async_read(struct fd_event *event, void *data, size_t length,
59                       void (*finished)(void *private_data, bool success),
60                       void *private_data);
61 void setup_async_write(struct fd_event *event, void *data, size_t length,
62                        void (*finished)(void *private_data, bool success),
63                        void *private_data);
64 void request_error(struct winbindd_cli_state *state);
65 void request_ok(struct winbindd_cli_state *state);
66 void winbind_check_sighup(const char *lfile);
67 void winbind_check_sigterm(bool in_parent);
68 int main(int argc, char **argv, char **envp);
69
70 /* The following definitions come from winbindd/winbindd_reqtrans.c  */
71
72 struct async_req *wb_req_read_send(TALLOC_CTX *mem_ctx,
73                                    struct event_context *ev,
74                                    int fd, size_t max_extra_data);
75 NTSTATUS wb_req_read_recv(struct async_req *req, TALLOC_CTX *mem_ctx,
76                           struct winbindd_request **preq);
77 struct async_req *wb_req_write_send(TALLOC_CTX *mem_ctx,
78                                     struct event_context *ev, int fd,
79                                     struct winbindd_request *wb_req);
80 NTSTATUS wb_req_write_recv(struct async_req *req);
81
82 struct async_req *wb_resp_read_send(TALLOC_CTX *mem_ctx,
83                                     struct event_context *ev, int fd);
84 NTSTATUS wb_resp_read_recv(struct async_req *req, TALLOC_CTX *mem_ctx,
85                            struct winbindd_response **presp);
86 struct async_req *wb_resp_write_send(TALLOC_CTX *mem_ctx,
87                                      struct event_context *ev, int fd,
88                                      struct winbindd_response *wb_resp);
89 NTSTATUS wb_resp_write_recv(struct async_req *req);
90
91 struct async_req *wb_trans_send(TALLOC_CTX *mem_ctx,
92                                 struct event_context *ev,
93                                 int fd,
94                                 struct winbindd_request *wb_req,
95                                 struct timeval timeout,
96                                 size_t reply_max_extra_data);
97 NTSTATUS wb_trans_recv(struct async_req *req, TALLOC_CTX *mem_ctx,
98                        struct winbindd_response **presp);
99
100 /* The following definitions come from winbindd/winbindd_ads.c  */
101
102
103 /* The following definitions come from winbindd/winbindd_async.c  */
104
105 void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
106               const struct winbindd_request *request,
107               void (*cont)(TALLOC_CTX *mem_ctx, bool success,
108                            struct winbindd_response *response,
109                            void *c, void *private_data),
110               void *c, void *private_data);
111 void do_async_domain(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
112                      const struct winbindd_request *request,
113                      void (*cont)(TALLOC_CTX *mem_ctx, bool success,
114                                   struct winbindd_response *response,
115                                   void *c, void *private_data),
116                      void *c, void *private_data);
117 void winbindd_lookupsid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
118                               void (*cont)(void *private_data, bool success,
119                                            const char *dom_name,
120                                            const char *name,
121                                            enum lsa_SidType type),
122                               void *private_data);
123 enum winbindd_result winbindd_dual_lookupsid(struct winbindd_domain *domain,
124                                              struct winbindd_cli_state *state);
125 void winbindd_lookupname_async(TALLOC_CTX *mem_ctx,
126                                const char *dom_name, const char *name,
127                                void (*cont)(void *private_data, bool success,
128                                             const DOM_SID *sid,
129                                             enum lsa_SidType type),
130                                enum winbindd_cmd orig_cmd,
131                                void *private_data);
132 enum winbindd_result winbindd_dual_lookupname(struct winbindd_domain *domain,
133                                               struct winbindd_cli_state *state);
134 void winbindd_listent_async(TALLOC_CTX *mem_ctx,
135                                struct winbindd_domain *domain,
136                                void (*cont)(void *private_data, bool success,
137                                      fstring dom_name, char* extra_data),
138                                void *private_data, enum ent_type type);
139 enum winbindd_result winbindd_dual_list_users(struct winbindd_domain *domain,
140                                               struct winbindd_cli_state *state);
141 enum winbindd_result winbindd_dual_list_groups(struct winbindd_domain *domain,
142                                                struct winbindd_cli_state *state);
143 bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
144                    size_t num_sids, char **result, ssize_t *len);
145 enum winbindd_result winbindd_dual_lookuprids(struct winbindd_domain *domain,
146                                               struct winbindd_cli_state *state);
147 void winbindd_getsidaliases_async(struct winbindd_domain *domain,
148                                   TALLOC_CTX *mem_ctx,
149                                   const DOM_SID *sids, size_t num_sids,
150                                   void (*cont)(void *private_data,
151                                                bool success,
152                                                const DOM_SID *aliases,
153                                                size_t num_aliases),
154                                   void *private_data);
155 enum winbindd_result winbindd_dual_getsidaliases(struct winbindd_domain *domain,
156                                                  struct winbindd_cli_state *state);
157 void winbindd_gettoken_async(TALLOC_CTX *mem_ctx, const DOM_SID *user_sid,
158                              void (*cont)(void *private_data, bool success,
159                                           DOM_SID *sids, size_t num_sids),
160                              void *private_data);
161 void query_user_async(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
162                       const DOM_SID *sid,
163                       void (*cont)(void *private_data, bool success,
164                                    const char *acct_name,
165                                    const char *full_name,
166                                    const char *homedir,
167                                    const char *shell,
168                                    gid_t gid,
169                                    uint32 group_rid),
170                       void *private_data);
171
172 /* The following definitions come from winbindd/winbindd_cache.c  */
173
174 void winbindd_check_cache_size(time_t t);
175 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
176 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const DOM_SID *sid);
177 NTSTATUS wcache_get_creds(struct winbindd_domain *domain, 
178                           TALLOC_CTX *mem_ctx, 
179                           const DOM_SID *sid,
180                           const uint8 **cached_nt_pass,
181                           const uint8 **cached_salt);
182 NTSTATUS wcache_save_creds(struct winbindd_domain *domain, 
183                            TALLOC_CTX *mem_ctx, 
184                            const DOM_SID *sid, 
185                            const uint8 nt_pass[NT_HASH_LEN]);
186 void wcache_invalidate_samlogon(struct winbindd_domain *domain, 
187                                 struct netr_SamInfo3 *info3);
188 bool wcache_invalidate_cache(void);
189 bool init_wcache(void);
190 bool initialize_winbindd_cache(void);
191 void close_winbindd_cache(void);
192 void cache_store_response(pid_t pid, struct winbindd_response *response);
193 bool cache_retrieve_response(pid_t pid, struct winbindd_response * response);
194 void cache_cleanup_response(pid_t pid);
195 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
196                        char **domain_name, char **name,
197                        enum lsa_SidType *type);
198 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
199                         const char *domain_name,
200                         const char *name,
201                         DOM_SID *sid,
202                         enum lsa_SidType *type);
203 void cache_name2sid(struct winbindd_domain *domain, 
204                     const char *domain_name, const char *name,
205                     enum lsa_SidType type, const DOM_SID *sid);
206 void wcache_flush_cache(void);
207 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
208 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
209 bool set_global_winbindd_state_offline(void);
210 void set_global_winbindd_state_online(void);
211 bool get_global_winbindd_state_offline(void);
212 int winbindd_validate_cache(void);
213 int winbindd_validate_cache_nobackup(void);
214 bool winbindd_cache_validate_and_initialize(void);
215 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
216 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
217 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
218 void wcache_tdc_clear( void );
219 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain, 
220                               const DOM_SID *user_sid,
221                               TALLOC_CTX *ctx,
222                               ADS_STRUCT *ads, LDAPMessage *msg,
223                               char **homedir, char **shell, char **gecos,
224                               gid_t *p_gid);
225
226 /* The following definitions come from winbindd/winbindd_ccache_access.c  */
227
228 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
229 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
230                                                 struct winbindd_cli_state *state);
231
232 /* The following definitions come from winbindd/winbindd_cm.c  */
233
234 void set_domain_offline(struct winbindd_domain *domain);
235 void set_domain_online_request(struct winbindd_domain *domain);
236 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
237                                         const char *server,
238                                         NTSTATUS result);
239 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
240 void close_conns_after_fork(void);
241 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
242 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
243                         struct rpc_pipe_client **cli, POLICY_HND *sam_handle);
244 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
245                         struct rpc_pipe_client **cli, POLICY_HND *lsa_policy);
246 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
247                              struct rpc_pipe_client **cli);
248
249 /* The following definitions come from winbindd/winbindd_cred_cache.c  */
250
251 bool ccache_entry_exists(const char *username);
252 bool ccache_entry_identical(const char *username,
253                             uid_t uid,
254                             const char *ccname);
255 NTSTATUS add_ccache_to_list(const char *princ_name,
256                             const char *ccname,
257                             const char *service,
258                             const char *username,
259                             const char *realm,
260                             uid_t uid,
261                             time_t create_time,
262                             time_t ticket_end,
263                             time_t renew_until,
264                             bool postponed_request);
265 NTSTATUS remove_ccache(const char *username);
266 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
267 NTSTATUS winbindd_add_memory_creds(const char *username,
268                                    uid_t uid,
269                                    const char *pass);
270 NTSTATUS winbindd_delete_memory_creds(const char *username);
271 NTSTATUS winbindd_replace_memory_creds(const char *username,
272                                        const char *pass);
273
274 /* The following definitions come from winbindd/winbindd_creds.c  */
275
276 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
277                             TALLOC_CTX *mem_ctx,
278                             const DOM_SID *sid,
279                             struct netr_SamInfo3 **info3,
280                             const uint8 *cached_nt_pass[NT_HASH_LEN],
281                             const uint8 *cred_salt[NT_HASH_LEN]);
282 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
283                               TALLOC_CTX *mem_ctx, 
284                               const char *user, 
285                               const char *pass, 
286                               struct netr_SamInfo3 *info3,
287                               const DOM_SID *user_sid);
288 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
289                                         TALLOC_CTX *mem_ctx,
290                                         const char *user,
291                                         const char *pass,
292                                         struct netr_SamInfo3 *info3);
293 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
294                                       TALLOC_CTX *mem_ctx,
295                                       const DOM_SID *sid,
296                                       const char *pass);
297 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
298                                        TALLOC_CTX *mem_ctx,
299                                        const char *user,
300                                        const char *pass);
301
302 /* The following definitions come from winbindd/winbindd_domain.c  */
303
304 void setup_domain_child(struct winbindd_domain *domain,
305                         struct winbindd_child *child);
306
307 /* The following definitions come from winbindd/winbindd_dual.c  */
308
309 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
310                    struct winbindd_request *request,
311                    struct winbindd_response *response,
312                    void (*continuation)(void *private_data, bool success),
313                    void *private_data);
314 void async_domain_request(TALLOC_CTX *mem_ctx,
315                           struct winbindd_domain *domain,
316                           struct winbindd_request *request,
317                           struct winbindd_response *response,
318                           void (*continuation)(void *private_data_data, bool success),
319                           void *private_data_data);
320 void sendto_child(struct winbindd_cli_state *state,
321                   struct winbindd_child *child);
322 void sendto_domain(struct winbindd_cli_state *state,
323                    struct winbindd_domain *domain);
324 void setup_child(struct winbindd_child *child,
325                  const struct winbindd_child_dispatch_table *table,
326                  const char *logprefix,
327                  const char *logname);
328 void winbind_child_died(pid_t pid);
329 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
330 void winbind_msg_debug(struct messaging_context *msg_ctx,
331                          void *private_data,
332                          uint32_t msg_type,
333                          struct server_id server_id,
334                          DATA_BLOB *data);
335 void winbind_msg_offline(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_online(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_onlinestatus(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_dump_event_list(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_domain_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
361 /* The following definitions come from winbindd/winbindd_group.c  */
362
363 void winbindd_getgrnam(struct winbindd_cli_state *state);
364 void winbindd_getgrgid(struct winbindd_cli_state *state);
365 void winbindd_setgrent(struct winbindd_cli_state *state);
366 void winbindd_endgrent(struct winbindd_cli_state *state);
367 void winbindd_getgrent(struct winbindd_cli_state *state);
368 void winbindd_list_groups(struct winbindd_cli_state *state);
369 void winbindd_getgroups(struct winbindd_cli_state *state);
370 void winbindd_getusersids(struct winbindd_cli_state *state);
371 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
372 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
373                                                     struct winbindd_cli_state *state);
374 bool get_sam_group_entries(struct getent_state *ent);
375
376
377 /* The following definitions come from winbindd/winbindd_idmap.c  */
378
379 void init_idmap_child(void);
380 struct winbindd_child *idmap_child(void);
381 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
382                              void (*cont)(void *private_data, bool success),
383                              void *private_data);
384 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
385                                             struct winbindd_cli_state *state);
386 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
387                              void (*cont)(void *private_data, bool success),
388                              void *private_data);
389 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
390                                             struct winbindd_cli_state *state);
391 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
392                              void (*cont)(void *private_data, bool success),
393                              void *private_data);
394 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
395                                             struct winbindd_cli_state *state);
396 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
397                          void (*cont)(void *private_data, bool success, void *data, int len),
398                          void *private_data);
399 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
400                                            struct winbindd_cli_state *state);
401 void winbindd_sid2uid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
402                          void (*cont)(void *private_data, bool success, uid_t uid),
403                          void *private_data);
404 enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
405                                            struct winbindd_cli_state *state);
406 void winbindd_sid2gid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
407                          void (*cont)(void *private_data, bool success, gid_t gid),
408                          void *private_data);
409 enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
410                                            struct winbindd_cli_state *state);
411 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
412                             void (*cont)(void *private_data, bool success, const char *sid),
413                             void *private_data);
414 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
415                                            struct winbindd_cli_state *state);
416 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
417                             void (*cont)(void *private_data, bool success, const char *sid),
418                             void *private_data);
419 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
420                                            struct winbindd_cli_state *state);
421
422 /* The following definitions come from winbindd/winbindd_locator.c  */
423
424 void init_locator_child(void);
425 struct winbindd_child *locator_child(void);
426 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
427
428 /* The following definitions come from winbindd/winbindd_misc.c  */
429
430 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
431 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
432                                                       struct winbindd_cli_state *state);
433 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
434 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
435 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
436                                                         struct winbindd_cli_state *state);
437 void winbindd_getdcname(struct winbindd_cli_state *state);
438 enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
439                                              struct winbindd_cli_state *state);
440 void winbindd_show_sequence(struct winbindd_cli_state *state);
441 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
442                                                  struct winbindd_cli_state *state);
443 void winbindd_domain_info(struct winbindd_cli_state *state);
444 void winbindd_ping(struct winbindd_cli_state *state);
445 void winbindd_info(struct winbindd_cli_state *state);
446 void winbindd_interface_version(struct winbindd_cli_state *state);
447 void winbindd_domain_name(struct winbindd_cli_state *state);
448 void winbindd_netbios_name(struct winbindd_cli_state *state);
449 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
450
451 /* The following definitions come from winbindd/winbindd_ndr.c  */
452
453 void ndr_print_winbindd_child(struct ndr_print *ndr,
454                               const char *name,
455                               const struct winbindd_child *r);
456 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
457                                 const char *name,
458                                 const struct winbindd_cm_conn *r);
459 void ndr_print_winbindd_methods(struct ndr_print *ndr,
460                                 const char *name,
461                                 const struct winbindd_methods *r);
462 void ndr_print_winbindd_domain(struct ndr_print *ndr,
463                                const char *name,
464                                const struct winbindd_domain *r);
465
466 /* The following definitions come from winbindd/winbindd_pam.c  */
467
468 struct winbindd_domain *find_auth_domain(struct winbindd_cli_state *state, 
469                                         const char *domain_name);
470 void winbindd_pam_auth(struct winbindd_cli_state *state);
471 NTSTATUS winbindd_dual_pam_auth_cached(struct winbindd_domain *domain,
472                                        struct winbindd_cli_state *state,
473                                        struct netr_SamInfo3 **info3);
474 NTSTATUS winbindd_dual_pam_auth_kerberos(struct winbindd_domain *domain,
475                                          struct winbindd_cli_state *state, 
476                                          struct netr_SamInfo3 **info3);
477 NTSTATUS winbindd_dual_pam_auth_samlogon(struct winbindd_domain *domain,
478                                          struct winbindd_cli_state *state,
479                                          struct netr_SamInfo3 **info3);
480 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
481                                             struct winbindd_cli_state *state) ;
482 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
483 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
484                                                  struct winbindd_cli_state *state) ;
485 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
486 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
487                                                  struct winbindd_cli_state *state);
488 void winbindd_pam_logoff(struct winbindd_cli_state *state);
489 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
490                                               struct winbindd_cli_state *state) ;
491 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
492 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
493
494 /* The following definitions come from winbindd/winbindd_passdb.c  */
495
496
497 /* The following definitions come from winbindd/winbindd_reconnect.c  */
498
499
500 /* The following definitions come from winbindd/winbindd_sid.c  */
501
502 void winbindd_lookupsid(struct winbindd_cli_state *state);
503 void winbindd_lookupname(struct winbindd_cli_state *state);
504 void winbindd_lookuprids(struct winbindd_cli_state *state);
505 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
506 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
507 void winbindd_sids_to_unixids(struct winbindd_cli_state *state);
508 void winbindd_set_mapping(struct winbindd_cli_state *state);
509 void winbindd_remove_mapping(struct winbindd_cli_state *state);
510 void winbindd_set_hwm(struct winbindd_cli_state *state);
511 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
512 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
513 void winbindd_allocate_uid(struct winbindd_cli_state *state);
514 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
515                                                 struct winbindd_cli_state *state);
516 void winbindd_allocate_gid(struct winbindd_cli_state *state);
517 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
518                                                 struct winbindd_cli_state *state);
519
520 /* The following definitions come from winbindd/winbindd_user.c  */
521
522 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
523                                             struct winbindd_cli_state *state);
524 void winbindd_getpwnam(struct winbindd_cli_state *state);
525 void winbindd_getpwuid(struct winbindd_cli_state *state);
526 void winbindd_setpwent(struct winbindd_cli_state *state);
527 void winbindd_endpwent(struct winbindd_cli_state *state);
528 void winbindd_getpwent(struct winbindd_cli_state *state);
529 void winbindd_list_users(struct winbindd_cli_state *state);
530
531 /* The following definitions come from winbindd/winbindd_util.c  */
532
533 struct winbindd_domain *domain_list(void);
534 void free_domain_list(void);
535 void rescan_trusted_domains( void );
536 enum winbindd_result init_child_connection(struct winbindd_domain *domain,
537                                            void (*continuation)(void *private_data,
538                                                                 bool success),
539                                            void *private_data);
540 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
541                                                    struct winbindd_cli_state *state);
542 bool init_domain_list(void);
543 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
544 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
545 struct winbindd_domain *find_domain_from_name(const char *domain_name);
546 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
547 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
548 struct winbindd_domain *find_our_domain(void);
549 struct winbindd_domain *find_root_domain(void);
550 struct winbindd_domain *find_builtin_domain(void);
551 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
552 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
553 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
554                                  enum winbindd_cmd orig_cmd,
555                                  struct winbindd_domain *domain, 
556                                  const char *domain_name,
557                                  const char *name, DOM_SID *sid, 
558                                  enum lsa_SidType *type);
559 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
560                                  struct winbindd_domain *domain,
561                                  DOM_SID *sid,
562                                  char **dom_name,
563                                  char **name,
564                                  enum lsa_SidType *type);
565 void free_getent_state(struct getent_state *state);
566 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
567 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
568                               char **domain, char **user);
569 void parse_add_domuser(void *buf, char *domuser, int *len);
570 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
571 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
572 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
573                                   const char *domain,
574                                   const char *user,
575                                   bool can_assume);
576 const char *get_winbind_pipe_dir(void) ;
577 char *get_winbind_priv_pipe_dir(void) ;
578 int open_winbindd_socket(void);
579 int open_winbindd_priv_socket(void);
580 void close_winbindd_socket(void);
581 struct winbindd_cli_state *winbindd_client_list(void);
582 void winbindd_add_client(struct winbindd_cli_state *cli);
583 void winbindd_remove_client(struct winbindd_cli_state *cli);
584 void winbindd_kill_all_clients(void);
585 int winbindd_num_clients(void);
586 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
587                                   TALLOC_CTX *mem_ctx,
588                                   const DOM_SID *user_sid,
589                                   uint32 *p_num_groups, DOM_SID **user_sids);
590
591 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
592                             struct winbindd_domain *domain,
593                             char *name,
594                             char **normalized);
595 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
596                               char *name,
597                               char **normalized);
598
599 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
600                                    struct winbindd_domain *domain,
601                                    const char *name, char **alias);
602 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
603                                    struct winbindd_domain *domain,
604                                    const char *alias, char **name);
605
606 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
607 bool winbindd_internal_child(struct winbindd_child *child);
608 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
609 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
610 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
611 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
612 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
613
614 /* The following definitions come from winbindd/winbindd_wins.c  */
615
616 void winbindd_wins_byip(struct winbindd_cli_state *state);
617 void winbindd_wins_byname(struct winbindd_cli_state *state);
618
619 #endif /*  _WINBINDD_PROTO_H_  */