s3:winbind: Convert WINBINDD_GETPWUID 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, 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 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
159                        char **domain_name, char **name,
160                        enum lsa_SidType *type);
161 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
162                         const char *domain_name,
163                         const char *name,
164                         DOM_SID *sid,
165                         enum lsa_SidType *type);
166 void cache_name2sid(struct winbindd_domain *domain, 
167                     const char *domain_name, const char *name,
168                     enum lsa_SidType type, const DOM_SID *sid);
169 NTSTATUS wcache_name_to_sid(struct winbindd_domain *domain,
170                             const char *domain_name,
171                             const char *name,
172                             struct dom_sid *sid,
173                             enum lsa_SidType *type);
174 NTSTATUS wcache_query_user(struct winbindd_domain *domain,
175                            TALLOC_CTX *mem_ctx,
176                            const struct dom_sid *user_sid,
177                            struct winbind_userinfo *info);
178 void wcache_flush_cache(void);
179 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
180 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
181 bool set_global_winbindd_state_offline(void);
182 void set_global_winbindd_state_online(void);
183 bool get_global_winbindd_state_offline(void);
184 int winbindd_validate_cache(void);
185 int winbindd_validate_cache_nobackup(void);
186 bool winbindd_cache_validate_and_initialize(void);
187 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
188 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
189 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
190 void wcache_tdc_clear( void );
191 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain, 
192                               const DOM_SID *user_sid,
193                               TALLOC_CTX *ctx,
194                               ADS_STRUCT *ads, LDAPMessage *msg,
195                               const char **homedir, const char **shell,
196                               const char **gecos, gid_t *p_gid);
197
198 /* The following definitions come from winbindd/winbindd_ccache_access.c  */
199
200 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
201 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
202                                                 struct winbindd_cli_state *state);
203
204 /* The following definitions come from winbindd/winbindd_cm.c  */
205
206 void set_domain_offline(struct winbindd_domain *domain);
207 void set_domain_online_request(struct winbindd_domain *domain);
208 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
209                                         const char *server,
210                                         NTSTATUS result);
211 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
212 void close_conns_after_fork(void);
213 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
214 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
215                         struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
216 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
217                         struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
218 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
219                              struct rpc_pipe_client **cli);
220
221 /* The following definitions come from winbindd/winbindd_cred_cache.c  */
222
223 bool ccache_entry_exists(const char *username);
224 bool ccache_entry_identical(const char *username,
225                             uid_t uid,
226                             const char *ccname);
227 void ccache_remove_all_after_fork(void);
228 void ccache_regain_all_now(void);
229 NTSTATUS add_ccache_to_list(const char *princ_name,
230                             const char *ccname,
231                             const char *service,
232                             const char *username,
233                             const char *realm,
234                             uid_t uid,
235                             time_t create_time,
236                             time_t ticket_end,
237                             time_t renew_until,
238                             bool postponed_request);
239 NTSTATUS remove_ccache(const char *username);
240 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
241 NTSTATUS winbindd_add_memory_creds(const char *username,
242                                    uid_t uid,
243                                    const char *pass);
244 NTSTATUS winbindd_delete_memory_creds(const char *username);
245 NTSTATUS winbindd_replace_memory_creds(const char *username,
246                                        const char *pass);
247
248 /* The following definitions come from winbindd/winbindd_creds.c  */
249
250 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
251                             TALLOC_CTX *mem_ctx,
252                             const DOM_SID *sid,
253                             struct netr_SamInfo3 **info3,
254                             const uint8 *cached_nt_pass[NT_HASH_LEN],
255                             const uint8 *cred_salt[NT_HASH_LEN]);
256 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
257                               TALLOC_CTX *mem_ctx, 
258                               const char *user, 
259                               const char *pass, 
260                               struct netr_SamInfo3 *info3,
261                               const DOM_SID *user_sid);
262 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
263                                         TALLOC_CTX *mem_ctx,
264                                         const char *user,
265                                         const char *pass,
266                                         struct netr_SamInfo3 *info3);
267 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
268                                       TALLOC_CTX *mem_ctx,
269                                       const DOM_SID *sid,
270                                       const char *pass);
271 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
272                                        TALLOC_CTX *mem_ctx,
273                                        const char *user,
274                                        const char *pass);
275
276 /* The following definitions come from winbindd/winbindd_domain.c  */
277
278 void setup_domain_child(struct winbindd_domain *domain,
279                         struct winbindd_child *child);
280
281 /* The following definitions come from winbindd/winbindd_dual.c  */
282
283 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
284                                          struct tevent_context *ev,
285                                          struct winbindd_child *child,
286                                          struct winbindd_request *request);
287 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
288                           struct winbindd_response **presponse, int *err);
289 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
290                                           struct tevent_context *ev,
291                                           struct winbindd_domain *domain,
292                                           struct winbindd_request *request);
293 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
294                            struct winbindd_response **presponse, int *err);
295
296 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
297                    struct winbindd_request *request,
298                    struct winbindd_response *response,
299                    void (*continuation)(void *private_data, bool success),
300                    void *private_data);
301 void async_domain_request(TALLOC_CTX *mem_ctx,
302                           struct winbindd_domain *domain,
303                           struct winbindd_request *request,
304                           struct winbindd_response *response,
305                           void (*continuation)(void *private_data_data, bool success),
306                           void *private_data_data);
307 void sendto_child(struct winbindd_cli_state *state,
308                   struct winbindd_child *child);
309 void sendto_domain(struct winbindd_cli_state *state,
310                    struct winbindd_domain *domain);
311 void setup_child(struct winbindd_child *child,
312                  const struct winbindd_child_dispatch_table *table,
313                  const char *logprefix,
314                  const char *logname);
315 void winbind_child_died(pid_t pid);
316 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
317 void winbind_msg_debug(struct messaging_context *msg_ctx,
318                          void *private_data,
319                          uint32_t msg_type,
320                          struct server_id server_id,
321                          DATA_BLOB *data);
322 void winbind_msg_offline(struct messaging_context *msg_ctx,
323                          void *private_data,
324                          uint32_t msg_type,
325                          struct server_id server_id,
326                          DATA_BLOB *data);
327 void winbind_msg_online(struct messaging_context *msg_ctx,
328                         void *private_data,
329                         uint32_t msg_type,
330                         struct server_id server_id,
331                         DATA_BLOB *data);
332 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
333                               void *private_data,
334                               uint32_t msg_type,
335                               struct server_id server_id,
336                               DATA_BLOB *data);
337 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
338                                  void *private_data,
339                                  uint32_t msg_type,
340                                  struct server_id server_id,
341                                  DATA_BLOB *data);
342 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
343                                   void *private_data,
344                                   uint32_t msg_type,
345                                   struct server_id server_id,
346                                   DATA_BLOB *data);
347 bool winbindd_reinit_after_fork(const char *logfilename);
348 struct winbindd_domain *wb_child_domain(void);
349
350 /* The following definitions come from winbindd/winbindd_group.c  */
351
352 void winbindd_getgrnam(struct winbindd_cli_state *state);
353 void winbindd_getgrgid(struct winbindd_cli_state *state);
354 void winbindd_setgrent(struct winbindd_cli_state *state);
355 void winbindd_endgrent(struct winbindd_cli_state *state);
356 void winbindd_getgrent(struct winbindd_cli_state *state);
357 void winbindd_list_groups(struct winbindd_cli_state *state);
358 void winbindd_getgroups(struct winbindd_cli_state *state);
359 void winbindd_getusersids(struct winbindd_cli_state *state);
360 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
361 void winbindd_getsidaliases(struct winbindd_cli_state *state);
362 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
363                                                     struct winbindd_cli_state *state);
364 bool get_sam_group_entries(struct getent_state *ent);
365
366
367 /* The following definitions come from winbindd/winbindd_idmap.c  */
368
369 void init_idmap_child(void);
370 struct winbindd_child *idmap_child(void);
371 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
372                              void (*cont)(void *private_data, bool success),
373                              void *private_data);
374 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
375                                             struct winbindd_cli_state *state);
376 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
377                              void (*cont)(void *private_data, bool success),
378                              void *private_data);
379 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
380                                             struct winbindd_cli_state *state);
381 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
382                              void (*cont)(void *private_data, bool success),
383                              void *private_data);
384 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
385                                             struct winbindd_cli_state *state);
386 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
387                          void (*cont)(void *private_data, bool success, void *data, int len),
388                          void *private_data);
389 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
390                                            struct winbindd_cli_state *state);
391 void winbindd_sid2uid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
392                          void (*cont)(void *private_data, bool success, uid_t uid),
393                          void *private_data);
394 enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
395                                            struct winbindd_cli_state *state);
396 void winbindd_sid2gid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
397                          void (*cont)(void *private_data, bool success, gid_t gid),
398                          void *private_data);
399 enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
400                                            struct winbindd_cli_state *state);
401 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
402                             void (*cont)(void *private_data, bool success, const char *sid),
403                             void *private_data);
404 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
405                                            struct winbindd_cli_state *state);
406 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
407                             void (*cont)(void *private_data, bool success, const char *sid),
408                             void *private_data);
409 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
410                                            struct winbindd_cli_state *state);
411
412 /* The following definitions come from winbindd/winbindd_locator.c  */
413
414 void init_locator_child(void);
415 struct winbindd_child *locator_child(void);
416 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
417
418 /* The following definitions come from winbindd/winbindd_misc.c  */
419
420 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
421 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
422                                                       struct winbindd_cli_state *state);
423 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
424 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
425 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
426                                                         struct winbindd_cli_state *state);
427 void winbindd_getdcname(struct winbindd_cli_state *state);
428 enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
429                                              struct winbindd_cli_state *state);
430 void winbindd_show_sequence(struct winbindd_cli_state *state);
431 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
432                                                  struct winbindd_cli_state *state);
433 void winbindd_domain_info(struct winbindd_cli_state *state);
434 void winbindd_ping(struct winbindd_cli_state *state);
435 void winbindd_info(struct winbindd_cli_state *state);
436 void winbindd_interface_version(struct winbindd_cli_state *state);
437 void winbindd_domain_name(struct winbindd_cli_state *state);
438 void winbindd_netbios_name(struct winbindd_cli_state *state);
439 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
440
441 /* The following definitions come from winbindd/winbindd_ndr.c  */
442
443 void ndr_print_winbindd_child(struct ndr_print *ndr,
444                               const char *name,
445                               const struct winbindd_child *r);
446 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
447                                 const char *name,
448                                 const struct winbindd_cm_conn *r);
449 void ndr_print_winbindd_methods(struct ndr_print *ndr,
450                                 const char *name,
451                                 const struct winbindd_methods *r);
452 void ndr_print_winbindd_domain(struct ndr_print *ndr,
453                                const char *name,
454                                const struct winbindd_domain *r);
455
456 /* The following definitions come from winbindd/winbindd_pam.c  */
457
458 struct winbindd_domain *find_auth_domain(struct winbindd_cli_state *state, 
459                                         const char *domain_name);
460 void winbindd_pam_auth(struct winbindd_cli_state *state);
461 NTSTATUS winbindd_dual_pam_auth_cached(struct winbindd_domain *domain,
462                                        struct winbindd_cli_state *state,
463                                        struct netr_SamInfo3 **info3);
464 NTSTATUS winbindd_dual_pam_auth_kerberos(struct winbindd_domain *domain,
465                                          struct winbindd_cli_state *state, 
466                                          struct netr_SamInfo3 **info3);
467 NTSTATUS winbindd_dual_pam_auth_samlogon(struct winbindd_domain *domain,
468                                          struct winbindd_cli_state *state,
469                                          struct netr_SamInfo3 **info3);
470 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
471                                             struct winbindd_cli_state *state) ;
472 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
473 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
474                                                  struct winbindd_cli_state *state) ;
475 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
476 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
477                                                  struct winbindd_cli_state *state);
478 void winbindd_pam_logoff(struct winbindd_cli_state *state);
479 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
480                                               struct winbindd_cli_state *state) ;
481 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
482 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
483
484 /* The following definitions come from winbindd/winbindd_passdb.c  */
485
486
487 /* The following definitions come from winbindd/winbindd_reconnect.c  */
488
489
490 /* The following definitions come from winbindd/winbindd_sid.c  */
491
492 void winbindd_lookupsid(struct winbindd_cli_state *state);
493 void winbindd_lookupname(struct winbindd_cli_state *state);
494 void winbindd_lookuprids(struct winbindd_cli_state *state);
495 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
496 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
497 void winbindd_set_mapping(struct winbindd_cli_state *state);
498 void winbindd_remove_mapping(struct winbindd_cli_state *state);
499 void winbindd_set_hwm(struct winbindd_cli_state *state);
500 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
501 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
502 void winbindd_allocate_uid(struct winbindd_cli_state *state);
503 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
504                                                 struct winbindd_cli_state *state);
505 void winbindd_allocate_gid(struct winbindd_cli_state *state);
506 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
507                                                 struct winbindd_cli_state *state);
508
509 /* The following definitions come from winbindd/winbindd_user.c  */
510
511 bool fillup_pw_field(const char *lp_template,
512                             const char *username,
513                             const char *domname,
514                             uid_t uid,
515                             gid_t gid,
516                             const char *in,
517                      fstring out);
518
519 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
520                                             struct winbindd_cli_state *state);
521 void winbindd_getpwnam(struct winbindd_cli_state *state);
522 void winbindd_getpwuid(struct winbindd_cli_state *state);
523 void winbindd_getpwsid(struct winbindd_cli_state *state);
524 void winbindd_setpwent(struct winbindd_cli_state *state);
525 void winbindd_endpwent(struct winbindd_cli_state *state);
526 void winbindd_getpwent(struct winbindd_cli_state *state);
527 void winbindd_list_users(struct winbindd_cli_state *state);
528
529 /* The following definitions come from winbindd/winbindd_util.c  */
530
531 struct winbindd_domain *domain_list(void);
532 void free_domain_list(void);
533 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
534                             struct timeval now, void *private_data);
535 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
536                                                    struct winbindd_cli_state *state);
537 bool init_domain_list(void);
538 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
539 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
540 struct winbindd_domain *find_domain_from_name(const char *domain_name);
541 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
542 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
543 struct winbindd_domain *find_our_domain(void);
544 struct winbindd_domain *find_root_domain(void);
545 struct winbindd_domain *find_builtin_domain(void);
546 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
547 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
548 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
549                                  enum winbindd_cmd orig_cmd,
550                                  struct winbindd_domain *domain, 
551                                  const char *domain_name,
552                                  const char *name, DOM_SID *sid, 
553                                  enum lsa_SidType *type);
554 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
555                                  struct winbindd_domain *domain,
556                                  DOM_SID *sid,
557                                  char **dom_name,
558                                  char **name,
559                                  enum lsa_SidType *type);
560 void free_getent_state(struct getent_state *state);
561 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
562 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
563                               char **domain, char **user);
564 void parse_add_domuser(void *buf, char *domuser, int *len);
565 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
566 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
567 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
568                                   const char *domain,
569                                   const char *user,
570                                   bool can_assume);
571 const char *get_winbind_pipe_dir(void) ;
572 char *get_winbind_priv_pipe_dir(void) ;
573 int open_winbindd_socket(void);
574 int open_winbindd_priv_socket(void);
575 struct winbindd_cli_state *winbindd_client_list(void);
576 void winbindd_add_client(struct winbindd_cli_state *cli);
577 void winbindd_remove_client(struct winbindd_cli_state *cli);
578 void winbindd_kill_all_clients(void);
579 int winbindd_num_clients(void);
580 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
581                                   TALLOC_CTX *mem_ctx,
582                                   const DOM_SID *user_sid,
583                                   uint32 *p_num_groups, DOM_SID **user_sids);
584
585 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
586                             struct winbindd_domain *domain,
587                             char *name,
588                             char **normalized);
589 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
590                               char *name,
591                               char **normalized);
592
593 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
594                                    struct winbindd_domain *domain,
595                                    const char *name, char **alias);
596 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
597                                    struct winbindd_domain *domain,
598                                    const char *alias, char **name);
599
600 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
601 bool winbindd_internal_child(struct winbindd_child *child);
602 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
603 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
604 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
605 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
606 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
607
608 /* The following definitions come from winbindd/winbindd_wins.c  */
609
610 void winbindd_wins_byip(struct winbindd_cli_state *state);
611 void winbindd_wins_byname(struct winbindd_cli_state *state);
612
613 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
614                                 struct winbindd_request *request);
615 NTSTATUS wb_ping_recv(struct tevent_req *req,
616                       struct winbindd_response *resp);
617
618 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
619                                         struct winbindd_cli_state *state);
620
621 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
622                                             struct winbindd_child *child);
623 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
624                                           struct winbindd_cli_state *state);
625
626 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
627                                      struct tevent_context *ev,
628                                      const struct dom_sid *sid);
629 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
630                            enum lsa_SidType *type, const char **domain,
631                            const char **name);
632
633 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
634                                           struct tevent_context *ev,
635                                            struct winbindd_request *request);
636 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
637                                  struct winbindd_response *response);
638
639 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
640                                       struct tevent_context *ev,
641                                       const char *dom_name, const char *name,
642                                       uint32_t flags);
643 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
644                             enum lsa_SidType *type);
645
646 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
647                                             struct tevent_context *ev,
648                                             struct winbindd_request *request);
649 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
650                                   struct winbindd_response *response);
651
652 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
653                                    struct tevent_context *ev,
654                                    const struct dom_sid *sid);
655 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
656
657 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
658                                             struct tevent_context *ev,
659                                             struct winbindd_request *request);
660 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
661                                   struct winbindd_response *response);
662
663 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
664                                    struct tevent_context *ev,
665                                    const struct dom_sid *sid);
666 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
667
668 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
669                                             struct tevent_context *ev,
670                                             struct winbindd_request *request);
671 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
672                                   struct winbindd_response *response);
673
674 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
675                                    struct tevent_context *ev,
676                                    uid_t uid);
677 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
678
679 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
680                                             struct tevent_context *ev,
681                                             struct winbindd_request *request);
682 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
683                                   struct winbindd_response *response);
684
685 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
686                                    struct tevent_context *ev,
687                                    gid_t gid);
688 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
689
690 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
691                                             struct tevent_context *ev,
692                                             struct winbindd_request *request);
693 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
694                                   struct winbindd_response *response);
695
696 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
697                                      struct tevent_context *ev,
698                                      const struct dom_sid *user_sid);
699 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
700                            struct winbind_userinfo **pinfo);
701
702 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
703                                     struct tevent_context *ev,
704                                     const struct dom_sid *user_sid,
705                                     struct winbindd_pw *pw);
706 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
707
708 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
709                                           struct tevent_context *ev,
710                                           struct winbindd_request *request);
711 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
712                                 struct winbindd_response *response);
713
714 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
715                                           struct tevent_context *ev,
716                                           struct winbindd_request *request);
717 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
718                                 struct winbindd_response *response);
719
720 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
721                                           struct tevent_context *ev,
722                                           struct winbindd_request *request);
723 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
724                                 struct winbindd_response *response);
725
726
727 #endif /*  _WINBINDD_PROTO_H_  */